target
stringlengths
5
300
feat_repo_name
stringlengths
6
76
text
stringlengths
26
1.05M
app/components/Contact.js
hadzimme/Crutta
import React from 'react' import { View, Text, TouchableHighlight, } from 'react-native' const Contact = props => ( <View style={{ flex: 1, backgroundColor: 'grey' }}> <Text>Contact</Text> <TouchableHighlight onPress={props.onPopRoute}> <Text>Back to Home</Text> </TouchableHighlight> </View> ) export default Contact
ajax/libs/forerunnerdb/1.3.658/fdb-core+persist.min.js
seogi1004/cdnjs
!function a(b,c,d){function e(g,h){if(!c[g]){if(!b[g]){var i="function"==typeof require&&require;if(!h&&i)return i(g,!0);if(f)return f(g,!0);var j=new Error("Cannot find module '"+g+"'");throw j.code="MODULE_NOT_FOUND",j}var k=c[g]={exports:{}};b[g][0].call(k.exports,function(a){var c=b[g][1][a];return e(c?c:a)},k,k.exports,a,b,c,d)}return c[g].exports}for(var f="function"==typeof require&&require,g=0;g<d.length;g++)e(d[g]);return e}({1:[function(a,b,c){var d=a("./core");a("../lib/Persist");"undefined"!=typeof window&&(window.ForerunnerDB=d),b.exports=d},{"../lib/Persist":28,"./core":2}],2:[function(a,b,c){var d=a("../lib/Core");a("../lib/Shim.IE8");"undefined"!=typeof window&&(window.ForerunnerDB=d),b.exports=d},{"../lib/Core":7,"../lib/Shim.IE8":34}],3:[function(a,b,c){"use strict";var d=a("./Shared"),e=a("./Path"),f=new e,g=function(a,b,c){this.init.apply(this,arguments)};g.prototype.init=function(a,b,c,d,e){this._store=[],this._keys=[],void 0!==c&&this.primaryKey(c),void 0!==b&&this.index(b),void 0!==d&&this.compareFunc(d),void 0!==e&&this.hashFunc(e),void 0!==a&&this.data(a)},d.addModule("BinaryTree",g),d.mixin(g.prototype,"Mixin.ChainReactor"),d.mixin(g.prototype,"Mixin.Sorting"),d.mixin(g.prototype,"Mixin.Common"),d.synthesize(g.prototype,"compareFunc"),d.synthesize(g.prototype,"hashFunc"),d.synthesize(g.prototype,"indexDir"),d.synthesize(g.prototype,"primaryKey"),d.synthesize(g.prototype,"keys"),d.synthesize(g.prototype,"index",function(a){return void 0!==a&&(this.debug()&&console.log("Setting index",a,f.parse(a,!0)),this.keys(f.parse(a,!0))),this.$super.call(this,a)}),g.prototype.clear=function(){delete this._data,delete this._left,delete this._right,this._store=[]},g.prototype.data=function(a){return void 0!==a?(this._data=a,this._hashFunc&&(this._hash=this._hashFunc(a)),this):this._data},g.prototype.push=function(a){return void 0!==a?(this._store.push(a),this):!1},g.prototype.pull=function(a){if(void 0!==a){var b=this._store.indexOf(a);if(b>-1)return this._store.splice(b,1),this}return!1},g.prototype._compareFunc=function(a,b){var c,d,e=0;for(c=0;c<this._keys.length;c++)if(d=this._keys[c],1===d.value?e=this.sortAsc(f.get(a,d.path),f.get(b,d.path)):-1===d.value&&(e=this.sortDesc(f.get(a,d.path),f.get(b,d.path))),this.debug()&&console.log("Compared %s with %s order %d in path %s and result was %d",f.get(a,d.path),f.get(b,d.path),d.value,d.path,e),0!==e)return this.debug()&&console.log("Retuning result %d",e),e;return this.debug()&&console.log("Retuning result %d",e),e},g.prototype._hashFunc=function(a){return a[this._keys[0].path]},g.prototype.removeChildNode=function(a){this._left===a?delete this._left:this._right===a&&delete this._right},g.prototype.nodeBranch=function(a){return this._left===a?"left":this._right===a?"right":void 0},g.prototype.insert=function(a){var b,c,d,e;if(a instanceof Array){for(c=[],d=[],e=0;e<a.length;e++)this.insert(a[e])?c.push(a[e]):d.push(a[e]);return{inserted:c,failed:d}}return this.debug()&&console.log("Inserting",a),this._data?(b=this._compareFunc(this._data,a),0===b?(this.debug()&&console.log("Data is equal (currrent, new)",this._data,a),this._left?this._left.insert(a):(this._left=new g(a,this._index,this._binaryTree,this._compareFunc,this._hashFunc),this._left._parent=this),!0):-1===b?(this.debug()&&console.log("Data is greater (currrent, new)",this._data,a),this._right?this._right.insert(a):(this._right=new g(a,this._index,this._binaryTree,this._compareFunc,this._hashFunc),this._right._parent=this),!0):1===b?(this.debug()&&console.log("Data is less (currrent, new)",this._data,a),this._left?this._left.insert(a):(this._left=new g(a,this._index,this._binaryTree,this._compareFunc,this._hashFunc),this._left._parent=this),!0):!1):(this.debug()&&console.log("Node has no data, setting data",a),this.data(a),!0)},g.prototype.remove=function(a){var b,c,d,e=this.primaryKey();if(a instanceof Array){for(c=[],d=0;d<a.length;d++)this.remove(a[d])&&c.push(a[d]);return c}return this.debug()&&console.log("Removing",a),this._data[e]===a[e]?this._remove(this):(b=this._compareFunc(this._data,a),-1===b&&this._right?this._right.remove(a):1===b&&this._left?this._left.remove(a):!1)},g.prototype._remove=function(a){var b,c;return this._left?(b=this._left,c=this._right,this._left=b._left,this._right=b._right,this._data=b._data,this._store=b._store,c&&(b.rightMost()._right=c)):this._right?(c=this._right,this._left=c._left,this._right=c._right,this._data=c._data,this._store=c._store):this.clear(),!0},g.prototype.leftMost=function(){return this._left?this._left.leftMost():this},g.prototype.rightMost=function(){return this._right?this._right.rightMost():this},g.prototype.lookup=function(a,b,c){var d=this._compareFunc(this._data,a);return c=c||[],0===d&&(this._left&&this._left.lookup(a,b,c),c.push(this._data),this._right&&this._right.lookup(a,b,c)),-1===d&&this._right&&this._right.lookup(a,b,c),1===d&&this._left&&this._left.lookup(a,b,c),c},g.prototype.inOrder=function(a,b){switch(b=b||[],this._left&&this._left.inOrder(a,b),a){case"hash":b.push(this._hash);break;case"data":b.push(this._data);break;default:b.push({key:this._data,arr:this._store})}return this._right&&this._right.inOrder(a,b),b},g.prototype.startsWith=function(a,b,c,d){var e,g,h=f.get(this._data,a),i=h.substr(0,b.length);return c=c||new RegExp("^"+b),d=d||[],void 0===d._visited&&(d._visited=0),d._visited++,g=this.sortAsc(h,b),e=i===b,0===g&&(this._left&&this._left.startsWith(a,b,c,d),e&&d.push(this._data),this._right&&this._right.startsWith(a,b,c,d)),-1===g&&(e&&d.push(this._data),this._right&&this._right.startsWith(a,b,c,d)),1===g&&(this._left&&this._left.startsWith(a,b,c,d),e&&d.push(this._data)),d},g.prototype.findRange=function(a,b,c,d,f,g){f=f||[],g=g||new e(b),this._left&&this._left.findRange(a,b,c,d,f,g);var h=g.value(this._data),i=this.sortAsc(h,c),j=this.sortAsc(h,d);if(!(0!==i&&1!==i||0!==j&&-1!==j))switch(a){case"hash":f.push(this._hash);break;case"data":f.push(this._data);break;default:f.push({key:this._data,arr:this._store})}return this._right&&this._right.findRange(a,b,c,d,f,g),f},g.prototype.match=function(a,b,c){var d,e,g,h=[],i=0;for(d=f.parseArr(this._index,{verbose:!0}),e=f.parseArr(a,c&&c.pathOptions?c.pathOptions:{ignore:/\$/,verbose:!0}),g=0;g<d.length;g++)e[g]===d[g]&&(i++,h.push(e[g]));return{matchedKeys:h,totalKeyCount:e.length,score:i}},d.finishModule("BinaryTree"),b.exports=g},{"./Path":27,"./Shared":33}],4:[function(a,b,c){"use strict";var d,e;d=function(){var a,b,c,d=[];for(b=0;256>b;b++){for(a=b,c=0;8>c;c++)a=1&a?3988292384^a>>>1:a>>>1;d[b]=a}return d}(),e=function(a){var b,c=-1;for(b=0;b<a.length;b++)c=c>>>8^d[255&(c^a.charCodeAt(b))];return(-1^c)>>>0},b.exports=e},{}],5:[function(a,b,c){"use strict";var d,e,f,g,h,i,j,k,l,m,n;d=a("./Shared");var o=function(a,b){this.init.apply(this,arguments)};o.prototype.init=function(a,b){this.sharedPathSolver=n,this._primaryKey="_id",this._primaryIndex=new g("primary"),this._primaryCrc=new g("primaryCrc"),this._crcLookup=new g("crcLookup"),this._name=a,this._data=[],this._metrics=new f,this._options=b||{changeTimestamp:!1},this._options.db&&this.db(this._options.db),this._metaData={},this._deferQueue={insert:[],update:[],remove:[],upsert:[],async:[]},this._deferThreshold={insert:100,update:100,remove:100,upsert:100},this._deferTime={insert:1,update:1,remove:1,upsert:1},this._deferredCalls=!0,this.subsetOf(this)},d.addModule("Collection",o),d.mixin(o.prototype,"Mixin.Common"),d.mixin(o.prototype,"Mixin.Events"),d.mixin(o.prototype,"Mixin.ChainReactor"),d.mixin(o.prototype,"Mixin.CRUD"),d.mixin(o.prototype,"Mixin.Constants"),d.mixin(o.prototype,"Mixin.Triggers"),d.mixin(o.prototype,"Mixin.Sorting"),d.mixin(o.prototype,"Mixin.Matching"),d.mixin(o.prototype,"Mixin.Updating"),d.mixin(o.prototype,"Mixin.Tags"),f=a("./Metrics"),g=a("./KeyValueStore"),h=a("./Path"),i=a("./IndexHashMap"),j=a("./IndexBinaryTree"),k=a("./Index2d"),e=d.modules.Db,l=a("./Overload"),m=a("./ReactorIO"),n=new h,d.synthesize(o.prototype,"deferredCalls"),d.synthesize(o.prototype,"state"),d.synthesize(o.prototype,"name"),d.synthesize(o.prototype,"metaData"),d.synthesize(o.prototype,"capped"),d.synthesize(o.prototype,"cappedSize"),o.prototype._asyncPending=function(a){this._deferQueue.async.push(a)},o.prototype._asyncComplete=function(a){for(var b=this._deferQueue.async.indexOf(a);b>-1;)this._deferQueue.async.splice(b,1),b=this._deferQueue.async.indexOf(a);0===this._deferQueue.async.length&&this.deferEmit("ready")},o.prototype.data=function(){return this._data},o.prototype.drop=function(a){var b;if(this.isDropped())return a&&a(!1,!0),!0;if(this._db&&this._db._collection&&this._name){if(this.debug()&&console.log(this.logIdentifier()+" Dropping"),this._state="dropped",this.emit("drop",this),delete this._db._collection[this._name],this._collate)for(b in this._collate)this._collate.hasOwnProperty(b)&&this.collateRemove(b);return delete this._primaryKey,delete this._primaryIndex,delete this._primaryCrc,delete this._crcLookup,delete this._name,delete this._data,delete this._metrics,delete this._listeners,a&&a(!1,!0),!0}return a&&a(!1,!0),!1},o.prototype.primaryKey=function(a){if(void 0!==a){if(this._primaryKey!==a){var b=this._primaryKey;this._primaryKey=a,this._primaryIndex.primaryKey(a),this.rebuildPrimaryKeyIndex(),this.chainSend("primaryKey",{keyName:a,oldData:b})}return this}return this._primaryKey},o.prototype._onInsert=function(a,b){this.emit("insert",a,b)},o.prototype._onUpdate=function(a){this.emit("update",a)},o.prototype._onRemove=function(a){this.emit("remove",a)},o.prototype._onChange=function(){this._options.changeTimestamp&&(this._metaData.lastChange=new Date)},d.synthesize(o.prototype,"db",function(a){return a&&"_id"===this.primaryKey()&&(this.primaryKey(a.primaryKey()),this.debug(a.debug())),this.$super.apply(this,arguments)}),d.synthesize(o.prototype,"mongoEmulation"),o.prototype.setData=function(a,b,c){if(this.isDropped())throw this.logIdentifier()+" Cannot operate in a dropped state!";if(a){var d=this._metrics.create("setData");d.start(),b=this.options(b),this.preSetData(a,b,c),b.$decouple&&(a=this.decouple(a)),a instanceof Array||(a=[a]),d.time("transformIn"),a=this.transformIn(a),d.time("transformIn");var e=[].concat(this._data);this._dataReplace(a),d.time("Rebuild Primary Key Index"),this.rebuildPrimaryKeyIndex(b),d.time("Rebuild Primary Key Index"),d.time("Rebuild All Other Indexes"),this._rebuildIndexes(),d.time("Rebuild All Other Indexes"),d.time("Resolve chains"),this.chainSend("setData",{dataSet:a,oldData:e}),d.time("Resolve chains"),d.stop(),this._onChange(),this.emit("setData",this._data,e)}return c&&c(!1),this},o.prototype.rebuildPrimaryKeyIndex=function(a){a=a||{$ensureKeys:void 0,$violationCheck:void 0};var b,c,d,e,f=a&&void 0!==a.$ensureKeys?a.$ensureKeys:!0,g=a&&void 0!==a.$violationCheck?a.$violationCheck:!0,h=this._primaryIndex,i=this._primaryCrc,j=this._crcLookup,k=this._primaryKey;for(h.truncate(),i.truncate(),j.truncate(),b=this._data,c=b.length;c--;){if(d=b[c],f&&this.ensurePrimaryKey(d),g){if(!h.uniqueSet(d[k],d))throw this.logIdentifier()+" Call to setData on collection failed because your data violates the primary key unique constraint. One or more documents are using the same primary key: "+d[this._primaryKey]}else h.set(d[k],d);e=this.hash(d),i.set(d[k],e),j.set(e,d)}},o.prototype.ensurePrimaryKey=function(a){void 0===a[this._primaryKey]&&(a[this._primaryKey]=this.objectId())},o.prototype.truncate=function(){if(this.isDropped())throw this.logIdentifier()+" Cannot operate in a dropped state!";return this.emit("truncate",this._data),this._data.length=0,this._primaryIndex=new g("primary"),this._primaryCrc=new g("primaryCrc"),this._crcLookup=new g("crcLookup"),this._onChange(),this.emit("immediateChange",{type:"truncate"}),this.deferEmit("change",{type:"truncate"}),this},o.prototype.upsert=function(a,b){if(this.isDropped())throw this.logIdentifier()+" Cannot operate in a dropped state!";if(a){var c,d,e=this._deferQueue.upsert,f=this._deferThreshold.upsert,g={};if(a instanceof Array){if(this._deferredCalls&&a.length>f)return this._deferQueue.upsert=e.concat(a),this._asyncPending("upsert"),this.processQueue("upsert",b),{};for(g=[],d=0;d<a.length;d++)g.push(this.upsert(a[d]));return b&&b(),g}switch(a[this._primaryKey]?(c={},c[this._primaryKey]=a[this._primaryKey],this._primaryIndex.lookup(c)[0]?g.op="update":g.op="insert"):g.op="insert",g.op){case"insert":g.result=this.insert(a,b);break;case"update":g.result=this.update(c,a,{},b)}return g}return b&&b(),{}},o.prototype.filter=function(a,b,c){return this.find(a,c).filter(b)},o.prototype.filterUpdate=function(a,b,c){var d,e,f,g,h=this.find(a,c),i=[],j=this.primaryKey();for(g=0;g<h.length;g++)d=h[g],f=b(d),f&&(e={},e[j]=d[j],i.push(this.update(e,f)));return i},o.prototype.update=function(a,b,c,d){if(this.isDropped())throw this.logIdentifier()+" Cannot operate in a dropped state!";return this.mongoEmulation()?(this.convertToFdb(a),this.convertToFdb(b)):b=this.decouple(b),b=this.transformIn(b),this._handleUpdate(a,b,c,d)},o.prototype._handleUpdate=function(a,b,c,d){var e,f,g=this,h=this._metrics.create("update"),i=function(d){var e,f,i,j=g.decouple(d);return g.willTrigger(g.TYPE_UPDATE,g.PHASE_BEFORE)||g.willTrigger(g.TYPE_UPDATE,g.PHASE_AFTER)?(e=g.decouple(d),f={type:"update",query:g.decouple(a),update:g.decouple(b),options:g.decouple(c),op:h},i=g.updateObject(e,f.update,f.query,f.options,""),g.processTrigger(f,g.TYPE_UPDATE,g.PHASE_BEFORE,d,e)!==!1?(i=g.updateObject(d,e,f.query,f.options,""),g.processTrigger(f,g.TYPE_UPDATE,g.PHASE_AFTER,j,e)):i=!1):i=g.updateObject(d,b,a,c,""),g._updateIndexes(j,d),i};return h.start(),h.time("Retrieve documents to update"),e=this.find(a,{$decouple:!1}),h.time("Retrieve documents to update"),e.length&&(h.time("Update documents"),f=e.filter(i),h.time("Update documents"),f.length&&(this.debug()&&console.log(this.logIdentifier()+" Updated some data"),h.time("Resolve chains"),this.chainSend("update",{query:a,update:b,dataSet:f},c),h.time("Resolve chains"),this._onUpdate(f),this._onChange(),d&&d(),this.emit("immediateChange",{type:"update",data:f}),this.deferEmit("change",{type:"update",data:f}))),h.stop(),f||[]},o.prototype._replaceObj=function(a,b){var c;this._removeFromIndexes(a);for(c in a)a.hasOwnProperty(c)&&delete a[c];for(c in b)b.hasOwnProperty(c)&&(a[c]=b[c]);if(!this._insertIntoIndexes(a))throw this.logIdentifier()+" Primary key violation in update! Key violated: "+a[this._primaryKey];return this},o.prototype.updateById=function(a,b){var c={};return c[this._primaryKey]=a,this.update(c,b)[0]},o.prototype.updateObject=function(a,b,c,d,e,f){b=this.decouple(b),e=e||"","."===e.substr(0,1)&&(e=e.substr(1,e.length-1));var g,i,j,k,l,m,n,o,p,q,r,s,t=!1,u=!1;for(s in b)if(b.hasOwnProperty(s)){if(g=!1,"$"===s.substr(0,1))switch(s){case"$key":case"$index":case"$data":case"$min":case"$max":g=!0;break;case"$each":for(g=!0,k=b.$each.length,j=0;k>j;j++)u=this.updateObject(a,b.$each[j],c,d,e),u&&(t=!0);t=t||u;break;case"$replace":g=!0,n=b.$replace,o=this.primaryKey();for(m in a)a.hasOwnProperty(m)&&m!==o&&void 0===n[m]&&(this._updateUnset(a,m),t=!0);for(m in n)n.hasOwnProperty(m)&&m!==o&&(this._updateOverwrite(a,m,n[m]),t=!0);break;default:g=!0,u=this.updateObject(a,b[s],c,d,e,s),t=t||u}if(this._isPositionalKey(s)&&(g=!0,s=s.substr(0,s.length-2),p=new h(e+"."+s),a[s]&&a[s]instanceof Array&&a[s].length)){for(i=[],j=0;j<a[s].length;j++)this._match(a[s][j],p.value(c)[0],d,"",{})&&i.push(j);for(j=0;j<i.length;j++)u=this.updateObject(a[s][i[j]],b[s+".$"],c,d,e+"."+s,f),t=t||u}if(!g)if(f||"object"!=typeof b[s])switch(f){case"$inc":var v=!0;b[s]>0?b.$max&&a[s]>=b.$max&&(v=!1):b[s]<0&&b.$min&&a[s]<=b.$min&&(v=!1),v&&(this._updateIncrement(a,s,b[s]),t=!0);break;case"$cast":switch(b[s]){case"array":a[s]instanceof Array||(this._updateProperty(a,s,b.$data||[]),t=!0);break;case"object":(!(a[s]instanceof Object)||a[s]instanceof Array)&&(this._updateProperty(a,s,b.$data||{}),t=!0);break;case"number":"number"!=typeof a[s]&&(this._updateProperty(a,s,Number(a[s])),t=!0);break;case"string":"string"!=typeof a[s]&&(this._updateProperty(a,s,String(a[s])),t=!0);break;default:throw this.logIdentifier()+" Cannot update cast to unknown type: "+b[s]}break;case"$push":if(void 0===a[s]&&this._updateProperty(a,s,[]),!(a[s]instanceof Array))throw this.logIdentifier()+" Cannot push to a key that is not an array! ("+s+")";if(void 0!==b[s].$position&&b[s].$each instanceof Array)for(l=b[s].$position,k=b[s].$each.length,j=0;k>j;j++)this._updateSplicePush(a[s],l+j,b[s].$each[j]);else if(b[s].$each instanceof Array)for(k=b[s].$each.length,j=0;k>j;j++)this._updatePush(a[s],b[s].$each[j]);else this._updatePush(a[s],b[s]);t=!0;break;case"$pull":if(a[s]instanceof Array){for(i=[],j=0;j<a[s].length;j++)this._match(a[s][j],b[s],d,"",{})&&i.push(j);for(k=i.length;k--;)this._updatePull(a[s],i[k]),t=!0}break;case"$pullAll":if(a[s]instanceof Array){if(!(b[s]instanceof Array))throw this.logIdentifier()+" Cannot pullAll without being given an array of values to pull! ("+s+")";if(i=a[s],k=i.length,k>0)for(;k--;){for(l=0;l<b[s].length;l++)i[k]===b[s][l]&&(this._updatePull(a[s],k),k--,t=!0);if(0>k)break}}break;case"$addToSet":if(void 0===a[s]&&this._updateProperty(a,s,[]),!(a[s]instanceof Array))throw this.logIdentifier()+" Cannot addToSet on a key that is not an array! ("+s+")";var w,x,y,z,A=a[s],B=A.length,C=!0,D=d&&d.$addToSet;for(b[s].$key?(y=!1,z=new h(b[s].$key),x=z.value(b[s])[0],delete b[s].$key):D&&D.key?(y=!1,z=new h(D.key),x=z.value(b[s])[0]):(x=this.jStringify(b[s]),y=!0),w=0;B>w;w++)if(y){if(this.jStringify(A[w])===x){C=!1;break}}else if(x===z.value(A[w])[0]){C=!1;break}C&&(this._updatePush(a[s],b[s]),t=!0);break;case"$splicePush":if(void 0===a[s]&&this._updateProperty(a,s,[]),!(a[s]instanceof Array))throw this.logIdentifier()+" Cannot splicePush with a key that is not an array! ("+s+")";if(l=b.$index,void 0===l)throw this.logIdentifier()+" Cannot splicePush without a $index integer value!";delete b.$index,l>a[s].length&&(l=a[s].length),this._updateSplicePush(a[s],l,b[s]),t=!0;break;case"$move":if(!(a[s]instanceof Array))throw this.logIdentifier()+" Cannot move on a key that is not an array! ("+s+")";for(j=0;j<a[s].length;j++)if(this._match(a[s][j],b[s],d,"",{})){var E=b.$index;if(void 0===E)throw this.logIdentifier()+" Cannot move without a $index integer value!";delete b.$index,this._updateSpliceMove(a[s],j,E),t=!0;break}break;case"$mul":this._updateMultiply(a,s,b[s]),t=!0;break;case"$rename":this._updateRename(a,s,b[s]),t=!0;break;case"$overwrite":this._updateOverwrite(a,s,b[s]),t=!0;break;case"$unset":this._updateUnset(a,s),t=!0;break;case"$clear":this._updateClear(a,s),t=!0;break;case"$pop":if(!(a[s]instanceof Array))throw this.logIdentifier()+" Cannot pop from a key that is not an array! ("+s+")";this._updatePop(a[s],b[s])&&(t=!0);break;case"$toggle":this._updateProperty(a,s,!a[s]),t=!0;break;default:a[s]!==b[s]&&(this._updateProperty(a,s,b[s]),t=!0)}else if(null!==a[s]&&"object"==typeof a[s])if(q=a[s]instanceof Array,r=b[s]instanceof Array,q||r)if(!r&&q)for(j=0;j<a[s].length;j++)u=this.updateObject(a[s][j],b[s],c,d,e+"."+s,f),t=t||u;else a[s]!==b[s]&&(this._updateProperty(a,s,b[s]),t=!0);else u=this.updateObject(a[s],b[s],c,d,e+"."+s,f),t=t||u;else a[s]!==b[s]&&(this._updateProperty(a,s,b[s]),t=!0)}return t},o.prototype._isPositionalKey=function(a){return".$"===a.substr(a.length-2,2)},o.prototype.remove=function(a,b,c){if(this.isDropped())throw this.logIdentifier()+" Cannot operate in a dropped state!";var d,e,f,g,h,i,j,k,l=this;if("function"==typeof b&&(c=b,b={}),this.mongoEmulation()&&this.convertToFdb(a),a instanceof Array){for(g=[],f=0;f<a.length;f++)g.push(this.remove(a[f],{noEmit:!0}));return(!b||b&&!b.noEmit)&&this._onRemove(g),c&&c(!1,g),g}if(g=[],d=this.find(a,{$decouple:!1}),d.length){h=function(a){l._removeFromIndexes(a),e=l._data.indexOf(a),l._dataRemoveAtIndex(e),g.push(a)};for(var m=0;m<d.length;m++)j=d[m],l.willTrigger(l.TYPE_REMOVE,l.PHASE_BEFORE)||l.willTrigger(l.TYPE_REMOVE,l.PHASE_AFTER)?(i={type:"remove"},k=l.decouple(j),l.processTrigger(i,l.TYPE_REMOVE,l.PHASE_BEFORE,k,k)!==!1&&(h(j),l.processTrigger(i,l.TYPE_REMOVE,l.PHASE_AFTER,k,k))):h(j);g.length&&(l.chainSend("remove",{query:a,dataSet:g},b),(!b||b&&!b.noEmit)&&this._onRemove(g),this._onChange(),this.emit("immediateChange",{type:"remove",data:g}),this.deferEmit("change",{type:"remove",data:g}))}return c&&c(!1,g),g},o.prototype.removeById=function(a){var b={};return b[this._primaryKey]=a,this.remove(b)[0]},o.prototype.processQueue=function(a,b,c){var d,e,f=this,g=this._deferQueue[a],h=this._deferThreshold[a],i=this._deferTime[a];if(c=c||{deferred:!0},g.length){switch(d=g.length>h?g.splice(0,h):g.splice(0,g.length),e=f[a](d),a){case"insert":c.inserted=c.inserted||[],c.failed=c.failed||[],c.inserted=c.inserted.concat(e.inserted),c.failed=c.failed.concat(e.failed)}setTimeout(function(){f.processQueue.call(f,a,b,c)},i)}else b&&b(c),this._asyncComplete(a);this.isProcessingQueue()||this.deferEmit("queuesComplete")},o.prototype.isProcessingQueue=function(){var a;for(a in this._deferQueue)if(this._deferQueue.hasOwnProperty(a)&&this._deferQueue[a].length)return!0;return!1},o.prototype.insert=function(a,b,c){if(this.isDropped())throw this.logIdentifier()+" Cannot operate in a dropped state!";return"function"==typeof b?(c=b,b=this._data.length):void 0===b&&(b=this._data.length),a=this.transformIn(a),this._insertHandle(a,b,c)},o.prototype._insertHandle=function(a,b,c){var d,e,f,g=this._deferQueue.insert,h=this._deferThreshold.insert,i=[],j=[];if(a instanceof Array){if(this._deferredCalls&&a.length>h)return this._deferQueue.insert=g.concat(a),this._asyncPending("insert"),void this.processQueue("insert",c);for(f=0;f<a.length;f++)d=this._insert(a[f],b+f),d===!0?i.push(a[f]):j.push({doc:a[f],reason:d})}else d=this._insert(a,b),d===!0?i.push(a):j.push({doc:a,reason:d});return e={deferred:!1,inserted:i,failed:j},this._onInsert(i,j),c&&c(e),this._onChange(),this.emit("immediateChange",{type:"insert",data:i}),this.deferEmit("change",{type:"insert",data:i}),e},o.prototype._insert=function(a,b){if(a){var c,d,e,f,g=this,h=this.capped(),i=this.cappedSize();if(this.ensurePrimaryKey(a),c=this.insertIndexViolation(a),e=function(a){g._insertIntoIndexes(a),b>g._data.length&&(b=g._data.length),g._dataInsertAtIndex(b,a),h&&g._data.length>i&&g.removeById(g._data[0][g._primaryKey]),g.chainSend("insert",{dataSet:[a]},{index:b})},c)return"Index violation in index: "+c;if(g.willTrigger(g.TYPE_INSERT,g.PHASE_BEFORE)||g.willTrigger(g.TYPE_INSERT,g.PHASE_AFTER)){if(d={type:"insert"},g.processTrigger(d,g.TYPE_INSERT,g.PHASE_BEFORE,{},a)===!1)return"Trigger cancelled operation";e(a),g.willTrigger(g.TYPE_INSERT,g.PHASE_AFTER)&&(f=g.decouple(a),g.processTrigger(d,g.TYPE_INSERT,g.PHASE_AFTER,{},f))}else e(a);return!0}return"No document passed to insert"},o.prototype._dataInsertAtIndex=function(a,b){this._data.splice(a,0,b)},o.prototype._dataRemoveAtIndex=function(a){this._data.splice(a,1)},o.prototype._dataReplace=function(a){for(;this._data.length;)this._data.pop();this._data=this._data.concat(a)},o.prototype._insertIntoIndexes=function(a){var b,c,d=this._indexByName,e=this.hash(a),f=this._primaryKey;c=this._primaryIndex.uniqueSet(a[f],a),this._primaryCrc.uniqueSet(a[f],e),this._crcLookup.uniqueSet(e,a);for(b in d)d.hasOwnProperty(b)&&d[b].insert(a);return c},o.prototype._removeFromIndexes=function(a){var b,c=this._indexByName,d=this.hash(a),e=this._primaryKey;this._primaryIndex.unSet(a[e]),this._primaryCrc.unSet(a[e]),this._crcLookup.unSet(d);for(b in c)c.hasOwnProperty(b)&&c[b].remove(a)},o.prototype._updateIndexes=function(a,b){this._removeFromIndexes(a),this._insertIntoIndexes(b)},o.prototype._rebuildIndexes=function(){var a,b=this._indexByName;for(a in b)b.hasOwnProperty(a)&&b[a].rebuild()},o.prototype.subset=function(a,b){var c,d=this.find(a,b);return c=new o,c.db(this._db),c.subsetOf(this).primaryKey(this._primaryKey).setData(d),c},d.synthesize(o.prototype,"subsetOf"),o.prototype.isSubsetOf=function(a){return this._subsetOf===a},o.prototype.distinct=function(a,b,c){if(this.isDropped())throw this.logIdentifier()+" Cannot operate in a dropped state!";var d,e,f=this.find(b,c),g=new h(a),i={},j=[];for(e=0;e<f.length;e++)d=g.value(f[e])[0],d&&!i[d]&&(i[d]=!0,j.push(d));return j},o.prototype.findById=function(a,b){var c={};return c[this._primaryKey]=a,this.find(c,b)[0]},o.prototype.peek=function(a,b){var c,d,e=this._data,f=e.length,g=new o,h=typeof a;if("string"===h){for(c=0;f>c;c++)d=this.jStringify(e[c]),d.indexOf(a)>-1&&g.insert(e[c]);return g.find({},b)}return this.find(a,b)},o.prototype.explain=function(a,b){var c=this.find(a,b);return c.__fdbOp._data},o.prototype.options=function(a){return a=a||{},a.$decouple=void 0!==a.$decouple?a.$decouple:!0,a.$explain=void 0!==a.$explain?a.$explain:!1,a},o.prototype.find=function(a,b,c){return this.mongoEmulation()&&this.convertToFdb(a),c?(c("Callbacks for the find() operation are not yet implemented!",[]),[]):this._find.call(this,a,b,c)},o.prototype._find=function(a,b){if(this.isDropped())throw this.logIdentifier()+" Cannot operate in a dropped state!";a=a||{};var c,d,e,f,g,i,j,k,l,m,n,o,p,q,r,s,t,u,v,w,x=this._metrics.create("find"),y=this.primaryKey(),z=this,A=!0,B={},C=[],D=[],E=[],F={},G={};if(b instanceof Array||(b=this.options(b)),w=function(c){return z._match(c,a,b,"and",F)},x.start(),a){if(a instanceof Array){for(v=this,n=0;n<a.length;n++)v=v.subset(a[n],b&&b[n]?b[n]:{});return v.find()}if(a.$findSub){if(!a.$findSub.$path)throw"$findSub missing $path property!";return this.findSub(a.$findSub.$query,a.$findSub.$path,a.$findSub.$subQuery,a.$findSub.$subOptions)}if(a.$findSubOne){if(!a.$findSubOne.$path)throw"$findSubOne missing $path property!";return this.findSubOne(a.$findSubOne.$query,a.$findSubOne.$path,a.$findSubOne.$subQuery,a.$findSubOne.$subOptions)}if(x.time("analyseQuery"),c=this._analyseQuery(z.decouple(a),b,x),x.time("analyseQuery"),x.data("analysis",c),c.hasJoin&&c.queriesJoin){for(x.time("joinReferences"),f=0;f<c.joinsOn.length;f++)m=c.joinsOn[f],j=m.key,k=m.type,l=m.id,i=new h(c.joinQueries[j]),g=i.value(a)[0],B[l]=this._db[k](j).subset(g),delete a[c.joinQueries[j]];x.time("joinReferences")}if(c.indexMatch.length&&(!b||b&&!b.$skipIndex)?(x.data("index.potential",c.indexMatch),x.data("index.used",c.indexMatch[0].index),x.time("indexLookup"),e=c.indexMatch[0].lookup||[],x.time("indexLookup"),c.indexMatch[0].keyData.totalKeyCount===c.indexMatch[0].keyData.score&&(A=!1)):x.flag("usedIndex",!1),A&&(e&&e.length?(d=e.length,x.time("tableScan: "+d),e=e.filter(w)):(d=this._data.length,x.time("tableScan: "+d),e=this._data.filter(w)),x.time("tableScan: "+d)),b.$orderBy&&(x.time("sort"),e=this.sort(b.$orderBy,e),x.time("sort")),void 0!==b.$page&&void 0!==b.$limit&&(G.page=b.$page,G.pages=Math.ceil(e.length/b.$limit),G.records=e.length,b.$page&&b.$limit>0&&(x.data("cursor",G),e.splice(0,b.$page*b.$limit))),b.$skip&&(G.skip=b.$skip,e.splice(0,b.$skip),x.data("skip",b.$skip)),b.$limit&&e&&e.length>b.$limit&&(G.limit=b.$limit,e.length=b.$limit,x.data("limit",b.$limit)),b.$decouple&&(x.time("decouple"),e=this.decouple(e),x.time("decouple"),x.data("flag.decouple",!0)),b.$join&&(C=C.concat(this.applyJoin(e,b.$join,B)),x.data("flag.join",!0)),C.length&&(x.time("removalQueue"),this.spliceArrayByIndexList(e,C),x.time("removalQueue")),b.$transform){for(x.time("transform"),n=0;n<e.length;n++)e.splice(n,1,b.$transform(e[n]));x.time("transform"),x.data("flag.transform",!0)}this._transformEnabled&&this._transformOut&&(x.time("transformOut"),e=this.transformOut(e),x.time("transformOut")),x.data("results",e.length)}else e=[];if(!b.$aggregate){x.time("scanFields");for(n in b)b.hasOwnProperty(n)&&0!==n.indexOf("$")&&(1===b[n]?D.push(n):0===b[n]&&E.push(n));if(x.time("scanFields"),D.length||E.length){for(x.data("flag.limitFields",!0),x.data("limitFields.on",D),x.data("limitFields.off",E),x.time("limitFields"),n=0;n<e.length;n++){t=e[n];for(o in t)t.hasOwnProperty(o)&&(D.length&&o!==y&&-1===D.indexOf(o)&&delete t[o],E.length&&E.indexOf(o)>-1&&delete t[o])}x.time("limitFields")}if(b.$elemMatch){x.data("flag.elemMatch",!0),x.time("projection-elemMatch");for(n in b.$elemMatch)if(b.$elemMatch.hasOwnProperty(n))for(q=new h(n),o=0;o<e.length;o++)if(r=q.value(e[o])[0],r&&r.length)for(p=0;p<r.length;p++)if(z._match(r[p],b.$elemMatch[n],b,"",{})){q.set(e[o],n,[r[p]]);break}x.time("projection-elemMatch")}if(b.$elemsMatch){x.data("flag.elemsMatch",!0),x.time("projection-elemsMatch");for(n in b.$elemsMatch)if(b.$elemsMatch.hasOwnProperty(n))for(q=new h(n),o=0;o<e.length;o++)if(r=q.value(e[o])[0],r&&r.length){for(s=[],p=0;p<r.length;p++)z._match(r[p],b.$elemsMatch[n],b,"",{})&&s.push(r[p]);q.set(e[o],n,s)}x.time("projection-elemsMatch")}}return b.$aggregate&&(x.data("flag.aggregate",!0),x.time("aggregate"),u=new h(b.$aggregate),e=u.value(e),x.time("aggregate")),x.stop(),e.__fdbOp=x,e.$cursor=G,e},o.prototype.findOne=function(){return this.find.apply(this,arguments)[0]},o.prototype.indexOf=function(a,b){var c,d=this.find(a,{$decouple:!1})[0];return d?!b||b&&!b.$orderBy?this._data.indexOf(d):(b.$decouple=!1,c=this.find(a,b),c.indexOf(d)):-1},o.prototype.indexOfDocById=function(a,b){var c,d;return c="object"!=typeof a?this._primaryIndex.get(a):this._primaryIndex.get(a[this._primaryKey]),c?!b||b&&!b.$orderBy?this._data.indexOf(c):(b.$decouple=!1,d=this.find({},b),d.indexOf(c)):-1},o.prototype.removeByIndex=function(a){var b,c;return b=this._data[a],void 0!==b?(b=this.decouple(b),c=b[this.primaryKey()],this.removeById(c)):!1},o.prototype.transform=function(a){return void 0!==a?("object"==typeof a?(void 0!==a.enabled&&(this._transformEnabled=a.enabled),void 0!==a.dataIn&&(this._transformIn=a.dataIn),void 0!==a.dataOut&&(this._transformOut=a.dataOut)):this._transformEnabled=a!==!1,this):{enabled:this._transformEnabled,dataIn:this._transformIn,dataOut:this._transformOut}},o.prototype.transformIn=function(a){if(this._transformEnabled&&this._transformIn){if(a instanceof Array){var b,c,d=[];for(c=0;c<a.length;c++)b=this._transformIn(a[c]),b instanceof Array?d=d.concat(b):d.push(b);return d}return this._transformIn(a)}return a},o.prototype.transformOut=function(a){if(this._transformEnabled&&this._transformOut){if(a instanceof Array){var b,c,d=[];for(c=0;c<a.length;c++)b=this._transformOut(a[c]),b instanceof Array?d=d.concat(b):d.push(b);return d}return this._transformOut(a)}return a},o.prototype.sort=function(a,b){var c=this,d=n.parse(a,!0);return d.length&&b.sort(function(a,b){var e,f,g=0;for(e=0;e<d.length;e++)if(f=d[e],1===f.value?g=c.sortAsc(n.get(a,f.path),n.get(b,f.path)):-1===f.value&&(g=c.sortDesc(n.get(a,f.path),n.get(b,f.path))),0!==g)return g;return g}),b},o.prototype._sort=function(a,b){var c,d=this,e=new h,f=e.parse(a,!0)[0];if(e.path(f.path),1===f.value)c=function(a,b){var c=e.value(a)[0],f=e.value(b)[0];return d.sortAsc(c,f)};else{if(-1!==f.value)throw this.logIdentifier()+" $orderBy clause has invalid direction: "+f.value+", accepted values are 1 or -1 for ascending or descending!";c=function(a,b){var c=e.value(a)[0],f=e.value(b)[0];return d.sortDesc(c,f)}}return b.sort(c)},o.prototype._analyseQuery=function(a,b,c){var d,e,f,g,i,j,k,l,m,n,o,p,q,r,s,t,u={queriesOn:[{id:"$collection."+this._name,type:"colletion",key:this._name}],indexMatch:[],hasJoin:!1,queriesJoin:!1,joinQueries:{},query:a,options:b},v=[],w=[];if(c.time("checkIndexes"),p=new h,q=p.parseArr(a,{ignore:/\$/,verbose:!0}).length){void 0!==a[this._primaryKey]&&(r=typeof a[this._primaryKey],("string"===r||"number"===r||a[this._primaryKey]instanceof Array)&&(c.time("checkIndexMatch: Primary Key"),s=this._primaryIndex.lookup(a,b),u.indexMatch.push({lookup:s,keyData:{matchedKeys:[this._primaryKey],totalKeyCount:q,score:1},index:this._primaryIndex}),c.time("checkIndexMatch: Primary Key")));for(t in this._indexById)if(this._indexById.hasOwnProperty(t)&&(m=this._indexById[t],n=m.name(),c.time("checkIndexMatch: "+n), l=m.match(a,b),l.score>0&&(o=m.lookup(a,b),u.indexMatch.push({lookup:o,keyData:l,index:m})),c.time("checkIndexMatch: "+n),l.score===q))break;c.time("checkIndexes"),u.indexMatch.length>1&&(c.time("findOptimalIndex"),u.indexMatch.sort(function(a,b){return a.keyData.score>b.keyData.score?-1:a.keyData.score<b.keyData.score?1:a.keyData.score===b.keyData.score?a.lookup.length-b.lookup.length:void 0}),c.time("findOptimalIndex"))}if(b.$join){for(u.hasJoin=!0,d=0;d<b.$join.length;d++)for(e in b.$join[d])b.$join[d].hasOwnProperty(e)&&(i=b.$join[d][e],f=i.$sourceType||"collection",g="$"+f+"."+e,v.push({id:g,type:f,key:e}),void 0!==b.$join[d][e].$as?w.push(b.$join[d][e].$as):w.push(e));for(k=0;k<w.length;k++)j=this._queryReferencesSource(a,w[k],""),j&&(u.joinQueries[v[k].key]=j,u.queriesJoin=!0);u.joinsOn=v,u.queriesOn=u.queriesOn.concat(v)}return u},o.prototype._queryReferencesSource=function(a,b,c){var d;for(d in a)if(a.hasOwnProperty(d)){if(d===b)return c&&(c+="."),c+d;if("object"==typeof a[d])return c&&(c+="."),c+=d,this._queryReferencesSource(a[d],b,c)}return!1},o.prototype.count=function(a,b){return a?this.find(a,b).length:this._data.length},o.prototype.findSub=function(a,b,c,d){return this._findSub(this.find(a),b,c,d)},o.prototype._findSub=function(a,b,c,d){var e,f,g,i=new h(b),j=a.length,k=new o("__FDB_temp_"+this.objectId()).db(this._db),l={parents:j,subDocTotal:0,subDocs:[],pathFound:!1,err:""};for(d=d||{},e=0;j>e;e++)if(f=i.value(a[e])[0]){if(k.setData(f),g=k.find(c,d),d.returnFirst&&g.length)return g[0];d.$split?l.subDocs.push(g):l.subDocs=l.subDocs.concat(g),l.subDocTotal+=g.length,l.pathFound=!0}return k.drop(),l.pathFound||(l.err="No objects found in the parent documents with a matching path of: "+b),d.$stats?l:l.subDocs},o.prototype.findSubOne=function(a,b,c,d){return this.findSub(a,b,c,d)[0]},o.prototype.insertIndexViolation=function(a){var b,c,d,e=this._indexByName;if(this._primaryIndex.get(a[this._primaryKey]))b=this._primaryIndex;else for(c in e)if(e.hasOwnProperty(c)&&(d=e[c],d.unique()&&d.violation(a))){b=d;break}return b?b.name():!1},o.prototype.ensureIndex=function(a,b){if(this.isDropped())throw this.logIdentifier()+" Cannot operate in a dropped state!";this._indexByName=this._indexByName||{},this._indexById=this._indexById||{};var c,d={start:(new Date).getTime()};if(b)switch(b.type){case"hashed":c=new i(a,b,this);break;case"btree":c=new j(a,b,this);break;case"2d":c=new k(a,b,this);break;default:c=new i(a,b,this)}else c=new i(a,b,this);return this._indexByName[c.name()]?{err:"Index with that name already exists"}:(c.rebuild(),this._indexByName[c.name()]=c,this._indexById[c.id()]=c,d.end=(new Date).getTime(),d.total=d.end-d.start,this._lastOp={type:"ensureIndex",stats:{time:d}},{index:c,id:c.id(),name:c.name(),state:c.state()})},o.prototype.index=function(a){return this._indexByName?this._indexByName[a]:void 0},o.prototype.lastOp=function(){return this._metrics.list()},o.prototype.diff=function(a){var b,c,d,e,f={insert:[],update:[],remove:[]},g=this.primaryKey();if(g!==a.primaryKey())throw this.logIdentifier()+" Diffing requires that both collections have the same primary key!";for(b=a._data;b&&!(b instanceof Array);)a=b,b=a._data;for(e=b.length,c=0;e>c;c++)d=b[c],this._primaryIndex.get(d[g])?this._primaryCrc.get(d[g])!==a._primaryCrc.get(d[g])&&f.update.push(d):f.insert.push(d);for(b=this._data,e=b.length,c=0;e>c;c++)d=b[c],a._primaryIndex.get(d[g])||f.remove.push(d);return f},o.prototype.collateAdd=new l({"object, string":function(a,b){var c=this;c.collateAdd(a,function(d){var e,f;switch(d.type){case"insert":b?(e={$push:{}},e.$push[b]=c.decouple(d.data.dataSet),c.update({},e)):c.insert(d.data.dataSet);break;case"update":b?(e={},f={},e[b]=d.data.query,f[b+".$"]=d.data.update,c.update(e,f)):c.update(d.data.query,d.data.update);break;case"remove":b?(e={$pull:{}},e.$pull[b]={},e.$pull[b][c.primaryKey()]=d.data.dataSet[0][a.primaryKey()],c.update({},e)):c.remove(d.data.dataSet)}})},"object, function":function(a,b){if("string"==typeof a&&(a=this._db.collection(a,{autoCreate:!1,throwError:!1})),a)return this._collate=this._collate||{},this._collate[a.name()]=new m(a,this,b),this;throw"Cannot collate from a non-existent collection!"}}),o.prototype.collateRemove=function(a){if("object"==typeof a&&(a=a.name()),a)return this._collate[a].drop(),delete this._collate[a],this;throw"No collection name passed to collateRemove() or collection not found!"},e.prototype.collection=new l({"":function(){return this.$main.call(this,{name:this.objectId()})},object:function(a){return a instanceof o?"droppped"!==a.state()?a:this.$main.call(this,{name:a.name()}):this.$main.call(this,a)},string:function(a){return this.$main.call(this,{name:a})},"string, string":function(a,b){return this.$main.call(this,{name:a,primaryKey:b})},"string, object":function(a,b){return b.name=a,this.$main.call(this,b)},"string, string, object":function(a,b,c){return c.name=a,c.primaryKey=b,this.$main.call(this,c)},$main:function(a){var b=this,c=a.name;if(c){if(this._collection[c])return this._collection[c];if(a&&a.autoCreate===!1){if(a&&a.throwError!==!1)throw this.logIdentifier()+" Cannot get collection "+c+" because it does not exist and auto-create has been disabled!";return}if(this.debug()&&console.log(this.logIdentifier()+" Creating collection "+c),this._collection[c]=this._collection[c]||new o(c,a).db(this),this._collection[c].mongoEmulation(this.mongoEmulation()),void 0!==a.primaryKey&&this._collection[c].primaryKey(a.primaryKey),void 0!==a.capped){if(void 0===a.size)throw this.logIdentifier()+" Cannot create a capped collection without specifying a size!";this._collection[c].capped(a.capped),this._collection[c].cappedSize(a.size)}return b._collection[c].on("change",function(){b.emit("change",b._collection[c],"collection",c)}),b.emit("create",b._collection[c],"collection",c),this._collection[c]}if(!a||a&&a.throwError!==!1)throw this.logIdentifier()+" Cannot get collection with undefined name!"}}),e.prototype.collectionExists=function(a){return Boolean(this._collection[a])},e.prototype.collections=function(a){var b,c,d=[],e=this._collection;a&&(a instanceof RegExp||(a=new RegExp(a)));for(c in e)e.hasOwnProperty(c)&&(b=e[c],a?a.exec(c)&&d.push({name:c,count:b.count(),linked:void 0!==b.isLinked?b.isLinked():!1}):d.push({name:c,count:b.count(),linked:void 0!==b.isLinked?b.isLinked():!1}));return d.sort(function(a,b){return a.name.localeCompare(b.name)}),d},d.finishModule("Collection"),b.exports=o},{"./Index2d":10,"./IndexBinaryTree":11,"./IndexHashMap":12,"./KeyValueStore":13,"./Metrics":14,"./Overload":26,"./Path":27,"./ReactorIO":31,"./Shared":33}],6:[function(a,b,c){"use strict";var d,e,f,g;d=a("./Shared");var h=function(){this.init.apply(this,arguments)};h.prototype.init=function(a){var b=this;b._name=a,b._data=new g("__FDB__cg_data_"+b._name),b._collections=[],b._view=[]},d.addModule("CollectionGroup",h),d.mixin(h.prototype,"Mixin.Common"),d.mixin(h.prototype,"Mixin.ChainReactor"),d.mixin(h.prototype,"Mixin.Constants"),d.mixin(h.prototype,"Mixin.Triggers"),d.mixin(h.prototype,"Mixin.Tags"),g=a("./Collection"),e=d.modules.Db,f=d.modules.Db.prototype.init,h.prototype.on=function(){this._data.on.apply(this._data,arguments)},h.prototype.off=function(){this._data.off.apply(this._data,arguments)},h.prototype.emit=function(){this._data.emit.apply(this._data,arguments)},h.prototype.primaryKey=function(a){return void 0!==a?(this._primaryKey=a,this):this._primaryKey},d.synthesize(h.prototype,"state"),d.synthesize(h.prototype,"db"),d.synthesize(h.prototype,"name"),h.prototype.addCollection=function(a){if(a&&-1===this._collections.indexOf(a)){if(this._collections.length){if(this._primaryKey!==a.primaryKey())throw this.logIdentifier()+" All collections in a collection group must have the same primary key!"}else this.primaryKey(a.primaryKey());this._collections.push(a),a._groups=a._groups||[],a._groups.push(this),a.chain(this),a.on("drop",function(){if(a._groups&&a._groups.length){var b,c=[];for(b=0;b<a._groups.length;b++)c.push(a._groups[b]);for(b=0;b<c.length;b++)a._groups[b].removeCollection(a)}delete a._groups}),this._data.insert(a.find())}return this},h.prototype.removeCollection=function(a){if(a){var b,c=this._collections.indexOf(a);-1!==c&&(a.unChain(this),this._collections.splice(c,1),a._groups=a._groups||[],b=a._groups.indexOf(this),-1!==b&&a._groups.splice(b,1),a.off("drop")),0===this._collections.length&&delete this._primaryKey}return this},h.prototype._chainHandler=function(a){switch(a.type){case"setData":a.data.dataSet=this.decouple(a.data.dataSet),this._data.remove(a.data.oldData),this._data.insert(a.data.dataSet);break;case"insert":a.data.dataSet=this.decouple(a.data.dataSet),this._data.insert(a.data.dataSet);break;case"update":this._data.update(a.data.query,a.data.update,a.options);break;case"remove":this._data.remove(a.data.query,a.options)}},h.prototype.insert=function(){this._collectionsRun("insert",arguments)},h.prototype.update=function(){this._collectionsRun("update",arguments)},h.prototype.updateById=function(){this._collectionsRun("updateById",arguments)},h.prototype.remove=function(){this._collectionsRun("remove",arguments)},h.prototype._collectionsRun=function(a,b){for(var c=0;c<this._collections.length;c++)this._collections[c][a].apply(this._collections[c],b)},h.prototype.find=function(a,b){return this._data.find(a,b)},h.prototype.removeById=function(a){for(var b=0;b<this._collections.length;b++)this._collections[b].removeById(a)},h.prototype.subset=function(a,b){var c=this.find(a,b);return(new g).subsetOf(this).primaryKey(this._primaryKey).setData(c)},h.prototype.drop=function(a){if(!this.isDropped()){var b,c,d;if(this._debug&&console.log(this.logIdentifier()+" Dropping"),this._state="dropped",this._collections&&this._collections.length)for(c=[].concat(this._collections),b=0;b<c.length;b++)this.removeCollection(c[b]);if(this._view&&this._view.length)for(d=[].concat(this._view),b=0;b<d.length;b++)this._removeView(d[b]);this.emit("drop",this),delete this._listeners,a&&a(!1,!0)}return!0},e.prototype.init=function(){this._collectionGroup={},f.apply(this,arguments)},e.prototype.collectionGroup=function(a){var b=this;return a?a instanceof h?a:this._collectionGroup&&this._collectionGroup[a]?this._collectionGroup[a]:(this._collectionGroup[a]=new h(a).db(this),b.emit("create",b._collectionGroup[a],"collectionGroup",a),this._collectionGroup[a]):this._collectionGroup},e.prototype.collectionGroups=function(){var a,b=[];for(a in this._collectionGroup)this._collectionGroup.hasOwnProperty(a)&&b.push({name:a});return b},b.exports=h},{"./Collection":5,"./Shared":33}],7:[function(a,b,c){"use strict";var d,e,f,g,h=[];d=a("./Shared"),g=a("./Overload");var i=function(a){this.init.apply(this,arguments)};i.prototype.init=function(a){this._db={},this._debug={},this._name=a||"ForerunnerDB",h.push(this)},i.prototype.instantiatedCount=function(){return h.length},i.prototype.instances=function(a){return void 0!==a?h[a]:h},i.prototype.namedInstances=function(a){var b,c;{if(void 0===a){for(c=[],b=0;b<h.length;b++)c.push(h[b].name);return c}for(b=0;b<h.length;b++)if(h[b].name===a)return h[b]}},i.prototype.moduleLoaded=new g({string:function(a){if(void 0!==a){a=a.replace(/ /g,"");var b,c=a.split(",");for(b=0;b<c.length;b++)if(!d.modules[c[b]])return!1;return!0}return!1},"string, function":function(a,b){if(void 0!==a){a=a.replace(/ /g,"");var c,e=a.split(",");for(c=0;c<e.length;c++)if(!d.modules[e[c]])return!1;b&&b()}},"array, function":function(a,b){var c,e;for(e=0;e<a.length;e++)if(c=a[e],void 0!==c){c=c.replace(/ /g,"");var f,g=c.split(",");for(f=0;f<g.length;f++)if(!d.modules[g[f]])return!1}b&&b()},"string, function, function":function(a,b,c){if(void 0!==a){a=a.replace(/ /g,"");var e,f=a.split(",");for(e=0;e<f.length;e++)if(!d.modules[f[e]])return c(),!1;b()}}}),i.prototype.version=function(a,b){return void 0!==a?0===d.version.indexOf(a)?(b&&b(),!0):!1:d.version},i.moduleLoaded=i.prototype.moduleLoaded,i.version=i.prototype.version,i.instances=i.prototype.instances,i.instantiatedCount=i.prototype.instantiatedCount,i.shared=d,i.prototype.shared=d,d.addModule("Core",i),d.mixin(i.prototype,"Mixin.Common"),d.mixin(i.prototype,"Mixin.Constants"),e=a("./Db.js"),f=a("./Metrics.js"),d.synthesize(i.prototype,"name"),d.synthesize(i.prototype,"mongoEmulation"),i.prototype._isServer=!1,i.prototype.isClient=function(){return!this._isServer},i.prototype.isServer=function(){return this._isServer},i.prototype.collection=function(){throw"ForerunnerDB's instantiation has changed since version 1.3.36 to support multiple database instances. Please see the readme.md file for the minor change you have to make to get your project back up and running, or see the issue related to this change at https://github.com/Irrelon/ForerunnerDB/issues/44"},b.exports=i},{"./Db.js":8,"./Metrics.js":14,"./Overload":26,"./Shared":33}],8:[function(a,b,c){"use strict";var d,e,f,g,h,i;d=a("./Shared"),i=a("./Overload");var j=function(a,b){this.init.apply(this,arguments)};j.prototype.init=function(a,b){this.core(b),this._primaryKey="_id",this._name=a,this._collection={},this._debug={}},d.addModule("Db",j),j.prototype.moduleLoaded=new i({string:function(a){if(void 0!==a){a=a.replace(/ /g,"");var b,c=a.split(",");for(b=0;b<c.length;b++)if(!d.modules[c[b]])return!1;return!0}return!1},"string, function":function(a,b){if(void 0!==a){a=a.replace(/ /g,"");var c,e=a.split(",");for(c=0;c<e.length;c++)if(!d.modules[e[c]])return!1;b&&b()}},"string, function, function":function(a,b,c){if(void 0!==a){a=a.replace(/ /g,"");var e,f=a.split(",");for(e=0;e<f.length;e++)if(!d.modules[f[e]])return c(),!1;b()}}}),j.prototype.version=function(a,b){return void 0!==a?0===d.version.indexOf(a)?(b&&b(),!0):!1:d.version},j.moduleLoaded=j.prototype.moduleLoaded,j.version=j.prototype.version,j.shared=d,j.prototype.shared=d,d.addModule("Db",j),d.mixin(j.prototype,"Mixin.Common"),d.mixin(j.prototype,"Mixin.ChainReactor"),d.mixin(j.prototype,"Mixin.Constants"),d.mixin(j.prototype,"Mixin.Tags"),e=d.modules.Core,f=a("./Collection.js"),g=a("./Metrics.js"),h=a("./Checksum.js"),j.prototype._isServer=!1,d.synthesize(j.prototype,"core"),d.synthesize(j.prototype,"primaryKey"),d.synthesize(j.prototype,"state"),d.synthesize(j.prototype,"name"),d.synthesize(j.prototype,"mongoEmulation"),j.prototype.isClient=function(){return!this._isServer},j.prototype.isServer=function(){return this._isServer},j.prototype.Checksum=h,j.prototype.isClient=function(){return!this._isServer},j.prototype.isServer=function(){return this._isServer},j.prototype.arrayToCollection=function(a){return(new f).setData(a)},j.prototype.on=function(a,b){return this._listeners=this._listeners||{},this._listeners[a]=this._listeners[a]||[],this._listeners[a].push(b),this},j.prototype.off=function(a,b){if(a in this._listeners){var c=this._listeners[a],d=c.indexOf(b);d>-1&&c.splice(d,1)}return this},j.prototype.emit=function(a,b){if(this._listeners=this._listeners||{},a in this._listeners){var c,d=this._listeners[a],e=d.length;for(c=0;e>c;c++)d[c].apply(this,Array.prototype.slice.call(arguments,1))}return this},j.prototype.peek=function(a){var b,c,d=[],e=typeof a;for(b in this._collection)this._collection.hasOwnProperty(b)&&(c=this._collection[b],d="string"===e?d.concat(c.peek(a)):d.concat(c.find(a)));return d},j.prototype.peek=function(a){var b,c,d=[],e=typeof a;for(b in this._collection)this._collection.hasOwnProperty(b)&&(c=this._collection[b],d="string"===e?d.concat(c.peek(a)):d.concat(c.find(a)));return d},j.prototype.peekCat=function(a){var b,c,d,e={},f=typeof a;for(b in this._collection)this._collection.hasOwnProperty(b)&&(c=this._collection[b],"string"===f?(d=c.peek(a),d&&d.length&&(e[c.name()]=d)):(d=c.find(a),d&&d.length&&(e[c.name()]=d)));return e},j.prototype.drop=new i({"":function(){if(!this.isDropped()){var a,b=this.collections(),c=b.length;for(this._state="dropped",a=0;c>a;a++)this.collection(b[a].name).drop(),delete this._collection[b[a].name];this.emit("drop",this),delete this._listeners,delete this._core._db[this._name]}return!0},"function":function(a){if(!this.isDropped()){var b,c=this.collections(),d=c.length,e=0,f=function(){e++,e===d&&a&&a()};for(this._state="dropped",b=0;d>b;b++)this.collection(c[b].name).drop(f),delete this._collection[c[b].name];this.emit("drop",this),delete this._listeners,delete this._core._db[this._name]}return!0},"boolean":function(a){if(!this.isDropped()){var b,c=this.collections(),d=c.length;for(this._state="dropped",b=0;d>b;b++)this.collection(c[b].name).drop(a),delete this._collection[c[b].name];this.emit("drop",this),delete this._listeners,delete this._core._db[this._name]}return!0},"boolean, function":function(a,b){if(!this.isDropped()){var c,d=this.collections(),e=d.length,f=0,g=function(){f++,f===e&&b&&b()};for(this._state="dropped",c=0;e>c;c++)this.collection(d[c].name).drop(a,g),delete this._collection[d[c].name];this.emit("drop",this),delete this._listeners,delete this._core._db[this._name]}return!0}}),e.prototype.db=function(a){return a instanceof j?a:(a||(a=this.objectId()),this._db[a]=this._db[a]||new j(a,this),this._db[a].mongoEmulation(this.mongoEmulation()),this._db[a])},e.prototype.databases=function(a){var b,c,d,e=[];a&&(a instanceof RegExp||(a=new RegExp(a)));for(d in this._db)this._db.hasOwnProperty(d)&&(c=!0,a&&(a.exec(d)||(c=!1)),c&&(b={name:d,children:[]},this.shared.moduleExists("Collection")&&b.children.push({module:"collection",moduleName:"Collections",count:this._db[d].collections().length}),this.shared.moduleExists("CollectionGroup")&&b.children.push({module:"collectionGroup",moduleName:"Collection Groups",count:this._db[d].collectionGroups().length}),this.shared.moduleExists("Document")&&b.children.push({module:"document",moduleName:"Documents",count:this._db[d].documents().length}),this.shared.moduleExists("Grid")&&b.children.push({module:"grid",moduleName:"Grids",count:this._db[d].grids().length}),this.shared.moduleExists("Overview")&&b.children.push({module:"overview",moduleName:"Overviews",count:this._db[d].overviews().length}),this.shared.moduleExists("View")&&b.children.push({module:"view",moduleName:"Views",count:this._db[d].views().length}),e.push(b)));return e.sort(function(a,b){return a.name.localeCompare(b.name)}),e},d.finishModule("Db"),b.exports=j},{"./Checksum.js":4,"./Collection.js":5,"./Metrics.js":14,"./Overload":26,"./Shared":33}],9:[function(a,b,c){"use strict";var d,e,f,g;d=[16,8,4,2,1],e="0123456789bcdefghjkmnpqrstuvwxyz",f={right:{even:"bc01fg45238967deuvhjyznpkmstqrwx"},left:{even:"238967debc01fg45kmstqrwxuvhjyznp"},top:{even:"p0r21436x8zb9dcf5h7kjnmqesgutwvy"},bottom:{even:"14365h7k9dcfesgujnmqp0r2twvyx8zb"}},g={right:{even:"bcfguvyz"},left:{even:"0145hjnp"},top:{even:"prxz"},bottom:{even:"028b"}},f.bottom.odd=f.left.even,f.top.odd=f.right.even,f.left.odd=f.bottom.even,f.right.odd=f.top.even,g.bottom.odd=g.left.even,g.top.odd=g.right.even,g.left.odd=g.bottom.even,g.right.odd=g.top.even;var h=function(){};h.prototype.refineInterval=function(a,b,c){b&c?a[0]=(a[0]+a[1])/2:a[1]=(a[0]+a[1])/2},h.prototype.calculateNeighbours=function(a,b){var c;return b&&"object"!==b.type?(c=[],c[4]=a,c[3]=this.calculateAdjacent(a,"left"),c[5]=this.calculateAdjacent(a,"right"),c[1]=this.calculateAdjacent(a,"top"),c[7]=this.calculateAdjacent(a,"bottom"),c[0]=this.calculateAdjacent(c[3],"top"),c[2]=this.calculateAdjacent(c[5],"top"),c[6]=this.calculateAdjacent(c[3],"bottom"),c[8]=this.calculateAdjacent(c[5],"bottom")):(c={center:a,left:this.calculateAdjacent(a,"left"),right:this.calculateAdjacent(a,"right"),top:this.calculateAdjacent(a,"top"),bottom:this.calculateAdjacent(a,"bottom")},c.topLeft=this.calculateAdjacent(c.left,"top"),c.topRight=this.calculateAdjacent(c.right,"top"),c.bottomLeft=this.calculateAdjacent(c.left,"bottom"),c.bottomRight=this.calculateAdjacent(c.right,"bottom")),c},h.prototype.calculateAdjacent=function(a,b){a=a.toLowerCase();var c=a.charAt(a.length-1),d=a.length%2?"odd":"even",h=a.substring(0,a.length-1);return-1!==g[b][d].indexOf(c)&&(h=this.calculateAdjacent(h,b)),h+e[f[b][d].indexOf(c)]},h.prototype.decode=function(a){var b,c,f,g,h,i,j,k=1,l=[],m=[];for(l[0]=-90,l[1]=90,m[0]=-180,m[1]=180,i=90,j=180,b=0;b<a.length;b++)for(c=a[b],f=e.indexOf(c),g=0;5>g;g++)h=d[g],k?(j/=2,this.refineInterval(m,f,h)):(i/=2,this.refineInterval(l,f,h)),k=!k;return l[2]=(l[0]+l[1])/2,m[2]=(m[0]+m[1])/2,{latitude:l,longitude:m}},h.prototype.encode=function(a,b,c){var f,g=1,h=[],i=[],j=0,k=0,l="";for(c||(c=12),h[0]=-90,h[1]=90,i[0]=-180,i[1]=180;l.length<c;)g?(f=(i[0]+i[1])/2,b>f?(k|=d[j],i[0]=f):i[1]=f):(f=(h[0]+h[1])/2,a>f?(k|=d[j],h[0]=f):h[1]=f),g=!g,4>j?j++:(l+=e[k],j=0,k=0);return l},b.exports=h},{}],10:[function(a,b,c){"use strict";var d=a("./Shared"),e=a("./Path"),f=a("./BinaryTree"),g=a("./GeoHash"),h=new e,i=new g,j=[5e3,1250,156,39.1,4.89,1.22,.153,.0382,.00477,.00119,149e-6,372e-7],k=function(){this.init.apply(this,arguments)};k.prototype.init=function(a,b,c){this._btree=new f,this._btree.index(a),this._size=0,this._id=this._itemKeyHash(a,a),this._debug=b&&b.debug?b.debug:!1,this.unique(b&&b.unique?b.unique:!1),void 0!==a&&this.keys(a),void 0!==c&&(this.collection(c),this._btree.primaryKey(c.primaryKey())),this.name(b&&b.name?b.name:this._id),this._btree.debug(this._debug)},d.addModule("Index2d",k),d.mixin(k.prototype,"Mixin.Common"),d.mixin(k.prototype,"Mixin.ChainReactor"),d.mixin(k.prototype,"Mixin.Sorting"),k.prototype.id=function(){return this._id},k.prototype.state=function(){return this._state},k.prototype.size=function(){return this._size},d.synthesize(k.prototype,"data"),d.synthesize(k.prototype,"name"),d.synthesize(k.prototype,"collection"),d.synthesize(k.prototype,"type"),d.synthesize(k.prototype,"unique"),k.prototype.keys=function(a){return void 0!==a?(this._keys=a,this._keyCount=h.parse(this._keys).length,this):this._keys},k.prototype.rebuild=function(){if(this._collection){var a,b=this._collection.subset({},{$decouple:!1,$orderBy:this._keys}),c=b.find(),d=c.length;for(this._btree.clear(),this._size=0,this._unique&&(this._uniqueLookup={}),a=0;d>a;a++)this.insert(c[a])}this._state={name:this._name,keys:this._keys,indexSize:this._size,built:new Date,updated:new Date,ok:!0}},k.prototype.insert=function(a,b){var c,d=this._unique;a=this.decouple(a),d&&(c=this._itemHash(a,this._keys),this._uniqueLookup[c]=a);var e,f,g,j,k,l=this._btree.keys();for(k=0;k<l.length;k++)e=h.get(a,l[k].path),e instanceof Array&&(g=e[0],j=e[1],f=i.encode(g,j),h.set(a,l[k].path,f));return this._btree.insert(a)?(this._size++,!0):!1},k.prototype.remove=function(a,b){var c,d=this._unique;return d&&(c=this._itemHash(a,this._keys),delete this._uniqueLookup[c]),this._btree.remove(a)?(this._size--,!0):!1},k.prototype.violation=function(a){var b=this._itemHash(a,this._keys);return Boolean(this._uniqueLookup[b])},k.prototype.hashViolation=function(a){return Boolean(this._uniqueLookup[a])},k.prototype.lookup=function(a,b){var c,d,e,f,g=this._btree.keys();for(f=0;f<g.length;f++)if(c=g[f].path,d=h.get(a,c),"object"==typeof d)return d.$near&&(e=[],e=e.concat(this.near(c,d.$near,b))),d.$geoWithin&&(e=[],e=e.concat(this.geoWithin(c,d.$geoWithin,b))),e;return this._btree.lookup(a,b)},k.prototype.near=function(a,b,c){var d,e,f,g,k,l,m,n,o,p,q,r=this,s=[],t=this._collection.primaryKey();if("km"===b.$distanceUnits){for(m=b.$maxDistance,q=0;q<j.length;q++)if(m>j[q]){l=q;break}0===l&&(l=1)}else if("miles"===b.$distanceUnits){for(m=1.60934*b.$maxDistance,q=0;q<j.length;q++)if(m>j[q]){l=q;break}0===l&&(l=1)}for(d=i.encode(b.$point[0],b.$point[1],l),e=i.calculateNeighbours(d,{type:"array"}),k=[],f=0,q=0;9>q;q++)g=this._btree.startsWith(a,e[q]),f+=g._visited,k=k.concat(g);if(k=this._collection._primaryIndex.lookup(k),k.length){for(n={},q=0;q<k.length;q++)p=h.get(k[q],a),o=n[k[q][t]]=this.distanceBetweenPoints(b.$point[0],b.$point[1],p[0],p[1]),m>=o&&s.push(k[q]);s.sort(function(a,b){return r.sortAsc(n[a[t]],n[b[t]])})}return s},k.prototype.geoWithin=function(a,b,c){return[]},k.prototype.distanceBetweenPoints=function(a,b,c,d){var e=6371,f=this.toRadians(a),g=this.toRadians(c),h=this.toRadians(c-a),i=this.toRadians(d-b),j=Math.sin(h/2)*Math.sin(h/2)+Math.cos(f)*Math.cos(g)*Math.sin(i/2)*Math.sin(i/2),k=2*Math.atan2(Math.sqrt(j),Math.sqrt(1-j));return e*k},k.prototype.toRadians=function(a){return.01747722222222*a},k.prototype.match=function(a,b){return this._btree.match(a,b)},k.prototype._itemHash=function(a,b){var c,d,f=new e,g="";for(c=f.parse(b),d=0;d<c.length;d++)g&&(g+="_"),g+=f.value(a,c[d].path).join(":");return g},k.prototype._itemKeyHash=function(a,b){var c,d,f=new e,g="";for(c=f.parse(b),d=0;d<c.length;d++)g&&(g+="_"),g+=f.keyValue(a,c[d].path);return g},k.prototype._itemHashArr=function(a,b){var c,d,f,g,h,i=new e,j=[];for(c=i.parse(b),g=0;g<c.length;g++)for(d=i.value(a,c[g].path),f=0;f<d.length;f++)if(0===g)j.push(d[f]);else for(h=0;h<j.length;h++)j[h]=j[h]+"_"+d[f];return j},d.finishModule("Index2d"),b.exports=k},{"./BinaryTree":3,"./GeoHash":9,"./Path":27,"./Shared":33}],11:[function(a,b,c){"use strict";var d=a("./Shared"),e=a("./Path"),f=a("./BinaryTree"),g=function(){this.init.apply(this,arguments)};g.prototype.init=function(a,b,c){this._btree=new f,this._btree.index(a),this._size=0,this._id=this._itemKeyHash(a,a),this._debug=b&&b.debug?b.debug:!1,this.unique(b&&b.unique?b.unique:!1),void 0!==a&&this.keys(a),void 0!==c&&(this.collection(c),this._btree.primaryKey(c.primaryKey())),this.name(b&&b.name?b.name:this._id),this._btree.debug(this._debug)},d.addModule("IndexBinaryTree",g),d.mixin(g.prototype,"Mixin.ChainReactor"),d.mixin(g.prototype,"Mixin.Sorting"),g.prototype.id=function(){return this._id},g.prototype.state=function(){return this._state},g.prototype.size=function(){return this._size},d.synthesize(g.prototype,"data"),d.synthesize(g.prototype,"name"),d.synthesize(g.prototype,"collection"),d.synthesize(g.prototype,"type"),d.synthesize(g.prototype,"unique"),g.prototype.keys=function(a){return void 0!==a?(this._keys=a,this._keyCount=(new e).parse(this._keys).length,this):this._keys},g.prototype.rebuild=function(){if(this._collection){var a,b=this._collection.subset({},{$decouple:!1,$orderBy:this._keys}),c=b.find(),d=c.length;for(this._btree.clear(),this._size=0,this._unique&&(this._uniqueLookup={}),a=0;d>a;a++)this.insert(c[a])}this._state={name:this._name,keys:this._keys,indexSize:this._size,built:new Date,updated:new Date,ok:!0}},g.prototype.insert=function(a,b){var c,d=this._unique;return d&&(c=this._itemHash(a,this._keys),this._uniqueLookup[c]=a),this._btree.insert(a)?(this._size++,!0):!1},g.prototype.remove=function(a,b){var c,d=this._unique;return d&&(c=this._itemHash(a,this._keys),delete this._uniqueLookup[c]),this._btree.remove(a)?(this._size--,!0):!1},g.prototype.violation=function(a){var b=this._itemHash(a,this._keys);return Boolean(this._uniqueLookup[b])},g.prototype.hashViolation=function(a){return Boolean(this._uniqueLookup[a])},g.prototype.lookup=function(a,b){return this._btree.lookup(a,b)},g.prototype.match=function(a,b){return this._btree.match(a,b)},g.prototype._itemHash=function(a,b){var c,d,f=new e,g="";for(c=f.parse(b),d=0;d<c.length;d++)g&&(g+="_"),g+=f.value(a,c[d].path).join(":");return g},g.prototype._itemKeyHash=function(a,b){var c,d,f=new e,g="";for(c=f.parse(b),d=0;d<c.length;d++)g&&(g+="_"),g+=f.keyValue(a,c[d].path);return g},g.prototype._itemHashArr=function(a,b){var c,d,f,g,h,i=new e,j=[];for(c=i.parse(b),g=0;g<c.length;g++)for(d=i.value(a,c[g].path),f=0;f<d.length;f++)if(0===g)j.push(d[f]);else for(h=0;h<j.length;h++)j[h]=j[h]+"_"+d[f];return j},d.finishModule("IndexBinaryTree"),b.exports=g},{"./BinaryTree":3,"./Path":27,"./Shared":33}],12:[function(a,b,c){"use strict";var d=a("./Shared"),e=a("./Path"),f=function(){this.init.apply(this,arguments)};f.prototype.init=function(a,b,c){this._crossRef={},this._size=0,this._id=this._itemKeyHash(a,a),this.data({}),this.unique(b&&b.unique?b.unique:!1),void 0!==a&&this.keys(a),void 0!==c&&this.collection(c),this.name(b&&b.name?b.name:this._id)},d.addModule("IndexHashMap",f),d.mixin(f.prototype,"Mixin.ChainReactor"),f.prototype.id=function(){return this._id},f.prototype.state=function(){return this._state},f.prototype.size=function(){return this._size},d.synthesize(f.prototype,"data"),d.synthesize(f.prototype,"name"),d.synthesize(f.prototype,"collection"),d.synthesize(f.prototype,"type"),d.synthesize(f.prototype,"unique"),f.prototype.keys=function(a){return void 0!==a?(this._keys=a,this._keyCount=(new e).parse(this._keys).length,this):this._keys},f.prototype.rebuild=function(){if(this._collection){var a,b=this._collection.subset({},{$decouple:!1,$orderBy:this._keys}),c=b.find(),d=c.length;for(this._data={},this._size=0,this._unique&&(this._uniqueLookup={}),a=0;d>a;a++)this.insert(c[a])}this._state={name:this._name,keys:this._keys,indexSize:this._size,built:new Date,updated:new Date,ok:!0}},f.prototype.insert=function(a,b){var c,d,e,f=this._unique;for(f&&(c=this._itemHash(a,this._keys),this._uniqueLookup[c]=a),d=this._itemHashArr(a,this._keys),e=0;e<d.length;e++)this.pushToPathValue(d[e],a)},f.prototype.update=function(a,b){},f.prototype.remove=function(a,b){var c,d,e,f=this._unique;for(f&&(c=this._itemHash(a,this._keys),delete this._uniqueLookup[c]),d=this._itemHashArr(a,this._keys),e=0;e<d.length;e++)this.pullFromPathValue(d[e],a)},f.prototype.violation=function(a){var b=this._itemHash(a,this._keys);return Boolean(this._uniqueLookup[b])},f.prototype.hashViolation=function(a){return Boolean(this._uniqueLookup[a])},f.prototype.pushToPathValue=function(a,b){var c=this._data[a]=this._data[a]||[];-1===c.indexOf(b)&&(c.push(b),this._size++,this.pushToCrossRef(b,c))},f.prototype.pullFromPathValue=function(a,b){var c,d=this._data[a];c=d.indexOf(b),c>-1&&(d.splice(c,1),this._size--,this.pullFromCrossRef(b,d)),d.length||delete this._data[a]},f.prototype.pull=function(a){var b,c,d=a[this._collection.primaryKey()],e=this._crossRef[d],f=e.length;for(b=0;f>b;b++)c=e[b],this._pullFromArray(c,a);this._size--,delete this._crossRef[d]},f.prototype._pullFromArray=function(a,b){for(var c=a.length;c--;)a[c]===b&&a.splice(c,1)},f.prototype.pushToCrossRef=function(a,b){var c,d=a[this._collection.primaryKey()];this._crossRef[d]=this._crossRef[d]||[],c=this._crossRef[d],-1===c.indexOf(b)&&c.push(b)},f.prototype.pullFromCrossRef=function(a,b){var c=a[this._collection.primaryKey()];delete this._crossRef[c]},f.prototype.lookup=function(a){return this._data[this._itemHash(a,this._keys)]||[]},f.prototype.match=function(a,b){var c,d=new e,f=d.parseArr(this._keys),g=d.parseArr(a),h=[],i=0;for(c=0;c<f.length;c++){if(g[c]!==f[c])return{matchedKeys:[],totalKeyCount:g.length,score:0};i++,h.push(g[c])}return{matchedKeys:h,totalKeyCount:g.length,score:i}},f.prototype._itemHash=function(a,b){var c,d,f=new e,g="";for(c=f.parse(b),d=0;d<c.length;d++)g&&(g+="_"),g+=f.value(a,c[d].path).join(":");return g},f.prototype._itemKeyHash=function(a,b){var c,d,f=new e,g="";for(c=f.parse(b),d=0;d<c.length;d++)g&&(g+="_"),g+=f.keyValue(a,c[d].path);return g},f.prototype._itemHashArr=function(a,b){var c,d,f,g,h,i=new e,j=[];for(c=i.parse(b),g=0;g<c.length;g++)for(d=i.value(a,c[g].path),f=0;f<d.length;f++)if(0===g)j.push(d[f]);else for(h=0;h<j.length;h++)j[h]=j[h]+"_"+d[f];return j},d.finishModule("IndexHashMap"),b.exports=f},{"./Path":27,"./Shared":33}],13:[function(a,b,c){"use strict";var d=a("./Shared"),e=function(a){this.init.apply(this,arguments)};e.prototype.init=function(a){this._name=a,this._data={},this._primaryKey="_id"},d.addModule("KeyValueStore",e),d.mixin(e.prototype,"Mixin.ChainReactor"),d.synthesize(e.prototype,"name"),e.prototype.primaryKey=function(a){return void 0!==a?(this._primaryKey=a,this):this._primaryKey},e.prototype.truncate=function(){return this._data={},this},e.prototype.set=function(a,b){return this._data[a]=b?b:!0,this},e.prototype.get=function(a){return this._data[a]},e.prototype.lookup=function(a){var b,c,d,e=this._primaryKey,f=typeof a,g=[]; if("string"===f||"number"===f)return d=this.get(a),void 0!==d?[d]:[];if("object"===f){if(a instanceof Array){for(c=a.length,g=[],b=0;c>b;b++)d=this.lookup(a[b]),d&&(d instanceof Array?g=g.concat(d):g.push(d));return g}if(a[e])return this.lookup(a[e])}},e.prototype.unSet=function(a){return delete this._data[a],this},e.prototype.uniqueSet=function(a,b){return void 0===this._data[a]?(this._data[a]=b,!0):!1},d.finishModule("KeyValueStore"),b.exports=e},{"./Shared":33}],14:[function(a,b,c){"use strict";var d=a("./Shared"),e=a("./Operation"),f=function(){this.init.apply(this,arguments)};f.prototype.init=function(){this._data=[]},d.addModule("Metrics",f),d.mixin(f.prototype,"Mixin.ChainReactor"),f.prototype.create=function(a){var b=new e(a);return this._enabled&&this._data.push(b),b},f.prototype.start=function(){return this._enabled=!0,this},f.prototype.stop=function(){return this._enabled=!1,this},f.prototype.clear=function(){return this._data=[],this},f.prototype.list=function(){return this._data},d.finishModule("Metrics"),b.exports=f},{"./Operation":25,"./Shared":33}],15:[function(a,b,c){"use strict";var d={preSetData:function(){},postSetData:function(){}};b.exports=d},{}],16:[function(a,b,c){"use strict";var d={chain:function(a){this.debug&&this.debug()&&(a._reactorIn&&a._reactorOut?console.log(a._reactorIn.logIdentifier()+' Adding target "'+a._reactorOut.instanceIdentifier()+'" to the chain reactor target list'):console.log(this.logIdentifier()+' Adding target "'+a.instanceIdentifier()+'" to the chain reactor target list')),this._chain=this._chain||[];var b=this._chain.indexOf(a);-1===b&&this._chain.push(a)},unChain:function(a){if(this.debug&&this.debug()&&(a._reactorIn&&a._reactorOut?console.log(a._reactorIn.logIdentifier()+' Removing target "'+a._reactorOut.instanceIdentifier()+'" from the chain reactor target list'):console.log(this.logIdentifier()+' Removing target "'+a.instanceIdentifier()+'" from the chain reactor target list')),this._chain){var b=this._chain.indexOf(a);b>-1&&this._chain.splice(b,1)}},chainSend:function(a,b,c){if(this._chain){var d,e,f=this._chain,g=f.length;for(e=0;g>e;e++){if(d=f[e],d._state&&(!d._state||d.isDropped()))throw console.log("Reactor Data:",a,b,c),console.log("Reactor Node:",d),"Chain reactor attempting to send data to target reactor node that is in a dropped state!";this.debug&&this.debug()&&(d._reactorIn&&d._reactorOut?console.log(d._reactorIn.logIdentifier()+' Sending data down the chain reactor pipe to "'+d._reactorOut.instanceIdentifier()+'"'):console.log(this.logIdentifier()+' Sending data down the chain reactor pipe to "'+d.instanceIdentifier()+'"')),d.chainReceive&&d.chainReceive(this,a,b,c)}}},chainReceive:function(a,b,c,d){var e={sender:a,type:b,data:c,options:d},f=!1;this.debug&&this.debug()&&console.log(this.logIdentifier()+" Received data from parent reactor node"),this._chainHandler&&(f=this._chainHandler(e)),f||this.chainSend(e.type,e.data,e.options)}};b.exports=d},{}],17:[function(a,b,c){"use strict";var d,e=0,f=a("./Overload"),g=a("./Serialiser"),h=new g;d={serialiser:h,store:function(a,b){if(void 0!==a){if(void 0!==b)return this._store=this._store||{},this._store[a]=b,this;if(this._store)return this._store[a]}},unStore:function(a){return void 0!==a&&delete this._store[a],this},decouple:function(a,b){if(void 0!==a&&""!==a){if(b){var c,d=this.jStringify(a),e=[];for(c=0;b>c;c++)e.push(this.jParse(d));return e}return this.jParse(this.jStringify(a))}},jParse:function(a){return h.parse(a)},jStringify:function(a){return h.stringify(a)},objectId:function(a){var b,c=Math.pow(10,17);if(a){var d,f=0,g=a.length;for(d=0;g>d;d++)f+=a.charCodeAt(d)*c;b=f.toString(16)}else e++,b=(e+(Math.random()*c+Math.random()*c+Math.random()*c+Math.random()*c)).toString(16);return b},hash:function(a){return JSON.stringify(a)},debug:new f([function(){return this._debug&&this._debug.all},function(a){return void 0!==a?"boolean"==typeof a?(this._debug=this._debug||{},this._debug.all=a,this.chainSend("debug",this._debug),this):this._debug&&this._debug[a]||this._db&&this._db._debug&&this._db._debug[a]||this._debug&&this._debug.all:this._debug&&this._debug.all},function(a,b){return void 0!==a?void 0!==b?(this._debug=this._debug||{},this._debug[a]=b,this.chainSend("debug",this._debug),this):this._debug&&this._debug[b]||this._db&&this._db._debug&&this._db._debug[a]:this._debug&&this._debug.all}]),classIdentifier:function(){return"ForerunnerDB."+this.className},instanceIdentifier:function(){return"["+this.className+"]"+this.name()},logIdentifier:function(){return"ForerunnerDB "+this.instanceIdentifier()},convertToFdb:function(a){var b,c,d,e;for(e in a)if(a.hasOwnProperty(e)&&(d=a,e.indexOf(".")>-1)){for(e=e.replace(".$","[|$|]"),c=e.split(".");b=c.shift();)b=b.replace("[|$|]",".$"),c.length?d[b]={}:d[b]=a[e],d=d[b];delete a[e]}},isDropped:function(){return"dropped"===this._state},debounce:function(a,b,c){var d,e=this;e._debounce=e._debounce||{},e._debounce[a]&&clearTimeout(e._debounce[a].timeout),d={callback:b,timeout:setTimeout(function(){delete e._debounce[a],b()},c)},e._debounce[a]=d}},b.exports=d},{"./Overload":26,"./Serialiser":32}],18:[function(a,b,c){"use strict";var d={TYPE_INSERT:0,TYPE_UPDATE:1,TYPE_REMOVE:2,PHASE_BEFORE:0,PHASE_AFTER:1};b.exports=d},{}],19:[function(a,b,c){"use strict";var d=a("./Overload"),e={on:new d({"string, function":function(a,b){return this._listeners=this._listeners||{},this._listeners[a]=this._listeners[a]||{},this._listeners[a]["*"]=this._listeners[a]["*"]||[],this._listeners[a]["*"].push(b),this},"string, *, function":function(a,b,c){return this._listeners=this._listeners||{},this._listeners[a]=this._listeners[a]||{},this._listeners[a][b]=this._listeners[a][b]||[],this._listeners[a][b].push(c),this}}),once:new d({"string, function":function(a,b){var c=this,d=function(){c.off(a,d),b.apply(c,arguments)};return this.on(a,d)},"string, *, function":function(a,b,c){var d=this,e=function(){d.off(a,b,e),c.apply(d,arguments)};return this.on(a,b,e)}}),off:new d({string:function(a){return this._listeners&&this._listeners[a]&&a in this._listeners&&delete this._listeners[a],this},"string, function":function(a,b){var c,d;return"string"==typeof b?this._listeners&&this._listeners[a]&&this._listeners[a][b]&&delete this._listeners[a][b]:this._listeners&&a in this._listeners&&(c=this._listeners[a]["*"],d=c.indexOf(b),d>-1&&c.splice(d,1)),this},"string, *, function":function(a,b,c){if(this._listeners&&a in this._listeners&&b in this.listeners[a]){var d=this._listeners[a][b],e=d.indexOf(c);e>-1&&d.splice(e,1)}},"string, *":function(a,b){this._listeners&&a in this._listeners&&b in this._listeners[a]&&delete this._listeners[a][b]}}),emit:function(a,b){if(this._listeners=this._listeners||{},a in this._listeners){var c,d,e,f,g,h,i;if(this._listeners[a]["*"])for(f=this._listeners[a]["*"],d=f.length,c=0;d>c;c++)e=f[c],"function"==typeof e&&e.apply(this,Array.prototype.slice.call(arguments,1));if(b instanceof Array&&b[0]&&b[0][this._primaryKey])for(g=this._listeners[a],d=b.length,c=0;d>c;c++)if(g[b[c][this._primaryKey]])for(h=g[b[c][this._primaryKey]].length,i=0;h>i;i++)e=g[b[c][this._primaryKey]][i],"function"==typeof e&&g[b[c][this._primaryKey]][i].apply(this,Array.prototype.slice.call(arguments,1))}return this},deferEmit:function(a,b){var c,d=this;return this._noEmitDefer||this._db&&(!this._db||this._db._noEmitDefer)?this.emit.apply(this,arguments):(c=arguments,this._deferTimeout=this._deferTimeout||{},this._deferTimeout[a]&&clearTimeout(this._deferTimeout[a]),this._deferTimeout[a]=setTimeout(function(){d.debug()&&console.log(d.logIdentifier()+" Emitting "+c[0]),d.emit.apply(d,c)},1)),this}};b.exports=e},{"./Overload":26}],20:[function(a,b,c){"use strict";var d={_match:function(a,b,c,d,e){var f,g,h,i,j,k,l=d,m=typeof a,n=typeof b,o=!0;if(e=e||{},c=c||{},e.$rootQuery||(e.$rootQuery=b),e.$rootSource||(e.$rootSource=a),e.$currentQuery=b,e.$rootData=e.$rootData||{},"string"!==m&&"number"!==m||"string"!==n&&"number"!==n){if(("string"===m||"number"===m)&&"object"===n&&b instanceof RegExp)b.test(a)||(o=!1);else for(k in b)if(b.hasOwnProperty(k)){if(e.$previousQuery=e.$parent,e.$parent={query:b[k],key:k,parent:e.$previousQuery},f=!1,j=k.substr(0,2),"//"===j)continue;if(0===j.indexOf("$")&&(i=this._matchOp(k,a,b[k],c,e),i>-1)){if(i){if("or"===d)return!0}else o=i;f=!0}if(!f&&b[k]instanceof RegExp)if(f=!0,"object"===m&&void 0!==a[k]&&b[k].test(a[k])){if("or"===d)return!0}else o=!1;if(!f)if("object"==typeof b[k])if(void 0!==a[k])if(a[k]instanceof Array&&!(b[k]instanceof Array)){for(g=!1,h=0;h<a[k].length&&!(g=this._match(a[k][h],b[k],c,l,e));h++);if(g){if("or"===d)return!0}else o=!1}else if(!(a[k]instanceof Array)&&b[k]instanceof Array){for(g=!1,h=0;h<b[k].length&&!(g=this._match(a[k],b[k][h],c,l,e));h++);if(g){if("or"===d)return!0}else o=!1}else if("object"==typeof a)if(g=this._match(a[k],b[k],c,l,e)){if("or"===d)return!0}else o=!1;else if(g=this._match(void 0,b[k],c,l,e)){if("or"===d)return!0}else o=!1;else if(b[k]&&void 0!==b[k].$exists)if(g=this._match(void 0,b[k],c,l,e)){if("or"===d)return!0}else o=!1;else o=!1;else if(a&&a[k]===b[k]){if("or"===d)return!0}else if(a&&a[k]&&a[k]instanceof Array&&b[k]&&"object"!=typeof b[k]){for(g=!1,h=0;h<a[k].length&&!(g=this._match(a[k][h],b[k],c,l,e));h++);if(g){if("or"===d)return!0}else o=!1}else o=!1;if("and"===d&&!o)return!1}}else"number"===m?a!==b&&(o=!1):a.localeCompare(b)&&(o=!1);return o},_matchOp:function(a,b,c,d,e){switch(a){case"$gt":return b>c;case"$gte":return b>=c;case"$lt":return c>b;case"$lte":return c>=b;case"$exists":return void 0===b!==c;case"$eq":return b==c;case"$eeq":return b===c;case"$ne":return b!=c;case"$nee":return b!==c;case"$or":for(var f=0;f<c.length;f++)if(this._match(b,c[f],d,"and",e))return!0;return!1;case"$and":for(var g=0;g<c.length;g++)if(!this._match(b,c[g],d,"and",e))return!1;return!0;case"$in":if(c instanceof Array){var h,i=c,j=i.length;for(h=0;j>h;h++)if(this._match(b,i[h],d,"and",e))return!0;return!1}return"object"==typeof c?this._match(b,c,d,"and",e):(console.log(this.logIdentifier()+" Cannot use an $in operator on a non-array key: "+a,e.$rootQuery),!1);case"$nin":if(c instanceof Array){var k,l=c,m=l.length;for(k=0;m>k;k++)if(this._match(b,l[k],d,"and",e))return!1;return!0}return"object"==typeof c?this._match(b,c,d,"and",e):(console.log(this.logIdentifier()+" Cannot use a $nin operator on a non-array key: "+a,e.$rootQuery),!1);case"$distinct":e.$rootData["//distinctLookup"]=e.$rootData["//distinctLookup"]||{};for(var n in c)if(c.hasOwnProperty(n))return e.$rootData["//distinctLookup"][n]=e.$rootData["//distinctLookup"][n]||{},e.$rootData["//distinctLookup"][n][b[n]]?!1:(e.$rootData["//distinctLookup"][n][b[n]]=!0,!0);break;case"$count":var o,p,q;for(o in c)if(c.hasOwnProperty(o)&&(p=b[o],q="object"==typeof p&&p instanceof Array?p.length:0,!this._match(q,c[o],d,"and",e)))return!1;return!0;case"$find":case"$findOne":case"$findSub":var r,s,t,u,v,w,x="collection",y={};if(!c.$from)throw a+" missing $from property!";if(c.$fromType&&(x=c.$fromType,!this.db()[x]||"function"!=typeof this.db()[x]))throw a+' cannot operate against $fromType "'+x+'" because the database does not recognise this type of object!';if(r=c.$query||{},s=c.$options||{},"$findSub"===a){if(!c.$path)throw a+" missing $path property!";if(v=c.$path,t=c.$subQuery||{},u=c.$subOptions||{},!(e.$parent&&e.$parent.parent&&e.$parent.parent.key))return this._match(b,r,{},"and",e)&&(w=this._findSub([b],v,t,u)),w&&w.length>0;w=this.db()[x](c.$from).findSub(r,v,t,u)}else w=this.db()[x](c.$from)[a.substr(1)](r,s);return y[e.$parent.parent.key]=w,this._match(b,y,d,"and",e)}return-1},applyJoin:function(a,b,c,d){var e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u,v,w,x=this,y=[];for(a instanceof Array||(a=[a]),e=0;e<b.length;e++)for(f in b[e])if(b[e].hasOwnProperty(f))for(g=b[e][f],h=g.$sourceType||"collection",i="$"+h+"."+f,j=f,c[i]?k=c[i]:this._db[h]&&"function"==typeof this._db[h]&&(k=this._db[h](f)),l=0;l<a.length;l++){m={},n=!1,o=!1,p="";for(q in g)if(g.hasOwnProperty(q))if(r=g[q],"$"===q.substr(0,1))switch(q){case"$where":if(!r.$query&&!r.$options)throw'$join $where clause requires "$query" and / or "$options" keys to work!';r.$query&&(m=x.resolveDynamicQuery(r.$query,a[l])),r.$options&&(s=r.$options);break;case"$as":j=r;break;case"$multi":n=r;break;case"$require":o=r;break;case"$prefix":p=r}else m[q]=x.resolveDynamicQuery(r,a[l]);if(t=k.find(m,s),!o||o&&t[0])if("$root"===j){if(n!==!1)throw this.logIdentifier()+' Cannot combine [$as: "$root"] with [$multi: true] in $join clause!';u=t[0],v=a[l];for(w in u)u.hasOwnProperty(w)&&void 0===v[p+w]&&(v[p+w]=u[w])}else a[l][j]=n===!1?t[0]:t;else y.push(l)}return y},resolveDynamicQuery:function(a,b){var c,d,e,f,g,h=this;if("string"==typeof a)return f="$$."===a.substr(0,3)?this.sharedPathSolver.value(b,a.substr(3,a.length-3)):this.sharedPathSolver.value(b,a),f.length>1?{$in:f}:f[0];c={};for(g in a)if(a.hasOwnProperty(g))switch(d=typeof a[g],e=a[g],d){case"string":"$$."===e.substr(0,3)?c[g]=this.sharedPathSolver.value(b,e.substr(3,e.length-3))[0]:c[g]=e;break;case"object":c[g]=h.resolveDynamicQuery(e,b);break;default:c[g]=e}return c},spliceArrayByIndexList:function(a,b){var c;for(c=b.length-1;c>=0;c--)a.splice(b[c],1)}};b.exports=d},{}],21:[function(a,b,c){"use strict";var d={sortAsc:function(a,b){return"string"==typeof a&&"string"==typeof b?a.localeCompare(b):a>b?1:b>a?-1:0},sortDesc:function(a,b){return"string"==typeof a&&"string"==typeof b?b.localeCompare(a):a>b?-1:b>a?1:0}};b.exports=d},{}],22:[function(a,b,c){"use strict";var d,e={};d={tagAdd:function(a){var b,c=this,d=e[a]=e[a]||[];for(b=0;b<d.length;b++)if(d[b]===c)return!0;return d.push(c),c.on&&c.on("drop",function(){c.tagRemove(a)}),!0},tagRemove:function(a){var b,c=e[a];if(c)for(b=0;b<c.length;b++)if(c[b]===this)return c.splice(b,1),!0;return!1},tagLookup:function(a){return e[a]||[]},tagDrop:function(a,b){var c,d,e,f=this.tagLookup(a);if(c=function(){d--,b&&0===d&&b(!1)},f.length)for(d=f.length,e=f.length-1;e>=0;e--)f[e].drop(c);return!0}},b.exports=d},{}],23:[function(a,b,c){"use strict";var d=a("./Overload"),e={addTrigger:function(a,b,c,d){var e,f=this;return e=f._triggerIndexOf(a,b,c),-1===e?(f._trigger=f._trigger||{},f._trigger[b]=f._trigger[b]||{},f._trigger[b][c]=f._trigger[b][c]||[],f._trigger[b][c].push({id:a,method:d,enabled:!0}),!0):!1},removeTrigger:function(a,b,c){var d,e=this;return d=e._triggerIndexOf(a,b,c),d>-1&&e._trigger[b][c].splice(d,1),!1},enableTrigger:new d({string:function(a){var b,c,d,e,f,g=this,h=g._trigger,i=!1;if(h)for(f in h)if(h.hasOwnProperty(f)&&(b=h[f]))for(d in b)if(b.hasOwnProperty(d))for(c=b[d],e=0;e<c.length;e++)c[e].id===a&&(c[e].enabled=!0,i=!0);return i},number:function(a){var b,c,d,e=this,f=e._trigger[a],g=!1;if(f)for(c in f)if(f.hasOwnProperty(c))for(b=f[c],d=0;d<b.length;d++)b[d].enabled=!0,g=!0;return g},"number, number":function(a,b){var c,d,e=this,f=e._trigger[a],g=!1;if(f&&(c=f[b]))for(d=0;d<c.length;d++)c[d].enabled=!0,g=!0;return g},"string, number, number":function(a,b,c){var d=this,e=d._triggerIndexOf(a,b,c);return e>-1?(d._trigger[b][c][e].enabled=!0,!0):!1}}),disableTrigger:new d({string:function(a){var b,c,d,e,f,g=this,h=g._trigger,i=!1;if(h)for(f in h)if(h.hasOwnProperty(f)&&(b=h[f]))for(d in b)if(b.hasOwnProperty(d))for(c=b[d],e=0;e<c.length;e++)c[e].id===a&&(c[e].enabled=!1,i=!0);return i},number:function(a){var b,c,d,e=this,f=e._trigger[a],g=!1;if(f)for(c in f)if(f.hasOwnProperty(c))for(b=f[c],d=0;d<b.length;d++)b[d].enabled=!1,g=!0;return g},"number, number":function(a,b){var c,d,e=this,f=e._trigger[a],g=!1;if(f&&(c=f[b]))for(d=0;d<c.length;d++)c[d].enabled=!1,g=!0;return g},"string, number, number":function(a,b,c){var d=this,e=d._triggerIndexOf(a,b,c);return e>-1?(d._trigger[b][c][e].enabled=!1,!0):!1}}),willTrigger:function(a,b){if(this._trigger&&this._trigger[a]&&this._trigger[a][b]&&this._trigger[a][b].length){var c,d=this._trigger[a][b];for(c=0;c<d.length;c++)if(d[c].enabled)return!0}return!1},processTrigger:function(a,b,c,d,e){var f,g,h,i,j,k=this;if(k._trigger&&k._trigger[b]&&k._trigger[b][c]){for(f=k._trigger[b][c],h=f.length,g=0;h>g;g++)if(i=f[g],i.enabled){if(this.debug()){var l,m;switch(b){case this.TYPE_INSERT:l="insert";break;case this.TYPE_UPDATE:l="update";break;case this.TYPE_REMOVE:l="remove";break;default:l=""}switch(c){case this.PHASE_BEFORE:m="before";break;case this.PHASE_AFTER:m="after";break;default:m=""}}if(j=i.method.call(k,a,d,e),j===!1)return!1;if(void 0!==j&&j!==!0&&j!==!1)throw"ForerunnerDB.Mixin.Triggers: Trigger error: "+j}return!0}},_triggerIndexOf:function(a,b,c){var d,e,f,g=this;if(g._trigger&&g._trigger[b]&&g._trigger[b][c])for(d=g._trigger[b][c],e=d.length,f=0;e>f;f++)if(d[f].id===a)return f;return-1}};b.exports=e},{"./Overload":26}],24:[function(a,b,c){"use strict";var d={_updateProperty:function(a,b,c){a[b]=c,this.debug()&&console.log(this.logIdentifier()+' Setting non-data-bound document property "'+b+'" to val "'+c+'"')},_updateIncrement:function(a,b,c){a[b]+=c},_updateSpliceMove:function(a,b,c){a.splice(c,0,a.splice(b,1)[0]),this.debug()&&console.log(this.logIdentifier()+' Moving non-data-bound document array index from "'+b+'" to "'+c+'"')},_updateSplicePush:function(a,b,c){a.length>b?a.splice(b,0,c):a.push(c)},_updatePush:function(a,b){a.push(b)},_updatePull:function(a,b){a.splice(b,1)},_updateMultiply:function(a,b,c){a[b]*=c},_updateRename:function(a,b,c){a[c]=a[b],delete a[b]},_updateOverwrite:function(a,b,c){a[b]=c},_updateUnset:function(a,b){delete a[b]},_updateClear:function(a,b){var c,d=a[b];if(d&&"object"==typeof d)for(c in d)d.hasOwnProperty(c)&&this._updateUnset(d,c)},_updatePop:function(a,b){var c,d=!1;if(a.length>0)if(b>0){for(c=0;b>c;c++)a.pop();d=!0}else if(0>b){for(c=0;c>b;c--)a.shift();d=!0}return d}};b.exports=d},{}],25:[function(a,b,c){"use strict";var d=a("./Shared"),e=a("./Path"),f=function(a){this.pathSolver=new e,this.counter=0,this.init.apply(this,arguments)};f.prototype.init=function(a){this._data={operation:a,index:{potential:[],used:!1},steps:[],time:{startMs:0,stopMs:0,totalMs:0,process:{}},flag:{},log:[]}},d.addModule("Operation",f),d.mixin(f.prototype,"Mixin.ChainReactor"),f.prototype.start=function(){this._data.time.startMs=(new Date).getTime()},f.prototype.log=function(a){if(a){var b=this._log.length>0?this._data.log[this._data.log.length-1].time:0,c={event:a,time:(new Date).getTime(),delta:0};return this._data.log.push(c),b&&(c.delta=c.time-b),this}return this._data.log},f.prototype.time=function(a){if(void 0!==a){var b=this._data.time.process,c=b[a]=b[a]||{};return c.startMs?(c.stopMs=(new Date).getTime(),c.totalMs=c.stopMs-c.startMs,c.stepObj.totalMs=c.totalMs,delete c.stepObj):(c.startMs=(new Date).getTime(),c.stepObj={name:a},this._data.steps.push(c.stepObj)),this}return this._data.time},f.prototype.flag=function(a,b){return void 0===a||void 0===b?void 0!==a?this._data.flag[a]:this._data.flag:void(this._data.flag[a]=b)},f.prototype.data=function(a,b,c){return void 0!==b?(this.pathSolver.set(this._data,a,b),this):this.pathSolver.get(this._data,a)},f.prototype.pushData=function(a,b,c){this.pathSolver.push(this._data,a,b)},f.prototype.stop=function(){this._data.time.stopMs=(new Date).getTime(),this._data.time.totalMs=this._data.time.stopMs-this._data.time.startMs},d.finishModule("Operation"),b.exports=f},{"./Path":27,"./Shared":33}],26:[function(a,b,c){"use strict";var d=function(a){if(a){var b,c,d,e,f,g,h=this;if(!(a instanceof Array)){d={};for(b in a)if(a.hasOwnProperty(b))if(e=b.replace(/ /g,""),-1===e.indexOf("*"))d[e]=a[b];else for(g=this.generateSignaturePermutations(e),f=0;f<g.length;f++)d[g[f]]||(d[g[f]]=a[b]);a=d}return function(){var d,e,f,g=[];if(a instanceof Array){for(c=a.length,b=0;c>b;b++)if(a[b].length===arguments.length)return h.callExtend(this,"$main",a,a[b],arguments)}else{for(b=0;b<arguments.length&&(e=typeof arguments[b],"object"===e&&arguments[b]instanceof Array&&(e="array"),1!==arguments.length||"undefined"!==e);b++)g.push(e);if(d=g.join(","),a[d])return h.callExtend(this,"$main",a,a[d],arguments);for(b=g.length;b>=0;b--)if(d=g.slice(0,b).join(","),a[d+",..."])return h.callExtend(this,"$main",a,a[d+",..."],arguments)}throw f="function"==typeof this.name?this.name():"Unknown",console.log("Overload: ",a),'ForerunnerDB.Overload "'+f+'": Overloaded method does not have a matching signature "'+d+'" for the passed arguments: '+this.jStringify(g)}}return function(){}};d.prototype.generateSignaturePermutations=function(a){var b,c,d=[],e=["string","object","number","function","undefined"];if(a.indexOf("*")>-1)for(c=0;c<e.length;c++)b=a.replace("*",e[c]),d=d.concat(this.generateSignaturePermutations(b));else d.push(a);return d},d.prototype.callExtend=function(a,b,c,d,e){var f,g;return a&&c[b]?(f=a[b],a[b]=c[b],g=d.apply(a,e),a[b]=f,g):d.apply(a,e)},b.exports=d},{}],27:[function(a,b,c){"use strict";var d=a("./Shared"),e=function(a){this.init.apply(this,arguments)};e.prototype.init=function(a){a&&this.path(a)},d.addModule("Path",e),d.mixin(e.prototype,"Mixin.Common"),d.mixin(e.prototype,"Mixin.ChainReactor"),e.prototype.path=function(a){return void 0!==a?(this._path=this.clean(a),this._pathParts=this._path.split("."),this):this._path},e.prototype.hasObjectPaths=function(a,b){var c,d=!0;for(c in a)if(a.hasOwnProperty(c)){if(void 0===b[c])return!1;if("object"==typeof a[c]&&(d=this.hasObjectPaths(a[c],b[c]),!d))return!1}return d},e.prototype.countKeys=function(a){var b,c=0;for(b in a)a.hasOwnProperty(b)&&void 0!==a[b]&&("object"!=typeof a[b]?c++:c+=this.countKeys(a[b]));return c},e.prototype.countObjectPaths=function(a,b){var c,d,e={},f=0,g=0;for(d in b)b.hasOwnProperty(d)&&("object"==typeof b[d]?(c=this.countObjectPaths(a[d],b[d]),e[d]=c.matchedKeys,g+=c.totalKeyCount,f+=c.matchedKeyCount):(g++,a&&a[d]&&"object"!=typeof a[d]?(e[d]=!0,f++):e[d]=!1));return{matchedKeys:e,matchedKeyCount:f,totalKeyCount:g}},e.prototype.parse=function(a,b){var c,d,e,f=[],g="";for(d in a)if(a.hasOwnProperty(d))if(g=d,"object"==typeof a[d])if(b)for(c=this.parse(a[d],b),e=0;e<c.length;e++)f.push({path:g+"."+c[e].path,value:c[e].value});else for(c=this.parse(a[d]),e=0;e<c.length;e++)f.push({path:g+"."+c[e].path});else b?f.push({path:g,value:a[d]}):f.push({path:g});return f},e.prototype.parseArr=function(a,b){return b=b||{},this._parseArr(a,"",[],b)},e.prototype._parseArr=function(a,b,c,d){var e,f="";b=b||"",c=c||[];for(e in a)a.hasOwnProperty(e)&&(!d.ignore||d.ignore&&!d.ignore.test(e))&&(f=b?b+"."+e:e,"object"==typeof a[e]?(d.verbose&&c.push(f),this._parseArr(a[e],f,c,d)):c.push(f));return c},e.prototype.set=function(a,b,c){if(void 0!==a&&void 0!==b){var d,e;b=this.clean(b),d=b.split("."),e=d.shift(),d.length?(a[e]=a[e]||{},this.set(a[e],d.join("."),c)):a[e]=c}return a},e.prototype.get=function(a,b){return this.value(a,b)[0]},e.prototype.value=function(a,b,c){var d,e,f,g,h,i,j,k,l;if(b&&-1===b.indexOf("."))return[a[b]];if(void 0!==a&&"object"==typeof a){if((!c||c&&!c.skipArrCheck)&&a instanceof Array){for(j=[],k=0;k<a.length;k++)j.push(this.get(a[k],b));return j}for(i=[],void 0!==b&&(b=this.clean(b),d=b.split(".")),e=d||this._pathParts,f=e.length,g=a,k=0;f>k;k++){if(g=g[e[k]],h instanceof Array){for(l=0;l<h.length;l++)i=i.concat(this.value(h,l+"."+e[k],{skipArrCheck:!0}));return i}if(!g||"object"!=typeof g)break;h=g}return[g]}return[]},e.prototype.push=function(a,b,c){if(void 0!==a&&void 0!==b){var d,e;if(b=this.clean(b),d=b.split("."),e=d.shift(),d.length)a[e]=a[e]||{},this.set(a[e],d.join("."),c);else{if(a[e]=a[e]||[],!(a[e]instanceof Array))throw"ForerunnerDB.Path: Cannot push to a path whose endpoint is not an array!";a[e].push(c)}}return a},e.prototype.keyValue=function(a,b){var c,d,e,f,g,h,i;for(void 0!==b&&(b=this.clean(b),c=b.split(".")),d=c||this._pathParts,e=d.length,f=a,i=0;e>i;i++){if(f=f[d[i]],!f||"object"!=typeof f){h=d[i]+":"+f;break}g=f}return h},e.prototype.set=function(a,b,c){if(void 0!==a&&void 0!==b){var d,e;b=this.clean(b),d=b.split("."),e=d.shift(),d.length?(a[e]=a[e]||{},this.set(a[e],d.join("."),c)):a[e]=c}return a},e.prototype.clean=function(a){return"."===a.substr(0,1)&&(a=a.substr(1,a.length-1)),a},d.finishModule("Path"),b.exports=e},{"./Shared":33}],28:[function(a,b,c){"use strict";var d,e,f,g,h,i,j,k,l,m=a("./Shared"),n=a("async"),o=a("localforage");a("./PersistCompress"),a("./PersistCrypto");k=function(){this.init.apply(this,arguments)},k.prototype.localforage=o,k.prototype.init=function(a){var b=this;this._encodeSteps=[function(){return b._encode.apply(b,arguments)}],this._decodeSteps=[function(){return b._decode.apply(b,arguments)}],a.isClient()&&void 0!==window.Storage&&(this.mode("localforage"),o.config({driver:[o.INDEXEDDB,o.WEBSQL,o.LOCALSTORAGE],name:String(a.core().name()),storeName:"FDB"}))},m.addModule("Persist",k),m.mixin(k.prototype,"Mixin.ChainReactor"),m.mixin(k.prototype,"Mixin.Common"),d=m.modules.Db,e=a("./Collection"),f=e.prototype.drop,g=a("./CollectionGroup"),h=e.prototype.init,i=d.prototype.init,j=d.prototype.drop,l=m.overload,m.synthesize(k.prototype,"auto",function(a){var b=this;return void 0!==a&&(a?(this._db.on("create",function(){b._autoLoad.apply(b,arguments)}),this._db.on("change",function(){b._autoSave.apply(b,arguments)}),this._db.debug()&&console.log(this._db.logIdentifier()+" Automatic load/save enabled")):(this._db.off("create",this._autoLoad),this._db.off("change",this._autoSave),this._db.debug()&&console.log(this._db.logIdentifier()+" Automatic load/save disbled"))),this.$super.call(this,a)}),k.prototype._autoLoad=function(a,b,c){var d=this;"function"==typeof a.load?(d._db.debug()&&console.log(d._db.logIdentifier()+" Auto-loading data for "+b+":",c),a.load(function(a,b){a&&d._db.debug()&&console.log(d._db.logIdentifier()+" Automatic load failed:",a),d.emit("load",a,b)})):d._db.debug()&&console.log(d._db.logIdentifier()+" Auto-load for "+b+":",c,"no load method, skipping")},k.prototype._autoSave=function(a,b,c){var d=this;"function"==typeof a.save&&(d._db.debug()&&console.log(d._db.logIdentifier()+" Auto-saving data for "+b+":",c),a.save(function(a,b){a&&d._db.debug()&&console.log(d._db.logIdentifier()+" Automatic save failed:",a),d.emit("save",a,b)}))},k.prototype.mode=function(a){return void 0!==a?(this._mode=a,this):this._mode},k.prototype.driver=function(a){if(void 0!==a){switch(a.toUpperCase()){case"LOCALSTORAGE":o.setDriver(o.LOCALSTORAGE);break;case"WEBSQL":o.setDriver(o.WEBSQL);break;case"INDEXEDDB":o.setDriver(o.INDEXEDDB);break;default:throw"ForerunnerDB.Persist: The persistence driver you have specified is not found. Please use either IndexedDB, WebSQL or LocalStorage!"}return this}return o.driver()},k.prototype.decode=function(a,b){n.waterfall([function(b){b&&b(!1,a,{})}].concat(this._decodeSteps),b)},k.prototype.encode=function(a,b){n.waterfall([function(b){b&&b(!1,a,{})}].concat(this._encodeSteps),b)},m.synthesize(k.prototype,"encodeSteps"),m.synthesize(k.prototype,"decodeSteps"),k.prototype.addStep=new l({object:function(a){this.$main.call(this,function(){a.encode.apply(a,arguments)},function(){a.decode.apply(a,arguments)},0)},"function, function":function(a,b){this.$main.call(this,a,b,0)},"function, function, number":function(a,b,c){this.$main.call(this,a,b,c)},$main:function(a,b,c){0===c||void 0===c?(this._encodeSteps.push(a),this._decodeSteps.unshift(b)):(this._encodeSteps.splice(c,0,a),this._decodeSteps.splice(this._decodeSteps.length-c,0,b))}}),k.prototype.unwrap=function(a){var b,c=a.split("::fdb::");switch(c[0]){case"json":b=this.jParse(c[1]);break;case"raw":b=c[1]}},k.prototype._decode=function(a,b,c){var d,e;if(a){switch(d=a.split("::fdb::"),d[0]){case"json":e=this.jParse(d[1]);break;case"raw":e=d[1]}e?(b.foundData=!0,b.rowCount=e.length):b.foundData=!1,c&&c(!1,e,b)}else b.foundData=!1,b.rowCount=0,c&&c(!1,a,b)},k.prototype._encode=function(a,b,c){var d=a;a="object"==typeof a?"json::fdb::"+this.jStringify(a):"raw::fdb::"+a,d?(b.foundData=!0,b.rowCount=d.length):b.foundData=!1,c&&c(!1,a,b)},k.prototype.save=function(a,b,c){switch(this.mode()){case"localforage":this.encode(b,function(b,d,e){o.setItem(a,d).then(function(a){c&&c(!1,a,e)},function(a){c&&c(a)})});break;default:c&&c("No data handler.")}},k.prototype.load=function(a,b){var c=this;switch(this.mode()){case"localforage":o.getItem(a).then(function(a){c.decode(a,b)},function(a){b&&b(a)});break;default:b&&b("No data handler or unrecognised data type.")}},k.prototype.drop=function(a,b){switch(this.mode()){case"localforage":o.removeItem(a).then(function(){b&&b(!1)},function(a){b&&b(a)});break;default:b&&b("No data handler or unrecognised data type.")}},e.prototype.drop=new l({"":function(){this.isDropped()||this.drop(!0)},"function":function(a){this.isDropped()||this.drop(!0,a)},"boolean":function(a){if(!this.isDropped()){if(a){if(!this._name)throw"ForerunnerDB.Persist: Cannot drop a collection's persistent storage when no name assigned to collection!";this._db&&(this._db.persist.drop(this._db._name+"-"+this._name),this._db.persist.drop(this._db._name+"-"+this._name+"-metaData"))}f.call(this)}},"boolean, function":function(a,b){var c=this;if(!this.isDropped()){if(!a)return f.call(this,b);if(this._name){if(this._db)return this._db.persist.drop(this._db._name+"-"+this._name,function(){c._db.persist.drop(c._db._name+"-"+c._name+"-metaData",b)}),f.call(this);b&&b("Cannot drop a collection's persistent storage when the collection is not attached to a database!")}else b&&b("Cannot drop a collection's persistent storage when no name assigned to collection!")}}}),e.prototype.save=function(a){var b,c=this;c._name?c._db?(b=function(){c._db.persist.save(c._db._name+"-"+c._name,c._data,function(b,d,e){b?a&&a(b):c._db.persist.save(c._db._name+"-"+c._name+"-metaData",c.metaData(),function(b,c,d){a&&a(b,c,e,d)})})},c.isProcessingQueue()?c.on("queuesComplete",function(){b()}):b()):a&&a("Cannot save a collection that is not attached to a database!"):a&&a("Cannot save a collection with no assigned name!")},e.prototype.load=function(a){var b=this;b._name?b._db?b._db.persist.load(b._db._name+"-"+b._name,function(c,d,e){c?a&&a(c):(d&&(b.remove({}),b.insert(d)),b._db.persist.load(b._db._name+"-"+b._name+"-metaData",function(c,d,f){c||d&&b.metaData(d),a&&a(c,e,f)}))}):a&&a("Cannot load a collection that is not attached to a database!"):a&&a("Cannot load a collection with no assigned name!")},e.prototype.saveCustom=function(a){var b,c=this,d={};c._name?c._db?(b=function(){c.encode(c._data,function(b,e,f){b?a(b):(d.data={name:c._db._name+"-"+c._name,store:e,tableStats:f},c.encode(c._data,function(b,e,f){b?a(b):(d.metaData={name:c._db._name+"-"+c._name+"-metaData",store:e,tableStats:f},a(!1,d))}))})},c.isProcessingQueue()?c.on("queuesComplete",function(){b()}):b()):a&&a("Cannot save a collection that is not attached to a database!"):a&&a("Cannot save a collection with no assigned name!")},e.prototype.loadCustom=function(a,b){var c=this;c._name?c._db?a.data&&a.data.store?a.metaData&&a.metaData.store?c.decode(a.data.store,function(d,e,f){d?b(d):e&&(c.remove({}),c.insert(e),c.decode(a.metaData.store,function(a,d,e){a?b(a):d&&(c.metaData(d),b&&b(a,f,e))}))}):b('No "metaData" key found in passed object!'):b('No "data" key found in passed object!'):b&&b("Cannot load a collection that is not attached to a database!"):b&&b("Cannot load a collection with no assigned name!")},d.prototype.init=function(){i.apply(this,arguments),this.persist=new k(this)},d.prototype.load=new l({"function":function(a){this.$main.call(this,{},a)},"object, function":function(a,b){this.$main.call(this,a,b)},$main:function(a,b){var c,d,e=this._collection,f=e.keys(),g=f.length;c=function(a){a?b&&b(a):(g--,0===g&&b&&b(!1))};for(d in e)e.hasOwnProperty(d)&&(a?e[d].loadCustom(a,c):e[d].load(c))}}),d.prototype.save=new l({"function":function(a){this.$main.call(this,{},a)},"object, function":function(a,b){this.$main.call(this,a,b)},$main:function(a,b){var c,d,e=this._collection,f=e.keys(),g=f.length;c=function(a){a?b&&b(a):(g--,0===g&&b&&b(!1))};for(d in e)e.hasOwnProperty(d)&&(a.custom?e[d].saveCustom(c):e[d].save(c)); }}),m.finishModule("Persist"),b.exports=k},{"./Collection":5,"./CollectionGroup":6,"./PersistCompress":29,"./PersistCrypto":30,"./Shared":33,async:35,localforage:71}],29:[function(a,b,c){"use strict";var d=a("./Shared"),e=a("pako"),f=function(){this.init.apply(this,arguments)};f.prototype.init=function(a){},d.mixin(f.prototype,"Mixin.Common"),f.prototype.encode=function(a,b,c){var d,f,g,h={data:a,type:"fdbCompress",enabled:!1};d=a.length,g=e.deflate(a,{to:"string"}),f=g.length,d>f&&(h.data=g,h.enabled=!0),b.compression={enabled:h.enabled,compressedBytes:f,uncompressedBytes:d,effect:Math.round(100/d*f)+"%"},c(!1,this.jStringify(h),b)},f.prototype.decode=function(a,b,c){var d,f=!1;a?(a=this.jParse(a),a.enabled?(d=e.inflate(a.data,{to:"string"}),f=!0):(d=a.data,f=!1),b.compression={enabled:f},c&&c(!1,d,b)):c&&c(!1,d,b)},d.plugins.FdbCompress=f,b.exports=f},{"./Shared":33,pako:72}],30:[function(a,b,c){"use strict";var d=a("./Shared"),e=a("crypto-js"),f=function(){this.init.apply(this,arguments)};f.prototype.init=function(a){if(!a||!a.pass)throw'Cannot initialise persistent storage encryption without a passphrase provided in the passed options object as the "pass" field.';this._algo=a.algo||"AES",this._pass=a.pass},d.mixin(f.prototype,"Mixin.Common"),d.synthesize(f.prototype,"pass"),f.prototype.stringify=function(a){var b={ct:a.ciphertext.toString(e.enc.Base64)};return a.iv&&(b.iv=a.iv.toString()),a.salt&&(b.s=a.salt.toString()),this.jStringify(b)},f.prototype.parse=function(a){var b=this.jParse(a),c=e.lib.CipherParams.create({ciphertext:e.enc.Base64.parse(b.ct)});return b.iv&&(c.iv=e.enc.Hex.parse(b.iv)),b.s&&(c.salt=e.enc.Hex.parse(b.s)),c},f.prototype.encode=function(a,b,c){var d,f=this,g={type:"fdbCrypto"};d=e[this._algo].encrypt(a,this._pass,{format:{stringify:function(){return f.stringify.apply(f,arguments)},parse:function(){return f.parse.apply(f,arguments)}}}),g.data=d.toString(),g.enabled=!0,b.encryption={enabled:g.enabled},c&&c(!1,this.jStringify(g),b)},f.prototype.decode=function(a,b,c){var d,f=this;a?(a=this.jParse(a),d=e[this._algo].decrypt(a.data,this._pass,{format:{stringify:function(){return f.stringify.apply(f,arguments)},parse:function(){return f.parse.apply(f,arguments)}}}).toString(e.enc.Utf8),c&&c(!1,d,b)):c&&c(!1,a,b)},d.plugins.FdbCrypto=f,b.exports=f},{"./Shared":33,"crypto-js":44}],31:[function(a,b,c){"use strict";var d=a("./Shared"),e=function(a,b,c){if(!(a&&b&&c))throw"ForerunnerDB.ReactorIO: ReactorIO requires in, out and process arguments to instantiate!";if(this._reactorIn=a,this._reactorOut=b,this._chainHandler=c,!a.chain)throw"ForerunnerDB.ReactorIO: ReactorIO requires passed in and out objects to implement the ChainReactor mixin!";a.chain(this),this.chain(b)};d.addModule("ReactorIO",e),e.prototype.drop=function(){return this.isDropped()||(this._state="dropped",this._reactorIn&&this._reactorIn.unChain(this),this._reactorOut&&this.unChain(this._reactorOut),delete this._reactorIn,delete this._reactorOut,delete this._chainHandler,this.emit("drop",this),delete this._listeners),!0},d.synthesize(e.prototype,"state"),d.mixin(e.prototype,"Mixin.Common"),d.mixin(e.prototype,"Mixin.ChainReactor"),d.mixin(e.prototype,"Mixin.Events"),d.finishModule("ReactorIO"),b.exports=e},{"./Shared":33}],32:[function(a,b,c){"use strict";var d=function(){this.init.apply(this,arguments)};d.prototype.init=function(){this._encoder=[],this._decoder={},this.registerEncoder("$date",function(a){return a instanceof Date?a.toISOString():void 0}),this.registerDecoder("$date",function(a){return new Date(a)}),this.registerEncoder("$regexp",function(a){return a instanceof RegExp?{source:a.source,params:""+(a.global?"g":"")+(a.ignoreCase?"i":"")}:void 0}),this.registerDecoder("$regexp",function(a){var b=typeof a;return"object"===b?new RegExp(a.source,a.params):"string"===b?new RegExp(a):void 0})},d.prototype.registerEncoder=function(a,b){this._encoder.push(function(c){var d,e=b(c);return void 0!==e&&(d={},d[a]=e),d})},d.prototype.registerDecoder=function(a,b){this._decoder[a]=b},d.prototype._encode=function(a){for(var b,c=this._encoder.length;c--&&!b;)b=this._encoder[c](a);return b},d.prototype.parse=function(a){if(a){var b,c=JSON.parse(a);for(b in this._decoder)if(this._decoder.hasOwnProperty(b)&&a.indexOf(b)>-1)return this._parse(c);return c}},d.prototype._parse=function(a,b){var c;if("object"==typeof a&&null!==a){b=a instanceof Array?b||[]:b||{};for(c in a)if(a.hasOwnProperty(c)){if("$"===c.substr(0,1)&&this._decoder[c])return this._decoder[c](a[c]);b[c]=this._parse(a[c],b[c])}}else b=a;return b},d.prototype.stringify=function(a){return JSON.stringify(this._stringify(a))},d.prototype._stringify=function(a,b){var c,d;if("object"==typeof a&&null!==a){if(c=this._encode(a))return c;b=a instanceof Array?b||[]:b||{};for(d in a)a.hasOwnProperty(d)&&(b[d]=this._stringify(a[d],b[d]))}else b=a;return b},b.exports=d},{}],33:[function(a,b,c){"use strict";var d=a("./Overload"),e={version:"1.3.658",modules:{},plugins:{},_synth:{},addModule:function(a,b){this.modules[a]=b,this.emit("moduleLoad",[a,b])},finishModule:function(a){if(!this.modules[a])throw"ForerunnerDB.Shared: finishModule called on a module that has not been registered with addModule(): "+a;this.modules[a]._fdbFinished=!0,this.modules[a].prototype?this.modules[a].prototype.className=a:this.modules[a].className=a,this.emit("moduleFinished",[a,this.modules[a]])},moduleFinished:function(a,b){this.modules[a]&&this.modules[a]._fdbFinished?b&&b(a,this.modules[a]):this.on("moduleFinished",b)},moduleExists:function(a){return Boolean(this.modules[a])},mixin:new d({"object, string":function(a,b){var c;if("string"==typeof b&&(c=this.mixins[b],!c))throw"ForerunnerDB.Shared: Cannot find mixin named: "+b;return this.$main.call(this,a,c)},"object, *":function(a,b){return this.$main.call(this,a,b)},$main:function(a,b){if(b&&"object"==typeof b)for(var c in b)b.hasOwnProperty(c)&&(a[c]=b[c]);return a}}),synthesize:function(a,b,c){if(this._synth[b]=this._synth[b]||function(a){return void 0!==a?(this["_"+b]=a,this):this["_"+b]},c){var d=this;a[b]=function(){var a,e=this.$super;return this.$super=d._synth[b],a=c.apply(this,arguments),this.$super=e,a}}else a[b]=this._synth[b]},overload:d,mixins:{"Mixin.Common":a("./Mixin.Common"),"Mixin.Events":a("./Mixin.Events"),"Mixin.ChainReactor":a("./Mixin.ChainReactor"),"Mixin.CRUD":a("./Mixin.CRUD"),"Mixin.Constants":a("./Mixin.Constants"),"Mixin.Triggers":a("./Mixin.Triggers"),"Mixin.Sorting":a("./Mixin.Sorting"),"Mixin.Matching":a("./Mixin.Matching"),"Mixin.Updating":a("./Mixin.Updating"),"Mixin.Tags":a("./Mixin.Tags")}};e.mixin(e,"Mixin.Events"),b.exports=e},{"./Mixin.CRUD":15,"./Mixin.ChainReactor":16,"./Mixin.Common":17,"./Mixin.Constants":18,"./Mixin.Events":19,"./Mixin.Matching":20,"./Mixin.Sorting":21,"./Mixin.Tags":22,"./Mixin.Triggers":23,"./Mixin.Updating":24,"./Overload":26}],34:[function(a,b,c){Array.prototype.filter||(Array.prototype.filter=function(a){if(void 0===this||null===this)throw new TypeError;var b=Object(this),c=b.length>>>0;if("function"!=typeof a)throw new TypeError;for(var d=[],e=arguments.length>=2?arguments[1]:void 0,f=0;c>f;f++)if(f in b){var g=b[f];a.call(e,g,f,b)&&d.push(g)}return d}),"function"!=typeof Object.create&&(Object.create=function(){var a=function(){};return function(b){if(arguments.length>1)throw Error("Second argument not supported");if("object"!=typeof b)throw TypeError("Argument must be an object");a.prototype=b;var c=new a;return a.prototype=null,c}}()),Array.prototype.indexOf||(Array.prototype.indexOf=function(a,b){var c;if(null===this)throw new TypeError('"this" is null or not defined');var d=Object(this),e=d.length>>>0;if(0===e)return-1;var f=+b||0;if(Math.abs(f)===1/0&&(f=0),f>=e)return-1;for(c=Math.max(f>=0?f:e-Math.abs(f),0);e>c;){if(c in d&&d[c]===a)return c;c++}return-1}),b.exports={}},{}],35:[function(a,b,c){(function(a,c){!function(){function d(){}function e(a){return a}function f(a){return!!a}function g(a){return!a}function h(a){return function(){if(null===a)throw new Error("Callback was already called.");a.apply(this,arguments),a=null}}function i(a){return function(){null!==a&&(a.apply(this,arguments),a=null)}}function j(a){return N(a)||"number"==typeof a.length&&a.length>=0&&a.length%1===0}function k(a,b){for(var c=-1,d=a.length;++c<d;)b(a[c],c,a)}function l(a,b){for(var c=-1,d=a.length,e=Array(d);++c<d;)e[c]=b(a[c],c,a);return e}function m(a){return l(Array(a),function(a,b){return b})}function n(a,b,c){return k(a,function(a,d,e){c=b(c,a,d,e)}),c}function o(a,b){k(P(a),function(c){b(a[c],c)})}function p(a,b){for(var c=0;c<a.length;c++)if(a[c]===b)return c;return-1}function q(a){var b,c,d=-1;return j(a)?(b=a.length,function(){return d++,b>d?d:null}):(c=P(a),b=c.length,function(){return d++,b>d?c[d]:null})}function r(a,b){return b=null==b?a.length-1:+b,function(){for(var c=Math.max(arguments.length-b,0),d=Array(c),e=0;c>e;e++)d[e]=arguments[e+b];switch(b){case 0:return a.call(this,d);case 1:return a.call(this,arguments[0],d)}}}function s(a){return function(b,c,d){return a(b,d)}}function t(a){return function(b,c,e){e=i(e||d),b=b||[];var f=q(b);if(0>=a)return e(null);var g=!1,j=0,k=!1;!function l(){if(g&&0>=j)return e(null);for(;a>j&&!k;){var d=f();if(null===d)return g=!0,void(0>=j&&e(null));j+=1,c(b[d],d,h(function(a){j-=1,a?(e(a),k=!0):l()}))}}()}}function u(a){return function(b,c,d){return a(K.eachOf,b,c,d)}}function v(a){return function(b,c,d,e){return a(t(c),b,d,e)}}function w(a){return function(b,c,d){return a(K.eachOfSeries,b,c,d)}}function x(a,b,c,e){e=i(e||d),b=b||[];var f=j(b)?[]:{};a(b,function(a,b,d){c(a,function(a,c){f[b]=c,d(a)})},function(a){e(a,f)})}function y(a,b,c,d){var e=[];a(b,function(a,b,d){c(a,function(c){c&&e.push({index:b,value:a}),d()})},function(){d(l(e.sort(function(a,b){return a.index-b.index}),function(a){return a.value}))})}function z(a,b,c,d){y(a,b,function(a,b){c(a,function(a){b(!a)})},d)}function A(a,b,c){return function(d,e,f,g){function h(){g&&g(c(!1,void 0))}function i(a,d,e){return g?void f(a,function(d){g&&b(d)&&(g(c(!0,a)),g=f=!1),e()}):e()}arguments.length>3?a(d,e,i,h):(g=f,f=e,a(d,i,h))}}function B(a,b){return b}function C(a,b,c){c=c||d;var e=j(b)?[]:{};a(b,function(a,b,c){a(r(function(a,d){d.length<=1&&(d=d[0]),e[b]=d,c(a)}))},function(a){c(a,e)})}function D(a,b,c,d){var e=[];a(b,function(a,b,d){c(a,function(a,b){e=e.concat(b||[]),d(a)})},function(a){d(a,e)})}function E(a,b,c){function e(a,b,c,e){if(null!=e&&"function"!=typeof e)throw new Error("task callback must be a function");return a.started=!0,N(b)||(b=[b]),0===b.length&&a.idle()?K.setImmediate(function(){a.drain()}):(k(b,function(b){var f={data:b,callback:e||d};c?a.tasks.unshift(f):a.tasks.push(f),a.tasks.length===a.concurrency&&a.saturated()}),void K.setImmediate(a.process))}function f(a,b){return function(){g-=1;var c=!1,d=arguments;k(b,function(a){k(i,function(b,d){b!==a||c||(i.splice(d,1),c=!0)}),a.callback.apply(a,d)}),a.tasks.length+g===0&&a.drain(),a.process()}}if(null==b)b=1;else if(0===b)throw new Error("Concurrency must not be zero");var g=0,i=[],j={tasks:[],concurrency:b,payload:c,saturated:d,empty:d,drain:d,started:!1,paused:!1,push:function(a,b){e(j,a,!1,b)},kill:function(){j.drain=d,j.tasks=[]},unshift:function(a,b){e(j,a,!0,b)},process:function(){if(!j.paused&&g<j.concurrency&&j.tasks.length)for(;g<j.concurrency&&j.tasks.length;){var b=j.payload?j.tasks.splice(0,j.payload):j.tasks.splice(0,j.tasks.length),c=l(b,function(a){return a.data});0===j.tasks.length&&j.empty(),g+=1,i.push(b[0]);var d=h(f(j,b));a(c,d)}},length:function(){return j.tasks.length},running:function(){return g},workersList:function(){return i},idle:function(){return j.tasks.length+g===0},pause:function(){j.paused=!0},resume:function(){if(j.paused!==!1){j.paused=!1;for(var a=Math.min(j.concurrency,j.tasks.length),b=1;a>=b;b++)K.setImmediate(j.process)}}};return j}function F(a){return r(function(b,c){b.apply(null,c.concat([r(function(b,c){"object"==typeof console&&(b?console.error&&console.error(b):console[a]&&k(c,function(b){console[a](b)}))})]))})}function G(a){return function(b,c,d){a(m(b),c,d)}}function H(a){return r(function(b,c){var d=r(function(c){var d=this,e=c.pop();return a(b,function(a,b,e){a.apply(d,c.concat([e]))},e)});return c.length?d.apply(this,c):d})}function I(a){return r(function(b){var c=b.pop();b.push(function(){var a=arguments;d?K.setImmediate(function(){c.apply(null,a)}):c.apply(null,a)});var d=!0;a.apply(this,b),d=!1})}var J,K={},L="object"==typeof self&&self.self===self&&self||"object"==typeof c&&c.global===c&&c||this;null!=L&&(J=L.async),K.noConflict=function(){return L.async=J,K};var M=Object.prototype.toString,N=Array.isArray||function(a){return"[object Array]"===M.call(a)},O=function(a){var b=typeof a;return"function"===b||"object"===b&&!!a},P=Object.keys||function(a){var b=[];for(var c in a)a.hasOwnProperty(c)&&b.push(c);return b},Q="function"==typeof setImmediate&&setImmediate,R=Q?function(a){Q(a)}:function(a){setTimeout(a,0)};"object"==typeof a&&"function"==typeof a.nextTick?K.nextTick=a.nextTick:K.nextTick=R,K.setImmediate=Q?R:K.nextTick,K.forEach=K.each=function(a,b,c){return K.eachOf(a,s(b),c)},K.forEachSeries=K.eachSeries=function(a,b,c){return K.eachOfSeries(a,s(b),c)},K.forEachLimit=K.eachLimit=function(a,b,c,d){return t(b)(a,s(c),d)},K.forEachOf=K.eachOf=function(a,b,c){function e(a){j--,a?c(a):null===f&&0>=j&&c(null)}c=i(c||d),a=a||[];for(var f,g=q(a),j=0;null!=(f=g());)j+=1,b(a[f],f,h(e));0===j&&c(null)},K.forEachOfSeries=K.eachOfSeries=function(a,b,c){function e(){var d=!0;return null===g?c(null):(b(a[g],g,h(function(a){if(a)c(a);else{if(g=f(),null===g)return c(null);d?K.setImmediate(e):e()}})),void(d=!1))}c=i(c||d),a=a||[];var f=q(a),g=f();e()},K.forEachOfLimit=K.eachOfLimit=function(a,b,c,d){t(b)(a,c,d)},K.map=u(x),K.mapSeries=w(x),K.mapLimit=v(x),K.inject=K.foldl=K.reduce=function(a,b,c,d){K.eachOfSeries(a,function(a,d,e){c(b,a,function(a,c){b=c,e(a)})},function(a){d(a,b)})},K.foldr=K.reduceRight=function(a,b,c,d){var f=l(a,e).reverse();K.reduce(f,b,c,d)},K.transform=function(a,b,c,d){3===arguments.length&&(d=c,c=b,b=N(a)?[]:{}),K.eachOf(a,function(a,d,e){c(b,a,d,e)},function(a){d(a,b)})},K.select=K.filter=u(y),K.selectLimit=K.filterLimit=v(y),K.selectSeries=K.filterSeries=w(y),K.reject=u(z),K.rejectLimit=v(z),K.rejectSeries=w(z),K.any=K.some=A(K.eachOf,f,e),K.someLimit=A(K.eachOfLimit,f,e),K.all=K.every=A(K.eachOf,g,g),K.everyLimit=A(K.eachOfLimit,g,g),K.detect=A(K.eachOf,e,B),K.detectSeries=A(K.eachOfSeries,e,B),K.detectLimit=A(K.eachOfLimit,e,B),K.sortBy=function(a,b,c){function d(a,b){var c=a.criteria,d=b.criteria;return d>c?-1:c>d?1:0}K.map(a,function(a,c){b(a,function(b,d){b?c(b):c(null,{value:a,criteria:d})})},function(a,b){return a?c(a):void c(null,l(b.sort(d),function(a){return a.value}))})},K.auto=function(a,b,c){function e(a){q.unshift(a)}function f(a){var b=p(q,a);b>=0&&q.splice(b,1)}function g(){j--,k(q.slice(0),function(a){a()})}c||(c=b,b=null),c=i(c||d);var h=P(a),j=h.length;if(!j)return c(null);b||(b=j);var l={},m=0,q=[];e(function(){j||c(null,l)}),k(h,function(d){function h(){return b>m&&n(s,function(a,b){return a&&l.hasOwnProperty(b)},!0)&&!l.hasOwnProperty(d)}function i(){h()&&(m++,f(i),k[k.length-1](q,l))}for(var j,k=N(a[d])?a[d]:[a[d]],q=r(function(a,b){if(m--,b.length<=1&&(b=b[0]),a){var e={};o(l,function(a,b){e[b]=a}),e[d]=b,c(a,e)}else l[d]=b,K.setImmediate(g)}),s=k.slice(0,k.length-1),t=s.length;t--;){if(!(j=a[s[t]]))throw new Error("Has inexistant dependency");if(N(j)&&p(j,d)>=0)throw new Error("Has cyclic dependencies")}h()?(m++,k[k.length-1](q,l)):e(i)})},K.retry=function(a,b,c){function d(a,b){if("number"==typeof b)a.times=parseInt(b,10)||f;else{if("object"!=typeof b)throw new Error("Unsupported argument type for 'times': "+typeof b);a.times=parseInt(b.times,10)||f,a.interval=parseInt(b.interval,10)||g}}function e(a,b){function c(a,c){return function(d){a(function(a,b){d(!a||c,{err:a,result:b})},b)}}function d(a){return function(b){setTimeout(function(){b(null)},a)}}for(;i.times;){var e=!(i.times-=1);h.push(c(i.task,e)),!e&&i.interval>0&&h.push(d(i.interval))}K.series(h,function(b,c){c=c[c.length-1],(a||i.callback)(c.err,c.result)})}var f=5,g=0,h=[],i={times:f,interval:g},j=arguments.length;if(1>j||j>3)throw new Error("Invalid arguments - must be either (task), (task, callback), (times, task) or (times, task, callback)");return 2>=j&&"function"==typeof a&&(c=b,b=a),"function"!=typeof a&&d(i,a),i.callback=c,i.task=b,i.callback?e():e},K.waterfall=function(a,b){function c(a){return r(function(d,e){if(d)b.apply(null,[d].concat(e));else{var f=a.next();f?e.push(c(f)):e.push(b),I(a).apply(null,e)}})}if(b=i(b||d),!N(a)){var e=new Error("First argument to waterfall must be an array of functions");return b(e)}return a.length?void c(K.iterator(a))():b()},K.parallel=function(a,b){C(K.eachOf,a,b)},K.parallelLimit=function(a,b,c){C(t(b),a,c)},K.series=function(a,b){C(K.eachOfSeries,a,b)},K.iterator=function(a){function b(c){function d(){return a.length&&a[c].apply(null,arguments),d.next()}return d.next=function(){return c<a.length-1?b(c+1):null},d}return b(0)},K.apply=r(function(a,b){return r(function(c){return a.apply(null,b.concat(c))})}),K.concat=u(D),K.concatSeries=w(D),K.whilst=function(a,b,c){if(c=c||d,a()){var e=r(function(d,f){d?c(d):a.apply(this,f)?b(e):c(null)});b(e)}else c(null)},K.doWhilst=function(a,b,c){var d=0;return K.whilst(function(){return++d<=1||b.apply(this,arguments)},a,c)},K.until=function(a,b,c){return K.whilst(function(){return!a.apply(this,arguments)},b,c)},K.doUntil=function(a,b,c){return K.doWhilst(a,function(){return!b.apply(this,arguments)},c)},K.during=function(a,b,c){c=c||d;var e=r(function(b,d){b?c(b):(d.push(f),a.apply(this,d))}),f=function(a,d){a?c(a):d?b(e):c(null)};a(f)},K.doDuring=function(a,b,c){var d=0;K.during(function(a){d++<1?a(null,!0):b.apply(this,arguments)},a,c)},K.queue=function(a,b){var c=E(function(b,c){a(b[0],c)},b,1);return c},K.priorityQueue=function(a,b){function c(a,b){return a.priority-b.priority}function e(a,b,c){for(var d=-1,e=a.length-1;e>d;){var f=d+(e-d+1>>>1);c(b,a[f])>=0?d=f:e=f-1}return d}function f(a,b,f,g){if(null!=g&&"function"!=typeof g)throw new Error("task callback must be a function");return a.started=!0,N(b)||(b=[b]),0===b.length?K.setImmediate(function(){a.drain()}):void k(b,function(b){var h={data:b,priority:f,callback:"function"==typeof g?g:d};a.tasks.splice(e(a.tasks,h,c)+1,0,h),a.tasks.length===a.concurrency&&a.saturated(),K.setImmediate(a.process)})}var g=K.queue(a,b);return g.push=function(a,b,c){f(g,a,b,c)},delete g.unshift,g},K.cargo=function(a,b){return E(a,1,b)},K.log=F("log"),K.dir=F("dir"),K.memoize=function(a,b){var c={},d={};b=b||e;var f=r(function(e){var f=e.pop(),g=b.apply(null,e);g in c?K.setImmediate(function(){f.apply(null,c[g])}):g in d?d[g].push(f):(d[g]=[f],a.apply(null,e.concat([r(function(a){c[g]=a;var b=d[g];delete d[g];for(var e=0,f=b.length;f>e;e++)b[e].apply(null,a)})])))});return f.memo=c,f.unmemoized=a,f},K.unmemoize=function(a){return function(){return(a.unmemoized||a).apply(null,arguments)}},K.times=G(K.map),K.timesSeries=G(K.mapSeries),K.timesLimit=function(a,b,c,d){return K.mapLimit(m(a),b,c,d)},K.seq=function(){var a=arguments;return r(function(b){var c=this,e=b[b.length-1];"function"==typeof e?b.pop():e=d,K.reduce(a,b,function(a,b,d){b.apply(c,a.concat([r(function(a,b){d(a,b)})]))},function(a,b){e.apply(c,[a].concat(b))})})},K.compose=function(){return K.seq.apply(null,Array.prototype.reverse.call(arguments))},K.applyEach=H(K.eachOf),K.applyEachSeries=H(K.eachOfSeries),K.forever=function(a,b){function c(a){return a?e(a):void f(c)}var e=h(b||d),f=I(a);c()},K.ensureAsync=I,K.constant=r(function(a){var b=[null].concat(a);return function(a){return a.apply(this,b)}}),K.wrapSync=K.asyncify=function(a){return r(function(b){var c,d=b.pop();try{c=a.apply(this,b)}catch(e){return d(e)}O(c)&&"function"==typeof c.then?c.then(function(a){d(null,a)})["catch"](function(a){d(a.message?a:new Error(a))}):d(null,c)})},"object"==typeof b&&b.exports?b.exports=K:"function"==typeof define&&define.amd?define([],function(){return K}):L.async=K}()}).call(this,a("_process"),"undefined"!=typeof global?global:"undefined"!=typeof self?self:"undefined"!=typeof window?window:{})},{_process:70}],36:[function(a,b,c){!function(d,e,f){"object"==typeof c?b.exports=c=e(a("./core"),a("./enc-base64"),a("./md5"),a("./evpkdf"),a("./cipher-core")):"function"==typeof define&&define.amd?define(["./core","./enc-base64","./md5","./evpkdf","./cipher-core"],e):e(d.CryptoJS)}(this,function(a){return function(){var b=a,c=b.lib,d=c.BlockCipher,e=b.algo,f=[],g=[],h=[],i=[],j=[],k=[],l=[],m=[],n=[],o=[];!function(){for(var a=[],b=0;256>b;b++)128>b?a[b]=b<<1:a[b]=b<<1^283;for(var c=0,d=0,b=0;256>b;b++){var e=d^d<<1^d<<2^d<<3^d<<4;e=e>>>8^255&e^99,f[c]=e,g[e]=c;var p=a[c],q=a[p],r=a[q],s=257*a[e]^16843008*e;h[c]=s<<24|s>>>8,i[c]=s<<16|s>>>16,j[c]=s<<8|s>>>24,k[c]=s;var s=16843009*r^65537*q^257*p^16843008*c;l[e]=s<<24|s>>>8,m[e]=s<<16|s>>>16,n[e]=s<<8|s>>>24,o[e]=s,c?(c=p^a[a[a[r^p]]],d^=a[a[d]]):c=d=1}}();var p=[0,1,2,4,8,16,32,64,128,27,54],q=e.AES=d.extend({_doReset:function(){for(var a=this._key,b=a.words,c=a.sigBytes/4,d=this._nRounds=c+6,e=4*(d+1),g=this._keySchedule=[],h=0;e>h;h++)if(c>h)g[h]=b[h];else{var i=g[h-1];h%c?c>6&&h%c==4&&(i=f[i>>>24]<<24|f[i>>>16&255]<<16|f[i>>>8&255]<<8|f[255&i]):(i=i<<8|i>>>24,i=f[i>>>24]<<24|f[i>>>16&255]<<16|f[i>>>8&255]<<8|f[255&i],i^=p[h/c|0]<<24),g[h]=g[h-c]^i}for(var j=this._invKeySchedule=[],k=0;e>k;k++){var h=e-k;if(k%4)var i=g[h];else var i=g[h-4];4>k||4>=h?j[k]=i:j[k]=l[f[i>>>24]]^m[f[i>>>16&255]]^n[f[i>>>8&255]]^o[f[255&i]]}},encryptBlock:function(a,b){this._doCryptBlock(a,b,this._keySchedule,h,i,j,k,f)},decryptBlock:function(a,b){var c=a[b+1];a[b+1]=a[b+3],a[b+3]=c,this._doCryptBlock(a,b,this._invKeySchedule,l,m,n,o,g);var c=a[b+1];a[b+1]=a[b+3],a[b+3]=c},_doCryptBlock:function(a,b,c,d,e,f,g,h){for(var i=this._nRounds,j=a[b]^c[0],k=a[b+1]^c[1],l=a[b+2]^c[2],m=a[b+3]^c[3],n=4,o=1;i>o;o++){var p=d[j>>>24]^e[k>>>16&255]^f[l>>>8&255]^g[255&m]^c[n++],q=d[k>>>24]^e[l>>>16&255]^f[m>>>8&255]^g[255&j]^c[n++],r=d[l>>>24]^e[m>>>16&255]^f[j>>>8&255]^g[255&k]^c[n++],s=d[m>>>24]^e[j>>>16&255]^f[k>>>8&255]^g[255&l]^c[n++];j=p,k=q,l=r,m=s}var p=(h[j>>>24]<<24|h[k>>>16&255]<<16|h[l>>>8&255]<<8|h[255&m])^c[n++],q=(h[k>>>24]<<24|h[l>>>16&255]<<16|h[m>>>8&255]<<8|h[255&j])^c[n++],r=(h[l>>>24]<<24|h[m>>>16&255]<<16|h[j>>>8&255]<<8|h[255&k])^c[n++],s=(h[m>>>24]<<24|h[j>>>16&255]<<16|h[k>>>8&255]<<8|h[255&l])^c[n++];a[b]=p,a[b+1]=q,a[b+2]=r,a[b+3]=s},keySize:8});b.AES=d._createHelper(q)}(),a.AES})},{"./cipher-core":37,"./core":38,"./enc-base64":39,"./evpkdf":41,"./md5":46}],37:[function(a,b,c){!function(d,e){"object"==typeof c?b.exports=c=e(a("./core")):"function"==typeof define&&define.amd?define(["./core"],e):e(d.CryptoJS)}(this,function(a){a.lib.Cipher||function(b){var c=a,d=c.lib,e=d.Base,f=d.WordArray,g=d.BufferedBlockAlgorithm,h=c.enc,i=(h.Utf8,h.Base64),j=c.algo,k=j.EvpKDF,l=d.Cipher=g.extend({cfg:e.extend(),createEncryptor:function(a,b){return this.create(this._ENC_XFORM_MODE,a,b)},createDecryptor:function(a,b){return this.create(this._DEC_XFORM_MODE,a,b)},init:function(a,b,c){this.cfg=this.cfg.extend(c),this._xformMode=a,this._key=b,this.reset()},reset:function(){g.reset.call(this),this._doReset()},process:function(a){return this._append(a),this._process()},finalize:function(a){a&&this._append(a);var b=this._doFinalize();return b},keySize:4,ivSize:4,_ENC_XFORM_MODE:1,_DEC_XFORM_MODE:2,_createHelper:function(){function a(a){return"string"==typeof a?x:u}return function(b){return{encrypt:function(c,d,e){return a(d).encrypt(b,c,d,e)},decrypt:function(c,d,e){return a(d).decrypt(b,c,d,e)}}}}()}),m=(d.StreamCipher=l.extend({_doFinalize:function(){var a=this._process(!0);return a},blockSize:1}),c.mode={}),n=d.BlockCipherMode=e.extend({createEncryptor:function(a,b){return this.Encryptor.create(a,b)},createDecryptor:function(a,b){return this.Decryptor.create(a,b)},init:function(a,b){this._cipher=a,this._iv=b}}),o=m.CBC=function(){function a(a,c,d){var e=this._iv;if(e){var f=e;this._iv=b}else var f=this._prevBlock;for(var g=0;d>g;g++)a[c+g]^=f[g]}var c=n.extend();return c.Encryptor=c.extend({processBlock:function(b,c){var d=this._cipher,e=d.blockSize;a.call(this,b,c,e),d.encryptBlock(b,c),this._prevBlock=b.slice(c,c+e)}}),c.Decryptor=c.extend({processBlock:function(b,c){var d=this._cipher,e=d.blockSize,f=b.slice(c,c+e);d.decryptBlock(b,c),a.call(this,b,c,e),this._prevBlock=f}}),c}(),p=c.pad={},q=p.Pkcs7={pad:function(a,b){for(var c=4*b,d=c-a.sigBytes%c,e=d<<24|d<<16|d<<8|d,g=[],h=0;d>h;h+=4)g.push(e);var i=f.create(g,d);a.concat(i)},unpad:function(a){var b=255&a.words[a.sigBytes-1>>>2];a.sigBytes-=b}},r=(d.BlockCipher=l.extend({cfg:l.cfg.extend({mode:o,padding:q}),reset:function(){l.reset.call(this);var a=this.cfg,b=a.iv,c=a.mode;if(this._xformMode==this._ENC_XFORM_MODE)var d=c.createEncryptor;else{var d=c.createDecryptor;this._minBufferSize=1}this._mode=d.call(c,this,b&&b.words)},_doProcessBlock:function(a,b){this._mode.processBlock(a,b)},_doFinalize:function(){var a=this.cfg.padding;if(this._xformMode==this._ENC_XFORM_MODE){a.pad(this._data,this.blockSize);var b=this._process(!0)}else{var b=this._process(!0);a.unpad(b)}return b},blockSize:4}),d.CipherParams=e.extend({init:function(a){this.mixIn(a)},toString:function(a){return(a||this.formatter).stringify(this)}})),s=c.format={},t=s.OpenSSL={stringify:function(a){var b=a.ciphertext,c=a.salt;if(c)var d=f.create([1398893684,1701076831]).concat(c).concat(b);else var d=b;return d.toString(i)},parse:function(a){var b=i.parse(a),c=b.words;if(1398893684==c[0]&&1701076831==c[1]){var d=f.create(c.slice(2,4));c.splice(0,4),b.sigBytes-=16}return r.create({ciphertext:b,salt:d})}},u=d.SerializableCipher=e.extend({cfg:e.extend({format:t}),encrypt:function(a,b,c,d){d=this.cfg.extend(d);var e=a.createEncryptor(c,d),f=e.finalize(b),g=e.cfg;return r.create({ciphertext:f,key:c,iv:g.iv,algorithm:a,mode:g.mode,padding:g.padding,blockSize:a.blockSize,formatter:d.format})},decrypt:function(a,b,c,d){d=this.cfg.extend(d),b=this._parse(b,d.format);var e=a.createDecryptor(c,d).finalize(b.ciphertext);return e},_parse:function(a,b){return"string"==typeof a?b.parse(a,this):a}}),v=c.kdf={},w=v.OpenSSL={execute:function(a,b,c,d){d||(d=f.random(8));var e=k.create({keySize:b+c}).compute(a,d),g=f.create(e.words.slice(b),4*c);return e.sigBytes=4*b,r.create({key:e,iv:g,salt:d})}},x=d.PasswordBasedCipher=u.extend({cfg:u.cfg.extend({kdf:w}),encrypt:function(a,b,c,d){d=this.cfg.extend(d);var e=d.kdf.execute(c,a.keySize,a.ivSize);d.iv=e.iv;var f=u.encrypt.call(this,a,b,e.key,d);return f.mixIn(e),f},decrypt:function(a,b,c,d){d=this.cfg.extend(d),b=this._parse(b,d.format);var e=d.kdf.execute(c,a.keySize,a.ivSize,b.salt);d.iv=e.iv;var f=u.decrypt.call(this,a,b,e.key,d);return f}})}()})},{"./core":38}],38:[function(a,b,c){!function(a,d){"object"==typeof c?b.exports=c=d():"function"==typeof define&&define.amd?define([],d):a.CryptoJS=d()}(this,function(){var a=a||function(a,b){var c={},d=c.lib={},e=d.Base=function(){function a(){}return{extend:function(b){a.prototype=this;var c=new a;return b&&c.mixIn(b),c.hasOwnProperty("init")||(c.init=function(){c.$super.init.apply(this,arguments)}),c.init.prototype=c,c.$super=this,c},create:function(){var a=this.extend();return a.init.apply(a,arguments),a},init:function(){},mixIn:function(a){for(var b in a)a.hasOwnProperty(b)&&(this[b]=a[b]);a.hasOwnProperty("toString")&&(this.toString=a.toString)},clone:function(){return this.init.prototype.extend(this)}}}(),f=d.WordArray=e.extend({init:function(a,c){a=this.words=a||[],c!=b?this.sigBytes=c:this.sigBytes=4*a.length},toString:function(a){return(a||h).stringify(this)},concat:function(a){var b=this.words,c=a.words,d=this.sigBytes,e=a.sigBytes;if(this.clamp(),d%4)for(var f=0;e>f;f++){var g=c[f>>>2]>>>24-f%4*8&255;b[d+f>>>2]|=g<<24-(d+f)%4*8}else for(var f=0;e>f;f+=4)b[d+f>>>2]=c[f>>>2];return this.sigBytes+=e,this},clamp:function(){var b=this.words,c=this.sigBytes;b[c>>>2]&=4294967295<<32-c%4*8,b.length=a.ceil(c/4)},clone:function(){var a=e.clone.call(this);return a.words=this.words.slice(0),a},random:function(b){for(var c,d=[],e=function(b){var b=b,c=987654321,d=4294967295;return function(){c=36969*(65535&c)+(c>>16)&d,b=18e3*(65535&b)+(b>>16)&d;var e=(c<<16)+b&d;return e/=4294967296,e+=.5,e*(a.random()>.5?1:-1)}},g=0;b>g;g+=4){var h=e(4294967296*(c||a.random()));c=987654071*h(),d.push(4294967296*h()|0)}return new f.init(d,b)}}),g=c.enc={},h=g.Hex={stringify:function(a){for(var b=a.words,c=a.sigBytes,d=[],e=0;c>e;e++){var f=b[e>>>2]>>>24-e%4*8&255;d.push((f>>>4).toString(16)),d.push((15&f).toString(16))}return d.join("")},parse:function(a){for(var b=a.length,c=[],d=0;b>d;d+=2)c[d>>>3]|=parseInt(a.substr(d,2),16)<<24-d%8*4;return new f.init(c,b/2)}},i=g.Latin1={stringify:function(a){for(var b=a.words,c=a.sigBytes,d=[],e=0;c>e;e++){var f=b[e>>>2]>>>24-e%4*8&255;d.push(String.fromCharCode(f))}return d.join("")},parse:function(a){for(var b=a.length,c=[],d=0;b>d;d++)c[d>>>2]|=(255&a.charCodeAt(d))<<24-d%4*8;return new f.init(c,b)}},j=g.Utf8={stringify:function(a){try{return decodeURIComponent(escape(i.stringify(a)))}catch(b){throw new Error("Malformed UTF-8 data")}},parse:function(a){return i.parse(unescape(encodeURIComponent(a)))}},k=d.BufferedBlockAlgorithm=e.extend({reset:function(){this._data=new f.init,this._nDataBytes=0},_append:function(a){"string"==typeof a&&(a=j.parse(a)),this._data.concat(a),this._nDataBytes+=a.sigBytes},_process:function(b){var c=this._data,d=c.words,e=c.sigBytes,g=this.blockSize,h=4*g,i=e/h;i=b?a.ceil(i):a.max((0|i)-this._minBufferSize,0);var j=i*g,k=a.min(4*j,e);if(j){for(var l=0;j>l;l+=g)this._doProcessBlock(d,l);var m=d.splice(0,j);c.sigBytes-=k}return new f.init(m,k)},clone:function(){var a=e.clone.call(this);return a._data=this._data.clone(),a},_minBufferSize:0}),l=(d.Hasher=k.extend({cfg:e.extend(),init:function(a){this.cfg=this.cfg.extend(a),this.reset()},reset:function(){k.reset.call(this),this._doReset()},update:function(a){return this._append(a),this._process(),this},finalize:function(a){a&&this._append(a);var b=this._doFinalize();return b},blockSize:16,_createHelper:function(a){return function(b,c){return new a.init(c).finalize(b)}},_createHmacHelper:function(a){return function(b,c){return new l.HMAC.init(a,c).finalize(b)}}}),c.algo={});return c}(Math);return a})},{}],39:[function(a,b,c){!function(d,e){"object"==typeof c?b.exports=c=e(a("./core")):"function"==typeof define&&define.amd?define(["./core"],e):e(d.CryptoJS)}(this,function(a){return function(){var b=a,c=b.lib,d=c.WordArray,e=b.enc;e.Base64={stringify:function(a){var b=a.words,c=a.sigBytes,d=this._map;a.clamp();for(var e=[],f=0;c>f;f+=3)for(var g=b[f>>>2]>>>24-f%4*8&255,h=b[f+1>>>2]>>>24-(f+1)%4*8&255,i=b[f+2>>>2]>>>24-(f+2)%4*8&255,j=g<<16|h<<8|i,k=0;4>k&&c>f+.75*k;k++)e.push(d.charAt(j>>>6*(3-k)&63));var l=d.charAt(64);if(l)for(;e.length%4;)e.push(l);return e.join("")},parse:function(a){var b=a.length,c=this._map,e=c.charAt(64);if(e){var f=a.indexOf(e);-1!=f&&(b=f)}for(var g=[],h=0,i=0;b>i;i++)if(i%4){var j=c.indexOf(a.charAt(i-1))<<i%4*2,k=c.indexOf(a.charAt(i))>>>6-i%4*2;g[h>>>2]|=(j|k)<<24-h%4*8,h++}return d.create(g,h)},_map:"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/="}}(),a.enc.Base64})},{"./core":38}],40:[function(a,b,c){!function(d,e){"object"==typeof c?b.exports=c=e(a("./core")):"function"==typeof define&&define.amd?define(["./core"],e):e(d.CryptoJS)}(this,function(a){return function(){function b(a){return a<<8&4278255360|a>>>8&16711935}var c=a,d=c.lib,e=d.WordArray,f=c.enc;f.Utf16=f.Utf16BE={stringify:function(a){for(var b=a.words,c=a.sigBytes,d=[],e=0;c>e;e+=2){var f=b[e>>>2]>>>16-e%4*8&65535;d.push(String.fromCharCode(f))}return d.join("")},parse:function(a){for(var b=a.length,c=[],d=0;b>d;d++)c[d>>>1]|=a.charCodeAt(d)<<16-d%2*16;return e.create(c,2*b); }};f.Utf16LE={stringify:function(a){for(var c=a.words,d=a.sigBytes,e=[],f=0;d>f;f+=2){var g=b(c[f>>>2]>>>16-f%4*8&65535);e.push(String.fromCharCode(g))}return e.join("")},parse:function(a){for(var c=a.length,d=[],f=0;c>f;f++)d[f>>>1]|=b(a.charCodeAt(f)<<16-f%2*16);return e.create(d,2*c)}}}(),a.enc.Utf16})},{"./core":38}],41:[function(a,b,c){!function(d,e,f){"object"==typeof c?b.exports=c=e(a("./core"),a("./sha1"),a("./hmac")):"function"==typeof define&&define.amd?define(["./core","./sha1","./hmac"],e):e(d.CryptoJS)}(this,function(a){return function(){var b=a,c=b.lib,d=c.Base,e=c.WordArray,f=b.algo,g=f.MD5,h=f.EvpKDF=d.extend({cfg:d.extend({keySize:4,hasher:g,iterations:1}),init:function(a){this.cfg=this.cfg.extend(a)},compute:function(a,b){for(var c=this.cfg,d=c.hasher.create(),f=e.create(),g=f.words,h=c.keySize,i=c.iterations;g.length<h;){j&&d.update(j);var j=d.update(a).finalize(b);d.reset();for(var k=1;i>k;k++)j=d.finalize(j),d.reset();f.concat(j)}return f.sigBytes=4*h,f}});b.EvpKDF=function(a,b,c){return h.create(c).compute(a,b)}}(),a.EvpKDF})},{"./core":38,"./hmac":43,"./sha1":62}],42:[function(a,b,c){!function(d,e,f){"object"==typeof c?b.exports=c=e(a("./core"),a("./cipher-core")):"function"==typeof define&&define.amd?define(["./core","./cipher-core"],e):e(d.CryptoJS)}(this,function(a){return function(b){var c=a,d=c.lib,e=d.CipherParams,f=c.enc,g=f.Hex,h=c.format;h.Hex={stringify:function(a){return a.ciphertext.toString(g)},parse:function(a){var b=g.parse(a);return e.create({ciphertext:b})}}}(),a.format.Hex})},{"./cipher-core":37,"./core":38}],43:[function(a,b,c){!function(d,e){"object"==typeof c?b.exports=c=e(a("./core")):"function"==typeof define&&define.amd?define(["./core"],e):e(d.CryptoJS)}(this,function(a){!function(){var b=a,c=b.lib,d=c.Base,e=b.enc,f=e.Utf8,g=b.algo;g.HMAC=d.extend({init:function(a,b){a=this._hasher=new a.init,"string"==typeof b&&(b=f.parse(b));var c=a.blockSize,d=4*c;b.sigBytes>d&&(b=a.finalize(b)),b.clamp();for(var e=this._oKey=b.clone(),g=this._iKey=b.clone(),h=e.words,i=g.words,j=0;c>j;j++)h[j]^=1549556828,i[j]^=909522486;e.sigBytes=g.sigBytes=d,this.reset()},reset:function(){var a=this._hasher;a.reset(),a.update(this._iKey)},update:function(a){return this._hasher.update(a),this},finalize:function(a){var b=this._hasher,c=b.finalize(a);b.reset();var d=b.finalize(this._oKey.clone().concat(c));return d}})}()})},{"./core":38}],44:[function(a,b,c){!function(d,e,f){"object"==typeof c?b.exports=c=e(a("./core"),a("./x64-core"),a("./lib-typedarrays"),a("./enc-utf16"),a("./enc-base64"),a("./md5"),a("./sha1"),a("./sha256"),a("./sha224"),a("./sha512"),a("./sha384"),a("./sha3"),a("./ripemd160"),a("./hmac"),a("./pbkdf2"),a("./evpkdf"),a("./cipher-core"),a("./mode-cfb"),a("./mode-ctr"),a("./mode-ctr-gladman"),a("./mode-ofb"),a("./mode-ecb"),a("./pad-ansix923"),a("./pad-iso10126"),a("./pad-iso97971"),a("./pad-zeropadding"),a("./pad-nopadding"),a("./format-hex"),a("./aes"),a("./tripledes"),a("./rc4"),a("./rabbit"),a("./rabbit-legacy")):"function"==typeof define&&define.amd?define(["./core","./x64-core","./lib-typedarrays","./enc-utf16","./enc-base64","./md5","./sha1","./sha256","./sha224","./sha512","./sha384","./sha3","./ripemd160","./hmac","./pbkdf2","./evpkdf","./cipher-core","./mode-cfb","./mode-ctr","./mode-ctr-gladman","./mode-ofb","./mode-ecb","./pad-ansix923","./pad-iso10126","./pad-iso97971","./pad-zeropadding","./pad-nopadding","./format-hex","./aes","./tripledes","./rc4","./rabbit","./rabbit-legacy"],e):d.CryptoJS=e(d.CryptoJS)}(this,function(a){return a})},{"./aes":36,"./cipher-core":37,"./core":38,"./enc-base64":39,"./enc-utf16":40,"./evpkdf":41,"./format-hex":42,"./hmac":43,"./lib-typedarrays":45,"./md5":46,"./mode-cfb":47,"./mode-ctr":49,"./mode-ctr-gladman":48,"./mode-ecb":50,"./mode-ofb":51,"./pad-ansix923":52,"./pad-iso10126":53,"./pad-iso97971":54,"./pad-nopadding":55,"./pad-zeropadding":56,"./pbkdf2":57,"./rabbit":59,"./rabbit-legacy":58,"./rc4":60,"./ripemd160":61,"./sha1":62,"./sha224":63,"./sha256":64,"./sha3":65,"./sha384":66,"./sha512":67,"./tripledes":68,"./x64-core":69}],45:[function(a,b,c){!function(d,e){"object"==typeof c?b.exports=c=e(a("./core")):"function"==typeof define&&define.amd?define(["./core"],e):e(d.CryptoJS)}(this,function(a){return function(){if("function"==typeof ArrayBuffer){var b=a,c=b.lib,d=c.WordArray,e=d.init,f=d.init=function(a){if(a instanceof ArrayBuffer&&(a=new Uint8Array(a)),(a instanceof Int8Array||"undefined"!=typeof Uint8ClampedArray&&a instanceof Uint8ClampedArray||a instanceof Int16Array||a instanceof Uint16Array||a instanceof Int32Array||a instanceof Uint32Array||a instanceof Float32Array||a instanceof Float64Array)&&(a=new Uint8Array(a.buffer,a.byteOffset,a.byteLength)),a instanceof Uint8Array){for(var b=a.byteLength,c=[],d=0;b>d;d++)c[d>>>2]|=a[d]<<24-d%4*8;e.call(this,c,b)}else e.apply(this,arguments)};f.prototype=d}}(),a.lib.WordArray})},{"./core":38}],46:[function(a,b,c){!function(d,e){"object"==typeof c?b.exports=c=e(a("./core")):"function"==typeof define&&define.amd?define(["./core"],e):e(d.CryptoJS)}(this,function(a){return function(b){function c(a,b,c,d,e,f,g){var h=a+(b&c|~b&d)+e+g;return(h<<f|h>>>32-f)+b}function d(a,b,c,d,e,f,g){var h=a+(b&d|c&~d)+e+g;return(h<<f|h>>>32-f)+b}function e(a,b,c,d,e,f,g){var h=a+(b^c^d)+e+g;return(h<<f|h>>>32-f)+b}function f(a,b,c,d,e,f,g){var h=a+(c^(b|~d))+e+g;return(h<<f|h>>>32-f)+b}var g=a,h=g.lib,i=h.WordArray,j=h.Hasher,k=g.algo,l=[];!function(){for(var a=0;64>a;a++)l[a]=4294967296*b.abs(b.sin(a+1))|0}();var m=k.MD5=j.extend({_doReset:function(){this._hash=new i.init([1732584193,4023233417,2562383102,271733878])},_doProcessBlock:function(a,b){for(var g=0;16>g;g++){var h=b+g,i=a[h];a[h]=16711935&(i<<8|i>>>24)|4278255360&(i<<24|i>>>8)}var j=this._hash.words,k=a[b+0],m=a[b+1],n=a[b+2],o=a[b+3],p=a[b+4],q=a[b+5],r=a[b+6],s=a[b+7],t=a[b+8],u=a[b+9],v=a[b+10],w=a[b+11],x=a[b+12],y=a[b+13],z=a[b+14],A=a[b+15],B=j[0],C=j[1],D=j[2],E=j[3];B=c(B,C,D,E,k,7,l[0]),E=c(E,B,C,D,m,12,l[1]),D=c(D,E,B,C,n,17,l[2]),C=c(C,D,E,B,o,22,l[3]),B=c(B,C,D,E,p,7,l[4]),E=c(E,B,C,D,q,12,l[5]),D=c(D,E,B,C,r,17,l[6]),C=c(C,D,E,B,s,22,l[7]),B=c(B,C,D,E,t,7,l[8]),E=c(E,B,C,D,u,12,l[9]),D=c(D,E,B,C,v,17,l[10]),C=c(C,D,E,B,w,22,l[11]),B=c(B,C,D,E,x,7,l[12]),E=c(E,B,C,D,y,12,l[13]),D=c(D,E,B,C,z,17,l[14]),C=c(C,D,E,B,A,22,l[15]),B=d(B,C,D,E,m,5,l[16]),E=d(E,B,C,D,r,9,l[17]),D=d(D,E,B,C,w,14,l[18]),C=d(C,D,E,B,k,20,l[19]),B=d(B,C,D,E,q,5,l[20]),E=d(E,B,C,D,v,9,l[21]),D=d(D,E,B,C,A,14,l[22]),C=d(C,D,E,B,p,20,l[23]),B=d(B,C,D,E,u,5,l[24]),E=d(E,B,C,D,z,9,l[25]),D=d(D,E,B,C,o,14,l[26]),C=d(C,D,E,B,t,20,l[27]),B=d(B,C,D,E,y,5,l[28]),E=d(E,B,C,D,n,9,l[29]),D=d(D,E,B,C,s,14,l[30]),C=d(C,D,E,B,x,20,l[31]),B=e(B,C,D,E,q,4,l[32]),E=e(E,B,C,D,t,11,l[33]),D=e(D,E,B,C,w,16,l[34]),C=e(C,D,E,B,z,23,l[35]),B=e(B,C,D,E,m,4,l[36]),E=e(E,B,C,D,p,11,l[37]),D=e(D,E,B,C,s,16,l[38]),C=e(C,D,E,B,v,23,l[39]),B=e(B,C,D,E,y,4,l[40]),E=e(E,B,C,D,k,11,l[41]),D=e(D,E,B,C,o,16,l[42]),C=e(C,D,E,B,r,23,l[43]),B=e(B,C,D,E,u,4,l[44]),E=e(E,B,C,D,x,11,l[45]),D=e(D,E,B,C,A,16,l[46]),C=e(C,D,E,B,n,23,l[47]),B=f(B,C,D,E,k,6,l[48]),E=f(E,B,C,D,s,10,l[49]),D=f(D,E,B,C,z,15,l[50]),C=f(C,D,E,B,q,21,l[51]),B=f(B,C,D,E,x,6,l[52]),E=f(E,B,C,D,o,10,l[53]),D=f(D,E,B,C,v,15,l[54]),C=f(C,D,E,B,m,21,l[55]),B=f(B,C,D,E,t,6,l[56]),E=f(E,B,C,D,A,10,l[57]),D=f(D,E,B,C,r,15,l[58]),C=f(C,D,E,B,y,21,l[59]),B=f(B,C,D,E,p,6,l[60]),E=f(E,B,C,D,w,10,l[61]),D=f(D,E,B,C,n,15,l[62]),C=f(C,D,E,B,u,21,l[63]),j[0]=j[0]+B|0,j[1]=j[1]+C|0,j[2]=j[2]+D|0,j[3]=j[3]+E|0},_doFinalize:function(){var a=this._data,c=a.words,d=8*this._nDataBytes,e=8*a.sigBytes;c[e>>>5]|=128<<24-e%32;var f=b.floor(d/4294967296),g=d;c[(e+64>>>9<<4)+15]=16711935&(f<<8|f>>>24)|4278255360&(f<<24|f>>>8),c[(e+64>>>9<<4)+14]=16711935&(g<<8|g>>>24)|4278255360&(g<<24|g>>>8),a.sigBytes=4*(c.length+1),this._process();for(var h=this._hash,i=h.words,j=0;4>j;j++){var k=i[j];i[j]=16711935&(k<<8|k>>>24)|4278255360&(k<<24|k>>>8)}return h},clone:function(){var a=j.clone.call(this);return a._hash=this._hash.clone(),a}});g.MD5=j._createHelper(m),g.HmacMD5=j._createHmacHelper(m)}(Math),a.MD5})},{"./core":38}],47:[function(a,b,c){!function(d,e,f){"object"==typeof c?b.exports=c=e(a("./core"),a("./cipher-core")):"function"==typeof define&&define.amd?define(["./core","./cipher-core"],e):e(d.CryptoJS)}(this,function(a){return a.mode.CFB=function(){function b(a,b,c,d){var e=this._iv;if(e){var f=e.slice(0);this._iv=void 0}else var f=this._prevBlock;d.encryptBlock(f,0);for(var g=0;c>g;g++)a[b+g]^=f[g]}var c=a.lib.BlockCipherMode.extend();return c.Encryptor=c.extend({processBlock:function(a,c){var d=this._cipher,e=d.blockSize;b.call(this,a,c,e,d),this._prevBlock=a.slice(c,c+e)}}),c.Decryptor=c.extend({processBlock:function(a,c){var d=this._cipher,e=d.blockSize,f=a.slice(c,c+e);b.call(this,a,c,e,d),this._prevBlock=f}}),c}(),a.mode.CFB})},{"./cipher-core":37,"./core":38}],48:[function(a,b,c){!function(d,e,f){"object"==typeof c?b.exports=c=e(a("./core"),a("./cipher-core")):"function"==typeof define&&define.amd?define(["./core","./cipher-core"],e):e(d.CryptoJS)}(this,function(a){return a.mode.CTRGladman=function(){function b(a){if(255===(a>>24&255)){var b=a>>16&255,c=a>>8&255,d=255&a;255===b?(b=0,255===c?(c=0,255===d?d=0:++d):++c):++b,a=0,a+=b<<16,a+=c<<8,a+=d}else a+=1<<24;return a}function c(a){return 0===(a[0]=b(a[0]))&&(a[1]=b(a[1])),a}var d=a.lib.BlockCipherMode.extend(),e=d.Encryptor=d.extend({processBlock:function(a,b){var d=this._cipher,e=d.blockSize,f=this._iv,g=this._counter;f&&(g=this._counter=f.slice(0),this._iv=void 0),c(g);var h=g.slice(0);d.encryptBlock(h,0);for(var i=0;e>i;i++)a[b+i]^=h[i]}});return d.Decryptor=e,d}(),a.mode.CTRGladman})},{"./cipher-core":37,"./core":38}],49:[function(a,b,c){!function(d,e,f){"object"==typeof c?b.exports=c=e(a("./core"),a("./cipher-core")):"function"==typeof define&&define.amd?define(["./core","./cipher-core"],e):e(d.CryptoJS)}(this,function(a){return a.mode.CTR=function(){var b=a.lib.BlockCipherMode.extend(),c=b.Encryptor=b.extend({processBlock:function(a,b){var c=this._cipher,d=c.blockSize,e=this._iv,f=this._counter;e&&(f=this._counter=e.slice(0),this._iv=void 0);var g=f.slice(0);c.encryptBlock(g,0),f[d-1]=f[d-1]+1|0;for(var h=0;d>h;h++)a[b+h]^=g[h]}});return b.Decryptor=c,b}(),a.mode.CTR})},{"./cipher-core":37,"./core":38}],50:[function(a,b,c){!function(d,e,f){"object"==typeof c?b.exports=c=e(a("./core"),a("./cipher-core")):"function"==typeof define&&define.amd?define(["./core","./cipher-core"],e):e(d.CryptoJS)}(this,function(a){return a.mode.ECB=function(){var b=a.lib.BlockCipherMode.extend();return b.Encryptor=b.extend({processBlock:function(a,b){this._cipher.encryptBlock(a,b)}}),b.Decryptor=b.extend({processBlock:function(a,b){this._cipher.decryptBlock(a,b)}}),b}(),a.mode.ECB})},{"./cipher-core":37,"./core":38}],51:[function(a,b,c){!function(d,e,f){"object"==typeof c?b.exports=c=e(a("./core"),a("./cipher-core")):"function"==typeof define&&define.amd?define(["./core","./cipher-core"],e):e(d.CryptoJS)}(this,function(a){return a.mode.OFB=function(){var b=a.lib.BlockCipherMode.extend(),c=b.Encryptor=b.extend({processBlock:function(a,b){var c=this._cipher,d=c.blockSize,e=this._iv,f=this._keystream;e&&(f=this._keystream=e.slice(0),this._iv=void 0),c.encryptBlock(f,0);for(var g=0;d>g;g++)a[b+g]^=f[g]}});return b.Decryptor=c,b}(),a.mode.OFB})},{"./cipher-core":37,"./core":38}],52:[function(a,b,c){!function(d,e,f){"object"==typeof c?b.exports=c=e(a("./core"),a("./cipher-core")):"function"==typeof define&&define.amd?define(["./core","./cipher-core"],e):e(d.CryptoJS)}(this,function(a){return a.pad.AnsiX923={pad:function(a,b){var c=a.sigBytes,d=4*b,e=d-c%d,f=c+e-1;a.clamp(),a.words[f>>>2]|=e<<24-f%4*8,a.sigBytes+=e},unpad:function(a){var b=255&a.words[a.sigBytes-1>>>2];a.sigBytes-=b}},a.pad.Ansix923})},{"./cipher-core":37,"./core":38}],53:[function(a,b,c){!function(d,e,f){"object"==typeof c?b.exports=c=e(a("./core"),a("./cipher-core")):"function"==typeof define&&define.amd?define(["./core","./cipher-core"],e):e(d.CryptoJS)}(this,function(a){return a.pad.Iso10126={pad:function(b,c){var d=4*c,e=d-b.sigBytes%d;b.concat(a.lib.WordArray.random(e-1)).concat(a.lib.WordArray.create([e<<24],1))},unpad:function(a){var b=255&a.words[a.sigBytes-1>>>2];a.sigBytes-=b}},a.pad.Iso10126})},{"./cipher-core":37,"./core":38}],54:[function(a,b,c){!function(d,e,f){"object"==typeof c?b.exports=c=e(a("./core"),a("./cipher-core")):"function"==typeof define&&define.amd?define(["./core","./cipher-core"],e):e(d.CryptoJS)}(this,function(a){return a.pad.Iso97971={pad:function(b,c){b.concat(a.lib.WordArray.create([2147483648],1)),a.pad.ZeroPadding.pad(b,c)},unpad:function(b){a.pad.ZeroPadding.unpad(b),b.sigBytes--}},a.pad.Iso97971})},{"./cipher-core":37,"./core":38}],55:[function(a,b,c){!function(d,e,f){"object"==typeof c?b.exports=c=e(a("./core"),a("./cipher-core")):"function"==typeof define&&define.amd?define(["./core","./cipher-core"],e):e(d.CryptoJS)}(this,function(a){return a.pad.NoPadding={pad:function(){},unpad:function(){}},a.pad.NoPadding})},{"./cipher-core":37,"./core":38}],56:[function(a,b,c){!function(d,e,f){"object"==typeof c?b.exports=c=e(a("./core"),a("./cipher-core")):"function"==typeof define&&define.amd?define(["./core","./cipher-core"],e):e(d.CryptoJS)}(this,function(a){return a.pad.ZeroPadding={pad:function(a,b){var c=4*b;a.clamp(),a.sigBytes+=c-(a.sigBytes%c||c)},unpad:function(a){for(var b=a.words,c=a.sigBytes-1;!(b[c>>>2]>>>24-c%4*8&255);)c--;a.sigBytes=c+1}},a.pad.ZeroPadding})},{"./cipher-core":37,"./core":38}],57:[function(a,b,c){!function(d,e,f){"object"==typeof c?b.exports=c=e(a("./core"),a("./sha1"),a("./hmac")):"function"==typeof define&&define.amd?define(["./core","./sha1","./hmac"],e):e(d.CryptoJS)}(this,function(a){return function(){var b=a,c=b.lib,d=c.Base,e=c.WordArray,f=b.algo,g=f.SHA1,h=f.HMAC,i=f.PBKDF2=d.extend({cfg:d.extend({keySize:4,hasher:g,iterations:1}),init:function(a){this.cfg=this.cfg.extend(a)},compute:function(a,b){for(var c=this.cfg,d=h.create(c.hasher,a),f=e.create(),g=e.create([1]),i=f.words,j=g.words,k=c.keySize,l=c.iterations;i.length<k;){var m=d.update(b).finalize(g);d.reset();for(var n=m.words,o=n.length,p=m,q=1;l>q;q++){p=d.finalize(p),d.reset();for(var r=p.words,s=0;o>s;s++)n[s]^=r[s]}f.concat(m),j[0]++}return f.sigBytes=4*k,f}});b.PBKDF2=function(a,b,c){return i.create(c).compute(a,b)}}(),a.PBKDF2})},{"./core":38,"./hmac":43,"./sha1":62}],58:[function(a,b,c){!function(d,e,f){"object"==typeof c?b.exports=c=e(a("./core"),a("./enc-base64"),a("./md5"),a("./evpkdf"),a("./cipher-core")):"function"==typeof define&&define.amd?define(["./core","./enc-base64","./md5","./evpkdf","./cipher-core"],e):e(d.CryptoJS)}(this,function(a){return function(){function b(){for(var a=this._X,b=this._C,c=0;8>c;c++)h[c]=b[c];b[0]=b[0]+1295307597+this._b|0,b[1]=b[1]+3545052371+(b[0]>>>0<h[0]>>>0?1:0)|0,b[2]=b[2]+886263092+(b[1]>>>0<h[1]>>>0?1:0)|0,b[3]=b[3]+1295307597+(b[2]>>>0<h[2]>>>0?1:0)|0,b[4]=b[4]+3545052371+(b[3]>>>0<h[3]>>>0?1:0)|0,b[5]=b[5]+886263092+(b[4]>>>0<h[4]>>>0?1:0)|0,b[6]=b[6]+1295307597+(b[5]>>>0<h[5]>>>0?1:0)|0,b[7]=b[7]+3545052371+(b[6]>>>0<h[6]>>>0?1:0)|0,this._b=b[7]>>>0<h[7]>>>0?1:0;for(var c=0;8>c;c++){var d=a[c]+b[c],e=65535&d,f=d>>>16,g=((e*e>>>17)+e*f>>>15)+f*f,j=((4294901760&d)*d|0)+((65535&d)*d|0);i[c]=g^j}a[0]=i[0]+(i[7]<<16|i[7]>>>16)+(i[6]<<16|i[6]>>>16)|0,a[1]=i[1]+(i[0]<<8|i[0]>>>24)+i[7]|0,a[2]=i[2]+(i[1]<<16|i[1]>>>16)+(i[0]<<16|i[0]>>>16)|0,a[3]=i[3]+(i[2]<<8|i[2]>>>24)+i[1]|0,a[4]=i[4]+(i[3]<<16|i[3]>>>16)+(i[2]<<16|i[2]>>>16)|0,a[5]=i[5]+(i[4]<<8|i[4]>>>24)+i[3]|0,a[6]=i[6]+(i[5]<<16|i[5]>>>16)+(i[4]<<16|i[4]>>>16)|0,a[7]=i[7]+(i[6]<<8|i[6]>>>24)+i[5]|0}var c=a,d=c.lib,e=d.StreamCipher,f=c.algo,g=[],h=[],i=[],j=f.RabbitLegacy=e.extend({_doReset:function(){var a=this._key.words,c=this.cfg.iv,d=this._X=[a[0],a[3]<<16|a[2]>>>16,a[1],a[0]<<16|a[3]>>>16,a[2],a[1]<<16|a[0]>>>16,a[3],a[2]<<16|a[1]>>>16],e=this._C=[a[2]<<16|a[2]>>>16,4294901760&a[0]|65535&a[1],a[3]<<16|a[3]>>>16,4294901760&a[1]|65535&a[2],a[0]<<16|a[0]>>>16,4294901760&a[2]|65535&a[3],a[1]<<16|a[1]>>>16,4294901760&a[3]|65535&a[0]];this._b=0;for(var f=0;4>f;f++)b.call(this);for(var f=0;8>f;f++)e[f]^=d[f+4&7];if(c){var g=c.words,h=g[0],i=g[1],j=16711935&(h<<8|h>>>24)|4278255360&(h<<24|h>>>8),k=16711935&(i<<8|i>>>24)|4278255360&(i<<24|i>>>8),l=j>>>16|4294901760&k,m=k<<16|65535&j;e[0]^=j,e[1]^=l,e[2]^=k,e[3]^=m,e[4]^=j,e[5]^=l,e[6]^=k,e[7]^=m;for(var f=0;4>f;f++)b.call(this)}},_doProcessBlock:function(a,c){var d=this._X;b.call(this),g[0]=d[0]^d[5]>>>16^d[3]<<16,g[1]=d[2]^d[7]>>>16^d[5]<<16,g[2]=d[4]^d[1]>>>16^d[7]<<16,g[3]=d[6]^d[3]>>>16^d[1]<<16;for(var e=0;4>e;e++)g[e]=16711935&(g[e]<<8|g[e]>>>24)|4278255360&(g[e]<<24|g[e]>>>8),a[c+e]^=g[e]},blockSize:4,ivSize:2});c.RabbitLegacy=e._createHelper(j)}(),a.RabbitLegacy})},{"./cipher-core":37,"./core":38,"./enc-base64":39,"./evpkdf":41,"./md5":46}],59:[function(a,b,c){!function(d,e,f){"object"==typeof c?b.exports=c=e(a("./core"),a("./enc-base64"),a("./md5"),a("./evpkdf"),a("./cipher-core")):"function"==typeof define&&define.amd?define(["./core","./enc-base64","./md5","./evpkdf","./cipher-core"],e):e(d.CryptoJS)}(this,function(a){return function(){function b(){for(var a=this._X,b=this._C,c=0;8>c;c++)h[c]=b[c];b[0]=b[0]+1295307597+this._b|0,b[1]=b[1]+3545052371+(b[0]>>>0<h[0]>>>0?1:0)|0,b[2]=b[2]+886263092+(b[1]>>>0<h[1]>>>0?1:0)|0,b[3]=b[3]+1295307597+(b[2]>>>0<h[2]>>>0?1:0)|0,b[4]=b[4]+3545052371+(b[3]>>>0<h[3]>>>0?1:0)|0,b[5]=b[5]+886263092+(b[4]>>>0<h[4]>>>0?1:0)|0,b[6]=b[6]+1295307597+(b[5]>>>0<h[5]>>>0?1:0)|0,b[7]=b[7]+3545052371+(b[6]>>>0<h[6]>>>0?1:0)|0,this._b=b[7]>>>0<h[7]>>>0?1:0;for(var c=0;8>c;c++){var d=a[c]+b[c],e=65535&d,f=d>>>16,g=((e*e>>>17)+e*f>>>15)+f*f,j=((4294901760&d)*d|0)+((65535&d)*d|0);i[c]=g^j}a[0]=i[0]+(i[7]<<16|i[7]>>>16)+(i[6]<<16|i[6]>>>16)|0,a[1]=i[1]+(i[0]<<8|i[0]>>>24)+i[7]|0,a[2]=i[2]+(i[1]<<16|i[1]>>>16)+(i[0]<<16|i[0]>>>16)|0,a[3]=i[3]+(i[2]<<8|i[2]>>>24)+i[1]|0,a[4]=i[4]+(i[3]<<16|i[3]>>>16)+(i[2]<<16|i[2]>>>16)|0,a[5]=i[5]+(i[4]<<8|i[4]>>>24)+i[3]|0,a[6]=i[6]+(i[5]<<16|i[5]>>>16)+(i[4]<<16|i[4]>>>16)|0,a[7]=i[7]+(i[6]<<8|i[6]>>>24)+i[5]|0}var c=a,d=c.lib,e=d.StreamCipher,f=c.algo,g=[],h=[],i=[],j=f.Rabbit=e.extend({_doReset:function(){for(var a=this._key.words,c=this.cfg.iv,d=0;4>d;d++)a[d]=16711935&(a[d]<<8|a[d]>>>24)|4278255360&(a[d]<<24|a[d]>>>8);var e=this._X=[a[0],a[3]<<16|a[2]>>>16,a[1],a[0]<<16|a[3]>>>16,a[2],a[1]<<16|a[0]>>>16,a[3],a[2]<<16|a[1]>>>16],f=this._C=[a[2]<<16|a[2]>>>16,4294901760&a[0]|65535&a[1],a[3]<<16|a[3]>>>16,4294901760&a[1]|65535&a[2],a[0]<<16|a[0]>>>16,4294901760&a[2]|65535&a[3],a[1]<<16|a[1]>>>16,4294901760&a[3]|65535&a[0]];this._b=0;for(var d=0;4>d;d++)b.call(this);for(var d=0;8>d;d++)f[d]^=e[d+4&7];if(c){var g=c.words,h=g[0],i=g[1],j=16711935&(h<<8|h>>>24)|4278255360&(h<<24|h>>>8),k=16711935&(i<<8|i>>>24)|4278255360&(i<<24|i>>>8),l=j>>>16|4294901760&k,m=k<<16|65535&j;f[0]^=j,f[1]^=l,f[2]^=k,f[3]^=m,f[4]^=j,f[5]^=l,f[6]^=k,f[7]^=m;for(var d=0;4>d;d++)b.call(this)}},_doProcessBlock:function(a,c){var d=this._X;b.call(this),g[0]=d[0]^d[5]>>>16^d[3]<<16,g[1]=d[2]^d[7]>>>16^d[5]<<16,g[2]=d[4]^d[1]>>>16^d[7]<<16,g[3]=d[6]^d[3]>>>16^d[1]<<16;for(var e=0;4>e;e++)g[e]=16711935&(g[e]<<8|g[e]>>>24)|4278255360&(g[e]<<24|g[e]>>>8),a[c+e]^=g[e]},blockSize:4,ivSize:2});c.Rabbit=e._createHelper(j)}(),a.Rabbit})},{"./cipher-core":37,"./core":38,"./enc-base64":39,"./evpkdf":41,"./md5":46}],60:[function(a,b,c){!function(d,e,f){"object"==typeof c?b.exports=c=e(a("./core"),a("./enc-base64"),a("./md5"),a("./evpkdf"),a("./cipher-core")):"function"==typeof define&&define.amd?define(["./core","./enc-base64","./md5","./evpkdf","./cipher-core"],e):e(d.CryptoJS)}(this,function(a){return function(){function b(){for(var a=this._S,b=this._i,c=this._j,d=0,e=0;4>e;e++){b=(b+1)%256,c=(c+a[b])%256;var f=a[b];a[b]=a[c],a[c]=f,d|=a[(a[b]+a[c])%256]<<24-8*e}return this._i=b,this._j=c,d}var c=a,d=c.lib,e=d.StreamCipher,f=c.algo,g=f.RC4=e.extend({_doReset:function(){for(var a=this._key,b=a.words,c=a.sigBytes,d=this._S=[],e=0;256>e;e++)d[e]=e;for(var e=0,f=0;256>e;e++){var g=e%c,h=b[g>>>2]>>>24-g%4*8&255;f=(f+d[e]+h)%256;var i=d[e];d[e]=d[f],d[f]=i}this._i=this._j=0},_doProcessBlock:function(a,c){a[c]^=b.call(this)},keySize:8,ivSize:0});c.RC4=e._createHelper(g);var h=f.RC4Drop=g.extend({cfg:g.cfg.extend({drop:192}),_doReset:function(){g._doReset.call(this);for(var a=this.cfg.drop;a>0;a--)b.call(this)}});c.RC4Drop=e._createHelper(h)}(),a.RC4})},{"./cipher-core":37,"./core":38,"./enc-base64":39,"./evpkdf":41,"./md5":46}],61:[function(a,b,c){!function(d,e){"object"==typeof c?b.exports=c=e(a("./core")):"function"==typeof define&&define.amd?define(["./core"],e):e(d.CryptoJS)}(this,function(a){return function(b){function c(a,b,c){return a^b^c}function d(a,b,c){return a&b|~a&c}function e(a,b,c){return(a|~b)^c}function f(a,b,c){return a&c|b&~c}function g(a,b,c){return a^(b|~c)}function h(a,b){return a<<b|a>>>32-b}var i=a,j=i.lib,k=j.WordArray,l=j.Hasher,m=i.algo,n=k.create([0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,7,4,13,1,10,6,15,3,12,0,9,5,2,14,11,8,3,10,14,4,9,15,8,1,2,7,0,6,13,11,5,12,1,9,11,10,0,8,12,4,13,3,7,15,14,5,6,2,4,0,5,9,7,12,2,10,14,1,3,8,11,6,15,13]),o=k.create([5,14,7,0,9,2,11,4,13,6,15,8,1,10,3,12,6,11,3,7,0,13,5,10,14,15,8,12,4,9,1,2,15,5,1,3,7,14,6,9,11,8,12,2,10,0,4,13,8,6,4,1,3,11,15,0,5,12,2,13,9,7,10,14,12,15,10,4,1,5,8,7,6,2,13,14,0,3,9,11]),p=k.create([11,14,15,12,5,8,7,9,11,13,14,15,6,7,9,8,7,6,8,13,11,9,7,15,7,12,15,9,11,7,13,12,11,13,6,7,14,9,13,15,14,8,13,6,5,12,7,5,11,12,14,15,14,15,9,8,9,14,5,6,8,6,5,12,9,15,5,11,6,8,13,12,5,12,13,14,11,8,5,6]),q=k.create([8,9,9,11,13,15,15,5,7,7,8,11,14,14,12,6,9,13,15,7,12,8,9,11,7,7,12,7,6,15,13,11,9,7,15,11,8,6,6,14,12,13,5,14,13,13,7,5,15,5,8,11,14,14,6,14,6,9,12,9,12,5,15,8,8,5,12,9,12,5,14,6,8,13,6,5,15,13,11,11]),r=k.create([0,1518500249,1859775393,2400959708,2840853838]),s=k.create([1352829926,1548603684,1836072691,2053994217,0]),t=m.RIPEMD160=l.extend({_doReset:function(){this._hash=k.create([1732584193,4023233417,2562383102,271733878,3285377520])},_doProcessBlock:function(a,b){for(var i=0;16>i;i++){var j=b+i,k=a[j];a[j]=16711935&(k<<8|k>>>24)|4278255360&(k<<24|k>>>8)}var l,m,t,u,v,w,x,y,z,A,B=this._hash.words,C=r.words,D=s.words,E=n.words,F=o.words,G=p.words,H=q.words;w=l=B[0],x=m=B[1],y=t=B[2],z=u=B[3],A=v=B[4];for(var I,i=0;80>i;i+=1)I=l+a[b+E[i]]|0,I+=16>i?c(m,t,u)+C[0]:32>i?d(m,t,u)+C[1]:48>i?e(m,t,u)+C[2]:64>i?f(m,t,u)+C[3]:g(m,t,u)+C[4],I=0|I,I=h(I,G[i]),I=I+v|0,l=v,v=u,u=h(t,10),t=m,m=I,I=w+a[b+F[i]]|0,I+=16>i?g(x,y,z)+D[0]:32>i?f(x,y,z)+D[1]:48>i?e(x,y,z)+D[2]:64>i?d(x,y,z)+D[3]:c(x,y,z)+D[4],I=0|I,I=h(I,H[i]),I=I+A|0,w=A,A=z,z=h(y,10),y=x,x=I;I=B[1]+t+z|0,B[1]=B[2]+u+A|0,B[2]=B[3]+v+w|0,B[3]=B[4]+l+x|0,B[4]=B[0]+m+y|0,B[0]=I},_doFinalize:function(){var a=this._data,b=a.words,c=8*this._nDataBytes,d=8*a.sigBytes;b[d>>>5]|=128<<24-d%32,b[(d+64>>>9<<4)+14]=16711935&(c<<8|c>>>24)|4278255360&(c<<24|c>>>8),a.sigBytes=4*(b.length+1),this._process();for(var e=this._hash,f=e.words,g=0;5>g;g++){var h=f[g];f[g]=16711935&(h<<8|h>>>24)|4278255360&(h<<24|h>>>8)}return e},clone:function(){var a=l.clone.call(this);return a._hash=this._hash.clone(),a}});i.RIPEMD160=l._createHelper(t),i.HmacRIPEMD160=l._createHmacHelper(t)}(Math),a.RIPEMD160})},{"./core":38}],62:[function(a,b,c){!function(d,e){"object"==typeof c?b.exports=c=e(a("./core")):"function"==typeof define&&define.amd?define(["./core"],e):e(d.CryptoJS)}(this,function(a){return function(){var b=a,c=b.lib,d=c.WordArray,e=c.Hasher,f=b.algo,g=[],h=f.SHA1=e.extend({_doReset:function(){this._hash=new d.init([1732584193,4023233417,2562383102,271733878,3285377520])},_doProcessBlock:function(a,b){for(var c=this._hash.words,d=c[0],e=c[1],f=c[2],h=c[3],i=c[4],j=0;80>j;j++){if(16>j)g[j]=0|a[b+j];else{var k=g[j-3]^g[j-8]^g[j-14]^g[j-16];g[j]=k<<1|k>>>31}var l=(d<<5|d>>>27)+i+g[j];l+=20>j?(e&f|~e&h)+1518500249:40>j?(e^f^h)+1859775393:60>j?(e&f|e&h|f&h)-1894007588:(e^f^h)-899497514,i=h,h=f,f=e<<30|e>>>2,e=d,d=l}c[0]=c[0]+d|0,c[1]=c[1]+e|0,c[2]=c[2]+f|0,c[3]=c[3]+h|0,c[4]=c[4]+i|0},_doFinalize:function(){var a=this._data,b=a.words,c=8*this._nDataBytes,d=8*a.sigBytes;return b[d>>>5]|=128<<24-d%32,b[(d+64>>>9<<4)+14]=Math.floor(c/4294967296),b[(d+64>>>9<<4)+15]=c,a.sigBytes=4*b.length,this._process(),this._hash},clone:function(){var a=e.clone.call(this);return a._hash=this._hash.clone(),a}});b.SHA1=e._createHelper(h),b.HmacSHA1=e._createHmacHelper(h)}(),a.SHA1})},{"./core":38}],63:[function(a,b,c){!function(d,e,f){"object"==typeof c?b.exports=c=e(a("./core"),a("./sha256")):"function"==typeof define&&define.amd?define(["./core","./sha256"],e):e(d.CryptoJS)}(this,function(a){return function(){var b=a,c=b.lib,d=c.WordArray,e=b.algo,f=e.SHA256,g=e.SHA224=f.extend({_doReset:function(){this._hash=new d.init([3238371032,914150663,812702999,4144912697,4290775857,1750603025,1694076839,3204075428])},_doFinalize:function(){var a=f._doFinalize.call(this);return a.sigBytes-=4,a}});b.SHA224=f._createHelper(g),b.HmacSHA224=f._createHmacHelper(g)}(),a.SHA224})},{"./core":38,"./sha256":64}],64:[function(a,b,c){!function(d,e){"object"==typeof c?b.exports=c=e(a("./core")):"function"==typeof define&&define.amd?define(["./core"],e):e(d.CryptoJS)}(this,function(a){return function(b){var c=a,d=c.lib,e=d.WordArray,f=d.Hasher,g=c.algo,h=[],i=[];!function(){function a(a){for(var c=b.sqrt(a),d=2;c>=d;d++)if(!(a%d))return!1;return!0}function c(a){return 4294967296*(a-(0|a))|0}for(var d=2,e=0;64>e;)a(d)&&(8>e&&(h[e]=c(b.pow(d,.5))),i[e]=c(b.pow(d,1/3)),e++),d++}();var j=[],k=g.SHA256=f.extend({_doReset:function(){this._hash=new e.init(h.slice(0))},_doProcessBlock:function(a,b){for(var c=this._hash.words,d=c[0],e=c[1],f=c[2],g=c[3],h=c[4],k=c[5],l=c[6],m=c[7],n=0;64>n;n++){if(16>n)j[n]=0|a[b+n];else{var o=j[n-15],p=(o<<25|o>>>7)^(o<<14|o>>>18)^o>>>3,q=j[n-2],r=(q<<15|q>>>17)^(q<<13|q>>>19)^q>>>10;j[n]=p+j[n-7]+r+j[n-16]}var s=h&k^~h&l,t=d&e^d&f^e&f,u=(d<<30|d>>>2)^(d<<19|d>>>13)^(d<<10|d>>>22),v=(h<<26|h>>>6)^(h<<21|h>>>11)^(h<<7|h>>>25),w=m+v+s+i[n]+j[n],x=u+t;m=l,l=k,k=h,h=g+w|0,g=f,f=e,e=d,d=w+x|0}c[0]=c[0]+d|0,c[1]=c[1]+e|0,c[2]=c[2]+f|0,c[3]=c[3]+g|0,c[4]=c[4]+h|0,c[5]=c[5]+k|0,c[6]=c[6]+l|0,c[7]=c[7]+m|0},_doFinalize:function(){var a=this._data,c=a.words,d=8*this._nDataBytes,e=8*a.sigBytes;return c[e>>>5]|=128<<24-e%32,c[(e+64>>>9<<4)+14]=b.floor(d/4294967296),c[(e+64>>>9<<4)+15]=d,a.sigBytes=4*c.length,this._process(),this._hash},clone:function(){var a=f.clone.call(this);return a._hash=this._hash.clone(),a}});c.SHA256=f._createHelper(k),c.HmacSHA256=f._createHmacHelper(k)}(Math),a.SHA256})},{"./core":38}],65:[function(a,b,c){!function(d,e,f){"object"==typeof c?b.exports=c=e(a("./core"),a("./x64-core")):"function"==typeof define&&define.amd?define(["./core","./x64-core"],e):e(d.CryptoJS)}(this,function(a){return function(b){var c=a,d=c.lib,e=d.WordArray,f=d.Hasher,g=c.x64,h=g.Word,i=c.algo,j=[],k=[],l=[];!function(){for(var a=1,b=0,c=0;24>c;c++){j[a+5*b]=(c+1)*(c+2)/2%64;var d=b%5,e=(2*a+3*b)%5;a=d,b=e}for(var a=0;5>a;a++)for(var b=0;5>b;b++)k[a+5*b]=b+(2*a+3*b)%5*5;for(var f=1,g=0;24>g;g++){for(var i=0,m=0,n=0;7>n;n++){if(1&f){var o=(1<<n)-1;32>o?m^=1<<o:i^=1<<o-32}128&f?f=f<<1^113:f<<=1}l[g]=h.create(i,m)}}();var m=[];!function(){for(var a=0;25>a;a++)m[a]=h.create()}();var n=i.SHA3=f.extend({cfg:f.cfg.extend({outputLength:512}),_doReset:function(){for(var a=this._state=[],b=0;25>b;b++)a[b]=new h.init;this.blockSize=(1600-2*this.cfg.outputLength)/32},_doProcessBlock:function(a,b){for(var c=this._state,d=this.blockSize/2,e=0;d>e;e++){var f=a[b+2*e],g=a[b+2*e+1];f=16711935&(f<<8|f>>>24)|4278255360&(f<<24|f>>>8),g=16711935&(g<<8|g>>>24)|4278255360&(g<<24|g>>>8);var h=c[e];h.high^=g,h.low^=f}for(var i=0;24>i;i++){for(var n=0;5>n;n++){for(var o=0,p=0,q=0;5>q;q++){var h=c[n+5*q];o^=h.high,p^=h.low}var r=m[n];r.high=o,r.low=p}for(var n=0;5>n;n++)for(var s=m[(n+4)%5],t=m[(n+1)%5],u=t.high,v=t.low,o=s.high^(u<<1|v>>>31),p=s.low^(v<<1|u>>>31),q=0;5>q;q++){var h=c[n+5*q];h.high^=o,h.low^=p}for(var w=1;25>w;w++){var h=c[w],x=h.high,y=h.low,z=j[w];if(32>z)var o=x<<z|y>>>32-z,p=y<<z|x>>>32-z;else var o=y<<z-32|x>>>64-z,p=x<<z-32|y>>>64-z;var A=m[k[w]];A.high=o,A.low=p}var B=m[0],C=c[0];B.high=C.high,B.low=C.low;for(var n=0;5>n;n++)for(var q=0;5>q;q++){var w=n+5*q,h=c[w],D=m[w],E=m[(n+1)%5+5*q],F=m[(n+2)%5+5*q];h.high=D.high^~E.high&F.high,h.low=D.low^~E.low&F.low}var h=c[0],G=l[i];h.high^=G.high,h.low^=G.low}},_doFinalize:function(){var a=this._data,c=a.words,d=(8*this._nDataBytes,8*a.sigBytes),f=32*this.blockSize;c[d>>>5]|=1<<24-d%32,c[(b.ceil((d+1)/f)*f>>>5)-1]|=128,a.sigBytes=4*c.length,this._process();for(var g=this._state,h=this.cfg.outputLength/8,i=h/8,j=[],k=0;i>k;k++){var l=g[k],m=l.high,n=l.low;m=16711935&(m<<8|m>>>24)|4278255360&(m<<24|m>>>8),n=16711935&(n<<8|n>>>24)|4278255360&(n<<24|n>>>8),j.push(n),j.push(m)}return new e.init(j,h)},clone:function(){for(var a=f.clone.call(this),b=a._state=this._state.slice(0),c=0;25>c;c++)b[c]=b[c].clone();return a}});c.SHA3=f._createHelper(n),c.HmacSHA3=f._createHmacHelper(n)}(Math),a.SHA3})},{"./core":38,"./x64-core":69}],66:[function(a,b,c){!function(d,e,f){"object"==typeof c?b.exports=c=e(a("./core"),a("./x64-core"),a("./sha512")):"function"==typeof define&&define.amd?define(["./core","./x64-core","./sha512"],e):e(d.CryptoJS)}(this,function(a){return function(){var b=a,c=b.x64,d=c.Word,e=c.WordArray,f=b.algo,g=f.SHA512,h=f.SHA384=g.extend({_doReset:function(){this._hash=new e.init([new d.init(3418070365,3238371032),new d.init(1654270250,914150663),new d.init(2438529370,812702999),new d.init(355462360,4144912697),new d.init(1731405415,4290775857),new d.init(2394180231,1750603025),new d.init(3675008525,1694076839),new d.init(1203062813,3204075428)])},_doFinalize:function(){var a=g._doFinalize.call(this);return a.sigBytes-=16,a}});b.SHA384=g._createHelper(h),b.HmacSHA384=g._createHmacHelper(h)}(),a.SHA384})},{"./core":38,"./sha512":67,"./x64-core":69}],67:[function(a,b,c){!function(d,e,f){"object"==typeof c?b.exports=c=e(a("./core"),a("./x64-core")):"function"==typeof define&&define.amd?define(["./core","./x64-core"],e):e(d.CryptoJS)}(this,function(a){return function(){function b(){return g.create.apply(g,arguments)}var c=a,d=c.lib,e=d.Hasher,f=c.x64,g=f.Word,h=f.WordArray,i=c.algo,j=[b(1116352408,3609767458),b(1899447441,602891725),b(3049323471,3964484399),b(3921009573,2173295548),b(961987163,4081628472),b(1508970993,3053834265),b(2453635748,2937671579),b(2870763221,3664609560),b(3624381080,2734883394),b(310598401,1164996542),b(607225278,1323610764),b(1426881987,3590304994),b(1925078388,4068182383),b(2162078206,991336113),b(2614888103,633803317),b(3248222580,3479774868),b(3835390401,2666613458),b(4022224774,944711139),b(264347078,2341262773),b(604807628,2007800933),b(770255983,1495990901),b(1249150122,1856431235),b(1555081692,3175218132),b(1996064986,2198950837),b(2554220882,3999719339),b(2821834349,766784016),b(2952996808,2566594879),b(3210313671,3203337956),b(3336571891,1034457026),b(3584528711,2466948901),b(113926993,3758326383),b(338241895,168717936),b(666307205,1188179964),b(773529912,1546045734),b(1294757372,1522805485),b(1396182291,2643833823),b(1695183700,2343527390),b(1986661051,1014477480),b(2177026350,1206759142),b(2456956037,344077627),b(2730485921,1290863460),b(2820302411,3158454273),b(3259730800,3505952657),b(3345764771,106217008),b(3516065817,3606008344),b(3600352804,1432725776),b(4094571909,1467031594),b(275423344,851169720),b(430227734,3100823752),b(506948616,1363258195),b(659060556,3750685593),b(883997877,3785050280),b(958139571,3318307427),b(1322822218,3812723403),b(1537002063,2003034995),b(1747873779,3602036899),b(1955562222,1575990012),b(2024104815,1125592928),b(2227730452,2716904306),b(2361852424,442776044),b(2428436474,593698344),b(2756734187,3733110249),b(3204031479,2999351573),b(3329325298,3815920427),b(3391569614,3928383900),b(3515267271,566280711),b(3940187606,3454069534),b(4118630271,4000239992),b(116418474,1914138554),b(174292421,2731055270),b(289380356,3203993006),b(460393269,320620315),b(685471733,587496836),b(852142971,1086792851),b(1017036298,365543100),b(1126000580,2618297676),b(1288033470,3409855158),b(1501505948,4234509866),b(1607167915,987167468),b(1816402316,1246189591)],k=[]; !function(){for(var a=0;80>a;a++)k[a]=b()}();var l=i.SHA512=e.extend({_doReset:function(){this._hash=new h.init([new g.init(1779033703,4089235720),new g.init(3144134277,2227873595),new g.init(1013904242,4271175723),new g.init(2773480762,1595750129),new g.init(1359893119,2917565137),new g.init(2600822924,725511199),new g.init(528734635,4215389547),new g.init(1541459225,327033209)])},_doProcessBlock:function(a,b){for(var c=this._hash.words,d=c[0],e=c[1],f=c[2],g=c[3],h=c[4],i=c[5],l=c[6],m=c[7],n=d.high,o=d.low,p=e.high,q=e.low,r=f.high,s=f.low,t=g.high,u=g.low,v=h.high,w=h.low,x=i.high,y=i.low,z=l.high,A=l.low,B=m.high,C=m.low,D=n,E=o,F=p,G=q,H=r,I=s,J=t,K=u,L=v,M=w,N=x,O=y,P=z,Q=A,R=B,S=C,T=0;80>T;T++){var U=k[T];if(16>T)var V=U.high=0|a[b+2*T],W=U.low=0|a[b+2*T+1];else{var X=k[T-15],Y=X.high,Z=X.low,$=(Y>>>1|Z<<31)^(Y>>>8|Z<<24)^Y>>>7,_=(Z>>>1|Y<<31)^(Z>>>8|Y<<24)^(Z>>>7|Y<<25),aa=k[T-2],ba=aa.high,ca=aa.low,da=(ba>>>19|ca<<13)^(ba<<3|ca>>>29)^ba>>>6,ea=(ca>>>19|ba<<13)^(ca<<3|ba>>>29)^(ca>>>6|ba<<26),fa=k[T-7],ga=fa.high,ha=fa.low,ia=k[T-16],ja=ia.high,ka=ia.low,W=_+ha,V=$+ga+(_>>>0>W>>>0?1:0),W=W+ea,V=V+da+(ea>>>0>W>>>0?1:0),W=W+ka,V=V+ja+(ka>>>0>W>>>0?1:0);U.high=V,U.low=W}var la=L&N^~L&P,ma=M&O^~M&Q,na=D&F^D&H^F&H,oa=E&G^E&I^G&I,pa=(D>>>28|E<<4)^(D<<30|E>>>2)^(D<<25|E>>>7),qa=(E>>>28|D<<4)^(E<<30|D>>>2)^(E<<25|D>>>7),ra=(L>>>14|M<<18)^(L>>>18|M<<14)^(L<<23|M>>>9),sa=(M>>>14|L<<18)^(M>>>18|L<<14)^(M<<23|L>>>9),ta=j[T],ua=ta.high,va=ta.low,wa=S+sa,xa=R+ra+(S>>>0>wa>>>0?1:0),wa=wa+ma,xa=xa+la+(ma>>>0>wa>>>0?1:0),wa=wa+va,xa=xa+ua+(va>>>0>wa>>>0?1:0),wa=wa+W,xa=xa+V+(W>>>0>wa>>>0?1:0),ya=qa+oa,za=pa+na+(qa>>>0>ya>>>0?1:0);R=P,S=Q,P=N,Q=O,N=L,O=M,M=K+wa|0,L=J+xa+(K>>>0>M>>>0?1:0)|0,J=H,K=I,H=F,I=G,F=D,G=E,E=wa+ya|0,D=xa+za+(wa>>>0>E>>>0?1:0)|0}o=d.low=o+E,d.high=n+D+(E>>>0>o>>>0?1:0),q=e.low=q+G,e.high=p+F+(G>>>0>q>>>0?1:0),s=f.low=s+I,f.high=r+H+(I>>>0>s>>>0?1:0),u=g.low=u+K,g.high=t+J+(K>>>0>u>>>0?1:0),w=h.low=w+M,h.high=v+L+(M>>>0>w>>>0?1:0),y=i.low=y+O,i.high=x+N+(O>>>0>y>>>0?1:0),A=l.low=A+Q,l.high=z+P+(Q>>>0>A>>>0?1:0),C=m.low=C+S,m.high=B+R+(S>>>0>C>>>0?1:0)},_doFinalize:function(){var a=this._data,b=a.words,c=8*this._nDataBytes,d=8*a.sigBytes;b[d>>>5]|=128<<24-d%32,b[(d+128>>>10<<5)+30]=Math.floor(c/4294967296),b[(d+128>>>10<<5)+31]=c,a.sigBytes=4*b.length,this._process();var e=this._hash.toX32();return e},clone:function(){var a=e.clone.call(this);return a._hash=this._hash.clone(),a},blockSize:32});c.SHA512=e._createHelper(l),c.HmacSHA512=e._createHmacHelper(l)}(),a.SHA512})},{"./core":38,"./x64-core":69}],68:[function(a,b,c){!function(d,e,f){"object"==typeof c?b.exports=c=e(a("./core"),a("./enc-base64"),a("./md5"),a("./evpkdf"),a("./cipher-core")):"function"==typeof define&&define.amd?define(["./core","./enc-base64","./md5","./evpkdf","./cipher-core"],e):e(d.CryptoJS)}(this,function(a){return function(){function b(a,b){var c=(this._lBlock>>>a^this._rBlock)&b;this._rBlock^=c,this._lBlock^=c<<a}function c(a,b){var c=(this._rBlock>>>a^this._lBlock)&b;this._lBlock^=c,this._rBlock^=c<<a}var d=a,e=d.lib,f=e.WordArray,g=e.BlockCipher,h=d.algo,i=[57,49,41,33,25,17,9,1,58,50,42,34,26,18,10,2,59,51,43,35,27,19,11,3,60,52,44,36,63,55,47,39,31,23,15,7,62,54,46,38,30,22,14,6,61,53,45,37,29,21,13,5,28,20,12,4],j=[14,17,11,24,1,5,3,28,15,6,21,10,23,19,12,4,26,8,16,7,27,20,13,2,41,52,31,37,47,55,30,40,51,45,33,48,44,49,39,56,34,53,46,42,50,36,29,32],k=[1,2,4,6,8,10,12,14,15,17,19,21,23,25,27,28],l=[{0:8421888,268435456:32768,536870912:8421378,805306368:2,1073741824:512,1342177280:8421890,1610612736:8389122,1879048192:8388608,2147483648:514,2415919104:8389120,2684354560:33280,2952790016:8421376,3221225472:32770,3489660928:8388610,3758096384:0,4026531840:33282,134217728:0,402653184:8421890,671088640:33282,939524096:32768,1207959552:8421888,1476395008:512,1744830464:8421378,2013265920:2,2281701376:8389120,2550136832:33280,2818572288:8421376,3087007744:8389122,3355443200:8388610,3623878656:32770,3892314112:514,4160749568:8388608,1:32768,268435457:2,536870913:8421888,805306369:8388608,1073741825:8421378,1342177281:33280,1610612737:512,1879048193:8389122,2147483649:8421890,2415919105:8421376,2684354561:8388610,2952790017:33282,3221225473:514,3489660929:8389120,3758096385:32770,4026531841:0,134217729:8421890,402653185:8421376,671088641:8388608,939524097:512,1207959553:32768,1476395009:8388610,1744830465:2,2013265921:33282,2281701377:32770,2550136833:8389122,2818572289:514,3087007745:8421888,3355443201:8389120,3623878657:0,3892314113:33280,4160749569:8421378},{0:1074282512,16777216:16384,33554432:524288,50331648:1074266128,67108864:1073741840,83886080:1074282496,100663296:1073758208,117440512:16,134217728:540672,150994944:1073758224,167772160:1073741824,184549376:540688,201326592:524304,218103808:0,234881024:16400,251658240:1074266112,8388608:1073758208,25165824:540688,41943040:16,58720256:1073758224,75497472:1074282512,92274688:1073741824,109051904:524288,125829120:1074266128,142606336:524304,159383552:0,176160768:16384,192937984:1074266112,209715200:1073741840,226492416:540672,243269632:1074282496,260046848:16400,268435456:0,285212672:1074266128,301989888:1073758224,318767104:1074282496,335544320:1074266112,352321536:16,369098752:540688,385875968:16384,402653184:16400,419430400:524288,436207616:524304,452984832:1073741840,469762048:540672,486539264:1073758208,503316480:1073741824,520093696:1074282512,276824064:540688,293601280:524288,310378496:1074266112,327155712:16384,343932928:1073758208,360710144:1074282512,377487360:16,394264576:1073741824,411041792:1074282496,427819008:1073741840,444596224:1073758224,461373440:524304,478150656:0,494927872:16400,511705088:1074266128,528482304:540672},{0:260,1048576:0,2097152:67109120,3145728:65796,4194304:65540,5242880:67108868,6291456:67174660,7340032:67174400,8388608:67108864,9437184:67174656,10485760:65792,11534336:67174404,12582912:67109124,13631488:65536,14680064:4,15728640:256,524288:67174656,1572864:67174404,2621440:0,3670016:67109120,4718592:67108868,5767168:65536,6815744:65540,7864320:260,8912896:4,9961472:256,11010048:67174400,12058624:65796,13107200:65792,14155776:67109124,15204352:67174660,16252928:67108864,16777216:67174656,17825792:65540,18874368:65536,19922944:67109120,20971520:256,22020096:67174660,23068672:67108868,24117248:0,25165824:67109124,26214400:67108864,27262976:4,28311552:65792,29360128:67174400,30408704:260,31457280:65796,32505856:67174404,17301504:67108864,18350080:260,19398656:67174656,20447232:0,21495808:65540,22544384:67109120,23592960:256,24641536:67174404,25690112:65536,26738688:67174660,27787264:65796,28835840:67108868,29884416:67109124,30932992:67174400,31981568:4,33030144:65792},{0:2151682048,65536:2147487808,131072:4198464,196608:2151677952,262144:0,327680:4198400,393216:2147483712,458752:4194368,524288:2147483648,589824:4194304,655360:64,720896:2147487744,786432:2151678016,851968:4160,917504:4096,983040:2151682112,32768:2147487808,98304:64,163840:2151678016,229376:2147487744,294912:4198400,360448:2151682112,425984:0,491520:2151677952,557056:4096,622592:2151682048,688128:4194304,753664:4160,819200:2147483648,884736:4194368,950272:4198464,1015808:2147483712,1048576:4194368,1114112:4198400,1179648:2147483712,1245184:0,1310720:4160,1376256:2151678016,1441792:2151682048,1507328:2147487808,1572864:2151682112,1638400:2147483648,1703936:2151677952,1769472:4198464,1835008:2147487744,1900544:4194304,1966080:64,2031616:4096,1081344:2151677952,1146880:2151682112,1212416:0,1277952:4198400,1343488:4194368,1409024:2147483648,1474560:2147487808,1540096:64,1605632:2147483712,1671168:4096,1736704:2147487744,1802240:2151678016,1867776:4160,1933312:2151682048,1998848:4194304,2064384:4198464},{0:128,4096:17039360,8192:262144,12288:536870912,16384:537133184,20480:16777344,24576:553648256,28672:262272,32768:16777216,36864:537133056,40960:536871040,45056:553910400,49152:553910272,53248:0,57344:17039488,61440:553648128,2048:17039488,6144:553648256,10240:128,14336:17039360,18432:262144,22528:537133184,26624:553910272,30720:536870912,34816:537133056,38912:0,43008:553910400,47104:16777344,51200:536871040,55296:553648128,59392:16777216,63488:262272,65536:262144,69632:128,73728:536870912,77824:553648256,81920:16777344,86016:553910272,90112:537133184,94208:16777216,98304:553910400,102400:553648128,106496:17039360,110592:537133056,114688:262272,118784:536871040,122880:0,126976:17039488,67584:553648256,71680:16777216,75776:17039360,79872:537133184,83968:536870912,88064:17039488,92160:128,96256:553910272,100352:262272,104448:553910400,108544:0,112640:553648128,116736:16777344,120832:262144,124928:537133056,129024:536871040},{0:268435464,256:8192,512:270532608,768:270540808,1024:268443648,1280:2097152,1536:2097160,1792:268435456,2048:0,2304:268443656,2560:2105344,2816:8,3072:270532616,3328:2105352,3584:8200,3840:270540800,128:270532608,384:270540808,640:8,896:2097152,1152:2105352,1408:268435464,1664:268443648,1920:8200,2176:2097160,2432:8192,2688:268443656,2944:270532616,3200:0,3456:270540800,3712:2105344,3968:268435456,4096:268443648,4352:270532616,4608:270540808,4864:8200,5120:2097152,5376:268435456,5632:268435464,5888:2105344,6144:2105352,6400:0,6656:8,6912:270532608,7168:8192,7424:268443656,7680:270540800,7936:2097160,4224:8,4480:2105344,4736:2097152,4992:268435464,5248:268443648,5504:8200,5760:270540808,6016:270532608,6272:270540800,6528:270532616,6784:8192,7040:2105352,7296:2097160,7552:0,7808:268435456,8064:268443656},{0:1048576,16:33555457,32:1024,48:1049601,64:34604033,80:0,96:1,112:34603009,128:33555456,144:1048577,160:33554433,176:34604032,192:34603008,208:1025,224:1049600,240:33554432,8:34603009,24:0,40:33555457,56:34604032,72:1048576,88:33554433,104:33554432,120:1025,136:1049601,152:33555456,168:34603008,184:1048577,200:1024,216:34604033,232:1,248:1049600,256:33554432,272:1048576,288:33555457,304:34603009,320:1048577,336:33555456,352:34604032,368:1049601,384:1025,400:34604033,416:1049600,432:1,448:0,464:34603008,480:33554433,496:1024,264:1049600,280:33555457,296:34603009,312:1,328:33554432,344:1048576,360:1025,376:34604032,392:33554433,408:34603008,424:0,440:34604033,456:1049601,472:1024,488:33555456,504:1048577},{0:134219808,1:131072,2:134217728,3:32,4:131104,5:134350880,6:134350848,7:2048,8:134348800,9:134219776,10:133120,11:134348832,12:2080,13:0,14:134217760,15:133152,2147483648:2048,2147483649:134350880,2147483650:134219808,2147483651:134217728,2147483652:134348800,2147483653:133120,2147483654:133152,2147483655:32,2147483656:134217760,2147483657:2080,2147483658:131104,2147483659:134350848,2147483660:0,2147483661:134348832,2147483662:134219776,2147483663:131072,16:133152,17:134350848,18:32,19:2048,20:134219776,21:134217760,22:134348832,23:131072,24:0,25:131104,26:134348800,27:134219808,28:134350880,29:133120,30:2080,31:134217728,2147483664:131072,2147483665:2048,2147483666:134348832,2147483667:133152,2147483668:32,2147483669:134348800,2147483670:134217728,2147483671:134219808,2147483672:134350880,2147483673:134217760,2147483674:134219776,2147483675:0,2147483676:133120,2147483677:2080,2147483678:131104,2147483679:134350848}],m=[4160749569,528482304,33030144,2064384,129024,8064,504,2147483679],n=h.DES=g.extend({_doReset:function(){for(var a=this._key,b=a.words,c=[],d=0;56>d;d++){var e=i[d]-1;c[d]=b[e>>>5]>>>31-e%32&1}for(var f=this._subKeys=[],g=0;16>g;g++){for(var h=f[g]=[],l=k[g],d=0;24>d;d++)h[d/6|0]|=c[(j[d]-1+l)%28]<<31-d%6,h[4+(d/6|0)]|=c[28+(j[d+24]-1+l)%28]<<31-d%6;h[0]=h[0]<<1|h[0]>>>31;for(var d=1;7>d;d++)h[d]=h[d]>>>4*(d-1)+3;h[7]=h[7]<<5|h[7]>>>27}for(var m=this._invSubKeys=[],d=0;16>d;d++)m[d]=f[15-d]},encryptBlock:function(a,b){this._doCryptBlock(a,b,this._subKeys)},decryptBlock:function(a,b){this._doCryptBlock(a,b,this._invSubKeys)},_doCryptBlock:function(a,d,e){this._lBlock=a[d],this._rBlock=a[d+1],b.call(this,4,252645135),b.call(this,16,65535),c.call(this,2,858993459),c.call(this,8,16711935),b.call(this,1,1431655765);for(var f=0;16>f;f++){for(var g=e[f],h=this._lBlock,i=this._rBlock,j=0,k=0;8>k;k++)j|=l[k][((i^g[k])&m[k])>>>0];this._lBlock=i,this._rBlock=h^j}var n=this._lBlock;this._lBlock=this._rBlock,this._rBlock=n,b.call(this,1,1431655765),c.call(this,8,16711935),c.call(this,2,858993459),b.call(this,16,65535),b.call(this,4,252645135),a[d]=this._lBlock,a[d+1]=this._rBlock},keySize:2,ivSize:2,blockSize:2});d.DES=g._createHelper(n);var o=h.TripleDES=g.extend({_doReset:function(){var a=this._key,b=a.words;this._des1=n.createEncryptor(f.create(b.slice(0,2))),this._des2=n.createEncryptor(f.create(b.slice(2,4))),this._des3=n.createEncryptor(f.create(b.slice(4,6)))},encryptBlock:function(a,b){this._des1.encryptBlock(a,b),this._des2.decryptBlock(a,b),this._des3.encryptBlock(a,b)},decryptBlock:function(a,b){this._des3.decryptBlock(a,b),this._des2.encryptBlock(a,b),this._des1.decryptBlock(a,b)},keySize:6,ivSize:2,blockSize:2});d.TripleDES=g._createHelper(o)}(),a.TripleDES})},{"./cipher-core":37,"./core":38,"./enc-base64":39,"./evpkdf":41,"./md5":46}],69:[function(a,b,c){!function(d,e){"object"==typeof c?b.exports=c=e(a("./core")):"function"==typeof define&&define.amd?define(["./core"],e):e(d.CryptoJS)}(this,function(a){return function(b){var c=a,d=c.lib,e=d.Base,f=d.WordArray,g=c.x64={};g.Word=e.extend({init:function(a,b){this.high=a,this.low=b}}),g.WordArray=e.extend({init:function(a,c){a=this.words=a||[],c!=b?this.sigBytes=c:this.sigBytes=8*a.length},toX32:function(){for(var a=this.words,b=a.length,c=[],d=0;b>d;d++){var e=a[d];c.push(e.high),c.push(e.low)}return f.create(c,this.sigBytes)},clone:function(){for(var a=e.clone.call(this),b=a.words=this.words.slice(0),c=b.length,d=0;c>d;d++)b[d]=b[d].clone();return a}})}(),a})},{"./core":38}],70:[function(a,b,c){function d(){k=!1,h.length?j=h.concat(j):l=-1,j.length&&e()}function e(){if(!k){var a=setTimeout(d);k=!0;for(var b=j.length;b;){for(h=j,j=[];++l<b;)h&&h[l].run();l=-1,b=j.length}h=null,k=!1,clearTimeout(a)}}function f(a,b){this.fun=a,this.array=b}function g(){}var h,i=b.exports={},j=[],k=!1,l=-1;i.nextTick=function(a){var b=new Array(arguments.length-1);if(arguments.length>1)for(var c=1;c<arguments.length;c++)b[c-1]=arguments[c];j.push(new f(a,b)),1!==j.length||k||setTimeout(e,0)},f.prototype.run=function(){this.fun.apply(null,this.array)},i.title="browser",i.browser=!0,i.env={},i.argv=[],i.version="",i.versions={},i.on=g,i.addListener=g,i.once=g,i.off=g,i.removeListener=g,i.removeAllListeners=g,i.emit=g,i.binding=function(a){throw new Error("process.binding is not supported")},i.cwd=function(){return"/"},i.chdir=function(a){throw new Error("process.chdir is not supported")},i.umask=function(){return 0}},{}],71:[function(a,b,c){(function(a,d){!function(){var b,c,e,f;!function(){var a={},d={};b=function(b,c,d){a[b]={deps:c,callback:d}},f=e=c=function(b){function e(a){if("."!==a.charAt(0))return a;for(var c=a.split("/"),d=b.split("/").slice(0,-1),e=0,f=c.length;f>e;e++){var g=c[e];if(".."===g)d.pop();else{if("."===g)continue;d.push(g)}}return d.join("/")}if(f._eak_seen=a,d[b])return d[b];if(d[b]={},!a[b])throw new Error("Could not find module "+b);for(var g,h=a[b],i=h.deps,j=h.callback,k=[],l=0,m=i.length;m>l;l++)"exports"===i[l]?k.push(g={}):k.push(c(e(i[l])));var n=j.apply(this,k);return d[b]=g||n}}(),b("promise/all",["./utils","exports"],function(a,b){"use strict";function c(a){var b=this;if(!d(a))throw new TypeError("You must pass an array to all.");return new b(function(b,c){function d(a){return function(b){f(a,b)}}function f(a,c){h[a]=c,0===--i&&b(h)}var g,h=[],i=a.length;0===i&&b([]);for(var j=0;j<a.length;j++)g=a[j],g&&e(g.then)?g.then(d(j),c):f(j,g)})}var d=a.isArray,e=a.isFunction;b.all=c}),b("promise/asap",["exports"],function(b){"use strict";function c(){return function(){a.nextTick(g)}}function e(){var a=0,b=new k(g),c=document.createTextNode("");return b.observe(c,{characterData:!0}),function(){c.data=a=++a%2}}function f(){return function(){l.setTimeout(g,1)}}function g(){for(var a=0;a<m.length;a++){var b=m[a],c=b[0],d=b[1];c(d)}m=[]}function h(a,b){var c=m.push([a,b]);1===c&&i()}var i,j="undefined"!=typeof window?window:{},k=j.MutationObserver||j.WebKitMutationObserver,l="undefined"!=typeof d?d:void 0===this?window:this,m=[];i="undefined"!=typeof a&&"[object process]"==={}.toString.call(a)?c():k?e():f(),b.asap=h}),b("promise/config",["exports"],function(a){"use strict";function b(a,b){return 2!==arguments.length?c[a]:void(c[a]=b)}var c={instrument:!1};a.config=c,a.configure=b}),b("promise/polyfill",["./promise","./utils","exports"],function(a,b,c){"use strict";function e(){var a;a="undefined"!=typeof d?d:"undefined"!=typeof window&&window.document?window:self;var b="Promise"in a&&"resolve"in a.Promise&&"reject"in a.Promise&&"all"in a.Promise&&"race"in a.Promise&&function(){var b;return new a.Promise(function(a){b=a}),g(b)}();b||(a.Promise=f)}var f=a.Promise,g=b.isFunction;c.polyfill=e}),b("promise/promise",["./config","./utils","./all","./race","./resolve","./reject","./asap","exports"],function(a,b,c,d,e,f,g,h){"use strict";function i(a){if(!v(a))throw new TypeError("You must pass a resolver function as the first argument to the promise constructor");if(!(this instanceof i))throw new TypeError("Failed to construct 'Promise': Please use the 'new' operator, this object constructor cannot be called as a function.");this._subscribers=[],j(a,this)}function j(a,b){function c(a){o(b,a)}function d(a){q(b,a)}try{a(c,d)}catch(e){d(e)}}function k(a,b,c,d){var e,f,g,h,i=v(c);if(i)try{e=c(d),g=!0}catch(j){h=!0,f=j}else e=d,g=!0;n(b,e)||(i&&g?o(b,e):h?q(b,f):a===D?o(b,e):a===E&&q(b,e))}function l(a,b,c,d){var e=a._subscribers,f=e.length;e[f]=b,e[f+D]=c,e[f+E]=d}function m(a,b){for(var c,d,e=a._subscribers,f=a._detail,g=0;g<e.length;g+=3)c=e[g],d=e[g+b],k(b,c,d,f);a._subscribers=null}function n(a,b){var c,d=null;try{if(a===b)throw new TypeError("A promises callback cannot return that same promise.");if(u(b)&&(d=b.then,v(d)))return d.call(b,function(d){return c?!0:(c=!0,void(b!==d?o(a,d):p(a,d)))},function(b){return c?!0:(c=!0,void q(a,b))}),!0}catch(e){return c?!0:(q(a,e),!0)}return!1}function o(a,b){a===b?p(a,b):n(a,b)||p(a,b)}function p(a,b){a._state===B&&(a._state=C,a._detail=b,t.async(r,a))}function q(a,b){a._state===B&&(a._state=C,a._detail=b,t.async(s,a))}function r(a){m(a,a._state=D)}function s(a){m(a,a._state=E)}var t=a.config,u=(a.configure,b.objectOrFunction),v=b.isFunction,w=(b.now,c.all),x=d.race,y=e.resolve,z=f.reject,A=g.asap;t.async=A;var B=void 0,C=0,D=1,E=2;i.prototype={constructor:i,_state:void 0,_detail:void 0,_subscribers:void 0,then:function(a,b){var c=this,d=new this.constructor(function(){});if(this._state){var e=arguments;t.async(function(){k(c._state,d,e[c._state-1],c._detail)})}else l(this,d,a,b);return d},"catch":function(a){return this.then(null,a)}},i.all=w,i.race=x,i.resolve=y,i.reject=z,h.Promise=i}),b("promise/race",["./utils","exports"],function(a,b){"use strict";function c(a){var b=this;if(!d(a))throw new TypeError("You must pass an array to race.");return new b(function(b,c){for(var d,e=0;e<a.length;e++)d=a[e],d&&"function"==typeof d.then?d.then(b,c):b(d)})}var d=a.isArray;b.race=c}),b("promise/reject",["exports"],function(a){"use strict";function b(a){var b=this;return new b(function(b,c){c(a)})}a.reject=b}),b("promise/resolve",["exports"],function(a){"use strict";function b(a){if(a&&"object"==typeof a&&a.constructor===this)return a;var b=this;return new b(function(b){b(a)})}a.resolve=b}),b("promise/utils",["exports"],function(a){"use strict";function b(a){return c(a)||"object"==typeof a&&null!==a}function c(a){return"function"==typeof a}function d(a){return"[object Array]"===Object.prototype.toString.call(a)}var e=Date.now||function(){return(new Date).getTime()};a.objectOrFunction=b,a.isFunction=c,a.isArray=d,a.now=e}),c("promise/polyfill").polyfill()}(),function(a,d){"object"==typeof c&&"object"==typeof b?b.exports=d():"function"==typeof define&&define.amd?define([],d):"object"==typeof c?c.localforage=d():a.localforage=d()}(this,function(){return function(a){function b(d){if(c[d])return c[d].exports;var e=c[d]={exports:{},id:d,loaded:!1};return a[d].call(e.exports,e,e.exports,b),e.loaded=!0,e.exports}var c={};return b.m=a,b.c=c,b.p="",b(0)}([function(a,b,c){"use strict";function d(a,b){if(!(a instanceof b))throw new TypeError("Cannot call a class as a function")}b.__esModule=!0,function(){function a(a,b){a[b]=function(){var c=arguments;return a.ready().then(function(){return a[b].apply(a,c)})}}function e(){for(var a=1;a<arguments.length;a++){var b=arguments[a];if(b)for(var c in b)b.hasOwnProperty(c)&&(m(b[c])?arguments[0][c]=b[c].slice():arguments[0][c]=b[c])}return arguments[0]}function f(a){for(var b in h)if(h.hasOwnProperty(b)&&h[b]===a)return!0;return!1}var g={},h={INDEXEDDB:"asyncStorage",LOCALSTORAGE:"localStorageWrapper",WEBSQL:"webSQLStorage"},i=[h.INDEXEDDB,h.WEBSQL,h.LOCALSTORAGE],j=["clear","getItem","iterate","key","keys","length","removeItem","setItem"],k={description:"",driver:i.slice(),name:"localforage",size:4980736,storeName:"keyvaluepairs",version:1},l=function(a){var b=b||a.indexedDB||a.webkitIndexedDB||a.mozIndexedDB||a.OIndexedDB||a.msIndexedDB,c={};return c[h.WEBSQL]=!!a.openDatabase,c[h.INDEXEDDB]=!!function(){if("undefined"!=typeof a.openDatabase&&a.navigator&&a.navigator.userAgent&&/Safari/.test(a.navigator.userAgent)&&!/Chrome/.test(a.navigator.userAgent))return!1;try{return b&&"function"==typeof b.open&&"undefined"!=typeof a.IDBKeyRange}catch(c){return!1}}(),c[h.LOCALSTORAGE]=!!function(){try{return a.localStorage&&"setItem"in a.localStorage&&a.localStorage.setItem}catch(b){return!1}}(),c}(this),m=Array.isArray||function(a){return"[object Array]"===Object.prototype.toString.call(a)},n=function(){function b(a){d(this,b),this.INDEXEDDB=h.INDEXEDDB,this.LOCALSTORAGE=h.LOCALSTORAGE,this.WEBSQL=h.WEBSQL,this._defaultConfig=e({},k),this._config=e({},this._defaultConfig,a),this._driverSet=null,this._initDriver=null,this._ready=!1,this._dbInfo=null,this._wrapLibraryMethodsWithReady(),this.setDriver(this._config.driver)}return b.prototype.config=function(a){if("object"==typeof a){if(this._ready)return new Error("Can't call config() after localforage has been used.");for(var b in a)"storeName"===b&&(a[b]=a[b].replace(/\W/g,"_")),this._config[b]=a[b];return"driver"in a&&a.driver&&this.setDriver(this._config.driver),!0}return"string"==typeof a?this._config[a]:this._config},b.prototype.defineDriver=function(a,b,c){var d=new Promise(function(b,c){try{var d=a._driver,e=new Error("Custom driver not compliant; see https://mozilla.github.io/localForage/#definedriver"),h=new Error("Custom driver name already in use: "+a._driver);if(!a._driver)return void c(e);if(f(a._driver))return void c(h);for(var i=j.concat("_initStorage"),k=0;k<i.length;k++){var m=i[k];if(!m||!a[m]||"function"!=typeof a[m])return void c(e)}var n=Promise.resolve(!0);"_support"in a&&(n=a._support&&"function"==typeof a._support?a._support():Promise.resolve(!!a._support)),n.then(function(c){l[d]=c,g[d]=a,b()},c)}catch(o){c(o)}});return d.then(b,c),d},b.prototype.driver=function(){return this._driver||null},b.prototype.getDriver=function(a,b,d){var e=this,h=function(){if(f(a))switch(a){case e.INDEXEDDB:return new Promise(function(a,b){a(c(1))});case e.LOCALSTORAGE:return new Promise(function(a,b){a(c(2))});case e.WEBSQL:return new Promise(function(a,b){a(c(4))})}else if(g[a])return Promise.resolve(g[a]);return Promise.reject(new Error("Driver not found."))}();return h.then(b,d),h},b.prototype.getSerializer=function(a){var b=new Promise(function(a,b){a(c(3))});return a&&"function"==typeof a&&b.then(function(b){a(b)}),b},b.prototype.ready=function(a){var b=this,c=b._driverSet.then(function(){return null===b._ready&&(b._ready=b._initDriver()),b._ready});return c.then(a,a),c},b.prototype.setDriver=function(a,b,c){function d(){f._config.driver=f.driver()}function e(a){return function(){function b(){for(;c<a.length;){var e=a[c];return c++,f._dbInfo=null,f._ready=null,f.getDriver(e).then(function(a){return f._extend(a),d(),f._ready=f._initStorage(f._config),f._ready})["catch"](b)}d();var g=new Error("No available storage method found.");return f._driverSet=Promise.reject(g),f._driverSet}var c=0;return b()}}var f=this;m(a)||(a=[a]);var g=this._getSupportedDrivers(a),h=null!==this._driverSet?this._driverSet["catch"](function(){return Promise.resolve()}):Promise.resolve();return this._driverSet=h.then(function(){var a=g[0];return f._dbInfo=null,f._ready=null,f.getDriver(a).then(function(a){f._driver=a._driver,d(),f._wrapLibraryMethodsWithReady(),f._initDriver=e(g)})})["catch"](function(){d();var a=new Error("No available storage method found.");return f._driverSet=Promise.reject(a),f._driverSet}),this._driverSet.then(b,c),this._driverSet},b.prototype.supports=function(a){return!!l[a]},b.prototype._extend=function(a){e(this,a)},b.prototype._getSupportedDrivers=function(a){for(var b=[],c=0,d=a.length;d>c;c++){var e=a[c];this.supports(e)&&b.push(e)}return b},b.prototype._wrapLibraryMethodsWithReady=function(){for(var b=0;b<j.length;b++)a(this,j[b])},b.prototype.createInstance=function(a){return new b(a)},b}(),o=new n;b["default"]=o}.call("undefined"!=typeof window?window:self),a.exports=b["default"]},function(a,b){"use strict";b.__esModule=!0,function(){function a(a,b){a=a||[],b=b||{};try{return new Blob(a,b)}catch(c){if("TypeError"!==c.name)throw c;for(var d=x.BlobBuilder||x.MSBlobBuilder||x.MozBlobBuilder||x.WebKitBlobBuilder,e=new d,f=0;f<a.length;f+=1)e.append(a[f]);return e.getBlob(b.type)}}function c(a){for(var b=a.length,c=new ArrayBuffer(b),d=new Uint8Array(c),e=0;b>e;e++)d[e]=a.charCodeAt(e);return c}function d(a){return new Promise(function(b,c){var d=new XMLHttpRequest;d.open("GET",a),d.withCredentials=!0,d.responseType="arraybuffer",d.onreadystatechange=function(){return 4===d.readyState?200===d.status?b({response:d.response,type:d.getResponseHeader("Content-Type")}):void c({status:d.status,response:d.response}):void 0},d.send()})}function e(b){return new Promise(function(c,e){var f=a([""],{type:"image/png"}),g=b.transaction([B],"readwrite");g.objectStore(B).put(f,"key"),g.oncomplete=function(){var a=b.transaction([B],"readwrite"),f=a.objectStore(B).get("key");f.onerror=e,f.onsuccess=function(a){var b=a.target.result,e=URL.createObjectURL(b);d(e).then(function(a){c(!(!a||"image/png"!==a.type))},function(){c(!1)}).then(function(){URL.revokeObjectURL(e)})}}})["catch"](function(){return!1})}function f(a){return"boolean"==typeof z?Promise.resolve(z):e(a).then(function(a){return z=a})}function g(a){return new Promise(function(b,c){var d=new FileReader;d.onerror=c,d.onloadend=function(c){var d=btoa(c.target.result||"");b({__local_forage_encoded_blob:!0,data:d,type:a.type})},d.readAsBinaryString(a)})}function h(b){var d=c(atob(b.data));return a([d],{type:b.type})}function i(a){return a&&a.__local_forage_encoded_blob}function j(a){function b(){return Promise.resolve()}var c=this,d={db:null};if(a)for(var e in a)d[e]=a[e];A||(A={});var f=A[d.name];f||(f={forages:[],db:null},A[d.name]=f),f.forages.push(this);for(var g=[],h=0;h<f.forages.length;h++){var i=f.forages[h];i!==this&&g.push(i.ready()["catch"](b))}var j=f.forages.slice(0);return Promise.all(g).then(function(){return d.db=f.db,k(d)}).then(function(a){return d.db=a,n(d,c._defaultConfig.version)?l(d):a}).then(function(a){d.db=f.db=a,c._dbInfo=d;for(var b in j){var e=j[b];e!==c&&(e._dbInfo.db=d.db,e._dbInfo.version=d.version)}})}function k(a){return m(a,!1)}function l(a){return m(a,!0)}function m(a,b){return new Promise(function(c,d){if(a.db){if(!b)return c(a.db);a.db.close()}var e=[a.name];b&&e.push(a.version);var f=y.open.apply(y,e);b&&(f.onupgradeneeded=function(b){var c=f.result;try{c.createObjectStore(a.storeName),b.oldVersion<=1&&c.createObjectStore(B)}catch(d){if("ConstraintError"!==d.name)throw d;x.console.warn('The database "'+a.name+'" has been upgraded from version '+b.oldVersion+" to version "+b.newVersion+', but the storage "'+a.storeName+'" already exists.')}}),f.onerror=function(){d(f.error)},f.onsuccess=function(){c(f.result)}})}function n(a,b){if(!a.db)return!0;var c=!a.db.objectStoreNames.contains(a.storeName),d=a.version<a.db.version,e=a.version>a.db.version;if(d&&(a.version!==b&&x.console.warn('The database "'+a.name+"\" can't be downgraded from version "+a.db.version+" to version "+a.version+"."),a.version=a.db.version),e||c){if(c){var f=a.db.version+1;f>a.version&&(a.version=f)}return!0}return!1}function o(a,b){var c=this;"string"!=typeof a&&(x.console.warn(a+" used as a key, but it is not a string."),a=String(a));var d=new Promise(function(b,d){c.ready().then(function(){var e=c._dbInfo,f=e.db.transaction(e.storeName,"readonly").objectStore(e.storeName),g=f.get(a);g.onsuccess=function(){var a=g.result;void 0===a&&(a=null),i(a)&&(a=h(a)),b(a)},g.onerror=function(){d(g.error)}})["catch"](d)});return w(d,b),d}function p(a,b){var c=this,d=new Promise(function(b,d){c.ready().then(function(){var e=c._dbInfo,f=e.db.transaction(e.storeName,"readonly").objectStore(e.storeName),g=f.openCursor(),j=1;g.onsuccess=function(){var c=g.result;if(c){var d=c.value;i(d)&&(d=h(d));var e=a(d,c.key,j++);void 0!==e?b(e):c["continue"]()}else b()},g.onerror=function(){d(g.error)}})["catch"](d)});return w(d,b),d}function q(a,b,c){var d=this;"string"!=typeof a&&(x.console.warn(a+" used as a key, but it is not a string."),a=String(a));var e=new Promise(function(c,e){var h;d.ready().then(function(){return h=d._dbInfo,f(h.db)}).then(function(a){return!a&&b instanceof Blob?g(b):b}).then(function(b){var d=h.db.transaction(h.storeName,"readwrite"),f=d.objectStore(h.storeName);null===b&&(b=void 0);var g=f.put(b,a);d.oncomplete=function(){void 0===b&&(b=null),c(b)},d.onabort=d.onerror=function(){var a=g.error?g.error:g.transaction.error;e(a)}})["catch"](e)});return w(e,c),e}function r(a,b){var c=this;"string"!=typeof a&&(x.console.warn(a+" used as a key, but it is not a string."),a=String(a));var d=new Promise(function(b,d){c.ready().then(function(){var e=c._dbInfo,f=e.db.transaction(e.storeName,"readwrite"),g=f.objectStore(e.storeName),h=g["delete"](a);f.oncomplete=function(){b()},f.onerror=function(){d(h.error)},f.onabort=function(){var a=h.error?h.error:h.transaction.error;d(a)}})["catch"](d)});return w(d,b),d}function s(a){var b=this,c=new Promise(function(a,c){b.ready().then(function(){var d=b._dbInfo,e=d.db.transaction(d.storeName,"readwrite"),f=e.objectStore(d.storeName),g=f.clear();e.oncomplete=function(){a()},e.onabort=e.onerror=function(){var a=g.error?g.error:g.transaction.error;c(a)}})["catch"](c)});return w(c,a),c}function t(a){var b=this,c=new Promise(function(a,c){b.ready().then(function(){var d=b._dbInfo,e=d.db.transaction(d.storeName,"readonly").objectStore(d.storeName),f=e.count();f.onsuccess=function(){a(f.result)},f.onerror=function(){c(f.error)}})["catch"](c)});return w(c,a),c}function u(a,b){var c=this,d=new Promise(function(b,d){return 0>a?void b(null):void c.ready().then(function(){var e=c._dbInfo,f=e.db.transaction(e.storeName,"readonly").objectStore(e.storeName),g=!1,h=f.openCursor();h.onsuccess=function(){var c=h.result;return c?void(0===a?b(c.key):g?b(c.key):(g=!0,c.advance(a))):void b(null)},h.onerror=function(){d(h.error)}})["catch"](d)});return w(d,b),d}function v(a){var b=this,c=new Promise(function(a,c){b.ready().then(function(){var d=b._dbInfo,e=d.db.transaction(d.storeName,"readonly").objectStore(d.storeName),f=e.openCursor(),g=[];f.onsuccess=function(){var b=f.result;return b?(g.push(b.key),void b["continue"]()):void a(g)},f.onerror=function(){c(f.error)}})["catch"](c)});return w(c,a),c}function w(a,b){b&&a.then(function(a){b(null,a)},function(a){b(a)})}var x=this,y=y||this.indexedDB||this.webkitIndexedDB||this.mozIndexedDB||this.OIndexedDB||this.msIndexedDB;if(y){var z,A,B="local-forage-detect-blob-support",C={_driver:"asyncStorage",_initStorage:j,iterate:p,getItem:o,setItem:q,removeItem:r,clear:s,length:t,key:u,keys:v};b["default"]=C}}.call("undefined"!=typeof window?window:self),a.exports=b["default"]; },function(a,b,c){"use strict";b.__esModule=!0,function(){function a(a){var b=this,d={};if(a)for(var e in a)d[e]=a[e];return d.keyPrefix=d.name+"/",d.storeName!==b._defaultConfig.storeName&&(d.keyPrefix+=d.storeName+"/"),b._dbInfo=d,new Promise(function(a,b){a(c(3))}).then(function(a){return d.serializer=a,Promise.resolve()})}function d(a){var b=this,c=b.ready().then(function(){for(var a=b._dbInfo.keyPrefix,c=n.length-1;c>=0;c--){var d=n.key(c);0===d.indexOf(a)&&n.removeItem(d)}});return l(c,a),c}function e(a,b){var c=this;"string"!=typeof a&&(m.console.warn(a+" used as a key, but it is not a string."),a=String(a));var d=c.ready().then(function(){var b=c._dbInfo,d=n.getItem(b.keyPrefix+a);return d&&(d=b.serializer.deserialize(d)),d});return l(d,b),d}function f(a,b){var c=this,d=c.ready().then(function(){for(var b=c._dbInfo,d=b.keyPrefix,e=d.length,f=n.length,g=1,h=0;f>h;h++){var i=n.key(h);if(0===i.indexOf(d)){var j=n.getItem(i);if(j&&(j=b.serializer.deserialize(j)),j=a(j,i.substring(e),g++),void 0!==j)return j}}});return l(d,b),d}function g(a,b){var c=this,d=c.ready().then(function(){var b,d=c._dbInfo;try{b=n.key(a)}catch(e){b=null}return b&&(b=b.substring(d.keyPrefix.length)),b});return l(d,b),d}function h(a){var b=this,c=b.ready().then(function(){for(var a=b._dbInfo,c=n.length,d=[],e=0;c>e;e++)0===n.key(e).indexOf(a.keyPrefix)&&d.push(n.key(e).substring(a.keyPrefix.length));return d});return l(c,a),c}function i(a){var b=this,c=b.keys().then(function(a){return a.length});return l(c,a),c}function j(a,b){var c=this;"string"!=typeof a&&(m.console.warn(a+" used as a key, but it is not a string."),a=String(a));var d=c.ready().then(function(){var b=c._dbInfo;n.removeItem(b.keyPrefix+a)});return l(d,b),d}function k(a,b,c){var d=this;"string"!=typeof a&&(m.console.warn(a+" used as a key, but it is not a string."),a=String(a));var e=d.ready().then(function(){void 0===b&&(b=null);var c=b;return new Promise(function(e,f){var g=d._dbInfo;g.serializer.serialize(b,function(b,d){if(d)f(d);else try{n.setItem(g.keyPrefix+a,b),e(c)}catch(h){("QuotaExceededError"===h.name||"NS_ERROR_DOM_QUOTA_REACHED"===h.name)&&f(h),f(h)}})})});return l(e,c),e}function l(a,b){b&&a.then(function(a){b(null,a)},function(a){b(a)})}var m=this,n=null;try{if(!(this.localStorage&&"setItem"in this.localStorage))return;n=this.localStorage}catch(o){return}var p={_driver:"localStorageWrapper",_initStorage:a,iterate:f,getItem:e,setItem:k,removeItem:j,clear:d,length:i,key:g,keys:h};b["default"]=p}.call("undefined"!=typeof window?window:self),a.exports=b["default"]},function(a,b){"use strict";b.__esModule=!0,function(){function a(a,b){a=a||[],b=b||{};try{return new Blob(a,b)}catch(c){if("TypeError"!==c.name)throw c;for(var d=x.BlobBuilder||x.MSBlobBuilder||x.MozBlobBuilder||x.WebKitBlobBuilder,e=new d,f=0;f<a.length;f+=1)e.append(a[f]);return e.getBlob(b.type)}}function c(a,b){var c="";if(a&&(c=a.toString()),a&&("[object ArrayBuffer]"===a.toString()||a.buffer&&"[object ArrayBuffer]"===a.buffer.toString())){var d,e=j;a instanceof ArrayBuffer?(d=a,e+=l):(d=a.buffer,"[object Int8Array]"===c?e+=n:"[object Uint8Array]"===c?e+=o:"[object Uint8ClampedArray]"===c?e+=p:"[object Int16Array]"===c?e+=q:"[object Uint16Array]"===c?e+=s:"[object Int32Array]"===c?e+=r:"[object Uint32Array]"===c?e+=t:"[object Float32Array]"===c?e+=u:"[object Float64Array]"===c?e+=v:b(new Error("Failed to get type for BinaryArray"))),b(e+f(d))}else if("[object Blob]"===c){var g=new FileReader;g.onload=function(){var c=h+a.type+"~"+f(this.result);b(j+m+c)},g.readAsArrayBuffer(a)}else try{b(JSON.stringify(a))}catch(i){console.error("Couldn't convert value into a JSON string: ",a),b(null,i)}}function d(b){if(b.substring(0,k)!==j)return JSON.parse(b);var c,d=b.substring(w),f=b.substring(k,w);if(f===m&&i.test(d)){var g=d.match(i);c=g[1],d=d.substring(g[0].length)}var h=e(d);switch(f){case l:return h;case m:return a([h],{type:c});case n:return new Int8Array(h);case o:return new Uint8Array(h);case p:return new Uint8ClampedArray(h);case q:return new Int16Array(h);case s:return new Uint16Array(h);case r:return new Int32Array(h);case t:return new Uint32Array(h);case u:return new Float32Array(h);case v:return new Float64Array(h);default:throw new Error("Unkown type: "+f)}}function e(a){var b,c,d,e,f,h=.75*a.length,i=a.length,j=0;"="===a[a.length-1]&&(h--,"="===a[a.length-2]&&h--);var k=new ArrayBuffer(h),l=new Uint8Array(k);for(b=0;i>b;b+=4)c=g.indexOf(a[b]),d=g.indexOf(a[b+1]),e=g.indexOf(a[b+2]),f=g.indexOf(a[b+3]),l[j++]=c<<2|d>>4,l[j++]=(15&d)<<4|e>>2,l[j++]=(3&e)<<6|63&f;return k}function f(a){var b,c=new Uint8Array(a),d="";for(b=0;b<c.length;b+=3)d+=g[c[b]>>2],d+=g[(3&c[b])<<4|c[b+1]>>4],d+=g[(15&c[b+1])<<2|c[b+2]>>6],d+=g[63&c[b+2]];return c.length%3===2?d=d.substring(0,d.length-1)+"=":c.length%3===1&&(d=d.substring(0,d.length-2)+"=="),d}var g="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",h="~~local_forage_type~",i=/^~~local_forage_type~([^~]+)~/,j="__lfsc__:",k=j.length,l="arbf",m="blob",n="si08",o="ui08",p="uic8",q="si16",r="si32",s="ur16",t="ui32",u="fl32",v="fl64",w=k+l.length,x=this,y={serialize:c,deserialize:d,stringToBuffer:e,bufferToString:f};b["default"]=y}.call("undefined"!=typeof window?window:self),a.exports=b["default"]},function(a,b,c){"use strict";b.__esModule=!0,function(){function a(a){var b=this,d={db:null};if(a)for(var e in a)d[e]="string"!=typeof a[e]?a[e].toString():a[e];var f=new Promise(function(c,e){try{d.db=n(d.name,String(d.version),d.description,d.size)}catch(f){return b.setDriver(b.LOCALSTORAGE).then(function(){return b._initStorage(a)}).then(c)["catch"](e)}d.db.transaction(function(a){a.executeSql("CREATE TABLE IF NOT EXISTS "+d.storeName+" (id INTEGER PRIMARY KEY, key unique, value)",[],function(){b._dbInfo=d,c()},function(a,b){e(b)})})});return new Promise(function(a,b){a(c(3))}).then(function(a){return d.serializer=a,f})}function d(a,b){var c=this;"string"!=typeof a&&(m.console.warn(a+" used as a key, but it is not a string."),a=String(a));var d=new Promise(function(b,d){c.ready().then(function(){var e=c._dbInfo;e.db.transaction(function(c){c.executeSql("SELECT * FROM "+e.storeName+" WHERE key = ? LIMIT 1",[a],function(a,c){var d=c.rows.length?c.rows.item(0).value:null;d&&(d=e.serializer.deserialize(d)),b(d)},function(a,b){d(b)})})})["catch"](d)});return l(d,b),d}function e(a,b){var c=this,d=new Promise(function(b,d){c.ready().then(function(){var e=c._dbInfo;e.db.transaction(function(c){c.executeSql("SELECT * FROM "+e.storeName,[],function(c,d){for(var f=d.rows,g=f.length,h=0;g>h;h++){var i=f.item(h),j=i.value;if(j&&(j=e.serializer.deserialize(j)),j=a(j,i.key,h+1),void 0!==j)return void b(j)}b()},function(a,b){d(b)})})})["catch"](d)});return l(d,b),d}function f(a,b,c){var d=this;"string"!=typeof a&&(m.console.warn(a+" used as a key, but it is not a string."),a=String(a));var e=new Promise(function(c,e){d.ready().then(function(){void 0===b&&(b=null);var f=b,g=d._dbInfo;g.serializer.serialize(b,function(b,d){d?e(d):g.db.transaction(function(d){d.executeSql("INSERT OR REPLACE INTO "+g.storeName+" (key, value) VALUES (?, ?)",[a,b],function(){c(f)},function(a,b){e(b)})},function(a){a.code===a.QUOTA_ERR&&e(a)})})})["catch"](e)});return l(e,c),e}function g(a,b){var c=this;"string"!=typeof a&&(m.console.warn(a+" used as a key, but it is not a string."),a=String(a));var d=new Promise(function(b,d){c.ready().then(function(){var e=c._dbInfo;e.db.transaction(function(c){c.executeSql("DELETE FROM "+e.storeName+" WHERE key = ?",[a],function(){b()},function(a,b){d(b)})})})["catch"](d)});return l(d,b),d}function h(a){var b=this,c=new Promise(function(a,c){b.ready().then(function(){var d=b._dbInfo;d.db.transaction(function(b){b.executeSql("DELETE FROM "+d.storeName,[],function(){a()},function(a,b){c(b)})})})["catch"](c)});return l(c,a),c}function i(a){var b=this,c=new Promise(function(a,c){b.ready().then(function(){var d=b._dbInfo;d.db.transaction(function(b){b.executeSql("SELECT COUNT(key) as c FROM "+d.storeName,[],function(b,c){var d=c.rows.item(0).c;a(d)},function(a,b){c(b)})})})["catch"](c)});return l(c,a),c}function j(a,b){var c=this,d=new Promise(function(b,d){c.ready().then(function(){var e=c._dbInfo;e.db.transaction(function(c){c.executeSql("SELECT key FROM "+e.storeName+" WHERE id = ? LIMIT 1",[a+1],function(a,c){var d=c.rows.length?c.rows.item(0).key:null;b(d)},function(a,b){d(b)})})})["catch"](d)});return l(d,b),d}function k(a){var b=this,c=new Promise(function(a,c){b.ready().then(function(){var d=b._dbInfo;d.db.transaction(function(b){b.executeSql("SELECT key FROM "+d.storeName,[],function(b,c){for(var d=[],e=0;e<c.rows.length;e++)d.push(c.rows.item(e).key);a(d)},function(a,b){c(b)})})})["catch"](c)});return l(c,a),c}function l(a,b){b&&a.then(function(a){b(null,a)},function(a){b(a)})}var m=this,n=this.openDatabase;if(n){var o={_driver:"webSQLStorage",_initStorage:a,iterate:e,getItem:d,setItem:f,removeItem:g,clear:h,length:i,key:j,keys:k};b["default"]=o}}.call("undefined"!=typeof window?window:self),a.exports=b["default"]}])})}).call(this,a("_process"),"undefined"!=typeof global?global:"undefined"!=typeof self?self:"undefined"!=typeof window?window:{})},{_process:70}],72:[function(a,b,c){"use strict";var d=a("./lib/utils/common").assign,e=a("./lib/deflate"),f=a("./lib/inflate"),g=a("./lib/zlib/constants"),h={};d(h,e,f,g),b.exports=h},{"./lib/deflate":73,"./lib/inflate":74,"./lib/utils/common":75,"./lib/zlib/constants":78}],73:[function(a,b,c){"use strict";function d(a,b){var c=new u(b);if(c.push(a,!0),c.err)throw c.msg;return c.result}function e(a,b){return b=b||{},b.raw=!0,d(a,b)}function f(a,b){return b=b||{},b.gzip=!0,d(a,b)}var g=a("./zlib/deflate.js"),h=a("./utils/common"),i=a("./utils/strings"),j=a("./zlib/messages"),k=a("./zlib/zstream"),l=Object.prototype.toString,m=0,n=4,o=0,p=1,q=2,r=-1,s=0,t=8,u=function(a){this.options=h.assign({level:r,method:t,chunkSize:16384,windowBits:15,memLevel:8,strategy:s,to:""},a||{});var b=this.options;b.raw&&b.windowBits>0?b.windowBits=-b.windowBits:b.gzip&&b.windowBits>0&&b.windowBits<16&&(b.windowBits+=16),this.err=0,this.msg="",this.ended=!1,this.chunks=[],this.strm=new k,this.strm.avail_out=0;var c=g.deflateInit2(this.strm,b.level,b.method,b.windowBits,b.memLevel,b.strategy);if(c!==o)throw new Error(j[c]);b.header&&g.deflateSetHeader(this.strm,b.header)};u.prototype.push=function(a,b){var c,d,e=this.strm,f=this.options.chunkSize;if(this.ended)return!1;d=b===~~b?b:b===!0?n:m,"string"==typeof a?e.input=i.string2buf(a):"[object ArrayBuffer]"===l.call(a)?e.input=new Uint8Array(a):e.input=a,e.next_in=0,e.avail_in=e.input.length;do{if(0===e.avail_out&&(e.output=new h.Buf8(f),e.next_out=0,e.avail_out=f),c=g.deflate(e,d),c!==p&&c!==o)return this.onEnd(c),this.ended=!0,!1;(0===e.avail_out||0===e.avail_in&&(d===n||d===q))&&("string"===this.options.to?this.onData(i.buf2binstring(h.shrinkBuf(e.output,e.next_out))):this.onData(h.shrinkBuf(e.output,e.next_out)))}while((e.avail_in>0||0===e.avail_out)&&c!==p);return d===n?(c=g.deflateEnd(this.strm),this.onEnd(c),this.ended=!0,c===o):d===q?(this.onEnd(o),e.avail_out=0,!0):!0},u.prototype.onData=function(a){this.chunks.push(a)},u.prototype.onEnd=function(a){a===o&&("string"===this.options.to?this.result=this.chunks.join(""):this.result=h.flattenChunks(this.chunks)),this.chunks=[],this.err=a,this.msg=this.strm.msg},c.Deflate=u,c.deflate=d,c.deflateRaw=e,c.gzip=f},{"./utils/common":75,"./utils/strings":76,"./zlib/deflate.js":80,"./zlib/messages":85,"./zlib/zstream":87}],74:[function(a,b,c){"use strict";function d(a,b){var c=new n(b);if(c.push(a,!0),c.err)throw c.msg;return c.result}function e(a,b){return b=b||{},b.raw=!0,d(a,b)}var f=a("./zlib/inflate.js"),g=a("./utils/common"),h=a("./utils/strings"),i=a("./zlib/constants"),j=a("./zlib/messages"),k=a("./zlib/zstream"),l=a("./zlib/gzheader"),m=Object.prototype.toString,n=function(a){this.options=g.assign({chunkSize:16384,windowBits:0,to:""},a||{});var b=this.options;b.raw&&b.windowBits>=0&&b.windowBits<16&&(b.windowBits=-b.windowBits,0===b.windowBits&&(b.windowBits=-15)),!(b.windowBits>=0&&b.windowBits<16)||a&&a.windowBits||(b.windowBits+=32),b.windowBits>15&&b.windowBits<48&&0===(15&b.windowBits)&&(b.windowBits|=15),this.err=0,this.msg="",this.ended=!1,this.chunks=[],this.strm=new k,this.strm.avail_out=0;var c=f.inflateInit2(this.strm,b.windowBits);if(c!==i.Z_OK)throw new Error(j[c]);this.header=new l,f.inflateGetHeader(this.strm,this.header)};n.prototype.push=function(a,b){var c,d,e,j,k,l=this.strm,n=this.options.chunkSize,o=!1;if(this.ended)return!1;d=b===~~b?b:b===!0?i.Z_FINISH:i.Z_NO_FLUSH,"string"==typeof a?l.input=h.binstring2buf(a):"[object ArrayBuffer]"===m.call(a)?l.input=new Uint8Array(a):l.input=a,l.next_in=0,l.avail_in=l.input.length;do{if(0===l.avail_out&&(l.output=new g.Buf8(n),l.next_out=0,l.avail_out=n),c=f.inflate(l,i.Z_NO_FLUSH),c===i.Z_BUF_ERROR&&o===!0&&(c=i.Z_OK,o=!1),c!==i.Z_STREAM_END&&c!==i.Z_OK)return this.onEnd(c),this.ended=!0,!1;l.next_out&&(0===l.avail_out||c===i.Z_STREAM_END||0===l.avail_in&&(d===i.Z_FINISH||d===i.Z_SYNC_FLUSH))&&("string"===this.options.to?(e=h.utf8border(l.output,l.next_out),j=l.next_out-e,k=h.buf2string(l.output,e),l.next_out=j,l.avail_out=n-j,j&&g.arraySet(l.output,l.output,e,j,0),this.onData(k)):this.onData(g.shrinkBuf(l.output,l.next_out))),0===l.avail_in&&0===l.avail_out&&(o=!0)}while((l.avail_in>0||0===l.avail_out)&&c!==i.Z_STREAM_END);return c===i.Z_STREAM_END&&(d=i.Z_FINISH),d===i.Z_FINISH?(c=f.inflateEnd(this.strm),this.onEnd(c),this.ended=!0,c===i.Z_OK):d===i.Z_SYNC_FLUSH?(this.onEnd(i.Z_OK),l.avail_out=0,!0):!0},n.prototype.onData=function(a){this.chunks.push(a)},n.prototype.onEnd=function(a){a===i.Z_OK&&("string"===this.options.to?this.result=this.chunks.join(""):this.result=g.flattenChunks(this.chunks)),this.chunks=[],this.err=a,this.msg=this.strm.msg},c.Inflate=n,c.inflate=d,c.inflateRaw=e,c.ungzip=d},{"./utils/common":75,"./utils/strings":76,"./zlib/constants":78,"./zlib/gzheader":81,"./zlib/inflate.js":83,"./zlib/messages":85,"./zlib/zstream":87}],75:[function(a,b,c){"use strict";var d="undefined"!=typeof Uint8Array&&"undefined"!=typeof Uint16Array&&"undefined"!=typeof Int32Array;c.assign=function(a){for(var b=Array.prototype.slice.call(arguments,1);b.length;){var c=b.shift();if(c){if("object"!=typeof c)throw new TypeError(c+"must be non-object");for(var d in c)c.hasOwnProperty(d)&&(a[d]=c[d])}}return a},c.shrinkBuf=function(a,b){return a.length===b?a:a.subarray?a.subarray(0,b):(a.length=b,a)};var e={arraySet:function(a,b,c,d,e){if(b.subarray&&a.subarray)return void a.set(b.subarray(c,c+d),e);for(var f=0;d>f;f++)a[e+f]=b[c+f]},flattenChunks:function(a){var b,c,d,e,f,g;for(d=0,b=0,c=a.length;c>b;b++)d+=a[b].length;for(g=new Uint8Array(d),e=0,b=0,c=a.length;c>b;b++)f=a[b],g.set(f,e),e+=f.length;return g}},f={arraySet:function(a,b,c,d,e){for(var f=0;d>f;f++)a[e+f]=b[c+f]},flattenChunks:function(a){return[].concat.apply([],a)}};c.setTyped=function(a){a?(c.Buf8=Uint8Array,c.Buf16=Uint16Array,c.Buf32=Int32Array,c.assign(c,e)):(c.Buf8=Array,c.Buf16=Array,c.Buf32=Array,c.assign(c,f))},c.setTyped(d)},{}],76:[function(a,b,c){"use strict";function d(a,b){if(65537>b&&(a.subarray&&g||!a.subarray&&f))return String.fromCharCode.apply(null,e.shrinkBuf(a,b));for(var c="",d=0;b>d;d++)c+=String.fromCharCode(a[d]);return c}var e=a("./common"),f=!0,g=!0;try{String.fromCharCode.apply(null,[0])}catch(h){f=!1}try{String.fromCharCode.apply(null,new Uint8Array(1))}catch(h){g=!1}for(var i=new e.Buf8(256),j=0;256>j;j++)i[j]=j>=252?6:j>=248?5:j>=240?4:j>=224?3:j>=192?2:1;i[254]=i[254]=1,c.string2buf=function(a){var b,c,d,f,g,h=a.length,i=0;for(f=0;h>f;f++)c=a.charCodeAt(f),55296===(64512&c)&&h>f+1&&(d=a.charCodeAt(f+1),56320===(64512&d)&&(c=65536+(c-55296<<10)+(d-56320),f++)),i+=128>c?1:2048>c?2:65536>c?3:4;for(b=new e.Buf8(i),g=0,f=0;i>g;f++)c=a.charCodeAt(f),55296===(64512&c)&&h>f+1&&(d=a.charCodeAt(f+1),56320===(64512&d)&&(c=65536+(c-55296<<10)+(d-56320),f++)),128>c?b[g++]=c:2048>c?(b[g++]=192|c>>>6,b[g++]=128|63&c):65536>c?(b[g++]=224|c>>>12,b[g++]=128|c>>>6&63,b[g++]=128|63&c):(b[g++]=240|c>>>18,b[g++]=128|c>>>12&63,b[g++]=128|c>>>6&63,b[g++]=128|63&c);return b},c.buf2binstring=function(a){return d(a,a.length)},c.binstring2buf=function(a){for(var b=new e.Buf8(a.length),c=0,d=b.length;d>c;c++)b[c]=a.charCodeAt(c);return b},c.buf2string=function(a,b){var c,e,f,g,h=b||a.length,j=new Array(2*h);for(e=0,c=0;h>c;)if(f=a[c++],128>f)j[e++]=f;else if(g=i[f],g>4)j[e++]=65533,c+=g-1;else{for(f&=2===g?31:3===g?15:7;g>1&&h>c;)f=f<<6|63&a[c++],g--;g>1?j[e++]=65533:65536>f?j[e++]=f:(f-=65536,j[e++]=55296|f>>10&1023,j[e++]=56320|1023&f)}return d(j,e)},c.utf8border=function(a,b){var c;for(b=b||a.length,b>a.length&&(b=a.length),c=b-1;c>=0&&128===(192&a[c]);)c--;return 0>c?b:0===c?b:c+i[a[c]]>b?c:b}},{"./common":75}],77:[function(a,b,c){"use strict";function d(a,b,c,d){for(var e=65535&a|0,f=a>>>16&65535|0,g=0;0!==c;){g=c>2e3?2e3:c,c-=g;do e=e+b[d++]|0,f=f+e|0;while(--g);e%=65521,f%=65521}return e|f<<16|0}b.exports=d},{}],78:[function(a,b,c){b.exports={Z_NO_FLUSH:0,Z_PARTIAL_FLUSH:1,Z_SYNC_FLUSH:2,Z_FULL_FLUSH:3,Z_FINISH:4,Z_BLOCK:5,Z_TREES:6,Z_OK:0,Z_STREAM_END:1,Z_NEED_DICT:2,Z_ERRNO:-1,Z_STREAM_ERROR:-2,Z_DATA_ERROR:-3,Z_BUF_ERROR:-5,Z_NO_COMPRESSION:0,Z_BEST_SPEED:1,Z_BEST_COMPRESSION:9,Z_DEFAULT_COMPRESSION:-1,Z_FILTERED:1,Z_HUFFMAN_ONLY:2,Z_RLE:3,Z_FIXED:4,Z_DEFAULT_STRATEGY:0,Z_BINARY:0,Z_TEXT:1,Z_UNKNOWN:2,Z_DEFLATED:8}},{}],79:[function(a,b,c){"use strict";function d(){for(var a,b=[],c=0;256>c;c++){a=c;for(var d=0;8>d;d++)a=1&a?3988292384^a>>>1:a>>>1;b[c]=a}return b}function e(a,b,c,d){var e=f,g=d+c;a=-1^a;for(var h=d;g>h;h++)a=a>>>8^e[255&(a^b[h])];return-1^a}var f=d();b.exports=e},{}],80:[function(a,b,c){"use strict";function d(a,b){return a.msg=G[b],b}function e(a){return(a<<1)-(a>4?9:0)}function f(a){for(var b=a.length;--b>=0;)a[b]=0}function g(a){var b=a.state,c=b.pending;c>a.avail_out&&(c=a.avail_out),0!==c&&(C.arraySet(a.output,b.pending_buf,b.pending_out,c,a.next_out),a.next_out+=c,b.pending_out+=c,a.total_out+=c,a.avail_out-=c,b.pending-=c,0===b.pending&&(b.pending_out=0))}function h(a,b){D._tr_flush_block(a,a.block_start>=0?a.block_start:-1,a.strstart-a.block_start,b),a.block_start=a.strstart,g(a.strm)}function i(a,b){a.pending_buf[a.pending++]=b}function j(a,b){a.pending_buf[a.pending++]=b>>>8&255,a.pending_buf[a.pending++]=255&b}function k(a,b,c,d){var e=a.avail_in;return e>d&&(e=d),0===e?0:(a.avail_in-=e,C.arraySet(b,a.input,a.next_in,e,c),1===a.state.wrap?a.adler=E(a.adler,b,e,c):2===a.state.wrap&&(a.adler=F(a.adler,b,e,c)),a.next_in+=e,a.total_in+=e,e)}function l(a,b){var c,d,e=a.max_chain_length,f=a.strstart,g=a.prev_length,h=a.nice_match,i=a.strstart>a.w_size-ja?a.strstart-(a.w_size-ja):0,j=a.window,k=a.w_mask,l=a.prev,m=a.strstart+ia,n=j[f+g-1],o=j[f+g];a.prev_length>=a.good_match&&(e>>=2),h>a.lookahead&&(h=a.lookahead);do if(c=b,j[c+g]===o&&j[c+g-1]===n&&j[c]===j[f]&&j[++c]===j[f+1]){f+=2,c++;do;while(j[++f]===j[++c]&&j[++f]===j[++c]&&j[++f]===j[++c]&&j[++f]===j[++c]&&j[++f]===j[++c]&&j[++f]===j[++c]&&j[++f]===j[++c]&&j[++f]===j[++c]&&m>f);if(d=ia-(m-f),f=m-ia,d>g){if(a.match_start=b,g=d,d>=h)break;n=j[f+g-1],o=j[f+g]}}while((b=l[b&k])>i&&0!==--e);return g<=a.lookahead?g:a.lookahead}function m(a){var b,c,d,e,f,g=a.w_size;do{if(e=a.window_size-a.lookahead-a.strstart,a.strstart>=g+(g-ja)){C.arraySet(a.window,a.window,g,g,0),a.match_start-=g,a.strstart-=g,a.block_start-=g,c=a.hash_size,b=c;do d=a.head[--b],a.head[b]=d>=g?d-g:0;while(--c);c=g,b=c;do d=a.prev[--b],a.prev[b]=d>=g?d-g:0;while(--c);e+=g}if(0===a.strm.avail_in)break;if(c=k(a.strm,a.window,a.strstart+a.lookahead,e),a.lookahead+=c,a.lookahead+a.insert>=ha)for(f=a.strstart-a.insert,a.ins_h=a.window[f],a.ins_h=(a.ins_h<<a.hash_shift^a.window[f+1])&a.hash_mask;a.insert&&(a.ins_h=(a.ins_h<<a.hash_shift^a.window[f+ha-1])&a.hash_mask,a.prev[f&a.w_mask]=a.head[a.ins_h],a.head[a.ins_h]=f,f++,a.insert--,!(a.lookahead+a.insert<ha)););}while(a.lookahead<ja&&0!==a.strm.avail_in)}function n(a,b){var c=65535;for(c>a.pending_buf_size-5&&(c=a.pending_buf_size-5);;){if(a.lookahead<=1){if(m(a),0===a.lookahead&&b===H)return sa;if(0===a.lookahead)break}a.strstart+=a.lookahead,a.lookahead=0;var d=a.block_start+c;if((0===a.strstart||a.strstart>=d)&&(a.lookahead=a.strstart-d,a.strstart=d,h(a,!1),0===a.strm.avail_out))return sa;if(a.strstart-a.block_start>=a.w_size-ja&&(h(a,!1),0===a.strm.avail_out))return sa}return a.insert=0,b===K?(h(a,!0),0===a.strm.avail_out?ua:va):a.strstart>a.block_start&&(h(a,!1),0===a.strm.avail_out)?sa:sa}function o(a,b){for(var c,d;;){if(a.lookahead<ja){if(m(a),a.lookahead<ja&&b===H)return sa;if(0===a.lookahead)break}if(c=0,a.lookahead>=ha&&(a.ins_h=(a.ins_h<<a.hash_shift^a.window[a.strstart+ha-1])&a.hash_mask,c=a.prev[a.strstart&a.w_mask]=a.head[a.ins_h],a.head[a.ins_h]=a.strstart),0!==c&&a.strstart-c<=a.w_size-ja&&(a.match_length=l(a,c)),a.match_length>=ha)if(d=D._tr_tally(a,a.strstart-a.match_start,a.match_length-ha),a.lookahead-=a.match_length,a.match_length<=a.max_lazy_match&&a.lookahead>=ha){a.match_length--;do a.strstart++,a.ins_h=(a.ins_h<<a.hash_shift^a.window[a.strstart+ha-1])&a.hash_mask,c=a.prev[a.strstart&a.w_mask]=a.head[a.ins_h],a.head[a.ins_h]=a.strstart;while(0!==--a.match_length);a.strstart++}else a.strstart+=a.match_length,a.match_length=0,a.ins_h=a.window[a.strstart],a.ins_h=(a.ins_h<<a.hash_shift^a.window[a.strstart+1])&a.hash_mask;else d=D._tr_tally(a,0,a.window[a.strstart]),a.lookahead--,a.strstart++;if(d&&(h(a,!1),0===a.strm.avail_out))return sa}return a.insert=a.strstart<ha-1?a.strstart:ha-1,b===K?(h(a,!0),0===a.strm.avail_out?ua:va):a.last_lit&&(h(a,!1),0===a.strm.avail_out)?sa:ta}function p(a,b){for(var c,d,e;;){if(a.lookahead<ja){if(m(a),a.lookahead<ja&&b===H)return sa;if(0===a.lookahead)break}if(c=0,a.lookahead>=ha&&(a.ins_h=(a.ins_h<<a.hash_shift^a.window[a.strstart+ha-1])&a.hash_mask,c=a.prev[a.strstart&a.w_mask]=a.head[a.ins_h],a.head[a.ins_h]=a.strstart),a.prev_length=a.match_length,a.prev_match=a.match_start,a.match_length=ha-1,0!==c&&a.prev_length<a.max_lazy_match&&a.strstart-c<=a.w_size-ja&&(a.match_length=l(a,c),a.match_length<=5&&(a.strategy===S||a.match_length===ha&&a.strstart-a.match_start>4096)&&(a.match_length=ha-1)),a.prev_length>=ha&&a.match_length<=a.prev_length){e=a.strstart+a.lookahead-ha,d=D._tr_tally(a,a.strstart-1-a.prev_match,a.prev_length-ha),a.lookahead-=a.prev_length-1,a.prev_length-=2;do++a.strstart<=e&&(a.ins_h=(a.ins_h<<a.hash_shift^a.window[a.strstart+ha-1])&a.hash_mask,c=a.prev[a.strstart&a.w_mask]=a.head[a.ins_h],a.head[a.ins_h]=a.strstart);while(0!==--a.prev_length);if(a.match_available=0,a.match_length=ha-1,a.strstart++,d&&(h(a,!1),0===a.strm.avail_out))return sa}else if(a.match_available){if(d=D._tr_tally(a,0,a.window[a.strstart-1]),d&&h(a,!1),a.strstart++,a.lookahead--,0===a.strm.avail_out)return sa}else a.match_available=1,a.strstart++,a.lookahead--}return a.match_available&&(d=D._tr_tally(a,0,a.window[a.strstart-1]),a.match_available=0),a.insert=a.strstart<ha-1?a.strstart:ha-1,b===K?(h(a,!0),0===a.strm.avail_out?ua:va):a.last_lit&&(h(a,!1),0===a.strm.avail_out)?sa:ta}function q(a,b){for(var c,d,e,f,g=a.window;;){if(a.lookahead<=ia){if(m(a),a.lookahead<=ia&&b===H)return sa;if(0===a.lookahead)break}if(a.match_length=0,a.lookahead>=ha&&a.strstart>0&&(e=a.strstart-1,d=g[e],d===g[++e]&&d===g[++e]&&d===g[++e])){f=a.strstart+ia;do;while(d===g[++e]&&d===g[++e]&&d===g[++e]&&d===g[++e]&&d===g[++e]&&d===g[++e]&&d===g[++e]&&d===g[++e]&&f>e);a.match_length=ia-(f-e),a.match_length>a.lookahead&&(a.match_length=a.lookahead)}if(a.match_length>=ha?(c=D._tr_tally(a,1,a.match_length-ha),a.lookahead-=a.match_length,a.strstart+=a.match_length,a.match_length=0):(c=D._tr_tally(a,0,a.window[a.strstart]),a.lookahead--,a.strstart++),c&&(h(a,!1),0===a.strm.avail_out))return sa}return a.insert=0,b===K?(h(a,!0),0===a.strm.avail_out?ua:va):a.last_lit&&(h(a,!1),0===a.strm.avail_out)?sa:ta}function r(a,b){for(var c;;){if(0===a.lookahead&&(m(a),0===a.lookahead)){if(b===H)return sa;break}if(a.match_length=0,c=D._tr_tally(a,0,a.window[a.strstart]),a.lookahead--,a.strstart++,c&&(h(a,!1),0===a.strm.avail_out))return sa}return a.insert=0,b===K?(h(a,!0),0===a.strm.avail_out?ua:va):a.last_lit&&(h(a,!1),0===a.strm.avail_out)?sa:ta}function s(a){a.window_size=2*a.w_size,f(a.head),a.max_lazy_match=B[a.level].max_lazy,a.good_match=B[a.level].good_length,a.nice_match=B[a.level].nice_length,a.max_chain_length=B[a.level].max_chain,a.strstart=0,a.block_start=0,a.lookahead=0,a.insert=0,a.match_length=a.prev_length=ha-1,a.match_available=0,a.ins_h=0}function t(){this.strm=null,this.status=0,this.pending_buf=null,this.pending_buf_size=0,this.pending_out=0,this.pending=0,this.wrap=0,this.gzhead=null,this.gzindex=0,this.method=Y,this.last_flush=-1,this.w_size=0,this.w_bits=0,this.w_mask=0,this.window=null,this.window_size=0,this.prev=null,this.head=null,this.ins_h=0,this.hash_size=0,this.hash_bits=0,this.hash_mask=0,this.hash_shift=0,this.block_start=0,this.match_length=0,this.prev_match=0,this.match_available=0,this.strstart=0,this.match_start=0,this.lookahead=0,this.prev_length=0,this.max_chain_length=0,this.max_lazy_match=0,this.level=0,this.strategy=0,this.good_match=0,this.nice_match=0,this.dyn_ltree=new C.Buf16(2*fa),this.dyn_dtree=new C.Buf16(2*(2*da+1)),this.bl_tree=new C.Buf16(2*(2*ea+1)),f(this.dyn_ltree),f(this.dyn_dtree),f(this.bl_tree),this.l_desc=null,this.d_desc=null,this.bl_desc=null,this.bl_count=new C.Buf16(ga+1),this.heap=new C.Buf16(2*ca+1),f(this.heap),this.heap_len=0,this.heap_max=0,this.depth=new C.Buf16(2*ca+1),f(this.depth),this.l_buf=0,this.lit_bufsize=0,this.last_lit=0,this.d_buf=0,this.opt_len=0,this.static_len=0,this.matches=0,this.insert=0,this.bi_buf=0,this.bi_valid=0}function u(a){var b;return a&&a.state?(a.total_in=a.total_out=0,a.data_type=X,b=a.state,b.pending=0,b.pending_out=0,b.wrap<0&&(b.wrap=-b.wrap),b.status=b.wrap?la:qa,a.adler=2===b.wrap?0:1,b.last_flush=H,D._tr_init(b),M):d(a,O)}function v(a){var b=u(a);return b===M&&s(a.state),b}function w(a,b){return a&&a.state?2!==a.state.wrap?O:(a.state.gzhead=b,M):O}function x(a,b,c,e,f,g){if(!a)return O;var h=1;if(b===R&&(b=6),0>e?(h=0,e=-e):e>15&&(h=2,e-=16),1>f||f>Z||c!==Y||8>e||e>15||0>b||b>9||0>g||g>V)return d(a,O);8===e&&(e=9);var i=new t;return a.state=i,i.strm=a,i.wrap=h,i.gzhead=null,i.w_bits=e,i.w_size=1<<i.w_bits,i.w_mask=i.w_size-1,i.hash_bits=f+7,i.hash_size=1<<i.hash_bits,i.hash_mask=i.hash_size-1,i.hash_shift=~~((i.hash_bits+ha-1)/ha),i.window=new C.Buf8(2*i.w_size),i.head=new C.Buf16(i.hash_size),i.prev=new C.Buf16(i.w_size),i.lit_bufsize=1<<f+6,i.pending_buf_size=4*i.lit_bufsize,i.pending_buf=new C.Buf8(i.pending_buf_size),i.d_buf=i.lit_bufsize>>1,i.l_buf=3*i.lit_bufsize,i.level=b,i.strategy=g,i.method=c,v(a)}function y(a,b){return x(a,b,Y,$,_,W)}function z(a,b){var c,h,k,l;if(!a||!a.state||b>L||0>b)return a?d(a,O):O;if(h=a.state,!a.output||!a.input&&0!==a.avail_in||h.status===ra&&b!==K)return d(a,0===a.avail_out?Q:O);if(h.strm=a,c=h.last_flush,h.last_flush=b,h.status===la)if(2===h.wrap)a.adler=0,i(h,31),i(h,139),i(h,8),h.gzhead?(i(h,(h.gzhead.text?1:0)+(h.gzhead.hcrc?2:0)+(h.gzhead.extra?4:0)+(h.gzhead.name?8:0)+(h.gzhead.comment?16:0)),i(h,255&h.gzhead.time),i(h,h.gzhead.time>>8&255),i(h,h.gzhead.time>>16&255),i(h,h.gzhead.time>>24&255),i(h,9===h.level?2:h.strategy>=T||h.level<2?4:0),i(h,255&h.gzhead.os),h.gzhead.extra&&h.gzhead.extra.length&&(i(h,255&h.gzhead.extra.length),i(h,h.gzhead.extra.length>>8&255)),h.gzhead.hcrc&&(a.adler=F(a.adler,h.pending_buf,h.pending,0)),h.gzindex=0,h.status=ma):(i(h,0),i(h,0),i(h,0),i(h,0),i(h,0),i(h,9===h.level?2:h.strategy>=T||h.level<2?4:0),i(h,wa),h.status=qa);else{var m=Y+(h.w_bits-8<<4)<<8,n=-1;n=h.strategy>=T||h.level<2?0:h.level<6?1:6===h.level?2:3,m|=n<<6,0!==h.strstart&&(m|=ka),m+=31-m%31,h.status=qa,j(h,m),0!==h.strstart&&(j(h,a.adler>>>16),j(h,65535&a.adler)),a.adler=1}if(h.status===ma)if(h.gzhead.extra){for(k=h.pending;h.gzindex<(65535&h.gzhead.extra.length)&&(h.pending!==h.pending_buf_size||(h.gzhead.hcrc&&h.pending>k&&(a.adler=F(a.adler,h.pending_buf,h.pending-k,k)),g(a),k=h.pending,h.pending!==h.pending_buf_size));)i(h,255&h.gzhead.extra[h.gzindex]),h.gzindex++;h.gzhead.hcrc&&h.pending>k&&(a.adler=F(a.adler,h.pending_buf,h.pending-k,k)),h.gzindex===h.gzhead.extra.length&&(h.gzindex=0,h.status=na)}else h.status=na;if(h.status===na)if(h.gzhead.name){k=h.pending;do{if(h.pending===h.pending_buf_size&&(h.gzhead.hcrc&&h.pending>k&&(a.adler=F(a.adler,h.pending_buf,h.pending-k,k)),g(a),k=h.pending,h.pending===h.pending_buf_size)){l=1;break}l=h.gzindex<h.gzhead.name.length?255&h.gzhead.name.charCodeAt(h.gzindex++):0,i(h,l)}while(0!==l);h.gzhead.hcrc&&h.pending>k&&(a.adler=F(a.adler,h.pending_buf,h.pending-k,k)),0===l&&(h.gzindex=0,h.status=oa)}else h.status=oa;if(h.status===oa)if(h.gzhead.comment){k=h.pending;do{if(h.pending===h.pending_buf_size&&(h.gzhead.hcrc&&h.pending>k&&(a.adler=F(a.adler,h.pending_buf,h.pending-k,k)),g(a),k=h.pending,h.pending===h.pending_buf_size)){l=1;break}l=h.gzindex<h.gzhead.comment.length?255&h.gzhead.comment.charCodeAt(h.gzindex++):0,i(h,l)}while(0!==l);h.gzhead.hcrc&&h.pending>k&&(a.adler=F(a.adler,h.pending_buf,h.pending-k,k)),0===l&&(h.status=pa)}else h.status=pa;if(h.status===pa&&(h.gzhead.hcrc?(h.pending+2>h.pending_buf_size&&g(a),h.pending+2<=h.pending_buf_size&&(i(h,255&a.adler),i(h,a.adler>>8&255),a.adler=0,h.status=qa)):h.status=qa),0!==h.pending){if(g(a),0===a.avail_out)return h.last_flush=-1,M}else if(0===a.avail_in&&e(b)<=e(c)&&b!==K)return d(a,Q);if(h.status===ra&&0!==a.avail_in)return d(a,Q);if(0!==a.avail_in||0!==h.lookahead||b!==H&&h.status!==ra){var o=h.strategy===T?r(h,b):h.strategy===U?q(h,b):B[h.level].func(h,b);if((o===ua||o===va)&&(h.status=ra),o===sa||o===ua)return 0===a.avail_out&&(h.last_flush=-1),M;if(o===ta&&(b===I?D._tr_align(h):b!==L&&(D._tr_stored_block(h,0,0,!1),b===J&&(f(h.head),0===h.lookahead&&(h.strstart=0,h.block_start=0,h.insert=0))),g(a),0===a.avail_out))return h.last_flush=-1,M}return b!==K?M:h.wrap<=0?N:(2===h.wrap?(i(h,255&a.adler),i(h,a.adler>>8&255),i(h,a.adler>>16&255),i(h,a.adler>>24&255),i(h,255&a.total_in),i(h,a.total_in>>8&255),i(h,a.total_in>>16&255),i(h,a.total_in>>24&255)):(j(h,a.adler>>>16),j(h,65535&a.adler)),g(a),h.wrap>0&&(h.wrap=-h.wrap),0!==h.pending?M:N)}function A(a){var b;return a&&a.state?(b=a.state.status,b!==la&&b!==ma&&b!==na&&b!==oa&&b!==pa&&b!==qa&&b!==ra?d(a,O):(a.state=null,b===qa?d(a,P):M)):O}var B,C=a("../utils/common"),D=a("./trees"),E=a("./adler32"),F=a("./crc32"),G=a("./messages"),H=0,I=1,J=3,K=4,L=5,M=0,N=1,O=-2,P=-3,Q=-5,R=-1,S=1,T=2,U=3,V=4,W=0,X=2,Y=8,Z=9,$=15,_=8,aa=29,ba=256,ca=ba+1+aa,da=30,ea=19,fa=2*ca+1,ga=15,ha=3,ia=258,ja=ia+ha+1,ka=32,la=42,ma=69,na=73,oa=91,pa=103,qa=113,ra=666,sa=1,ta=2,ua=3,va=4,wa=3,xa=function(a,b,c,d,e){this.good_length=a,this.max_lazy=b,this.nice_length=c,this.max_chain=d,this.func=e};B=[new xa(0,0,0,0,n),new xa(4,4,8,4,o),new xa(4,5,16,8,o),new xa(4,6,32,32,o),new xa(4,4,16,16,p),new xa(8,16,32,32,p),new xa(8,16,128,128,p),new xa(8,32,128,256,p),new xa(32,128,258,1024,p),new xa(32,258,258,4096,p)],c.deflateInit=y,c.deflateInit2=x,c.deflateReset=v,c.deflateResetKeep=u,c.deflateSetHeader=w,c.deflate=z,c.deflateEnd=A,c.deflateInfo="pako deflate (from Nodeca project)"},{"../utils/common":75,"./adler32":77,"./crc32":79,"./messages":85,"./trees":86}],81:[function(a,b,c){"use strict";function d(){this.text=0,this.time=0,this.xflags=0,this.os=0,this.extra=null,this.extra_len=0,this.name="",this.comment="",this.hcrc=0,this.done=!1}b.exports=d},{}],82:[function(a,b,c){"use strict";var d=30,e=12;b.exports=function(a,b){var c,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u,v,w,x,y,z,A,B,C;c=a.state,f=a.next_in,B=a.input,g=f+(a.avail_in-5),h=a.next_out,C=a.output,i=h-(b-a.avail_out),j=h+(a.avail_out-257),k=c.dmax,l=c.wsize,m=c.whave,n=c.wnext,o=c.window,p=c.hold,q=c.bits,r=c.lencode,s=c.distcode,t=(1<<c.lenbits)-1,u=(1<<c.distbits)-1; a:do{15>q&&(p+=B[f++]<<q,q+=8,p+=B[f++]<<q,q+=8),v=r[p&t];b:for(;;){if(w=v>>>24,p>>>=w,q-=w,w=v>>>16&255,0===w)C[h++]=65535&v;else{if(!(16&w)){if(0===(64&w)){v=r[(65535&v)+(p&(1<<w)-1)];continue b}if(32&w){c.mode=e;break a}a.msg="invalid literal/length code",c.mode=d;break a}x=65535&v,w&=15,w&&(w>q&&(p+=B[f++]<<q,q+=8),x+=p&(1<<w)-1,p>>>=w,q-=w),15>q&&(p+=B[f++]<<q,q+=8,p+=B[f++]<<q,q+=8),v=s[p&u];c:for(;;){if(w=v>>>24,p>>>=w,q-=w,w=v>>>16&255,!(16&w)){if(0===(64&w)){v=s[(65535&v)+(p&(1<<w)-1)];continue c}a.msg="invalid distance code",c.mode=d;break a}if(y=65535&v,w&=15,w>q&&(p+=B[f++]<<q,q+=8,w>q&&(p+=B[f++]<<q,q+=8)),y+=p&(1<<w)-1,y>k){a.msg="invalid distance too far back",c.mode=d;break a}if(p>>>=w,q-=w,w=h-i,y>w){if(w=y-w,w>m&&c.sane){a.msg="invalid distance too far back",c.mode=d;break a}if(z=0,A=o,0===n){if(z+=l-w,x>w){x-=w;do C[h++]=o[z++];while(--w);z=h-y,A=C}}else if(w>n){if(z+=l+n-w,w-=n,x>w){x-=w;do C[h++]=o[z++];while(--w);if(z=0,x>n){w=n,x-=w;do C[h++]=o[z++];while(--w);z=h-y,A=C}}}else if(z+=n-w,x>w){x-=w;do C[h++]=o[z++];while(--w);z=h-y,A=C}for(;x>2;)C[h++]=A[z++],C[h++]=A[z++],C[h++]=A[z++],x-=3;x&&(C[h++]=A[z++],x>1&&(C[h++]=A[z++]))}else{z=h-y;do C[h++]=C[z++],C[h++]=C[z++],C[h++]=C[z++],x-=3;while(x>2);x&&(C[h++]=C[z++],x>1&&(C[h++]=C[z++]))}break}}break}}while(g>f&&j>h);x=q>>3,f-=x,q-=x<<3,p&=(1<<q)-1,a.next_in=f,a.next_out=h,a.avail_in=g>f?5+(g-f):5-(f-g),a.avail_out=j>h?257+(j-h):257-(h-j),c.hold=p,c.bits=q}},{}],83:[function(a,b,c){"use strict";function d(a){return(a>>>24&255)+(a>>>8&65280)+((65280&a)<<8)+((255&a)<<24)}function e(){this.mode=0,this.last=!1,this.wrap=0,this.havedict=!1,this.flags=0,this.dmax=0,this.check=0,this.total=0,this.head=null,this.wbits=0,this.wsize=0,this.whave=0,this.wnext=0,this.window=null,this.hold=0,this.bits=0,this.length=0,this.offset=0,this.extra=0,this.lencode=null,this.distcode=null,this.lenbits=0,this.distbits=0,this.ncode=0,this.nlen=0,this.ndist=0,this.have=0,this.next=null,this.lens=new r.Buf16(320),this.work=new r.Buf16(288),this.lendyn=null,this.distdyn=null,this.sane=0,this.back=0,this.was=0}function f(a){var b;return a&&a.state?(b=a.state,a.total_in=a.total_out=b.total=0,a.msg="",b.wrap&&(a.adler=1&b.wrap),b.mode=K,b.last=0,b.havedict=0,b.dmax=32768,b.head=null,b.hold=0,b.bits=0,b.lencode=b.lendyn=new r.Buf32(oa),b.distcode=b.distdyn=new r.Buf32(pa),b.sane=1,b.back=-1,C):F}function g(a){var b;return a&&a.state?(b=a.state,b.wsize=0,b.whave=0,b.wnext=0,f(a)):F}function h(a,b){var c,d;return a&&a.state?(d=a.state,0>b?(c=0,b=-b):(c=(b>>4)+1,48>b&&(b&=15)),b&&(8>b||b>15)?F:(null!==d.window&&d.wbits!==b&&(d.window=null),d.wrap=c,d.wbits=b,g(a))):F}function i(a,b){var c,d;return a?(d=new e,a.state=d,d.window=null,c=h(a,b),c!==C&&(a.state=null),c):F}function j(a){return i(a,ra)}function k(a){if(sa){var b;for(p=new r.Buf32(512),q=new r.Buf32(32),b=0;144>b;)a.lens[b++]=8;for(;256>b;)a.lens[b++]=9;for(;280>b;)a.lens[b++]=7;for(;288>b;)a.lens[b++]=8;for(v(x,a.lens,0,288,p,0,a.work,{bits:9}),b=0;32>b;)a.lens[b++]=5;v(y,a.lens,0,32,q,0,a.work,{bits:5}),sa=!1}a.lencode=p,a.lenbits=9,a.distcode=q,a.distbits=5}function l(a,b,c,d){var e,f=a.state;return null===f.window&&(f.wsize=1<<f.wbits,f.wnext=0,f.whave=0,f.window=new r.Buf8(f.wsize)),d>=f.wsize?(r.arraySet(f.window,b,c-f.wsize,f.wsize,0),f.wnext=0,f.whave=f.wsize):(e=f.wsize-f.wnext,e>d&&(e=d),r.arraySet(f.window,b,c-d,e,f.wnext),d-=e,d?(r.arraySet(f.window,b,c-d,d,0),f.wnext=d,f.whave=f.wsize):(f.wnext+=e,f.wnext===f.wsize&&(f.wnext=0),f.whave<f.wsize&&(f.whave+=e))),0}function m(a,b){var c,e,f,g,h,i,j,m,n,o,p,q,oa,pa,qa,ra,sa,ta,ua,va,wa,xa,ya,za,Aa=0,Ba=new r.Buf8(4),Ca=[16,17,18,0,8,7,9,6,10,5,11,4,12,3,13,2,14,1,15];if(!a||!a.state||!a.output||!a.input&&0!==a.avail_in)return F;c=a.state,c.mode===V&&(c.mode=W),h=a.next_out,f=a.output,j=a.avail_out,g=a.next_in,e=a.input,i=a.avail_in,m=c.hold,n=c.bits,o=i,p=j,xa=C;a:for(;;)switch(c.mode){case K:if(0===c.wrap){c.mode=W;break}for(;16>n;){if(0===i)break a;i--,m+=e[g++]<<n,n+=8}if(2&c.wrap&&35615===m){c.check=0,Ba[0]=255&m,Ba[1]=m>>>8&255,c.check=t(c.check,Ba,2,0),m=0,n=0,c.mode=L;break}if(c.flags=0,c.head&&(c.head.done=!1),!(1&c.wrap)||(((255&m)<<8)+(m>>8))%31){a.msg="incorrect header check",c.mode=la;break}if((15&m)!==J){a.msg="unknown compression method",c.mode=la;break}if(m>>>=4,n-=4,wa=(15&m)+8,0===c.wbits)c.wbits=wa;else if(wa>c.wbits){a.msg="invalid window size",c.mode=la;break}c.dmax=1<<wa,a.adler=c.check=1,c.mode=512&m?T:V,m=0,n=0;break;case L:for(;16>n;){if(0===i)break a;i--,m+=e[g++]<<n,n+=8}if(c.flags=m,(255&c.flags)!==J){a.msg="unknown compression method",c.mode=la;break}if(57344&c.flags){a.msg="unknown header flags set",c.mode=la;break}c.head&&(c.head.text=m>>8&1),512&c.flags&&(Ba[0]=255&m,Ba[1]=m>>>8&255,c.check=t(c.check,Ba,2,0)),m=0,n=0,c.mode=M;case M:for(;32>n;){if(0===i)break a;i--,m+=e[g++]<<n,n+=8}c.head&&(c.head.time=m),512&c.flags&&(Ba[0]=255&m,Ba[1]=m>>>8&255,Ba[2]=m>>>16&255,Ba[3]=m>>>24&255,c.check=t(c.check,Ba,4,0)),m=0,n=0,c.mode=N;case N:for(;16>n;){if(0===i)break a;i--,m+=e[g++]<<n,n+=8}c.head&&(c.head.xflags=255&m,c.head.os=m>>8),512&c.flags&&(Ba[0]=255&m,Ba[1]=m>>>8&255,c.check=t(c.check,Ba,2,0)),m=0,n=0,c.mode=O;case O:if(1024&c.flags){for(;16>n;){if(0===i)break a;i--,m+=e[g++]<<n,n+=8}c.length=m,c.head&&(c.head.extra_len=m),512&c.flags&&(Ba[0]=255&m,Ba[1]=m>>>8&255,c.check=t(c.check,Ba,2,0)),m=0,n=0}else c.head&&(c.head.extra=null);c.mode=P;case P:if(1024&c.flags&&(q=c.length,q>i&&(q=i),q&&(c.head&&(wa=c.head.extra_len-c.length,c.head.extra||(c.head.extra=new Array(c.head.extra_len)),r.arraySet(c.head.extra,e,g,q,wa)),512&c.flags&&(c.check=t(c.check,e,q,g)),i-=q,g+=q,c.length-=q),c.length))break a;c.length=0,c.mode=Q;case Q:if(2048&c.flags){if(0===i)break a;q=0;do wa=e[g+q++],c.head&&wa&&c.length<65536&&(c.head.name+=String.fromCharCode(wa));while(wa&&i>q);if(512&c.flags&&(c.check=t(c.check,e,q,g)),i-=q,g+=q,wa)break a}else c.head&&(c.head.name=null);c.length=0,c.mode=R;case R:if(4096&c.flags){if(0===i)break a;q=0;do wa=e[g+q++],c.head&&wa&&c.length<65536&&(c.head.comment+=String.fromCharCode(wa));while(wa&&i>q);if(512&c.flags&&(c.check=t(c.check,e,q,g)),i-=q,g+=q,wa)break a}else c.head&&(c.head.comment=null);c.mode=S;case S:if(512&c.flags){for(;16>n;){if(0===i)break a;i--,m+=e[g++]<<n,n+=8}if(m!==(65535&c.check)){a.msg="header crc mismatch",c.mode=la;break}m=0,n=0}c.head&&(c.head.hcrc=c.flags>>9&1,c.head.done=!0),a.adler=c.check=0,c.mode=V;break;case T:for(;32>n;){if(0===i)break a;i--,m+=e[g++]<<n,n+=8}a.adler=c.check=d(m),m=0,n=0,c.mode=U;case U:if(0===c.havedict)return a.next_out=h,a.avail_out=j,a.next_in=g,a.avail_in=i,c.hold=m,c.bits=n,E;a.adler=c.check=1,c.mode=V;case V:if(b===A||b===B)break a;case W:if(c.last){m>>>=7&n,n-=7&n,c.mode=ia;break}for(;3>n;){if(0===i)break a;i--,m+=e[g++]<<n,n+=8}switch(c.last=1&m,m>>>=1,n-=1,3&m){case 0:c.mode=X;break;case 1:if(k(c),c.mode=ba,b===B){m>>>=2,n-=2;break a}break;case 2:c.mode=$;break;case 3:a.msg="invalid block type",c.mode=la}m>>>=2,n-=2;break;case X:for(m>>>=7&n,n-=7&n;32>n;){if(0===i)break a;i--,m+=e[g++]<<n,n+=8}if((65535&m)!==(m>>>16^65535)){a.msg="invalid stored block lengths",c.mode=la;break}if(c.length=65535&m,m=0,n=0,c.mode=Y,b===B)break a;case Y:c.mode=Z;case Z:if(q=c.length){if(q>i&&(q=i),q>j&&(q=j),0===q)break a;r.arraySet(f,e,g,q,h),i-=q,g+=q,j-=q,h+=q,c.length-=q;break}c.mode=V;break;case $:for(;14>n;){if(0===i)break a;i--,m+=e[g++]<<n,n+=8}if(c.nlen=(31&m)+257,m>>>=5,n-=5,c.ndist=(31&m)+1,m>>>=5,n-=5,c.ncode=(15&m)+4,m>>>=4,n-=4,c.nlen>286||c.ndist>30){a.msg="too many length or distance symbols",c.mode=la;break}c.have=0,c.mode=_;case _:for(;c.have<c.ncode;){for(;3>n;){if(0===i)break a;i--,m+=e[g++]<<n,n+=8}c.lens[Ca[c.have++]]=7&m,m>>>=3,n-=3}for(;c.have<19;)c.lens[Ca[c.have++]]=0;if(c.lencode=c.lendyn,c.lenbits=7,ya={bits:c.lenbits},xa=v(w,c.lens,0,19,c.lencode,0,c.work,ya),c.lenbits=ya.bits,xa){a.msg="invalid code lengths set",c.mode=la;break}c.have=0,c.mode=aa;case aa:for(;c.have<c.nlen+c.ndist;){for(;Aa=c.lencode[m&(1<<c.lenbits)-1],qa=Aa>>>24,ra=Aa>>>16&255,sa=65535&Aa,!(n>=qa);){if(0===i)break a;i--,m+=e[g++]<<n,n+=8}if(16>sa)m>>>=qa,n-=qa,c.lens[c.have++]=sa;else{if(16===sa){for(za=qa+2;za>n;){if(0===i)break a;i--,m+=e[g++]<<n,n+=8}if(m>>>=qa,n-=qa,0===c.have){a.msg="invalid bit length repeat",c.mode=la;break}wa=c.lens[c.have-1],q=3+(3&m),m>>>=2,n-=2}else if(17===sa){for(za=qa+3;za>n;){if(0===i)break a;i--,m+=e[g++]<<n,n+=8}m>>>=qa,n-=qa,wa=0,q=3+(7&m),m>>>=3,n-=3}else{for(za=qa+7;za>n;){if(0===i)break a;i--,m+=e[g++]<<n,n+=8}m>>>=qa,n-=qa,wa=0,q=11+(127&m),m>>>=7,n-=7}if(c.have+q>c.nlen+c.ndist){a.msg="invalid bit length repeat",c.mode=la;break}for(;q--;)c.lens[c.have++]=wa}}if(c.mode===la)break;if(0===c.lens[256]){a.msg="invalid code -- missing end-of-block",c.mode=la;break}if(c.lenbits=9,ya={bits:c.lenbits},xa=v(x,c.lens,0,c.nlen,c.lencode,0,c.work,ya),c.lenbits=ya.bits,xa){a.msg="invalid literal/lengths set",c.mode=la;break}if(c.distbits=6,c.distcode=c.distdyn,ya={bits:c.distbits},xa=v(y,c.lens,c.nlen,c.ndist,c.distcode,0,c.work,ya),c.distbits=ya.bits,xa){a.msg="invalid distances set",c.mode=la;break}if(c.mode=ba,b===B)break a;case ba:c.mode=ca;case ca:if(i>=6&&j>=258){a.next_out=h,a.avail_out=j,a.next_in=g,a.avail_in=i,c.hold=m,c.bits=n,u(a,p),h=a.next_out,f=a.output,j=a.avail_out,g=a.next_in,e=a.input,i=a.avail_in,m=c.hold,n=c.bits,c.mode===V&&(c.back=-1);break}for(c.back=0;Aa=c.lencode[m&(1<<c.lenbits)-1],qa=Aa>>>24,ra=Aa>>>16&255,sa=65535&Aa,!(n>=qa);){if(0===i)break a;i--,m+=e[g++]<<n,n+=8}if(ra&&0===(240&ra)){for(ta=qa,ua=ra,va=sa;Aa=c.lencode[va+((m&(1<<ta+ua)-1)>>ta)],qa=Aa>>>24,ra=Aa>>>16&255,sa=65535&Aa,!(n>=ta+qa);){if(0===i)break a;i--,m+=e[g++]<<n,n+=8}m>>>=ta,n-=ta,c.back+=ta}if(m>>>=qa,n-=qa,c.back+=qa,c.length=sa,0===ra){c.mode=ha;break}if(32&ra){c.back=-1,c.mode=V;break}if(64&ra){a.msg="invalid literal/length code",c.mode=la;break}c.extra=15&ra,c.mode=da;case da:if(c.extra){for(za=c.extra;za>n;){if(0===i)break a;i--,m+=e[g++]<<n,n+=8}c.length+=m&(1<<c.extra)-1,m>>>=c.extra,n-=c.extra,c.back+=c.extra}c.was=c.length,c.mode=ea;case ea:for(;Aa=c.distcode[m&(1<<c.distbits)-1],qa=Aa>>>24,ra=Aa>>>16&255,sa=65535&Aa,!(n>=qa);){if(0===i)break a;i--,m+=e[g++]<<n,n+=8}if(0===(240&ra)){for(ta=qa,ua=ra,va=sa;Aa=c.distcode[va+((m&(1<<ta+ua)-1)>>ta)],qa=Aa>>>24,ra=Aa>>>16&255,sa=65535&Aa,!(n>=ta+qa);){if(0===i)break a;i--,m+=e[g++]<<n,n+=8}m>>>=ta,n-=ta,c.back+=ta}if(m>>>=qa,n-=qa,c.back+=qa,64&ra){a.msg="invalid distance code",c.mode=la;break}c.offset=sa,c.extra=15&ra,c.mode=fa;case fa:if(c.extra){for(za=c.extra;za>n;){if(0===i)break a;i--,m+=e[g++]<<n,n+=8}c.offset+=m&(1<<c.extra)-1,m>>>=c.extra,n-=c.extra,c.back+=c.extra}if(c.offset>c.dmax){a.msg="invalid distance too far back",c.mode=la;break}c.mode=ga;case ga:if(0===j)break a;if(q=p-j,c.offset>q){if(q=c.offset-q,q>c.whave&&c.sane){a.msg="invalid distance too far back",c.mode=la;break}q>c.wnext?(q-=c.wnext,oa=c.wsize-q):oa=c.wnext-q,q>c.length&&(q=c.length),pa=c.window}else pa=f,oa=h-c.offset,q=c.length;q>j&&(q=j),j-=q,c.length-=q;do f[h++]=pa[oa++];while(--q);0===c.length&&(c.mode=ca);break;case ha:if(0===j)break a;f[h++]=c.length,j--,c.mode=ca;break;case ia:if(c.wrap){for(;32>n;){if(0===i)break a;i--,m|=e[g++]<<n,n+=8}if(p-=j,a.total_out+=p,c.total+=p,p&&(a.adler=c.check=c.flags?t(c.check,f,p,h-p):s(c.check,f,p,h-p)),p=j,(c.flags?m:d(m))!==c.check){a.msg="incorrect data check",c.mode=la;break}m=0,n=0}c.mode=ja;case ja:if(c.wrap&&c.flags){for(;32>n;){if(0===i)break a;i--,m+=e[g++]<<n,n+=8}if(m!==(4294967295&c.total)){a.msg="incorrect length check",c.mode=la;break}m=0,n=0}c.mode=ka;case ka:xa=D;break a;case la:xa=G;break a;case ma:return H;case na:default:return F}return a.next_out=h,a.avail_out=j,a.next_in=g,a.avail_in=i,c.hold=m,c.bits=n,(c.wsize||p!==a.avail_out&&c.mode<la&&(c.mode<ia||b!==z))&&l(a,a.output,a.next_out,p-a.avail_out)?(c.mode=ma,H):(o-=a.avail_in,p-=a.avail_out,a.total_in+=o,a.total_out+=p,c.total+=p,c.wrap&&p&&(a.adler=c.check=c.flags?t(c.check,f,p,a.next_out-p):s(c.check,f,p,a.next_out-p)),a.data_type=c.bits+(c.last?64:0)+(c.mode===V?128:0)+(c.mode===ba||c.mode===Y?256:0),(0===o&&0===p||b===z)&&xa===C&&(xa=I),xa)}function n(a){if(!a||!a.state)return F;var b=a.state;return b.window&&(b.window=null),a.state=null,C}function o(a,b){var c;return a&&a.state?(c=a.state,0===(2&c.wrap)?F:(c.head=b,b.done=!1,C)):F}var p,q,r=a("../utils/common"),s=a("./adler32"),t=a("./crc32"),u=a("./inffast"),v=a("./inftrees"),w=0,x=1,y=2,z=4,A=5,B=6,C=0,D=1,E=2,F=-2,G=-3,H=-4,I=-5,J=8,K=1,L=2,M=3,N=4,O=5,P=6,Q=7,R=8,S=9,T=10,U=11,V=12,W=13,X=14,Y=15,Z=16,$=17,_=18,aa=19,ba=20,ca=21,da=22,ea=23,fa=24,ga=25,ha=26,ia=27,ja=28,ka=29,la=30,ma=31,na=32,oa=852,pa=592,qa=15,ra=qa,sa=!0;c.inflateReset=g,c.inflateReset2=h,c.inflateResetKeep=f,c.inflateInit=j,c.inflateInit2=i,c.inflate=m,c.inflateEnd=n,c.inflateGetHeader=o,c.inflateInfo="pako inflate (from Nodeca project)"},{"../utils/common":75,"./adler32":77,"./crc32":79,"./inffast":82,"./inftrees":84}],84:[function(a,b,c){"use strict";var d=a("../utils/common"),e=15,f=852,g=592,h=0,i=1,j=2,k=[3,4,5,6,7,8,9,10,11,13,15,17,19,23,27,31,35,43,51,59,67,83,99,115,131,163,195,227,258,0,0],l=[16,16,16,16,16,16,16,16,17,17,17,17,18,18,18,18,19,19,19,19,20,20,20,20,21,21,21,21,16,72,78],m=[1,2,3,4,5,7,9,13,17,25,33,49,65,97,129,193,257,385,513,769,1025,1537,2049,3073,4097,6145,8193,12289,16385,24577,0,0],n=[16,16,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,64,64];b.exports=function(a,b,c,o,p,q,r,s){var t,u,v,w,x,y,z,A,B,C=s.bits,D=0,E=0,F=0,G=0,H=0,I=0,J=0,K=0,L=0,M=0,N=null,O=0,P=new d.Buf16(e+1),Q=new d.Buf16(e+1),R=null,S=0;for(D=0;e>=D;D++)P[D]=0;for(E=0;o>E;E++)P[b[c+E]]++;for(H=C,G=e;G>=1&&0===P[G];G--);if(H>G&&(H=G),0===G)return p[q++]=20971520,p[q++]=20971520,s.bits=1,0;for(F=1;G>F&&0===P[F];F++);for(F>H&&(H=F),K=1,D=1;e>=D;D++)if(K<<=1,K-=P[D],0>K)return-1;if(K>0&&(a===h||1!==G))return-1;for(Q[1]=0,D=1;e>D;D++)Q[D+1]=Q[D]+P[D];for(E=0;o>E;E++)0!==b[c+E]&&(r[Q[b[c+E]]++]=E);if(a===h?(N=R=r,y=19):a===i?(N=k,O-=257,R=l,S-=257,y=256):(N=m,R=n,y=-1),M=0,E=0,D=F,x=q,I=H,J=0,v=-1,L=1<<H,w=L-1,a===i&&L>f||a===j&&L>g)return 1;for(var T=0;;){T++,z=D-J,r[E]<y?(A=0,B=r[E]):r[E]>y?(A=R[S+r[E]],B=N[O+r[E]]):(A=96,B=0),t=1<<D-J,u=1<<I,F=u;do u-=t,p[x+(M>>J)+u]=z<<24|A<<16|B|0;while(0!==u);for(t=1<<D-1;M&t;)t>>=1;if(0!==t?(M&=t-1,M+=t):M=0,E++,0===--P[D]){if(D===G)break;D=b[c+r[E]]}if(D>H&&(M&w)!==v){for(0===J&&(J=H),x+=F,I=D-J,K=1<<I;G>I+J&&(K-=P[I+J],!(0>=K));)I++,K<<=1;if(L+=1<<I,a===i&&L>f||a===j&&L>g)return 1;v=M&w,p[v]=H<<24|I<<16|x-q|0}}return 0!==M&&(p[x+M]=D-J<<24|64<<16|0),s.bits=H,0}},{"../utils/common":75}],85:[function(a,b,c){"use strict";b.exports={2:"need dictionary",1:"stream end",0:"","-1":"file error","-2":"stream error","-3":"data error","-4":"insufficient memory","-5":"buffer error","-6":"incompatible version"}},{}],86:[function(a,b,c){"use strict";function d(a){for(var b=a.length;--b>=0;)a[b]=0}function e(a){return 256>a?ga[a]:ga[256+(a>>>7)]}function f(a,b){a.pending_buf[a.pending++]=255&b,a.pending_buf[a.pending++]=b>>>8&255}function g(a,b,c){a.bi_valid>V-c?(a.bi_buf|=b<<a.bi_valid&65535,f(a,a.bi_buf),a.bi_buf=b>>V-a.bi_valid,a.bi_valid+=c-V):(a.bi_buf|=b<<a.bi_valid&65535,a.bi_valid+=c)}function h(a,b,c){g(a,c[2*b],c[2*b+1])}function i(a,b){var c=0;do c|=1&a,a>>>=1,c<<=1;while(--b>0);return c>>>1}function j(a){16===a.bi_valid?(f(a,a.bi_buf),a.bi_buf=0,a.bi_valid=0):a.bi_valid>=8&&(a.pending_buf[a.pending++]=255&a.bi_buf,a.bi_buf>>=8,a.bi_valid-=8)}function k(a,b){var c,d,e,f,g,h,i=b.dyn_tree,j=b.max_code,k=b.stat_desc.static_tree,l=b.stat_desc.has_stree,m=b.stat_desc.extra_bits,n=b.stat_desc.extra_base,o=b.stat_desc.max_length,p=0;for(f=0;U>=f;f++)a.bl_count[f]=0;for(i[2*a.heap[a.heap_max]+1]=0,c=a.heap_max+1;T>c;c++)d=a.heap[c],f=i[2*i[2*d+1]+1]+1,f>o&&(f=o,p++),i[2*d+1]=f,d>j||(a.bl_count[f]++,g=0,d>=n&&(g=m[d-n]),h=i[2*d],a.opt_len+=h*(f+g),l&&(a.static_len+=h*(k[2*d+1]+g)));if(0!==p){do{for(f=o-1;0===a.bl_count[f];)f--;a.bl_count[f]--,a.bl_count[f+1]+=2,a.bl_count[o]--,p-=2}while(p>0);for(f=o;0!==f;f--)for(d=a.bl_count[f];0!==d;)e=a.heap[--c],e>j||(i[2*e+1]!==f&&(a.opt_len+=(f-i[2*e+1])*i[2*e],i[2*e+1]=f),d--)}}function l(a,b,c){var d,e,f=new Array(U+1),g=0;for(d=1;U>=d;d++)f[d]=g=g+c[d-1]<<1;for(e=0;b>=e;e++){var h=a[2*e+1];0!==h&&(a[2*e]=i(f[h]++,h))}}function m(){var a,b,c,d,e,f=new Array(U+1);for(c=0,d=0;O-1>d;d++)for(ia[d]=c,a=0;a<1<<_[d];a++)ha[c++]=d;for(ha[c-1]=d,e=0,d=0;16>d;d++)for(ja[d]=e,a=0;a<1<<aa[d];a++)ga[e++]=d;for(e>>=7;R>d;d++)for(ja[d]=e<<7,a=0;a<1<<aa[d]-7;a++)ga[256+e++]=d;for(b=0;U>=b;b++)f[b]=0;for(a=0;143>=a;)ea[2*a+1]=8,a++,f[8]++;for(;255>=a;)ea[2*a+1]=9,a++,f[9]++;for(;279>=a;)ea[2*a+1]=7,a++,f[7]++;for(;287>=a;)ea[2*a+1]=8,a++,f[8]++;for(l(ea,Q+1,f),a=0;R>a;a++)fa[2*a+1]=5,fa[2*a]=i(a,5);ka=new na(ea,_,P+1,Q,U),la=new na(fa,aa,0,R,U),ma=new na(new Array(0),ba,0,S,W)}function n(a){var b;for(b=0;Q>b;b++)a.dyn_ltree[2*b]=0;for(b=0;R>b;b++)a.dyn_dtree[2*b]=0;for(b=0;S>b;b++)a.bl_tree[2*b]=0;a.dyn_ltree[2*X]=1,a.opt_len=a.static_len=0,a.last_lit=a.matches=0}function o(a){a.bi_valid>8?f(a,a.bi_buf):a.bi_valid>0&&(a.pending_buf[a.pending++]=a.bi_buf),a.bi_buf=0,a.bi_valid=0}function p(a,b,c,d){o(a),d&&(f(a,c),f(a,~c)),E.arraySet(a.pending_buf,a.window,b,c,a.pending),a.pending+=c}function q(a,b,c,d){var e=2*b,f=2*c;return a[e]<a[f]||a[e]===a[f]&&d[b]<=d[c]}function r(a,b,c){for(var d=a.heap[c],e=c<<1;e<=a.heap_len&&(e<a.heap_len&&q(b,a.heap[e+1],a.heap[e],a.depth)&&e++,!q(b,d,a.heap[e],a.depth));)a.heap[c]=a.heap[e],c=e,e<<=1;a.heap[c]=d}function s(a,b,c){var d,f,i,j,k=0;if(0!==a.last_lit)do d=a.pending_buf[a.d_buf+2*k]<<8|a.pending_buf[a.d_buf+2*k+1],f=a.pending_buf[a.l_buf+k],k++,0===d?h(a,f,b):(i=ha[f],h(a,i+P+1,b),j=_[i],0!==j&&(f-=ia[i],g(a,f,j)),d--,i=e(d),h(a,i,c),j=aa[i],0!==j&&(d-=ja[i],g(a,d,j)));while(k<a.last_lit);h(a,X,b)}function t(a,b){var c,d,e,f=b.dyn_tree,g=b.stat_desc.static_tree,h=b.stat_desc.has_stree,i=b.stat_desc.elems,j=-1;for(a.heap_len=0,a.heap_max=T,c=0;i>c;c++)0!==f[2*c]?(a.heap[++a.heap_len]=j=c,a.depth[c]=0):f[2*c+1]=0;for(;a.heap_len<2;)e=a.heap[++a.heap_len]=2>j?++j:0,f[2*e]=1,a.depth[e]=0,a.opt_len--,h&&(a.static_len-=g[2*e+1]);for(b.max_code=j,c=a.heap_len>>1;c>=1;c--)r(a,f,c);e=i;do c=a.heap[1],a.heap[1]=a.heap[a.heap_len--],r(a,f,1),d=a.heap[1],a.heap[--a.heap_max]=c,a.heap[--a.heap_max]=d,f[2*e]=f[2*c]+f[2*d],a.depth[e]=(a.depth[c]>=a.depth[d]?a.depth[c]:a.depth[d])+1,f[2*c+1]=f[2*d+1]=e,a.heap[1]=e++,r(a,f,1);while(a.heap_len>=2);a.heap[--a.heap_max]=a.heap[1],k(a,b),l(f,j,a.bl_count)}function u(a,b,c){var d,e,f=-1,g=b[1],h=0,i=7,j=4;for(0===g&&(i=138,j=3),b[2*(c+1)+1]=65535,d=0;c>=d;d++)e=g,g=b[2*(d+1)+1],++h<i&&e===g||(j>h?a.bl_tree[2*e]+=h:0!==e?(e!==f&&a.bl_tree[2*e]++,a.bl_tree[2*Y]++):10>=h?a.bl_tree[2*Z]++:a.bl_tree[2*$]++,h=0,f=e,0===g?(i=138,j=3):e===g?(i=6,j=3):(i=7,j=4))}function v(a,b,c){var d,e,f=-1,i=b[1],j=0,k=7,l=4;for(0===i&&(k=138,l=3),d=0;c>=d;d++)if(e=i,i=b[2*(d+1)+1],!(++j<k&&e===i)){if(l>j){do h(a,e,a.bl_tree);while(0!==--j)}else 0!==e?(e!==f&&(h(a,e,a.bl_tree),j--),h(a,Y,a.bl_tree),g(a,j-3,2)):10>=j?(h(a,Z,a.bl_tree),g(a,j-3,3)):(h(a,$,a.bl_tree),g(a,j-11,7));j=0,f=e,0===i?(k=138,l=3):e===i?(k=6,l=3):(k=7,l=4)}}function w(a){var b;for(u(a,a.dyn_ltree,a.l_desc.max_code),u(a,a.dyn_dtree,a.d_desc.max_code),t(a,a.bl_desc),b=S-1;b>=3&&0===a.bl_tree[2*ca[b]+1];b--);return a.opt_len+=3*(b+1)+5+5+4,b}function x(a,b,c,d){var e;for(g(a,b-257,5),g(a,c-1,5),g(a,d-4,4),e=0;d>e;e++)g(a,a.bl_tree[2*ca[e]+1],3);v(a,a.dyn_ltree,b-1),v(a,a.dyn_dtree,c-1)}function y(a){var b,c=4093624447;for(b=0;31>=b;b++,c>>>=1)if(1&c&&0!==a.dyn_ltree[2*b])return G;if(0!==a.dyn_ltree[18]||0!==a.dyn_ltree[20]||0!==a.dyn_ltree[26])return H;for(b=32;P>b;b++)if(0!==a.dyn_ltree[2*b])return H;return G}function z(a){pa||(m(),pa=!0),a.l_desc=new oa(a.dyn_ltree,ka),a.d_desc=new oa(a.dyn_dtree,la),a.bl_desc=new oa(a.bl_tree,ma),a.bi_buf=0,a.bi_valid=0,n(a)}function A(a,b,c,d){g(a,(J<<1)+(d?1:0),3),p(a,b,c,!0)}function B(a){g(a,K<<1,3),h(a,X,ea),j(a)}function C(a,b,c,d){var e,f,h=0;a.level>0?(a.strm.data_type===I&&(a.strm.data_type=y(a)),t(a,a.l_desc),t(a,a.d_desc),h=w(a),e=a.opt_len+3+7>>>3,f=a.static_len+3+7>>>3,e>=f&&(e=f)):e=f=c+5,e>=c+4&&-1!==b?A(a,b,c,d):a.strategy===F||f===e?(g(a,(K<<1)+(d?1:0),3),s(a,ea,fa)):(g(a,(L<<1)+(d?1:0),3),x(a,a.l_desc.max_code+1,a.d_desc.max_code+1,h+1),s(a,a.dyn_ltree,a.dyn_dtree)),n(a),d&&o(a)}function D(a,b,c){return a.pending_buf[a.d_buf+2*a.last_lit]=b>>>8&255,a.pending_buf[a.d_buf+2*a.last_lit+1]=255&b,a.pending_buf[a.l_buf+a.last_lit]=255&c,a.last_lit++,0===b?a.dyn_ltree[2*c]++:(a.matches++,b--,a.dyn_ltree[2*(ha[c]+P+1)]++,a.dyn_dtree[2*e(b)]++),a.last_lit===a.lit_bufsize-1}var E=a("../utils/common"),F=4,G=0,H=1,I=2,J=0,K=1,L=2,M=3,N=258,O=29,P=256,Q=P+1+O,R=30,S=19,T=2*Q+1,U=15,V=16,W=7,X=256,Y=16,Z=17,$=18,_=[0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,3,3,3,3,4,4,4,4,5,5,5,5,0],aa=[0,0,0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13],ba=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,7],ca=[16,17,18,0,8,7,9,6,10,5,11,4,12,3,13,2,14,1,15],da=512,ea=new Array(2*(Q+2));d(ea);var fa=new Array(2*R);d(fa);var ga=new Array(da);d(ga);var ha=new Array(N-M+1);d(ha);var ia=new Array(O);d(ia);var ja=new Array(R);d(ja);var ka,la,ma,na=function(a,b,c,d,e){this.static_tree=a,this.extra_bits=b,this.extra_base=c,this.elems=d,this.max_length=e,this.has_stree=a&&a.length},oa=function(a,b){this.dyn_tree=a,this.max_code=0,this.stat_desc=b},pa=!1;c._tr_init=z,c._tr_stored_block=A,c._tr_flush_block=C,c._tr_tally=D,c._tr_align=B},{"../utils/common":75}],87:[function(a,b,c){"use strict";function d(){this.input=null,this.next_in=0,this.avail_in=0,this.total_in=0,this.output=null,this.next_out=0,this.avail_out=0,this.total_out=0,this.msg="",this.state=null,this.data_type=2,this.adler=0}b.exports=d},{}]},{},[1]);
src/routes/OrderDetail/index.js
yangdongMC/kaola
import React from 'react' import { connect } from 'dva' import styles from './index.less' import OrderDetailComponent from '../../components/OrderDetail' class OrderDetail extends React.Component{ render(){ return( <OrderDetailComponent /> ) } } export default connect()(OrderDetail);
ajax/libs/react-router/0.12.4/ReactRouter.min.js
prosenjit-itobuz/cdnjs
!function(t,e){"object"==typeof exports&&"object"==typeof module?module.exports=e(require("react")):"function"==typeof define&&define.amd?define(["react"],e):"object"==typeof exports?exports.ReactRouter=e(require("react")):t.ReactRouter=e(t.React)}(this,function(t){return function(t){function e(r){if(n[r])return n[r].exports;var o=n[r]={exports:{},id:r,loaded:!1};return t[r].call(o.exports,o,o.exports,e),o.loaded=!0,o.exports}var n={};return e.m=t,e.c=n,e.p="",e(0)}([function(t,e,n){"use strict";e.DefaultRoute=n(1),e.Link=n(2),e.NotFoundRoute=n(3),e.Redirect=n(4),e.Route=n(5),e.RouteHandler=n(6),e.HashLocation=n(7),e.HistoryLocation=n(8),e.RefreshLocation=n(9),e.StaticLocation=n(10),e.ImitateBrowserBehavior=n(11),e.ScrollToTopBehavior=n(12),e.History=n(13),e.Navigation=n(14),e.RouteHandlerMixin=n(15),e.State=n(16),e.createRoute=n(17).createRoute,e.createDefaultRoute=n(17).createDefaultRoute,e.createNotFoundRoute=n(17).createNotFoundRoute,e.createRedirect=n(17).createRedirect,e.createRoutesFromReactChildren=n(18),e.create=n(19),e.run=n(20)},function(t,e,n){"use strict";var r=n(21),o=n(23),i=n(22),a=r.createClass({displayName:"DefaultRoute",mixins:[o],propTypes:{name:i.string,path:i.falsy,children:i.falsy,handler:i.func.isRequired}});t.exports=a},function(t,e,n){"use strict";function r(t){return 0===t.button}function o(t){return!!(t.metaKey||t.altKey||t.ctrlKey||t.shiftKey)}var i=n(21),a=n(35),s=n(36),u=n(14),c=n(16),f=n(22),l=n(17),h=i.createClass({displayName:"Link",mixins:[u,c],propTypes:{activeClassName:f.string.isRequired,to:f.oneOfType([f.string,f.instanceOf(l)]),params:f.object,query:f.object,activeStyle:f.object,onClick:f.func},getDefaultProps:function(){return{activeClassName:"active"}},handleClick:function(t){var e,n=!0;this.props.onClick&&(e=this.props.onClick(t)),!o(t)&&r(t)&&((e===!1||t.defaultPrevented===!0)&&(n=!1),t.preventDefault(),n&&this.transitionTo(this.props.to,this.props.params,this.props.query))},getHref:function(){return this.makeHref(this.props.to,this.props.params,this.props.query)},getClassName:function(){var t={};return this.props.className&&(t[this.props.className]=!0),this.getActiveState()&&(t[this.props.activeClassName]=!0),a(t)},getActiveState:function(){return this.isActive(this.props.to,this.props.params,this.props.query)},render:function(){var t=s({},this.props,{href:this.getHref(),className:this.getClassName(),onClick:this.handleClick});return t.activeStyle&&this.getActiveState()&&(t.style=t.activeStyle),i.DOM.a(t,this.props.children)}});t.exports=h},function(t,e,n){"use strict";var r=n(21),o=n(23),i=n(22),a=r.createClass({displayName:"NotFoundRoute",mixins:[o],propTypes:{name:i.string,path:i.falsy,children:i.falsy,handler:i.func.isRequired}});t.exports=a},function(t,e,n){"use strict";var r=n(21),o=n(23),i=n(22),a=r.createClass({displayName:"Redirect",mixins:[o],propTypes:{path:i.string,from:i.string,to:i.string,handler:i.falsy}});t.exports=a},function(t,e,n){"use strict";var r=n(21),o=n(23),i=n(22),a=n(6),s=r.createClass({displayName:"Route",mixins:[o],propTypes:{name:i.string,path:i.string,handler:i.func,ignoreScrollBehavior:i.bool},getDefaultProps:function(){return{handler:a}}});t.exports=s},function(t,e,n){"use strict";var r=n(21),o=n(15),i=r.createClass({displayName:"RouteHandler",mixins:[o],render:function(){return this.createChildRouteHandler()}});t.exports=i},function(t,e,n){"use strict";function r(){return decodeURI(window.location.href.split("#")[1]||"")}function o(){var t=r();return"/"===t.charAt(0)?!0:(h.replace("/"+t),!1)}function i(t){t===u.PUSH&&(c.length+=1);var e={path:r(),type:t};f.forEach(function(t){t(e)})}function a(){o()&&(i(s||u.POP),s=null)}var s,u=n(24),c=n(13),f=[],l=!1,h={addChangeListener:function(t){f.push(t),o(),l||(window.addEventListener?window.addEventListener("hashchange",a,!1):window.attachEvent("onhashchange",a),l=!0)},removeChangeListener:function(t){f=f.filter(function(e){return e!==t}),0===f.length&&(window.removeEventListener?window.removeEventListener("hashchange",a,!1):window.removeEvent("onhashchange",a),l=!1)},push:function(t){s=u.PUSH,window.location.hash=t},replace:function(t){s=u.REPLACE,window.location.replace(window.location.pathname+window.location.search+"#"+t)},pop:function(){s=u.POP,c.back()},getCurrentPath:r,toString:function(){return"<HashLocation>"}};t.exports=h},function(t,e,n){"use strict";function r(){return decodeURI(window.location.pathname+window.location.search)}function o(t){var e={path:r(),type:t};u.forEach(function(t){t(e)})}function i(t){void 0!==t.state&&o(a.POP)}var a=n(24),s=n(13),u=[],c=!1,f={addChangeListener:function(t){u.push(t),c||(window.addEventListener?window.addEventListener("popstate",i,!1):window.attachEvent("onpopstate",i),c=!0)},removeChangeListener:function(t){u=u.filter(function(e){return e!==t}),0===u.length&&(window.addEventListener?window.removeEventListener("popstate",i,!1):window.removeEvent("onpopstate",i),c=!1)},push:function(t){window.history.pushState({path:t},"",t),s.length+=1,o(a.PUSH)},replace:function(t){window.history.replaceState({path:t},"",t),o(a.REPLACE)},pop:s.back,getCurrentPath:r,toString:function(){return"<HistoryLocation>"}};t.exports=f},function(t,e,n){"use strict";var r=n(8),o=n(13),i={push:function(t){window.location=t},replace:function(t){window.location.replace(t)},pop:o.back,getCurrentPath:r.getCurrentPath,toString:function(){return"<RefreshLocation>"}};t.exports=i},function(t,e,n){"use strict";function r(){a(!1,"You cannot modify a static location")}var o=function(t,e,n){e&&Object.defineProperties(t,e),n&&Object.defineProperties(t.prototype,n)},i=function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")},a=n(37),s=function(){function t(e){i(this,t),this.path=e}return o(t,null,{getCurrentPath:{value:function(){return this.path},writable:!0,configurable:!0},toString:{value:function(){return'<StaticLocation path="'+this.path+'">'},writable:!0,configurable:!0}}),t}();s.prototype.push=r,s.prototype.replace=r,s.prototype.pop=r,t.exports=s},function(t,e,n){"use strict";var r=n(24),o={updateScrollPosition:function(t,e){switch(e){case r.PUSH:case r.REPLACE:window.scrollTo(0,0);break;case r.POP:t?window.scrollTo(t.x,t.y):window.scrollTo(0,0)}}};t.exports=o},function(t){"use strict";var e={updateScrollPosition:function(){window.scrollTo(0,0)}};t.exports=e},function(t,e,n){"use strict";var r=n(37),o=n(38).canUseDOM,i={length:1,back:function(){r(o,"Cannot use History.back without a DOM"),i.length-=1,window.history.back()}};t.exports=i},function(t,e,n){"use strict";var r=n(22),o={contextTypes:{makePath:r.func.isRequired,makeHref:r.func.isRequired,transitionTo:r.func.isRequired,replaceWith:r.func.isRequired,goBack:r.func.isRequired},makePath:function(t,e,n){return this.context.makePath(t,e,n)},makeHref:function(t,e,n){return this.context.makeHref(t,e,n)},transitionTo:function(t,e,n){this.context.transitionTo(t,e,n)},replaceWith:function(t,e,n){this.context.replaceWith(t,e,n)},goBack:function(){return this.context.goBack()}};t.exports=o},function(t,e,n){"use strict";var r=n(21),o=n(36),i=n(22),a="__routeHandler__",s={contextTypes:{getRouteAtDepth:i.func.isRequired,setRouteComponentAtDepth:i.func.isRequired,routeHandlers:i.array.isRequired},childContextTypes:{routeHandlers:i.array.isRequired},getChildContext:function(){return{routeHandlers:this.context.routeHandlers.concat([this])}},componentDidMount:function(){this._updateRouteComponent(this.refs[a])},componentDidUpdate:function(){this._updateRouteComponent(this.refs[a])},componentWillUnmount:function(){this._updateRouteComponent(null)},_updateRouteComponent:function(t){this.context.setRouteComponentAtDepth(this.getRouteDepth(),t)},getRouteDepth:function(){return this.context.routeHandlers.length},createChildRouteHandler:function(t){var e=this.context.getRouteAtDepth(this.getRouteDepth());return e?r.createElement(e.handler,o({},t||this.props,{ref:a})):null}};t.exports=s},function(t,e,n){"use strict";var r=n(22),o={contextTypes:{getCurrentPath:r.func.isRequired,getCurrentRoutes:r.func.isRequired,getCurrentPathname:r.func.isRequired,getCurrentParams:r.func.isRequired,getCurrentQuery:r.func.isRequired,isActive:r.func.isRequired},getPath:function(){return this.context.getCurrentPath()},getRoutes:function(){return this.context.getCurrentRoutes()},getPathname:function(){return this.context.getCurrentPathname()},getParams:function(){return this.context.getCurrentParams()},getQuery:function(){return this.context.getCurrentQuery()},isActive:function(t,e,n){return this.context.isActive(t,e,n)}};t.exports=o},function(t,e,n){"use strict";var r,o=function(t,e,n){e&&Object.defineProperties(t,e),n&&Object.defineProperties(t.prototype,n)},i=function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")},a=n(36),s=n(37),u=n(39),c=n(25),f=function(){function t(e,n,r,o,a,s,u,f){i(this,t),this.name=e,this.path=n,this.paramNames=c.extractParamNames(this.path),this.ignoreScrollBehavior=!!r,this.isDefault=!!o,this.isNotFound=!!a,this.onEnter=s,this.onLeave=u,this.handler=f}return o(t,{createRoute:{value:function(e,n){e=e||{},"string"==typeof e&&(e={path:e});var o=r;o?u(null==e.parentRoute||e.parentRoute===o,"You should not use parentRoute with createRoute inside another route's child callback; it is ignored"):o=e.parentRoute;var i=e.name,a=e.path||i;!a||e.isDefault||e.isNotFound?a=o?o.path:"/":c.isAbsolute(a)?o&&s(0===o.paramNames.length,'You cannot nest path "%s" inside "%s"; the parent requires URL parameters',a,o.path):a=o?c.join(o.path,a):"/"+a,e.isNotFound&&!/\*$/.test(a)&&(a+="*");var f=new t(i,a,e.ignoreScrollBehavior,e.isDefault,e.isNotFound,e.onEnter,e.onLeave,e.handler);if(o&&(f.isDefault?(s(null==o.defaultRoute,"%s may not have more than one default route",o),o.defaultRoute=f):f.isNotFound&&(s(null==o.notFoundRoute,"%s may not have more than one not found route",o),o.notFoundRoute=f),o.appendChild(f)),"function"==typeof n){var l=r;r=f,n.call(f,f),r=l}return f},writable:!0,configurable:!0},createDefaultRoute:{value:function(e){return t.createRoute(a({},e,{isDefault:!0}))},writable:!0,configurable:!0},createNotFoundRoute:{value:function(e){return t.createRoute(a({},e,{isNotFound:!0}))},writable:!0,configurable:!0},createRedirect:{value:function(e){return t.createRoute(a({},e,{path:e.path||e.from||"*",onEnter:function(t,n,r){t.redirect(e.to,e.params||n,e.query||r)}}))},writable:!0,configurable:!0}},{appendChild:{value:function(e){s(e instanceof t,"route.appendChild must use a valid Route"),this.childRoutes||(this.childRoutes=[]),this.childRoutes.push(e)},writable:!0,configurable:!0},toString:{value:function(){var t="<Route";return this.name&&(t+=' name="'+this.name+'"'),t+=' path="'+this.path+'">'},writable:!0,configurable:!0}}),t}();t.exports=f},function(t,e,n){"use strict";function r(t,e,n){t=t||"UnknownComponent";for(var r in e)if(e.hasOwnProperty(r)){var o=e[r](n,r,t);o instanceof Error&&c(!1,o.message)}}function o(t){var e=u({},t),n=e.handler;return n&&(e.onEnter=n.willTransitionTo,e.onLeave=n.willTransitionFrom),e}function i(t){if(s.isValidElement(t)){var e=t.type,n=t.props;return e.propTypes&&r(e.displayName,e.propTypes,n),e===f?p.createDefaultRoute(o(n)):e===l?p.createNotFoundRoute(o(n)):e===h?p.createRedirect(o(n)):p.createRoute(o(n),function(){n.children&&a(n.children)})}}function a(t){var e=[];return s.Children.forEach(t,function(t){(t=i(t))&&e.push(t)}),e}var s=n(21),u=n(36),c=n(39),f=n(1).type,l=n(3).type,h=n(4).type,p=n(17);t.exports=a},function(t,e,n){"use strict";function r(t,e){for(var n in e)if(e.hasOwnProperty(n)&&t[n]!==e[n])return!1;return!0}function o(t,e,n,o,i,a){return t.some(function(t){if(t!==e)return!1;for(var s,u=e.paramNames,c=0,f=u.length;f>c;++c)if(s=u[c],o[s]!==n[s])return!1;return r(i,a)&&r(a,i)})}function i(t,e){for(var n,r=0,o=t.length;o>r;++r)n=t[r],n.name&&(c(null==e[n.name],'You may not have more than one route named "%s"',n.name),e[n.name]=n),n.childRoutes&&i(n.childRoutes,e)}function a(t){t=t||{},x(t)&&(t={routes:t});var e=[],n=t.location||S,r=t.scrollBehavior||q,a={},h={},D=null,j=null;"string"==typeof n&&(n=new g(n)),n instanceof g?u(!f||!1,"You should not use a static location in a DOM environment because the router will not be kept in sync with the current URL"):c(f||n.needsDOM===!1,"You cannot use %s without a DOM",n),n!==d||k()||(n=m);var N=s.createClass({displayName:"Router",statics:{isRunning:!1,cancelPendingTransition:function(){D&&(D.cancel(),D=null)},clearAllRoutes:function(){this.cancelPendingTransition(),this.namedRoutes={},this.routes=[]},addRoutes:function(t){x(t)&&(t=w(t)),i(t,this.namedRoutes),this.routes.push.apply(this.routes,t)},replaceRoutes:function(t){this.clearAllRoutes(),this.addRoutes(t),this.refresh()},match:function(t){return E.findMatch(this.routes,t)},makePath:function(t,e,n){var r;if(T.isAbsolute(t))r=t;else{var o=t instanceof L?t:this.namedRoutes[t];c(o instanceof L,'Cannot find a route named "%s"',t),r=o.path}return T.withQuery(T.injectParams(r,e),n)},makeHref:function(t,e,r){var o=this.makePath(t,e,r);return n===p?"#"+o:o},transitionTo:function(t,e,r){var o=this.makePath(t,e,r);D?n.replace(o):n.push(o)},replaceWith:function(t,e,r){n.replace(this.makePath(t,e,r))},goBack:function(){return O.length>1||n===m?(n.pop(),!0):(u(!1,"goBack() was ignored because there is no router history"),!1)},handleAbort:t.onAbort||function(t){if(n instanceof g)throw new Error("Unhandled aborted transition! Reason: "+t);t instanceof A||(t instanceof P?n.replace(this.makePath(t.to,t.params,t.query)):n.pop())},handleError:t.onError||function(t){throw t},handleLocationChange:function(t){this.dispatch(t.path,t.type)},dispatch:function(t,n){this.cancelPendingTransition();var r=a.path,i=null==n;if(r!==t||i){r&&n===l.PUSH&&this.recordScrollPosition(r);var s=this.match(t);u(null!=s,'No route matches path "%s". Make sure you have <Route path="%s"> somewhere in your routes',t,t),null==s&&(s={});var c,f,h=a.routes||[],p=a.params||{},d=a.query||{},m=s.routes||[],g=s.params||{},v=s.query||{};h.length?(c=h.filter(function(t){return!o(m,t,p,g,d,v)}),f=m.filter(function(t){return!o(h,t,p,g,d,v)})):(c=[],f=m);var y=new C(t,this.replaceWith.bind(this,t));D=y;var R=e.slice(h.length-c.length);C.from(y,c,R,function(e){return e||y.abortReason?j.call(N,e,y):void C.to(y,f,g,v,function(e){j.call(N,e,y,{path:t,action:n,pathname:s.pathname,routes:m,params:g,query:v})})})}},run:function(t){c(!this.isRunning,"Router is already running"),j=function(e,n,r){e&&N.handleError(e),D===n&&(D=null,n.abortReason?N.handleAbort(n.abortReason):t.call(this,this,h=r))},n instanceof g||(n.addChangeListener&&n.addChangeListener(N.handleLocationChange),this.isRunning=!0),this.refresh()},refresh:function(){N.dispatch(n.getCurrentPath(),null)},stop:function(){this.cancelPendingTransition(),n.removeChangeListener&&n.removeChangeListener(N.handleLocationChange),this.isRunning=!1},getScrollBehavior:function(){return r}},mixins:[v,R,y],propTypes:{children:b.falsy},childContextTypes:{getRouteAtDepth:s.PropTypes.func.isRequired,setRouteComponentAtDepth:s.PropTypes.func.isRequired,routeHandlers:s.PropTypes.array.isRequired},getChildContext:function(){return{getRouteAtDepth:this.getRouteAtDepth,setRouteComponentAtDepth:this.setRouteComponentAtDepth,routeHandlers:[this]}},getInitialState:function(){return a=h},componentWillReceiveProps:function(){this.setState(a=h)},componentWillUnmount:function(){N.stop()},getLocation:function(){return n},getRouteAtDepth:function(t){var e=this.state.routes;return e&&e[t]},setRouteComponentAtDepth:function(t,n){e[t]=n},render:function(){var t=this.getRouteAtDepth(0);return t?s.createElement(t.handler,this.props):null}});return N.clearAllRoutes(),t.routes&&N.addRoutes(t.routes),N}var s=n(21),u=n(39),c=n(37),f=n(38).canUseDOM,l=n(24),h=n(11),p=n(7),d=n(8),m=n(9),g=n(10),v=n(26),y=n(27),R=n(28),w=n(18),x=n(29),C=n(30),b=n(22),P=n(31),O=n(13),A=n(32),E=n(33),L=n(17),k=n(34),T=n(25),S=f?p:"/",q=f?h:null;t.exports=a},function(t,e,n){"use strict";function r(t,e,n){"function"==typeof e&&(n=e,e=null);var r=o({routes:t,location:e});return r.run(n),r}var o=n(19);t.exports=r},function(e){e.exports=t},function(t,e,n){"use strict";var r=n(36),o=n(21).PropTypes,i=r({falsy:function(t,e,n){return t[e]?new Error("<"+n+'> may not have a "'+e+'" prop'):void 0}},o);t.exports=i},function(t,e,n){"use strict";function r(t,e,n){for(var r in e)if(e.hasOwnProperty(r)){var i=e[r](n,r,t);i instanceof Error&&o(!1,i.message)}}var o=n(39),i=n(37),a={statics:{validateProps:function(t){r(this.displayName,this.propTypes,t)}},render:function(){i(!1,"%s elements are for router configuration only and should not be rendered",this.constructor.displayName)}};t.exports=a},function(t){"use strict";var e={PUSH:"push",REPLACE:"replace",POP:"pop"};t.exports=e},function(t,e,n){"use strict";function r(t){if(!(t in l)){var e=[],n=t.replace(s,function(t,n){return n?(e.push(n),"([^/?#]+)"):"*"===t?(e.push("splat"),"(.*?)"):"\\"+t});l[t]={matcher:new RegExp("^"+n+"$","i"),paramNames:e}}return l[t]}var o=n(37),i=n(42).merge,a=n(41),s=/:([a-zA-Z_$][a-zA-Z0-9_$]*)|[*.()\[\]\\+|{}^$]/g,u=/:([a-zA-Z_$][a-zA-Z0-9_$?]*[?]?)|[*]/g,c=/\/\/\?|\/\?\/|\/\?/g,f=/\?(.+)/,l={},h={isAbsolute:function(t){return"/"===t.charAt(0)},join:function(t,e){return t.replace(/\/*$/,"/")+e},extractParamNames:function(t){return r(t).paramNames},extractParams:function(t,e){var n=r(t),o=n.matcher,i=n.paramNames,a=e.match(o);if(!a)return null;var s={};return i.forEach(function(t,e){s[t]=a[e+1]}),s},injectParams:function(t,e){e=e||{};var n=0;return t.replace(u,function(r,i){if(i=i||"splat","?"===i.slice(-1)){if(i=i.slice(0,-1),null==e[i])return""}else o(null!=e[i],'Missing "%s" parameter for path "%s"',i,t);var a;return"splat"===i&&Array.isArray(e[i])?(a=e[i][n++],o(null!=a,'Missing splat # %s for path "%s"',n,t)):a=e[i],a}).replace(c,"/")},extractQuery:function(t){var e=t.match(f);return e&&a.parse(e[1])},withoutQuery:function(t){return t.replace(f,"")},withQuery:function(t,e){var n=h.extractQuery(t);n&&(e=e?i(n,e):n);var r=a.stringify(e,{indices:!1});return r?h.withoutQuery(t)+"?"+r:t}};t.exports=h},function(t,e,n){"use strict";var r=n(22),o={childContextTypes:{makePath:r.func.isRequired,makeHref:r.func.isRequired,transitionTo:r.func.isRequired,replaceWith:r.func.isRequired,goBack:r.func.isRequired},getChildContext:function(){return{makePath:this.constructor.makePath.bind(this.constructor),makeHref:this.constructor.makeHref.bind(this.constructor),transitionTo:this.constructor.transitionTo.bind(this.constructor),replaceWith:this.constructor.replaceWith.bind(this.constructor),goBack:this.constructor.goBack.bind(this.constructor)}}};t.exports=o},function(t,e,n){"use strict";function r(t,e){if(!e)return!0;if(t.pathname===e.pathname)return!1;var n=t.routes,r=e.routes,o=n.filter(function(t){return-1!==r.indexOf(t)});return!o.some(function(t){return t.ignoreScrollBehavior})}var o=n(37),i=n(38).canUseDOM,a=n(40),s={statics:{recordScrollPosition:function(t){this.scrollHistory||(this.scrollHistory={}),this.scrollHistory[t]=a()},getScrollPosition:function(t){return this.scrollHistory||(this.scrollHistory={}),this.scrollHistory[t]||null}},componentWillMount:function(){o(null==this.constructor.getScrollBehavior()||i,"Cannot use scroll behavior without a DOM")},componentDidMount:function(){this._updateScroll()},componentDidUpdate:function(t,e){this._updateScroll(e)},_updateScroll:function(t){if(r(this.state,t)){var e=this.constructor.getScrollBehavior();e&&e.updateScrollPosition(this.constructor.getScrollPosition(this.state.path),this.state.action)}}};t.exports=s},function(t,e,n){"use strict";function r(t,e){return t.some(function(t){return t.name===e})}function o(t,e){for(var n in e)if(String(t[n])!==String(e[n]))return!1;return!0}function i(t,e){for(var n in e)if(String(t[n])!==String(e[n]))return!1;return!0}var a=n(36),s=n(22),u=n(25),c={getCurrentPath:function(){return this.state.path},getCurrentRoutes:function(){return this.state.routes.slice(0)},getCurrentPathname:function(){return this.state.pathname},getCurrentParams:function(){return a({},this.state.params)},getCurrentQuery:function(){return a({},this.state.query)},isActive:function(t,e,n){return u.isAbsolute(t)?t===this.state.path:r(this.state.routes,t)&&o(this.state.params,e)&&(null==n||i(this.state.query,n))},childContextTypes:{getCurrentPath:s.func.isRequired,getCurrentRoutes:s.func.isRequired,getCurrentPathname:s.func.isRequired,getCurrentParams:s.func.isRequired,getCurrentQuery:s.func.isRequired,isActive:s.func.isRequired},getChildContext:function(){return{getCurrentPath:this.getCurrentPath,getCurrentRoutes:this.getCurrentRoutes,getCurrentPathname:this.getCurrentPathname,getCurrentParams:this.getCurrentParams,getCurrentQuery:this.getCurrentQuery,isActive:this.isActive}}};t.exports=c},function(t,e,n){"use strict";function r(t){return null==t||i.isValidElement(t)}function o(t){return r(t)||Array.isArray(t)&&t.every(r)}var i=n(21);t.exports=o},function(t,e,n){"use strict";function r(t,e){this.path=t,this.abortReason=null,this.retry=e.bind(this)}var o=n(32),i=n(31);r.prototype.abort=function(t){null==this.abortReason&&(this.abortReason=t||"ABORT")},r.prototype.redirect=function(t,e,n){this.abort(new i(t,e,n))},r.prototype.cancel=function(){this.abort(new o)},r.from=function(t,e,n,r){e.reduce(function(e,r,o){return function(i){if(i||t.abortReason)e(i);else if(r.onLeave)try{r.onLeave(t,n[o],e),r.onLeave.length<3&&e()}catch(a){e(a)}else e()}},r)()},r.to=function(t,e,n,r,o){e.reduceRight(function(e,o){return function(i){if(i||t.abortReason)e(i);else if(o.onEnter)try{o.onEnter(t,n,r,e),o.onEnter.length<4&&e()}catch(a){e(a)}else e()}},o)()},t.exports=r},function(t){"use strict";function e(t,e,n){this.to=t,this.params=e,this.query=n}t.exports=e},function(t){"use strict";function e(){}t.exports=e},function(t,e,n){"use strict";function r(t,e,n){var o=t.childRoutes;if(o)for(var i,u,c=0,f=o.length;f>c;++c)if(u=o[c],!u.isDefault&&!u.isNotFound&&(i=r(u,e,n)))return i.routes.unshift(t),i;var l=t.defaultRoute;if(l&&(p=a.extractParams(l.path,e)))return new s(e,p,n,[t,l]);var h=t.notFoundRoute;if(h&&(p=a.extractParams(h.path,e)))return new s(e,p,n,[t,h]);var p=a.extractParams(t.path,e);return p?new s(e,p,n,[t]):null}var o=function(t,e,n){e&&Object.defineProperties(t,e),n&&Object.defineProperties(t.prototype,n)},i=function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")},a=n(25),s=function(){function t(e,n,r,o){i(this,t),this.pathname=e,this.params=n,this.query=r,this.routes=o}return o(t,{findMatch:{value:function(t,e){for(var n=a.withoutQuery(e),o=a.extractQuery(e),i=null,s=0,u=t.length;null==i&&u>s;++s)i=r(t[s],n,o);return i},writable:!0,configurable:!0}}),t}();t.exports=s},function(t){"use strict";function e(){/*! taken from modernizr * https://github.com/Modernizr/Modernizr/blob/master/LICENSE * https://github.com/Modernizr/Modernizr/blob/master/feature-detects/history.js * changed to avoid false negatives for Windows Phones: https://github.com/rackt/react-router/issues/586 */ var t=navigator.userAgent;return-1===t.indexOf("Android 2.")&&-1===t.indexOf("Android 4.0")||-1===t.indexOf("Mobile Safari")||-1!==t.indexOf("Chrome")||-1!==t.indexOf("Windows Phone")?window.history&&"pushState"in window.history:!1}t.exports=e},function(t){"use strict";function e(t){return"object"==typeof t?Object.keys(t).filter(function(e){return t[e]}).join(" "):Array.prototype.join.call(arguments," ")}t.exports=e},function(t){"use strict";function e(t){if(null==t)throw new TypeError("Object.assign target cannot be null or undefined");for(var e=Object(t),n=Object.prototype.hasOwnProperty,r=1;r<arguments.length;r++){var o=arguments[r];if(null!=o){var i=Object(o);for(var a in i)n.call(i,a)&&(e[a]=i[a])}}return e}t.exports=e},function(t){"use strict";var e=function(t,e,n,r,o,i,a,s){if(!t){var u;if(void 0===e)u=new Error("Minified exception occurred; use the non-minified dev environment for the full error message and additional helpful warnings.");else{var c=[n,r,o,i,a,s],f=0;u=new Error("Invariant Violation: "+e.replace(/%s/g,function(){return c[f++]}))}throw u.framesToPop=1,u}};t.exports=e},function(t){"use strict";var e=!("undefined"==typeof window||!window.document||!window.document.createElement),n={canUseDOM:e,canUseWorkers:"undefined"!=typeof Worker,canUseEventListeners:e&&!(!window.addEventListener&&!window.attachEvent),canUseViewport:e&&!!window.screen,isInWorker:!e};t.exports=n},function(t,e,n){"use strict";var r=n(43),o=r;t.exports=o},function(t,e,n){"use strict";function r(){return o(i,"Cannot get current scroll position without a DOM"),{x:window.pageXOffset||document.documentElement.scrollLeft,y:window.pageYOffset||document.documentElement.scrollTop}}var o=n(37),i=n(38).canUseDOM;t.exports=r},function(t,e,n){"use strict";t.exports=n(44)},function(t,e){"use strict";e.arrayToObject=function(t){for(var e={},n=0,r=t.length;r>n;++n)"undefined"!=typeof t[n]&&(e[n]=t[n]);return e},e.merge=function(t,n){if(!n)return t;if("object"!=typeof n)return Array.isArray(t)?t.push(n):t[n]=!0,t;if("object"!=typeof t)return t=[t].concat(n);Array.isArray(t)&&!Array.isArray(n)&&(t=e.arrayToObject(t));for(var r=Object.keys(n),o=0,i=r.length;i>o;++o){var a=r[o],s=n[a];t[a]=t[a]?e.merge(t[a],s):s}return t},e.decode=function(t){try{return decodeURIComponent(t.replace(/\+/g," "))}catch(e){return t}},e.compact=function(t,n){if("object"!=typeof t||null===t)return t;n=n||[];var r=n.indexOf(t);if(-1!==r)return n[r];if(n.push(t),Array.isArray(t)){for(var o=[],i=0,a=t.length;a>i;++i)"undefined"!=typeof t[i]&&o.push(t[i]);return o}var s=Object.keys(t);for(i=0,a=s.length;a>i;++i){var u=s[i];t[u]=e.compact(t[u],n)}return t},e.isRegExp=function(t){return"[object RegExp]"===Object.prototype.toString.call(t)},e.isBuffer=function(t){return null===t||"undefined"==typeof t?!1:!!(t.constructor&&t.constructor.isBuffer&&t.constructor.isBuffer(t))}},function(t){"use strict";function e(t){return function(){return t}}function n(){}n.thatReturns=e,n.thatReturnsFalse=e(!1),n.thatReturnsTrue=e(!0),n.thatReturnsNull=e(null),n.thatReturnsThis=function(){return this},n.thatReturnsArgument=function(t){return t},t.exports=n},function(t,e,n){"use strict";var r=n(45),o=n(46);t.exports={stringify:r,parse:o}},function(t,e,n){"use strict";var r=n(42),o={delimiter:"&",indices:!0};o.stringify=function(t,e,n){if(r.isBuffer(t)?t=t.toString():t instanceof Date?t=t.toISOString():null===t&&(t=""),"string"==typeof t||"number"==typeof t||"boolean"==typeof t)return[encodeURIComponent(e)+"="+encodeURIComponent(t)];var i=[];if("undefined"==typeof t)return i;for(var a=Object.keys(t),s=0,u=a.length;u>s;++s){var c=a[s];i=i.concat(!n.indices&&Array.isArray(t)?o.stringify(t[c],e,n):o.stringify(t[c],e+"["+c+"]",n))}return i},t.exports=function(t,e){e=e||{};var n="undefined"==typeof e.delimiter?o.delimiter:e.delimiter;e.indices="boolean"==typeof e.indices?e.indices:o.indices;var r=[];if("object"!=typeof t||null===t)return"";for(var i=Object.keys(t),a=0,s=i.length;s>a;++a){var u=i[a];r=r.concat(o.stringify(t[u],u,e))}return r.join(n)}},function(t,e,n){"use strict";var r=n(42),o={delimiter:"&",depth:5,arrayLimit:20,parameterLimit:1e3};o.parseValues=function(t,e){for(var n={},o=t.split(e.delimiter,1/0===e.parameterLimit?void 0:e.parameterLimit),i=0,a=o.length;a>i;++i){var s=o[i],u=-1===s.indexOf("]=")?s.indexOf("="):s.indexOf("]=")+1;if(-1===u)n[r.decode(s)]="";else{var c=r.decode(s.slice(0,u)),f=r.decode(s.slice(u+1));n[c]=n.hasOwnProperty(c)?[].concat(n[c]).concat(f):f}}return n},o.parseObject=function(t,e,n){if(!t.length)return e;var r=t.shift(),i={};if("[]"===r)i=[],i=i.concat(o.parseObject(t,e,n));else{var a="["===r[0]&&"]"===r[r.length-1]?r.slice(1,r.length-1):r,s=parseInt(a,10),u=""+s;!isNaN(s)&&r!==a&&u===a&&s>=0&&s<=n.arrayLimit?(i=[],i[s]=o.parseObject(t,e,n)):i[a]=o.parseObject(t,e,n)}return i},o.parseKeys=function(t,e,n){if(t){var r=/^([^\[\]]*)/,i=/(\[[^\[\]]*\])/g,a=r.exec(t);if(!Object.prototype.hasOwnProperty(a[1])){var s=[];a[1]&&s.push(a[1]);for(var u=0;null!==(a=i.exec(t))&&u<n.depth;)++u,Object.prototype.hasOwnProperty(a[1].replace(/\[|\]/g,""))||s.push(a[1]);return a&&s.push("["+t.slice(a.index)+"]"),o.parseObject(s,e,n)}}},t.exports=function(t,e){if(""===t||null===t||"undefined"==typeof t)return{};e=e||{},e.delimiter="string"==typeof e.delimiter||r.isRegExp(e.delimiter)?e.delimiter:o.delimiter,e.depth="number"==typeof e.depth?e.depth:o.depth,e.arrayLimit="number"==typeof e.arrayLimit?e.arrayLimit:o.arrayLimit,e.parameterLimit="number"==typeof e.parameterLimit?e.parameterLimit:o.parameterLimit;for(var n="string"==typeof t?o.parseValues(t,e):t,i={},a=Object.keys(n),s=0,u=a.length;u>s;++s){var c=a[s],f=o.parseKeys(c,n[c],e);i=r.merge(i,f)}return r.compact(i)}}])});
src/components/ChangeTable.js
google/stijl
// Copyright 2016 Google Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. import React from 'react'; import * as util from '../util'; const HeaderRow = ({ children }) => ( <tr> <td colSpan="5" style={{ backgroundColor: '#f4f4f4', fontWeight: 'bold' }}> { children } </td> </tr> ); const ChangeRow = ({ change }) => ( <tr className="change"> <td> <a href={change.url} target="_blank" title={change.subject}> {change.subject} </a> </td> <td> <div className={`status-marker status-marker-${change.status}`} /> {change.status} </td> <td> <span title={change.ownerName}>{change.ownerName}</span> </td> <td> <span title={change.repository}>{change.repository}</span> </td> <td> {util.formatPrettyTime(change.updated)} </td> </tr> ); const SpacingRow = () => ( <tr> <td colSpan="5" style={{ border: '0', backgroundColor: 'white' }}></td> </tr> ); const ChangeSubtable = ({ caption, changes }) => { const rows = changes.map( (change) => <ChangeRow key={change.url} change={change} />); return ( <tbody style={{ borderTop: '0' }}> <HeaderRow>{ caption }</HeaderRow> { rows } <SpacingRow /> </tbody> ); }; class ChangeTable extends React.Component { render() { const changesByCategory = { outgoing: [], incoming: [], pending: [], submitted: [], cced: [], }; for (const change of this.props.changes) { let category; if (change['owned']) { if (change['status'] == 'Pending') { category = 'pending'; } else if (change['status'] == 'Reviewing' || change['status'] == 'Approved') { category = 'outgoing'; } else if (change['status'] == 'Submitted') { const deltaInMillis = Date.now() - new Date(change['updated']); if (deltaInMillis < 7 * 24 * 60 * 60 * 1000) { category = 'submitted'; } } } else if (change['reviewing']) { category = 'incoming'; } else { category = 'cced'; } if (category) { changesByCategory[category].push(change); } } for (const key of Object.keys(changesByCategory)) { changesByCategory[key].sort((a, b) => { if (a['updated'] < b['updated']) { return 1; } if (a['updated'] > b['updated']) { return -1; } return 0; }); } return ( <table className="table table-hover table-bordered table-condensed review-table"> <colgroup> <col style={{ width: 'auto' }} /> <col style={{ width: '110px' }} /> <col style={{ width: '160px' }} /> <col style={{ width: 'auto' }} /> <col style={{ width: '96px' }} /> </colgroup> <ChangeSubtable caption="Incoming reviews" changes={changesByCategory.incoming} /> <ChangeSubtable caption="Outgoing reviews" changes={changesByCategory.outgoing} /> <ChangeSubtable caption="CC'ed reviews" changes={changesByCategory.cced} /> <ChangeSubtable caption="Pending reviews" changes={changesByCategory.pending} /> <ChangeSubtable caption="Recently submitted" changes={changesByCategory.submitted} /> </table> ); } } export default ChangeTable;
example/index.ios.js
BipinBhandari/react-native-item-picker
/** * Sample React Native App * https://github.com/facebook/react-native * @flow */ import React, { Component } from 'react'; import { AppRegistry, StyleSheet, Text, View, Image, Dimensions } from 'react-native'; import Selector from "react-native-item-picker" // import Selector from "./components/Selector" export default class example extends Component { render() { var {height, width} = Dimensions.get('window'); return ( <Image source={require("./background.png")} style={{resizeMode: "cover", width: width}}> <View style={{paddingTop: 80}}> <Selector title="Pick your language" multiSelect={false} titleStyle={{ backgroundColor: "transparent" }} collection={[ {id: 1, name: "Nepali"}, {id: 2, name: "English"}, {id: 3, name: "Hindi"}, {id: 4, name: "Other"}, ]} selectedIndex={1} /> </View> </Image> ); } } const styles = StyleSheet.create({ container: { flex: 1, justifyContent: 'center', alignItems: 'center', backgroundColor: '#F5FCFF', }, welcome: { fontSize: 20, textAlign: 'center', margin: 10, }, instructions: { textAlign: 'center', color: '#333333', marginBottom: 5, }, }); AppRegistry.registerComponent('example', () => example);
spec/client/js/components/CapsulingSizingSpec.js
clodelgosuico/mx_app_capsuling
import React from 'react'; import CapsulingSizing from '../../../../src/client/js/components/CapsulingSizing'; import ReactTestUtils from 'react-testutils-additions'; describe('Capsuling Sizing', function () { var instance, user, saveCapsulingProfileSpy, goToNextSpy, goToPrevSpy; beforeEach(function () { saveCapsulingProfileSpy = jasmine.createSpy('saveCapsulingProfile') .and.callFake(function (userId, data, callback) { callback(); }); goToNextSpy = jasmine.createSpy('goToNext'); goToPrevSpy = jasmine.createSpy('goToPrev'); user = { uid: 123456789, firstName: 'Joe' }; }); describe('when previous profile exists', function () { beforeEach(function () { let capsulingProfile = { clothingSize: 'Regular', shoeSize: 'Medium' }; instance = ReactTestUtils.renderIntoDocument( <CapsulingSizing user={user} saveCapsulingProfile={saveCapsulingProfileSpy} goToNext={goToNextSpy} goToPrev={goToPrevSpy} capsulingProfile={capsulingProfile} /> ); }); describe('#render', function () { it('renders clothes radio elements pre-selected', function () { var radioElement = ReactTestUtils.find(instance, '.radio-group#clothes .radio label :radio[name=clothes]'); expect(radioElement.length).toBe(3); radioElement = ReactTestUtils.find(instance, '.radio-group .radio label :radio[name=clothes]'); expect(radioElement[0].value).toEqual('Petites'); expect(radioElement[1].value).toEqual('Regular'); expect(radioElement[2].value).toEqual('Plus Sizes'); radioElement = ReactTestUtils.find(instance, '.radio-group#clothes .radio label :radio:checked'); expect(radioElement.length).toBe(1); expect(radioElement[0].value).toBe('Regular'); }); it('renders shoes radio elements preselected', function () { var radioElement = ReactTestUtils.find(instance, '.radio-group#shoes .radio label :radio[name=shoes]'); expect(radioElement.length).toBe(3); radioElement = ReactTestUtils.find(instance, '.radio-group .radio label :radio[name=shoes]'); expect(radioElement[0].value).toEqual('Narrow'); expect(radioElement[1].value).toEqual('Medium'); expect(radioElement[2].value).toEqual('Wide'); radioElement = ReactTestUtils.find(instance, '.radio-group#shoes .radio label :radio:checked'); expect(radioElement.length).toBe(1); expect(radioElement[0].value).toBe('Medium'); }); it('renders the next button in enabled state', function () { expect(ReactTestUtils.find(instance, '.next-button.disabled').length).toBe(0); expect(ReactTestUtils.find(instance, '.next-button').length).toBe(1); }); }); }); describe('when previous profile does not exist', function () { beforeEach(function () { instance = ReactTestUtils.renderIntoDocument( <CapsulingSizing user={user} saveCapsulingProfile={saveCapsulingProfileSpy} goToNext={goToNextSpy} goToPrev={goToPrevSpy} /> ); }); describe('#render', function () { it('renders clothes radio elements with none pre-selected', function () { var radioElement = ReactTestUtils.find(instance, '.radio-group#clothes .radio label :radio[name=clothes]'); expect(radioElement.length).toBe(3); radioElement = ReactTestUtils.find(instance, '.radio-group .radio label :radio[name=clothes]'); expect(radioElement[0].value).toEqual('Petites'); expect(radioElement[1].value).toEqual('Regular'); expect(radioElement[2].value).toEqual('Plus Sizes'); expect(ReactTestUtils.find(instance, '.radio-group .radio label :radio[name=clothes]checked').length).toBe(0); }); it('renders shoes radio elements with none-preselected', function () { var radioElement = ReactTestUtils.find(instance, '.radio-group#shoes .radio label :radio[name=shoes]'); expect(radioElement.length).toBe(3); radioElement = ReactTestUtils.find(instance, '.radio-group .radio label :radio[name=shoes]'); expect(radioElement[0].value).toEqual('Narrow'); expect(radioElement[1].value).toEqual('Medium'); expect(radioElement[2].value).toEqual('Wide'); expect(ReactTestUtils.find(instance, '.radio-group .radio label :radio[name=shoes]checked').length).toBe(0); }); it('renders the next button in disabled state', function () { var link = ReactTestUtils.find(instance, '.next-button.disabled'); expect(link.length).toBe(1); }); }); }); describe('choosing shoes and clothing style', function () { beforeEach(function () { var clothesRadios, shoesRadios; instance = ReactTestUtils.renderIntoDocument( <CapsulingSizing user={user} saveCapsulingProfile={saveCapsulingProfileSpy} goToNext={goToNextSpy} goToPrev={goToPrevSpy} /> ); clothesRadios = ReactTestUtils.find(instance, 'input[type="radio"][name="clothes"]'); shoesRadios = ReactTestUtils.find(instance, 'input[type="radio"][name="shoes"]'); ReactTestUtils.Simulate.change(clothesRadios[1]); expect(ReactTestUtils.find(instance, '.next-button.disabled').length).toBe(1); ReactTestUtils.Simulate.change(shoesRadios[1]); expect(ReactTestUtils.find(instance, '.next-button.disabled').length).toBe(0); }); it('enables the next button', function () { expect(ReactTestUtils.find(instance, '.next-button').length).toBe(1); }); it('clicking the next button calls save and calls go to next function', function () { var nextButton = ReactTestUtils.find(instance, '.next-button')[0]; ReactTestUtils.Simulate.click(nextButton); expect(saveCapsulingProfileSpy).toHaveBeenCalledWith( null, {'clothingSize': 'Regular', 'shoeSize': 'Medium'}, jasmine.any(Function) ); expect(goToNextSpy).toHaveBeenCalled(); }); it('clicking the previous button calls go to prev function ', function () { var prevButton = ReactTestUtils.find(instance, '.prev-button')[0]; ReactTestUtils.Simulate.click(prevButton); expect(goToPrevSpy).toHaveBeenCalled(); }); }); });
docs/app/Examples/modules/Dropdown/index.js
ben174/Semantic-UI-React
import React from 'react' import Content from './Content' import States from './States' import Types from './Types' import Usage from './Usage' import Variations from './Variations' const DropdownExamples = () => ( <div> <Types /> <Content /> <States /> <Variations /> <Usage /> </div> ) export default DropdownExamples
ajax/libs/rxjs/2.2.15/rx.compat.js
callumacrae/cdnjs
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information. ;(function (undefined) { var objectTypes = { 'boolean': false, 'function': true, 'object': true, 'number': false, 'string': false, 'undefined': false }; var root = (objectTypes[typeof window] && window) || this, freeExports = objectTypes[typeof exports] && exports && !exports.nodeType && exports, freeModule = objectTypes[typeof module] && module && !module.nodeType && module, moduleExports = freeModule && freeModule.exports === freeExports && freeExports, freeGlobal = objectTypes[typeof global] && global; if (freeGlobal && (freeGlobal.global === freeGlobal || freeGlobal.window === freeGlobal)) { root = freeGlobal; } var Rx = { internals: {}, config: {} }; // Defaults function noop() { } function identity(x) { return x; } var defaultNow = (function () { return !!Date.now ? Date.now : function () { return +new Date; }; }()); function defaultComparer(x, y) { return isEqual(x, y); } function defaultSubComparer(x, y) { return x - y; } function defaultKeySerializer(x) { return x.toString(); } function defaultError(err) { throw err; } function isPromise(p) { return typeof p.then === 'function'; } // Errors var sequenceContainsNoElements = 'Sequence contains no elements.'; var argumentOutOfRange = 'Argument out of range'; var objectDisposed = 'Object has been disposed'; function checkDisposed() { if (this.isDisposed) { throw new Error(objectDisposed); } } /** `Object#toString` result shortcuts */ var argsClass = '[object Arguments]', arrayClass = '[object Array]', boolClass = '[object Boolean]', dateClass = '[object Date]', errorClass = '[object Error]', funcClass = '[object Function]', numberClass = '[object Number]', objectClass = '[object Object]', regexpClass = '[object RegExp]', stringClass = '[object String]'; var toString = Object.prototype.toString, hasOwnProperty = Object.prototype.hasOwnProperty, supportsArgsClass = toString.call(arguments) == argsClass, // For less <IE9 && FF<4 suportNodeClass, errorProto = Error.prototype, objectProto = Object.prototype, propertyIsEnumerable = objectProto.propertyIsEnumerable; try { suportNodeClass = !(toString.call(document) == objectClass && !({ 'toString': 0 } + '')); } catch(e) { suportNodeClass = true; } var shadowedProps = [ 'constructor', 'hasOwnProperty', 'isPrototypeOf', 'propertyIsEnumerable', 'toLocaleString', 'toString', 'valueOf' ]; var nonEnumProps = {}; nonEnumProps[arrayClass] = nonEnumProps[dateClass] = nonEnumProps[numberClass] = { 'constructor': true, 'toLocaleString': true, 'toString': true, 'valueOf': true }; nonEnumProps[boolClass] = nonEnumProps[stringClass] = { 'constructor': true, 'toString': true, 'valueOf': true }; nonEnumProps[errorClass] = nonEnumProps[funcClass] = nonEnumProps[regexpClass] = { 'constructor': true, 'toString': true }; nonEnumProps[objectClass] = { 'constructor': true }; var support = {}; (function () { var ctor = function() { this.x = 1; }, props = []; ctor.prototype = { 'valueOf': 1, 'y': 1 }; for (var key in new ctor) { props.push(key); } for (key in arguments) { } // Detect if `name` or `message` properties of `Error.prototype` are enumerable by default. support.enumErrorProps = propertyIsEnumerable.call(errorProto, 'message') || propertyIsEnumerable.call(errorProto, 'name'); // Detect if `prototype` properties are enumerable by default. support.enumPrototypes = propertyIsEnumerable.call(ctor, 'prototype'); // Detect if `arguments` object indexes are non-enumerable support.nonEnumArgs = key != 0; // Detect if properties shadowing those on `Object.prototype` are non-enumerable. support.nonEnumShadows = !/valueOf/.test(props); }(1)); function isObject(value) { // check if the value is the ECMAScript language type of Object // http://es5.github.io/#x8 // and avoid a V8 bug // https://code.google.com/p/v8/issues/detail?id=2291 var type = typeof value; return value && (type == 'function' || type == 'object') || false; } function keysIn(object) { var result = []; if (!isObject(object)) { return result; } if (support.nonEnumArgs && object.length && isArguments(object)) { object = slice.call(object); } var skipProto = support.enumPrototypes && typeof object == 'function', skipErrorProps = support.enumErrorProps && (object === errorProto || object instanceof Error); for (var key in object) { if (!(skipProto && key == 'prototype') && !(skipErrorProps && (key == 'message' || key == 'name'))) { result.push(key); } } if (support.nonEnumShadows && object !== objectProto) { var ctor = object.constructor, index = -1, length = shadowedProps.length; if (object === (ctor && ctor.prototype)) { var className = object === stringProto ? stringClass : object === errorProto ? errorClass : toString.call(object), nonEnum = nonEnumProps[className]; } while (++index < length) { key = shadowedProps[index]; if (!(nonEnum && nonEnum[key]) && hasOwnProperty.call(object, key)) { result.push(key); } } } return result; } function internalFor(object, callback, keysFunc) { var index = -1, props = keysFunc(object), length = props.length; while (++index < length) { var key = props[index]; if (callback(object[key], key, object) === false) { break; } } return object; } function internalForIn(object, callback) { return internalFor(object, callback, keysIn); } function isNode(value) { // IE < 9 presents DOM nodes as `Object` objects except they have `toString` // methods that are `typeof` "string" and still can coerce nodes to strings return typeof value.toString != 'function' && typeof (value + '') == 'string'; } function isArguments(value) { return (value && typeof value == 'object') ? toString.call(value) == argsClass : false; } // fallback for browsers that can't detect `arguments` objects by [[Class]] if (!supportsArgsClass) { isArguments = function(value) { return (value && typeof value == 'object') ? hasOwnProperty.call(value, 'callee') : false; }; } function isFunction(value) { return typeof value == 'function'; } // fallback for older versions of Chrome and Safari if (isFunction(/x/)) { isFunction = function(value) { return typeof value == 'function' && toString.call(value) == funcClass; }; } var isEqual = Rx.internals.isEqual = function (x, y) { return deepEquals(x, y, [], []); }; /** @private * Used for deep comparison **/ function deepEquals(a, b, stackA, stackB) { // exit early for identical values if (a === b) { // treat `+0` vs. `-0` as not equal return a !== 0 || (1 / a == 1 / b); } var type = typeof a, otherType = typeof b; // exit early for unlike primitive values if (a === a && (a == null || b == null || (type != 'function' && type != 'object' && otherType != 'function' && otherType != 'object'))) { return false; } // compare [[Class]] names var className = toString.call(a), otherClass = toString.call(b); if (className == argsClass) { className = objectClass; } if (otherClass == argsClass) { otherClass = objectClass; } if (className != otherClass) { return false; } switch (className) { case boolClass: case dateClass: // coerce dates and booleans to numbers, dates to milliseconds and booleans // to `1` or `0` treating invalid dates coerced to `NaN` as not equal return +a == +b; case numberClass: // treat `NaN` vs. `NaN` as equal return (a != +a) ? b != +b // but treat `-0` vs. `+0` as not equal : (a == 0 ? (1 / a == 1 / b) : a == +b); case regexpClass: case stringClass: // coerce regexes to strings (http://es5.github.io/#x15.10.6.4) // treat string primitives and their corresponding object instances as equal return a == String(b); } var isArr = className == arrayClass; if (!isArr) { // exit for functions and DOM nodes if (className != objectClass || (!support.nodeClass && (isNode(a) || isNode(b)))) { return false; } // in older versions of Opera, `arguments` objects have `Array` constructors var ctorA = !support.argsObject && isArguments(a) ? Object : a.constructor, ctorB = !support.argsObject && isArguments(b) ? Object : b.constructor; // non `Object` object instances with different constructors are not equal if (ctorA != ctorB && !(hasOwnProperty.call(a, 'constructor') && hasOwnProperty.call(b, 'constructor')) && !(isFunction(ctorA) && ctorA instanceof ctorA && isFunction(ctorB) && ctorB instanceof ctorB) && ('constructor' in a && 'constructor' in b) ) { return false; } } // assume cyclic structures are equal // the algorithm for detecting cyclic structures is adapted from ES 5.1 // section 15.12.3, abstract operation `JO` (http://es5.github.io/#x15.12.3) var initedStack = !stackA; stackA || (stackA = []); stackB || (stackB = []); var length = stackA.length; while (length--) { if (stackA[length] == a) { return stackB[length] == b; } } var size = 0; result = true; // add `a` and `b` to the stack of traversed objects stackA.push(a); stackB.push(b); // recursively compare objects and arrays (susceptible to call stack limits) if (isArr) { // compare lengths to determine if a deep comparison is necessary length = a.length; size = b.length; result = size == length; if (result) { // deep compare the contents, ignoring non-numeric properties while (size--) { var index = length, value = b[size]; if (!(result = deepEquals(a[size], value, stackA, stackB))) { break; } } } } else { // deep compare objects using `forIn`, instead of `forOwn`, to avoid `Object.keys` // which, in this case, is more costly internalForIn(b, function(value, key, b) { if (hasOwnProperty.call(b, key)) { // count the number of properties. size++; // deep compare each property value. return (result = hasOwnProperty.call(a, key) && deepEquals(a[key], value, stackA, stackB)); } }); if (result) { // ensure both objects have the same number of properties internalForIn(a, function(value, key, a) { if (hasOwnProperty.call(a, key)) { // `size` will be `-1` if `a` has more properties than `b` return (result = --size > -1); } }); } } stackA.pop(); stackB.pop(); return result; } var slice = Array.prototype.slice; function argsOrArray(args, idx) { return args.length === 1 && Array.isArray(args[idx]) ? args[idx] : slice.call(args); } var hasProp = {}.hasOwnProperty; /** @private */ var inherits = this.inherits = Rx.internals.inherits = function (child, parent) { function __() { this.constructor = child; } __.prototype = parent.prototype; child.prototype = new __(); }; /** @private */ var addProperties = Rx.internals.addProperties = function (obj) { var sources = slice.call(arguments, 1); for (var i = 0, len = sources.length; i < len; i++) { var source = sources[i]; for (var prop in source) { obj[prop] = source[prop]; } } }; // Rx Utils var addRef = Rx.internals.addRef = function (xs, r) { return new AnonymousObservable(function (observer) { return new CompositeDisposable(r.getDisposable(), xs.subscribe(observer)); }); }; // Collection polyfills function arrayInitialize(count, factory) { var a = new Array(count); for (var i = 0; i < count; i++) { a[i] = factory(); } return a; } // Utilities if (!Function.prototype.bind) { Function.prototype.bind = function (that) { var target = this, args = slice.call(arguments, 1); var bound = function () { if (this instanceof bound) { function F() { } F.prototype = target.prototype; var self = new F(); var result = target.apply(self, args.concat(slice.call(arguments))); if (Object(result) === result) { return result; } return self; } else { return target.apply(that, args.concat(slice.call(arguments))); } }; return bound; }; } var boxedString = Object("a"), splitString = boxedString[0] != "a" || !(0 in boxedString); if (!Array.prototype.every) { Array.prototype.every = function every(fun /*, thisp */) { var object = Object(this), self = splitString && {}.toString.call(this) == stringClass ? this.split("") : object, length = self.length >>> 0, thisp = arguments[1]; if ({}.toString.call(fun) != funcClass) { throw new TypeError(fun + " is not a function"); } for (var i = 0; i < length; i++) { if (i in self && !fun.call(thisp, self[i], i, object)) { return false; } } return true; }; } if (!Array.prototype.map) { Array.prototype.map = function map(fun /*, thisp*/) { var object = Object(this), self = splitString && {}.toString.call(this) == stringClass ? this.split("") : object, length = self.length >>> 0, result = Array(length), thisp = arguments[1]; if ({}.toString.call(fun) != funcClass) { throw new TypeError(fun + " is not a function"); } for (var i = 0; i < length; i++) { if (i in self) result[i] = fun.call(thisp, self[i], i, object); } return result; }; } if (!Array.prototype.filter) { Array.prototype.filter = function (predicate) { var results = [], item, t = new Object(this); for (var i = 0, len = t.length >>> 0; i < len; i++) { item = t[i]; if (i in t && predicate.call(arguments[1], item, i, t)) { results.push(item); } } return results; }; } if (!Array.isArray) { Array.isArray = function (arg) { return Object.prototype.toString.call(arg) == arrayClass; }; } if (!Array.prototype.indexOf) { Array.prototype.indexOf = function indexOf(searchElement) { var t = Object(this); var len = t.length >>> 0; if (len === 0) { return -1; } var n = 0; if (arguments.length > 1) { n = Number(arguments[1]); if (n !== n) { n = 0; } else if (n !== 0 && n != Infinity && n !== -Infinity) { n = (n > 0 || -1) * Math.floor(Math.abs(n)); } } if (n >= len) { return -1; } var k = n >= 0 ? n : Math.max(len - Math.abs(n), 0); for (; k < len; k++) { if (k in t && t[k] === searchElement) { return k; } } return -1; }; } // Collections var IndexedItem = function (id, value) { this.id = id; this.value = value; }; IndexedItem.prototype.compareTo = function (other) { var c = this.value.compareTo(other.value); if (c === 0) { c = this.id - other.id; } return c; }; // Priority Queue for Scheduling var PriorityQueue = Rx.internals.PriorityQueue = function (capacity) { this.items = new Array(capacity); this.length = 0; }; var priorityProto = PriorityQueue.prototype; priorityProto.isHigherPriority = function (left, right) { return this.items[left].compareTo(this.items[right]) < 0; }; priorityProto.percolate = function (index) { if (index >= this.length || index < 0) { return; } var parent = index - 1 >> 1; if (parent < 0 || parent === index) { return; } if (this.isHigherPriority(index, parent)) { var temp = this.items[index]; this.items[index] = this.items[parent]; this.items[parent] = temp; this.percolate(parent); } }; priorityProto.heapify = function (index) { if (index === undefined) { index = 0; } if (index >= this.length || index < 0) { return; } var left = 2 * index + 1, right = 2 * index + 2, first = index; if (left < this.length && this.isHigherPriority(left, first)) { first = left; } if (right < this.length && this.isHigherPriority(right, first)) { first = right; } if (first !== index) { var temp = this.items[index]; this.items[index] = this.items[first]; this.items[first] = temp; this.heapify(first); } }; priorityProto.peek = function () { return this.items[0].value; }; priorityProto.removeAt = function (index) { this.items[index] = this.items[--this.length]; delete this.items[this.length]; this.heapify(); }; priorityProto.dequeue = function () { var result = this.peek(); this.removeAt(0); return result; }; priorityProto.enqueue = function (item) { var index = this.length++; this.items[index] = new IndexedItem(PriorityQueue.count++, item); this.percolate(index); }; priorityProto.remove = function (item) { for (var i = 0; i < this.length; i++) { if (this.items[i].value === item) { this.removeAt(i); return true; } } return false; }; PriorityQueue.count = 0; /** * Represents a group of disposable resources that are disposed together. * @constructor */ var CompositeDisposable = Rx.CompositeDisposable = function () { this.disposables = argsOrArray(arguments, 0); this.isDisposed = false; this.length = this.disposables.length; }; var CompositeDisposablePrototype = CompositeDisposable.prototype; /** * Adds a disposable to the CompositeDisposable or disposes the disposable if the CompositeDisposable is disposed. * @param {Mixed} item Disposable to add. */ CompositeDisposablePrototype.add = function (item) { if (this.isDisposed) { item.dispose(); } else { this.disposables.push(item); this.length++; } }; /** * Removes and disposes the first occurrence of a disposable from the CompositeDisposable. * @param {Mixed} item Disposable to remove. * @returns {Boolean} true if found; false otherwise. */ CompositeDisposablePrototype.remove = function (item) { var shouldDispose = false; if (!this.isDisposed) { var idx = this.disposables.indexOf(item); if (idx !== -1) { shouldDispose = true; this.disposables.splice(idx, 1); this.length--; item.dispose(); } } return shouldDispose; }; /** * Disposes all disposables in the group and removes them from the group. */ CompositeDisposablePrototype.dispose = function () { if (!this.isDisposed) { this.isDisposed = true; var currentDisposables = this.disposables.slice(0); this.disposables = []; this.length = 0; for (var i = 0, len = currentDisposables.length; i < len; i++) { currentDisposables[i].dispose(); } } }; /** * Removes and disposes all disposables from the CompositeDisposable, but does not dispose the CompositeDisposable. */ CompositeDisposablePrototype.clear = function () { var currentDisposables = this.disposables.slice(0); this.disposables = []; this.length = 0; for (var i = 0, len = currentDisposables.length; i < len; i++) { currentDisposables[i].dispose(); } }; /** * Determines whether the CompositeDisposable contains a specific disposable. * @param {Mixed} item Disposable to search for. * @returns {Boolean} true if the disposable was found; otherwise, false. */ CompositeDisposablePrototype.contains = function (item) { return this.disposables.indexOf(item) !== -1; }; /** * Converts the existing CompositeDisposable to an array of disposables * @returns {Array} An array of disposable objects. */ CompositeDisposablePrototype.toArray = function () { return this.disposables.slice(0); }; /** * Provides a set of static methods for creating Disposables. * * @constructor * @param {Function} dispose Action to run during the first call to dispose. The action is guaranteed to be run at most once. */ var Disposable = Rx.Disposable = function (action) { this.isDisposed = false; this.action = action || noop; }; /** Performs the task of cleaning up resources. */ Disposable.prototype.dispose = function () { if (!this.isDisposed) { this.action(); this.isDisposed = true; } }; /** * Creates a disposable object that invokes the specified action when disposed. * @param {Function} dispose Action to run during the first call to dispose. The action is guaranteed to be run at most once. * @return {Disposable} The disposable object that runs the given action upon disposal. */ var disposableCreate = Disposable.create = function (action) { return new Disposable(action); }; /** * Gets the disposable that does nothing when disposed. */ var disposableEmpty = Disposable.empty = { dispose: noop }; var BooleanDisposable = (function () { function BooleanDisposable (isSingle) { this.isSingle = isSingle; this.isDisposed = false; this.current = null; } var booleanDisposablePrototype = BooleanDisposable.prototype; /** * Gets the underlying disposable. * @return The underlying disposable. */ booleanDisposablePrototype.getDisposable = function () { return this.current; }; /** * Sets the underlying disposable. * @param {Disposable} value The new underlying disposable. */ booleanDisposablePrototype.setDisposable = function (value) { if (this.current && this.isSingle) { throw new Error('Disposable has already been assigned'); } var shouldDispose = this.isDisposed, old; if (!shouldDispose) { old = this.current; this.current = value; } if (old) { old.dispose(); } if (shouldDispose && value) { value.dispose(); } }; /** * Disposes the underlying disposable as well as all future replacements. */ booleanDisposablePrototype.dispose = function () { var old; if (!this.isDisposed) { this.isDisposed = true; old = this.current; this.current = null; } if (old) { old.dispose(); } }; return BooleanDisposable; }()); /** * Represents a disposable resource which only allows a single assignment of its underlying disposable resource. * If an underlying disposable resource has already been set, future attempts to set the underlying disposable resource will throw an Error. */ var SingleAssignmentDisposable = Rx.SingleAssignmentDisposable = (function (super_) { inherits(SingleAssignmentDisposable, super_); function SingleAssignmentDisposable() { super_.call(this, true); } return SingleAssignmentDisposable; }(BooleanDisposable)); /** * Represents a disposable resource whose underlying disposable resource can be replaced by another disposable resource, causing automatic disposal of the previous underlying disposable resource. */ var SerialDisposable = Rx.SerialDisposable = (function (super_) { inherits(SerialDisposable, super_); function SerialDisposable() { super_.call(this, false); } return SerialDisposable; }(BooleanDisposable)); /** * Represents a disposable resource that only disposes its underlying disposable resource when all dependent disposable objects have been disposed. */ var RefCountDisposable = Rx.RefCountDisposable = (function () { function InnerDisposable(disposable) { this.disposable = disposable; this.disposable.count++; this.isInnerDisposed = false; } InnerDisposable.prototype.dispose = function () { if (!this.disposable.isDisposed) { if (!this.isInnerDisposed) { this.isInnerDisposed = true; this.disposable.count--; if (this.disposable.count === 0 && this.disposable.isPrimaryDisposed) { this.disposable.isDisposed = true; this.disposable.underlyingDisposable.dispose(); } } } }; /** * Initializes a new instance of the RefCountDisposable with the specified disposable. * @constructor * @param {Disposable} disposable Underlying disposable. */ function RefCountDisposable(disposable) { this.underlyingDisposable = disposable; this.isDisposed = false; this.isPrimaryDisposed = false; this.count = 0; } /** * Disposes the underlying disposable only when all dependent disposables have been disposed */ RefCountDisposable.prototype.dispose = function () { if (!this.isDisposed) { if (!this.isPrimaryDisposed) { this.isPrimaryDisposed = true; if (this.count === 0) { this.isDisposed = true; this.underlyingDisposable.dispose(); } } } }; /** * Returns a dependent disposable that when disposed decreases the refcount on the underlying disposable. * @returns {Disposable} A dependent disposable contributing to the reference count that manages the underlying disposable's lifetime. */ RefCountDisposable.prototype.getDisposable = function () { return this.isDisposed ? disposableEmpty : new InnerDisposable(this); }; return RefCountDisposable; })(); function ScheduledDisposable(scheduler, disposable) { this.scheduler = scheduler; this.disposable = disposable; this.isDisposed = false; } ScheduledDisposable.prototype.dispose = function () { var parent = this; this.scheduler.schedule(function () { if (!parent.isDisposed) { parent.isDisposed = true; parent.disposable.dispose(); } }); }; var ScheduledItem = Rx.internals.ScheduledItem = function (scheduler, state, action, dueTime, comparer) { this.scheduler = scheduler; this.state = state; this.action = action; this.dueTime = dueTime; this.comparer = comparer || defaultSubComparer; this.disposable = new SingleAssignmentDisposable(); } ScheduledItem.prototype.invoke = function () { this.disposable.setDisposable(this.invokeCore()); }; ScheduledItem.prototype.compareTo = function (other) { return this.comparer(this.dueTime, other.dueTime); }; ScheduledItem.prototype.isCancelled = function () { return this.disposable.isDisposed; }; ScheduledItem.prototype.invokeCore = function () { return this.action(this.scheduler, this.state); }; /** Provides a set of static properties to access commonly used schedulers. */ var Scheduler = Rx.Scheduler = (function () { /** * @constructor * @private */ function Scheduler(now, schedule, scheduleRelative, scheduleAbsolute) { this.now = now; this._schedule = schedule; this._scheduleRelative = scheduleRelative; this._scheduleAbsolute = scheduleAbsolute; } function invokeRecImmediate(scheduler, pair) { var state = pair.first, action = pair.second, group = new CompositeDisposable(), recursiveAction = function (state1) { action(state1, function (state2) { var isAdded = false, isDone = false, d = scheduler.scheduleWithState(state2, function (scheduler1, state3) { if (isAdded) { group.remove(d); } else { isDone = true; } recursiveAction(state3); return disposableEmpty; }); if (!isDone) { group.add(d); isAdded = true; } }); }; recursiveAction(state); return group; } function invokeRecDate(scheduler, pair, method) { var state = pair.first, action = pair.second, group = new CompositeDisposable(), recursiveAction = function (state1) { action(state1, function (state2, dueTime1) { var isAdded = false, isDone = false, d = scheduler[method].call(scheduler, state2, dueTime1, function (scheduler1, state3) { if (isAdded) { group.remove(d); } else { isDone = true; } recursiveAction(state3); return disposableEmpty; }); if (!isDone) { group.add(d); isAdded = true; } }); }; recursiveAction(state); return group; } function invokeAction(scheduler, action) { action(); return disposableEmpty; } var schedulerProto = Scheduler.prototype; /** * Returns a scheduler that wraps the original scheduler, adding exception handling for scheduled actions. * @param {Function} handler Handler that's run if an exception is caught. The exception will be rethrown if the handler returns false. * @returns {Scheduler} Wrapper around the original scheduler, enforcing exception handling. */ schedulerProto.catchException = schedulerProto['catch'] = function (handler) { return new CatchScheduler(this, handler); }; /** * Schedules a periodic piece of work by dynamically discovering the scheduler's capabilities. The periodic task will be scheduled using window.setInterval for the base implementation. * @param {Number} period Period for running the work periodically. * @param {Function} action Action to be executed. * @returns {Disposable} The disposable object used to cancel the scheduled recurring action (best effort). */ schedulerProto.schedulePeriodic = function (period, action) { return this.schedulePeriodicWithState(null, period, function () { action(); }); }; /** * Schedules a periodic piece of work by dynamically discovering the scheduler's capabilities. The periodic task will be scheduled using window.setInterval for the base implementation. * @param {Mixed} state Initial state passed to the action upon the first iteration. * @param {Number} period Period for running the work periodically. * @param {Function} action Action to be executed, potentially updating the state. * @returns {Disposable} The disposable object used to cancel the scheduled recurring action (best effort). */ schedulerProto.schedulePeriodicWithState = function (state, period, action) { var s = state, id = setInterval(function () { s = action(s); }, period); return disposableCreate(function () { clearInterval(id); }); }; /** * Schedules an action to be executed. * @param {Function} action Action to execute. * @returns {Disposable} The disposable object used to cancel the scheduled action (best effort). */ schedulerProto.schedule = function (action) { return this._schedule(action, invokeAction); }; /** * Schedules an action to be executed. * @param state State passed to the action to be executed. * @param {Function} action Action to be executed. * @returns {Disposable} The disposable object used to cancel the scheduled action (best effort). */ schedulerProto.scheduleWithState = function (state, action) { return this._schedule(state, action); }; /** * Schedules an action to be executed after the specified relative due time. * @param {Function} action Action to execute. * @param {Number} dueTime Relative time after which to execute the action. * @returns {Disposable} The disposable object used to cancel the scheduled action (best effort). */ schedulerProto.scheduleWithRelative = function (dueTime, action) { return this._scheduleRelative(action, dueTime, invokeAction); }; /** * Schedules an action to be executed after dueTime. * @param state State passed to the action to be executed. * @param {Function} action Action to be executed. * @param {Number} dueTime Relative time after which to execute the action. * @returns {Disposable} The disposable object used to cancel the scheduled action (best effort). */ schedulerProto.scheduleWithRelativeAndState = function (state, dueTime, action) { return this._scheduleRelative(state, dueTime, action); }; /** * Schedules an action to be executed at the specified absolute due time. * @param {Function} action Action to execute. * @param {Number} dueTime Absolute time at which to execute the action. * @returns {Disposable} The disposable object used to cancel the scheduled action (best effort). */ schedulerProto.scheduleWithAbsolute = function (dueTime, action) { return this._scheduleAbsolute(action, dueTime, invokeAction); }; /** * Schedules an action to be executed at dueTime. * @param {Mixed} state State passed to the action to be executed. * @param {Function} action Action to be executed. * @param {Number}dueTime Absolute time at which to execute the action. * @returns {Disposable} The disposable object used to cancel the scheduled action (best effort). */ schedulerProto.scheduleWithAbsoluteAndState = function (state, dueTime, action) { return this._scheduleAbsolute(state, dueTime, action); }; /** * Schedules an action to be executed recursively. * @param {Function} action Action to execute recursively. The parameter passed to the action is used to trigger recursive scheduling of the action. * @returns {Disposable} The disposable object used to cancel the scheduled action (best effort). */ schedulerProto.scheduleRecursive = function (action) { return this.scheduleRecursiveWithState(action, function (_action, self) { _action(function () { self(_action); }); }); }; /** * Schedules an action to be executed recursively. * @param {Mixed} state State passed to the action to be executed. * @param {Function} action Action to execute recursively. The last parameter passed to the action is used to trigger recursive scheduling of the action, passing in recursive invocation state. * @returns {Disposable} The disposable object used to cancel the scheduled action (best effort). */ schedulerProto.scheduleRecursiveWithState = function (state, action) { return this.scheduleWithState({ first: state, second: action }, function (s, p) { return invokeRecImmediate(s, p); }); }; /** * Schedules an action to be executed recursively after a specified relative due time. * @param {Function} action Action to execute recursively. The parameter passed to the action is used to trigger recursive scheduling of the action at the specified relative time. * @param {Number}dueTime Relative time after which to execute the action for the first time. * @returns {Disposable} The disposable object used to cancel the scheduled action (best effort). */ schedulerProto.scheduleRecursiveWithRelative = function (dueTime, action) { return this.scheduleRecursiveWithRelativeAndState(action, dueTime, function (_action, self) { _action(function (dt) { self(_action, dt); }); }); }; /** * Schedules an action to be executed recursively after a specified relative due time. * @param {Mixed} state State passed to the action to be executed. * @param {Function} action Action to execute recursively. The last parameter passed to the action is used to trigger recursive scheduling of the action, passing in the recursive due time and invocation state. * @param {Number}dueTime Relative time after which to execute the action for the first time. * @returns {Disposable} The disposable object used to cancel the scheduled action (best effort). */ schedulerProto.scheduleRecursiveWithRelativeAndState = function (state, dueTime, action) { return this._scheduleRelative({ first: state, second: action }, dueTime, function (s, p) { return invokeRecDate(s, p, 'scheduleWithRelativeAndState'); }); }; /** * Schedules an action to be executed recursively at a specified absolute due time. * @param {Function} action Action to execute recursively. The parameter passed to the action is used to trigger recursive scheduling of the action at the specified absolute time. * @param {Number}dueTime Absolute time at which to execute the action for the first time. * @returns {Disposable} The disposable object used to cancel the scheduled action (best effort). */ schedulerProto.scheduleRecursiveWithAbsolute = function (dueTime, action) { return this.scheduleRecursiveWithAbsoluteAndState(action, dueTime, function (_action, self) { _action(function (dt) { self(_action, dt); }); }); }; /** * Schedules an action to be executed recursively at a specified absolute due time. * @param {Mixed} state State passed to the action to be executed. * @param {Function} action Action to execute recursively. The last parameter passed to the action is used to trigger recursive scheduling of the action, passing in the recursive due time and invocation state. * @param {Number}dueTime Absolute time at which to execute the action for the first time. * @returns {Disposable} The disposable object used to cancel the scheduled action (best effort). */ schedulerProto.scheduleRecursiveWithAbsoluteAndState = function (state, dueTime, action) { return this._scheduleAbsolute({ first: state, second: action }, dueTime, function (s, p) { return invokeRecDate(s, p, 'scheduleWithAbsoluteAndState'); }); }; /** Gets the current time according to the local machine's system clock. */ Scheduler.now = defaultNow; /** * Normalizes the specified TimeSpan value to a positive value. * @param {Number} timeSpan The time span value to normalize. * @returns {Number} The specified TimeSpan value if it is zero or positive; otherwise, 0 */ Scheduler.normalize = function (timeSpan) { if (timeSpan < 0) { timeSpan = 0; } return timeSpan; }; return Scheduler; }()); var normalizeTime = Scheduler.normalize; var SchedulePeriodicRecursive = Rx.internals.SchedulePeriodicRecursive = (function () { function tick(command, recurse) { recurse(0, this._period); try { this._state = this._action(this._state); } catch (e) { this._cancel.dispose(); throw e; } } function SchedulePeriodicRecursive(scheduler, state, period, action) { this._scheduler = scheduler; this._state = state; this._period = period; this._action = action; } SchedulePeriodicRecursive.prototype.start = function () { var d = new SingleAssignmentDisposable(); this._cancel = d; d.setDisposable(this._scheduler.scheduleRecursiveWithRelativeAndState(0, this._period, tick.bind(this))); return d; }; return SchedulePeriodicRecursive; }()); /** * Gets a scheduler that schedules work immediately on the current thread. */ var immediateScheduler = Scheduler.immediate = (function () { function scheduleNow(state, action) { return action(this, state); } function scheduleRelative(state, dueTime, action) { var dt = normalizeTime(dt); while (dt - this.now() > 0) { } return action(this, state); } function scheduleAbsolute(state, dueTime, action) { return this.scheduleWithRelativeAndState(state, dueTime - this.now(), action); } return new Scheduler(defaultNow, scheduleNow, scheduleRelative, scheduleAbsolute); }()); /** * Gets a scheduler that schedules work as soon as possible on the current thread. */ var currentThreadScheduler = Scheduler.currentThread = (function () { var queue; function runTrampoline (q) { var item; while (q.length > 0) { item = q.dequeue(); if (!item.isCancelled()) { // Note, do not schedule blocking work! while (item.dueTime - Scheduler.now() > 0) { } if (!item.isCancelled()) { item.invoke(); } } } } function scheduleNow(state, action) { return this.scheduleWithRelativeAndState(state, 0, action); } function scheduleRelative(state, dueTime, action) { var dt = this.now() + Scheduler.normalize(dueTime), si = new ScheduledItem(this, state, action, dt), t; if (!queue) { queue = new PriorityQueue(4); queue.enqueue(si); try { runTrampoline(queue); } catch (e) { throw e; } finally { queue = null; } } else { queue.enqueue(si); } return si.disposable; } function scheduleAbsolute(state, dueTime, action) { return this.scheduleWithRelativeAndState(state, dueTime - this.now(), action); } var currentScheduler = new Scheduler(defaultNow, scheduleNow, scheduleRelative, scheduleAbsolute); currentScheduler.scheduleRequired = function () { return queue === null; }; currentScheduler.ensureTrampoline = function (action) { if (queue === null) { return this.schedule(action); } else { return action(); } }; return currentScheduler; }()); var scheduleMethod, clearMethod = noop; (function () { var reNative = RegExp('^' + String(toString) .replace(/[.*+?^${}()|[\]\\]/g, '\\$&') .replace(/toString| for [^\]]+/g, '.*?') + '$' ); var setImmediate = typeof (setImmediate = freeGlobal && moduleExports && freeGlobal.setImmediate) == 'function' && !reNative.test(setImmediate) && setImmediate, clearImmediate = typeof (clearImmediate = freeGlobal && moduleExports && freeGlobal.clearImmediate) == 'function' && !reNative.test(clearImmediate) && clearImmediate; function postMessageSupported () { // Ensure not in a worker if (!root.postMessage || root.importScripts) { return false; } var isAsync = false, oldHandler = root.onmessage; // Test for async root.onmessage = function () { isAsync = true; }; root.postMessage('','*'); root.onmessage = oldHandler; return isAsync; } // Use in order, nextTick, setImmediate, postMessage, MessageChannel, script readystatechanged, setTimeout if (typeof process !== 'undefined' && {}.toString.call(process) === '[object process]') { scheduleMethod = process.nextTick; } else if (typeof setImmediate === 'function') { scheduleMethod = setImmediate; clearMethod = clearImmediate; } else if (postMessageSupported()) { var MSG_PREFIX = 'ms.rx.schedule' + Math.random(), tasks = {}, taskId = 0; function onGlobalPostMessage(event) { // Only if we're a match to avoid any other global events if (typeof event.data === 'string' && event.data.substring(0, MSG_PREFIX.length) === MSG_PREFIX) { var handleId = event.data.substring(MSG_PREFIX.length), action = tasks[handleId]; action(); delete tasks[handleId]; } } if (root.addEventListener) { root.addEventListener('message', onGlobalPostMessage, false); } else { root.attachEvent('onmessage', onGlobalPostMessage, false); } scheduleMethod = function (action) { var currentId = taskId++; tasks[currentId] = action; root.postMessage(MSG_PREFIX + currentId, '*'); }; } else if (!!root.MessageChannel) { var channel = new root.MessageChannel(), channelTasks = {}, channelTaskId = 0; channel.port1.onmessage = function (event) { var id = event.data, action = channelTasks[id]; action(); delete channelTasks[id]; }; scheduleMethod = function (action) { var id = channelTaskId++; channelTasks[id] = action; channel.port2.postMessage(id); }; } else if ('document' in root && 'onreadystatechange' in root.document.createElement('script')) { scheduleMethod = function (action) { var scriptElement = root.document.createElement('script'); scriptElement.onreadystatechange = function () { action(); scriptElement.onreadystatechange = null; scriptElement.parentNode.removeChild(scriptElement); scriptElement = null; }; root.document.documentElement.appendChild(scriptElement); }; } else { scheduleMethod = function (action) { return setTimeout(action, 0); }; clearMethod = clearTimeout; } }()); /** * Gets a scheduler that schedules work via a timed callback based upon platform. */ var timeoutScheduler = Scheduler.timeout = (function () { function scheduleNow(state, action) { var scheduler = this, disposable = new SingleAssignmentDisposable(); var id = scheduleMethod(function () { if (!disposable.isDisposed) { disposable.setDisposable(action(scheduler, state)); } }); return new CompositeDisposable(disposable, disposableCreate(function () { clearMethod(id); })); } function scheduleRelative(state, dueTime, action) { var scheduler = this, dt = Scheduler.normalize(dueTime); if (dt === 0) { return scheduler.scheduleWithState(state, action); } var disposable = new SingleAssignmentDisposable(); var id = setTimeout(function () { if (!disposable.isDisposed) { disposable.setDisposable(action(scheduler, state)); } }, dt); return new CompositeDisposable(disposable, disposableCreate(function () { clearTimeout(id); })); } function scheduleAbsolute(state, dueTime, action) { return this.scheduleWithRelativeAndState(state, dueTime - this.now(), action); } return new Scheduler(defaultNow, scheduleNow, scheduleRelative, scheduleAbsolute); })(); /** @private */ var CatchScheduler = (function (_super) { function localNow() { return this._scheduler.now(); } function scheduleNow(state, action) { return this._scheduler.scheduleWithState(state, this._wrap(action)); } function scheduleRelative(state, dueTime, action) { return this._scheduler.scheduleWithRelativeAndState(state, dueTime, this._wrap(action)); } function scheduleAbsolute(state, dueTime, action) { return this._scheduler.scheduleWithAbsoluteAndState(state, dueTime, this._wrap(action)); } inherits(CatchScheduler, _super); /** @private */ function CatchScheduler(scheduler, handler) { this._scheduler = scheduler; this._handler = handler; this._recursiveOriginal = null; this._recursiveWrapper = null; _super.call(this, localNow, scheduleNow, scheduleRelative, scheduleAbsolute); } /** @private */ CatchScheduler.prototype._clone = function (scheduler) { return new CatchScheduler(scheduler, this._handler); }; /** @private */ CatchScheduler.prototype._wrap = function (action) { var parent = this; return function (self, state) { try { return action(parent._getRecursiveWrapper(self), state); } catch (e) { if (!parent._handler(e)) { throw e; } return disposableEmpty; } }; }; /** @private */ CatchScheduler.prototype._getRecursiveWrapper = function (scheduler) { if (this._recursiveOriginal !== scheduler) { this._recursiveOriginal = scheduler; var wrapper = this._clone(scheduler); wrapper._recursiveOriginal = scheduler; wrapper._recursiveWrapper = wrapper; this._recursiveWrapper = wrapper; } return this._recursiveWrapper; }; /** @private */ CatchScheduler.prototype.schedulePeriodicWithState = function (state, period, action) { var self = this, failed = false, d = new SingleAssignmentDisposable(); d.setDisposable(this._scheduler.schedulePeriodicWithState(state, period, function (state1) { if (failed) { return null; } try { return action(state1); } catch (e) { failed = true; if (!self._handler(e)) { throw e; } d.dispose(); return null; } })); return d; }; return CatchScheduler; }(Scheduler)); /** * Represents a notification to an observer. */ var Notification = Rx.Notification = (function () { function Notification(kind, hasValue) { this.hasValue = hasValue == null ? false : hasValue; this.kind = kind; } var NotificationPrototype = Notification.prototype; /** * Invokes the delegate corresponding to the notification or the observer's method corresponding to the notification and returns the produced result. * * @memberOf Notification * @param {Any} observerOrOnNext Delegate to invoke for an OnNext notification or Observer to invoke the notification on.. * @param {Function} onError Delegate to invoke for an OnError notification. * @param {Function} onCompleted Delegate to invoke for an OnCompleted notification. * @returns {Any} Result produced by the observation. */ NotificationPrototype.accept = function (observerOrOnNext, onError, onCompleted) { if (arguments.length === 1 && typeof observerOrOnNext === 'object') { return this._acceptObservable(observerOrOnNext); } return this._accept(observerOrOnNext, onError, onCompleted); }; /** * Returns an observable sequence with a single notification. * * @memberOf Notification * @param {Scheduler} [scheduler] Scheduler to send out the notification calls on. * @returns {Observable} The observable sequence that surfaces the behavior of the notification upon subscription. */ NotificationPrototype.toObservable = function (scheduler) { var notification = this; scheduler || (scheduler = immediateScheduler); return new AnonymousObservable(function (observer) { return scheduler.schedule(function () { notification._acceptObservable(observer); if (notification.kind === 'N') { observer.onCompleted(); } }); }); }; return Notification; })(); /** * Creates an object that represents an OnNext notification to an observer. * @param {Any} value The value contained in the notification. * @returns {Notification} The OnNext notification containing the value. */ var notificationCreateOnNext = Notification.createOnNext = (function () { function _accept (onNext) { return onNext(this.value); } function _acceptObservable(observer) { return observer.onNext(this.value); } function toString () { return 'OnNext(' + this.value + ')'; } return function (value) { var notification = new Notification('N', true); notification.value = value; notification._accept = _accept; notification._acceptObservable = _acceptObservable; notification.toString = toString; return notification; }; }()); /** * Creates an object that represents an OnError notification to an observer. * @param {Any} error The exception contained in the notification. * @returns {Notification} The OnError notification containing the exception. */ var notificationCreateOnError = Notification.createOnError = (function () { function _accept (onNext, onError) { return onError(this.exception); } function _acceptObservable(observer) { return observer.onError(this.exception); } function toString () { return 'OnError(' + this.exception + ')'; } return function (exception) { var notification = new Notification('E'); notification.exception = exception; notification._accept = _accept; notification._acceptObservable = _acceptObservable; notification.toString = toString; return notification; }; }()); /** * Creates an object that represents an OnCompleted notification to an observer. * @returns {Notification} The OnCompleted notification. */ var notificationCreateOnCompleted = Notification.createOnCompleted = (function () { function _accept (onNext, onError, onCompleted) { return onCompleted(); } function _acceptObservable(observer) { return observer.onCompleted(); } function toString () { return 'OnCompleted()'; } return function () { var notification = new Notification('C'); notification._accept = _accept; notification._acceptObservable = _acceptObservable; notification.toString = toString; return notification; }; }()); /** * @constructor * @private */ var Enumerator = Rx.internals.Enumerator = function (moveNext, getCurrent) { this.moveNext = moveNext; this.getCurrent = getCurrent; }; /** * @static * @memberOf Enumerator * @private */ var enumeratorCreate = Enumerator.create = function (moveNext, getCurrent) { var done = false; return new Enumerator(function () { if (done) { return false; } var result = moveNext(); if (!result) { done = true; } return result; }, function () { return getCurrent(); }); }; var Enumerable = Rx.internals.Enumerable = function (getEnumerator) { this.getEnumerator = getEnumerator; }; Enumerable.prototype.concat = function () { var sources = this; return new AnonymousObservable(function (observer) { var e = sources.getEnumerator(), isDisposed, subscription = new SerialDisposable(); var cancelable = immediateScheduler.scheduleRecursive(function (self) { var current, hasNext; if (isDisposed) { return; } try { hasNext = e.moveNext(); if (hasNext) { current = e.getCurrent(); } } catch (ex) { observer.onError(ex); return; } if (!hasNext) { observer.onCompleted(); return; } var d = new SingleAssignmentDisposable(); subscription.setDisposable(d); d.setDisposable(current.subscribe( observer.onNext.bind(observer), observer.onError.bind(observer), function () { self(); }) ); }); return new CompositeDisposable(subscription, cancelable, disposableCreate(function () { isDisposed = true; })); }); }; Enumerable.prototype.catchException = function () { var sources = this; return new AnonymousObservable(function (observer) { var e = sources.getEnumerator(), isDisposed, lastException; var subscription = new SerialDisposable(); var cancelable = immediateScheduler.scheduleRecursive(function (self) { var current, hasNext; if (isDisposed) { return; } try { hasNext = e.moveNext(); if (hasNext) { current = e.getCurrent(); } } catch (ex) { observer.onError(ex); return; } if (!hasNext) { if (lastException) { observer.onError(lastException); } else { observer.onCompleted(); } return; } var d = new SingleAssignmentDisposable(); subscription.setDisposable(d); d.setDisposable(current.subscribe( observer.onNext.bind(observer), function (exn) { lastException = exn; self(); }, observer.onCompleted.bind(observer))); }); return new CompositeDisposable(subscription, cancelable, disposableCreate(function () { isDisposed = true; })); }); }; var enumerableRepeat = Enumerable.repeat = function (value, repeatCount) { if (arguments.length === 1) { repeatCount = -1; } return new Enumerable(function () { var current, left = repeatCount; return enumeratorCreate(function () { if (left === 0) { return false; } if (left > 0) { left--; } current = value; return true; }, function () { return current; }); }); }; var enumerableFor = Enumerable.forEach = function (source, selector, thisArg) { selector || (selector = identity); return new Enumerable(function () { var current, index = -1; return enumeratorCreate( function () { if (++index < source.length) { current = selector.call(thisArg, source[index], index, source); return true; } return false; }, function () { return current; } ); }); }; /** * Supports push-style iteration over an observable sequence. */ var Observer = Rx.Observer = function () { }; /** * Creates a notification callback from an observer. * * @param observer Observer object. * @returns The action that forwards its input notification to the underlying observer. */ Observer.prototype.toNotifier = function () { var observer = this; return function (n) { return n.accept(observer); }; }; /** * Hides the identity of an observer. * @returns An observer that hides the identity of the specified observer. */ Observer.prototype.asObserver = function () { return new AnonymousObserver(this.onNext.bind(this), this.onError.bind(this), this.onCompleted.bind(this)); }; /** * Checks access to the observer for grammar violations. This includes checking for multiple OnError or OnCompleted calls, as well as reentrancy in any of the observer methods. * If a violation is detected, an Error is thrown from the offending observer method call. * * @returns An observer that checks callbacks invocations against the observer grammar and, if the checks pass, forwards those to the specified observer. */ Observer.prototype.checked = function () { return new CheckedObserver(this); }; /** * Creates an observer from the specified OnNext, along with optional OnError, and OnCompleted actions. * * @static * @memberOf Observer * @param {Function} [onNext] Observer's OnNext action implementation. * @param {Function} [onError] Observer's OnError action implementation. * @param {Function} [onCompleted] Observer's OnCompleted action implementation. * @returns {Observer} The observer object implemented using the given actions. */ var observerCreate = Observer.create = function (onNext, onError, onCompleted) { onNext || (onNext = noop); onError || (onError = defaultError); onCompleted || (onCompleted = noop); return new AnonymousObserver(onNext, onError, onCompleted); }; /** * Creates an observer from a notification callback. * * @static * @memberOf Observer * @param {Function} handler Action that handles a notification. * @returns The observer object that invokes the specified handler using a notification corresponding to each message it receives. */ Observer.fromNotifier = function (handler) { return new AnonymousObserver(function (x) { return handler(notificationCreateOnNext(x)); }, function (exception) { return handler(notificationCreateOnError(exception)); }, function () { return handler(notificationCreateOnCompleted()); }); }; /** * Schedules the invocation of observer methods on the given scheduler. * @param {Scheduler} scheduler Scheduler to schedule observer messages on. * @returns {Observer} Observer whose messages are scheduled on the given scheduler. */ Observer.notifyOn = function (scheduler) { return new ObserveOnObserver(scheduler, this); }; /** * Abstract base class for implementations of the Observer class. * This base class enforces the grammar of observers where OnError and OnCompleted are terminal messages. */ var AbstractObserver = Rx.internals.AbstractObserver = (function (_super) { inherits(AbstractObserver, _super); /** * Creates a new observer in a non-stopped state. * * @constructor */ function AbstractObserver() { this.isStopped = false; _super.call(this); } /** * Notifies the observer of a new element in the sequence. * * @memberOf AbstractObserver * @param {Any} value Next element in the sequence. */ AbstractObserver.prototype.onNext = function (value) { if (!this.isStopped) { this.next(value); } }; /** * Notifies the observer that an exception has occurred. * * @memberOf AbstractObserver * @param {Any} error The error that has occurred. */ AbstractObserver.prototype.onError = function (error) { if (!this.isStopped) { this.isStopped = true; this.error(error); } }; /** * Notifies the observer of the end of the sequence. */ AbstractObserver.prototype.onCompleted = function () { if (!this.isStopped) { this.isStopped = true; this.completed(); } }; /** * Disposes the observer, causing it to transition to the stopped state. */ AbstractObserver.prototype.dispose = function () { this.isStopped = true; }; AbstractObserver.prototype.fail = function (e) { if (!this.isStopped) { this.isStopped = true; this.error(e); return true; } return false; }; return AbstractObserver; }(Observer)); /** * Class to create an Observer instance from delegate-based implementations of the on* methods. */ var AnonymousObserver = Rx.AnonymousObserver = (function (_super) { inherits(AnonymousObserver, _super); /** * Creates an observer from the specified OnNext, OnError, and OnCompleted actions. * @param {Any} onNext Observer's OnNext action implementation. * @param {Any} onError Observer's OnError action implementation. * @param {Any} onCompleted Observer's OnCompleted action implementation. */ function AnonymousObserver(onNext, onError, onCompleted) { _super.call(this); this._onNext = onNext; this._onError = onError; this._onCompleted = onCompleted; } /** * Calls the onNext action. * @param {Any} value Next element in the sequence. */ AnonymousObserver.prototype.next = function (value) { this._onNext(value); }; /** * Calls the onError action. * @param {Any} error The error that has occurred. */ AnonymousObserver.prototype.error = function (exception) { this._onError(exception); }; /** * Calls the onCompleted action. */ AnonymousObserver.prototype.completed = function () { this._onCompleted(); }; return AnonymousObserver; }(AbstractObserver)); var CheckedObserver = (function (_super) { inherits(CheckedObserver, _super); function CheckedObserver(observer) { _super.call(this); this._observer = observer; this._state = 0; // 0 - idle, 1 - busy, 2 - done } var CheckedObserverPrototype = CheckedObserver.prototype; CheckedObserverPrototype.onNext = function (value) { this.checkAccess(); try { this._observer.onNext(value); } catch (e) { throw e; } finally { this._state = 0; } }; CheckedObserverPrototype.onError = function (err) { this.checkAccess(); try { this._observer.onError(err); } catch (e) { throw e; } finally { this._state = 2; } }; CheckedObserverPrototype.onCompleted = function () { this.checkAccess(); try { this._observer.onCompleted(); } catch (e) { throw e; } finally { this._state = 2; } }; CheckedObserverPrototype.checkAccess = function () { if (this._state === 1) { throw new Error('Re-entrancy detected'); } if (this._state === 2) { throw new Error('Observer completed'); } if (this._state === 0) { this._state = 1; } }; return CheckedObserver; }(Observer)); var ScheduledObserver = Rx.internals.ScheduledObserver = (function (_super) { inherits(ScheduledObserver, _super); function ScheduledObserver(scheduler, observer) { _super.call(this); this.scheduler = scheduler; this.observer = observer; this.isAcquired = false; this.hasFaulted = false; this.queue = []; this.disposable = new SerialDisposable(); } ScheduledObserver.prototype.next = function (value) { var self = this; this.queue.push(function () { self.observer.onNext(value); }); }; ScheduledObserver.prototype.error = function (exception) { var self = this; this.queue.push(function () { self.observer.onError(exception); }); }; ScheduledObserver.prototype.completed = function () { var self = this; this.queue.push(function () { self.observer.onCompleted(); }); }; ScheduledObserver.prototype.ensureActive = function () { var isOwner = false, parent = this; if (!this.hasFaulted && this.queue.length > 0) { isOwner = !this.isAcquired; this.isAcquired = true; } if (isOwner) { this.disposable.setDisposable(this.scheduler.scheduleRecursive(function (self) { var work; if (parent.queue.length > 0) { work = parent.queue.shift(); } else { parent.isAcquired = false; return; } try { work(); } catch (ex) { parent.queue = []; parent.hasFaulted = true; throw ex; } self(); })); } }; ScheduledObserver.prototype.dispose = function () { _super.prototype.dispose.call(this); this.disposable.dispose(); }; return ScheduledObserver; }(AbstractObserver)); /** @private */ var ObserveOnObserver = (function (_super) { inherits(ObserveOnObserver, _super); /** @private */ function ObserveOnObserver() { _super.apply(this, arguments); } /** @private */ ObserveOnObserver.prototype.next = function (value) { _super.prototype.next.call(this, value); this.ensureActive(); }; /** @private */ ObserveOnObserver.prototype.error = function (e) { _super.prototype.error.call(this, e); this.ensureActive(); }; /** @private */ ObserveOnObserver.prototype.completed = function () { _super.prototype.completed.call(this); this.ensureActive(); }; return ObserveOnObserver; })(ScheduledObserver); var observableProto; /** * Represents a push-style collection. */ var Observable = Rx.Observable = (function () { /** * @constructor * @private */ function Observable(subscribe) { this._subscribe = subscribe; } observableProto = Observable.prototype; observableProto.finalValue = function () { var source = this; return new AnonymousObservable(function (observer) { var hasValue = false, value; return source.subscribe(function (x) { hasValue = true; value = x; }, observer.onError.bind(observer), function () { if (!hasValue) { observer.onError(new Error(sequenceContainsNoElements)); } else { observer.onNext(value); observer.onCompleted(); } }); }); }; /** * Subscribes an observer to the observable sequence. * * @example * 1 - source.subscribe(); * 2 - source.subscribe(observer); * 3 - source.subscribe(function (x) { console.log(x); }); * 4 - source.subscribe(function (x) { console.log(x); }, function (err) { console.log(err); }); * 5 - source.subscribe(function (x) { console.log(x); }, function (err) { console.log(err); }, function () { console.log('done'); }); * @param {Mixed} [observerOrOnNext] The object that is to receive notifications or an action to invoke for each element in the observable sequence. * @param {Function} [onError] Action to invoke upon exceptional termination of the observable sequence. * @param {Function} [onCompleted] Action to invoke upon graceful termination of the observable sequence. * @returns {Diposable} The source sequence whose subscriptions and unsubscriptions happen on the specified scheduler. */ observableProto.subscribe = observableProto.forEach = function (observerOrOnNext, onError, onCompleted) { var subscriber; if (typeof observerOrOnNext === 'object') { subscriber = observerOrOnNext; } else { subscriber = observerCreate(observerOrOnNext, onError, onCompleted); } return this._subscribe(subscriber); }; /** * Creates a list from an observable sequence. * * @memberOf Observable * @returns An observable sequence containing a single element with a list containing all the elements of the source sequence. */ observableProto.toArray = function () { function accumulator(list, i) { var newList = list.slice(0); newList.push(i); return newList; } return this.scan([], accumulator).startWith([]).finalValue(); }; return Observable; })(); /** * Wraps the source sequence in order to run its observer callbacks on the specified scheduler. * * This only invokes observer callbacks on a scheduler. In case the subscription and/or unsubscription actions have side-effects * that require to be run on a scheduler, use subscribeOn. * * @param {Scheduler} scheduler Scheduler to notify observers on. * @returns {Observable} The source sequence whose observations happen on the specified scheduler. */ observableProto.observeOn = function (scheduler) { var source = this; return new AnonymousObservable(function (observer) { return source.subscribe(new ObserveOnObserver(scheduler, observer)); }); }; /** * Wraps the source sequence in order to run its subscription and unsubscription logic on the specified scheduler. This operation is not commonly used; * see the remarks section for more information on the distinction between subscribeOn and observeOn. * This only performs the side-effects of subscription and unsubscription on the specified scheduler. In order to invoke observer * callbacks on a scheduler, use observeOn. * @param {Scheduler} scheduler Scheduler to perform subscription and unsubscription actions on. * @returns {Observable} The source sequence whose subscriptions and unsubscriptions happen on the specified scheduler. */ observableProto.subscribeOn = function (scheduler) { var source = this; return new AnonymousObservable(function (observer) { var m = new SingleAssignmentDisposable(), d = new SerialDisposable(); d.setDisposable(m); m.setDisposable(scheduler.schedule(function () { d.setDisposable(new ScheduledDisposable(scheduler, source.subscribe(observer))); })); return d; }); }; /** * Converts a Promise to an Observable sequence * @param {Promise} An ES6 Compliant promise. * @returns {Observable} An Observable sequence which wraps the existing promise success and failure. */ var observableFromPromise = Observable.fromPromise = function (promise) { return new AnonymousObservable(function (observer) { promise.then( function (value) { observer.onNext(value); observer.onCompleted(); }, function (reason) { observer.onError(reason); }); }); }; /* * Converts an existing observable sequence to an ES6 Compatible Promise * @example * var promise = Rx.Observable.return(42).toPromise(RSVP.Promise); * * // With config * Rx.config.Promise = RSVP.Promise; * var promise = Rx.Observable.return(42).toPromise(); * @param {Function} [promiseCtor] The constructor of the promise. If not provided, it looks for it in Rx.config.Promise. * @returns {Promise} An ES6 compatible promise with the last value from the observable sequence. */ observableProto.toPromise = function (promiseCtor) { promiseCtor || (promiseCtor = Rx.config.Promise); if (!promiseCtor) { throw new Error('Promise type not provided nor in Rx.config.Promise'); } var source = this; return new promiseCtor(function (resolve, reject) { // No cancellation can be done var value, hasValue = false; source.subscribe(function (v) { value = v; hasValue = true; }, function (err) { reject(err); }, function () { if (hasValue) { resolve(value); } }); }); }; /** * Creates an observable sequence from a specified subscribe method implementation. * * @example * var res = Rx.Observable.create(function (observer) { return function () { } ); * var res = Rx.Observable.create(function (observer) { return Rx.Disposable.empty; } ); * var res = Rx.Observable.create(function (observer) { } ); * * @param {Function} subscribe Implementation of the resulting observable sequence's subscribe method, returning a function that will be wrapped in a Disposable. * @returns {Observable} The observable sequence with the specified implementation for the Subscribe method. */ Observable.create = Observable.createWithDisposable = function (subscribe) { return new AnonymousObservable(subscribe); }; /** * Returns an observable sequence that invokes the specified factory function whenever a new observer subscribes. * * @example * var res = Rx.Observable.defer(function () { return Rx.Observable.fromArray([1,2,3]); }); * @param {Function} observableFactory Observable factory function to invoke for each observer that subscribes to the resulting sequence. * @returns {Observable} An observable sequence whose observers trigger an invocation of the given observable factory function. */ var observableDefer = Observable.defer = function (observableFactory) { return new AnonymousObservable(function (observer) { var result; try { result = observableFactory(); } catch (e) { return observableThrow(e).subscribe(observer); } return result.subscribe(observer); }); }; /** * Returns an empty observable sequence, using the specified scheduler to send out the single OnCompleted message. * * @example * var res = Rx.Observable.empty(); * var res = Rx.Observable.empty(Rx.Scheduler.timeout); * @param {Scheduler} [scheduler] Scheduler to send the termination call on. * @returns {Observable} An observable sequence with no elements. */ var observableEmpty = Observable.empty = function (scheduler) { scheduler || (scheduler = immediateScheduler); return new AnonymousObservable(function (observer) { return scheduler.schedule(function () { observer.onCompleted(); }); }); }; /** * Converts an array to an observable sequence, using an optional scheduler to enumerate the array. * * @example * var res = Rx.Observable.fromArray([1,2,3]); * var res = Rx.Observable.fromArray([1,2,3], Rx.Scheduler.timeout); * @param {Scheduler} [scheduler] Scheduler to run the enumeration of the input sequence on. * @returns {Observable} The observable sequence whose elements are pulled from the given enumerable sequence. */ var observableFromArray = Observable.fromArray = function (array, scheduler) { scheduler || (scheduler = currentThreadScheduler); return new AnonymousObservable(function (observer) { var count = 0; return scheduler.scheduleRecursive(function (self) { if (count < array.length) { observer.onNext(array[count++]); self(); } else { observer.onCompleted(); } }); }); }; /** * Converts a generator function to an observable sequence, using an optional scheduler to enumerate the generator. * * @example * var res = Rx.Observable.fromGenerator(function* () { yield 42; }); * var res = Rx.Observable.fromArray(function* () { yield 42; }, Rx.Scheduler.timeout); * @param {Scheduler} [scheduler] Scheduler to run the enumeration of the input sequence on. * @returns {Observable} The observable sequence whose elements are pulled from the given generator sequence. */ observableProto.fromGenerator = function (genFn, scheduler) { scheduler || (scheduler = currentThreadScheduler); return new AnonymousObservable(function (observer) { var gen; try { gen = genFn(); } catch (e) { observer.onError(e); return; } return scheduler.scheduleRecursive(function (self) { var next = gen.next(); if (next.done) { observer.onCompleted(); } else { observer.onNext(next.value); self(); } }); }); }; /** * Generates an observable sequence by running a state-driven loop producing the sequence's elements, using the specified scheduler to send out observer messages. * * @example * var res = Rx.Observable.generate(0, function (x) { return x < 10; }, function (x) { return x + 1; }, function (x) { return x; }); * var res = Rx.Observable.generate(0, function (x) { return x < 10; }, function (x) { return x + 1; }, function (x) { return x; }, Rx.Scheduler.timeout); * @param {Mixed} initialState Initial state. * @param {Function} condition Condition to terminate generation (upon returning false). * @param {Function} iterate Iteration step function. * @param {Function} resultSelector Selector function for results produced in the sequence. * @param {Scheduler} [scheduler] Scheduler on which to run the generator loop. If not provided, defaults to Scheduler.currentThread. * @returns {Observable} The generated sequence. */ Observable.generate = function (initialState, condition, iterate, resultSelector, scheduler) { scheduler || (scheduler = currentThreadScheduler); return new AnonymousObservable(function (observer) { var first = true, state = initialState; return scheduler.scheduleRecursive(function (self) { var hasResult, result; try { if (first) { first = false; } else { state = iterate(state); } hasResult = condition(state); if (hasResult) { result = resultSelector(state); } } catch (exception) { observer.onError(exception); return; } if (hasResult) { observer.onNext(result); self(); } else { observer.onCompleted(); } }); }); }; /** * Returns a non-terminating observable sequence, which can be used to denote an infinite duration (e.g. when using reactive joins). * @returns {Observable} An observable sequence whose observers will never get called. */ var observableNever = Observable.never = function () { return new AnonymousObservable(function () { return disposableEmpty; }); }; /** * Generates an observable sequence of integral numbers within a specified range, using the specified scheduler to send out observer messages. * * @example * var res = Rx.Observable.range(0, 10); * var res = Rx.Observable.range(0, 10, Rx.Scheduler.timeout); * @param {Number} start The value of the first integer in the sequence. * @param {Number} count The number of sequential integers to generate. * @param {Scheduler} [scheduler] Scheduler to run the generator loop on. If not specified, defaults to Scheduler.currentThread. * @returns {Observable} An observable sequence that contains a range of sequential integral numbers. */ Observable.range = function (start, count, scheduler) { scheduler || (scheduler = currentThreadScheduler); return new AnonymousObservable(function (observer) { return scheduler.scheduleRecursiveWithState(0, function (i, self) { if (i < count) { observer.onNext(start + i); self(i + 1); } else { observer.onCompleted(); } }); }); }; /** * Generates an observable sequence that repeats the given element the specified number of times, using the specified scheduler to send out observer messages. * * @example * var res = Rx.Observable.repeat(42); * var res = Rx.Observable.repeat(42, 4); * 3 - res = Rx.Observable.repeat(42, 4, Rx.Scheduler.timeout); * 4 - res = Rx.Observable.repeat(42, null, Rx.Scheduler.timeout); * @param {Mixed} value Element to repeat. * @param {Number} repeatCount [Optiona] Number of times to repeat the element. If not specified, repeats indefinitely. * @param {Scheduler} scheduler Scheduler to run the producer loop on. If not specified, defaults to Scheduler.immediate. * @returns {Observable} An observable sequence that repeats the given element the specified number of times. */ Observable.repeat = function (value, repeatCount, scheduler) { scheduler || (scheduler = currentThreadScheduler); if (repeatCount == null) { repeatCount = -1; } return observableReturn(value, scheduler).repeat(repeatCount); }; /** * Returns an observable sequence that contains a single element, using the specified scheduler to send out observer messages. * There is an alias called 'returnValue' for browsers <IE9. * * @example * var res = Rx.Observable.return(42); * var res = Rx.Observable.return(42, Rx.Scheduler.timeout); * @param {Mixed} value Single element in the resulting observable sequence. * @param {Scheduler} scheduler Scheduler to send the single element on. If not specified, defaults to Scheduler.immediate. * @returns {Observable} An observable sequence containing the single specified element. */ var observableReturn = Observable['return'] = Observable.returnValue = function (value, scheduler) { scheduler || (scheduler = immediateScheduler); return new AnonymousObservable(function (observer) { return scheduler.schedule(function () { observer.onNext(value); observer.onCompleted(); }); }); }; /** * Returns an observable sequence that terminates with an exception, using the specified scheduler to send out the single onError message. * There is an alias to this method called 'throwException' for browsers <IE9. * * @example * var res = Rx.Observable.throwException(new Error('Error')); * var res = Rx.Observable.throwException(new Error('Error'), Rx.Scheduler.timeout); * @param {Mixed} exception An object used for the sequence's termination. * @param {Scheduler} scheduler Scheduler to send the exceptional termination call on. If not specified, defaults to Scheduler.immediate. * @returns {Observable} The observable sequence that terminates exceptionally with the specified exception object. */ var observableThrow = Observable['throw'] = Observable.throwException = function (exception, scheduler) { scheduler || (scheduler = immediateScheduler); return new AnonymousObservable(function (observer) { return scheduler.schedule(function () { observer.onError(exception); }); }); }; /** * Constructs an observable sequence that depends on a resource object, whose lifetime is tied to the resulting observable sequence's lifetime. * * @example * var res = Rx.Observable.using(function () { return new AsyncSubject(); }, function (s) { return s; }); * @param {Function} resourceFactory Factory function to obtain a resource object. * @param {Function} observableFactory Factory function to obtain an observable sequence that depends on the obtained resource. * @returns {Observable} An observable sequence whose lifetime controls the lifetime of the dependent resource object. */ Observable.using = function (resourceFactory, observableFactory) { return new AnonymousObservable(function (observer) { var disposable = disposableEmpty, resource, source; try { resource = resourceFactory(); if (resource) { disposable = resource; } source = observableFactory(resource); } catch (exception) { return new CompositeDisposable(observableThrow(exception).subscribe(observer), disposable); } return new CompositeDisposable(source.subscribe(observer), disposable); }); }; /** * Propagates the observable sequence that reacts first. * @param {Observable} rightSource Second observable sequence. * @returns {Observable} {Observable} An observable sequence that surfaces either of the given sequences, whichever reacted first. */ observableProto.amb = function (rightSource) { var leftSource = this; return new AnonymousObservable(function (observer) { var choice, leftChoice = 'L', rightChoice = 'R', leftSubscription = new SingleAssignmentDisposable(), rightSubscription = new SingleAssignmentDisposable(); function choiceL() { if (!choice) { choice = leftChoice; rightSubscription.dispose(); } } function choiceR() { if (!choice) { choice = rightChoice; leftSubscription.dispose(); } } leftSubscription.setDisposable(leftSource.subscribe(function (left) { choiceL(); if (choice === leftChoice) { observer.onNext(left); } }, function (err) { choiceL(); if (choice === leftChoice) { observer.onError(err); } }, function () { choiceL(); if (choice === leftChoice) { observer.onCompleted(); } })); rightSubscription.setDisposable(rightSource.subscribe(function (right) { choiceR(); if (choice === rightChoice) { observer.onNext(right); } }, function (err) { choiceR(); if (choice === rightChoice) { observer.onError(err); } }, function () { choiceR(); if (choice === rightChoice) { observer.onCompleted(); } })); return new CompositeDisposable(leftSubscription, rightSubscription); }); }; /** * Propagates the observable sequence that reacts first. * * @example * var = Rx.Observable.amb(xs, ys, zs); * @returns {Observable} An observable sequence that surfaces any of the given sequences, whichever reacted first. */ Observable.amb = function () { var acc = observableNever(), items = argsOrArray(arguments, 0); function func(previous, current) { return previous.amb(current); } for (var i = 0, len = items.length; i < len; i++) { acc = func(acc, items[i]); } return acc; }; function observableCatchHandler(source, handler) { return new AnonymousObservable(function (observer) { var d1 = new SingleAssignmentDisposable(), subscription = new SerialDisposable(); subscription.setDisposable(d1); d1.setDisposable(source.subscribe(observer.onNext.bind(observer), function (exception) { var d, result; try { result = handler(exception); } catch (ex) { observer.onError(ex); return; } d = new SingleAssignmentDisposable(); subscription.setDisposable(d); d.setDisposable(result.subscribe(observer)); }, observer.onCompleted.bind(observer))); return subscription; }); } /** * Continues an observable sequence that is terminated by an exception with the next observable sequence. * @example * 1 - xs.catchException(ys) * 2 - xs.catchException(function (ex) { return ys(ex); }) * @param {Mixed} handlerOrSecond Exception handler function that returns an observable sequence given the error that occurred in the first sequence, or a second observable sequence used to produce results when an error occurred in the first sequence. * @returns {Observable} An observable sequence containing the first sequence's elements, followed by the elements of the handler sequence in case an exception occurred. */ observableProto['catch'] = observableProto.catchException = function (handlerOrSecond) { if (typeof handlerOrSecond === 'function') { return observableCatchHandler(this, handlerOrSecond); } return observableCatch([this, handlerOrSecond]); }; /** * Continues an observable sequence that is terminated by an exception with the next observable sequence. * * @example * 1 - res = Rx.Observable.catchException(xs, ys, zs); * 2 - res = Rx.Observable.catchException([xs, ys, zs]); * @returns {Observable} An observable sequence containing elements from consecutive source sequences until a source sequence terminates successfully. */ var observableCatch = Observable.catchException = Observable['catch'] = function () { var items = argsOrArray(arguments, 0); return enumerableFor(items).catchException(); }; /** * Merges the specified observable sequences into one observable sequence by using the selector function whenever any of the observable sequences produces an element. * This can be in the form of an argument list of observables or an array. * * @example * 1 - obs = observable.combineLatest(obs1, obs2, obs3, function (o1, o2, o3) { return o1 + o2 + o3; }); * 2 - obs = observable.combineLatest([obs1, obs2, obs3], function (o1, o2, o3) { return o1 + o2 + o3; }); * @returns {Observable} An observable sequence containing the result of combining elements of the sources using the specified result selector function. */ observableProto.combineLatest = function () { var args = slice.call(arguments); if (Array.isArray(args[0])) { args[0].unshift(this); } else { args.unshift(this); } return combineLatest.apply(this, args); }; /** * Merges the specified observable sequences into one observable sequence by using the selector function whenever any of the observable sequences produces an element. * * @example * 1 - obs = Rx.Observable.combineLatest(obs1, obs2, obs3, function (o1, o2, o3) { return o1 + o2 + o3; }); * 2 - obs = Rx.Observable.combineLatest([obs1, obs2, obs3], function (o1, o2, o3) { return o1 + o2 + o3; }); * @returns {Observable} An observable sequence containing the result of combining elements of the sources using the specified result selector function. */ var combineLatest = Observable.combineLatest = function () { var args = slice.call(arguments), resultSelector = args.pop(); if (Array.isArray(args[0])) { args = args[0]; } return new AnonymousObservable(function (observer) { var falseFactory = function () { return false; }, n = args.length, hasValue = arrayInitialize(n, falseFactory), hasValueAll = false, isDone = arrayInitialize(n, falseFactory), values = new Array(n); function next(i) { var res; hasValue[i] = true; if (hasValueAll || (hasValueAll = hasValue.every(identity))) { try { res = resultSelector.apply(null, values); } catch (ex) { observer.onError(ex); return; } observer.onNext(res); } else if (isDone.filter(function (x, j) { return j !== i; }).every(identity)) { observer.onCompleted(); } } function done (i) { isDone[i] = true; if (isDone.every(identity)) { observer.onCompleted(); } } var subscriptions = new Array(n); for (var idx = 0; idx < n; idx++) { (function (i) { subscriptions[i] = new SingleAssignmentDisposable(); subscriptions[i].setDisposable(args[i].subscribe(function (x) { values[i] = x; next(i); }, observer.onError.bind(observer), function () { done(i); })); }(idx)); } return new CompositeDisposable(subscriptions); }); }; /** * Concatenates all the observable sequences. This takes in either an array or variable arguments to concatenate. * * @example * 1 - concatenated = xs.concat(ys, zs); * 2 - concatenated = xs.concat([ys, zs]); * @returns {Observable} An observable sequence that contains the elements of each given sequence, in sequential order. */ observableProto.concat = function () { var items = slice.call(arguments, 0); items.unshift(this); return observableConcat.apply(this, items); }; /** * Concatenates all the observable sequences. * * @example * 1 - res = Rx.Observable.concat(xs, ys, zs); * 2 - res = Rx.Observable.concat([xs, ys, zs]); * @returns {Observable} An observable sequence that contains the elements of each given sequence, in sequential order. */ var observableConcat = Observable.concat = function () { var sources = argsOrArray(arguments, 0); return enumerableFor(sources).concat(); }; /** * Concatenates an observable sequence of observable sequences. * @returns {Observable} An observable sequence that contains the elements of each observed inner sequence, in sequential order. */ observableProto.concatObservable = observableProto.concatAll =function () { return this.merge(1); }; /** * Merges an observable sequence of observable sequences into an observable sequence, limiting the number of concurrent subscriptions to inner sequences. * Or merges two observable sequences into a single observable sequence. * * @example * 1 - merged = sources.merge(1); * 2 - merged = source.merge(otherSource); * @param {Mixed} [maxConcurrentOrOther] Maximum number of inner observable sequences being subscribed to concurrently or the second observable sequence. * @returns {Observable} The observable sequence that merges the elements of the inner sequences. */ observableProto.merge = function (maxConcurrentOrOther) { if (typeof maxConcurrentOrOther !== 'number') { return observableMerge(this, maxConcurrentOrOther); } var sources = this; return new AnonymousObservable(function (observer) { var activeCount = 0, group = new CompositeDisposable(), isStopped = false, q = [], subscribe = function (xs) { var subscription = new SingleAssignmentDisposable(); group.add(subscription); // Check for promises support if (isPromise(xs)) { xs = observableFromPromise(xs); } subscription.setDisposable(xs.subscribe(observer.onNext.bind(observer), observer.onError.bind(observer), function () { var s; group.remove(subscription); if (q.length > 0) { s = q.shift(); subscribe(s); } else { activeCount--; if (isStopped && activeCount === 0) { observer.onCompleted(); } } })); }; group.add(sources.subscribe(function (innerSource) { if (activeCount < maxConcurrentOrOther) { activeCount++; subscribe(innerSource); } else { q.push(innerSource); } }, observer.onError.bind(observer), function () { isStopped = true; if (activeCount === 0) { observer.onCompleted(); } })); return group; }); }; /** * Merges all the observable sequences into a single observable sequence. * The scheduler is optional and if not specified, the immediate scheduler is used. * * @example * 1 - merged = Rx.Observable.merge(xs, ys, zs); * 2 - merged = Rx.Observable.merge([xs, ys, zs]); * 3 - merged = Rx.Observable.merge(scheduler, xs, ys, zs); * 4 - merged = Rx.Observable.merge(scheduler, [xs, ys, zs]); * @returns {Observable} The observable sequence that merges the elements of the observable sequences. */ var observableMerge = Observable.merge = function () { var scheduler, sources; if (!arguments[0]) { scheduler = immediateScheduler; sources = slice.call(arguments, 1); } else if (arguments[0].now) { scheduler = arguments[0]; sources = slice.call(arguments, 1); } else { scheduler = immediateScheduler; sources = slice.call(arguments, 0); } if (Array.isArray(sources[0])) { sources = sources[0]; } return observableFromArray(sources, scheduler).mergeObservable(); }; /** * Merges an observable sequence of observable sequences into an observable sequence. * @returns {Observable} The observable sequence that merges the elements of the inner sequences. */ observableProto.mergeObservable = observableProto.mergeAll =function () { var sources = this; return new AnonymousObservable(function (observer) { var group = new CompositeDisposable(), isStopped = false, m = new SingleAssignmentDisposable(); group.add(m); m.setDisposable(sources.subscribe(function (innerSource) { var innerSubscription = new SingleAssignmentDisposable(); group.add(innerSubscription); // Check if Promise or Observable if (isPromise(innerSource)) { innerSource = observableFromPromise(innerSource); } innerSubscription.setDisposable(innerSource.subscribe(function (x) { observer.onNext(x); }, observer.onError.bind(observer), function () { group.remove(innerSubscription); if (isStopped && group.length === 1) { observer.onCompleted(); } })); }, observer.onError.bind(observer), function () { isStopped = true; if (group.length === 1) { observer.onCompleted(); } })); return group; }); }; /** * Continues an observable sequence that is terminated normally or by an exception with the next observable sequence. * @param {Observable} second Second observable sequence used to produce results after the first sequence terminates. * @returns {Observable} An observable sequence that concatenates the first and second sequence, even if the first sequence terminates exceptionally. */ observableProto.onErrorResumeNext = function (second) { if (!second) { throw new Error('Second observable is required'); } return onErrorResumeNext([this, second]); }; /** * Continues an observable sequence that is terminated normally or by an exception with the next observable sequence. * * @example * 1 - res = Rx.Observable.onErrorResumeNext(xs, ys, zs); * 1 - res = Rx.Observable.onErrorResumeNext([xs, ys, zs]); * @returns {Observable} An observable sequence that concatenates the source sequences, even if a sequence terminates exceptionally. */ var onErrorResumeNext = Observable.onErrorResumeNext = function () { var sources = argsOrArray(arguments, 0); return new AnonymousObservable(function (observer) { var pos = 0, subscription = new SerialDisposable(), cancelable = immediateScheduler.scheduleRecursive(function (self) { var current, d; if (pos < sources.length) { current = sources[pos++]; d = new SingleAssignmentDisposable(); subscription.setDisposable(d); d.setDisposable(current.subscribe(observer.onNext.bind(observer), function () { self(); }, function () { self(); })); } else { observer.onCompleted(); } }); return new CompositeDisposable(subscription, cancelable); }); }; /** * Returns the values from the source observable sequence only after the other observable sequence produces a value. * @param {Observable} other The observable sequence that triggers propagation of elements of the source sequence. * @returns {Observable} An observable sequence containing the elements of the source sequence starting from the point the other sequence triggered propagation. */ observableProto.skipUntil = function (other) { var source = this; return new AnonymousObservable(function (observer) { var isOpen = false; var disposables = new CompositeDisposable(source.subscribe(function (left) { if (isOpen) { observer.onNext(left); } }, observer.onError.bind(observer), function () { if (isOpen) { observer.onCompleted(); } })); var rightSubscription = new SingleAssignmentDisposable(); disposables.add(rightSubscription); rightSubscription.setDisposable(other.subscribe(function () { isOpen = true; rightSubscription.dispose(); }, observer.onError.bind(observer), function () { rightSubscription.dispose(); })); return disposables; }); }; /** * Transforms an observable sequence of observable sequences into an observable sequence producing values only from the most recent observable sequence. * @returns {Observable} The observable sequence that at any point in time produces the elements of the most recent inner observable sequence that has been received. */ observableProto['switch'] = observableProto.switchLatest = function () { var sources = this; return new AnonymousObservable(function (observer) { var hasLatest = false, innerSubscription = new SerialDisposable(), isStopped = false, latest = 0, subscription = sources.subscribe(function (innerSource) { var d = new SingleAssignmentDisposable(), id = ++latest; hasLatest = true; innerSubscription.setDisposable(d); // Check if Promise or Observable if (isPromise(innerSource)) { innerSource = observableFromPromise(innerSource); } d.setDisposable(innerSource.subscribe(function (x) { if (latest === id) { observer.onNext(x); } }, function (e) { if (latest === id) { observer.onError(e); } }, function () { if (latest === id) { hasLatest = false; if (isStopped) { observer.onCompleted(); } } })); }, observer.onError.bind(observer), function () { isStopped = true; if (!hasLatest) { observer.onCompleted(); } }); return new CompositeDisposable(subscription, innerSubscription); }); }; /** * Returns the values from the source observable sequence until the other observable sequence produces a value. * @param {Observable} other Observable sequence that terminates propagation of elements of the source sequence. * @returns {Observable} An observable sequence containing the elements of the source sequence up to the point the other sequence interrupted further propagation. */ observableProto.takeUntil = function (other) { var source = this; return new AnonymousObservable(function (observer) { return new CompositeDisposable( source.subscribe(observer), other.subscribe(observer.onCompleted.bind(observer), observer.onError.bind(observer), noop) ); }); }; function zipArray(second, resultSelector) { var first = this; return new AnonymousObservable(function (observer) { var index = 0, len = second.length; return first.subscribe(function (left) { if (index < len) { var right = second[index++], result; try { result = resultSelector(left, right); } catch (e) { observer.onError(e); return; } observer.onNext(result); } else { observer.onCompleted(); } }, observer.onError.bind(observer), observer.onCompleted.bind(observer)); }); } /** * Merges the specified observable sequences into one observable sequence by using the selector function whenever all of the observable sequences or an array have produced an element at a corresponding index. * The last element in the arguments must be a function to invoke for each series of elements at corresponding indexes in the sources. * * @example * 1 - res = obs1.zip(obs2, fn); * 1 - res = x1.zip([1,2,3], fn); * @returns {Observable} An observable sequence containing the result of combining elements of the sources using the specified result selector function. */ observableProto.zip = function () { if (Array.isArray(arguments[0])) { return zipArray.apply(this, arguments); } var parent = this, sources = slice.call(arguments), resultSelector = sources.pop(); sources.unshift(parent); return new AnonymousObservable(function (observer) { var n = sources.length, queues = arrayInitialize(n, function () { return []; }), isDone = arrayInitialize(n, function () { return false; }); var next = function (i) { var res, queuedValues; if (queues.every(function (x) { return x.length > 0; })) { try { queuedValues = queues.map(function (x) { return x.shift(); }); res = resultSelector.apply(parent, queuedValues); } catch (ex) { observer.onError(ex); return; } observer.onNext(res); } else if (isDone.filter(function (x, j) { return j !== i; }).every(identity)) { observer.onCompleted(); } }; function done(i) { isDone[i] = true; if (isDone.every(function (x) { return x; })) { observer.onCompleted(); } } var subscriptions = new Array(n); for (var idx = 0; idx < n; idx++) { (function (i) { subscriptions[i] = new SingleAssignmentDisposable(); subscriptions[i].setDisposable(sources[i].subscribe(function (x) { queues[i].push(x); next(i); }, observer.onError.bind(observer), function () { done(i); })); })(idx); } return new CompositeDisposable(subscriptions); }); }; /** * Merges the specified observable sequences into one observable sequence by using the selector function whenever all of the observable sequences have produced an element at a corresponding index. * @param arguments Observable sources. * @param {Function} resultSelector Function to invoke for each series of elements at corresponding indexes in the sources. * @returns {Observable} An observable sequence containing the result of combining elements of the sources using the specified result selector function. */ Observable.zip = function () { var args = slice.call(arguments, 0), first = args.shift(); return first.zip.apply(first, args); }; /** * Merges the specified observable sequences into one observable sequence by emitting a list with the elements of the observable sequences at corresponding indexes. * @param arguments Observable sources. * @returns {Observable} An observable sequence containing lists of elements at corresponding indexes. */ Observable.zipArray = function () { var sources = argsOrArray(arguments, 0); return new AnonymousObservable(function (observer) { var n = sources.length, queues = arrayInitialize(n, function () { return []; }), isDone = arrayInitialize(n, function () { return false; }); function next(i) { if (queues.every(function (x) { return x.length > 0; })) { var res = queues.map(function (x) { return x.shift(); }); observer.onNext(res); } else if (isDone.filter(function (x, j) { return j !== i; }).every(identity)) { observer.onCompleted(); return; } }; function done(i) { isDone[i] = true; if (isDone.every(identity)) { observer.onCompleted(); return; } } var subscriptions = new Array(n); for (var idx = 0; idx < n; idx++) { (function (i) { subscriptions[i] = new SingleAssignmentDisposable(); subscriptions[i].setDisposable(sources[i].subscribe(function (x) { queues[i].push(x); next(i); }, observer.onError.bind(observer), function () { done(i); })); })(idx); } var compositeDisposable = new CompositeDisposable(subscriptions); compositeDisposable.add(disposableCreate(function () { for (var qIdx = 0, qLen = queues.length; qIdx < qLen; qIdx++) { queues[qIdx] = []; } })); return compositeDisposable; }); }; /** * Hides the identity of an observable sequence. * @returns {Observable} An observable sequence that hides the identity of the source sequence. */ observableProto.asObservable = function () { var source = this; return new AnonymousObservable(function (observer) { return source.subscribe(observer); }); }; /** * Projects each element of an observable sequence into zero or more buffers which are produced based on element count information. * * @example * var res = xs.bufferWithCount(10); * var res = xs.bufferWithCount(10, 1); * @param {Number} count Length of each buffer. * @param {Number} [skip] Number of elements to skip between creation of consecutive buffers. If not provided, defaults to the count. * @returns {Observable} An observable sequence of buffers. */ observableProto.bufferWithCount = function (count, skip) { if (arguments.length === 1) { skip = count; } return this.windowWithCount(count, skip).selectMany(function (x) { return x.toArray(); }).where(function (x) { return x.length > 0; }); }; /** * Dematerializes the explicit notification values of an observable sequence as implicit notifications. * @returns {Observable} An observable sequence exhibiting the behavior corresponding to the source sequence's notification values. */ observableProto.dematerialize = function () { var source = this; return new AnonymousObservable(function (observer) { return source.subscribe(function (x) { return x.accept(observer); }, observer.onError.bind(observer), observer.onCompleted.bind(observer)); }); }; /** * Returns an observable sequence that contains only distinct contiguous elements according to the keySelector and the comparer. * * var obs = observable.distinctUntilChanged(); * var obs = observable.distinctUntilChanged(function (x) { return x.id; }); * var obs = observable.distinctUntilChanged(function (x) { return x.id; }, function (x, y) { return x === y; }); * * @param {Function} [keySelector] A function to compute the comparison key for each element. If not provided, it projects the value. * @param {Function} [comparer] Equality comparer for computed key values. If not provided, defaults to an equality comparer function. * @returns {Observable} An observable sequence only containing the distinct contiguous elements, based on a computed key value, from the source sequence. */ observableProto.distinctUntilChanged = function (keySelector, comparer) { var source = this; keySelector || (keySelector = identity); comparer || (comparer = defaultComparer); return new AnonymousObservable(function (observer) { var hasCurrentKey = false, currentKey; return source.subscribe(function (value) { var comparerEquals = false, key; try { key = keySelector(value); } catch (exception) { observer.onError(exception); return; } if (hasCurrentKey) { try { comparerEquals = comparer(currentKey, key); } catch (exception) { observer.onError(exception); return; } } if (!hasCurrentKey || !comparerEquals) { hasCurrentKey = true; currentKey = key; observer.onNext(value); } }, observer.onError.bind(observer), observer.onCompleted.bind(observer)); }); }; /** * Invokes an action for each element in the observable sequence and invokes an action upon graceful or exceptional termination of the observable sequence. * This method can be used for debugging, logging, etc. of query behavior by intercepting the message stream to run arbitrary actions for messages on the pipeline. * * @example * var res = observable.doAction(observer); * var res = observable.doAction(onNext); * var res = observable.doAction(onNext, onError); * var res = observable.doAction(onNext, onError, onCompleted); * @param {Mixed} observerOrOnNext Action to invoke for each element in the observable sequence or an observer. * @param {Function} [onError] Action to invoke upon exceptional termination of the observable sequence. Used if only the observerOrOnNext parameter is also a function. * @param {Function} [onCompleted] Action to invoke upon graceful termination of the observable sequence. Used if only the observerOrOnNext parameter is also a function. * @returns {Observable} The source sequence with the side-effecting behavior applied. */ observableProto['do'] = observableProto.doAction = function (observerOrOnNext, onError, onCompleted) { var source = this, onNextFunc; if (typeof observerOrOnNext === 'function') { onNextFunc = observerOrOnNext; } else { onNextFunc = observerOrOnNext.onNext.bind(observerOrOnNext); onError = observerOrOnNext.onError.bind(observerOrOnNext); onCompleted = observerOrOnNext.onCompleted.bind(observerOrOnNext); } return new AnonymousObservable(function (observer) { return source.subscribe(function (x) { try { onNextFunc(x); } catch (e) { observer.onError(e); } observer.onNext(x); }, function (exception) { if (!onError) { observer.onError(exception); } else { try { onError(exception); } catch (e) { observer.onError(e); } observer.onError(exception); } }, function () { if (!onCompleted) { observer.onCompleted(); } else { try { onCompleted(); } catch (e) { observer.onError(e); } observer.onCompleted(); } }); }); }; /** * Invokes a specified action after the source observable sequence terminates gracefully or exceptionally. * * @example * var res = observable.finallyAction(function () { console.log('sequence ended'; }); * @param {Function} finallyAction Action to invoke after the source observable sequence terminates. * @returns {Observable} Source sequence with the action-invoking termination behavior applied. */ observableProto['finally'] = observableProto.finallyAction = function (action) { var source = this; return new AnonymousObservable(function (observer) { var subscription = source.subscribe(observer); return disposableCreate(function () { try { subscription.dispose(); } catch (e) { throw e; } finally { action(); } }); }); }; /** * Ignores all elements in an observable sequence leaving only the termination messages. * @returns {Observable} An empty observable sequence that signals termination, successful or exceptional, of the source sequence. */ observableProto.ignoreElements = function () { var source = this; return new AnonymousObservable(function (observer) { return source.subscribe(noop, observer.onError.bind(observer), observer.onCompleted.bind(observer)); }); }; /** * Materializes the implicit notifications of an observable sequence as explicit notification values. * @returns {Observable} An observable sequence containing the materialized notification values from the source sequence. */ observableProto.materialize = function () { var source = this; return new AnonymousObservable(function (observer) { return source.subscribe(function (value) { observer.onNext(notificationCreateOnNext(value)); }, function (e) { observer.onNext(notificationCreateOnError(e)); observer.onCompleted(); }, function () { observer.onNext(notificationCreateOnCompleted()); observer.onCompleted(); }); }); }; /** * Repeats the observable sequence a specified number of times. If the repeat count is not specified, the sequence repeats indefinitely. * * @example * var res = repeated = source.repeat(); * var res = repeated = source.repeat(42); * @param {Number} [repeatCount] Number of times to repeat the sequence. If not provided, repeats the sequence indefinitely. * @returns {Observable} The observable sequence producing the elements of the given sequence repeatedly. */ observableProto.repeat = function (repeatCount) { return enumerableRepeat(this, repeatCount).concat(); }; /** * Repeats the source observable sequence the specified number of times or until it successfully terminates. If the retry count is not specified, it retries indefinitely. * * @example * var res = retried = retry.repeat(); * var res = retried = retry.repeat(42); * @param {Number} [retryCount] Number of times to retry the sequence. If not provided, retry the sequence indefinitely. * @returns {Observable} An observable sequence producing the elements of the given sequence repeatedly until it terminates successfully. */ observableProto.retry = function (retryCount) { return enumerableRepeat(this, retryCount).catchException(); }; /** * Applies an accumulator function over an observable sequence and returns each intermediate result. The optional seed value is used as the initial accumulator value. * For aggregation behavior with no intermediate results, see Observable.aggregate. * @example * var res = source.scan(function (acc, x) { return acc + x; }); * var res = source.scan(0, function (acc, x) { return acc + x; }); * @param {Mixed} [seed] The initial accumulator value. * @param {Function} accumulator An accumulator function to be invoked on each element. * @returns {Observable} An observable sequence containing the accumulated values. */ observableProto.scan = function () { var hasSeed = false, seed, accumulator, source = this; if (arguments.length === 2) { hasSeed = true; seed = arguments[0]; accumulator = arguments[1]; } else { accumulator = arguments[0]; } return new AnonymousObservable(function (observer) { var hasAccumulation, accumulation, hasValue; return source.subscribe ( function (x) { try { if (!hasValue) { hasValue = true; } if (hasAccumulation) { accumulation = accumulator(accumulation, x); } else { accumulation = hasSeed ? accumulator(seed, x) : x; hasAccumulation = true; } } catch (e) { observer.onError(e); return; } observer.onNext(accumulation); }, observer.onError.bind(observer), function () { if (!hasValue && hasSeed) { observer.onNext(seed); } observer.onCompleted(); } ); }); }; /** * Bypasses a specified number of elements at the end of an observable sequence. * @description * This operator accumulates a queue with a length enough to store the first `count` elements. As more elements are * received, elements are taken from the front of the queue and produced on the result sequence. This causes elements to be delayed. * @param count Number of elements to bypass at the end of the source sequence. * @returns {Observable} An observable sequence containing the source sequence elements except for the bypassed ones at the end. */ observableProto.skipLast = function (count) { var source = this; return new AnonymousObservable(function (observer) { var q = []; return source.subscribe(function (x) { q.push(x); if (q.length > count) { observer.onNext(q.shift()); } }, observer.onError.bind(observer), observer.onCompleted.bind(observer)); }); }; /** * Prepends a sequence of values to an observable sequence with an optional scheduler and an argument list of values to prepend. * * var res = source.startWith(1, 2, 3); * var res = source.startWith(Rx.Scheduler.timeout, 1, 2, 3); * * @memberOf Observable# * @returns {Observable} The source sequence prepended with the specified values. */ observableProto.startWith = function () { var values, scheduler, start = 0; if (!!arguments.length && 'now' in Object(arguments[0])) { scheduler = arguments[0]; start = 1; } else { scheduler = immediateScheduler; } values = slice.call(arguments, start); return enumerableFor([observableFromArray(values, scheduler), this]).concat(); }; /** * Returns a specified number of contiguous elements from the end of an observable sequence, using an optional scheduler to drain the queue. * * @example * var res = source.takeLast(5); * var res = source.takeLast(5, Rx.Scheduler.timeout); * * @description * This operator accumulates a buffer with a length enough to store elements count elements. Upon completion of * the source sequence, this buffer is drained on the result sequence. This causes the elements to be delayed. * @param {Number} count Number of elements to take from the end of the source sequence. * @param {Scheduler} [scheduler] Scheduler used to drain the queue upon completion of the source sequence. * @returns {Observable} An observable sequence containing the specified number of elements from the end of the source sequence. */ observableProto.takeLast = function (count, scheduler) { return this.takeLastBuffer(count).selectMany(function (xs) { return observableFromArray(xs, scheduler); }); }; /** * Returns an array with the specified number of contiguous elements from the end of an observable sequence. * * @description * This operator accumulates a buffer with a length enough to store count elements. Upon completion of the * source sequence, this buffer is produced on the result sequence. * @param {Number} count Number of elements to take from the end of the source sequence. * @returns {Observable} An observable sequence containing a single array with the specified number of elements from the end of the source sequence. */ observableProto.takeLastBuffer = function (count) { var source = this; return new AnonymousObservable(function (observer) { var q = []; return source.subscribe(function (x) { q.push(x); if (q.length > count) { q.shift(); } }, observer.onError.bind(observer), function () { observer.onNext(q); observer.onCompleted(); }); }); }; /** * Projects each element of an observable sequence into zero or more windows which are produced based on element count information. * * var res = xs.windowWithCount(10); * var res = xs.windowWithCount(10, 1); * @param {Number} count Length of each window. * @param {Number} [skip] Number of elements to skip between creation of consecutive windows. If not specified, defaults to the count. * @returns {Observable} An observable sequence of windows. */ observableProto.windowWithCount = function (count, skip) { var source = this; if (count <= 0) { throw new Error(argumentOutOfRange); } if (arguments.length === 1) { skip = count; } if (skip <= 0) { throw new Error(argumentOutOfRange); } return new AnonymousObservable(function (observer) { var m = new SingleAssignmentDisposable(), refCountDisposable = new RefCountDisposable(m), n = 0, q = [], createWindow = function () { var s = new Subject(); q.push(s); observer.onNext(addRef(s, refCountDisposable)); }; createWindow(); m.setDisposable(source.subscribe(function (x) { var s; for (var i = 0, len = q.length; i < len; i++) { q[i].onNext(x); } var c = n - count + 1; if (c >= 0 && c % skip === 0) { s = q.shift(); s.onCompleted(); } n++; if (n % skip === 0) { createWindow(); } }, function (exception) { while (q.length > 0) { q.shift().onError(exception); } observer.onError(exception); }, function () { while (q.length > 0) { q.shift().onCompleted(); } observer.onCompleted(); })); return refCountDisposable; }); }; /** * Returns the elements of the specified sequence or the specified value in a singleton sequence if the sequence is empty. * * var res = obs = xs.defaultIfEmpty(); * 2 - obs = xs.defaultIfEmpty(false); * * @memberOf Observable# * @param defaultValue The value to return if the sequence is empty. If not provided, this defaults to null. * @returns {Observable} An observable sequence that contains the specified default value if the source is empty; otherwise, the elements of the source itself. */ observableProto.defaultIfEmpty = function (defaultValue) { var source = this; if (defaultValue === undefined) { defaultValue = null; } return new AnonymousObservable(function (observer) { var found = false; return source.subscribe(function (x) { found = true; observer.onNext(x); }, observer.onError.bind(observer), function () { if (!found) { observer.onNext(defaultValue); } observer.onCompleted(); }); }); }; /** * Returns an observable sequence that contains only distinct elements according to the keySelector and the comparer. * Usage of this operator should be considered carefully due to the maintenance of an internal lookup structure which can grow large. * * @example * var res = obs = xs.distinct(); * 2 - obs = xs.distinct(function (x) { return x.id; }); * 2 - obs = xs.distinct(function (x) { return x.id; }, function (x) { return x.toString(); }); * @param {Function} [keySelector] A function to compute the comparison key for each element. * @param {Function} [keySerializer] Used to serialize the given object into a string for object comparison. * @returns {Observable} An observable sequence only containing the distinct elements, based on a computed key value, from the source sequence. */ observableProto.distinct = function (keySelector, keySerializer) { var source = this; keySelector || (keySelector = identity); keySerializer || (keySerializer = defaultKeySerializer); return new AnonymousObservable(function (observer) { var hashSet = {}; return source.subscribe(function (x) { var key, serializedKey, otherKey, hasMatch = false; try { key = keySelector(x); serializedKey = keySerializer(key); } catch (exception) { observer.onError(exception); return; } for (otherKey in hashSet) { if (serializedKey === otherKey) { hasMatch = true; break; } } if (!hasMatch) { hashSet[serializedKey] = null; observer.onNext(x); } }, observer.onError.bind(observer), observer.onCompleted.bind(observer)); }); }; /** * Groups the elements of an observable sequence according to a specified key selector function and comparer and selects the resulting elements by using a specified function. * * @example * var res = observable.groupBy(function (x) { return x.id; }); * 2 - observable.groupBy(function (x) { return x.id; }), function (x) { return x.name; }); * 3 - observable.groupBy(function (x) { return x.id; }), function (x) { return x.name; }, function (x) { return x.toString(); }); * @param {Function} keySelector A function to extract the key for each element. * @param {Function} [elementSelector] A function to map each source element to an element in an observable group. * @param {Function} [keySerializer] Used to serialize the given object into a string for object comparison. * @returns {Observable} A sequence of observable groups, each of which corresponds to a unique key value, containing all elements that share that same key value. */ observableProto.groupBy = function (keySelector, elementSelector, keySerializer) { return this.groupByUntil(keySelector, elementSelector, function () { return observableNever(); }, keySerializer); }; /** * Groups the elements of an observable sequence according to a specified key selector function. * A duration selector function is used to control the lifetime of groups. When a group expires, it receives an OnCompleted notification. When a new element with the same * key value as a reclaimed group occurs, the group will be reborn with a new lifetime request. * * @example * var res = observable.groupByUntil(function (x) { return x.id; }, null, function () { return Rx.Observable.never(); }); * 2 - observable.groupBy(function (x) { return x.id; }), function (x) { return x.name; }, function () { return Rx.Observable.never(); }); * 3 - observable.groupBy(function (x) { return x.id; }), function (x) { return x.name; }, function () { return Rx.Observable.never(); }, function (x) { return x.toString(); }); * @param {Function} keySelector A function to extract the key for each element. * @param {Function} durationSelector A function to signal the expiration of a group. * @param {Function} [keySerializer] Used to serialize the given object into a string for object comparison. * @returns {Observable} * A sequence of observable groups, each of which corresponds to a unique key value, containing all elements that share that same key value. * If a group's lifetime expires, a new group with the same key value can be created once an element with such a key value is encoutered. * */ observableProto.groupByUntil = function (keySelector, elementSelector, durationSelector, keySerializer) { var source = this; elementSelector || (elementSelector = identity); keySerializer || (keySerializer = defaultKeySerializer); return new AnonymousObservable(function (observer) { var map = {}, groupDisposable = new CompositeDisposable(), refCountDisposable = new RefCountDisposable(groupDisposable); groupDisposable.add(source.subscribe(function (x) { var duration, durationGroup, element, fireNewMapEntry, group, key, serializedKey, md, writer, w; try { key = keySelector(x); serializedKey = keySerializer(key); } catch (e) { for (w in map) { map[w].onError(e); } observer.onError(e); return; } fireNewMapEntry = false; try { writer = map[serializedKey]; if (!writer) { writer = new Subject(); map[serializedKey] = writer; fireNewMapEntry = true; } } catch (e) { for (w in map) { map[w].onError(e); } observer.onError(e); return; } if (fireNewMapEntry) { group = new GroupedObservable(key, writer, refCountDisposable); durationGroup = new GroupedObservable(key, writer); try { duration = durationSelector(durationGroup); } catch (e) { for (w in map) { map[w].onError(e); } observer.onError(e); return; } observer.onNext(group); md = new SingleAssignmentDisposable(); groupDisposable.add(md); var expire = function () { if (serializedKey in map) { delete map[serializedKey]; writer.onCompleted(); } groupDisposable.remove(md); }; md.setDisposable(duration.take(1).subscribe(noop, function (exn) { for (w in map) { map[w].onError(exn); } observer.onError(exn); }, function () { expire(); })); } try { element = elementSelector(x); } catch (e) { for (w in map) { map[w].onError(e); } observer.onError(e); return; } writer.onNext(element); }, function (ex) { for (var w in map) { map[w].onError(ex); } observer.onError(ex); }, function () { for (var w in map) { map[w].onCompleted(); } observer.onCompleted(); })); return refCountDisposable; }); }; /** * Projects each element of an observable sequence into a new form by incorporating the element's index. * @param {Function} selector A transform function to apply to each source element; the second parameter of the function represents the index of the source element. * @param {Any} [thisArg] Object to use as this when executing callback. * @returns {Observable} An observable sequence whose elements are the result of invoking the transform function on each element of source. */ observableProto.select = observableProto.map = function (selector, thisArg) { var parent = this; return new AnonymousObservable(function (observer) { var count = 0; return parent.subscribe(function (value) { var result; try { result = selector.call(thisArg, value, count++, parent); } catch (exception) { observer.onError(exception); return; } observer.onNext(result); }, observer.onError.bind(observer), observer.onCompleted.bind(observer)); }); }; /** * Retrieves the value of a specified property from all elements in the Observable sequence. * @param {String} property The property to pluck. * @returns {Observable} Returns a new Observable sequence of property values. */ observableProto.pluck = function (property) { return this.select(function (x) { return x[property]; }); }; function selectMany(selector) { return this.select(function (x, i) { var result = selector(x, i); return isPromise(result) ? observableFromPromise(result) : result; }).mergeObservable(); } /** * One of the Following: * Projects each element of an observable sequence to an observable sequence and merges the resulting observable sequences into one observable sequence. * * @example * var res = source.selectMany(function (x) { return Rx.Observable.range(0, x); }); * Or: * Projects each element of an observable sequence to an observable sequence, invokes the result selector for the source element and each of the corresponding inner sequence's elements, and merges the results into one observable sequence. * * var res = source.selectMany(function (x) { return Rx.Observable.range(0, x); }, function (x, y) { return x + y; }); * Or: * Projects each element of the source observable sequence to the other observable sequence and merges the resulting observable sequences into one observable sequence. * * var res = source.selectMany(Rx.Observable.fromArray([1,2,3])); * @param selector A transform function to apply to each element or an observable sequence to project each element from the * source sequence onto which could be either an observable or Promise. * @param {Function} [resultSelector] A transform function to apply to each element of the intermediate sequence. * @returns {Observable} An observable sequence whose elements are the result of invoking the one-to-many transform function collectionSelector on each element of the input sequence and then mapping each of those sequence elements and their corresponding source element to a result element. */ observableProto.selectMany = observableProto.flatMap = function (selector, resultSelector) { if (resultSelector) { return this.selectMany(function (x, i) { var selectorResult = selector(x, i), result = isPromise(selectorResult) ? observableFromPromise(selectorResult) : selectorResult; return result.select(function (y) { return resultSelector(x, y, i); }); }); } if (typeof selector === 'function') { return selectMany.call(this, selector); } return selectMany.call(this, function () { return selector; }); }; /** * Projects each element of an observable sequence into a new sequence of observable sequences by incorporating the element's index and then * transforms an observable sequence of observable sequences into an observable sequence producing values only from the most recent observable sequence. * @param {Function} selector A transform function to apply to each source element; the second parameter of the function represents the index of the source element. * @param {Any} [thisArg] Object to use as this when executing callback. * @returns {Observable} An observable sequence whose elements are the result of invoking the transform function on each element of source producing an Observable of Observable sequences * and that at any point in time produces the elements of the most recent inner observable sequence that has been received. */ observableProto.selectSwitch = observableProto.flatMapLatest = function (selector, thisArg) { return this.select(selector, thisArg).switchLatest(); }; /** * Bypasses a specified number of elements in an observable sequence and then returns the remaining elements. * @param {Number} count The number of elements to skip before returning the remaining elements. * @returns {Observable} An observable sequence that contains the elements that occur after the specified index in the input sequence. */ observableProto.skip = function (count) { if (count < 0) { throw new Error(argumentOutOfRange); } var observable = this; return new AnonymousObservable(function (observer) { var remaining = count; return observable.subscribe(function (x) { if (remaining <= 0) { observer.onNext(x); } else { remaining--; } }, observer.onError.bind(observer), observer.onCompleted.bind(observer)); }); }; /** * Bypasses elements in an observable sequence as long as a specified condition is true and then returns the remaining elements. * The element's index is used in the logic of the predicate function. * * var res = source.skipWhile(function (value) { return value < 10; }); * var res = source.skipWhile(function (value, index) { return value < 10 || index < 10; }); * @param {Function} predicate A function to test each element for a condition; the second parameter of the function represents the index of the source element. * @param {Any} [thisArg] Object to use as this when executing callback. * @returns {Observable} An observable sequence that contains the elements from the input sequence starting at the first element in the linear series that does not pass the test specified by predicate. */ observableProto.skipWhile = function (predicate, thisArg) { var source = this; return new AnonymousObservable(function (observer) { var i = 0, running = false; return source.subscribe(function (x) { if (!running) { try { running = !predicate.call(thisArg, x, i++, source); } catch (e) { observer.onError(e); return; } } if (running) { observer.onNext(x); } }, observer.onError.bind(observer), observer.onCompleted.bind(observer)); }); }; /** * Returns a specified number of contiguous elements from the start of an observable sequence, using the specified scheduler for the edge case of take(0). * * var res = source.take(5); * var res = source.take(0, Rx.Scheduler.timeout); * @param {Number} count The number of elements to return. * @param {Scheduler} [scheduler] Scheduler used to produce an OnCompleted message in case <paramref name="count count</paramref> is set to 0. * @returns {Observable} An observable sequence that contains the specified number of elements from the start of the input sequence. */ observableProto.take = function (count, scheduler) { if (count < 0) { throw new Error(argumentOutOfRange); } if (count === 0) { return observableEmpty(scheduler); } var observable = this; return new AnonymousObservable(function (observer) { var remaining = count; return observable.subscribe(function (x) { if (remaining > 0) { remaining--; observer.onNext(x); if (remaining === 0) { observer.onCompleted(); } } }, observer.onError.bind(observer), observer.onCompleted.bind(observer)); }); }; /** * Returns elements from an observable sequence as long as a specified condition is true. * The element's index is used in the logic of the predicate function. * * @example * var res = source.takeWhile(function (value) { return value < 10; }); * var res = source.takeWhile(function (value, index) { return value < 10 || index < 10; }); * @param {Function} predicate A function to test each element for a condition; the second parameter of the function represents the index of the source element. * @param {Any} [thisArg] Object to use as this when executing callback. * @returns {Observable} An observable sequence that contains the elements from the input sequence that occur before the element at which the test no longer passes. */ observableProto.takeWhile = function (predicate, thisArg) { var observable = this; return new AnonymousObservable(function (observer) { var i = 0, running = true; return observable.subscribe(function (x) { if (running) { try { running = predicate.call(thisArg, x, i++, observable); } catch (e) { observer.onError(e); return; } if (running) { observer.onNext(x); } else { observer.onCompleted(); } } }, observer.onError.bind(observer), observer.onCompleted.bind(observer)); }); }; /** * Filters the elements of an observable sequence based on a predicate by incorporating the element's index. * * @example * var res = source.where(function (value) { return value < 10; }); * var res = source.where(function (value, index) { return value < 10 || index < 10; }); * @param {Function} predicate A function to test each source element for a condition; the second parameter of the function represents the index of the source element. * @param {Any} [thisArg] Object to use as this when executing callback. * @returns {Observable} An observable sequence that contains elements from the input sequence that satisfy the condition. */ observableProto.where = observableProto.filter = function (predicate, thisArg) { var parent = this; return new AnonymousObservable(function (observer) { var count = 0; return parent.subscribe(function (value) { var shouldRun; try { shouldRun = predicate.call(thisArg, value, count++, parent); } catch (exception) { observer.onError(exception); return; } if (shouldRun) { observer.onNext(value); } }, observer.onError.bind(observer), observer.onCompleted.bind(observer)); }); }; var AnonymousObservable = Rx.AnonymousObservable = (function (_super) { inherits(AnonymousObservable, _super); // Fix subscriber to check for undefined or function returned to decorate as Disposable function fixSubscriber(subscriber) { if (typeof subscriber === 'undefined') { subscriber = disposableEmpty; } else if (typeof subscriber === 'function') { subscriber = disposableCreate(subscriber); } return subscriber; } function AnonymousObservable(subscribe) { if (!(this instanceof AnonymousObservable)) { return new AnonymousObservable(subscribe); } function s(observer) { var autoDetachObserver = new AutoDetachObserver(observer); if (currentThreadScheduler.scheduleRequired()) { currentThreadScheduler.schedule(function () { try { autoDetachObserver.setDisposable(fixSubscriber(subscribe(autoDetachObserver))); } catch (e) { if (!autoDetachObserver.fail(e)) { throw e; } } }); } else { try { autoDetachObserver.setDisposable(fixSubscriber(subscribe(autoDetachObserver))); } catch (e) { if (!autoDetachObserver.fail(e)) { throw e; } } } return autoDetachObserver; } _super.call(this, s); } return AnonymousObservable; }(Observable)); /** @private */ var AutoDetachObserver = (function (_super) { inherits(AutoDetachObserver, _super); function AutoDetachObserver(observer) { _super.call(this); this.observer = observer; this.m = new SingleAssignmentDisposable(); } var AutoDetachObserverPrototype = AutoDetachObserver.prototype; AutoDetachObserverPrototype.next = function (value) { var noError = false; try { this.observer.onNext(value); noError = true; } catch (e) { throw e; } finally { if (!noError) { this.dispose(); } } }; AutoDetachObserverPrototype.error = function (exn) { try { this.observer.onError(exn); } catch (e) { throw e; } finally { this.dispose(); } }; AutoDetachObserverPrototype.completed = function () { try { this.observer.onCompleted(); } catch (e) { throw e; } finally { this.dispose(); } }; AutoDetachObserverPrototype.setDisposable = function (value) { this.m.setDisposable(value); }; AutoDetachObserverPrototype.getDisposable = function (value) { return this.m.getDisposable(); }; /* @private */ AutoDetachObserverPrototype.disposable = function (value) { return arguments.length ? this.getDisposable() : setDisposable(value); }; AutoDetachObserverPrototype.dispose = function () { _super.prototype.dispose.call(this); this.m.dispose(); }; return AutoDetachObserver; }(AbstractObserver)); /** @private */ var GroupedObservable = (function (_super) { inherits(GroupedObservable, _super); function subscribe(observer) { return this.underlyingObservable.subscribe(observer); } /** * @constructor * @private */ function GroupedObservable(key, underlyingObservable, mergedDisposable) { _super.call(this, subscribe); this.key = key; this.underlyingObservable = !mergedDisposable ? underlyingObservable : new AnonymousObservable(function (observer) { return new CompositeDisposable(mergedDisposable.getDisposable(), underlyingObservable.subscribe(observer)); }); } return GroupedObservable; }(Observable)); /** @private */ var InnerSubscription = function (subject, observer) { this.subject = subject; this.observer = observer; }; /** * @private * @memberOf InnerSubscription */ InnerSubscription.prototype.dispose = function () { if (!this.subject.isDisposed && this.observer !== null) { var idx = this.subject.observers.indexOf(this.observer); this.subject.observers.splice(idx, 1); this.observer = null; } }; /** * Represents an object that is both an observable sequence as well as an observer. * Each notification is broadcasted to all subscribed observers. */ var Subject = Rx.Subject = (function (_super) { function subscribe(observer) { checkDisposed.call(this); if (!this.isStopped) { this.observers.push(observer); return new InnerSubscription(this, observer); } if (this.exception) { observer.onError(this.exception); return disposableEmpty; } observer.onCompleted(); return disposableEmpty; } inherits(Subject, _super); /** * Creates a subject. * @constructor */ function Subject() { _super.call(this, subscribe); this.isDisposed = false, this.isStopped = false, this.observers = []; } addProperties(Subject.prototype, Observer, { /** * Indicates whether the subject has observers subscribed to it. * @returns {Boolean} Indicates whether the subject has observers subscribed to it. */ hasObservers: function () { return this.observers.length > 0; }, /** * Notifies all subscribed observers about the end of the sequence. */ onCompleted: function () { checkDisposed.call(this); if (!this.isStopped) { var os = this.observers.slice(0); this.isStopped = true; for (var i = 0, len = os.length; i < len; i++) { os[i].onCompleted(); } this.observers = []; } }, /** * Notifies all subscribed observers about the exception. * @param {Mixed} error The exception to send to all observers. */ onError: function (exception) { checkDisposed.call(this); if (!this.isStopped) { var os = this.observers.slice(0); this.isStopped = true; this.exception = exception; for (var i = 0, len = os.length; i < len; i++) { os[i].onError(exception); } this.observers = []; } }, /** * Notifies all subscribed observers about the arrival of the specified element in the sequence. * @param {Mixed} value The value to send to all observers. */ onNext: function (value) { checkDisposed.call(this); if (!this.isStopped) { var os = this.observers.slice(0); for (var i = 0, len = os.length; i < len; i++) { os[i].onNext(value); } } }, /** * Unsubscribe all observers and release resources. */ dispose: function () { this.isDisposed = true; this.observers = null; } }); /** * Creates a subject from the specified observer and observable. * @param {Observer} observer The observer used to send messages to the subject. * @param {Observable} observable The observable used to subscribe to messages sent from the subject. * @returns {Subject} Subject implemented using the given observer and observable. */ Subject.create = function (observer, observable) { return new AnonymousSubject(observer, observable); }; return Subject; }(Observable)); /** * Represents the result of an asynchronous operation. * The last value before the OnCompleted notification, or the error received through OnError, is sent to all subscribed observers. */ var AsyncSubject = Rx.AsyncSubject = (function (_super) { function subscribe(observer) { checkDisposed.call(this); if (!this.isStopped) { this.observers.push(observer); return new InnerSubscription(this, observer); } var ex = this.exception, hv = this.hasValue, v = this.value; if (ex) { observer.onError(ex); } else if (hv) { observer.onNext(v); observer.onCompleted(); } else { observer.onCompleted(); } return disposableEmpty; } inherits(AsyncSubject, _super); /** * Creates a subject that can only receive one value and that value is cached for all future observations. * @constructor */ function AsyncSubject() { _super.call(this, subscribe); this.isDisposed = false; this.isStopped = false; this.value = null; this.hasValue = false; this.observers = []; this.exception = null; } addProperties(AsyncSubject.prototype, Observer, { /** * Indicates whether the subject has observers subscribed to it. * @returns {Boolean} Indicates whether the subject has observers subscribed to it. */ hasObservers: function () { checkDisposed.call(this); return this.observers.length > 0; }, /** * Notifies all subscribed observers about the end of the sequence, also causing the last received value to be sent out (if any). */ onCompleted: function () { var o, i, len; checkDisposed.call(this); if (!this.isStopped) { this.isStopped = true; var os = this.observers.slice(0), v = this.value, hv = this.hasValue; if (hv) { for (i = 0, len = os.length; i < len; i++) { o = os[i]; o.onNext(v); o.onCompleted(); } } else { for (i = 0, len = os.length; i < len; i++) { os[i].onCompleted(); } } this.observers = []; } }, /** * Notifies all subscribed observers about the exception. * @param {Mixed} error The exception to send to all observers. */ onError: function (exception) { checkDisposed.call(this); if (!this.isStopped) { var os = this.observers.slice(0); this.isStopped = true; this.exception = exception; for (var i = 0, len = os.length; i < len; i++) { os[i].onError(exception); } this.observers = []; } }, /** * Sends a value to the subject. The last value received before successful termination will be sent to all subscribed and future observers. * @param {Mixed} value The value to store in the subject. */ onNext: function (value) { checkDisposed.call(this); if (!this.isStopped) { this.value = value; this.hasValue = true; } }, /** * Unsubscribe all observers and release resources. */ dispose: function () { this.isDisposed = true; this.observers = null; this.exception = null; this.value = null; } }); return AsyncSubject; }(Observable)); /** @private */ var AnonymousSubject = (function (_super) { inherits(AnonymousSubject, _super); function subscribe(observer) { return this.observable.subscribe(observer); } /** * @private * @constructor */ function AnonymousSubject(observer, observable) { _super.call(this, subscribe); this.observer = observer; this.observable = observable; } addProperties(AnonymousSubject.prototype, Observer, { /** * @private * @memberOf AnonymousSubject# */ onCompleted: function () { this.observer.onCompleted(); }, /** * @private * @memberOf AnonymousSubject# */ onError: function (exception) { this.observer.onError(exception); }, /** * @private * @memberOf AnonymousSubject# */ onNext: function (value) { this.observer.onNext(value); } }); return AnonymousSubject; }(Observable)); if (typeof define == 'function' && typeof define.amd == 'object' && define.amd) { root.Rx = Rx; define(function() { return Rx; }); } else if (freeExports && freeModule) { // in Node.js or RingoJS if (moduleExports) { (freeModule.exports = Rx).Rx = Rx; } else { freeExports.Rx = Rx; } } else { // in a browser or Rhino root.Rx = Rx; } }.call(this));
src/svg-icons/device/battery-full.js
pomerantsev/material-ui
import React from 'react'; import pure from 'recompose/pure'; import SvgIcon from '../../SvgIcon'; let DeviceBatteryFull = (props) => ( <SvgIcon {...props}> <path d="M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33v15.33C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V5.33C17 4.6 16.4 4 15.67 4z"/> </SvgIcon> ); DeviceBatteryFull = pure(DeviceBatteryFull); DeviceBatteryFull.displayName = 'DeviceBatteryFull'; DeviceBatteryFull.muiName = 'SvgIcon'; export default DeviceBatteryFull;
modules/Route.js
arasmussen/react-router
import React from 'react' import warning from 'warning' import invariant from 'invariant' import { createRouteFromReactElement } from './RouteUtils' import { component, components } from './PropTypes' const { string, bool, func } = React.PropTypes /** * A <Route> is used to declare which components are rendered to the page when * the URL matches a given pattern. * * Routes are arranged in a nested tree structure. When a new URL is requested, * the tree is searched depth-first to find a route whose path matches the URL. * When one is found, all routes in the tree that lead to it are considered * "active" and their components are rendered into the DOM, nested in the same * order as they are in the tree. */ const Route = React.createClass({ statics: { createRouteFromReactElement(element) { const route = createRouteFromReactElement(element) if (route.handler) { warning( false, '<Route handler> is deprecated, use <Route component> instead' ) route.component = route.handler delete route.handler } return route } }, propTypes: { path: string, ignoreScrollBehavior: bool, handler: component, // deprecated component, components, getComponents: func }, render() { invariant( false, '<Route> elements are for router configuration only and should not be rendered' ) } }) export default Route
src/client.js
trueter/react-redux-universal-hot-example
/** * THIS IS THE ENTRY POINT FOR THE CLIENT, JUST LIKE server.js IS THE ENTRY POINT FOR THE SERVER. */ import 'babel-polyfill'; import React from 'react'; import ReactDOM from 'react-dom'; import createStore from './redux/create'; import ApiClient from './helpers/ApiClient'; import io from 'socket.io-client'; import {Provider} from 'react-redux'; import { Router, browserHistory } from 'react-router'; import { ReduxAsyncConnect } from 'redux-async-connect'; import useScroll from 'scroll-behavior/lib/useStandardScroll'; import getRoutes from './routes'; const client = new ApiClient(); const history = useScroll(() => browserHistory)(); const dest = document.getElementById('content'); const store = createStore(history, client, window.__data); function initSocket() { const socket = io('', {path: '/ws'}); socket.on('news', (data) => { console.log(data); socket.emit('my other event', { my: 'data from client' }); }); socket.on('msg', (data) => { console.log(data); }); return socket; } global.socket = initSocket(); const component = ( <Router render={(props) => <ReduxAsyncConnect {...props} helpers={{client}} filter={item => !item.deferred} /> } history={history}> {getRoutes(store)} </Router> ); ReactDOM.render( <Provider store={store} key="provider"> {component} </Provider>, dest ); if (process.env.NODE_ENV !== 'production') { window.React = React; // enable debugger if (!dest || !dest.firstChild || !dest.firstChild.attributes || !dest.firstChild.attributes['data-react-checksum']) { console.error('Server-side React render was discarded. Make sure that your initial render does not contain any client-side code.'); } } if (__DEVTOOLS__ && !window.devToolsExtension) { const DevTools = require('./containers/DevTools/DevTools'); ReactDOM.render( <Provider store={store} key="provider"> <div> {component} <DevTools /> </div> </Provider>, dest ); }
packages/components/src/WithDrawer/WithDrawer.component.js
Talend/ui
import PropTypes from 'prop-types'; import React from 'react'; import { TransitionGroup } from 'react-transition-group'; import get from 'lodash/get'; import Drawer from '../Drawer'; import theme from './withDrawer.scss'; /** * The Layout component is a container * that should follow the body of your App. * If the Layout is not after the body you have to * add some CSS * @example body > div { max-height: 100vh; overflow: hidden; display: flex; width: 100vw; } * @param {object} props react props * @example <Layout mode="TwoColumns" one={one} two={two}></Layout> */ function WithDrawer({ drawers, children, ...rest }) { return ( <div className={theme['tc-with-drawer']}> {children} <TransitionGroup className={theme['tc-with-drawer-container']} {...rest}> {drawers && drawers.map((drawer, key) => ( <Drawer.Animation withTransition={ get(drawer, 'props.withTransition', true) && get(drawer, 'props.route.state.withTransition') } key={get(drawer, 'props.route.path', key)} > {({ style, ...props }) => ( <div className="tc-with-drawer-wrapper" style={style}> {React.cloneElement(drawer, props)} </div> )} </Drawer.Animation> ))} </TransitionGroup> </div> ); } WithDrawer.displayName = 'WithDrawer'; WithDrawer.propTypes = { drawers: PropTypes.arrayOf(PropTypes.element), children: PropTypes.node, ...TransitionGroup.propTypes, }; export default WithDrawer;
node_modules/bs-recipes/recipes/webpack.react-transform-hmr/app/js/main.js
thall17/thall17.github.io
import React from 'react'; import { render } from 'react-dom'; // It's important to not define HelloWorld component right in this file // because in that case it will do full page reload on change import HelloWorld from './HelloWorld.jsx'; render(<HelloWorld />, document.getElementById('react-root'));
docs/src/app/components/pages/components/IconButton/ExampleTooltip.js
lawrence-yu/material-ui
import React from 'react'; import IconButton from 'material-ui/IconButton'; const IconButtonExampleTooltip = () => ( <div> <IconButton iconClassName="muidocs-icon-custom-github" tooltip="bottom-right" tooltipPosition="bottom-right" /> <IconButton iconClassName="muidocs-icon-custom-github" tooltip="bottom-center" tooltipPosition="bottom-center" /> <IconButton iconClassName="muidocs-icon-custom-github" tooltip="bottom-left" tooltipPosition="bottom-left" /> <IconButton iconClassName="muidocs-icon-custom-github" tooltip="top-right" tooltipPosition="top-right" /> <IconButton iconClassName="muidocs-icon-custom-github" tooltip="top-center" tooltipPosition="top-center" /> <IconButton iconClassName="muidocs-icon-custom-github" tooltip="top-left" tooltipPosition="top-left" /> </div> ); export default IconButtonExampleTooltip;
demo/js/reactTagsInputPage.js
dsugden/scalajs-react-components
var ReactTagsInput = require('react-tagsinput'); require('../styles/react-tagsinput.css') window.ReactTagsInput = ReactTagsInput;
src/App.js
UnboundID/auth-explorer
import React, { Component } from 'react'; import Dispatcher from './components/Dispatcher'; import Top from './components/Top'; class App extends Component { render() { return ( <div> <Top/> <Dispatcher/> </div> ); } } export default App;
src/React/Widgets/ProgressLoaderWidget/index.js
Kitware/paraviewweb
import React from 'react'; import PropTypes from 'prop-types'; import style from 'PVWStyle/ReactWidgets/ProgressLoaderWidget.mcss'; export default function ProgressLoaderWidget(props) { return ( <div className={style.container}> <div className={style.loader} /> <div className={style.message}>{props.message}</div> </div> ); } ProgressLoaderWidget.propTypes = { message: PropTypes.string, }; ProgressLoaderWidget.defaultProps = { message: 'Loading ParaView...', };
src/index.js
JenPhD/ReactYouTubeSearch
import _ from 'lodash'; import React, { Component } from 'react'; import ReactDOM from 'react-dom'; import YTSearch from 'youtube-api-search'; import SearchBar from './components/search_bar'; import VideoList from './components/video_list'; import VideoDetail from './components/video_detail'; //Youtube API key const API_KEY = 'AIzaSyBg56dFS2lt08g8-nUG2xXfFe8z36-745c'; //Create a new component. class App extends Component { constructor(props) { super(props); this.state = { videos: [], selectedVideo: null }; this.videoSearch('unicorns'); } videoSearch(term) { YTSearch({key: API_KEY, term: term}, (videos) => { this.setState({ videos: videos, selectedVideo: videos[0] }); }); } render() { const videoSearch = _.debounce((term) => { this.videoSearch(term) }, 300); return ( <div> <SearchBar onSearchTermChange={videoSearch} /> <div className="row"> <VideoDetail video={this.state.selectedVideo} /> <VideoList onVideoSelect={selectedVideo => this.setState({selectedVideo}) } videos={this.state.videos}/> </div> </div> ); } } //Take this component's generated html and put it //on the page (in the DOM) ReactDOM.render(<App />, document.querySelector('.container'));
javascript/jquery-min-1.8.2.js
cesarvelame/placar
/*! jQuery v1.8.2 jquery.com | jquery.org/license */ (function(a,b){function G(a){var b=F[a]={};return p.each(a.split(s),function(a,c){b[c]=!0}),b}function J(a,c,d){if(d===b&&a.nodeType===1){var e="data-"+c.replace(I,"-$1").toLowerCase();d=a.getAttribute(e);if(typeof d=="string"){try{d=d==="true"?!0:d==="false"?!1:d==="null"?null:+d+""===d?+d:H.test(d)?p.parseJSON(d):d}catch(f){}p.data(a,c,d)}else d=b}return d}function K(a){var b;for(b in a){if(b==="data"&&p.isEmptyObject(a[b]))continue;if(b!=="toJSON")return!1}return!0}function ba(){return!1}function bb(){return!0}function bh(a){return!a||!a.parentNode||a.parentNode.nodeType===11}function bi(a,b){do a=a[b];while(a&&a.nodeType!==1);return a}function bj(a,b,c){b=b||0;if(p.isFunction(b))return p.grep(a,function(a,d){var e=!!b.call(a,d,a);return e===c});if(b.nodeType)return p.grep(a,function(a,d){return a===b===c});if(typeof b=="string"){var d=p.grep(a,function(a){return a.nodeType===1});if(be.test(b))return p.filter(b,d,!c);b=p.filter(b,d)}return p.grep(a,function(a,d){return p.inArray(a,b)>=0===c})}function bk(a){var b=bl.split("|"),c=a.createDocumentFragment();if(c.createElement)while(b.length)c.createElement(b.pop());return c}function bC(a,b){return a.getElementsByTagName(b)[0]||a.appendChild(a.ownerDocument.createElement(b))}function bD(a,b){if(b.nodeType!==1||!p.hasData(a))return;var c,d,e,f=p._data(a),g=p._data(b,f),h=f.events;if(h){delete g.handle,g.events={};for(c in h)for(d=0,e=h[c].length;d<e;d++)p.event.add(b,c,h[c][d])}g.data&&(g.data=p.extend({},g.data))}function bE(a,b){var c;if(b.nodeType!==1)return;b.clearAttributes&&b.clearAttributes(),b.mergeAttributes&&b.mergeAttributes(a),c=b.nodeName.toLowerCase(),c==="object"?(b.parentNode&&(b.outerHTML=a.outerHTML),p.support.html5Clone&&a.innerHTML&&!p.trim(b.innerHTML)&&(b.innerHTML=a.innerHTML)):c==="input"&&bv.test(a.type)?(b.defaultChecked=b.checked=a.checked,b.value!==a.value&&(b.value=a.value)):c==="option"?b.selected=a.defaultSelected:c==="input"||c==="textarea"?b.defaultValue=a.defaultValue:c==="script"&&b.text!==a.text&&(b.text=a.text),b.removeAttribute(p.expando)}function bF(a){return typeof a.getElementsByTagName!="undefined"?a.getElementsByTagName("*"):typeof a.querySelectorAll!="undefined"?a.querySelectorAll("*"):[]}function bG(a){bv.test(a.type)&&(a.defaultChecked=a.checked)}function bY(a,b){if(b in a)return b;var c=b.charAt(0).toUpperCase()+b.slice(1),d=b,e=bW.length;while(e--){b=bW[e]+c;if(b in a)return b}return d}function bZ(a,b){return a=b||a,p.css(a,"display")==="none"||!p.contains(a.ownerDocument,a)}function b$(a,b){var c,d,e=[],f=0,g=a.length;for(;f<g;f++){c=a[f];if(!c.style)continue;e[f]=p._data(c,"olddisplay"),b?(!e[f]&&c.style.display==="none"&&(c.style.display=""),c.style.display===""&&bZ(c)&&(e[f]=p._data(c,"olddisplay",cc(c.nodeName)))):(d=bH(c,"display"),!e[f]&&d!=="none"&&p._data(c,"olddisplay",d))}for(f=0;f<g;f++){c=a[f];if(!c.style)continue;if(!b||c.style.display==="none"||c.style.display==="")c.style.display=b?e[f]||"":"none"}return a}function b_(a,b,c){var d=bP.exec(b);return d?Math.max(0,d[1]-(c||0))+(d[2]||"px"):b}function ca(a,b,c,d){var e=c===(d?"border":"content")?4:b==="width"?1:0,f=0;for(;e<4;e+=2)c==="margin"&&(f+=p.css(a,c+bV[e],!0)),d?(c==="content"&&(f-=parseFloat(bH(a,"padding"+bV[e]))||0),c!=="margin"&&(f-=parseFloat(bH(a,"border"+bV[e]+"Width"))||0)):(f+=parseFloat(bH(a,"padding"+bV[e]))||0,c!=="padding"&&(f+=parseFloat(bH(a,"border"+bV[e]+"Width"))||0));return f}function cb(a,b,c){var d=b==="width"?a.offsetWidth:a.offsetHeight,e=!0,f=p.support.boxSizing&&p.css(a,"boxSizing")==="border-box";if(d<=0||d==null){d=bH(a,b);if(d<0||d==null)d=a.style[b];if(bQ.test(d))return d;e=f&&(p.support.boxSizingReliable||d===a.style[b]),d=parseFloat(d)||0}return d+ca(a,b,c||(f?"border":"content"),e)+"px"}function cc(a){if(bS[a])return bS[a];var b=p("<"+a+">").appendTo(e.body),c=b.css("display");b.remove();if(c==="none"||c===""){bI=e.body.appendChild(bI||p.extend(e.createElement("iframe"),{frameBorder:0,width:0,height:0}));if(!bJ||!bI.createElement)bJ=(bI.contentWindow||bI.contentDocument).document,bJ.write("<!doctype html><html><body>"),bJ.close();b=bJ.body.appendChild(bJ.createElement(a)),c=bH(b,"display"),e.body.removeChild(bI)}return bS[a]=c,c}function ci(a,b,c,d){var e;if(p.isArray(b))p.each(b,function(b,e){c||ce.test(a)?d(a,e):ci(a+"["+(typeof e=="object"?b:"")+"]",e,c,d)});else if(!c&&p.type(b)==="object")for(e in b)ci(a+"["+e+"]",b[e],c,d);else d(a,b)}function cz(a){return function(b,c){typeof b!="string"&&(c=b,b="*");var d,e,f,g=b.toLowerCase().split(s),h=0,i=g.length;if(p.isFunction(c))for(;h<i;h++)d=g[h],f=/^\+/.test(d),f&&(d=d.substr(1)||"*"),e=a[d]=a[d]||[],e[f?"unshift":"push"](c)}}function cA(a,c,d,e,f,g){f=f||c.dataTypes[0],g=g||{},g[f]=!0;var h,i=a[f],j=0,k=i?i.length:0,l=a===cv;for(;j<k&&(l||!h);j++)h=i[j](c,d,e),typeof h=="string"&&(!l||g[h]?h=b:(c.dataTypes.unshift(h),h=cA(a,c,d,e,h,g)));return(l||!h)&&!g["*"]&&(h=cA(a,c,d,e,"*",g)),h}function cB(a,c){var d,e,f=p.ajaxSettings.flatOptions||{};for(d in c)c[d]!==b&&((f[d]?a:e||(e={}))[d]=c[d]);e&&p.extend(!0,a,e)}function cC(a,c,d){var e,f,g,h,i=a.contents,j=a.dataTypes,k=a.responseFields;for(f in k)f in d&&(c[k[f]]=d[f]);while(j[0]==="*")j.shift(),e===b&&(e=a.mimeType||c.getResponseHeader("content-type"));if(e)for(f in i)if(i[f]&&i[f].test(e)){j.unshift(f);break}if(j[0]in d)g=j[0];else{for(f in d){if(!j[0]||a.converters[f+" "+j[0]]){g=f;break}h||(h=f)}g=g||h}if(g)return g!==j[0]&&j.unshift(g),d[g]}function cD(a,b){var c,d,e,f,g=a.dataTypes.slice(),h=g[0],i={},j=0;a.dataFilter&&(b=a.dataFilter(b,a.dataType));if(g[1])for(c in a.converters)i[c.toLowerCase()]=a.converters[c];for(;e=g[++j];)if(e!=="*"){if(h!=="*"&&h!==e){c=i[h+" "+e]||i["* "+e];if(!c)for(d in i){f=d.split(" ");if(f[1]===e){c=i[h+" "+f[0]]||i["* "+f[0]];if(c){c===!0?c=i[d]:i[d]!==!0&&(e=f[0],g.splice(j--,0,e));break}}}if(c!==!0)if(c&&a["throws"])b=c(b);else try{b=c(b)}catch(k){return{state:"parsererror",error:c?k:"No conversion from "+h+" to "+e}}}h=e}return{state:"success",data:b}}function cL(){try{return new a.XMLHttpRequest}catch(b){}}function cM(){try{return new a.ActiveXObject("Microsoft.XMLHTTP")}catch(b){}}function cU(){return setTimeout(function(){cN=b},0),cN=p.now()}function cV(a,b){p.each(b,function(b,c){var d=(cT[b]||[]).concat(cT["*"]),e=0,f=d.length;for(;e<f;e++)if(d[e].call(a,b,c))return})}function cW(a,b,c){var d,e=0,f=0,g=cS.length,h=p.Deferred().always(function(){delete i.elem}),i=function(){var b=cN||cU(),c=Math.max(0,j.startTime+j.duration-b),d=1-(c/j.duration||0),e=0,f=j.tweens.length;for(;e<f;e++)j.tweens[e].run(d);return h.notifyWith(a,[j,d,c]),d<1&&f?c:(h.resolveWith(a,[j]),!1)},j=h.promise({elem:a,props:p.extend({},b),opts:p.extend(!0,{specialEasing:{}},c),originalProperties:b,originalOptions:c,startTime:cN||cU(),duration:c.duration,tweens:[],createTween:function(b,c,d){var e=p.Tween(a,j.opts,b,c,j.opts.specialEasing[b]||j.opts.easing);return j.tweens.push(e),e},stop:function(b){var c=0,d=b?j.tweens.length:0;for(;c<d;c++)j.tweens[c].run(1);return b?h.resolveWith(a,[j,b]):h.rejectWith(a,[j,b]),this}}),k=j.props;cX(k,j.opts.specialEasing);for(;e<g;e++){d=cS[e].call(j,a,k,j.opts);if(d)return d}return cV(j,k),p.isFunction(j.opts.start)&&j.opts.start.call(a,j),p.fx.timer(p.extend(i,{anim:j,queue:j.opts.queue,elem:a})),j.progress(j.opts.progress).done(j.opts.done,j.opts.complete).fail(j.opts.fail).always(j.opts.always)}function cX(a,b){var c,d,e,f,g;for(c in a){d=p.camelCase(c),e=b[d],f=a[c],p.isArray(f)&&(e=f[1],f=a[c]=f[0]),c!==d&&(a[d]=f,delete a[c]),g=p.cssHooks[d];if(g&&"expand"in g){f=g.expand(f),delete a[d];for(c in f)c in a||(a[c]=f[c],b[c]=e)}else b[d]=e}}function cY(a,b,c){var d,e,f,g,h,i,j,k,l=this,m=a.style,n={},o=[],q=a.nodeType&&bZ(a);c.queue||(j=p._queueHooks(a,"fx"),j.unqueued==null&&(j.unqueued=0,k=j.empty.fire,j.empty.fire=function(){j.unqueued||k()}),j.unqueued++,l.always(function(){l.always(function(){j.unqueued--,p.queue(a,"fx").length||j.empty.fire()})})),a.nodeType===1&&("height"in b||"width"in b)&&(c.overflow=[m.overflow,m.overflowX,m.overflowY],p.css(a,"display")==="inline"&&p.css(a,"float")==="none"&&(!p.support.inlineBlockNeedsLayout||cc(a.nodeName)==="inline"?m.display="inline-block":m.zoom=1)),c.overflow&&(m.overflow="hidden",p.support.shrinkWrapBlocks||l.done(function(){m.overflow=c.overflow[0],m.overflowX=c.overflow[1],m.overflowY=c.overflow[2]}));for(d in b){f=b[d];if(cP.exec(f)){delete b[d];if(f===(q?"hide":"show"))continue;o.push(d)}}g=o.length;if(g){h=p._data(a,"fxshow")||p._data(a,"fxshow",{}),q?p(a).show():l.done(function(){p(a).hide()}),l.done(function(){var b;p.removeData(a,"fxshow",!0);for(b in n)p.style(a,b,n[b])});for(d=0;d<g;d++)e=o[d],i=l.createTween(e,q?h[e]:0),n[e]=h[e]||p.style(a,e),e in h||(h[e]=i.start,q&&(i.end=i.start,i.start=e==="width"||e==="height"?1:0))}}function cZ(a,b,c,d,e){return new cZ.prototype.init(a,b,c,d,e)}function c$(a,b){var c,d={height:a},e=0;b=b?1:0;for(;e<4;e+=2-b)c=bV[e],d["margin"+c]=d["padding"+c]=a;return b&&(d.opacity=d.width=a),d}function da(a){return p.isWindow(a)?a:a.nodeType===9?a.defaultView||a.parentWindow:!1}var c,d,e=a.document,f=a.location,g=a.navigator,h=a.jQuery,i=a.$,j=Array.prototype.push,k=Array.prototype.slice,l=Array.prototype.indexOf,m=Object.prototype.toString,n=Object.prototype.hasOwnProperty,o=String.prototype.trim,p=function(a,b){return new p.fn.init(a,b,c)},q=/[\-+]?(?:\d*\.|)\d+(?:[eE][\-+]?\d+|)/.source,r=/\S/,s=/\s+/,t=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,u=/^(?:[^#<]*(<[\w\W]+>)[^>]*$|#([\w\-]*)$)/,v=/^<(\w+)\s*\/?>(?:<\/\1>|)$/,w=/^[\],:{}\s]*$/,x=/(?:^|:|,)(?:\s*\[)+/g,y=/\\(?:["\\\/bfnrt]|u[\da-fA-F]{4})/g,z=/"[^"\\\r\n]*"|true|false|null|-?(?:\d\d*\.|)\d+(?:[eE][\-+]?\d+|)/g,A=/^-ms-/,B=/-([\da-z])/gi,C=function(a,b){return(b+"").toUpperCase()},D=function(){e.addEventListener?(e.removeEventListener("DOMContentLoaded",D,!1),p.ready()):e.readyState==="complete"&&(e.detachEvent("onreadystatechange",D),p.ready())},E={};p.fn=p.prototype={constructor:p,init:function(a,c,d){var f,g,h,i;if(!a)return this;if(a.nodeType)return this.context=this[0]=a,this.length=1,this;if(typeof a=="string"){a.charAt(0)==="<"&&a.charAt(a.length-1)===">"&&a.length>=3?f=[null,a,null]:f=u.exec(a);if(f&&(f[1]||!c)){if(f[1])return c=c instanceof p?c[0]:c,i=c&&c.nodeType?c.ownerDocument||c:e,a=p.parseHTML(f[1],i,!0),v.test(f[1])&&p.isPlainObject(c)&&this.attr.call(a,c,!0),p.merge(this,a);g=e.getElementById(f[2]);if(g&&g.parentNode){if(g.id!==f[2])return d.find(a);this.length=1,this[0]=g}return this.context=e,this.selector=a,this}return!c||c.jquery?(c||d).find(a):this.constructor(c).find(a)}return p.isFunction(a)?d.ready(a):(a.selector!==b&&(this.selector=a.selector,this.context=a.context),p.makeArray(a,this))},selector:"",jquery:"1.8.2",length:0,size:function(){return this.length},toArray:function(){return k.call(this)},get:function(a){return a==null?this.toArray():a<0?this[this.length+a]:this[a]},pushStack:function(a,b,c){var d=p.merge(this.constructor(),a);return d.prevObject=this,d.context=this.context,b==="find"?d.selector=this.selector+(this.selector?" ":"")+c:b&&(d.selector=this.selector+"."+b+"("+c+")"),d},each:function(a,b){return p.each(this,a,b)},ready:function(a){return p.ready.promise().done(a),this},eq:function(a){return a=+a,a===-1?this.slice(a):this.slice(a,a+1)},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},slice:function(){return this.pushStack(k.apply(this,arguments),"slice",k.call(arguments).join(","))},map:function(a){return this.pushStack(p.map(this,function(b,c){return a.call(b,c,b)}))},end:function(){return this.prevObject||this.constructor(null)},push:j,sort:[].sort,splice:[].splice},p.fn.init.prototype=p.fn,p.extend=p.fn.extend=function(){var a,c,d,e,f,g,h=arguments[0]||{},i=1,j=arguments.length,k=!1;typeof h=="boolean"&&(k=h,h=arguments[1]||{},i=2),typeof h!="object"&&!p.isFunction(h)&&(h={}),j===i&&(h=this,--i);for(;i<j;i++)if((a=arguments[i])!=null)for(c in a){d=h[c],e=a[c];if(h===e)continue;k&&e&&(p.isPlainObject(e)||(f=p.isArray(e)))?(f?(f=!1,g=d&&p.isArray(d)?d:[]):g=d&&p.isPlainObject(d)?d:{},h[c]=p.extend(k,g,e)):e!==b&&(h[c]=e)}return h},p.extend({noConflict:function(b){return a.$===p&&(a.$=i),b&&a.jQuery===p&&(a.jQuery=h),p},isReady:!1,readyWait:1,holdReady:function(a){a?p.readyWait++:p.ready(!0)},ready:function(a){if(a===!0?--p.readyWait:p.isReady)return;if(!e.body)return setTimeout(p.ready,1);p.isReady=!0;if(a!==!0&&--p.readyWait>0)return;d.resolveWith(e,[p]),p.fn.trigger&&p(e).trigger("ready").off("ready")},isFunction:function(a){return p.type(a)==="function"},isArray:Array.isArray||function(a){return p.type(a)==="array"},isWindow:function(a){return a!=null&&a==a.window},isNumeric:function(a){return!isNaN(parseFloat(a))&&isFinite(a)},type:function(a){return a==null?String(a):E[m.call(a)]||"object"},isPlainObject:function(a){if(!a||p.type(a)!=="object"||a.nodeType||p.isWindow(a))return!1;try{if(a.constructor&&!n.call(a,"constructor")&&!n.call(a.constructor.prototype,"isPrototypeOf"))return!1}catch(c){return!1}var d;for(d in a);return d===b||n.call(a,d)},isEmptyObject:function(a){var b;for(b in a)return!1;return!0},error:function(a){throw new Error(a)},parseHTML:function(a,b,c){var d;return!a||typeof a!="string"?null:(typeof b=="boolean"&&(c=b,b=0),b=b||e,(d=v.exec(a))?[b.createElement(d[1])]:(d=p.buildFragment([a],b,c?null:[]),p.merge([],(d.cacheable?p.clone(d.fragment):d.fragment).childNodes)))},parseJSON:function(b){if(!b||typeof b!="string")return null;b=p.trim(b);if(a.JSON&&a.JSON.parse)return a.JSON.parse(b);if(w.test(b.replace(y,"@").replace(z,"]").replace(x,"")))return(new Function("return "+b))();p.error("Invalid JSON: "+b)},parseXML:function(c){var d,e;if(!c||typeof c!="string")return null;try{a.DOMParser?(e=new DOMParser,d=e.parseFromString(c,"text/xml")):(d=new ActiveXObject("Microsoft.XMLDOM"),d.async="false",d.loadXML(c))}catch(f){d=b}return(!d||!d.documentElement||d.getElementsByTagName("parsererror").length)&&p.error("Invalid XML: "+c),d},noop:function(){},globalEval:function(b){b&&r.test(b)&&(a.execScript||function(b){a.eval.call(a,b)})(b)},camelCase:function(a){return a.replace(A,"ms-").replace(B,C)},nodeName:function(a,b){return a.nodeName&&a.nodeName.toLowerCase()===b.toLowerCase()},each:function(a,c,d){var e,f=0,g=a.length,h=g===b||p.isFunction(a);if(d){if(h){for(e in a)if(c.apply(a[e],d)===!1)break}else for(;f<g;)if(c.apply(a[f++],d)===!1)break}else if(h){for(e in a)if(c.call(a[e],e,a[e])===!1)break}else for(;f<g;)if(c.call(a[f],f,a[f++])===!1)break;return a},trim:o&&!o.call(" ")?function(a){return a==null?"":o.call(a)}:function(a){return a==null?"":(a+"").replace(t,"")},makeArray:function(a,b){var c,d=b||[];return a!=null&&(c=p.type(a),a.length==null||c==="string"||c==="function"||c==="regexp"||p.isWindow(a)?j.call(d,a):p.merge(d,a)),d},inArray:function(a,b,c){var d;if(b){if(l)return l.call(b,a,c);d=b.length,c=c?c<0?Math.max(0,d+c):c:0;for(;c<d;c++)if(c in b&&b[c]===a)return c}return-1},merge:function(a,c){var d=c.length,e=a.length,f=0;if(typeof d=="number")for(;f<d;f++)a[e++]=c[f];else while(c[f]!==b)a[e++]=c[f++];return a.length=e,a},grep:function(a,b,c){var d,e=[],f=0,g=a.length;c=!!c;for(;f<g;f++)d=!!b(a[f],f),c!==d&&e.push(a[f]);return e},map:function(a,c,d){var e,f,g=[],h=0,i=a.length,j=a instanceof p||i!==b&&typeof i=="number"&&(i>0&&a[0]&&a[i-1]||i===0||p.isArray(a));if(j)for(;h<i;h++)e=c(a[h],h,d),e!=null&&(g[g.length]=e);else for(f in a)e=c(a[f],f,d),e!=null&&(g[g.length]=e);return g.concat.apply([],g)},guid:1,proxy:function(a,c){var d,e,f;return typeof c=="string"&&(d=a[c],c=a,a=d),p.isFunction(a)?(e=k.call(arguments,2),f=function(){return a.apply(c,e.concat(k.call(arguments)))},f.guid=a.guid=a.guid||p.guid++,f):b},access:function(a,c,d,e,f,g,h){var i,j=d==null,k=0,l=a.length;if(d&&typeof d=="object"){for(k in d)p.access(a,c,k,d[k],1,g,e);f=1}else if(e!==b){i=h===b&&p.isFunction(e),j&&(i?(i=c,c=function(a,b,c){return i.call(p(a),c)}):(c.call(a,e),c=null));if(c)for(;k<l;k++)c(a[k],d,i?e.call(a[k],k,c(a[k],d)):e,h);f=1}return f?a:j?c.call(a):l?c(a[0],d):g},now:function(){return(new Date).getTime()}}),p.ready.promise=function(b){if(!d){d=p.Deferred();if(e.readyState==="complete")setTimeout(p.ready,1);else if(e.addEventListener)e.addEventListener("DOMContentLoaded",D,!1),a.addEventListener("load",p.ready,!1);else{e.attachEvent("onreadystatechange",D),a.attachEvent("onload",p.ready);var c=!1;try{c=a.frameElement==null&&e.documentElement}catch(f){}c&&c.doScroll&&function g(){if(!p.isReady){try{c.doScroll("left")}catch(a){return setTimeout(g,50)}p.ready()}}()}}return d.promise(b)},p.each("Boolean Number String Function Array Date RegExp Object".split(" "),function(a,b){E["[object "+b+"]"]=b.toLowerCase()}),c=p(e);var F={};p.Callbacks=function(a){a=typeof a=="string"?F[a]||G(a):p.extend({},a);var c,d,e,f,g,h,i=[],j=!a.once&&[],k=function(b){c=a.memory&&b,d=!0,h=f||0,f=0,g=i.length,e=!0;for(;i&&h<g;h++)if(i[h].apply(b[0],b[1])===!1&&a.stopOnFalse){c=!1;break}e=!1,i&&(j?j.length&&k(j.shift()):c?i=[]:l.disable())},l={add:function(){if(i){var b=i.length;(function d(b){p.each(b,function(b,c){var e=p.type(c);e==="function"&&(!a.unique||!l.has(c))?i.push(c):c&&c.length&&e!=="string"&&d(c)})})(arguments),e?g=i.length:c&&(f=b,k(c))}return this},remove:function(){return i&&p.each(arguments,function(a,b){var c;while((c=p.inArray(b,i,c))>-1)i.splice(c,1),e&&(c<=g&&g--,c<=h&&h--)}),this},has:function(a){return p.inArray(a,i)>-1},empty:function(){return i=[],this},disable:function(){return i=j=c=b,this},disabled:function(){return!i},lock:function(){return j=b,c||l.disable(),this},locked:function(){return!j},fireWith:function(a,b){return b=b||[],b=[a,b.slice?b.slice():b],i&&(!d||j)&&(e?j.push(b):k(b)),this},fire:function(){return l.fireWith(this,arguments),this},fired:function(){return!!d}};return l},p.extend({Deferred:function(a){var b=[["resolve","done",p.Callbacks("once memory"),"resolved"],["reject","fail",p.Callbacks("once memory"),"rejected"],["notify","progress",p.Callbacks("memory")]],c="pending",d={state:function(){return c},always:function(){return e.done(arguments).fail(arguments),this},then:function(){var a=arguments;return p.Deferred(function(c){p.each(b,function(b,d){var f=d[0],g=a[b];e[d[1]](p.isFunction(g)?function(){var a=g.apply(this,arguments);a&&p.isFunction(a.promise)?a.promise().done(c.resolve).fail(c.reject).progress(c.notify):c[f+"With"](this===e?c:this,[a])}:c[f])}),a=null}).promise()},promise:function(a){return a!=null?p.extend(a,d):d}},e={};return d.pipe=d.then,p.each(b,function(a,f){var g=f[2],h=f[3];d[f[1]]=g.add,h&&g.add(function(){c=h},b[a^1][2].disable,b[2][2].lock),e[f[0]]=g.fire,e[f[0]+"With"]=g.fireWith}),d.promise(e),a&&a.call(e,e),e},when:function(a){var b=0,c=k.call(arguments),d=c.length,e=d!==1||a&&p.isFunction(a.promise)?d:0,f=e===1?a:p.Deferred(),g=function(a,b,c){return function(d){b[a]=this,c[a]=arguments.length>1?k.call(arguments):d,c===h?f.notifyWith(b,c):--e||f.resolveWith(b,c)}},h,i,j;if(d>1){h=new Array(d),i=new Array(d),j=new Array(d);for(;b<d;b++)c[b]&&p.isFunction(c[b].promise)?c[b].promise().done(g(b,j,c)).fail(f.reject).progress(g(b,i,h)):--e}return e||f.resolveWith(j,c),f.promise()}}),p.support=function(){var b,c,d,f,g,h,i,j,k,l,m,n=e.createElement("div");n.setAttribute("className","t"),n.innerHTML=" <link/><table></table><a href='/a'>a</a><input type='checkbox'/>",c=n.getElementsByTagName("*"),d=n.getElementsByTagName("a")[0],d.style.cssText="top:1px;float:left;opacity:.5";if(!c||!c.length)return{};f=e.createElement("select"),g=f.appendChild(e.createElement("option")),h=n.getElementsByTagName("input")[0],b={leadingWhitespace:n.firstChild.nodeType===3,tbody:!n.getElementsByTagName("tbody").length,htmlSerialize:!!n.getElementsByTagName("link").length,style:/top/.test(d.getAttribute("style")),hrefNormalized:d.getAttribute("href")==="/a",opacity:/^0.5/.test(d.style.opacity),cssFloat:!!d.style.cssFloat,checkOn:h.value==="on",optSelected:g.selected,getSetAttribute:n.className!=="t",enctype:!!e.createElement("form").enctype,html5Clone:e.createElement("nav").cloneNode(!0).outerHTML!=="<:nav></:nav>",boxModel:e.compatMode==="CSS1Compat",submitBubbles:!0,changeBubbles:!0,focusinBubbles:!1,deleteExpando:!0,noCloneEvent:!0,inlineBlockNeedsLayout:!1,shrinkWrapBlocks:!1,reliableMarginRight:!0,boxSizingReliable:!0,pixelPosition:!1},h.checked=!0,b.noCloneChecked=h.cloneNode(!0).checked,f.disabled=!0,b.optDisabled=!g.disabled;try{delete n.test}catch(o){b.deleteExpando=!1}!n.addEventListener&&n.attachEvent&&n.fireEvent&&(n.attachEvent("onclick",m=function(){b.noCloneEvent=!1}),n.cloneNode(!0).fireEvent("onclick"),n.detachEvent("onclick",m)),h=e.createElement("input"),h.value="t",h.setAttribute("type","radio"),b.radioValue=h.value==="t",h.setAttribute("checked","checked"),h.setAttribute("name","t"),n.appendChild(h),i=e.createDocumentFragment(),i.appendChild(n.lastChild),b.checkClone=i.cloneNode(!0).cloneNode(!0).lastChild.checked,b.appendChecked=h.checked,i.removeChild(h),i.appendChild(n);if(n.attachEvent)for(k in{submit:!0,change:!0,focusin:!0})j="on"+k,l=j in n,l||(n.setAttribute(j,"return;"),l=typeof n[j]=="function"),b[k+"Bubbles"]=l;return p(function(){var c,d,f,g,h="padding:0;margin:0;border:0;display:block;overflow:hidden;",i=e.getElementsByTagName("body")[0];if(!i)return;c=e.createElement("div"),c.style.cssText="visibility:hidden;border:0;width:0;height:0;position:static;top:0;margin-top:1px",i.insertBefore(c,i.firstChild),d=e.createElement("div"),c.appendChild(d),d.innerHTML="<table><tr><td></td><td>t</td></tr></table>",f=d.getElementsByTagName("td"),f[0].style.cssText="padding:0;margin:0;border:0;display:none",l=f[0].offsetHeight===0,f[0].style.display="",f[1].style.display="none",b.reliableHiddenOffsets=l&&f[0].offsetHeight===0,d.innerHTML="",d.style.cssText="box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;padding:1px;border:1px;display:block;width:4px;margin-top:1%;position:absolute;top:1%;",b.boxSizing=d.offsetWidth===4,b.doesNotIncludeMarginInBodyOffset=i.offsetTop!==1,a.getComputedStyle&&(b.pixelPosition=(a.getComputedStyle(d,null)||{}).top!=="1%",b.boxSizingReliable=(a.getComputedStyle(d,null)||{width:"4px"}).width==="4px",g=e.createElement("div"),g.style.cssText=d.style.cssText=h,g.style.marginRight=g.style.width="0",d.style.width="1px",d.appendChild(g),b.reliableMarginRight=!parseFloat((a.getComputedStyle(g,null)||{}).marginRight)),typeof d.style.zoom!="undefined"&&(d.innerHTML="",d.style.cssText=h+"width:1px;padding:1px;display:inline;zoom:1",b.inlineBlockNeedsLayout=d.offsetWidth===3,d.style.display="block",d.style.overflow="visible",d.innerHTML="<div></div>",d.firstChild.style.width="5px",b.shrinkWrapBlocks=d.offsetWidth!==3,c.style.zoom=1),i.removeChild(c),c=d=f=g=null}),i.removeChild(n),c=d=f=g=h=i=n=null,b}();var H=/(?:\{[\s\S]*\}|\[[\s\S]*\])$/,I=/([A-Z])/g;p.extend({cache:{},deletedIds:[],uuid:0,expando:"jQuery"+(p.fn.jquery+Math.random()).replace(/\D/g,""),noData:{embed:!0,object:"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000",applet:!0},hasData:function(a){return a=a.nodeType?p.cache[a[p.expando]]:a[p.expando],!!a&&!K(a)},data:function(a,c,d,e){if(!p.acceptData(a))return;var f,g,h=p.expando,i=typeof c=="string",j=a.nodeType,k=j?p.cache:a,l=j?a[h]:a[h]&&h;if((!l||!k[l]||!e&&!k[l].data)&&i&&d===b)return;l||(j?a[h]=l=p.deletedIds.pop()||p.guid++:l=h),k[l]||(k[l]={},j||(k[l].toJSON=p.noop));if(typeof c=="object"||typeof c=="function")e?k[l]=p.extend(k[l],c):k[l].data=p.extend(k[l].data,c);return f=k[l],e||(f.data||(f.data={}),f=f.data),d!==b&&(f[p.camelCase(c)]=d),i?(g=f[c],g==null&&(g=f[p.camelCase(c)])):g=f,g},removeData:function(a,b,c){if(!p.acceptData(a))return;var d,e,f,g=a.nodeType,h=g?p.cache:a,i=g?a[p.expando]:p.expando;if(!h[i])return;if(b){d=c?h[i]:h[i].data;if(d){p.isArray(b)||(b in d?b=[b]:(b=p.camelCase(b),b in d?b=[b]:b=b.split(" ")));for(e=0,f=b.length;e<f;e++)delete d[b[e]];if(!(c?K:p.isEmptyObject)(d))return}}if(!c){delete h[i].data;if(!K(h[i]))return}g?p.cleanData([a],!0):p.support.deleteExpando||h!=h.window?delete h[i]:h[i]=null},_data:function(a,b,c){return p.data(a,b,c,!0)},acceptData:function(a){var b=a.nodeName&&p.noData[a.nodeName.toLowerCase()];return!b||b!==!0&&a.getAttribute("classid")===b}}),p.fn.extend({data:function(a,c){var d,e,f,g,h,i=this[0],j=0,k=null;if(a===b){if(this.length){k=p.data(i);if(i.nodeType===1&&!p._data(i,"parsedAttrs")){f=i.attributes;for(h=f.length;j<h;j++)g=f[j].name,g.indexOf("data-")||(g=p.camelCase(g.substring(5)),J(i,g,k[g]));p._data(i,"parsedAttrs",!0)}}return k}return typeof a=="object"?this.each(function(){p.data(this,a)}):(d=a.split(".",2),d[1]=d[1]?"."+d[1]:"",e=d[1]+"!",p.access(this,function(c){if(c===b)return k=this.triggerHandler("getData"+e,[d[0]]),k===b&&i&&(k=p.data(i,a),k=J(i,a,k)),k===b&&d[1]?this.data(d[0]):k;d[1]=c,this.each(function(){var b=p(this);b.triggerHandler("setData"+e,d),p.data(this,a,c),b.triggerHandler("changeData"+e,d)})},null,c,arguments.length>1,null,!1))},removeData:function(a){return this.each(function(){p.removeData(this,a)})}}),p.extend({queue:function(a,b,c){var d;if(a)return b=(b||"fx")+"queue",d=p._data(a,b),c&&(!d||p.isArray(c)?d=p._data(a,b,p.makeArray(c)):d.push(c)),d||[]},dequeue:function(a,b){b=b||"fx";var c=p.queue(a,b),d=c.length,e=c.shift(),f=p._queueHooks(a,b),g=function(){p.dequeue(a,b)};e==="inprogress"&&(e=c.shift(),d--),e&&(b==="fx"&&c.unshift("inprogress"),delete f.stop,e.call(a,g,f)),!d&&f&&f.empty.fire()},_queueHooks:function(a,b){var c=b+"queueHooks";return p._data(a,c)||p._data(a,c,{empty:p.Callbacks("once memory").add(function(){p.removeData(a,b+"queue",!0),p.removeData(a,c,!0)})})}}),p.fn.extend({queue:function(a,c){var d=2;return typeof a!="string"&&(c=a,a="fx",d--),arguments.length<d?p.queue(this[0],a):c===b?this:this.each(function(){var b=p.queue(this,a,c);p._queueHooks(this,a),a==="fx"&&b[0]!=="inprogress"&&p.dequeue(this,a)})},dequeue:function(a){return this.each(function(){p.dequeue(this,a)})},delay:function(a,b){return a=p.fx?p.fx.speeds[a]||a:a,b=b||"fx",this.queue(b,function(b,c){var d=setTimeout(b,a);c.stop=function(){clearTimeout(d)}})},clearQueue:function(a){return this.queue(a||"fx",[])},promise:function(a,c){var d,e=1,f=p.Deferred(),g=this,h=this.length,i=function(){--e||f.resolveWith(g,[g])};typeof a!="string"&&(c=a,a=b),a=a||"fx";while(h--)d=p._data(g[h],a+"queueHooks"),d&&d.empty&&(e++,d.empty.add(i));return i(),f.promise(c)}});var L,M,N,O=/[\t\r\n]/g,P=/\r/g,Q=/^(?:button|input)$/i,R=/^(?:button|input|object|select|textarea)$/i,S=/^a(?:rea|)$/i,T=/^(?:autofocus|autoplay|async|checked|controls|defer|disabled|hidden|loop|multiple|open|readonly|required|scoped|selected)$/i,U=p.support.getSetAttribute;p.fn.extend({attr:function(a,b){return p.access(this,p.attr,a,b,arguments.length>1)},removeAttr:function(a){return this.each(function(){p.removeAttr(this,a)})},prop:function(a,b){return p.access(this,p.prop,a,b,arguments.length>1)},removeProp:function(a){return a=p.propFix[a]||a,this.each(function(){try{this[a]=b,delete this[a]}catch(c){}})},addClass:function(a){var b,c,d,e,f,g,h;if(p.isFunction(a))return this.each(function(b){p(this).addClass(a.call(this,b,this.className))});if(a&&typeof a=="string"){b=a.split(s);for(c=0,d=this.length;c<d;c++){e=this[c];if(e.nodeType===1)if(!e.className&&b.length===1)e.className=a;else{f=" "+e.className+" ";for(g=0,h=b.length;g<h;g++)f.indexOf(" "+b[g]+" ")<0&&(f+=b[g]+" ");e.className=p.trim(f)}}}return this},removeClass:function(a){var c,d,e,f,g,h,i;if(p.isFunction(a))return this.each(function(b){p(this).removeClass(a.call(this,b,this.className))});if(a&&typeof a=="string"||a===b){c=(a||"").split(s);for(h=0,i=this.length;h<i;h++){e=this[h];if(e.nodeType===1&&e.className){d=(" "+e.className+" ").replace(O," ");for(f=0,g=c.length;f<g;f++)while(d.indexOf(" "+c[f]+" ")>=0)d=d.replace(" "+c[f]+" "," ");e.className=a?p.trim(d):""}}}return this},toggleClass:function(a,b){var c=typeof a,d=typeof b=="boolean";return p.isFunction(a)?this.each(function(c){p(this).toggleClass(a.call(this,c,this.className,b),b)}):this.each(function(){if(c==="string"){var e,f=0,g=p(this),h=b,i=a.split(s);while(e=i[f++])h=d?h:!g.hasClass(e),g[h?"addClass":"removeClass"](e)}else if(c==="undefined"||c==="boolean")this.className&&p._data(this,"__className__",this.className),this.className=this.className||a===!1?"":p._data(this,"__className__")||""})},hasClass:function(a){var b=" "+a+" ",c=0,d=this.length;for(;c<d;c++)if(this[c].nodeType===1&&(" "+this[c].className+" ").replace(O," ").indexOf(b)>=0)return!0;return!1},val:function(a){var c,d,e,f=this[0];if(!arguments.length){if(f)return c=p.valHooks[f.type]||p.valHooks[f.nodeName.toLowerCase()],c&&"get"in c&&(d=c.get(f,"value"))!==b?d:(d=f.value,typeof d=="string"?d.replace(P,""):d==null?"":d);return}return e=p.isFunction(a),this.each(function(d){var f,g=p(this);if(this.nodeType!==1)return;e?f=a.call(this,d,g.val()):f=a,f==null?f="":typeof f=="number"?f+="":p.isArray(f)&&(f=p.map(f,function(a){return a==null?"":a+""})),c=p.valHooks[this.type]||p.valHooks[this.nodeName.toLowerCase()];if(!c||!("set"in c)||c.set(this,f,"value")===b)this.value=f})}}),p.extend({valHooks:{option:{get:function(a){var b=a.attributes.value;return!b||b.specified?a.value:a.text}},select:{get:function(a){var b,c,d,e,f=a.selectedIndex,g=[],h=a.options,i=a.type==="select-one";if(f<0)return null;c=i?f:0,d=i?f+1:h.length;for(;c<d;c++){e=h[c];if(e.selected&&(p.support.optDisabled?!e.disabled:e.getAttribute("disabled")===null)&&(!e.parentNode.disabled||!p.nodeName(e.parentNode,"optgroup"))){b=p(e).val();if(i)return b;g.push(b)}}return i&&!g.length&&h.length?p(h[f]).val():g},set:function(a,b){var c=p.makeArray(b);return p(a).find("option").each(function(){this.selected=p.inArray(p(this).val(),c)>=0}),c.length||(a.selectedIndex=-1),c}}},attrFn:{},attr:function(a,c,d,e){var f,g,h,i=a.nodeType;if(!a||i===3||i===8||i===2)return;if(e&&p.isFunction(p.fn[c]))return p(a)[c](d);if(typeof a.getAttribute=="undefined")return p.prop(a,c,d);h=i!==1||!p.isXMLDoc(a),h&&(c=c.toLowerCase(),g=p.attrHooks[c]||(T.test(c)?M:L));if(d!==b){if(d===null){p.removeAttr(a,c);return}return g&&"set"in g&&h&&(f=g.set(a,d,c))!==b?f:(a.setAttribute(c,d+""),d)}return g&&"get"in g&&h&&(f=g.get(a,c))!==null?f:(f=a.getAttribute(c),f===null?b:f)},removeAttr:function(a,b){var c,d,e,f,g=0;if(b&&a.nodeType===1){d=b.split(s);for(;g<d.length;g++)e=d[g],e&&(c=p.propFix[e]||e,f=T.test(e),f||p.attr(a,e,""),a.removeAttribute(U?e:c),f&&c in a&&(a[c]=!1))}},attrHooks:{type:{set:function(a,b){if(Q.test(a.nodeName)&&a.parentNode)p.error("type property can't be changed");else if(!p.support.radioValue&&b==="radio"&&p.nodeName(a,"input")){var c=a.value;return a.setAttribute("type",b),c&&(a.value=c),b}}},value:{get:function(a,b){return L&&p.nodeName(a,"button")?L.get(a,b):b in a?a.value:null},set:function(a,b,c){if(L&&p.nodeName(a,"button"))return L.set(a,b,c);a.value=b}}},propFix:{tabindex:"tabIndex",readonly:"readOnly","for":"htmlFor","class":"className",maxlength:"maxLength",cellspacing:"cellSpacing",cellpadding:"cellPadding",rowspan:"rowSpan",colspan:"colSpan",usemap:"useMap",frameborder:"frameBorder",contenteditable:"contentEditable"},prop:function(a,c,d){var e,f,g,h=a.nodeType;if(!a||h===3||h===8||h===2)return;return g=h!==1||!p.isXMLDoc(a),g&&(c=p.propFix[c]||c,f=p.propHooks[c]),d!==b?f&&"set"in f&&(e=f.set(a,d,c))!==b?e:a[c]=d:f&&"get"in f&&(e=f.get(a,c))!==null?e:a[c]},propHooks:{tabIndex:{get:function(a){var c=a.getAttributeNode("tabindex");return c&&c.specified?parseInt(c.value,10):R.test(a.nodeName)||S.test(a.nodeName)&&a.href?0:b}}}}),M={get:function(a,c){var d,e=p.prop(a,c);return e===!0||typeof e!="boolean"&&(d=a.getAttributeNode(c))&&d.nodeValue!==!1?c.toLowerCase():b},set:function(a,b,c){var d;return b===!1?p.removeAttr(a,c):(d=p.propFix[c]||c,d in a&&(a[d]=!0),a.setAttribute(c,c.toLowerCase())),c}},U||(N={name:!0,id:!0,coords:!0},L=p.valHooks.button={get:function(a,c){var d;return d=a.getAttributeNode(c),d&&(N[c]?d.value!=="":d.specified)?d.value:b},set:function(a,b,c){var d=a.getAttributeNode(c);return d||(d=e.createAttribute(c),a.setAttributeNode(d)),d.value=b+""}},p.each(["width","height"],function(a,b){p.attrHooks[b]=p.extend(p.attrHooks[b],{set:function(a,c){if(c==="")return a.setAttribute(b,"auto"),c}})}),p.attrHooks.contenteditable={get:L.get,set:function(a,b,c){b===""&&(b="false"),L.set(a,b,c)}}),p.support.hrefNormalized||p.each(["href","src","width","height"],function(a,c){p.attrHooks[c]=p.extend(p.attrHooks[c],{get:function(a){var d=a.getAttribute(c,2);return d===null?b:d}})}),p.support.style||(p.attrHooks.style={get:function(a){return a.style.cssText.toLowerCase()||b},set:function(a,b){return a.style.cssText=b+""}}),p.support.optSelected||(p.propHooks.selected=p.extend(p.propHooks.selected,{get:function(a){var b=a.parentNode;return b&&(b.selectedIndex,b.parentNode&&b.parentNode.selectedIndex),null}})),p.support.enctype||(p.propFix.enctype="encoding"),p.support.checkOn||p.each(["radio","checkbox"],function(){p.valHooks[this]={get:function(a){return a.getAttribute("value")===null?"on":a.value}}}),p.each(["radio","checkbox"],function(){p.valHooks[this]=p.extend(p.valHooks[this],{set:function(a,b){if(p.isArray(b))return a.checked=p.inArray(p(a).val(),b)>=0}})});var V=/^(?:textarea|input|select)$/i,W=/^([^\.]*|)(?:\.(.+)|)$/,X=/(?:^|\s)hover(\.\S+|)\b/,Y=/^key/,Z=/^(?:mouse|contextmenu)|click/,$=/^(?:focusinfocus|focusoutblur)$/,_=function(a){return p.event.special.hover?a:a.replace(X,"mouseenter$1 mouseleave$1")};p.event={add:function(a,c,d,e,f){var g,h,i,j,k,l,m,n,o,q,r;if(a.nodeType===3||a.nodeType===8||!c||!d||!(g=p._data(a)))return;d.handler&&(o=d,d=o.handler,f=o.selector),d.guid||(d.guid=p.guid++),i=g.events,i||(g.events=i={}),h=g.handle,h||(g.handle=h=function(a){return typeof p!="undefined"&&(!a||p.event.triggered!==a.type)?p.event.dispatch.apply(h.elem,arguments):b},h.elem=a),c=p.trim(_(c)).split(" ");for(j=0;j<c.length;j++){k=W.exec(c[j])||[],l=k[1],m=(k[2]||"").split(".").sort(),r=p.event.special[l]||{},l=(f?r.delegateType:r.bindType)||l,r=p.event.special[l]||{},n=p.extend({type:l,origType:k[1],data:e,handler:d,guid:d.guid,selector:f,needsContext:f&&p.expr.match.needsContext.test(f),namespace:m.join(".")},o),q=i[l];if(!q){q=i[l]=[],q.delegateCount=0;if(!r.setup||r.setup.call(a,e,m,h)===!1)a.addEventListener?a.addEventListener(l,h,!1):a.attachEvent&&a.attachEvent("on"+l,h)}r.add&&(r.add.call(a,n),n.handler.guid||(n.handler.guid=d.guid)),f?q.splice(q.delegateCount++,0,n):q.push(n),p.event.global[l]=!0}a=null},global:{},remove:function(a,b,c,d,e){var f,g,h,i,j,k,l,m,n,o,q,r=p.hasData(a)&&p._data(a);if(!r||!(m=r.events))return;b=p.trim(_(b||"")).split(" ");for(f=0;f<b.length;f++){g=W.exec(b[f])||[],h=i=g[1],j=g[2];if(!h){for(h in m)p.event.remove(a,h+b[f],c,d,!0);continue}n=p.event.special[h]||{},h=(d?n.delegateType:n.bindType)||h,o=m[h]||[],k=o.length,j=j?new RegExp("(^|\\.)"+j.split(".").sort().join("\\.(?:.*\\.|)")+"(\\.|$)"):null;for(l=0;l<o.length;l++)q=o[l],(e||i===q.origType)&&(!c||c.guid===q.guid)&&(!j||j.test(q.namespace))&&(!d||d===q.selector||d==="**"&&q.selector)&&(o.splice(l--,1),q.selector&&o.delegateCount--,n.remove&&n.remove.call(a,q));o.length===0&&k!==o.length&&((!n.teardown||n.teardown.call(a,j,r.handle)===!1)&&p.removeEvent(a,h,r.handle),delete m[h])}p.isEmptyObject(m)&&(delete r.handle,p.removeData(a,"events",!0))},customEvent:{getData:!0,setData:!0,changeData:!0},trigger:function(c,d,f,g){if(!f||f.nodeType!==3&&f.nodeType!==8){var h,i,j,k,l,m,n,o,q,r,s=c.type||c,t=[];if($.test(s+p.event.triggered))return;s.indexOf("!")>=0&&(s=s.slice(0,-1),i=!0),s.indexOf(".")>=0&&(t=s.split("."),s=t.shift(),t.sort());if((!f||p.event.customEvent[s])&&!p.event.global[s])return;c=typeof c=="object"?c[p.expando]?c:new p.Event(s,c):new p.Event(s),c.type=s,c.isTrigger=!0,c.exclusive=i,c.namespace=t.join("."),c.namespace_re=c.namespace?new RegExp("(^|\\.)"+t.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,m=s.indexOf(":")<0?"on"+s:"";if(!f){h=p.cache;for(j in h)h[j].events&&h[j].events[s]&&p.event.trigger(c,d,h[j].handle.elem,!0);return}c.result=b,c.target||(c.target=f),d=d!=null?p.makeArray(d):[],d.unshift(c),n=p.event.special[s]||{};if(n.trigger&&n.trigger.apply(f,d)===!1)return;q=[[f,n.bindType||s]];if(!g&&!n.noBubble&&!p.isWindow(f)){r=n.delegateType||s,k=$.test(r+s)?f:f.parentNode;for(l=f;k;k=k.parentNode)q.push([k,r]),l=k;l===(f.ownerDocument||e)&&q.push([l.defaultView||l.parentWindow||a,r])}for(j=0;j<q.length&&!c.isPropagationStopped();j++)k=q[j][0],c.type=q[j][1],o=(p._data(k,"events")||{})[c.type]&&p._data(k,"handle"),o&&o.apply(k,d),o=m&&k[m],o&&p.acceptData(k)&&o.apply&&o.apply(k,d)===!1&&c.preventDefault();return c.type=s,!g&&!c.isDefaultPrevented()&&(!n._default||n._default.apply(f.ownerDocument,d)===!1)&&(s!=="click"||!p.nodeName(f,"a"))&&p.acceptData(f)&&m&&f[s]&&(s!=="focus"&&s!=="blur"||c.target.offsetWidth!==0)&&!p.isWindow(f)&&(l=f[m],l&&(f[m]=null),p.event.triggered=s,f[s](),p.event.triggered=b,l&&(f[m]=l)),c.result}return},dispatch:function(c){c=p.event.fix(c||a.event);var d,e,f,g,h,i,j,l,m,n,o=(p._data(this,"events")||{})[c.type]||[],q=o.delegateCount,r=k.call(arguments),s=!c.exclusive&&!c.namespace,t=p.event.special[c.type]||{},u=[];r[0]=c,c.delegateTarget=this;if(t.preDispatch&&t.preDispatch.call(this,c)===!1)return;if(q&&(!c.button||c.type!=="click"))for(f=c.target;f!=this;f=f.parentNode||this)if(f.disabled!==!0||c.type!=="click"){h={},j=[];for(d=0;d<q;d++)l=o[d],m=l.selector,h[m]===b&&(h[m]=l.needsContext?p(m,this).index(f)>=0:p.find(m,this,null,[f]).length),h[m]&&j.push(l);j.length&&u.push({elem:f,matches:j})}o.length>q&&u.push({elem:this,matches:o.slice(q)});for(d=0;d<u.length&&!c.isPropagationStopped();d++){i=u[d],c.currentTarget=i.elem;for(e=0;e<i.matches.length&&!c.isImmediatePropagationStopped();e++){l=i.matches[e];if(s||!c.namespace&&!l.namespace||c.namespace_re&&c.namespace_re.test(l.namespace))c.data=l.data,c.handleObj=l,g=((p.event.special[l.origType]||{}).handle||l.handler).apply(i.elem,r),g!==b&&(c.result=g,g===!1&&(c.preventDefault(),c.stopPropagation()))}}return t.postDispatch&&t.postDispatch.call(this,c),c.result},props:"attrChange attrName relatedNode srcElement altKey bubbles cancelable ctrlKey currentTarget eventPhase metaKey relatedTarget shiftKey target timeStamp view which".split(" "),fixHooks:{},keyHooks:{props:"char charCode key keyCode".split(" "),filter:function(a,b){return a.which==null&&(a.which=b.charCode!=null?b.charCode:b.keyCode),a}},mouseHooks:{props:"button buttons clientX clientY fromElement offsetX offsetY pageX pageY screenX screenY toElement".split(" "),filter:function(a,c){var d,f,g,h=c.button,i=c.fromElement;return a.pageX==null&&c.clientX!=null&&(d=a.target.ownerDocument||e,f=d.documentElement,g=d.body,a.pageX=c.clientX+(f&&f.scrollLeft||g&&g.scrollLeft||0)-(f&&f.clientLeft||g&&g.clientLeft||0),a.pageY=c.clientY+(f&&f.scrollTop||g&&g.scrollTop||0)-(f&&f.clientTop||g&&g.clientTop||0)),!a.relatedTarget&&i&&(a.relatedTarget=i===a.target?c.toElement:i),!a.which&&h!==b&&(a.which=h&1?1:h&2?3:h&4?2:0),a}},fix:function(a){if(a[p.expando])return a;var b,c,d=a,f=p.event.fixHooks[a.type]||{},g=f.props?this.props.concat(f.props):this.props;a=p.Event(d);for(b=g.length;b;)c=g[--b],a[c]=d[c];return a.target||(a.target=d.srcElement||e),a.target.nodeType===3&&(a.target=a.target.parentNode),a.metaKey=!!a.metaKey,f.filter?f.filter(a,d):a},special:{load:{noBubble:!0},focus:{delegateType:"focusin"},blur:{delegateType:"focusout"},beforeunload:{setup:function(a,b,c){p.isWindow(this)&&(this.onbeforeunload=c)},teardown:function(a,b){this.onbeforeunload===b&&(this.onbeforeunload=null)}}},simulate:function(a,b,c,d){var e=p.extend(new p.Event,c,{type:a,isSimulated:!0,originalEvent:{}});d?p.event.trigger(e,null,b):p.event.dispatch.call(b,e),e.isDefaultPrevented()&&c.preventDefault()}},p.event.handle=p.event.dispatch,p.removeEvent=e.removeEventListener?function(a,b,c){a.removeEventListener&&a.removeEventListener(b,c,!1)}:function(a,b,c){var d="on"+b;a.detachEvent&&(typeof a[d]=="undefined"&&(a[d]=null),a.detachEvent(d,c))},p.Event=function(a,b){if(this instanceof p.Event)a&&a.type?(this.originalEvent=a,this.type=a.type,this.isDefaultPrevented=a.defaultPrevented||a.returnValue===!1||a.getPreventDefault&&a.getPreventDefault()?bb:ba):this.type=a,b&&p.extend(this,b),this.timeStamp=a&&a.timeStamp||p.now(),this[p.expando]=!0;else return new p.Event(a,b)},p.Event.prototype={preventDefault:function(){this.isDefaultPrevented=bb;var a=this.originalEvent;if(!a)return;a.preventDefault?a.preventDefault():a.returnValue=!1},stopPropagation:function(){this.isPropagationStopped=bb;var a=this.originalEvent;if(!a)return;a.stopPropagation&&a.stopPropagation(),a.cancelBubble=!0},stopImmediatePropagation:function(){this.isImmediatePropagationStopped=bb,this.stopPropagation()},isDefaultPrevented:ba,isPropagationStopped:ba,isImmediatePropagationStopped:ba},p.each({mouseenter:"mouseover",mouseleave:"mouseout"},function(a,b){p.event.special[a]={delegateType:b,bindType:b,handle:function(a){var c,d=this,e=a.relatedTarget,f=a.handleObj,g=f.selector;if(!e||e!==d&&!p.contains(d,e))a.type=f.origType,c=f.handler.apply(this,arguments),a.type=b;return c}}}),p.support.submitBubbles||(p.event.special.submit={setup:function(){if(p.nodeName(this,"form"))return!1;p.event.add(this,"click._submit keypress._submit",function(a){var c=a.target,d=p.nodeName(c,"input")||p.nodeName(c,"button")?c.form:b;d&&!p._data(d,"_submit_attached")&&(p.event.add(d,"submit._submit",function(a){a._submit_bubble=!0}),p._data(d,"_submit_attached",!0))})},postDispatch:function(a){a._submit_bubble&&(delete a._submit_bubble,this.parentNode&&!a.isTrigger&&p.event.simulate("submit",this.parentNode,a,!0))},teardown:function(){if(p.nodeName(this,"form"))return!1;p.event.remove(this,"._submit")}}),p.support.changeBubbles||(p.event.special.change={setup:function(){if(V.test(this.nodeName)){if(this.type==="checkbox"||this.type==="radio")p.event.add(this,"propertychange._change",function(a){a.originalEvent.propertyName==="checked"&&(this._just_changed=!0)}),p.event.add(this,"click._change",function(a){this._just_changed&&!a.isTrigger&&(this._just_changed=!1),p.event.simulate("change",this,a,!0)});return!1}p.event.add(this,"beforeactivate._change",function(a){var b=a.target;V.test(b.nodeName)&&!p._data(b,"_change_attached")&&(p.event.add(b,"change._change",function(a){this.parentNode&&!a.isSimulated&&!a.isTrigger&&p.event.simulate("change",this.parentNode,a,!0)}),p._data(b,"_change_attached",!0))})},handle:function(a){var b=a.target;if(this!==b||a.isSimulated||a.isTrigger||b.type!=="radio"&&b.type!=="checkbox")return a.handleObj.handler.apply(this,arguments)},teardown:function(){return p.event.remove(this,"._change"),!V.test(this.nodeName)}}),p.support.focusinBubbles||p.each({focus:"focusin",blur:"focusout"},function(a,b){var c=0,d=function(a){p.event.simulate(b,a.target,p.event.fix(a),!0)};p.event.special[b]={setup:function(){c++===0&&e.addEventListener(a,d,!0)},teardown:function(){--c===0&&e.removeEventListener(a,d,!0)}}}),p.fn.extend({on:function(a,c,d,e,f){var g,h;if(typeof a=="object"){typeof c!="string"&&(d=d||c,c=b);for(h in a)this.on(h,c,d,a[h],f);return this}d==null&&e==null?(e=c,d=c=b):e==null&&(typeof c=="string"?(e=d,d=b):(e=d,d=c,c=b));if(e===!1)e=ba;else if(!e)return this;return f===1&&(g=e,e=function(a){return p().off(a),g.apply(this,arguments)},e.guid=g.guid||(g.guid=p.guid++)),this.each(function(){p.event.add(this,a,e,d,c)})},one:function(a,b,c,d){return this.on(a,b,c,d,1)},off:function(a,c,d){var e,f;if(a&&a.preventDefault&&a.handleObj)return e=a.handleObj,p(a.delegateTarget).off(e.namespace?e.origType+"."+e.namespace:e.origType,e.selector,e.handler),this;if(typeof a=="object"){for(f in a)this.off(f,c,a[f]);return this}if(c===!1||typeof c=="function")d=c,c=b;return d===!1&&(d=ba),this.each(function(){p.event.remove(this,a,d,c)})},bind:function(a,b,c){return this.on(a,null,b,c)},unbind:function(a,b){return this.off(a,null,b)},live:function(a,b,c){return p(this.context).on(a,this.selector,b,c),this},die:function(a,b){return p(this.context).off(a,this.selector||"**",b),this},delegate:function(a,b,c,d){return this.on(b,a,c,d)},undelegate:function(a,b,c){return arguments.length===1?this.off(a,"**"):this.off(b,a||"**",c)},trigger:function(a,b){return this.each(function(){p.event.trigger(a,b,this)})},triggerHandler:function(a,b){if(this[0])return p.event.trigger(a,b,this[0],!0)},toggle:function(a){var b=arguments,c=a.guid||p.guid++,d=0,e=function(c){var e=(p._data(this,"lastToggle"+a.guid)||0)%d;return p._data(this,"lastToggle"+a.guid,e+1),c.preventDefault(),b[e].apply(this,arguments)||!1};e.guid=c;while(d<b.length)b[d++].guid=c;return this.click(e)},hover:function(a,b){return this.mouseenter(a).mouseleave(b||a)}}),p.each("blur focus focusin focusout load resize scroll unload click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup error contextmenu".split(" "),function(a,b){p.fn[b]=function(a,c){return c==null&&(c=a,a=null),arguments.length>0?this.on(b,null,a,c):this.trigger(b)},Y.test(b)&&(p.event.fixHooks[b]=p.event.keyHooks),Z.test(b)&&(p.event.fixHooks[b]=p.event.mouseHooks)}),function(a,b){function bc(a,b,c,d){c=c||[],b=b||r;var e,f,i,j,k=b.nodeType;if(!a||typeof a!="string")return c;if(k!==1&&k!==9)return[];i=g(b);if(!i&&!d)if(e=P.exec(a))if(j=e[1]){if(k===9){f=b.getElementById(j);if(!f||!f.parentNode)return c;if(f.id===j)return c.push(f),c}else if(b.ownerDocument&&(f=b.ownerDocument.getElementById(j))&&h(b,f)&&f.id===j)return c.push(f),c}else{if(e[2])return w.apply(c,x.call(b.getElementsByTagName(a),0)),c;if((j=e[3])&&_&&b.getElementsByClassName)return w.apply(c,x.call(b.getElementsByClassName(j),0)),c}return bp(a.replace(L,"$1"),b,c,d,i)}function bd(a){return function(b){var c=b.nodeName.toLowerCase();return c==="input"&&b.type===a}}function be(a){return function(b){var c=b.nodeName.toLowerCase();return(c==="input"||c==="button")&&b.type===a}}function bf(a){return z(function(b){return b=+b,z(function(c,d){var e,f=a([],c.length,b),g=f.length;while(g--)c[e=f[g]]&&(c[e]=!(d[e]=c[e]))})})}function bg(a,b,c){if(a===b)return c;var d=a.nextSibling;while(d){if(d===b)return-1;d=d.nextSibling}return 1}function bh(a,b){var c,d,f,g,h,i,j,k=C[o][a];if(k)return b?0:k.slice(0);h=a,i=[],j=e.preFilter;while(h){if(!c||(d=M.exec(h)))d&&(h=h.slice(d[0].length)),i.push(f=[]);c=!1;if(d=N.exec(h))f.push(c=new q(d.shift())),h=h.slice(c.length),c.type=d[0].replace(L," ");for(g in e.filter)(d=W[g].exec(h))&&(!j[g]||(d=j[g](d,r,!0)))&&(f.push(c=new q(d.shift())),h=h.slice(c.length),c.type=g,c.matches=d);if(!c)break}return b?h.length:h?bc.error(a):C(a,i).slice(0)}function bi(a,b,d){var e=b.dir,f=d&&b.dir==="parentNode",g=u++;return b.first?function(b,c,d){while(b=b[e])if(f||b.nodeType===1)return a(b,c,d)}:function(b,d,h){if(!h){var i,j=t+" "+g+" ",k=j+c;while(b=b[e])if(f||b.nodeType===1){if((i=b[o])===k)return b.sizset;if(typeof i=="string"&&i.indexOf(j)===0){if(b.sizset)return b}else{b[o]=k;if(a(b,d,h))return b.sizset=!0,b;b.sizset=!1}}}else while(b=b[e])if(f||b.nodeType===1)if(a(b,d,h))return b}}function bj(a){return a.length>1?function(b,c,d){var e=a.length;while(e--)if(!a[e](b,c,d))return!1;return!0}:a[0]}function bk(a,b,c,d,e){var f,g=[],h=0,i=a.length,j=b!=null;for(;h<i;h++)if(f=a[h])if(!c||c(f,d,e))g.push(f),j&&b.push(h);return g}function bl(a,b,c,d,e,f){return d&&!d[o]&&(d=bl(d)),e&&!e[o]&&(e=bl(e,f)),z(function(f,g,h,i){if(f&&e)return;var j,k,l,m=[],n=[],o=g.length,p=f||bo(b||"*",h.nodeType?[h]:h,[],f),q=a&&(f||!b)?bk(p,m,a,h,i):p,r=c?e||(f?a:o||d)?[]:g:q;c&&c(q,r,h,i);if(d){l=bk(r,n),d(l,[],h,i),j=l.length;while(j--)if(k=l[j])r[n[j]]=!(q[n[j]]=k)}if(f){j=a&&r.length;while(j--)if(k=r[j])f[m[j]]=!(g[m[j]]=k)}else r=bk(r===g?r.splice(o,r.length):r),e?e(null,g,r,i):w.apply(g,r)})}function bm(a){var b,c,d,f=a.length,g=e.relative[a[0].type],h=g||e.relative[" "],i=g?1:0,j=bi(function(a){return a===b},h,!0),k=bi(function(a){return y.call(b,a)>-1},h,!0),m=[function(a,c,d){return!g&&(d||c!==l)||((b=c).nodeType?j(a,c,d):k(a,c,d))}];for(;i<f;i++)if(c=e.relative[a[i].type])m=[bi(bj(m),c)];else{c=e.filter[a[i].type].apply(null,a[i].matches);if(c[o]){d=++i;for(;d<f;d++)if(e.relative[a[d].type])break;return bl(i>1&&bj(m),i>1&&a.slice(0,i-1).join("").replace(L,"$1"),c,i<d&&bm(a.slice(i,d)),d<f&&bm(a=a.slice(d)),d<f&&a.join(""))}m.push(c)}return bj(m)}function bn(a,b){var d=b.length>0,f=a.length>0,g=function(h,i,j,k,m){var n,o,p,q=[],s=0,u="0",x=h&&[],y=m!=null,z=l,A=h||f&&e.find.TAG("*",m&&i.parentNode||i),B=t+=z==null?1:Math.E;y&&(l=i!==r&&i,c=g.el);for(;(n=A[u])!=null;u++){if(f&&n){for(o=0;p=a[o];o++)if(p(n,i,j)){k.push(n);break}y&&(t=B,c=++g.el)}d&&((n=!p&&n)&&s--,h&&x.push(n))}s+=u;if(d&&u!==s){for(o=0;p=b[o];o++)p(x,q,i,j);if(h){if(s>0)while(u--)!x[u]&&!q[u]&&(q[u]=v.call(k));q=bk(q)}w.apply(k,q),y&&!h&&q.length>0&&s+b.length>1&&bc.uniqueSort(k)}return y&&(t=B,l=z),x};return g.el=0,d?z(g):g}function bo(a,b,c,d){var e=0,f=b.length;for(;e<f;e++)bc(a,b[e],c,d);return c}function bp(a,b,c,d,f){var g,h,j,k,l,m=bh(a),n=m.length;if(!d&&m.length===1){h=m[0]=m[0].slice(0);if(h.length>2&&(j=h[0]).type==="ID"&&b.nodeType===9&&!f&&e.relative[h[1].type]){b=e.find.ID(j.matches[0].replace(V,""),b,f)[0];if(!b)return c;a=a.slice(h.shift().length)}for(g=W.POS.test(a)?-1:h.length-1;g>=0;g--){j=h[g];if(e.relative[k=j.type])break;if(l=e.find[k])if(d=l(j.matches[0].replace(V,""),R.test(h[0].type)&&b.parentNode||b,f)){h.splice(g,1),a=d.length&&h.join("");if(!a)return w.apply(c,x.call(d,0)),c;break}}}return i(a,m)(d,b,f,c,R.test(a)),c}function bq(){}var c,d,e,f,g,h,i,j,k,l,m=!0,n="undefined",o=("sizcache"+Math.random()).replace(".",""),q=String,r=a.document,s=r.documentElement,t=0,u=0,v=[].pop,w=[].push,x=[].slice,y=[].indexOf||function(a){var b=0,c=this.length;for(;b<c;b++)if(this[b]===a)return b;return-1},z=function(a,b){return a[o]=b==null||b,a},A=function(){var a={},b=[];return z(function(c,d){return b.push(c)>e.cacheLength&&delete a[b.shift()],a[c]=d},a)},B=A(),C=A(),D=A(),E="[\\x20\\t\\r\\n\\f]",F="(?:\\\\.|[-\\w]|[^\\x00-\\xa0])+",G=F.replace("w","w#"),H="([*^$|!~]?=)",I="\\["+E+"*("+F+")"+E+"*(?:"+H+E+"*(?:(['\"])((?:\\\\.|[^\\\\])*?)\\3|("+G+")|)|)"+E+"*\\]",J=":("+F+")(?:\\((?:(['\"])((?:\\\\.|[^\\\\])*?)\\2|([^()[\\]]*|(?:(?:"+I+")|[^:]|\\\\.)*|.*))\\)|)",K=":(even|odd|eq|gt|lt|nth|first|last)(?:\\("+E+"*((?:-\\d)?\\d*)"+E+"*\\)|)(?=[^-]|$)",L=new RegExp("^"+E+"+|((?:^|[^\\\\])(?:\\\\.)*)"+E+"+$","g"),M=new RegExp("^"+E+"*,"+E+"*"),N=new RegExp("^"+E+"*([\\x20\\t\\r\\n\\f>+~])"+E+"*"),O=new RegExp(J),P=/^(?:#([\w\-]+)|(\w+)|\.([\w\-]+))$/,Q=/^:not/,R=/[\x20\t\r\n\f]*[+~]/,S=/:not\($/,T=/h\d/i,U=/input|select|textarea|button/i,V=/\\(?!\\)/g,W={ID:new RegExp("^#("+F+")"),CLASS:new RegExp("^\\.("+F+")"),NAME:new RegExp("^\\[name=['\"]?("+F+")['\"]?\\]"),TAG:new RegExp("^("+F.replace("w","w*")+")"),ATTR:new RegExp("^"+I),PSEUDO:new RegExp("^"+J),POS:new RegExp(K,"i"),CHILD:new RegExp("^:(only|nth|first|last)-child(?:\\("+E+"*(even|odd|(([+-]|)(\\d*)n|)"+E+"*(?:([+-]|)"+E+"*(\\d+)|))"+E+"*\\)|)","i"),needsContext:new RegExp("^"+E+"*[>+~]|"+K,"i")},X=function(a){var b=r.createElement("div");try{return a(b)}catch(c){return!1}finally{b=null}},Y=X(function(a){return a.appendChild(r.createComment("")),!a.getElementsByTagName("*").length}),Z=X(function(a){return a.innerHTML="<a href='#'></a>",a.firstChild&&typeof a.firstChild.getAttribute!==n&&a.firstChild.getAttribute("href")==="#"}),$=X(function(a){a.innerHTML="<select></select>";var b=typeof a.lastChild.getAttribute("multiple");return b!=="boolean"&&b!=="string"}),_=X(function(a){return a.innerHTML="<div class='hidden e'></div><div class='hidden'></div>",!a.getElementsByClassName||!a.getElementsByClassName("e").length?!1:(a.lastChild.className="e",a.getElementsByClassName("e").length===2)}),ba=X(function(a){a.id=o+0,a.innerHTML="<a name='"+o+"'></a><div name='"+o+"'></div>",s.insertBefore(a,s.firstChild);var b=r.getElementsByName&&r.getElementsByName(o).length===2+r.getElementsByName(o+0).length;return d=!r.getElementById(o),s.removeChild(a),b});try{x.call(s.childNodes,0)[0].nodeType}catch(bb){x=function(a){var b,c=[];for(;b=this[a];a++)c.push(b);return c}}bc.matches=function(a,b){return bc(a,null,null,b)},bc.matchesSelector=function(a,b){return bc(b,null,null,[a]).length>0},f=bc.getText=function(a){var b,c="",d=0,e=a.nodeType;if(e){if(e===1||e===9||e===11){if(typeof a.textContent=="string")return a.textContent;for(a=a.firstChild;a;a=a.nextSibling)c+=f(a)}else if(e===3||e===4)return a.nodeValue}else for(;b=a[d];d++)c+=f(b);return c},g=bc.isXML=function(a){var b=a&&(a.ownerDocument||a).documentElement;return b?b.nodeName!=="HTML":!1},h=bc.contains=s.contains?function(a,b){var c=a.nodeType===9?a.documentElement:a,d=b&&b.parentNode;return a===d||!!(d&&d.nodeType===1&&c.contains&&c.contains(d))}:s.compareDocumentPosition?function(a,b){return b&&!!(a.compareDocumentPosition(b)&16)}:function(a,b){while(b=b.parentNode)if(b===a)return!0;return!1},bc.attr=function(a,b){var c,d=g(a);return d||(b=b.toLowerCase()),(c=e.attrHandle[b])?c(a):d||$?a.getAttribute(b):(c=a.getAttributeNode(b),c?typeof a[b]=="boolean"?a[b]?b:null:c.specified?c.value:null:null)},e=bc.selectors={cacheLength:50,createPseudo:z,match:W,attrHandle:Z?{}:{href:function(a){return a.getAttribute("href",2)},type:function(a){return a.getAttribute("type")}},find:{ID:d?function(a,b,c){if(typeof b.getElementById!==n&&!c){var d=b.getElementById(a);return d&&d.parentNode?[d]:[]}}:function(a,c,d){if(typeof c.getElementById!==n&&!d){var e=c.getElementById(a);return e?e.id===a||typeof e.getAttributeNode!==n&&e.getAttributeNode("id").value===a?[e]:b:[]}},TAG:Y?function(a,b){if(typeof b.getElementsByTagName!==n)return b.getElementsByTagName(a)}:function(a,b){var c=b.getElementsByTagName(a);if(a==="*"){var d,e=[],f=0;for(;d=c[f];f++)d.nodeType===1&&e.push(d);return e}return c},NAME:ba&&function(a,b){if(typeof b.getElementsByName!==n)return b.getElementsByName(name)},CLASS:_&&function(a,b,c){if(typeof b.getElementsByClassName!==n&&!c)return b.getElementsByClassName(a)}},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(a){return a[1]=a[1].replace(V,""),a[3]=(a[4]||a[5]||"").replace(V,""),a[2]==="~="&&(a[3]=" "+a[3]+" "),a.slice(0,4)},CHILD:function(a){return a[1]=a[1].toLowerCase(),a[1]==="nth"?(a[2]||bc.error(a[0]),a[3]=+(a[3]?a[4]+(a[5]||1):2*(a[2]==="even"||a[2]==="odd")),a[4]=+(a[6]+a[7]||a[2]==="odd")):a[2]&&bc.error(a[0]),a},PSEUDO:function(a){var b,c;if(W.CHILD.test(a[0]))return null;if(a[3])a[2]=a[3];else if(b=a[4])O.test(b)&&(c=bh(b,!0))&&(c=b.indexOf(")",b.length-c)-b.length)&&(b=b.slice(0,c),a[0]=a[0].slice(0,c)),a[2]=b;return a.slice(0,3)}},filter:{ID:d?function(a){return a=a.replace(V,""),function(b){return b.getAttribute("id")===a}}:function(a){return a=a.replace(V,""),function(b){var c=typeof b.getAttributeNode!==n&&b.getAttributeNode("id");return c&&c.value===a}},TAG:function(a){return a==="*"?function(){return!0}:(a=a.replace(V,"").toLowerCase(),function(b){return b.nodeName&&b.nodeName.toLowerCase()===a})},CLASS:function(a){var b=B[o][a];return b||(b=B(a,new RegExp("(^|"+E+")"+a+"("+E+"|$)"))),function(a){return b.test(a.className||typeof a.getAttribute!==n&&a.getAttribute("class")||"")}},ATTR:function(a,b,c){return function(d,e){var f=bc.attr(d,a);return f==null?b==="!=":b?(f+="",b==="="?f===c:b==="!="?f!==c:b==="^="?c&&f.indexOf(c)===0:b==="*="?c&&f.indexOf(c)>-1:b==="$="?c&&f.substr(f.length-c.length)===c:b==="~="?(" "+f+" ").indexOf(c)>-1:b==="|="?f===c||f.substr(0,c.length+1)===c+"-":!1):!0}},CHILD:function(a,b,c,d){return a==="nth"?function(a){var b,e,f=a.parentNode;if(c===1&&d===0)return!0;if(f){e=0;for(b=f.firstChild;b;b=b.nextSibling)if(b.nodeType===1){e++;if(a===b)break}}return e-=d,e===c||e%c===0&&e/c>=0}:function(b){var c=b;switch(a){case"only":case"first":while(c=c.previousSibling)if(c.nodeType===1)return!1;if(a==="first")return!0;c=b;case"last":while(c=c.nextSibling)if(c.nodeType===1)return!1;return!0}}},PSEUDO:function(a,b){var c,d=e.pseudos[a]||e.setFilters[a.toLowerCase()]||bc.error("unsupported pseudo: "+a);return d[o]?d(b):d.length>1?(c=[a,a,"",b],e.setFilters.hasOwnProperty(a.toLowerCase())?z(function(a,c){var e,f=d(a,b),g=f.length;while(g--)e=y.call(a,f[g]),a[e]=!(c[e]=f[g])}):function(a){return d(a,0,c)}):d}},pseudos:{not:z(function(a){var b=[],c=[],d=i(a.replace(L,"$1"));return d[o]?z(function(a,b,c,e){var f,g=d(a,null,e,[]),h=a.length;while(h--)if(f=g[h])a[h]=!(b[h]=f)}):function(a,e,f){return b[0]=a,d(b,null,f,c),!c.pop()}}),has:z(function(a){return function(b){return bc(a,b).length>0}}),contains:z(function(a){return function(b){return(b.textContent||b.innerText||f(b)).indexOf(a)>-1}}),enabled:function(a){return a.disabled===!1},disabled:function(a){return a.disabled===!0},checked:function(a){var b=a.nodeName.toLowerCase();return b==="input"&&!!a.checked||b==="option"&&!!a.selected},selected:function(a){return a.parentNode&&a.parentNode.selectedIndex,a.selected===!0},parent:function(a){return!e.pseudos.empty(a)},empty:function(a){var b;a=a.firstChild;while(a){if(a.nodeName>"@"||(b=a.nodeType)===3||b===4)return!1;a=a.nextSibling}return!0},header:function(a){return T.test(a.nodeName)},text:function(a){var b,c;return a.nodeName.toLowerCase()==="input"&&(b=a.type)==="text"&&((c=a.getAttribute("type"))==null||c.toLowerCase()===b)},radio:bd("radio"),checkbox:bd("checkbox"),file:bd("file"),password:bd("password"),image:bd("image"),submit:be("submit"),reset:be("reset"),button:function(a){var b=a.nodeName.toLowerCase();return b==="input"&&a.type==="button"||b==="button"},input:function(a){return U.test(a.nodeName)},focus:function(a){var b=a.ownerDocument;return a===b.activeElement&&(!b.hasFocus||b.hasFocus())&&(!!a.type||!!a.href)},active:function(a){return a===a.ownerDocument.activeElement},first:bf(function(a,b,c){return[0]}),last:bf(function(a,b,c){return[b-1]}),eq:bf(function(a,b,c){return[c<0?c+b:c]}),even:bf(function(a,b,c){for(var d=0;d<b;d+=2)a.push(d);return a}),odd:bf(function(a,b,c){for(var d=1;d<b;d+=2)a.push(d);return a}),lt:bf(function(a,b,c){for(var d=c<0?c+b:c;--d>=0;)a.push(d);return a}),gt:bf(function(a,b,c){for(var d=c<0?c+b:c;++d<b;)a.push(d);return a})}},j=s.compareDocumentPosition?function(a,b){return a===b?(k=!0,0):(!a.compareDocumentPosition||!b.compareDocumentPosition?a.compareDocumentPosition:a.compareDocumentPosition(b)&4)?-1:1}:function(a,b){if(a===b)return k=!0,0;if(a.sourceIndex&&b.sourceIndex)return a.sourceIndex-b.sourceIndex;var c,d,e=[],f=[],g=a.parentNode,h=b.parentNode,i=g;if(g===h)return bg(a,b);if(!g)return-1;if(!h)return 1;while(i)e.unshift(i),i=i.parentNode;i=h;while(i)f.unshift(i),i=i.parentNode;c=e.length,d=f.length;for(var j=0;j<c&&j<d;j++)if(e[j]!==f[j])return bg(e[j],f[j]);return j===c?bg(a,f[j],-1):bg(e[j],b,1)},[0,0].sort(j),m=!k,bc.uniqueSort=function(a){var b,c=1;k=m,a.sort(j);if(k)for(;b=a[c];c++)b===a[c-1]&&a.splice(c--,1);return a},bc.error=function(a){throw new Error("Syntax error, unrecognized expression: "+a)},i=bc.compile=function(a,b){var c,d=[],e=[],f=D[o][a];if(!f){b||(b=bh(a)),c=b.length;while(c--)f=bm(b[c]),f[o]?d.push(f):e.push(f);f=D(a,bn(e,d))}return f},r.querySelectorAll&&function(){var a,b=bp,c=/'|\\/g,d=/\=[\x20\t\r\n\f]*([^'"\]]*)[\x20\t\r\n\f]*\]/g,e=[":focus"],f=[":active",":focus"],h=s.matchesSelector||s.mozMatchesSelector||s.webkitMatchesSelector||s.oMatchesSelector||s.msMatchesSelector;X(function(a){a.innerHTML="<select><option selected=''></option></select>",a.querySelectorAll("[selected]").length||e.push("\\["+E+"*(?:checked|disabled|ismap|multiple|readonly|selected|value)"),a.querySelectorAll(":checked").length||e.push(":checked")}),X(function(a){a.innerHTML="<p test=''></p>",a.querySelectorAll("[test^='']").length&&e.push("[*^$]="+E+"*(?:\"\"|'')"),a.innerHTML="<input type='hidden'/>",a.querySelectorAll(":enabled").length||e.push(":enabled",":disabled")}),e=new RegExp(e.join("|")),bp=function(a,d,f,g,h){if(!g&&!h&&(!e||!e.test(a))){var i,j,k=!0,l=o,m=d,n=d.nodeType===9&&a;if(d.nodeType===1&&d.nodeName.toLowerCase()!=="object"){i=bh(a),(k=d.getAttribute("id"))?l=k.replace(c,"\\$&"):d.setAttribute("id",l),l="[id='"+l+"'] ",j=i.length;while(j--)i[j]=l+i[j].join("");m=R.test(a)&&d.parentNode||d,n=i.join(",")}if(n)try{return w.apply(f,x.call(m.querySelectorAll(n),0)),f}catch(p){}finally{k||d.removeAttribute("id")}}return b(a,d,f,g,h)},h&&(X(function(b){a=h.call(b,"div");try{h.call(b,"[test!='']:sizzle"),f.push("!=",J)}catch(c){}}),f=new RegExp(f.join("|")),bc.matchesSelector=function(b,c){c=c.replace(d,"='$1']");if(!g(b)&&!f.test(c)&&(!e||!e.test(c)))try{var i=h.call(b,c);if(i||a||b.document&&b.document.nodeType!==11)return i}catch(j){}return bc(c,null,null,[b]).length>0})}(),e.pseudos.nth=e.pseudos.eq,e.filters=bq.prototype=e.pseudos,e.setFilters=new bq,bc.attr=p.attr,p.find=bc,p.expr=bc.selectors,p.expr[":"]=p.expr.pseudos,p.unique=bc.uniqueSort,p.text=bc.getText,p.isXMLDoc=bc.isXML,p.contains=bc.contains}(a);var bc=/Until$/,bd=/^(?:parents|prev(?:Until|All))/,be=/^.[^:#\[\.,]*$/,bf=p.expr.match.needsContext,bg={children:!0,contents:!0,next:!0,prev:!0};p.fn.extend({find:function(a){var b,c,d,e,f,g,h=this;if(typeof a!="string")return p(a).filter(function(){for(b=0,c=h.length;b<c;b++)if(p.contains(h[b],this))return!0});g=this.pushStack("","find",a);for(b=0,c=this.length;b<c;b++){d=g.length,p.find(a,this[b],g);if(b>0)for(e=d;e<g.length;e++)for(f=0;f<d;f++)if(g[f]===g[e]){g.splice(e--,1);break}}return g},has:function(a){var b,c=p(a,this),d=c.length;return this.filter(function(){for(b=0;b<d;b++)if(p.contains(this,c[b]))return!0})},not:function(a){return this.pushStack(bj(this,a,!1),"not",a)},filter:function(a){return this.pushStack(bj(this,a,!0),"filter",a)},is:function(a){return!!a&&(typeof a=="string"?bf.test(a)?p(a,this.context).index(this[0])>=0:p.filter(a,this).length>0:this.filter(a).length>0)},closest:function(a,b){var c,d=0,e=this.length,f=[],g=bf.test(a)||typeof a!="string"?p(a,b||this.context):0;for(;d<e;d++){c=this[d];while(c&&c.ownerDocument&&c!==b&&c.nodeType!==11){if(g?g.index(c)>-1:p.find.matchesSelector(c,a)){f.push(c);break}c=c.parentNode}}return f=f.length>1?p.unique(f):f,this.pushStack(f,"closest",a)},index:function(a){return a?typeof a=="string"?p.inArray(this[0],p(a)):p.inArray(a.jquery?a[0]:a,this):this[0]&&this[0].parentNode?this.prevAll().length:-1},add:function(a,b){var c=typeof a=="string"?p(a,b):p.makeArray(a&&a.nodeType?[a]:a),d=p.merge(this.get(),c);return this.pushStack(bh(c[0])||bh(d[0])?d:p.unique(d))},addBack:function(a){return this.add(a==null?this.prevObject:this.prevObject.filter(a))}}),p.fn.andSelf=p.fn.addBack,p.each({parent:function(a){var b=a.parentNode;return b&&b.nodeType!==11?b:null},parents:function(a){return p.dir(a,"parentNode")},parentsUntil:function(a,b,c){return p.dir(a,"parentNode",c)},next:function(a){return bi(a,"nextSibling")},prev:function(a){return bi(a,"previousSibling")},nextAll:function(a){return p.dir(a,"nextSibling")},prevAll:function(a){return p.dir(a,"previousSibling")},nextUntil:function(a,b,c){return p.dir(a,"nextSibling",c)},prevUntil:function(a,b,c){return p.dir(a,"previousSibling",c)},siblings:function(a){return p.sibling((a.parentNode||{}).firstChild,a)},children:function(a){return p.sibling(a.firstChild)},contents:function(a){return p.nodeName(a,"iframe")?a.contentDocument||a.contentWindow.document:p.merge([],a.childNodes)}},function(a,b){p.fn[a]=function(c,d){var e=p.map(this,b,c);return bc.test(a)||(d=c),d&&typeof d=="string"&&(e=p.filter(d,e)),e=this.length>1&&!bg[a]?p.unique(e):e,this.length>1&&bd.test(a)&&(e=e.reverse()),this.pushStack(e,a,k.call(arguments).join(","))}}),p.extend({filter:function(a,b,c){return c&&(a=":not("+a+")"),b.length===1?p.find.matchesSelector(b[0],a)?[b[0]]:[]:p.find.matches(a,b)},dir:function(a,c,d){var e=[],f=a[c];while(f&&f.nodeType!==9&&(d===b||f.nodeType!==1||!p(f).is(d)))f.nodeType===1&&e.push(f),f=f[c];return e},sibling:function(a,b){var c=[];for(;a;a=a.nextSibling)a.nodeType===1&&a!==b&&c.push(a);return c}});var bl="abbr|article|aside|audio|bdi|canvas|data|datalist|details|figcaption|figure|footer|header|hgroup|mark|meter|nav|output|progress|section|summary|time|video",bm=/ jQuery\d+="(?:null|\d+)"/g,bn=/^\s+/,bo=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/gi,bp=/<([\w:]+)/,bq=/<tbody/i,br=/<|&#?\w+;/,bs=/<(?:script|style|link)/i,bt=/<(?:script|object|embed|option|style)/i,bu=new RegExp("<(?:"+bl+")[\\s/>]","i"),bv=/^(?:checkbox|radio)$/,bw=/checked\s*(?:[^=]|=\s*.checked.)/i,bx=/\/(java|ecma)script/i,by=/^\s*<!(?:\[CDATA\[|\-\-)|[\]\-]{2}>\s*$/g,bz={option:[1,"<select multiple='multiple'>","</select>"],legend:[1,"<fieldset>","</fieldset>"],thead:[1,"<table>","</table>"],tr:[2,"<table><tbody>","</tbody></table>"],td:[3,"<table><tbody><tr>","</tr></tbody></table>"],col:[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"],area:[1,"<map>","</map>"],_default:[0,"",""]},bA=bk(e),bB=bA.appendChild(e.createElement("div"));bz.optgroup=bz.option,bz.tbody=bz.tfoot=bz.colgroup=bz.caption=bz.thead,bz.th=bz.td,p.support.htmlSerialize||(bz._default=[1,"X<div>","</div>"]),p.fn.extend({text:function(a){return p.access(this,function(a){return a===b?p.text(this):this.empty().append((this[0]&&this[0].ownerDocument||e).createTextNode(a))},null,a,arguments.length)},wrapAll:function(a){if(p.isFunction(a))return this.each(function(b){p(this).wrapAll(a.call(this,b))});if(this[0]){var b=p(a,this[0].ownerDocument).eq(0).clone(!0);this[0].parentNode&&b.insertBefore(this[0]),b.map(function(){var a=this;while(a.firstChild&&a.firstChild.nodeType===1)a=a.firstChild;return a}).append(this)}return this},wrapInner:function(a){return p.isFunction(a)?this.each(function(b){p(this).wrapInner(a.call(this,b))}):this.each(function(){var b=p(this),c=b.contents();c.length?c.wrapAll(a):b.append(a)})},wrap:function(a){var b=p.isFunction(a);return this.each(function(c){p(this).wrapAll(b?a.call(this,c):a)})},unwrap:function(){return this.parent().each(function(){p.nodeName(this,"body")||p(this).replaceWith(this.childNodes)}).end()},append:function(){return this.domManip(arguments,!0,function(a){(this.nodeType===1||this.nodeType===11)&&this.appendChild(a)})},prepend:function(){return this.domManip(arguments,!0,function(a){(this.nodeType===1||this.nodeType===11)&&this.insertBefore(a,this.firstChild)})},before:function(){if(!bh(this[0]))return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this)});if(arguments.length){var a=p.clean(arguments);return this.pushStack(p.merge(a,this),"before",this.selector)}},after:function(){if(!bh(this[0]))return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this.nextSibling)});if(arguments.length){var a=p.clean(arguments);return this.pushStack(p.merge(this,a),"after",this.selector)}},remove:function(a,b){var c,d=0;for(;(c=this[d])!=null;d++)if(!a||p.filter(a,[c]).length)!b&&c.nodeType===1&&(p.cleanData(c.getElementsByTagName("*")),p.cleanData([c])),c.parentNode&&c.parentNode.removeChild(c);return this},empty:function(){var a,b=0;for(;(a=this[b])!=null;b++){a.nodeType===1&&p.cleanData(a.getElementsByTagName("*"));while(a.firstChild)a.removeChild(a.firstChild)}return this},clone:function(a,b){return a=a==null?!1:a,b=b==null?a:b,this.map(function(){return p.clone(this,a,b)})},html:function(a){return p.access(this,function(a){var c=this[0]||{},d=0,e=this.length;if(a===b)return c.nodeType===1?c.innerHTML.replace(bm,""):b;if(typeof a=="string"&&!bs.test(a)&&(p.support.htmlSerialize||!bu.test(a))&&(p.support.leadingWhitespace||!bn.test(a))&&!bz[(bp.exec(a)||["",""])[1].toLowerCase()]){a=a.replace(bo,"<$1></$2>");try{for(;d<e;d++)c=this[d]||{},c.nodeType===1&&(p.cleanData(c.getElementsByTagName("*")),c.innerHTML=a);c=0}catch(f){}}c&&this.empty().append(a)},null,a,arguments.length)},replaceWith:function(a){return bh(this[0])?this.length?this.pushStack(p(p.isFunction(a)?a():a),"replaceWith",a):this:p.isFunction(a)?this.each(function(b){var c=p(this),d=c.html();c.replaceWith(a.call(this,b,d))}):(typeof a!="string"&&(a=p(a).detach()),this.each(function(){var b=this.nextSibling,c=this.parentNode;p(this).remove(),b?p(b).before(a):p(c).append(a)}))},detach:function(a){return this.remove(a,!0)},domManip:function(a,c,d){a=[].concat.apply([],a);var e,f,g,h,i=0,j=a[0],k=[],l=this.length;if(!p.support.checkClone&&l>1&&typeof j=="string"&&bw.test(j))return this.each(function(){p(this).domManip(a,c,d)});if(p.isFunction(j))return this.each(function(e){var f=p(this);a[0]=j.call(this,e,c?f.html():b),f.domManip(a,c,d)});if(this[0]){e=p.buildFragment(a,this,k),g=e.fragment,f=g.firstChild,g.childNodes.length===1&&(g=f);if(f){c=c&&p.nodeName(f,"tr");for(h=e.cacheable||l-1;i<l;i++)d.call(c&&p.nodeName(this[i],"table")?bC(this[i],"tbody"):this[i],i===h?g:p.clone(g,!0,!0))}g=f=null,k.length&&p.each(k,function(a,b){b.src?p.ajax?p.ajax({url:b.src,type:"GET",dataType:"script",async:!1,global:!1,"throws":!0}):p.error("no ajax"):p.globalEval((b.text||b.textContent||b.innerHTML||"").replace(by,"")),b.parentNode&&b.parentNode.removeChild(b)})}return this}}),p.buildFragment=function(a,c,d){var f,g,h,i=a[0];return c=c||e,c=!c.nodeType&&c[0]||c,c=c.ownerDocument||c,a.length===1&&typeof i=="string"&&i.length<512&&c===e&&i.charAt(0)==="<"&&!bt.test(i)&&(p.support.checkClone||!bw.test(i))&&(p.support.html5Clone||!bu.test(i))&&(g=!0,f=p.fragments[i],h=f!==b),f||(f=c.createDocumentFragment(),p.clean(a,c,f,d),g&&(p.fragments[i]=h&&f)),{fragment:f,cacheable:g}},p.fragments={},p.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(a,b){p.fn[a]=function(c){var d,e=0,f=[],g=p(c),h=g.length,i=this.length===1&&this[0].parentNode;if((i==null||i&&i.nodeType===11&&i.childNodes.length===1)&&h===1)return g[b](this[0]),this;for(;e<h;e++)d=(e>0?this.clone(!0):this).get(),p(g[e])[b](d),f=f.concat(d);return this.pushStack(f,a,g.selector)}}),p.extend({clone:function(a,b,c){var d,e,f,g;p.support.html5Clone||p.isXMLDoc(a)||!bu.test("<"+a.nodeName+">")?g=a.cloneNode(!0):(bB.innerHTML=a.outerHTML,bB.removeChild(g=bB.firstChild));if((!p.support.noCloneEvent||!p.support.noCloneChecked)&&(a.nodeType===1||a.nodeType===11)&&!p.isXMLDoc(a)){bE(a,g),d=bF(a),e=bF(g);for(f=0;d[f];++f)e[f]&&bE(d[f],e[f])}if(b){bD(a,g);if(c){d=bF(a),e=bF(g);for(f=0;d[f];++f)bD(d[f],e[f])}}return d=e=null,g},clean:function(a,b,c,d){var f,g,h,i,j,k,l,m,n,o,q,r,s=b===e&&bA,t=[];if(!b||typeof b.createDocumentFragment=="undefined")b=e;for(f=0;(h=a[f])!=null;f++){typeof h=="number"&&(h+="");if(!h)continue;if(typeof h=="string")if(!br.test(h))h=b.createTextNode(h);else{s=s||bk(b),l=b.createElement("div"),s.appendChild(l),h=h.replace(bo,"<$1></$2>"),i=(bp.exec(h)||["",""])[1].toLowerCase(),j=bz[i]||bz._default,k=j[0],l.innerHTML=j[1]+h+j[2];while(k--)l=l.lastChild;if(!p.support.tbody){m=bq.test(h),n=i==="table"&&!m?l.firstChild&&l.firstChild.childNodes:j[1]==="<table>"&&!m?l.childNodes:[];for(g=n.length-1;g>=0;--g)p.nodeName(n[g],"tbody")&&!n[g].childNodes.length&&n[g].parentNode.removeChild(n[g])}!p.support.leadingWhitespace&&bn.test(h)&&l.insertBefore(b.createTextNode(bn.exec(h)[0]),l.firstChild),h=l.childNodes,l.parentNode.removeChild(l)}h.nodeType?t.push(h):p.merge(t,h)}l&&(h=l=s=null);if(!p.support.appendChecked)for(f=0;(h=t[f])!=null;f++)p.nodeName(h,"input")?bG(h):typeof h.getElementsByTagName!="undefined"&&p.grep(h.getElementsByTagName("input"),bG);if(c){q=function(a){if(!a.type||bx.test(a.type))return d?d.push(a.parentNode?a.parentNode.removeChild(a):a):c.appendChild(a)};for(f=0;(h=t[f])!=null;f++)if(!p.nodeName(h,"script")||!q(h))c.appendChild(h),typeof h.getElementsByTagName!="undefined"&&(r=p.grep(p.merge([],h.getElementsByTagName("script")),q),t.splice.apply(t,[f+1,0].concat(r)),f+=r.length)}return t},cleanData:function(a,b){var c,d,e,f,g=0,h=p.expando,i=p.cache,j=p.support.deleteExpando,k=p.event.special;for(;(e=a[g])!=null;g++)if(b||p.acceptData(e)){d=e[h],c=d&&i[d];if(c){if(c.events)for(f in c.events)k[f]?p.event.remove(e,f):p.removeEvent(e,f,c.handle);i[d]&&(delete i[d],j?delete e[h]:e.removeAttribute?e.removeAttribute(h):e[h]=null,p.deletedIds.push(d))}}}}),function(){var a,b;p.uaMatch=function(a){a=a.toLowerCase();var b=/(chrome)[ \/]([\w.]+)/.exec(a)||/(webkit)[ \/]([\w.]+)/.exec(a)||/(opera)(?:.*version|)[ \/]([\w.]+)/.exec(a)||/(msie) ([\w.]+)/.exec(a)||a.indexOf("compatible")<0&&/(mozilla)(?:.*? rv:([\w.]+)|)/.exec(a)||[];return{browser:b[1]||"",version:b[2]||"0"}},a=p.uaMatch(g.userAgent),b={},a.browser&&(b[a.browser]=!0,b.version=a.version),b.chrome?b.webkit=!0:b.webkit&&(b.safari=!0),p.browser=b,p.sub=function(){function a(b,c){return new a.fn.init(b,c)}p.extend(!0,a,this),a.superclass=this,a.fn=a.prototype=this(),a.fn.constructor=a,a.sub=this.sub,a.fn.init=function c(c,d){return d&&d instanceof p&&!(d instanceof a)&&(d=a(d)),p.fn.init.call(this,c,d,b)},a.fn.init.prototype=a.fn;var b=a(e);return a}}();var bH,bI,bJ,bK=/alpha\([^)]*\)/i,bL=/opacity=([^)]*)/,bM=/^(top|right|bottom|left)$/,bN=/^(none|table(?!-c[ea]).+)/,bO=/^margin/,bP=new RegExp("^("+q+")(.*)$","i"),bQ=new RegExp("^("+q+")(?!px)[a-z%]+$","i"),bR=new RegExp("^([-+])=("+q+")","i"),bS={},bT={position:"absolute",visibility:"hidden",display:"block"},bU={letterSpacing:0,fontWeight:400},bV=["Top","Right","Bottom","Left"],bW=["Webkit","O","Moz","ms"],bX=p.fn.toggle;p.fn.extend({css:function(a,c){return p.access(this,function(a,c,d){return d!==b?p.style(a,c,d):p.css(a,c)},a,c,arguments.length>1)},show:function(){return b$(this,!0)},hide:function(){return b$(this)},toggle:function(a,b){var c=typeof a=="boolean";return p.isFunction(a)&&p.isFunction(b)?bX.apply(this,arguments):this.each(function(){(c?a:bZ(this))?p(this).show():p(this).hide()})}}),p.extend({cssHooks:{opacity:{get:function(a,b){if(b){var c=bH(a,"opacity");return c===""?"1":c}}}},cssNumber:{fillOpacity:!0,fontWeight:!0,lineHeight:!0,opacity:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{"float":p.support.cssFloat?"cssFloat":"styleFloat"},style:function(a,c,d,e){if(!a||a.nodeType===3||a.nodeType===8||!a.style)return;var f,g,h,i=p.camelCase(c),j=a.style;c=p.cssProps[i]||(p.cssProps[i]=bY(j,i)),h=p.cssHooks[c]||p.cssHooks[i];if(d===b)return h&&"get"in h&&(f=h.get(a,!1,e))!==b?f:j[c];g=typeof d,g==="string"&&(f=bR.exec(d))&&(d=(f[1]+1)*f[2]+parseFloat(p.css(a,c)),g="number");if(d==null||g==="number"&&isNaN(d))return;g==="number"&&!p.cssNumber[i]&&(d+="px");if(!h||!("set"in h)||(d=h.set(a,d,e))!==b)try{j[c]=d}catch(k){}},css:function(a,c,d,e){var f,g,h,i=p.camelCase(c);return c=p.cssProps[i]||(p.cssProps[i]=bY(a.style,i)),h=p.cssHooks[c]||p.cssHooks[i],h&&"get"in h&&(f=h.get(a,!0,e)),f===b&&(f=bH(a,c)),f==="normal"&&c in bU&&(f=bU[c]),d||e!==b?(g=parseFloat(f),d||p.isNumeric(g)?g||0:f):f},swap:function(a,b,c){var d,e,f={};for(e in b)f[e]=a.style[e],a.style[e]=b[e];d=c.call(a);for(e in b)a.style[e]=f[e];return d}}),a.getComputedStyle?bH=function(b,c){var d,e,f,g,h=a.getComputedStyle(b,null),i=b.style;return h&&(d=h[c],d===""&&!p.contains(b.ownerDocument,b)&&(d=p.style(b,c)),bQ.test(d)&&bO.test(c)&&(e=i.width,f=i.minWidth,g=i.maxWidth,i.minWidth=i.maxWidth=i.width=d,d=h.width,i.width=e,i.minWidth=f,i.maxWidth=g)),d}:e.documentElement.currentStyle&&(bH=function(a,b){var c,d,e=a.currentStyle&&a.currentStyle[b],f=a.style;return e==null&&f&&f[b]&&(e=f[b]),bQ.test(e)&&!bM.test(b)&&(c=f.left,d=a.runtimeStyle&&a.runtimeStyle.left,d&&(a.runtimeStyle.left=a.currentStyle.left),f.left=b==="fontSize"?"1em":e,e=f.pixelLeft+"px",f.left=c,d&&(a.runtimeStyle.left=d)),e===""?"auto":e}),p.each(["height","width"],function(a,b){p.cssHooks[b]={get:function(a,c,d){if(c)return a.offsetWidth===0&&bN.test(bH(a,"display"))?p.swap(a,bT,function(){return cb(a,b,d)}):cb(a,b,d)},set:function(a,c,d){return b_(a,c,d?ca(a,b,d,p.support.boxSizing&&p.css(a,"boxSizing")==="border-box"):0)}}}),p.support.opacity||(p.cssHooks.opacity={get:function(a,b){return bL.test((b&&a.currentStyle?a.currentStyle.filter:a.style.filter)||"")?.01*parseFloat(RegExp.$1)+"":b?"1":""},set:function(a,b){var c=a.style,d=a.currentStyle,e=p.isNumeric(b)?"alpha(opacity="+b*100+")":"",f=d&&d.filter||c.filter||"";c.zoom=1;if(b>=1&&p.trim(f.replace(bK,""))===""&&c.removeAttribute){c.removeAttribute("filter");if(d&&!d.filter)return}c.filter=bK.test(f)?f.replace(bK,e):f+" "+e}}),p(function(){p.support.reliableMarginRight||(p.cssHooks.marginRight={get:function(a,b){return p.swap(a,{display:"inline-block"},function(){if(b)return bH(a,"marginRight")})}}),!p.support.pixelPosition&&p.fn.position&&p.each(["top","left"],function(a,b){p.cssHooks[b]={get:function(a,c){if(c){var d=bH(a,b);return bQ.test(d)?p(a).position()[b]+"px":d}}}})}),p.expr&&p.expr.filters&&(p.expr.filters.hidden=function(a){return a.offsetWidth===0&&a.offsetHeight===0||!p.support.reliableHiddenOffsets&&(a.style&&a.style.display||bH(a,"display"))==="none"},p.expr.filters.visible=function(a){return!p.expr.filters.hidden(a)}),p.each({margin:"",padding:"",border:"Width"},function(a,b){p.cssHooks[a+b]={expand:function(c){var d,e=typeof c=="string"?c.split(" "):[c],f={};for(d=0;d<4;d++)f[a+bV[d]+b]=e[d]||e[d-2]||e[0];return f}},bO.test(a)||(p.cssHooks[a+b].set=b_)});var cd=/%20/g,ce=/\[\]$/,cf=/\r?\n/g,cg=/^(?:color|date|datetime|datetime-local|email|hidden|month|number|password|range|search|tel|text|time|url|week)$/i,ch=/^(?:select|textarea)/i;p.fn.extend({serialize:function(){return p.param(this.serializeArray())},serializeArray:function(){return this.map(function(){return this.elements?p.makeArray(this.elements):this}).filter(function(){return this.name&&!this.disabled&&(this.checked||ch.test(this.nodeName)||cg.test(this.type))}).map(function(a,b){var c=p(this).val();return c==null?null:p.isArray(c)?p.map(c,function(a,c){return{name:b.name,value:a.replace(cf,"\r\n")}}):{name:b.name,value:c.replace(cf,"\r\n")}}).get()}}),p.param=function(a,c){var d,e=[],f=function(a,b){b=p.isFunction(b)?b():b==null?"":b,e[e.length]=encodeURIComponent(a)+"="+encodeURIComponent(b)};c===b&&(c=p.ajaxSettings&&p.ajaxSettings.traditional);if(p.isArray(a)||a.jquery&&!p.isPlainObject(a))p.each(a,function(){f(this.name,this.value)});else for(d in a)ci(d,a[d],c,f);return e.join("&").replace(cd,"+")};var cj,ck,cl=/#.*$/,cm=/^(.*?):[ \t]*([^\r\n]*)\r?$/mg,cn=/^(?:about|app|app\-storage|.+\-extension|file|res|widget):$/,co=/^(?:GET|HEAD)$/,cp=/^\/\//,cq=/\?/,cr=/<script\b[^<]*(?:(?!<\/script>)<[^<]*)*<\/script>/gi,cs=/([?&])_=[^&]*/,ct=/^([\w\+\.\-]+:)(?:\/\/([^\/?#:]*)(?::(\d+)|)|)/,cu=p.fn.load,cv={},cw={},cx=["*/"]+["*"];try{ck=f.href}catch(cy){ck=e.createElement("a"),ck.href="",ck=ck.href}cj=ct.exec(ck.toLowerCase())||[],p.fn.load=function(a,c,d){if(typeof a!="string"&&cu)return cu.apply(this,arguments);if(!this.length)return this;var e,f,g,h=this,i=a.indexOf(" ");return i>=0&&(e=a.slice(i,a.length),a=a.slice(0,i)),p.isFunction(c)?(d=c,c=b):c&&typeof c=="object"&&(f="POST"),p.ajax({url:a,type:f,dataType:"html",data:c,complete:function(a,b){d&&h.each(d,g||[a.responseText,b,a])}}).done(function(a){g=arguments,h.html(e?p("<div>").append(a.replace(cr,"")).find(e):a)}),this},p.each("ajaxStart ajaxStop ajaxComplete ajaxError ajaxSuccess ajaxSend".split(" "),function(a,b){p.fn[b]=function(a){return this.on(b,a)}}),p.each(["get","post"],function(a,c){p[c]=function(a,d,e,f){return p.isFunction(d)&&(f=f||e,e=d,d=b),p.ajax({type:c,url:a,data:d,success:e,dataType:f})}}),p.extend({getScript:function(a,c){return p.get(a,b,c,"script")},getJSON:function(a,b,c){return p.get(a,b,c,"json")},ajaxSetup:function(a,b){return b?cB(a,p.ajaxSettings):(b=a,a=p.ajaxSettings),cB(a,b),a},ajaxSettings:{url:ck,isLocal:cn.test(cj[1]),global:!0,type:"GET",contentType:"application/x-www-form-urlencoded; charset=UTF-8",processData:!0,async:!0,accepts:{xml:"application/xml, text/xml",html:"text/html",text:"text/plain",json:"application/json, text/javascript","*":cx},contents:{xml:/xml/,html:/html/,json:/json/},responseFields:{xml:"responseXML",text:"responseText"},converters:{"* text":a.String,"text html":!0,"text json":p.parseJSON,"text xml":p.parseXML},flatOptions:{context:!0,url:!0}},ajaxPrefilter:cz(cv),ajaxTransport:cz(cw),ajax:function(a,c){function y(a,c,f,i){var k,s,t,u,w,y=c;if(v===2)return;v=2,h&&clearTimeout(h),g=b,e=i||"",x.readyState=a>0?4:0,f&&(u=cC(l,x,f));if(a>=200&&a<300||a===304)l.ifModified&&(w=x.getResponseHeader("Last-Modified"),w&&(p.lastModified[d]=w),w=x.getResponseHeader("Etag"),w&&(p.etag[d]=w)),a===304?(y="notmodified",k=!0):(k=cD(l,u),y=k.state,s=k.data,t=k.error,k=!t);else{t=y;if(!y||a)y="error",a<0&&(a=0)}x.status=a,x.statusText=(c||y)+"",k?o.resolveWith(m,[s,y,x]):o.rejectWith(m,[x,y,t]),x.statusCode(r),r=b,j&&n.trigger("ajax"+(k?"Success":"Error"),[x,l,k?s:t]),q.fireWith(m,[x,y]),j&&(n.trigger("ajaxComplete",[x,l]),--p.active||p.event.trigger("ajaxStop"))}typeof a=="object"&&(c=a,a=b),c=c||{};var d,e,f,g,h,i,j,k,l=p.ajaxSetup({},c),m=l.context||l,n=m!==l&&(m.nodeType||m instanceof p)?p(m):p.event,o=p.Deferred(),q=p.Callbacks("once memory"),r=l.statusCode||{},t={},u={},v=0,w="canceled",x={readyState:0,setRequestHeader:function(a,b){if(!v){var c=a.toLowerCase();a=u[c]=u[c]||a,t[a]=b}return this},getAllResponseHeaders:function(){return v===2?e:null},getResponseHeader:function(a){var c;if(v===2){if(!f){f={};while(c=cm.exec(e))f[c[1].toLowerCase()]=c[2]}c=f[a.toLowerCase()]}return c===b?null:c},overrideMimeType:function(a){return v||(l.mimeType=a),this},abort:function(a){return a=a||w,g&&g.abort(a),y(0,a),this}};o.promise(x),x.success=x.done,x.error=x.fail,x.complete=q.add,x.statusCode=function(a){if(a){var b;if(v<2)for(b in a)r[b]=[r[b],a[b]];else b=a[x.status],x.always(b)}return this},l.url=((a||l.url)+"").replace(cl,"").replace(cp,cj[1]+"//"),l.dataTypes=p.trim(l.dataType||"*").toLowerCase().split(s),l.crossDomain==null&&(i=ct.exec(l.url.toLowerCase())||!1,l.crossDomain=i&&i.join(":")+(i[3]?"":i[1]==="http:"?80:443)!==cj.join(":")+(cj[3]?"":cj[1]==="http:"?80:443)),l.data&&l.processData&&typeof l.data!="string"&&(l.data=p.param(l.data,l.traditional)),cA(cv,l,c,x);if(v===2)return x;j=l.global,l.type=l.type.toUpperCase(),l.hasContent=!co.test(l.type),j&&p.active++===0&&p.event.trigger("ajaxStart");if(!l.hasContent){l.data&&(l.url+=(cq.test(l.url)?"&":"?")+l.data,delete l.data),d=l.url;if(l.cache===!1){var z=p.now(),A=l.url.replace(cs,"$1_="+z);l.url=A+(A===l.url?(cq.test(l.url)?"&":"?")+"_="+z:"")}}(l.data&&l.hasContent&&l.contentType!==!1||c.contentType)&&x.setRequestHeader("Content-Type",l.contentType),l.ifModified&&(d=d||l.url,p.lastModified[d]&&x.setRequestHeader("If-Modified-Since",p.lastModified[d]),p.etag[d]&&x.setRequestHeader("If-None-Match",p.etag[d])),x.setRequestHeader("Accept",l.dataTypes[0]&&l.accepts[l.dataTypes[0]]?l.accepts[l.dataTypes[0]]+(l.dataTypes[0]!=="*"?", "+cx+"; q=0.01":""):l.accepts["*"]);for(k in l.headers)x.setRequestHeader(k,l.headers[k]);if(!l.beforeSend||l.beforeSend.call(m,x,l)!==!1&&v!==2){w="abort";for(k in{success:1,error:1,complete:1})x[k](l[k]);g=cA(cw,l,c,x);if(!g)y(-1,"No Transport");else{x.readyState=1,j&&n.trigger("ajaxSend",[x,l]),l.async&&l.timeout>0&&(h=setTimeout(function(){x.abort("timeout")},l.timeout));try{v=1,g.send(t,y)}catch(B){if(v<2)y(-1,B);else throw B}}return x}return x.abort()},active:0,lastModified:{},etag:{}});var cE=[],cF=/\?/,cG=/(=)\?(?=&|$)|\?\?/,cH=p.now();p.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var a=cE.pop()||p.expando+"_"+cH++;return this[a]=!0,a}}),p.ajaxPrefilter("json jsonp",function(c,d,e){var f,g,h,i=c.data,j=c.url,k=c.jsonp!==!1,l=k&&cG.test(j),m=k&&!l&&typeof i=="string"&&!(c.contentType||"").indexOf("application/x-www-form-urlencoded")&&cG.test(i);if(c.dataTypes[0]==="jsonp"||l||m)return f=c.jsonpCallback=p.isFunction(c.jsonpCallback)?c.jsonpCallback():c.jsonpCallback,g=a[f],l?c.url=j.replace(cG,"$1"+f):m?c.data=i.replace(cG,"$1"+f):k&&(c.url+=(cF.test(j)?"&":"?")+c.jsonp+"="+f),c.converters["script json"]=function(){return h||p.error(f+" was not called"),h[0]},c.dataTypes[0]="json",a[f]=function(){h=arguments},e.always(function(){a[f]=g,c[f]&&(c.jsonpCallback=d.jsonpCallback,cE.push(f)),h&&p.isFunction(g)&&g(h[0]),h=g=b}),"script"}),p.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/javascript|ecmascript/},converters:{"text script":function(a){return p.globalEval(a),a}}}),p.ajaxPrefilter("script",function(a){a.cache===b&&(a.cache=!1),a.crossDomain&&(a.type="GET",a.global=!1)}),p.ajaxTransport("script",function(a){if(a.crossDomain){var c,d=e.head||e.getElementsByTagName("head")[0]||e.documentElement;return{send:function(f,g){c=e.createElement("script"),c.async="async",a.scriptCharset&&(c.charset=a.scriptCharset),c.src=a.url,c.onload=c.onreadystatechange=function(a,e){if(e||!c.readyState||/loaded|complete/.test(c.readyState))c.onload=c.onreadystatechange=null,d&&c.parentNode&&d.removeChild(c),c=b,e||g(200,"success")},d.insertBefore(c,d.firstChild)},abort:function(){c&&c.onload(0,1)}}}});var cI,cJ=a.ActiveXObject?function(){for(var a in cI)cI[a](0,1)}:!1,cK=0;p.ajaxSettings.xhr=a.ActiveXObject?function(){return!this.isLocal&&cL()||cM()}:cL,function(a){p.extend(p.support,{ajax:!!a,cors:!!a&&"withCredentials"in a})}(p.ajaxSettings.xhr()),p.support.ajax&&p.ajaxTransport(function(c){if(!c.crossDomain||p.support.cors){var d;return{send:function(e,f){var g,h,i=c.xhr();c.username?i.open(c.type,c.url,c.async,c.username,c.password):i.open(c.type,c.url,c.async);if(c.xhrFields)for(h in c.xhrFields)i[h]=c.xhrFields[h];c.mimeType&&i.overrideMimeType&&i.overrideMimeType(c.mimeType),!c.crossDomain&&!e["X-Requested-With"]&&(e["X-Requested-With"]="XMLHttpRequest");try{for(h in e)i.setRequestHeader(h,e[h])}catch(j){}i.send(c.hasContent&&c.data||null),d=function(a,e){var h,j,k,l,m;try{if(d&&(e||i.readyState===4)){d=b,g&&(i.onreadystatechange=p.noop,cJ&&delete cI[g]);if(e)i.readyState!==4&&i.abort();else{h=i.status,k=i.getAllResponseHeaders(),l={},m=i.responseXML,m&&m.documentElement&&(l.xml=m);try{l.text=i.responseText}catch(a){}try{j=i.statusText}catch(n){j=""}!h&&c.isLocal&&!c.crossDomain?h=l.text?200:404:h===1223&&(h=204)}}}catch(o){e||f(-1,o)}l&&f(h,j,l,k)},c.async?i.readyState===4?setTimeout(d,0):(g=++cK,cJ&&(cI||(cI={},p(a).unload(cJ)),cI[g]=d),i.onreadystatechange=d):d()},abort:function(){d&&d(0,1)}}}});var cN,cO,cP=/^(?:toggle|show|hide)$/,cQ=new RegExp("^(?:([-+])=|)("+q+")([a-z%]*)$","i"),cR=/queueHooks$/,cS=[cY],cT={"*":[function(a,b){var c,d,e=this.createTween(a,b),f=cQ.exec(b),g=e.cur(),h=+g||0,i=1,j=20;if(f){c=+f[2],d=f[3]||(p.cssNumber[a]?"":"px");if(d!=="px"&&h){h=p.css(e.elem,a,!0)||c||1;do i=i||".5",h=h/i,p.style(e.elem,a,h+d);while(i!==(i=e.cur()/g)&&i!==1&&--j)}e.unit=d,e.start=h,e.end=f[1]?h+(f[1]+1)*c:c}return e}]};p.Animation=p.extend(cW,{tweener:function(a,b){p.isFunction(a)?(b=a,a=["*"]):a=a.split(" ");var c,d=0,e=a.length;for(;d<e;d++)c=a[d],cT[c]=cT[c]||[],cT[c].unshift(b)},prefilter:function(a,b){b?cS.unshift(a):cS.push(a)}}),p.Tween=cZ,cZ.prototype={constructor:cZ,init:function(a,b,c,d,e,f){this.elem=a,this.prop=c,this.easing=e||"swing",this.options=b,this.start=this.now=this.cur(),this.end=d,this.unit=f||(p.cssNumber[c]?"":"px")},cur:function(){var a=cZ.propHooks[this.prop];return a&&a.get?a.get(this):cZ.propHooks._default.get(this)},run:function(a){var b,c=cZ.propHooks[this.prop];return this.options.duration?this.pos=b=p.easing[this.easing](a,this.options.duration*a,0,1,this.options.duration):this.pos=b=a,this.now=(this.end-this.start)*b+this.start,this.options.step&&this.options.step.call(this.elem,this.now,this),c&&c.set?c.set(this):cZ.propHooks._default.set(this),this}},cZ.prototype.init.prototype=cZ.prototype,cZ.propHooks={_default:{get:function(a){var b;return a.elem[a.prop]==null||!!a.elem.style&&a.elem.style[a.prop]!=null?(b=p.css(a.elem,a.prop,!1,""),!b||b==="auto"?0:b):a.elem[a.prop]},set:function(a){p.fx.step[a.prop]?p.fx.step[a.prop](a):a.elem.style&&(a.elem.style[p.cssProps[a.prop]]!=null||p.cssHooks[a.prop])?p.style(a.elem,a.prop,a.now+a.unit):a.elem[a.prop]=a.now}}},cZ.propHooks.scrollTop=cZ.propHooks.scrollLeft={set:function(a){a.elem.nodeType&&a.elem.parentNode&&(a.elem[a.prop]=a.now)}},p.each(["toggle","show","hide"],function(a,b){var c=p.fn[b];p.fn[b]=function(d,e,f){return d==null||typeof d=="boolean"||!a&&p.isFunction(d)&&p.isFunction(e)?c.apply(this,arguments):this.animate(c$(b,!0),d,e,f)}}),p.fn.extend({fadeTo:function(a,b,c,d){return this.filter(bZ).css("opacity",0).show().end().animate({opacity:b},a,c,d)},animate:function(a,b,c,d){var e=p.isEmptyObject(a),f=p.speed(b,c,d),g=function(){var b=cW(this,p.extend({},a),f);e&&b.stop(!0)};return e||f.queue===!1?this.each(g):this.queue(f.queue,g)},stop:function(a,c,d){var e=function(a){var b=a.stop;delete a.stop,b(d)};return typeof a!="string"&&(d=c,c=a,a=b),c&&a!==!1&&this.queue(a||"fx",[]),this.each(function(){var b=!0,c=a!=null&&a+"queueHooks",f=p.timers,g=p._data(this);if(c)g[c]&&g[c].stop&&e(g[c]);else for(c in g)g[c]&&g[c].stop&&cR.test(c)&&e(g[c]);for(c=f.length;c--;)f[c].elem===this&&(a==null||f[c].queue===a)&&(f[c].anim.stop(d),b=!1,f.splice(c,1));(b||!d)&&p.dequeue(this,a)})}}),p.each({slideDown:c$("show"),slideUp:c$("hide"),slideToggle:c$("toggle"),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"},fadeToggle:{opacity:"toggle"}},function(a,b){p.fn[a]=function(a,c,d){return this.animate(b,a,c,d)}}),p.speed=function(a,b,c){var d=a&&typeof a=="object"?p.extend({},a):{complete:c||!c&&b||p.isFunction(a)&&a,duration:a,easing:c&&b||b&&!p.isFunction(b)&&b};d.duration=p.fx.off?0:typeof d.duration=="number"?d.duration:d.duration in p.fx.speeds?p.fx.speeds[d.duration]:p.fx.speeds._default;if(d.queue==null||d.queue===!0)d.queue="fx";return d.old=d.complete,d.complete=function(){p.isFunction(d.old)&&d.old.call(this),d.queue&&p.dequeue(this,d.queue)},d},p.easing={linear:function(a){return a},swing:function(a){return.5-Math.cos(a*Math.PI)/2}},p.timers=[],p.fx=cZ.prototype.init,p.fx.tick=function(){var a,b=p.timers,c=0;for(;c<b.length;c++)a=b[c],!a()&&b[c]===a&&b.splice(c--,1);b.length||p.fx.stop()},p.fx.timer=function(a){a()&&p.timers.push(a)&&!cO&&(cO=setInterval(p.fx.tick,p.fx.interval))},p.fx.interval=13,p.fx.stop=function(){clearInterval(cO),cO=null},p.fx.speeds={slow:600,fast:200,_default:400},p.fx.step={},p.expr&&p.expr.filters&&(p.expr.filters.animated=function(a){return p.grep(p.timers,function(b){return a===b.elem}).length});var c_=/^(?:body|html)$/i;p.fn.offset=function(a){if(arguments.length)return a===b?this:this.each(function(b){p.offset.setOffset(this,a,b)});var c,d,e,f,g,h,i,j={top:0,left:0},k=this[0],l=k&&k.ownerDocument;if(!l)return;return(d=l.body)===k?p.offset.bodyOffset(k):(c=l.documentElement,p.contains(c,k)?(typeof k.getBoundingClientRect!="undefined"&&(j=k.getBoundingClientRect()),e=da(l),f=c.clientTop||d.clientTop||0,g=c.clientLeft||d.clientLeft||0,h=e.pageYOffset||c.scrollTop,i=e.pageXOffset||c.scrollLeft,{top:j.top+h-f,left:j.left+i-g}):j)},p.offset={bodyOffset:function(a){var b=a.offsetTop,c=a.offsetLeft;return p.support.doesNotIncludeMarginInBodyOffset&&(b+=parseFloat(p.css(a,"marginTop"))||0,c+=parseFloat(p.css(a,"marginLeft"))||0),{top:b,left:c}},setOffset:function(a,b,c){var d=p.css(a,"position");d==="static"&&(a.style.position="relative");var e=p(a),f=e.offset(),g=p.css(a,"top"),h=p.css(a,"left"),i=(d==="absolute"||d==="fixed")&&p.inArray("auto",[g,h])>-1,j={},k={},l,m;i?(k=e.position(),l=k.top,m=k.left):(l=parseFloat(g)||0,m=parseFloat(h)||0),p.isFunction(b)&&(b=b.call(a,c,f)),b.top!=null&&(j.top=b.top-f.top+l),b.left!=null&&(j.left=b.left-f.left+m),"using"in b?b.using.call(a,j):e.css(j)}},p.fn.extend({position:function(){if(!this[0])return;var a=this[0],b=this.offsetParent(),c=this.offset(),d=c_.test(b[0].nodeName)?{top:0,left:0}:b.offset();return c.top-=parseFloat(p.css(a,"marginTop"))||0,c.left-=parseFloat(p.css(a,"marginLeft"))||0,d.top+=parseFloat(p.css(b[0],"borderTopWidth"))||0,d.left+=parseFloat(p.css(b[0],"borderLeftWidth"))||0,{top:c.top-d.top,left:c.left-d.left}},offsetParent:function(){return this.map(function(){var a=this.offsetParent||e.body;while(a&&!c_.test(a.nodeName)&&p.css(a,"position")==="static")a=a.offsetParent;return a||e.body})}}),p.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(a,c){var d=/Y/.test(c);p.fn[a]=function(e){return p.access(this,function(a,e,f){var g=da(a);if(f===b)return g?c in g?g[c]:g.document.documentElement[e]:a[e];g?g.scrollTo(d?p(g).scrollLeft():f,d?f:p(g).scrollTop()):a[e]=f},a,e,arguments.length,null)}}),p.each({Height:"height",Width:"width"},function(a,c){p.each({padding:"inner"+a,content:c,"":"outer"+a},function(d,e){p.fn[e]=function(e,f){var g=arguments.length&&(d||typeof e!="boolean"),h=d||(e===!0||f===!0?"margin":"border");return p.access(this,function(c,d,e){var f;return p.isWindow(c)?c.document.documentElement["client"+a]:c.nodeType===9?(f=c.documentElement,Math.max(c.body["scroll"+a],f["scroll"+a],c.body["offset"+a],f["offset"+a],f["client"+a])):e===b?p.css(c,d,e,h):p.style(c,d,e,h)},c,g?e:b,g,null)}})}),a.jQuery=a.$=p,typeof define=="function"&&define.amd&&define.amd.jQuery&&define("jquery",[],function(){return p})})(window);
app/views/GroupItem/GroupItem.js
lishengzxc/random
import React from 'react'; import styles from './GroupItem.scss'; var GroupItem = React.createClass({ render: function () { return ( <li className={styles.li}>{ this.props.result.map(function (result) { return ( <div className={styles.member} key={result}> {result} </div> ); }) }</li> ) } }); export default GroupItem;
packages/material-ui-icons/src/DirectionsBusRounded.js
Kagami/material-ui
import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( <React.Fragment><path fill="none" d="M0 0h24v24H0V0z" /><path d="M4 16c0 .88.39 1.67 1 2.22v1.28c0 .83.67 1.5 1.5 1.5S8 20.33 8 19.5V19h8v.5c0 .82.67 1.5 1.5 1.5.82 0 1.5-.67 1.5-1.5v-1.28c.61-.55 1-1.34 1-2.22V6c0-3.5-3.58-4-8-4s-8 .5-8 4v10zm3.5 1c-.83 0-1.5-.67-1.5-1.5S6.67 14 7.5 14s1.5.67 1.5 1.5S8.33 17 7.5 17zm9 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm1.5-6H6V6h12v5z" /></React.Fragment> , 'DirectionsBusRounded');
packages/material-ui-icons/src/AssignmentTurnedIn.js
Kagami/material-ui
import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( <React.Fragment><path fill="none" d="M0 0h24v24H0z" /><path d="M19 3h-4.18C14.4 1.84 13.3 1 12 1c-1.3 0-2.4.84-2.82 2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 0c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm-2 14l-4-4 1.41-1.41L10 14.17l6.59-6.59L18 9l-8 8z" /></React.Fragment> , 'AssignmentTurnedIn');
packages/material-ui-icons/src/Lock.js
cherniavskii/material-ui
import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( <g><path d="M18 8h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zm-6 9c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm3.1-9H8.9V6c0-1.71 1.39-3.1 3.1-3.1 1.71 0 3.1 1.39 3.1 3.1v2z" /></g> , 'Lock');
ajax/libs/yui/3.15.0/event-focus/event-focus-debug.js
kitcambridge/cdnjs
/* YUI 3.15.0 (build 834026e) Copyright 2014 Yahoo! Inc. All rights reserved. Licensed under the BSD License. http://yuilibrary.com/license/ */ YUI.add('event-focus', function (Y, NAME) { /** * Adds bubbling and delegation support to DOM events focus and blur. * * @module event * @submodule event-focus */ var Event = Y.Event, YLang = Y.Lang, isString = YLang.isString, arrayIndex = Y.Array.indexOf, useActivate = (function() { // Changing the structure of this test, so that it doesn't use inline JS in HTML, // which throws an exception in Win8 packaged apps, due to additional security restrictions: // http://msdn.microsoft.com/en-us/library/windows/apps/hh465380.aspx#differences var supported = false, doc = Y.config.doc, p; if (doc) { p = doc.createElement("p"); p.setAttribute("onbeforeactivate", ";"); // onbeforeactivate is a function in IE8+. // onbeforeactivate is a string in IE6,7 (unfortunate, otherwise we could have just checked for function below). // onbeforeactivate is a function in IE10, in a Win8 App environment (no exception running the test). // onbeforeactivate is undefined in Webkit/Gecko. // onbeforeactivate is a function in Webkit/Gecko if it's a supported event (e.g. onclick). supported = (p.onbeforeactivate !== undefined); } return supported; }()); function define(type, proxy, directEvent) { var nodeDataKey = '_' + type + 'Notifiers'; Y.Event.define(type, { _useActivate : useActivate, _attach: function (el, notifier, delegate) { if (Y.DOM.isWindow(el)) { return Event._attach([type, function (e) { notifier.fire(e); }, el]); } else { return Event._attach( [proxy, this._proxy, el, this, notifier, delegate], { capture: true }); } }, _proxy: function (e, notifier, delegate) { var target = e.target, currentTarget = e.currentTarget, notifiers = target.getData(nodeDataKey), yuid = Y.stamp(currentTarget._node), defer = (useActivate || target !== currentTarget), directSub; notifier.currentTarget = (delegate) ? target : currentTarget; notifier.container = (delegate) ? currentTarget : null; // Maintain a list to handle subscriptions from nested // containers div#a>div#b>input #a.on(focus..) #b.on(focus..), // use one focus or blur subscription that fires notifiers from // #b then #a to emulate bubble sequence. if (!notifiers) { notifiers = {}; target.setData(nodeDataKey, notifiers); // only subscribe to the element's focus if the target is // not the current target ( if (defer) { directSub = Event._attach( [directEvent, this._notify, target._node]).sub; directSub.once = true; } } else { // In old IE, defer is always true. In capture-phase browsers, // The delegate subscriptions will be encountered first, which // will establish the notifiers data and direct subscription // on the node. If there is also a direct subscription to the // node's focus/blur, it should not call _notify because the // direct subscription from the delegate sub(s) exists, which // will call _notify. So this avoids _notify being called // twice, unnecessarily. defer = true; } if (!notifiers[yuid]) { notifiers[yuid] = []; } notifiers[yuid].push(notifier); if (!defer) { this._notify(e); } }, _notify: function (e, container) { var currentTarget = e.currentTarget, notifierData = currentTarget.getData(nodeDataKey), axisNodes = currentTarget.ancestors(), doc = currentTarget.get('ownerDocument'), delegates = [], // Used to escape loops when there are no more // notifiers to consider count = notifierData ? Y.Object.keys(notifierData).length : 0, target, notifiers, notifier, yuid, match, tmp, i, len, sub, ret; // clear the notifications list (mainly for delegation) currentTarget.clearData(nodeDataKey); // Order the delegate subs by their placement in the parent axis axisNodes.push(currentTarget); // document.get('ownerDocument') returns null // which we'll use to prevent having duplicate Nodes in the list if (doc) { axisNodes.unshift(doc); } // ancestors() returns the Nodes from top to bottom axisNodes._nodes.reverse(); if (count) { // Store the count for step 2 tmp = count; axisNodes.some(function (node) { var yuid = Y.stamp(node), notifiers = notifierData[yuid], i, len; if (notifiers) { count--; for (i = 0, len = notifiers.length; i < len; ++i) { if (notifiers[i].handle.sub.filter) { delegates.push(notifiers[i]); } } } return !count; }); count = tmp; } // Walk up the parent axis, notifying direct subscriptions and // testing delegate filters. while (count && (target = axisNodes.shift())) { yuid = Y.stamp(target); notifiers = notifierData[yuid]; if (notifiers) { for (i = 0, len = notifiers.length; i < len; ++i) { notifier = notifiers[i]; sub = notifier.handle.sub; match = true; e.currentTarget = target; if (sub.filter) { match = sub.filter.apply(target, [target, e].concat(sub.args || [])); // No longer necessary to test against this // delegate subscription for the nodes along // the parent axis. delegates.splice( arrayIndex(delegates, notifier), 1); } if (match) { // undefined for direct subs e.container = notifier.container; ret = notifier.fire(e); } if (ret === false || e.stopped === 2) { break; } } delete notifiers[yuid]; count--; } if (e.stopped !== 2) { // delegates come after subs targeting this specific node // because they would not normally report until they'd // bubbled to the container node. for (i = 0, len = delegates.length; i < len; ++i) { notifier = delegates[i]; sub = notifier.handle.sub; if (sub.filter.apply(target, [target, e].concat(sub.args || []))) { e.container = notifier.container; e.currentTarget = target; ret = notifier.fire(e); } if (ret === false || e.stopped === 2 || // If e.stopPropagation() is called, notify any // delegate subs from the same container, but break // once the container changes. This emulates // delegate() behavior for events like 'click' which // won't notify delegates higher up the parent axis. (e.stopped && delegates[i+1] && delegates[i+1].container !== notifier.container)) { break; } } } if (e.stopped) { break; } } }, on: function (node, sub, notifier) { sub.handle = this._attach(node._node, notifier); }, detach: function (node, sub) { sub.handle.detach(); }, delegate: function (node, sub, notifier, filter) { if (isString(filter)) { sub.filter = function (target) { return Y.Selector.test(target._node, filter, node === target ? null : node._node); }; } sub.handle = this._attach(node._node, notifier, true); }, detachDelegate: function (node, sub) { sub.handle.detach(); } }, true); } // For IE, we need to defer to focusin rather than focus because // `el.focus(); doSomething();` executes el.onbeforeactivate, el.onactivate, // el.onfocusin, doSomething, then el.onfocus. All others support capture // phase focus, which executes before doSomething. To guarantee consistent // behavior for this use case, IE's direct subscriptions are made against // focusin so subscribers will be notified before js following el.focus() is // executed. if (useActivate) { // name capture phase direct subscription define("focus", "beforeactivate", "focusin"); define("blur", "beforedeactivate", "focusout"); } else { define("focus", "focus", "focus"); define("blur", "blur", "blur"); } }, '3.15.0', {"requires": ["event-synthetic"]});
client/index.js
ncrmro/reango
import React from 'react'; import ReactDOM from 'react-dom'; import { AppContainer } from 'react-hot-loader'; import Root from './root'; const root = document.createElement('div'); document.body.appendChild(root); const render = (Component) => { ReactDOM.render( <AppContainer > <Component /> </AppContainer>, root ); }; render(Root); // Hot Module Replacement API if (module.hot) { module.hot.accept('./root', () => { const NextRoot = require('./root').default; // eslint-disable-line global-require render(NextRoot); }); }
node_modules/@shoutem/animation/src/animations/FadeIn.js
tausifmuzaffar/bisApp
import React, { Component } from 'react'; import { Animated, View } from 'react-native'; import { DriverShape } from '../drivers/DriverShape'; /* * FadeIn Component adds fade in effect to its children components. * Connect it to an animation driver and pass the input range to animate it. * e.g.: * ... * const driver = new ScrollDriver(); * * return ( * <ScrollView * {...driver.scrollViewProps} * > * <FadeIn * driver={driver} * inputRange={[100,150]} * > * <Image /> * </FadeIn> * </ScrollView> * ); * * ... * Above code will create scroll dependent fade in animation over Image component * from scroll position 100, to scroll position 150 where image is fully transparent at * scroll position 100, and opaque at scroll position 150 */ export class FadeIn extends Component { static propTypes = { /** * An instance of animation driver, usually ScrollDriver */ driver: DriverShape.isRequired, /** * Components to which an effect will be applied */ children: React.PropTypes.node, /** * pair of [start, end] values from animation driver, how * children would fade in */ inputRange: React.PropTypes.array, } render() { const { driver, children, inputRange = [0, 1], style } = this.props; return ( <Animated.View style={[style, { opacity: driver.value.interpolate({ inputRange, outputRange: [0, 1], extrapolate: 'clamp', }), }]} > {children} </Animated.View> ); } }
src/components/Users.js
TheDuckFIN/react-chat
import React from 'react'; import User from './User'; export default class Users extends React.Component { render() { return ( <div className="users"> <strong>Online users (server)</strong> <ul className="userlist"> { Object.keys(this.props.users).map((userid) => <User key={userid} nick={this.props.users[userid].nick} /> ) } </ul> </div> ); } }
lib/yuilib/3.17.2/event-focus/event-focus-min.js
cdsmith-umn/moodle
/* YUI 3.17.2 (build 9c3c78e) Copyright 2014 Yahoo! Inc. All rights reserved. Licensed under the BSD License. http://yuilibrary.com/license/ */ YUI.add("event-focus",function(e,t){function u(t,r,u){var a="_"+t+"Notifiers";e.Event.define(t,{_useActivate:o,_attach:function(i,s,o){return e.DOM.isWindow(i)?n._attach([t,function(e){s.fire(e)},i]):n._attach([r,this._proxy,i,this,s,o],{capture:!0})},_proxy:function(t,r,i){var s=t.target,f=t.currentTarget,l=s.getData(a),c=e.stamp(f._node),h=o||s!==f,p;r.currentTarget=i?s:f,r.container=i?f:null,l?h=!0:(l={},s.setData(a,l),h&&(p=n._attach([u,this._notify,s._node]).sub,p.once=!0)),l[c]||(l[c]=[]),l[c].push(r),h||this._notify(t)},_notify:function(t,n){var r=t.currentTarget,i=r.getData(a),o=r.ancestors(),u=r.get("ownerDocument"),f=[],l=i?e.Object.keys(i).length:0,c,h,p,d,v,m,g,y,b,w;r.clearData(a),o.push(r),u&&o.unshift(u),o._nodes.reverse(),l&&(m=l,o.some(function(t){var n=e.stamp(t),r=i[n],s,o;if(r){l--;for(s=0,o=r.length;s<o;++s)r[s].handle.sub.filter&&f.push(r[s])}return!l}),l=m);while(l&&(c=o.shift())){d=e.stamp(c),h=i[d];if(h){for(g=0,y=h.length;g<y;++g){p=h[g],b=p.handle.sub,v=!0,t.currentTarget=c,b.filter&&(v=b.filter.apply(c,[c,t].concat(b.args||[])),f.splice(s(f,p),1)),v&&(t.container=p.container,w=p.fire(t));if(w===!1||t.stopped===2)break}delete h[d],l--}if(t.stopped!==2)for(g=0,y=f.length;g<y;++g){p=f[g],b=p.handle.sub,b.filter.apply(c,[c,t].concat(b.args||[]))&&(t.container=p.container,t.currentTarget=c,w=p.fire(t));if(w===!1||t.stopped===2||t.stopped&&f[g+1]&&f[g+1].container!==p.container)break}if(t.stopped)break}},on:function(e,t,n){t.handle=this._attach(e._node,n)},detach:function(e,t){t.handle.detach()},delegate:function(t,n,r,s){i(s)&&(n.filter=function(n){return e.Selector.test(n._node,s,t===n?null:t._node)}),n.handle=this._attach(t._node,r,!0)},detachDelegate:function(e,t){t.handle.detach()}},!0)}var n=e.Event,r=e.Lang,i=r.isString,s=e.Array.indexOf,o=function(){var t=!1,n=e.config.doc,r;return n&&(r=n.createElement("p"),r.setAttribute("onbeforeactivate",";"),t=r.onbeforeactivate!==undefined),t}();o?(u("focus","beforeactivate","focusin"),u("blur","beforedeactivate","focusout")):(u("focus","focus","focus"),u("blur","blur","blur"))},"3.17.2",{requires:["event-synthetic"]});
src/svg-icons/content/delete-sweep.js
IsenrichO/mui-with-arrows
import React from 'react'; import pure from 'recompose/pure'; import SvgIcon from '../../SvgIcon'; let ContentDeleteSweep = (props) => ( <SvgIcon {...props}> <path d="M15 16h4v2h-4zm0-8h7v2h-7zm0 4h6v2h-6zM3 18c0 1.1.9 2 2 2h6c1.1 0 2-.9 2-2V8H3v10zM14 5h-3l-1-1H6L5 5H2v2h12z"/> </SvgIcon> ); ContentDeleteSweep = pure(ContentDeleteSweep); ContentDeleteSweep.displayName = 'ContentDeleteSweep'; ContentDeleteSweep.muiName = 'SvgIcon'; export default ContentDeleteSweep;
src/components/elements/Text/index.stories.js
ygoto3/simple-frontend-starter-kit
import React from 'react'; import { storiesOf } from '@kadira/storybook'; import { Text } from './index.js'; storiesOf('Text', module) .add('with regular text', () => (<Text>Hello Text</Text>)) .add('with some emoji', () => (<Text>😀 😎 👍 💯</Text>));
ajax/libs/ember-data.js/1.0.0-beta.11/ember-data.prod.js
kentucky-roberts/cdnjs
(function(global){ var define, requireModule, require, requirejs; (function() { var _isArray; if (!Array.isArray) { _isArray = function (x) { return Object.prototype.toString.call(x) === "[object Array]"; }; } else { _isArray = Array.isArray; } var registry = {}, seen = {}, state = {}; var FAILED = false; define = function(name, deps, callback) { if (!_isArray(deps)) { callback = deps; deps = []; } registry[name] = { deps: deps, callback: callback }; }; function reify(deps, name, seen) { var length = deps.length; var reified = new Array(length); var dep; var exports; for (var i = 0, l = length; i < l; i++) { dep = deps[i]; if (dep === 'exports') { exports = reified[i] = seen; } else { reified[i] = require(resolve(dep, name)); } } return { deps: reified, exports: exports }; } requirejs = require = requireModule = function(name) { if (state[name] !== FAILED && seen.hasOwnProperty(name)) { return seen[name]; } if (!registry[name]) { throw new Error('Could not find module ' + name); } var mod = registry[name]; var reified; var module; var loaded = false; seen[name] = { }; // placeholder for run-time cycles try { reified = reify(mod.deps, name, seen[name]); module = mod.callback.apply(this, reified.deps); loaded = true; } finally { if (!loaded) { state[name] = FAILED; } } return reified.exports ? seen[name] : (seen[name] = module); }; function resolve(child, name) { if (child.charAt(0) !== '.') { return child; } var parts = child.split('/'); var nameParts = name.split('/'); var parentBase; if (nameParts.length === 1) { parentBase = nameParts; } else { parentBase = nameParts.slice(0, -1); } for (var i = 0, l = parts.length; i < l; i++) { var part = parts[i]; if (part === '..') { parentBase.pop(); } else if (part === '.') { continue; } else { parentBase.push(part); } } return parentBase.join('/'); } requirejs.entries = requirejs._eak_seen = registry; requirejs.clear = function(){ requirejs.entries = requirejs._eak_seen = registry = {}; seen = state = {}; }; })(); define("activemodel-adapter", ["activemodel-adapter/system","exports"], function(__dependency1__, __exports__) { "use strict"; var ActiveModelAdapter = __dependency1__.ActiveModelAdapter; var ActiveModelSerializer = __dependency1__.ActiveModelSerializer; __exports__.ActiveModelAdapter = ActiveModelAdapter; __exports__.ActiveModelSerializer = ActiveModelSerializer; }); define("activemodel-adapter/setup-container", ["ember-data/system/container_proxy","activemodel-adapter/system/active_model_serializer","activemodel-adapter/system/active_model_adapter","exports"], function(__dependency1__, __dependency2__, __dependency3__, __exports__) { "use strict"; var ContainerProxy = __dependency1__["default"]; var ActiveModelSerializer = __dependency2__["default"]; var ActiveModelAdapter = __dependency3__["default"]; __exports__["default"] = function setupActiveModelAdapter(container, application){ var proxy = new ContainerProxy(container); proxy.registerDeprecations([ { deprecated: 'serializer:_ams', valid: 'serializer:-active-model' }, { deprecated: 'adapter:_ams', valid: 'adapter:-active-model' } ]); container.register('serializer:-active-model', ActiveModelSerializer); container.register('adapter:-active-model', ActiveModelAdapter); }; }); define("activemodel-adapter/system", ["activemodel-adapter/system/active_model_adapter","activemodel-adapter/system/active_model_serializer","exports"], function(__dependency1__, __dependency2__, __exports__) { "use strict"; var ActiveModelAdapter = __dependency1__["default"]; var ActiveModelSerializer = __dependency2__["default"]; __exports__.ActiveModelAdapter = ActiveModelAdapter; __exports__.ActiveModelSerializer = ActiveModelSerializer; }); define("activemodel-adapter/system/active_model_adapter", ["ember-data/adapters","ember-data/system/adapter","ember-inflector","exports"], function(__dependency1__, __dependency2__, __dependency3__, __exports__) { "use strict"; var RESTAdapter = __dependency1__.RESTAdapter; var InvalidError = __dependency2__.InvalidError; var pluralize = __dependency3__.pluralize; /** @module ember-data */ var forEach = Ember.EnumerableUtils.forEach; var decamelize = Ember.String.decamelize, underscore = Ember.String.underscore; /** The ActiveModelAdapter is a subclass of the RESTAdapter designed to integrate with a JSON API that uses an underscored naming convention instead of camelCasing. It has been designed to work out of the box with the [active_model_serializers](http://github.com/rails-api/active_model_serializers) Ruby gem. This Adapter expects specific settings using ActiveModel::Serializers, `embed :ids, include: true` which sideloads the records. This adapter extends the DS.RESTAdapter by making consistent use of the camelization, decamelization and pluralization methods to normalize the serialized JSON into a format that is compatible with a conventional Rails backend and Ember Data. ## JSON Structure The ActiveModelAdapter expects the JSON returned from your server to follow the REST adapter conventions substituting underscored keys for camelcased ones. Unlike the DS.RESTAdapter, async relationship keys must be the singular form of the relationship name, followed by "_id" for DS.belongsTo relationships, or "_ids" for DS.hasMany relationships. ### Conventional Names Attribute names in your JSON payload should be the underscored versions of the attributes in your Ember.js models. For example, if you have a `Person` model: ```js App.FamousPerson = DS.Model.extend({ firstName: DS.attr('string'), lastName: DS.attr('string'), occupation: DS.attr('string') }); ``` The JSON returned should look like this: ```js { "famous_person": { "id": 1, "first_name": "Barack", "last_name": "Obama", "occupation": "President" } } ``` Let's imagine that `Occupation` is just another model: ```js App.Person = DS.Model.extend({ firstName: DS.attr('string'), lastName: DS.attr('string'), occupation: DS.belongsTo('occupation') }); App.Occupation = DS.Model.extend({ name: DS.attr('string'), salary: DS.attr('number'), people: DS.hasMany('person') }); ``` The JSON needed to avoid extra server calls, should look like this: ```js { "people": [{ "id": 1, "first_name": "Barack", "last_name": "Obama", "occupation_id": 1 }], "occupations": [{ "id": 1, "name": "President", "salary": 100000, "person_ids": [1] }] } ``` @class ActiveModelAdapter @constructor @namespace DS @extends DS.RESTAdapter **/ var ActiveModelAdapter = RESTAdapter.extend({ defaultSerializer: '-active-model', /** The ActiveModelAdapter overrides the `pathForType` method to build underscored URLs by decamelizing and pluralizing the object type name. ```js this.pathForType("famousPerson"); //=> "famous_people" ``` @method pathForType @param {String} type @return String */ pathForType: function(type) { var decamelized = decamelize(type); var underscored = underscore(decamelized); return pluralize(underscored); }, /** The ActiveModelAdapter overrides the `ajaxError` method to return a DS.InvalidError for all 422 Unprocessable Entity responses. A 422 HTTP response from the server generally implies that the request was well formed but the API was unable to process it because the content was not semantically correct or meaningful per the API. For more information on 422 HTTP Error code see 11.2 WebDAV RFC 4918 https://tools.ietf.org/html/rfc4918#section-11.2 @method ajaxError @param {Object} jqXHR @return error */ ajaxError: function(jqXHR) { var error = this._super(jqXHR); if (jqXHR && jqXHR.status === 422) { var response = Ember.$.parseJSON(jqXHR.responseText), errors = {}; if (response.errors !== undefined) { var jsonErrors = response.errors; forEach(Ember.keys(jsonErrors), function(key) { errors[Ember.String.camelize(key)] = jsonErrors[key]; }); } return new InvalidError(errors); } else { return error; } } }); __exports__["default"] = ActiveModelAdapter; }); define("activemodel-adapter/system/active_model_serializer", ["ember-inflector","ember-data/serializers/rest_serializer","exports"], function(__dependency1__, __dependency2__, __exports__) { "use strict"; var singularize = __dependency1__.singularize; var RESTSerializer = __dependency2__["default"]; /** @module ember-data */ var get = Ember.get, forEach = Ember.EnumerableUtils.forEach, camelize = Ember.String.camelize, capitalize = Ember.String.capitalize, decamelize = Ember.String.decamelize, underscore = Ember.String.underscore; /** The ActiveModelSerializer is a subclass of the RESTSerializer designed to integrate with a JSON API that uses an underscored naming convention instead of camelCasing. It has been designed to work out of the box with the [active_model_serializers](http://github.com/rails-api/active_model_serializers) Ruby gem. This Serializer expects specific settings using ActiveModel::Serializers, `embed :ids, include: true` which sideloads the records. This serializer extends the DS.RESTSerializer by making consistent use of the camelization, decamelization and pluralization methods to normalize the serialized JSON into a format that is compatible with a conventional Rails backend and Ember Data. ## JSON Structure The ActiveModelSerializer expects the JSON returned from your server to follow the REST adapter conventions substituting underscored keys for camelcased ones. ### Conventional Names Attribute names in your JSON payload should be the underscored versions of the attributes in your Ember.js models. For example, if you have a `Person` model: ```js App.FamousPerson = DS.Model.extend({ firstName: DS.attr('string'), lastName: DS.attr('string'), occupation: DS.attr('string') }); ``` The JSON returned should look like this: ```js { "famous_person": { "id": 1, "first_name": "Barack", "last_name": "Obama", "occupation": "President" } } ``` Let's imagine that `Occupation` is just another model: ```js App.Person = DS.Model.extend({ firstName: DS.attr('string'), lastName: DS.attr('string'), occupation: DS.belongsTo('occupation') }); App.Occupation = DS.Model.extend({ name: DS.attr('string'), salary: DS.attr('number'), people: DS.hasMany('person') }); ``` The JSON needed to avoid extra server calls, should look like this: ```js { "people": [{ "id": 1, "first_name": "Barack", "last_name": "Obama", "occupation_id": 1 }], "occupations": [{ "id": 1, "name": "President", "salary": 100000, "person_ids": [1] }] } ``` @class ActiveModelSerializer @namespace DS @extends DS.RESTSerializer */ var ActiveModelSerializer = RESTSerializer.extend({ // SERIALIZE /** Converts camelCased attributes to underscored when serializing. @method keyForAttribute @param {String} attribute @return String */ keyForAttribute: function(attr) { return decamelize(attr); }, /** Underscores relationship names and appends "_id" or "_ids" when serializing relationship keys. @method keyForRelationship @param {String} key @param {String} kind @return String */ keyForRelationship: function(rawKey, kind) { var key = decamelize(rawKey); if (kind === "belongsTo") { return key + "_id"; } else if (kind === "hasMany") { return singularize(key) + "_ids"; } else { return key; } }, /* Does not serialize hasMany relationships by default. */ serializeHasMany: Ember.K, /** Underscores the JSON root keys when serializing. @method serializeIntoHash @param {Object} hash @param {subclass of DS.Model} type @param {DS.Model} record @param {Object} options */ serializeIntoHash: function(data, type, record, options) { var root = underscore(decamelize(type.typeKey)); data[root] = this.serialize(record, options); }, /** Serializes a polymorphic type as a fully capitalized model name. @method serializePolymorphicType @param {DS.Model} record @param {Object} json @param {Object} relationship */ serializePolymorphicType: function(record, json, relationship) { var key = relationship.key; var belongsTo = get(record, key); var jsonKey = underscore(key + "_type"); if (Ember.isNone(belongsTo)) { json[jsonKey] = null; } else { json[jsonKey] = capitalize(camelize(belongsTo.constructor.typeKey)); } }, // EXTRACT /** Add extra step to `DS.RESTSerializer.normalize` so links are normalized. If your payload looks like: ```js { "post": { "id": 1, "title": "Rails is omakase", "links": { "flagged_comments": "api/comments/flagged" } } } ``` The normalized version would look like this ```js { "post": { "id": 1, "title": "Rails is omakase", "links": { "flaggedComments": "api/comments/flagged" } } } ``` @method normalize @param {subclass of DS.Model} type @param {Object} hash @param {String} prop @return Object */ normalize: function(type, hash, prop) { this.normalizeLinks(hash); return this._super(type, hash, prop); }, /** Convert `snake_cased` links to `camelCase` @method normalizeLinks @param {Object} data */ normalizeLinks: function(data){ if (data.links) { var links = data.links; for (var link in links) { var camelizedLink = camelize(link); if (camelizedLink !== link) { links[camelizedLink] = links[link]; delete links[link]; } } } }, /** Normalize the polymorphic type from the JSON. Normalize: ```js { id: "1" minion: { type: "evil_minion", id: "12"} } ``` To: ```js { id: "1" minion: { type: "evilMinion", id: "12"} } ``` @method normalizeRelationships @private */ normalizeRelationships: function(type, hash) { if (this.keyForRelationship) { type.eachRelationship(function(key, relationship) { var payloadKey, payload; if (relationship.options.polymorphic) { payloadKey = this.keyForAttribute(key); payload = hash[payloadKey]; if (payload && payload.type) { payload.type = this.typeForRoot(payload.type); } else if (payload && relationship.kind === "hasMany") { var self = this; forEach(payload, function(single) { single.type = self.typeForRoot(single.type); }); } } else { payloadKey = this.keyForRelationship(key, relationship.kind); if (!hash.hasOwnProperty(payloadKey)) { return; } payload = hash[payloadKey]; } hash[key] = payload; if (key !== payloadKey) { delete hash[payloadKey]; } }, this); } } }); __exports__["default"] = ActiveModelSerializer; }); define("ember-data", ["ember-data/core","ember-data/ext/date","ember-data/system/promise_proxies","ember-data/system/store","ember-data/system/model","ember-data/system/adapter","ember-data/system/debug","ember-data/system/record_arrays","ember-data/system/record_array_manager","ember-data/adapters","ember-data/serializers/json_serializer","ember-data/serializers/rest_serializer","ember-inflector","ember-data/serializers/embedded_records_mixin","activemodel-adapter","ember-data/transforms","ember-data/system/relationships","ember-data/ember-initializer","ember-data/setup-container","ember-data/system/container_proxy","ember-data/system/relationships/relationship","exports"], function(__dependency1__, __dependency2__, __dependency3__, __dependency4__, __dependency5__, __dependency6__, __dependency7__, __dependency8__, __dependency9__, __dependency10__, __dependency11__, __dependency12__, __dependency13__, __dependency14__, __dependency15__, __dependency16__, __dependency17__, __dependency18__, __dependency19__, __dependency20__, __dependency21__, __exports__) { "use strict"; /** Ember Data @module ember-data @main ember-data */ // support RSVP 2.x via resolve, but prefer RSVP 3.x's Promise.cast Ember.RSVP.Promise.cast = Ember.RSVP.Promise.cast || Ember.RSVP.resolve; var DS = __dependency1__["default"]; var PromiseArray = __dependency3__.PromiseArray; var PromiseObject = __dependency3__.PromiseObject; var Store = __dependency4__.Store; var Model = __dependency5__.Model; var Errors = __dependency5__.Errors; var RootState = __dependency5__.RootState; var attr = __dependency5__.attr; var InvalidError = __dependency6__.InvalidError; var Adapter = __dependency6__.Adapter; var DebugAdapter = __dependency7__["default"]; var RecordArray = __dependency8__.RecordArray; var FilteredRecordArray = __dependency8__.FilteredRecordArray; var AdapterPopulatedRecordArray = __dependency8__.AdapterPopulatedRecordArray; var ManyArray = __dependency8__.ManyArray; var RecordArrayManager = __dependency9__["default"]; var RESTAdapter = __dependency10__.RESTAdapter; var FixtureAdapter = __dependency10__.FixtureAdapter; var JSONSerializer = __dependency11__["default"]; var RESTSerializer = __dependency12__["default"]; var EmbeddedRecordsMixin = __dependency14__["default"]; var ActiveModelAdapter = __dependency15__.ActiveModelAdapter; var ActiveModelSerializer = __dependency15__.ActiveModelSerializer; var Transform = __dependency16__.Transform; var DateTransform = __dependency16__.DateTransform; var NumberTransform = __dependency16__.NumberTransform; var StringTransform = __dependency16__.StringTransform; var BooleanTransform = __dependency16__.BooleanTransform; var hasMany = __dependency17__.hasMany; var belongsTo = __dependency17__.belongsTo; var setupContainer = __dependency19__["default"]; var ContainerProxy = __dependency20__["default"]; var Relationship = __dependency21__.Relationship; DS.Store = Store; DS.PromiseArray = PromiseArray; DS.PromiseObject = PromiseObject; DS.Model = Model; DS.RootState = RootState; DS.attr = attr; DS.Errors = Errors; DS.Adapter = Adapter; DS.InvalidError = InvalidError; DS.DebugAdapter = DebugAdapter; DS.RecordArray = RecordArray; DS.FilteredRecordArray = FilteredRecordArray; DS.AdapterPopulatedRecordArray = AdapterPopulatedRecordArray; DS.ManyArray = ManyArray; DS.RecordArrayManager = RecordArrayManager; DS.RESTAdapter = RESTAdapter; DS.FixtureAdapter = FixtureAdapter; DS.RESTSerializer = RESTSerializer; DS.JSONSerializer = JSONSerializer; DS.Transform = Transform; DS.DateTransform = DateTransform; DS.StringTransform = StringTransform; DS.NumberTransform = NumberTransform; DS.BooleanTransform = BooleanTransform; DS.ActiveModelAdapter = ActiveModelAdapter; DS.ActiveModelSerializer = ActiveModelSerializer; DS.EmbeddedRecordsMixin = EmbeddedRecordsMixin; DS.belongsTo = belongsTo; DS.hasMany = hasMany; DS.Relationship = Relationship; DS.ContainerProxy = ContainerProxy; DS._setupContainer = setupContainer; Ember.lookup.DS = DS; __exports__["default"] = DS; }); define("ember-data/adapters", ["ember-data/adapters/fixture_adapter","ember-data/adapters/rest_adapter","exports"], function(__dependency1__, __dependency2__, __exports__) { "use strict"; /** @module ember-data */ var FixtureAdapter = __dependency1__["default"]; var RESTAdapter = __dependency2__["default"]; __exports__.RESTAdapter = RESTAdapter; __exports__.FixtureAdapter = FixtureAdapter; }); define("ember-data/adapters/fixture_adapter", ["ember-data/system/adapter","exports"], function(__dependency1__, __exports__) { "use strict"; /** @module ember-data */ var get = Ember.get; var fmt = Ember.String.fmt; var indexOf = Ember.EnumerableUtils.indexOf; var counter = 0; var Adapter = __dependency1__["default"]; /** `DS.FixtureAdapter` is an adapter that loads records from memory. It's primarily used for development and testing. You can also use `DS.FixtureAdapter` while working on the API but is not ready to integrate yet. It is a fully functioning adapter. All CRUD methods are implemented. You can also implement query logic that a remote system would do. It's possible to develop your entire application with `DS.FixtureAdapter`. For information on how to use the `FixtureAdapter` in your application please see the [FixtureAdapter guide](/guides/models/the-fixture-adapter/). @class FixtureAdapter @namespace DS @extends DS.Adapter */ __exports__["default"] = Adapter.extend({ // by default, fixtures are already in normalized form serializer: null, /** If `simulateRemoteResponse` is `true` the `FixtureAdapter` will wait a number of milliseconds before resolving promises with the fixture values. The wait time can be configured via the `latency` property. @property simulateRemoteResponse @type {Boolean} @default true */ simulateRemoteResponse: true, /** By default the `FixtureAdapter` will simulate a wait of the `latency` milliseconds before resolving promises with the fixture values. This behavior can be turned off via the `simulateRemoteResponse` property. @property latency @type {Number} @default 50 */ latency: 50, /** Implement this method in order to provide data associated with a type @method fixturesForType @param {Subclass of DS.Model} type @return {Array} */ fixturesForType: function(type) { if (type.FIXTURES) { var fixtures = Ember.A(type.FIXTURES); return fixtures.map(function(fixture){ var fixtureIdType = typeof fixture.id; if(fixtureIdType !== "number" && fixtureIdType !== "string"){ throw new Error(fmt('the id property must be defined as a number or string for fixture %@', [fixture])); } fixture.id = fixture.id + ''; return fixture; }); } return null; }, /** Implement this method in order to query fixtures data @method queryFixtures @param {Array} fixture @param {Object} query @param {Subclass of DS.Model} type @return {Promise|Array} */ queryFixtures: function(fixtures, query, type) { }, /** @method updateFixtures @param {Subclass of DS.Model} type @param {Array} fixture */ updateFixtures: function(type, fixture) { if(!type.FIXTURES) { type.FIXTURES = []; } var fixtures = type.FIXTURES; this.deleteLoadedFixture(type, fixture); fixtures.push(fixture); }, /** Implement this method in order to provide json for CRUD methods @method mockJSON @param {Subclass of DS.Model} type @param {DS.Model} record */ mockJSON: function(store, type, record) { return store.serializerFor(type).serialize(record, { includeId: true }); }, /** @method generateIdForRecord @param {DS.Store} store @param {DS.Model} record @return {String} id */ generateIdForRecord: function(store) { return "fixture-" + counter++; }, /** @method find @param {DS.Store} store @param {subclass of DS.Model} type @param {String} id @return {Promise} promise */ find: function(store, type, id) { var fixtures = this.fixturesForType(type); var fixture; if (fixtures) { fixture = Ember.A(fixtures).findBy('id', id); } if (fixture) { return this.simulateRemoteCall(function() { return fixture; }, this); } }, /** @method findMany @param {DS.Store} store @param {subclass of DS.Model} type @param {Array} ids @return {Promise} promise */ findMany: function(store, type, ids) { var fixtures = this.fixturesForType(type); if (fixtures) { fixtures = fixtures.filter(function(item) { return indexOf(ids, item.id) !== -1; }); } if (fixtures) { return this.simulateRemoteCall(function() { return fixtures; }, this); } }, /** @private @method findAll @param {DS.Store} store @param {subclass of DS.Model} type @param {String} sinceToken @return {Promise} promise */ findAll: function(store, type) { var fixtures = this.fixturesForType(type); return this.simulateRemoteCall(function() { return fixtures; }, this); }, /** @private @method findQuery @param {DS.Store} store @param {subclass of DS.Model} type @param {Object} query @param {DS.AdapterPopulatedRecordArray} recordArray @return {Promise} promise */ findQuery: function(store, type, query, array) { var fixtures = this.fixturesForType(type); fixtures = this.queryFixtures(fixtures, query, type); if (fixtures) { return this.simulateRemoteCall(function() { return fixtures; }, this); } }, /** @method createRecord @param {DS.Store} store @param {subclass of DS.Model} type @param {DS.Model} record @return {Promise} promise */ createRecord: function(store, type, record) { var fixture = this.mockJSON(store, type, record); this.updateFixtures(type, fixture); return this.simulateRemoteCall(function() { return fixture; }, this); }, /** @method updateRecord @param {DS.Store} store @param {subclass of DS.Model} type @param {DS.Model} record @return {Promise} promise */ updateRecord: function(store, type, record) { var fixture = this.mockJSON(store, type, record); this.updateFixtures(type, fixture); return this.simulateRemoteCall(function() { return fixture; }, this); }, /** @method deleteRecord @param {DS.Store} store @param {subclass of DS.Model} type @param {DS.Model} record @return {Promise} promise */ deleteRecord: function(store, type, record) { this.deleteLoadedFixture(type, record); return this.simulateRemoteCall(function() { // no payload in a deletion return null; }); }, /* @method deleteLoadedFixture @private @param type @param record */ deleteLoadedFixture: function(type, record) { var existingFixture = this.findExistingFixture(type, record); if (existingFixture) { var index = indexOf(type.FIXTURES, existingFixture); type.FIXTURES.splice(index, 1); return true; } }, /* @method findExistingFixture @private @param type @param record */ findExistingFixture: function(type, record) { var fixtures = this.fixturesForType(type); var id = get(record, 'id'); return this.findFixtureById(fixtures, id); }, /* @method findFixtureById @private @param fixtures @param id */ findFixtureById: function(fixtures, id) { return Ember.A(fixtures).find(function(r) { if (''+get(r, 'id') === ''+id) { return true; } else { return false; } }); }, /* @method simulateRemoteCall @private @param callback @param context */ simulateRemoteCall: function(callback, context) { var adapter = this; return new Ember.RSVP.Promise(function(resolve) { var value = Ember.copy(callback.call(context), true); if (get(adapter, 'simulateRemoteResponse')) { // Schedule with setTimeout Ember.run.later(function() { resolve(value); }, get(adapter, 'latency')); } else { // Asynchronous, but at the of the runloop with zero latency Ember.run.schedule('actions', null, function() { resolve(value); }); } }, "DS: FixtureAdapter#simulateRemoteCall"); } }); }); define("ember-data/adapters/rest_adapter", ["ember-data/system/adapter","ember-data/system/map","exports"], function(__dependency1__, __dependency2__, __exports__) { "use strict"; /** @module ember-data */ var Adapter = __dependency1__.Adapter; var InvalidError = __dependency1__.InvalidError; var MapWithDefault = __dependency2__.MapWithDefault; var get = Ember.get; var forEach = Ember.ArrayPolyfills.forEach; /** The REST adapter allows your store to communicate with an HTTP server by transmitting JSON via XHR. Most Ember.js apps that consume a JSON API should use the REST adapter. This adapter is designed around the idea that the JSON exchanged with the server should be conventional. ## JSON Structure The REST adapter expects the JSON returned from your server to follow these conventions. ### Object Root The JSON payload should be an object that contains the record inside a root property. For example, in response to a `GET` request for `/posts/1`, the JSON should look like this: ```js { "post": { "id": 1, "title": "I'm Running to Reform the W3C's Tag", "author": "Yehuda Katz" } } ``` Similarly, in response to a `GET` request for `/posts`, the JSON should look like this: ```js { "posts": [ { "id": 1, "title": "I'm Running to Reform the W3C's Tag", "author": "Yehuda Katz" }, { "id": 2, "title": "Rails is omakase", "author": "D2H" } ] } ``` ### Conventional Names Attribute names in your JSON payload should be the camelCased versions of the attributes in your Ember.js models. For example, if you have a `Person` model: ```js App.Person = DS.Model.extend({ firstName: DS.attr('string'), lastName: DS.attr('string'), occupation: DS.attr('string') }); ``` The JSON returned should look like this: ```js { "person": { "id": 5, "firstName": "Barack", "lastName": "Obama", "occupation": "President" } } ``` ## Customization ### Endpoint path customization Endpoint paths can be prefixed with a `namespace` by setting the namespace property on the adapter: ```js DS.RESTAdapter.reopen({ namespace: 'api/1' }); ``` Requests for `App.Person` would now target `/api/1/people/1`. ### Host customization An adapter can target other hosts by setting the `host` property. ```js DS.RESTAdapter.reopen({ host: 'https://api.example.com' }); ``` ### Headers customization Some APIs require HTTP headers, e.g. to provide an API key. Arbitrary headers can be set as key/value pairs on the `RESTAdapter`'s `headers` object and Ember Data will send them along with each ajax request. ```js App.ApplicationAdapter = DS.RESTAdapter.extend({ headers: { "API_KEY": "secret key", "ANOTHER_HEADER": "Some header value" } }); ``` `headers` can also be used as a computed property to support dynamic headers. In the example below, the `session` object has been injected into an adapter by Ember's container. ```js App.ApplicationAdapter = DS.RESTAdapter.extend({ headers: function() { return { "API_KEY": this.get("session.authToken"), "ANOTHER_HEADER": "Some header value" }; }.property("session.authToken") }); ``` In some cases, your dynamic headers may require data from some object outside of Ember's observer system (for example `document.cookie`). You can use the [volatile](/api/classes/Ember.ComputedProperty.html#method_volatile) function to set the property into a non-cached mode causing the headers to be recomputed with every request. ```js App.ApplicationAdapter = DS.RESTAdapter.extend({ headers: function() { return { "API_KEY": Ember.get(document.cookie.match(/apiKey\=([^;]*)/), "1"), "ANOTHER_HEADER": "Some header value" }; }.property().volatile() }); ``` @class RESTAdapter @constructor @namespace DS @extends DS.Adapter */ __exports__["default"] = Adapter.extend({ defaultSerializer: '-rest', /** By default the RESTAdapter will send each find request coming from a `store.find` or from accessing a relationship separately to the server. If your server supports passing ids as a query string, you can set coalesceFindRequests to true to coalesce all find requests within a single runloop. For example, if you have an initial payload of ```javascript post: { id:1, comments: [1,2] } ``` By default calling `post.get('comments')` will trigger the following requests(assuming the comments haven't been loaded before): ``` GET /comments/1 GET /comments/2 ``` If you set coalesceFindRequests to `true` it will instead trigger the following request: ``` GET /comments?ids[]=1&ids[]=2 ``` Setting coalesceFindRequests to `true` also works for `store.find` requests and `belongsTo` relationships accessed within the same runloop. If you set `coalesceFindRequests: true` ```javascript store.find('comment', 1); store.find('comment', 2); ``` will also send a request to: `GET /comments?ids[]=1&ids[]=2` Note: Requests coalescing rely on URL building strategy. So if you override `buildUrl` in your app `groupRecordsForFindMany` more likely should be overriden as well in order for coalescing to work. @property coalesceFindRequests @type {boolean} */ coalesceFindRequests: false, /** Endpoint paths can be prefixed with a `namespace` by setting the namespace property on the adapter: ```javascript DS.RESTAdapter.reopen({ namespace: 'api/1' }); ``` Requests for `App.Post` would now target `/api/1/post/`. @property namespace @type {String} */ /** An adapter can target other hosts by setting the `host` property. ```javascript DS.RESTAdapter.reopen({ host: 'https://api.example.com' }); ``` Requests for `App.Post` would now target `https://api.example.com/post/`. @property host @type {String} */ /** Some APIs require HTTP headers, e.g. to provide an API key. Arbitrary headers can be set as key/value pairs on the `RESTAdapter`'s `headers` object and Ember Data will send them along with each ajax request. For dynamic headers see [headers customization](/api/data/classes/DS.RESTAdapter.html#toc_headers-customization). ```javascript App.ApplicationAdapter = DS.RESTAdapter.extend({ headers: { "API_KEY": "secret key", "ANOTHER_HEADER": "Some header value" } }); ``` @property headers @type {Object} */ /** Called by the store in order to fetch the JSON for a given type and ID. The `find` method makes an Ajax request to a URL computed by `buildURL`, and returns a promise for the resulting payload. This method performs an HTTP `GET` request with the id provided as part of the query string. @method find @param {DS.Store} store @param {subclass of DS.Model} type @param {String} id @param {DS.Model} record @return {Promise} promise */ find: function(store, type, id, record) { return this.ajax(this.buildURL(type.typeKey, id, record), 'GET'); }, /** Called by the store in order to fetch a JSON array for all of the records for a given type. The `findAll` method makes an Ajax (HTTP GET) request to a URL computed by `buildURL`, and returns a promise for the resulting payload. @private @method findAll @param {DS.Store} store @param {subclass of DS.Model} type @param {String} sinceToken @return {Promise} promise */ findAll: function(store, type, sinceToken) { var query; if (sinceToken) { query = { since: sinceToken }; } return this.ajax(this.buildURL(type.typeKey), 'GET', { data: query }); }, /** Called by the store in order to fetch a JSON array for the records that match a particular query. The `findQuery` method makes an Ajax (HTTP GET) request to a URL computed by `buildURL`, and returns a promise for the resulting payload. The `query` argument is a simple JavaScript object that will be passed directly to the server as parameters. @private @method findQuery @param {DS.Store} store @param {subclass of DS.Model} type @param {Object} query @return {Promise} promise */ findQuery: function(store, type, query) { return this.ajax(this.buildURL(type.typeKey), 'GET', { data: query }); }, /** Called by the store in order to fetch several records together if `coalesceFindRequests` is true For example, if the original payload looks like: ```js { "id": 1, "title": "Rails is omakase", "comments": [ 1, 2, 3 ] } ``` The IDs will be passed as a URL-encoded Array of IDs, in this form: ``` ids[]=1&ids[]=2&ids[]=3 ``` Many servers, such as Rails and PHP, will automatically convert this URL-encoded array into an Array for you on the server-side. If you want to encode the IDs, differently, just override this (one-line) method. The `findMany` method makes an Ajax (HTTP GET) request to a URL computed by `buildURL`, and returns a promise for the resulting payload. @method findMany @param {DS.Store} store @param {subclass of DS.Model} type @param {Array} ids @param {Array} records @return {Promise} promise */ findMany: function(store, type, ids, records) { return this.ajax(this.buildURL(type.typeKey, ids, records), 'GET', { data: { ids: ids } }); }, /** Called by the store in order to fetch a JSON array for the unloaded records in a has-many relationship that were originally specified as a URL (inside of `links`). For example, if your original payload looks like this: ```js { "post": { "id": 1, "title": "Rails is omakase", "links": { "comments": "/posts/1/comments" } } } ``` This method will be called with the parent record and `/posts/1/comments`. The `findHasMany` method will make an Ajax (HTTP GET) request to the originally specified URL. If the URL is host-relative (starting with a single slash), the request will use the host specified on the adapter (if any). @method findHasMany @param {DS.Store} store @param {DS.Model} record @param {String} url @return {Promise} promise */ findHasMany: function(store, record, url, relationship) { var host = get(this, 'host'); var id = get(record, 'id'); var type = record.constructor.typeKey; if (host && url.charAt(0) === '/' && url.charAt(1) !== '/') { url = host + url; } return this.ajax(this.urlPrefix(url, this.buildURL(type, id)), 'GET'); }, /** Called by the store in order to fetch a JSON array for the unloaded records in a belongs-to relationship that were originally specified as a URL (inside of `links`). For example, if your original payload looks like this: ```js { "person": { "id": 1, "name": "Tom Dale", "links": { "group": "/people/1/group" } } } ``` This method will be called with the parent record and `/people/1/group`. The `findBelongsTo` method will make an Ajax (HTTP GET) request to the originally specified URL. @method findBelongsTo @param {DS.Store} store @param {DS.Model} record @param {String} url @return {Promise} promise */ findBelongsTo: function(store, record, url, relationship) { var id = get(record, 'id'); var type = record.constructor.typeKey; return this.ajax(this.urlPrefix(url, this.buildURL(type, id)), 'GET'); }, /** Called by the store when a newly created record is saved via the `save` method on a model record instance. The `createRecord` method serializes the record and makes an Ajax (HTTP POST) request to a URL computed by `buildURL`. See `serialize` for information on how to customize the serialized form of a record. @method createRecord @param {DS.Store} store @param {subclass of DS.Model} type @param {DS.Model} record @return {Promise} promise */ createRecord: function(store, type, record) { var data = {}; var serializer = store.serializerFor(type.typeKey); serializer.serializeIntoHash(data, type, record, { includeId: true }); return this.ajax(this.buildURL(type.typeKey, null, record), "POST", { data: data }); }, /** Called by the store when an existing record is saved via the `save` method on a model record instance. The `updateRecord` method serializes the record and makes an Ajax (HTTP PUT) request to a URL computed by `buildURL`. See `serialize` for information on how to customize the serialized form of a record. @method updateRecord @param {DS.Store} store @param {subclass of DS.Model} type @param {DS.Model} record @return {Promise} promise */ updateRecord: function(store, type, record) { var data = {}; var serializer = store.serializerFor(type.typeKey); serializer.serializeIntoHash(data, type, record); var id = get(record, 'id'); return this.ajax(this.buildURL(type.typeKey, id, record), "PUT", { data: data }); }, /** Called by the store when a record is deleted. The `deleteRecord` method makes an Ajax (HTTP DELETE) request to a URL computed by `buildURL`. @method deleteRecord @param {DS.Store} store @param {subclass of DS.Model} type @param {DS.Model} record @return {Promise} promise */ deleteRecord: function(store, type, record) { var id = get(record, 'id'); return this.ajax(this.buildURL(type.typeKey, id, record), "DELETE"); }, /** Builds a URL for a given type and optional ID. By default, it pluralizes the type's name (for example, 'post' becomes 'posts' and 'person' becomes 'people'). To override the pluralization see [pathForType](#method_pathForType). If an ID is specified, it adds the ID to the path generated for the type, separated by a `/`. @method buildURL @param {String} type @param {String} id @param {DS.Model} record @return {String} url */ buildURL: function(type, id, record) { var url = [], host = get(this, 'host'), prefix = this.urlPrefix(); if (type) { url.push(this.pathForType(type)); } //We might get passed in an array of ids from findMany //in which case we don't want to modify the url, as the //ids will be passed in through a query param if (id && !Ember.isArray(id)) { url.push(encodeURIComponent(id)); } if (prefix) { url.unshift(prefix); } url = url.join('/'); if (!host && url) { url = '/' + url; } return url; }, /** @method urlPrefix @private @param {String} path @param {String} parentUrl @return {String} urlPrefix */ urlPrefix: function(path, parentURL) { var host = get(this, 'host'); var namespace = get(this, 'namespace'); var url = []; if (path) { // Absolute path if (path.charAt(0) === '/') { if (host) { path = path.slice(1); url.push(host); } // Relative path } else if (!/^http(s)?:\/\//.test(path)) { url.push(parentURL); } } else { if (host) { url.push(host); } if (namespace) { url.push(namespace); } } if (path) { url.push(path); } return url.join('/'); }, _stripIDFromURL: function(store, record) { var type = store.modelFor(record); var url = this.buildURL(type.typeKey, record.get('id'), record); var expandedURL = url.split('/'); //Case when the url is of the format ...something/:id var lastSegment = expandedURL[ expandedURL.length - 1 ]; var id = record.get('id'); if (lastSegment === id) { expandedURL[expandedURL.length - 1] = ""; } else if(endsWith(lastSegment, '?id=' + id)) { //Case when the url is of the format ...something?id=:id expandedURL[expandedURL.length - 1] = lastSegment.substring(0, lastSegment.length - id.length - 1); } return expandedURL.join('/'); }, /** Organize records into groups, each of which is to be passed to separate calls to `findMany`. This implementation groups together records that have the same base URL but differing ids. For example `/comments/1` and `/comments/2` will be grouped together because we know findMany can coalesce them together as `/comments?ids[]=1&ids[]=2` It also supports urls where ids are passed as a query param, such as `/comments?id=1` but not those where there is more than 1 query param such as `/comments?id=2&name=David` Currently only the query param of `id` is supported. If you need to support others, please override this or the `_stripIDFromURL` method. It does not group records that have differing base urls, such as for example: `/posts/1/comments/2` and `/posts/2/comments/3` @method groupRecordsForFindMany @param {Array} records @return {Array} an array of arrays of records, each of which is to be loaded separately by `findMany`. */ groupRecordsForFindMany: function (store, records) { var groups = MapWithDefault.create({defaultValue: function(){return [];}}); var adapter = this; forEach.call(records, function(record){ var baseUrl = adapter._stripIDFromURL(store, record); groups.get(baseUrl).push(record); }); function splitGroupToFitInUrl(group, maxUrlLength) { var baseUrl = adapter._stripIDFromURL(store, group[0]); var idsSize = 0; var splitGroups = [[]]; forEach.call(group, function(record) { var additionalLength = '&ids[]='.length + record.get('id.length'); if (baseUrl.length + idsSize + additionalLength >= maxUrlLength) { idsSize = 0; splitGroups.push([]); } idsSize += additionalLength; var lastGroupIndex = splitGroups.length - 1; splitGroups[lastGroupIndex].push(record); }); return splitGroups; } var groupsArray = []; groups.forEach(function(group, key){ // http://stackoverflow.com/questions/417142/what-is-the-maximum-length-of-a-url-in-different-browsers var maxUrlLength = 2048; var splitGroups = splitGroupToFitInUrl(group, maxUrlLength); forEach.call(splitGroups, function(splitGroup) { groupsArray.push(splitGroup); }); }); return groupsArray; }, /** Determines the pathname for a given type. By default, it pluralizes the type's name (for example, 'post' becomes 'posts' and 'person' becomes 'people'). ### Pathname customization For example if you have an object LineItem with an endpoint of "/line_items/". ```js App.ApplicationAdapter = DS.RESTAdapter.extend({ pathForType: function(type) { var decamelized = Ember.String.decamelize(type); return Ember.String.pluralize(decamelized); } }); ``` @method pathForType @param {String} type @return {String} path **/ pathForType: function(type) { var camelized = Ember.String.camelize(type); return Ember.String.pluralize(camelized); }, /** Takes an ajax response, and returns a relevant error. Returning a `DS.InvalidError` from this method will cause the record to transition into the `invalid` state and make the `errors` object available on the record. ```javascript App.ApplicationAdapter = DS.RESTAdapter.extend({ ajaxError: function(jqXHR) { var error = this._super(jqXHR); if (jqXHR && jqXHR.status === 422) { var jsonErrors = Ember.$.parseJSON(jqXHR.responseText)["errors"]; return new DS.InvalidError(jsonErrors); } else { return error; } } }); ``` Note: As a correctness optimization, the default implementation of the `ajaxError` method strips out the `then` method from jquery's ajax response (jqXHR). This is important because the jqXHR's `then` method fulfills the promise with itself resulting in a circular "thenable" chain which may cause problems for some promise libraries. @method ajaxError @param {Object} jqXHR @param {Object} responseText @return {Object} jqXHR */ ajaxError: function(jqXHR, responseText) { if (jqXHR && typeof jqXHR === 'object') { jqXHR.then = null; } return jqXHR; }, /** Takes an ajax response, and returns the json payload. By default this hook just returns the jsonPayload passed to it. You might want to override it in two cases: 1. Your API might return useful results in the request headers. If you need to access these, you can override this hook to copy them from jqXHR to the payload object so they can be processed in you serializer. 2. Your API might return errors as successful responses with status code 200 and an Errors text or object. You can return a DS.InvalidError from this hook and it will automatically reject the promise and put your record into the invald state. @method ajaxError @param {Object} jqXHR @param {Object} jsonPayload @return {Object} jqXHR */ ajaxSuccess: function(jqXHR, jsonPayload) { return jsonPayload; }, /** Takes a URL, an HTTP method and a hash of data, and makes an HTTP request. When the server responds with a payload, Ember Data will call into `extractSingle` or `extractArray` (depending on whether the original query was for one record or many records). By default, `ajax` method has the following behavior: * It sets the response `dataType` to `"json"` * If the HTTP method is not `"GET"`, it sets the `Content-Type` to be `application/json; charset=utf-8` * If the HTTP method is not `"GET"`, it stringifies the data passed in. The data is the serialized record in the case of a save. * Registers success and failure handlers. @method ajax @private @param {String} url @param {String} type The request type GET, POST, PUT, DELETE etc. @param {Object} hash @return {Promise} promise */ ajax: function(url, type, options) { var adapter = this; return new Ember.RSVP.Promise(function(resolve, reject) { var hash = adapter.ajaxOptions(url, type, options); hash.success = function(json, textStatus, jqXHR) { json = adapter.ajaxSuccess(jqXHR, json); if (json instanceof InvalidError) { Ember.run(null, reject, json); } else { Ember.run(null, resolve, json); } }; hash.error = function(jqXHR, textStatus, errorThrown) { Ember.run(null, reject, adapter.ajaxError(jqXHR, jqXHR.responseText)); }; Ember.$.ajax(hash); }, "DS: RESTAdapter#ajax " + type + " to " + url); }, /** @method ajaxOptions @private @param {String} url @param {String} type The request type GET, POST, PUT, DELETE etc. @param {Object} hash @return {Object} hash */ ajaxOptions: function(url, type, options) { var hash = options || {}; hash.url = url; hash.type = type; hash.dataType = 'json'; hash.context = this; if (hash.data && type !== 'GET') { hash.contentType = 'application/json; charset=utf-8'; hash.data = JSON.stringify(hash.data); } var headers = get(this, 'headers'); if (headers !== undefined) { hash.beforeSend = function (xhr) { forEach.call(Ember.keys(headers), function(key) { xhr.setRequestHeader(key, headers[key]); }); }; } return hash; } }); //From http://stackoverflow.com/questions/280634/endswith-in-javascript function endsWith(string, suffix){ if (typeof String.prototype.endsWith !== 'function') { return string.indexOf(suffix, string.length - suffix.length) !== -1; } else { return string.endsWith(suffix); } } }); define("ember-data/core", ["exports"], function(__exports__) { "use strict"; /** @module ember-data */ /** All Ember Data methods and functions are defined inside of this namespace. @class DS @static */ var DS; if ('undefined' === typeof DS) { /** @property VERSION @type String @default '1.0.0-beta.11' @static */ DS = Ember.Namespace.create({ VERSION: '1.0.0-beta.11' }); if (Ember.libraries) { Ember.libraries.registerCoreLibrary('Ember Data', DS.VERSION); } } __exports__["default"] = DS; }); define("ember-data/ember-initializer", ["ember-data/setup-container"], function(__dependency1__) { "use strict"; var setupContainer = __dependency1__["default"]; var K = Ember.K; /** @module ember-data */ /* This code initializes Ember-Data onto an Ember application. If an Ember.js developer defines a subclass of DS.Store on their application, as `App.ApplicationStore` (or via a module system that resolves to `store:application`) this code will automatically instantiate it and make it available on the router. Additionally, after an application's controllers have been injected, they will each have the store made available to them. For example, imagine an Ember.js application with the following classes: App.ApplicationStore = DS.Store.extend({ adapter: 'custom' }); App.PostsController = Ember.ArrayController.extend({ // ... }); When the application is initialized, `App.ApplicationStore` will automatically be instantiated, and the instance of `App.PostsController` will have its `store` property set to that instance. Note that this code will only be run if the `ember-application` package is loaded. If Ember Data is being used in an environment other than a typical application (e.g., node.js where only `ember-runtime` is available), this code will be ignored. */ Ember.onLoad('Ember.Application', function(Application) { Application.initializer({ name: "ember-data", initialize: setupContainer }); // Deprecated initializers to satisfy old code that depended on them Application.initializer({ name: "store", after: "ember-data", initialize: K }); Application.initializer({ name: "activeModelAdapter", before: "store", initialize: K }); Application.initializer({ name: "transforms", before: "store", initialize: K }); Application.initializer({ name: "data-adapter", before: "store", initialize: K }); Application.initializer({ name: "injectStore", before: "store", initialize: K }); }); }); define("ember-data/ext/date", [], function() { "use strict"; /** @module ember-data */ /** Date.parse with progressive enhancement for ISO 8601 <https://github.com/csnover/js-iso8601> © 2011 Colin Snover <http://zetafleet.com> Released under MIT license. @class Date @namespace Ember @static */ Ember.Date = Ember.Date || {}; var origParse = Date.parse, numericKeys = [ 1, 4, 5, 6, 7, 10, 11 ]; /** @method parse @param {Date} date @return {Number} timestamp */ Ember.Date.parse = function (date) { var timestamp, struct, minutesOffset = 0; // ES5 §15.9.4.2 states that the string should attempt to be parsed as a Date Time String Format string // before falling back to any implementation-specific date parsing, so that’s what we do, even if native // implementations could be faster // 1 YYYY 2 MM 3 DD 4 HH 5 mm 6 ss 7 msec 8 Z 9 ± 10 tzHH 11 tzmm if ((struct = /^(\d{4}|[+\-]\d{6})(?:-(\d{2})(?:-(\d{2}))?)?(?:T(\d{2}):(\d{2})(?::(\d{2})(?:\.(\d{3}))?)?(?:(Z)|([+\-])(\d{2})(?::(\d{2}))?)?)?$/.exec(date))) { // avoid NaN timestamps caused by “undefined” values being passed to Date.UTC for (var i = 0, k; (k = numericKeys[i]); ++i) { struct[k] = +struct[k] || 0; } // allow undefined days and months struct[2] = (+struct[2] || 1) - 1; struct[3] = +struct[3] || 1; if (struct[8] !== 'Z' && struct[9] !== undefined) { minutesOffset = struct[10] * 60 + struct[11]; if (struct[9] === '+') { minutesOffset = 0 - minutesOffset; } } timestamp = Date.UTC(struct[1], struct[2], struct[3], struct[4], struct[5] + minutesOffset, struct[6], struct[7]); } else { timestamp = origParse ? origParse(date) : NaN; } return timestamp; }; if (Ember.EXTEND_PROTOTYPES === true || Ember.EXTEND_PROTOTYPES.Date) { Date.parse = Ember.Date.parse; } }); define("ember-data/initializers/data_adapter", ["ember-data/system/debug/debug_adapter","exports"], function(__dependency1__, __exports__) { "use strict"; var DebugAdapter = __dependency1__["default"]; /** Configures a container with injections on Ember applications for the Ember-Data store. Accepts an optional namespace argument. @method initializeStoreInjections @param {Ember.Container} container */ __exports__["default"] = function initializeDebugAdapter(container){ container.register('data-adapter:main', DebugAdapter); }; }); define("ember-data/initializers/store", ["ember-data/serializers","ember-data/adapters","ember-data/system/container_proxy","ember-data/system/store","exports"], function(__dependency1__, __dependency2__, __dependency3__, __dependency4__, __exports__) { "use strict"; var JSONSerializer = __dependency1__.JSONSerializer; var RESTSerializer = __dependency1__.RESTSerializer; var RESTAdapter = __dependency2__.RESTAdapter; var ContainerProxy = __dependency3__["default"]; var Store = __dependency4__["default"]; /** Configures a container for use with an Ember-Data store. Accepts an optional namespace argument. @method initializeStore @param {Ember.Container} container @param {Object} [application] an application namespace */ __exports__["default"] = function initializeStore(container, application){ container.register('store:main', container.lookupFactory('store:application') || (application && application.Store) || Store); // allow older names to be looked up var proxy = new ContainerProxy(container); proxy.registerDeprecations([ { deprecated: 'serializer:_default', valid: 'serializer:-default' }, { deprecated: 'serializer:_rest', valid: 'serializer:-rest' }, { deprecated: 'adapter:_rest', valid: 'adapter:-rest' } ]); // new go forward paths container.register('serializer:-default', JSONSerializer); container.register('serializer:-rest', RESTSerializer); container.register('adapter:-rest', RESTAdapter); // Eagerly generate the store so defaultStore is populated. // TODO: Do this in a finisher hook container.lookup('store:main'); }; }); define("ember-data/initializers/store_injections", ["exports"], function(__exports__) { "use strict"; /** Configures a container with injections on Ember applications for the Ember-Data store. Accepts an optional namespace argument. @method initializeStoreInjections @param {Ember.Container} container */ __exports__["default"] = function initializeStoreInjections(container){ container.injection('controller', 'store', 'store:main'); container.injection('route', 'store', 'store:main'); container.injection('serializer', 'store', 'store:main'); container.injection('data-adapter', 'store', 'store:main'); }; }); define("ember-data/initializers/transforms", ["ember-data/transforms","exports"], function(__dependency1__, __exports__) { "use strict"; var BooleanTransform = __dependency1__.BooleanTransform; var DateTransform = __dependency1__.DateTransform; var StringTransform = __dependency1__.StringTransform; var NumberTransform = __dependency1__.NumberTransform; /** Configures a container for use with Ember-Data transforms. @method initializeTransforms @param {Ember.Container} container */ __exports__["default"] = function initializeTransforms(container){ container.register('transform:boolean', BooleanTransform); container.register('transform:date', DateTransform); container.register('transform:number', NumberTransform); container.register('transform:string', StringTransform); }; }); define("ember-data/serializers", ["ember-data/serializers/json_serializer","ember-data/serializers/rest_serializer","exports"], function(__dependency1__, __dependency2__, __exports__) { "use strict"; var JSONSerializer = __dependency1__["default"]; var RESTSerializer = __dependency2__["default"]; __exports__.JSONSerializer = JSONSerializer; __exports__.RESTSerializer = RESTSerializer; }); define("ember-data/serializers/embedded_records_mixin", ["exports"], function(__exports__) { "use strict"; var get = Ember.get; var forEach = Ember.EnumerableUtils.forEach; var camelize = Ember.String.camelize; /** ## Using Embedded Records `DS.EmbeddedRecordsMixin` supports serializing embedded records. To set up embedded records, include the mixin when extending a serializer then define and configure embedded (model) relationships. Below is an example of a per-type serializer ('post' type). ```js App.PostSerializer = DS.RESTSerializer.extend(DS.EmbeddedRecordsMixin, { attrs: { author: { embedded: 'always' }, comments: { serialize: 'ids' } } }); ``` Note that this use of `{ embedded: 'always' }` is unrelated to the `{ embedded: 'always' }` that is defined as an option on `DS.attr` as part of defining a model while working with the ActiveModelSerializer. Nevertheless, using `{ embedded: 'always' }` as an option to DS.attr is not a valid way to setup embedded records. The `attrs` option for a resource `{ embedded: 'always' }` is shorthand for: ```js { serialize: 'records', deserialize: 'records' } ``` ### Configuring Attrs A resource's `attrs` option may be set to use `ids`, `records` or false for the `serialize` and `deserialize` settings. The `attrs` property can be set on the ApplicationSerializer or a per-type serializer. In the case where embedded JSON is expected while extracting a payload (reading) the setting is `deserialize: 'records'`, there is no need to use `ids` when extracting as that is the default behavior without this mixin if you are using the vanilla EmbeddedRecordsMixin. Likewise, to embed JSON in the payload while serializing `serialize: 'records'` is the setting to use. There is an option of not embedding JSON in the serialized payload by using `serialize: 'ids'`. If you do not want the relationship sent at all, you can use `serialize: false`. ### EmbeddedRecordsMixin defaults If you do not overwrite `attrs` for a specific relationship, the `EmbeddedRecordsMixin` will behave in the following way: BelongsTo: `{ serialize: 'id', deserialize: 'id' }` HasMany: `{ serialize: false, deserialize: 'ids' }` ### Model Relationships Embedded records must have a model defined to be extracted and serialized. Note that when defining any relationships on your model such as `belongsTo` and `hasMany`, you should not both specify `async:true` and also indicate through the serializer's `attrs` attribute that the related model should be embedded. If a model is declared embedded, then do not use `async:true`. To successfully extract and serialize embedded records the model relationships must be setup correcty See the [defining relationships](/guides/models/defining-models/#toc_defining-relationships) section of the **Defining Models** guide page. Records without an `id` property are not considered embedded records, model instances must have an `id` property to be used with Ember Data. ### Example JSON payloads, Models and Serializers **When customizing a serializer it is important to grok what the customizations are. Please read the docs for the methods this mixin provides, in case you need to modify it to fit your specific needs.** For example review the docs for each method of this mixin: * [normalize](/api/data/classes/DS.EmbeddedRecordsMixin.html#method_normalize) * [serializeBelongsTo](/api/data/classes/DS.EmbeddedRecordsMixin.html#method_serializeBelongsTo) * [serializeHasMany](/api/data/classes/DS.EmbeddedRecordsMixin.html#method_serializeHasMany) @class EmbeddedRecordsMixin @namespace DS */ var EmbeddedRecordsMixin = Ember.Mixin.create({ /** Normalize the record and recursively normalize/extract all the embedded records while pushing them into the store as they are encountered A payload with an attr configured for embedded records needs to be extracted: ```js { "post": { "id": "1" "title": "Rails is omakase", "comments": [{ "id": "1", "body": "Rails is unagi" }, { "id": "2", "body": "Omakase O_o" }] } } ``` @method normalize @param {subclass of DS.Model} type @param {Object} hash to be normalized @param {String} key the hash has been referenced by @return {Object} the normalized hash **/ normalize: function(type, hash, prop) { var normalizedHash = this._super(type, hash, prop); return extractEmbeddedRecords(this, this.store, type, normalizedHash); }, keyForRelationship: function(key, type){ if (this.hasDeserializeRecordsOption(key)) { return this.keyForAttribute(key); } else { return this._super(key, type) || key; } }, /** Serialize `belongsTo` relationship when it is configured as an embedded object. This example of an author model belongs to a post model: ```js Post = DS.Model.extend({ title: DS.attr('string'), body: DS.attr('string'), author: DS.belongsTo('author') }); Author = DS.Model.extend({ name: DS.attr('string'), post: DS.belongsTo('post') }); ``` Use a custom (type) serializer for the post model to configure embedded author ```js App.PostSerializer = DS.RESTSerializer.extend(DS.EmbeddedRecordsMixin, { attrs: { author: {embedded: 'always'} } }) ``` A payload with an attribute configured for embedded records can serialize the records together under the root attribute's payload: ```js { "post": { "id": "1" "title": "Rails is omakase", "author": { "id": "2" "name": "dhh" } } } ``` @method serializeBelongsTo @param {DS.Model} record @param {Object} json @param {Object} relationship */ serializeBelongsTo: function(record, json, relationship) { var attr = relationship.key; if (this.noSerializeOptionSpecified(attr)) { this._super(record, json, relationship); return; } var includeIds = this.hasSerializeIdsOption(attr); var includeRecords = this.hasSerializeRecordsOption(attr); var embeddedRecord = record.get(attr); var key; if (includeIds) { key = this.keyForRelationship(attr, relationship.kind); if (!embeddedRecord) { json[key] = null; } else { json[key] = get(embeddedRecord, 'id'); } } else if (includeRecords) { key = this.keyForAttribute(attr); if (!embeddedRecord) { json[key] = null; } else { json[key] = embeddedRecord.serialize({includeId: true}); this.removeEmbeddedForeignKey(record, embeddedRecord, relationship, json[key]); } } }, /** Serialize `hasMany` relationship when it is configured as embedded objects. This example of a post model has many comments: ```js Post = DS.Model.extend({ title: DS.attr('string'), body: DS.attr('string'), comments: DS.hasMany('comment') }); Comment = DS.Model.extend({ body: DS.attr('string'), post: DS.belongsTo('post') }); ``` Use a custom (type) serializer for the post model to configure embedded comments ```js App.PostSerializer = DS.RESTSerializer.extend(DS.EmbeddedRecordsMixin, { attrs: { comments: {embedded: 'always'} } }) ``` A payload with an attribute configured for embedded records can serialize the records together under the root attribute's payload: ```js { "post": { "id": "1" "title": "Rails is omakase", "body": "I want this for my ORM, I want that for my template language..." "comments": [{ "id": "1", "body": "Rails is unagi" }, { "id": "2", "body": "Omakase O_o" }] } } ``` The attrs options object can use more specific instruction for extracting and serializing. When serializing, an option to embed `ids` or `records` can be set. When extracting the only option is `records`. So `{embedded: 'always'}` is shorthand for: `{serialize: 'records', deserialize: 'records'}` To embed the `ids` for a related object (using a hasMany relationship): ```js App.PostSerializer = DS.RESTSerializer.extend(DS.EmbeddedRecordsMixin, { attrs: { comments: {serialize: 'ids', deserialize: 'records'} } }) ``` ```js { "post": { "id": "1" "title": "Rails is omakase", "body": "I want this for my ORM, I want that for my template language..." "comments": ["1", "2"] } } ``` @method serializeHasMany @param {DS.Model} record @param {Object} json @param {Object} relationship */ serializeHasMany: function(record, json, relationship) { var attr = relationship.key; if (this.noSerializeOptionSpecified(attr)) { this._super(record, json, relationship); return; } var includeIds = this.hasSerializeIdsOption(attr); var includeRecords = this.hasSerializeRecordsOption(attr); var key; if (includeIds) { key = this.keyForRelationship(attr, relationship.kind); json[key] = get(record, attr).mapBy('id'); } else if (includeRecords) { key = this.keyForAttribute(attr); json[key] = get(record, attr).map(function(embeddedRecord) { var serializedEmbeddedRecord = embeddedRecord.serialize({includeId: true}); this.removeEmbeddedForeignKey(record, embeddedRecord, relationship, serializedEmbeddedRecord); return serializedEmbeddedRecord; }, this); } }, /** When serializing an embedded record, modify the property (in the json payload) that refers to the parent record (foreign key for relationship). Serializing a `belongsTo` relationship removes the property that refers to the parent record Serializing a `hasMany` relationship does not remove the property that refers to the parent record. @method removeEmbeddedForeignKey @param {DS.Model} record @param {DS.Model} embeddedRecord @param {Object} relationship @param {Object} json */ removeEmbeddedForeignKey: function (record, embeddedRecord, relationship, json) { if (relationship.kind === 'hasMany') { return; } else if (relationship.kind === 'belongsTo') { var parentRecord = record.constructor.inverseFor(relationship.key); if (parentRecord) { var name = parentRecord.name; var embeddedSerializer = this.store.serializerFor(embeddedRecord.constructor); var parentKey = embeddedSerializer.keyForRelationship(name, parentRecord.kind); if (parentKey) { delete json[parentKey]; } } } }, // checks config for attrs option to embedded (always) - serialize and deserialize hasEmbeddedAlwaysOption: function (attr) { var option = this.attrsOption(attr); return option && option.embedded === 'always'; }, // checks config for attrs option to serialize ids hasSerializeRecordsOption: function(attr) { var alwaysEmbed = this.hasEmbeddedAlwaysOption(attr); var option = this.attrsOption(attr); return alwaysEmbed || (option && (option.serialize === 'records')); }, // checks config for attrs option to serialize records hasSerializeIdsOption: function(attr) { var option = this.attrsOption(attr); return option && (option.serialize === 'ids' || option.serialize === 'id'); }, // checks config for attrs option to serialize records noSerializeOptionSpecified: function(attr) { var option = this.attrsOption(attr); return !(option && (option.serialize || option.embedded)); }, // checks config for attrs option to deserialize records // a defined option object for a resource is treated the same as // `deserialize: 'records'` hasDeserializeRecordsOption: function(attr) { var alwaysEmbed = this.hasEmbeddedAlwaysOption(attr); var option = this.attrsOption(attr); return alwaysEmbed || (option && option.deserialize === 'records'); }, attrsOption: function(attr) { var attrs = this.get('attrs'); return attrs && (attrs[camelize(attr)] || attrs[attr]); } }); // chooses a relationship kind to branch which function is used to update payload // does not change payload if attr is not embedded function extractEmbeddedRecords(serializer, store, type, partial) { type.eachRelationship(function(key, relationship) { if (serializer.hasDeserializeRecordsOption(key)) { var embeddedType = store.modelFor(relationship.type.typeKey); if (relationship.kind === "hasMany") { if (relationship.options.polymorphic) { extractEmbeddedHasManyPolymorphic(store, key, partial); } else { extractEmbeddedHasMany(store, key, embeddedType, partial); } } if (relationship.kind === "belongsTo") { extractEmbeddedBelongsTo(store, key, embeddedType, partial); } } }); return partial; } // handles embedding for `hasMany` relationship function extractEmbeddedHasMany(store, key, embeddedType, hash) { if (!hash[key]) { return hash; } var ids = []; var embeddedSerializer = store.serializerFor(embeddedType.typeKey); forEach(hash[key], function(data) { var embeddedRecord = embeddedSerializer.normalize(embeddedType, data, null); store.push(embeddedType, embeddedRecord); ids.push(embeddedRecord.id); }); hash[key] = ids; return hash; } function extractEmbeddedHasManyPolymorphic(store, key, hash) { if (!hash[key]) { return hash; } var ids = []; forEach(hash[key], function(data) { var typeKey = data.type; var embeddedSerializer = store.serializerFor(typeKey); var embeddedType = store.modelFor(typeKey); var primaryKey = get(embeddedSerializer, 'primaryKey'); var embeddedRecord = embeddedSerializer.normalize(embeddedType, data, null); store.push(embeddedType, embeddedRecord); ids.push({ id: embeddedRecord[primaryKey], type: typeKey }); }); hash[key] = ids; return hash; } function extractEmbeddedBelongsTo(store, key, embeddedType, hash) { if (!hash[key]) { return hash; } var embeddedSerializer = store.serializerFor(embeddedType.typeKey); var embeddedRecord = embeddedSerializer.normalize(embeddedType, hash[key], null); store.push(embeddedType, embeddedRecord); hash[key] = embeddedRecord.id; //TODO Need to add a reference to the parent later so relationship works between both `belongsTo` records return hash; } __exports__["default"] = EmbeddedRecordsMixin; }); define("ember-data/serializers/json_serializer", ["exports"], function(__exports__) { "use strict"; var get = Ember.get; var isNone = Ember.isNone; var map = Ember.ArrayPolyfills.map; var merge = Ember.merge; /** In Ember Data a Serializer is used to serialize and deserialize records when they are transferred in and out of an external source. This process involves normalizing property names, transforming attribute values and serializing relationships. For maximum performance Ember Data recommends you use the [RESTSerializer](DS.RESTSerializer.html) or one of its subclasses. `JSONSerializer` is useful for simpler or legacy backends that may not support the http://jsonapi.org/ spec. @class JSONSerializer @namespace DS */ __exports__["default"] = Ember.Object.extend({ /** The primaryKey is used when serializing and deserializing data. Ember Data always uses the `id` property to store the id of the record. The external source may not always follow this convention. In these cases it is useful to override the primaryKey property to match the primaryKey of your external store. Example ```javascript App.ApplicationSerializer = DS.JSONSerializer.extend({ primaryKey: '_id' }); ``` @property primaryKey @type {String} @default 'id' */ primaryKey: 'id', /** The `attrs` object can be used to declare a simple mapping between property names on `DS.Model` records and payload keys in the serialized JSON object representing the record. An object with the property `key` can also be used to designate the attribute's key on the response payload. Example ```javascript App.Person = DS.Model.extend({ firstName: DS.attr('string'), lastName: DS.attr('string'), occupation: DS.attr('string'), admin: DS.attr('boolean') }); App.PersonSerializer = DS.JSONSerializer.extend({ attrs: { admin: 'is_admin', occupation: {key: 'career'} } }); ``` You can also remove attributes by setting the `serialize` key to false in your mapping object. Example ```javascript App.PersonSerializer = DS.JSONSerializer.extend({ attrs: { admin: {serialize: false}, occupation: {key: 'career'} } }); ``` When serialized: ```javascript { "career": "magician" } ``` Note that the `admin` is now not included in the payload. @property attrs @type {Object} */ /** Given a subclass of `DS.Model` and a JSON object this method will iterate through each attribute of the `DS.Model` and invoke the `DS.Transform#deserialize` method on the matching property of the JSON object. This method is typically called after the serializer's `normalize` method. @method applyTransforms @private @param {subclass of DS.Model} type @param {Object} data The data to transform @return {Object} data The transformed data object */ applyTransforms: function(type, data) { type.eachTransformedAttribute(function applyTransform(key, type) { if (!data.hasOwnProperty(key)) { return; } var transform = this.transformFor(type); data[key] = transform.deserialize(data[key]); }, this); return data; }, /** Normalizes a part of the JSON payload returned by the server. You should override this method, munge the hash and call super if you have generic normalization to do. It takes the type of the record that is being normalized (as a DS.Model class), the property where the hash was originally found, and the hash to normalize. You can use this method, for example, to normalize underscored keys to camelized or other general-purpose normalizations. Example ```javascript App.ApplicationSerializer = DS.JSONSerializer.extend({ normalize: function(type, hash) { var fields = Ember.get(type, 'fields'); fields.forEach(function(field) { var payloadField = Ember.String.underscore(field); if (field === payloadField) { return; } hash[field] = hash[payloadField]; delete hash[payloadField]; }); return this._super.apply(this, arguments); } }); ``` @method normalize @param {subclass of DS.Model} type @param {Object} hash @return {Object} */ normalize: function(type, hash) { if (!hash) { return hash; } this.normalizeId(hash); this.normalizeAttributes(type, hash); this.normalizeRelationships(type, hash); this.normalizeUsingDeclaredMapping(type, hash); this.applyTransforms(type, hash); return hash; }, /** You can use this method to normalize all payloads, regardless of whether they represent single records or an array. For example, you might want to remove some extraneous data from the payload: ```js App.ApplicationSerializer = DS.JSONSerializer.extend({ normalizePayload: function(payload) { delete payload.version; delete payload.status; return payload; } }); ``` @method normalizePayload @param {Object} payload @return {Object} the normalized payload */ normalizePayload: function(payload) { return payload; }, /** @method normalizeAttributes @private */ normalizeAttributes: function(type, hash) { var payloadKey; if (this.keyForAttribute) { type.eachAttribute(function(key) { payloadKey = this.keyForAttribute(key); if (key === payloadKey) { return; } if (!hash.hasOwnProperty(payloadKey)) { return; } hash[key] = hash[payloadKey]; delete hash[payloadKey]; }, this); } }, /** @method normalizeRelationships @private */ normalizeRelationships: function(type, hash) { var payloadKey; if (this.keyForRelationship) { type.eachRelationship(function(key, relationship) { payloadKey = this.keyForRelationship(key, relationship.kind); if (key === payloadKey) { return; } if (!hash.hasOwnProperty(payloadKey)) { return; } hash[key] = hash[payloadKey]; delete hash[payloadKey]; }, this); } }, /** @method normalizeUsingDeclaredMapping @private */ normalizeUsingDeclaredMapping: function(type, hash) { var attrs = get(this, 'attrs'), payloadKey, key; if (attrs) { for (key in attrs) { payloadKey = this._getMappedKey(key); if (!hash.hasOwnProperty(payloadKey)) { continue; } if (payloadKey !== key) { hash[key] = hash[payloadKey]; delete hash[payloadKey]; } } } }, /** @method normalizeId @private */ normalizeId: function(hash) { var primaryKey = get(this, 'primaryKey'); if (primaryKey === 'id') { return; } hash.id = hash[primaryKey]; delete hash[primaryKey]; }, /** Looks up the property key that was set by the custom `attr` mapping passed to the serializer. @method _getMappedKey @private @param {String} key @return {String} key */ _getMappedKey: function(key) { var attrs = get(this, 'attrs'); var mappedKey; if (attrs && attrs[key]) { mappedKey = attrs[key]; //We need to account for both the {title: 'post_title'} and //{title: {key: 'post_title'}} forms if (mappedKey.key){ mappedKey = mappedKey.key; } if (typeof mappedKey === 'string'){ key = mappedKey; } } return key; }, /** Check attrs.key.serialize property to inform if the `key` can be serialized @method _canSerialize @private @param {String} key @return {boolean} true if the key can be serialized */ _canSerialize: function(key) { var attrs = get(this, 'attrs'); return !attrs || !attrs[key] || attrs[key].serialize !== false; }, // SERIALIZE /** Called when a record is saved in order to convert the record into JSON. By default, it creates a JSON object with a key for each attribute and belongsTo relationship. For example, consider this model: ```javascript App.Comment = DS.Model.extend({ title: DS.attr(), body: DS.attr(), author: DS.belongsTo('user') }); ``` The default serialization would create a JSON object like: ```javascript { "title": "Rails is unagi", "body": "Rails? Omakase? O_O", "author": 12 } ``` By default, attributes are passed through as-is, unless you specified an attribute type (`DS.attr('date')`). If you specify a transform, the JavaScript value will be serialized when inserted into the JSON hash. By default, belongs-to relationships are converted into IDs when inserted into the JSON hash. ## IDs `serialize` takes an options hash with a single option: `includeId`. If this option is `true`, `serialize` will, by default include the ID in the JSON object it builds. The adapter passes in `includeId: true` when serializing a record for `createRecord`, but not for `updateRecord`. ## Customization Your server may expect a different JSON format than the built-in serialization format. In that case, you can implement `serialize` yourself and return a JSON hash of your choosing. ```javascript App.PostSerializer = DS.JSONSerializer.extend({ serialize: function(post, options) { var json = { POST_TTL: post.get('title'), POST_BDY: post.get('body'), POST_CMS: post.get('comments').mapBy('id') } if (options.includeId) { json.POST_ID_ = post.get('id'); } return json; } }); ``` ## Customizing an App-Wide Serializer If you want to define a serializer for your entire application, you'll probably want to use `eachAttribute` and `eachRelationship` on the record. ```javascript App.ApplicationSerializer = DS.JSONSerializer.extend({ serialize: function(record, options) { var json = {}; record.eachAttribute(function(name) { json[serverAttributeName(name)] = record.get(name); }) record.eachRelationship(function(name, relationship) { if (relationship.kind === 'hasMany') { json[serverHasManyName(name)] = record.get(name).mapBy('id'); } }); if (options.includeId) { json.ID_ = record.get('id'); } return json; } }); function serverAttributeName(attribute) { return attribute.underscore().toUpperCase(); } function serverHasManyName(name) { return serverAttributeName(name.singularize()) + "_IDS"; } ``` This serializer will generate JSON that looks like this: ```javascript { "TITLE": "Rails is omakase", "BODY": "Yep. Omakase.", "COMMENT_IDS": [ 1, 2, 3 ] } ``` ## Tweaking the Default JSON If you just want to do some small tweaks on the default JSON, you can call super first and make the tweaks on the returned JSON. ```javascript App.PostSerializer = DS.JSONSerializer.extend({ serialize: function(record, options) { var json = this._super.apply(this, arguments); json.subject = json.title; delete json.title; return json; } }); ``` @method serialize @param {subclass of DS.Model} record @param {Object} options @return {Object} json */ serialize: function(record, options) { var json = {}; if (options && options.includeId) { var id = get(record, 'id'); if (id) { json[get(this, 'primaryKey')] = id; } } record.eachAttribute(function(key, attribute) { this.serializeAttribute(record, json, key, attribute); }, this); record.eachRelationship(function(key, relationship) { if (relationship.kind === 'belongsTo') { this.serializeBelongsTo(record, json, relationship); } else if (relationship.kind === 'hasMany') { this.serializeHasMany(record, json, relationship); } }, this); return json; }, /** You can use this method to customize how a serialized record is added to the complete JSON hash to be sent to the server. By default the JSON Serializer does not namespace the payload and just sends the raw serialized JSON object. If your server expects namespaced keys, you should consider using the RESTSerializer. Otherwise you can override this method to customize how the record is added to the hash. For example, your server may expect underscored root objects. ```js App.ApplicationSerializer = DS.RESTSerializer.extend({ serializeIntoHash: function(data, type, record, options) { var root = Ember.String.decamelize(type.typeKey); data[root] = this.serialize(record, options); } }); ``` @method serializeIntoHash @param {Object} hash @param {subclass of DS.Model} type @param {DS.Model} record @param {Object} options */ serializeIntoHash: function(hash, type, record, options) { merge(hash, this.serialize(record, options)); }, /** `serializeAttribute` can be used to customize how `DS.attr` properties are serialized For example if you wanted to ensure all your attributes were always serialized as properties on an `attributes` object you could write: ```javascript App.ApplicationSerializer = DS.JSONSerializer.extend({ serializeAttribute: function(record, json, key, attributes) { json.attributes = json.attributes || {}; this._super(record, json.attributes, key, attributes); } }); ``` @method serializeAttribute @param {DS.Model} record @param {Object} json @param {String} key @param {Object} attribute */ serializeAttribute: function(record, json, key, attribute) { var type = attribute.type; if (this._canSerialize(key)) { var value = get(record, key); if (type) { var transform = this.transformFor(type); value = transform.serialize(value); } // if provided, use the mapping provided by `attrs` in // the serializer var payloadKey = this._getMappedKey(key); if (payloadKey === key && this.keyForAttribute) { payloadKey = this.keyForAttribute(key); } json[payloadKey] = value; } }, /** `serializeBelongsTo` can be used to customize how `DS.belongsTo` properties are serialized. Example ```javascript App.PostSerializer = DS.JSONSerializer.extend({ serializeBelongsTo: function(record, json, relationship) { var key = relationship.key; var belongsTo = get(record, key); key = this.keyForRelationship ? this.keyForRelationship(key, "belongsTo") : key; json[key] = Ember.isNone(belongsTo) ? belongsTo : belongsTo.toJSON(); } }); ``` @method serializeBelongsTo @param {DS.Model} record @param {Object} json @param {Object} relationship */ serializeBelongsTo: function(record, json, relationship) { var key = relationship.key; if (this._canSerialize(key)) { var belongsTo = get(record, key); // if provided, use the mapping provided by `attrs` in // the serializer var payloadKey = this._getMappedKey(key); if (payloadKey === key && this.keyForRelationship) { payloadKey = this.keyForRelationship(key, "belongsTo"); } //Need to check whether the id is there for new&async records if (isNone(belongsTo) || isNone(get(belongsTo, 'id'))) { json[payloadKey] = null; } else { json[payloadKey] = get(belongsTo, 'id'); } if (relationship.options.polymorphic) { this.serializePolymorphicType(record, json, relationship); } } }, /** `serializeHasMany` can be used to customize how `DS.hasMany` properties are serialized. Example ```javascript App.PostSerializer = DS.JSONSerializer.extend({ serializeHasMany: function(record, json, relationship) { var key = relationship.key; if (key === 'comments') { return; } else { this._super.apply(this, arguments); } } }); ``` @method serializeHasMany @param {DS.Model} record @param {Object} json @param {Object} relationship */ serializeHasMany: function(record, json, relationship) { var key = relationship.key; if (this._canSerialize(key)) { var payloadKey; // if provided, use the mapping provided by `attrs` in // the serializer payloadKey = this._getMappedKey(key); if (payloadKey === key && this.keyForRelationship) { payloadKey = this.keyForRelationship(key, "hasMany"); } var relationshipType = record.constructor.determineRelationshipType(relationship); if (relationshipType === 'manyToNone' || relationshipType === 'manyToMany') { json[payloadKey] = get(record, key).mapBy('id'); // TODO support for polymorphic manyToNone and manyToMany relationships } } }, /** You can use this method to customize how polymorphic objects are serialized. Objects are considered to be polymorphic if `{polymorphic: true}` is pass as the second argument to the `DS.belongsTo` function. Example ```javascript App.CommentSerializer = DS.JSONSerializer.extend({ serializePolymorphicType: function(record, json, relationship) { var key = relationship.key, belongsTo = get(record, key); key = this.keyForAttribute ? this.keyForAttribute(key) : key; if (Ember.isNone(belongsTo)) { json[key + "_type"] = null; } else { json[key + "_type"] = belongsTo.constructor.typeKey; } } }); ``` @method serializePolymorphicType @param {DS.Model} record @param {Object} json @param {Object} relationship */ serializePolymorphicType: Ember.K, // EXTRACT /** The `extract` method is used to deserialize payload data from the server. By default the `JSONSerializer` does not push the records into the store. However records that subclass `JSONSerializer` such as the `RESTSerializer` may push records into the store as part of the extract call. This method delegates to a more specific extract method based on the `requestType`. Example ```javascript var get = Ember.get; socket.on('message', function(message) { var modelName = message.model; var data = message.data; var type = store.modelFor(modelName); var serializer = store.serializerFor(type.typeKey); var record = serializer.extract(store, type, data, get(data, 'id'), 'single'); store.push(modelName, record); }); ``` @method extract @param {DS.Store} store @param {subclass of DS.Model} type @param {Object} payload @param {String or Number} id @param {String} requestType @return {Object} json The deserialized payload */ extract: function(store, type, payload, id, requestType) { this.extractMeta(store, type, payload); var specificExtract = "extract" + requestType.charAt(0).toUpperCase() + requestType.substr(1); return this[specificExtract](store, type, payload, id, requestType); }, /** `extractFindAll` is a hook into the extract method used when a call is made to `DS.Store#findAll`. By default this method is an alias for [extractArray](#method_extractArray). @method extractFindAll @param {DS.Store} store @param {subclass of DS.Model} type @param {Object} payload @param {String or Number} id @param {String} requestType @return {Array} array An array of deserialized objects */ extractFindAll: function(store, type, payload, id, requestType){ return this.extractArray(store, type, payload, id, requestType); }, /** `extractFindQuery` is a hook into the extract method used when a call is made to `DS.Store#findQuery`. By default this method is an alias for [extractArray](#method_extractArray). @method extractFindQuery @param {DS.Store} store @param {subclass of DS.Model} type @param {Object} payload @param {String or Number} id @param {String} requestType @return {Array} array An array of deserialized objects */ extractFindQuery: function(store, type, payload, id, requestType){ return this.extractArray(store, type, payload, id, requestType); }, /** `extractFindMany` is a hook into the extract method used when a call is made to `DS.Store#findMany`. By default this method is alias for [extractArray](#method_extractArray). @method extractFindMany @param {DS.Store} store @param {subclass of DS.Model} type @param {Object} payload @param {String or Number} id @param {String} requestType @return {Array} array An array of deserialized objects */ extractFindMany: function(store, type, payload, id, requestType){ return this.extractArray(store, type, payload, id, requestType); }, /** `extractFindHasMany` is a hook into the extract method used when a call is made to `DS.Store#findHasMany`. By default this method is alias for [extractArray](#method_extractArray). @method extractFindHasMany @param {DS.Store} store @param {subclass of DS.Model} type @param {Object} payload @param {String or Number} id @param {String} requestType @return {Array} array An array of deserialized objects */ extractFindHasMany: function(store, type, payload, id, requestType){ return this.extractArray(store, type, payload, id, requestType); }, /** `extractCreateRecord` is a hook into the extract method used when a call is made to `DS.Store#createRecord`. By default this method is alias for [extractSave](#method_extractSave). @method extractCreateRecord @param {DS.Store} store @param {subclass of DS.Model} type @param {Object} payload @param {String or Number} id @param {String} requestType @return {Object} json The deserialized payload */ extractCreateRecord: function(store, type, payload, id, requestType) { return this.extractSave(store, type, payload, id, requestType); }, /** `extractUpdateRecord` is a hook into the extract method used when a call is made to `DS.Store#update`. By default this method is alias for [extractSave](#method_extractSave). @method extractUpdateRecord @param {DS.Store} store @param {subclass of DS.Model} type @param {Object} payload @param {String or Number} id @param {String} requestType @return {Object} json The deserialized payload */ extractUpdateRecord: function(store, type, payload, id, requestType) { return this.extractSave(store, type, payload, id, requestType); }, /** `extractDeleteRecord` is a hook into the extract method used when a call is made to `DS.Store#deleteRecord`. By default this method is alias for [extractSave](#method_extractSave). @method extractDeleteRecord @param {DS.Store} store @param {subclass of DS.Model} type @param {Object} payload @param {String or Number} id @param {String} requestType @return {Object} json The deserialized payload */ extractDeleteRecord: function(store, type, payload, id, requestType) { return this.extractSave(store, type, payload, id, requestType); }, /** `extractFind` is a hook into the extract method used when a call is made to `DS.Store#find`. By default this method is alias for [extractSingle](#method_extractSingle). @method extractFind @param {DS.Store} store @param {subclass of DS.Model} type @param {Object} payload @param {String or Number} id @param {String} requestType @return {Object} json The deserialized payload */ extractFind: function(store, type, payload, id, requestType) { return this.extractSingle(store, type, payload, id, requestType); }, /** `extractFindBelongsTo` is a hook into the extract method used when a call is made to `DS.Store#findBelongsTo`. By default this method is alias for [extractSingle](#method_extractSingle). @method extractFindBelongsTo @param {DS.Store} store @param {subclass of DS.Model} type @param {Object} payload @param {String or Number} id @param {String} requestType @return {Object} json The deserialized payload */ extractFindBelongsTo: function(store, type, payload, id, requestType) { return this.extractSingle(store, type, payload, id, requestType); }, /** `extractSave` is a hook into the extract method used when a call is made to `DS.Model#save`. By default this method is alias for [extractSingle](#method_extractSingle). @method extractSave @param {DS.Store} store @param {subclass of DS.Model} type @param {Object} payload @param {String or Number} id @param {String} requestType @return {Object} json The deserialized payload */ extractSave: function(store, type, payload, id, requestType) { return this.extractSingle(store, type, payload, id, requestType); }, /** `extractSingle` is used to deserialize a single record returned from the adapter. Example ```javascript App.PostSerializer = DS.JSONSerializer.extend({ extractSingle: function(store, type, payload) { payload.comments = payload._embedded.comment; delete payload._embedded; return this._super(store, type, payload); }, }); ``` @method extractSingle @param {DS.Store} store @param {subclass of DS.Model} type @param {Object} payload @param {String or Number} id @param {String} requestType @return {Object} json The deserialized payload */ extractSingle: function(store, type, payload, id, requestType) { payload = this.normalizePayload(payload); return this.normalize(type, payload); }, /** `extractArray` is used to deserialize an array of records returned from the adapter. Example ```javascript App.PostSerializer = DS.JSONSerializer.extend({ extractArray: function(store, type, payload) { return payload.map(function(json) { return this.extractSingle(store, type, json); }, this); } }); ``` @method extractArray @param {DS.Store} store @param {subclass of DS.Model} type @param {Object} payload @param {String or Number} id @param {String} requestType @return {Array} array An array of deserialized objects */ extractArray: function(store, type, arrayPayload, id, requestType) { var normalizedPayload = this.normalizePayload(arrayPayload); var serializer = this; return map.call(normalizedPayload, function(singlePayload) { return serializer.normalize(type, singlePayload); }); }, /** `extractMeta` is used to deserialize any meta information in the adapter payload. By default Ember Data expects meta information to be located on the `meta` property of the payload object. Example ```javascript App.PostSerializer = DS.JSONSerializer.extend({ extractMeta: function(store, type, payload) { if (payload && payload._pagination) { store.metaForType(type, payload._pagination); delete payload._pagination; } } }); ``` @method extractMeta @param {DS.Store} store @param {subclass of DS.Model} type @param {Object} payload */ extractMeta: function(store, type, payload) { if (payload && payload.meta) { store.metaForType(type, payload.meta); delete payload.meta; } }, /** `keyForAttribute` can be used to define rules for how to convert an attribute name in your model to a key in your JSON. Example ```javascript App.ApplicationSerializer = DS.RESTSerializer.extend({ keyForAttribute: function(attr) { return Ember.String.underscore(attr).toUpperCase(); } }); ``` @method keyForAttribute @param {String} key @return {String} normalized key */ keyForAttribute: function(key){ return key; }, /** `keyForRelationship` can be used to define a custom key when serializing relationship properties. By default `JSONSerializer` does not provide an implementation of this method. Example ```javascript App.PostSerializer = DS.JSONSerializer.extend({ keyForRelationship: function(key, relationship) { return 'rel_' + Ember.String.underscore(key); } }); ``` @method keyForRelationship @param {String} key @param {String} relationship type @return {String} normalized key */ keyForRelationship: function(key, type){ return key; }, // HELPERS /** @method transformFor @private @param {String} attributeType @param {Boolean} skipAssertion @return {DS.Transform} transform */ transformFor: function(attributeType, skipAssertion) { var transform = this.container.lookup('transform:' + attributeType); return transform; } }); }); define("ember-data/serializers/rest_serializer", ["ember-data/serializers/json_serializer","ember-inflector/system/string","exports"], function(__dependency1__, __dependency2__, __exports__) { "use strict"; /** @module ember-data */ var JSONSerializer = __dependency1__["default"]; var get = Ember.get; var forEach = Ember.ArrayPolyfills.forEach; var map = Ember.ArrayPolyfills.map; var camelize = Ember.String.camelize; var singularize = __dependency2__.singularize; function coerceId(id) { return id == null ? null : id + ''; } /** Normally, applications will use the `RESTSerializer` by implementing the `normalize` method and individual normalizations under `normalizeHash`. This allows you to do whatever kind of munging you need, and is especially useful if your server is inconsistent and you need to do munging differently for many different kinds of responses. See the `normalize` documentation for more information. ## Across the Board Normalization There are also a number of hooks that you might find useful to define across-the-board rules for your payload. These rules will be useful if your server is consistent, or if you're building an adapter for an infrastructure service, like Parse, and want to encode service conventions. For example, if all of your keys are underscored and all-caps, but otherwise consistent with the names you use in your models, you can implement across-the-board rules for how to convert an attribute name in your model to a key in your JSON. ```js App.ApplicationSerializer = DS.RESTSerializer.extend({ keyForAttribute: function(attr) { return Ember.String.underscore(attr).toUpperCase(); } }); ``` You can also implement `keyForRelationship`, which takes the name of the relationship as the first parameter, and the kind of relationship (`hasMany` or `belongsTo`) as the second parameter. @class RESTSerializer @namespace DS @extends DS.JSONSerializer */ var RESTSerializer = JSONSerializer.extend({ /** If you want to do normalizations specific to some part of the payload, you can specify those under `normalizeHash`. For example, given the following json where the the `IDs` under `"comments"` are provided as `_id` instead of `id`. ```javascript { "post": { "id": 1, "title": "Rails is omakase", "comments": [ 1, 2 ] }, "comments": [{ "_id": 1, "body": "FIRST" }, { "_id": 2, "body": "Rails is unagi" }] } ``` You use `normalizeHash` to normalize just the comments: ```javascript App.PostSerializer = DS.RESTSerializer.extend({ normalizeHash: { comments: function(hash) { hash.id = hash._id; delete hash._id; return hash; } } }); ``` The key under `normalizeHash` is usually just the original key that was in the original payload. However, key names will be impacted by any modifications done in the `normalizePayload` method. The `DS.RESTSerializer`'s default implementation makes no changes to the payload keys. @property normalizeHash @type {Object} @default undefined */ /** Normalizes a part of the JSON payload returned by the server. You should override this method, munge the hash and call super if you have generic normalization to do. It takes the type of the record that is being normalized (as a DS.Model class), the property where the hash was originally found, and the hash to normalize. For example, if you have a payload that looks like this: ```js { "post": { "id": 1, "title": "Rails is omakase", "comments": [ 1, 2 ] }, "comments": [{ "id": 1, "body": "FIRST" }, { "id": 2, "body": "Rails is unagi" }] } ``` The `normalize` method will be called three times: * With `App.Post`, `"posts"` and `{ id: 1, title: "Rails is omakase", ... }` * With `App.Comment`, `"comments"` and `{ id: 1, body: "FIRST" }` * With `App.Comment`, `"comments"` and `{ id: 2, body: "Rails is unagi" }` You can use this method, for example, to normalize underscored keys to camelized or other general-purpose normalizations. If you want to do normalizations specific to some part of the payload, you can specify those under `normalizeHash`. For example, if the `IDs` under `"comments"` are provided as `_id` instead of `id`, you can specify how to normalize just the comments: ```js App.PostSerializer = DS.RESTSerializer.extend({ normalizeHash: { comments: function(hash) { hash.id = hash._id; delete hash._id; return hash; } } }); ``` The key under `normalizeHash` is just the original key that was in the original payload. @method normalize @param {subclass of DS.Model} type @param {Object} hash @param {String} prop @return {Object} */ normalize: function(type, hash, prop) { this.normalizeId(hash); this.normalizeAttributes(type, hash); this.normalizeRelationships(type, hash); this.normalizeUsingDeclaredMapping(type, hash); if (this.normalizeHash && this.normalizeHash[prop]) { this.normalizeHash[prop](hash); } this.applyTransforms(type, hash); return hash; }, /** Called when the server has returned a payload representing a single record, such as in response to a `find` or `save`. It is your opportunity to clean up the server's response into the normalized form expected by Ember Data. If you want, you can just restructure the top-level of your payload, and do more fine-grained normalization in the `normalize` method. For example, if you have a payload like this in response to a request for post 1: ```js { "id": 1, "title": "Rails is omakase", "_embedded": { "comment": [{ "_id": 1, "comment_title": "FIRST" }, { "_id": 2, "comment_title": "Rails is unagi" }] } } ``` You could implement a serializer that looks like this to get your payload into shape: ```js App.PostSerializer = DS.RESTSerializer.extend({ // First, restructure the top-level so it's organized by type extractSingle: function(store, type, payload, id) { var comments = payload._embedded.comment; delete payload._embedded; payload = { comments: comments, post: payload }; return this._super(store, type, payload, id); }, normalizeHash: { // Next, normalize individual comments, which (after `extract`) // are now located under `comments` comments: function(hash) { hash.id = hash._id; hash.title = hash.comment_title; delete hash._id; delete hash.comment_title; return hash; } } }) ``` When you call super from your own implementation of `extractSingle`, the built-in implementation will find the primary record in your normalized payload and push the remaining records into the store. The primary record is the single hash found under `post` or the first element of the `posts` array. The primary record has special meaning when the record is being created for the first time or updated (`createRecord` or `updateRecord`). In particular, it will update the properties of the record that was saved. @method extractSingle @param {DS.Store} store @param {subclass of DS.Model} primaryType @param {Object} payload @param {String} recordId @return {Object} the primary response to the original request */ extractSingle: function(store, primaryType, rawPayload, recordId) { var payload = this.normalizePayload(rawPayload); var primaryTypeName = primaryType.typeKey; var primaryRecord; for (var prop in payload) { var typeName = this.typeForRoot(prop); if (!store.modelFactoryFor(typeName)){ continue; } var type = store.modelFor(typeName); var isPrimary = type.typeKey === primaryTypeName; var value = payload[prop]; // legacy support for singular resources if (isPrimary && Ember.typeOf(value) !== "array" ) { primaryRecord = this.normalize(primaryType, value, prop); continue; } /*jshint loopfunc:true*/ forEach.call(value, function(hash) { var typeName = this.typeForRoot(prop); var type = store.modelFor(typeName); var typeSerializer = store.serializerFor(type); hash = typeSerializer.normalize(type, hash, prop); var isFirstCreatedRecord = isPrimary && !recordId && !primaryRecord; var isUpdatedRecord = isPrimary && coerceId(hash.id) === recordId; // find the primary record. // // It's either: // * the record with the same ID as the original request // * in the case of a newly created record that didn't have an ID, the first // record in the Array if (isFirstCreatedRecord || isUpdatedRecord) { primaryRecord = hash; } else { store.push(typeName, hash); } }, this); } return primaryRecord; }, /** Called when the server has returned a payload representing multiple records, such as in response to a `findAll` or `findQuery`. It is your opportunity to clean up the server's response into the normalized form expected by Ember Data. If you want, you can just restructure the top-level of your payload, and do more fine-grained normalization in the `normalize` method. For example, if you have a payload like this in response to a request for all posts: ```js { "_embedded": { "post": [{ "id": 1, "title": "Rails is omakase" }, { "id": 2, "title": "The Parley Letter" }], "comment": [{ "_id": 1, "comment_title": "Rails is unagi" "post_id": 1 }, { "_id": 2, "comment_title": "Don't tread on me", "post_id": 2 }] } } ``` You could implement a serializer that looks like this to get your payload into shape: ```js App.PostSerializer = DS.RESTSerializer.extend({ // First, restructure the top-level so it's organized by type // and the comments are listed under a post's `comments` key. extractArray: function(store, type, payload) { var posts = payload._embedded.post; var comments = []; var postCache = {}; posts.forEach(function(post) { post.comments = []; postCache[post.id] = post; }); payload._embedded.comment.forEach(function(comment) { comments.push(comment); postCache[comment.post_id].comments.push(comment); delete comment.post_id; }); payload = { comments: comments, posts: payload }; return this._super(store, type, payload); }, normalizeHash: { // Next, normalize individual comments, which (after `extract`) // are now located under `comments` comments: function(hash) { hash.id = hash._id; hash.title = hash.comment_title; delete hash._id; delete hash.comment_title; return hash; } } }) ``` When you call super from your own implementation of `extractArray`, the built-in implementation will find the primary array in your normalized payload and push the remaining records into the store. The primary array is the array found under `posts`. The primary record has special meaning when responding to `findQuery` or `findHasMany`. In particular, the primary array will become the list of records in the record array that kicked off the request. If your primary array contains secondary (embedded) records of the same type, you cannot place these into the primary array `posts`. Instead, place the secondary items into an underscore prefixed property `_posts`, which will push these items into the store and will not affect the resulting query. @method extractArray @param {DS.Store} store @param {subclass of DS.Model} primaryType @param {Object} payload @return {Array} The primary array that was returned in response to the original query. */ extractArray: function(store, primaryType, rawPayload) { var payload = this.normalizePayload(rawPayload); var primaryTypeName = primaryType.typeKey; var primaryArray; for (var prop in payload) { var typeKey = prop; var forcedSecondary = false; if (prop.charAt(0) === '_') { forcedSecondary = true; typeKey = prop.substr(1); } var typeName = this.typeForRoot(typeKey); if (!store.modelFactoryFor(typeName)) { continue; } var type = store.modelFor(typeName); var typeSerializer = store.serializerFor(type); var isPrimary = (!forcedSecondary && (type.typeKey === primaryTypeName)); /*jshint loopfunc:true*/ var normalizedArray = map.call(payload[prop], function(hash) { return typeSerializer.normalize(type, hash, prop); }, this); if (isPrimary) { primaryArray = normalizedArray; } else { store.pushMany(typeName, normalizedArray); } } return primaryArray; }, /** This method allows you to push a payload containing top-level collections of records organized per type. ```js { "posts": [{ "id": "1", "title": "Rails is omakase", "author", "1", "comments": [ "1" ] }], "comments": [{ "id": "1", "body": "FIRST" }], "users": [{ "id": "1", "name": "@d2h" }] } ``` It will first normalize the payload, so you can use this to push in data streaming in from your server structured the same way that fetches and saves are structured. @method pushPayload @param {DS.Store} store @param {Object} payload */ pushPayload: function(store, rawPayload) { var payload = this.normalizePayload(rawPayload); for (var prop in payload) { var typeName = this.typeForRoot(prop); if (!store.modelFactoryFor(typeName, prop)){ continue; } var type = store.modelFor(typeName); var typeSerializer = store.serializerFor(type); /*jshint loopfunc:true*/ var normalizedArray = map.call(Ember.makeArray(payload[prop]), function(hash) { return typeSerializer.normalize(type, hash, prop); }, this); store.pushMany(typeName, normalizedArray); } }, /** This method is used to convert each JSON root key in the payload into a typeKey that it can use to look up the appropriate model for that part of the payload. By default the typeKey for a model is its name in camelCase, so if your JSON root key is 'fast-car' you would use typeForRoot to convert it to 'fastCar' so that Ember Data finds the `FastCar` model. If you diverge from this norm you should also consider changes to store._normalizeTypeKey as well. For example, your server may return prefixed root keys like so: ```js { "response-fast-car": { "id": "1", "name": "corvette" } } ``` In order for Ember Data to know that the model corresponding to the 'response-fast-car' hash is `FastCar` (typeKey: 'fastCar'), you can override typeForRoot to convert 'response-fast-car' to 'fastCar' like so: ```js App.ApplicationSerializer = DS.RESTSerializer.extend({ typeForRoot: function(root) { // 'response-fast-car' should become 'fast-car' var subRoot = root.substring(9); // _super normalizes 'fast-car' to 'fastCar' return this._super(subRoot); } }); ``` @method typeForRoot @param {String} key @return {String} the model's typeKey */ typeForRoot: function(key) { return camelize(singularize(key)); }, // SERIALIZE /** Called when a record is saved in order to convert the record into JSON. By default, it creates a JSON object with a key for each attribute and belongsTo relationship. For example, consider this model: ```js App.Comment = DS.Model.extend({ title: DS.attr(), body: DS.attr(), author: DS.belongsTo('user') }); ``` The default serialization would create a JSON object like: ```js { "title": "Rails is unagi", "body": "Rails? Omakase? O_O", "author": 12 } ``` By default, attributes are passed through as-is, unless you specified an attribute type (`DS.attr('date')`). If you specify a transform, the JavaScript value will be serialized when inserted into the JSON hash. By default, belongs-to relationships are converted into IDs when inserted into the JSON hash. ## IDs `serialize` takes an options hash with a single option: `includeId`. If this option is `true`, `serialize` will, by default include the ID in the JSON object it builds. The adapter passes in `includeId: true` when serializing a record for `createRecord`, but not for `updateRecord`. ## Customization Your server may expect a different JSON format than the built-in serialization format. In that case, you can implement `serialize` yourself and return a JSON hash of your choosing. ```js App.PostSerializer = DS.RESTSerializer.extend({ serialize: function(post, options) { var json = { POST_TTL: post.get('title'), POST_BDY: post.get('body'), POST_CMS: post.get('comments').mapBy('id') } if (options.includeId) { json.POST_ID_ = post.get('id'); } return json; } }); ``` ## Customizing an App-Wide Serializer If you want to define a serializer for your entire application, you'll probably want to use `eachAttribute` and `eachRelationship` on the record. ```js App.ApplicationSerializer = DS.RESTSerializer.extend({ serialize: function(record, options) { var json = {}; record.eachAttribute(function(name) { json[serverAttributeName(name)] = record.get(name); }) record.eachRelationship(function(name, relationship) { if (relationship.kind === 'hasMany') { json[serverHasManyName(name)] = record.get(name).mapBy('id'); } }); if (options.includeId) { json.ID_ = record.get('id'); } return json; } }); function serverAttributeName(attribute) { return attribute.underscore().toUpperCase(); } function serverHasManyName(name) { return serverAttributeName(name.singularize()) + "_IDS"; } ``` This serializer will generate JSON that looks like this: ```js { "TITLE": "Rails is omakase", "BODY": "Yep. Omakase.", "COMMENT_IDS": [ 1, 2, 3 ] } ``` ## Tweaking the Default JSON If you just want to do some small tweaks on the default JSON, you can call super first and make the tweaks on the returned JSON. ```js App.PostSerializer = DS.RESTSerializer.extend({ serialize: function(record, options) { var json = this._super(record, options); json.subject = json.title; delete json.title; return json; } }); ``` @method serialize @param {subclass of DS.Model} record @param {Object} options @return {Object} json */ serialize: function(record, options) { return this._super.apply(this, arguments); }, /** You can use this method to customize the root keys serialized into the JSON. By default the REST Serializer sends the typeKey of a model, which is a camelized version of the name. For example, your server may expect underscored root objects. ```js App.ApplicationSerializer = DS.RESTSerializer.extend({ serializeIntoHash: function(data, type, record, options) { var root = Ember.String.decamelize(type.typeKey); data[root] = this.serialize(record, options); } }); ``` @method serializeIntoHash @param {Object} hash @param {subclass of DS.Model} type @param {DS.Model} record @param {Object} options */ serializeIntoHash: function(hash, type, record, options) { hash[type.typeKey] = this.serialize(record, options); }, /** You can use this method to customize how polymorphic objects are serialized. By default the JSON Serializer creates the key by appending `Type` to the attribute and value from the model's camelcased model name. @method serializePolymorphicType @param {DS.Model} record @param {Object} json @param {Object} relationship */ serializePolymorphicType: function(record, json, relationship) { var key = relationship.key; var belongsTo = get(record, key); key = this.keyForAttribute ? this.keyForAttribute(key) : key; if (Ember.isNone(belongsTo)) { json[key + "Type"] = null; } else { json[key + "Type"] = Ember.String.camelize(belongsTo.constructor.typeKey); } } }); __exports__["default"] = RESTSerializer; }); define("ember-data/setup-container", ["ember-data/initializers/store","ember-data/initializers/transforms","ember-data/initializers/store_injections","ember-data/initializers/data_adapter","activemodel-adapter/setup-container","exports"], function(__dependency1__, __dependency2__, __dependency3__, __dependency4__, __dependency5__, __exports__) { "use strict"; var initializeStore = __dependency1__["default"]; var initializeTransforms = __dependency2__["default"]; var initializeStoreInjections = __dependency3__["default"]; var initializeDataAdapter = __dependency4__["default"]; var setupActiveModelContainer = __dependency5__["default"]; __exports__["default"] = function setupContainer(container, application){ // application is not a required argument. This ensures // testing setups can setup a container without booting an // entire ember application. initializeDataAdapter(container, application); initializeTransforms(container, application); initializeStoreInjections(container, application); initializeStore(container, application); setupActiveModelContainer(container, application); }; }); define("ember-data/system/adapter", ["exports"], function(__exports__) { "use strict"; /** @module ember-data */ var get = Ember.get; var errorProps = [ 'description', 'fileName', 'lineNumber', 'message', 'name', 'number', 'stack' ]; /** A `DS.InvalidError` is used by an adapter to signal the external API was unable to process a request because the content was not semantically correct or meaningful per the API. Usually this means a record failed some form of server side validation. When a promise from an adapter is rejected with a `DS.InvalidError` the record will transition to the `invalid` state and the errors will be set to the `errors` property on the record. Example ```javascript App.ApplicationAdapter = DS.RESTAdapter.extend({ ajaxError: function(jqXHR) { var error = this._super(jqXHR); if (jqXHR && jqXHR.status === 422) { var jsonErrors = Ember.$.parseJSON(jqXHR.responseText)["errors"]; return new DS.InvalidError(jsonErrors); } else { return error; } } }); ``` The `DS.InvalidError` must be constructed with a single object whose keys are the invalid model properties, and whose values are the corresponding error messages. For example: ```javascript return new DS.InvalidError({ length: 'Must be less than 15', name: 'Must not be blank }); ``` @class InvalidError @namespace DS */ function InvalidError(errors) { var tmp = Error.prototype.constructor.call(this, "The backend rejected the commit because it was invalid: " + Ember.inspect(errors)); this.errors = errors; for (var i=0, l=errorProps.length; i<l; i++) { this[errorProps[i]] = tmp[errorProps[i]]; } } InvalidError.prototype = Ember.create(Error.prototype); /** An adapter is an object that receives requests from a store and translates them into the appropriate action to take against your persistence layer. The persistence layer is usually an HTTP API, but may be anything, such as the browser's local storage. Typically the adapter is not invoked directly instead its functionality is accessed through the `store`. ### Creating an Adapter Create a new subclass of `DS.Adapter`, then assign it to the `ApplicationAdapter` property of the application. ```javascript var MyAdapter = DS.Adapter.extend({ // ...your code here }); App.ApplicationAdapter = MyAdapter; ``` Model-specific adapters can be created by assigning your adapter class to the `ModelName` + `Adapter` property of the application. ```javascript var MyPostAdapter = DS.Adapter.extend({ // ...Post-specific adapter code goes here }); App.PostAdapter = MyPostAdapter; ``` `DS.Adapter` is an abstract base class that you should override in your application to customize it for your backend. The minimum set of methods that you should implement is: * `find()` * `createRecord()` * `updateRecord()` * `deleteRecord()` * `findAll()` * `findQuery()` To improve the network performance of your application, you can optimize your adapter by overriding these lower-level methods: * `findMany()` For an example implementation, see `DS.RESTAdapter`, the included REST adapter. @class Adapter @namespace DS @extends Ember.Object */ var Adapter = Ember.Object.extend({ /** If you would like your adapter to use a custom serializer you can set the `defaultSerializer` property to be the name of the custom serializer. Note the `defaultSerializer` serializer has a lower priority than a model specific serializer (i.e. `PostSerializer`) or the `application` serializer. ```javascript var DjangoAdapter = DS.Adapter.extend({ defaultSerializer: 'django' }); ``` @property defaultSerializer @type {String} */ /** The `find()` method is invoked when the store is asked for a record that has not previously been loaded. In response to `find()` being called, you should query your persistence layer for a record with the given ID. Once found, you can asynchronously call the store's `push()` method to push the record into the store. Here is an example `find` implementation: ```javascript App.ApplicationAdapter = DS.Adapter.extend({ find: function(store, type, id) { var url = [type.typeKey, id].join('/'); return new Ember.RSVP.Promise(function(resolve, reject) { jQuery.getJSON(url).then(function(data) { Ember.run(null, resolve, data); }, function(jqXHR) { jqXHR.then = null; // tame jQuery's ill mannered promises Ember.run(null, reject, jqXHR); }); }); } }); ``` @method find @param {DS.Store} store @param {subclass of DS.Model} type @param {String} id @return {Promise} promise */ find: Ember.required(Function), /** The `findAll()` method is called when you call `find` on the store without an ID (i.e. `store.find('post')`). Example ```javascript App.ApplicationAdapter = DS.Adapter.extend({ findAll: function(store, type, sinceToken) { var url = type; var query = { since: sinceToken }; return new Ember.RSVP.Promise(function(resolve, reject) { jQuery.getJSON(url, query).then(function(data) { Ember.run(null, resolve, data); }, function(jqXHR) { jqXHR.then = null; // tame jQuery's ill mannered promises Ember.run(null, reject, jqXHR); }); }); } }); ``` @private @method findAll @param {DS.Store} store @param {subclass of DS.Model} type @param {String} sinceToken @return {Promise} promise */ findAll: null, /** This method is called when you call `find` on the store with a query object as the second parameter (i.e. `store.find('person', { page: 1 })`). Example ```javascript App.ApplicationAdapter = DS.Adapter.extend({ findQuery: function(store, type, query) { var url = type; return new Ember.RSVP.Promise(function(resolve, reject) { jQuery.getJSON(url, query).then(function(data) { Ember.run(null, resolve, data); }, function(jqXHR) { jqXHR.then = null; // tame jQuery's ill mannered promises Ember.run(null, reject, jqXHR); }); }); } }); ``` @private @method findQuery @param {DS.Store} store @param {subclass of DS.Model} type @param {Object} query @param {DS.AdapterPopulatedRecordArray} recordArray @return {Promise} promise */ findQuery: null, /** If the globally unique IDs for your records should be generated on the client, implement the `generateIdForRecord()` method. This method will be invoked each time you create a new record, and the value returned from it will be assigned to the record's `primaryKey`. Most traditional REST-like HTTP APIs will not use this method. Instead, the ID of the record will be set by the server, and your adapter will update the store with the new ID when it calls `didCreateRecord()`. Only implement this method if you intend to generate record IDs on the client-side. The `generateIdForRecord()` method will be invoked with the requesting store as the first parameter and the newly created record as the second parameter: ```javascript generateIdForRecord: function(store, record) { var uuid = App.generateUUIDWithStatisticallyLowOddsOfCollision(); return uuid; } ``` @method generateIdForRecord @param {DS.Store} store @param {DS.Model} record @return {String|Number} id */ generateIdForRecord: null, /** Proxies to the serializer's `serialize` method. Example ```javascript App.ApplicationAdapter = DS.Adapter.extend({ createRecord: function(store, type, record) { var data = this.serialize(record, { includeId: true }); var url = type; // ... } }); ``` @method serialize @param {DS.Model} record @param {Object} options @return {Object} serialized record */ serialize: function(record, options) { return get(record, 'store').serializerFor(record.constructor.typeKey).serialize(record, options); }, /** Implement this method in a subclass to handle the creation of new records. Serializes the record and send it to the server. Example ```javascript App.ApplicationAdapter = DS.Adapter.extend({ createRecord: function(store, type, record) { var data = this.serialize(record, { includeId: true }); var url = type; return new Ember.RSVP.Promise(function(resolve, reject) { jQuery.ajax({ type: 'POST', url: url, dataType: 'json', data: data }).then(function(data) { Ember.run(null, resolve, data); }, function(jqXHR) { jqXHR.then = null; // tame jQuery's ill mannered promises Ember.run(null, reject, jqXHR); }); }); } }); ``` @method createRecord @param {DS.Store} store @param {subclass of DS.Model} type the DS.Model class of the record @param {DS.Model} record @return {Promise} promise */ createRecord: Ember.required(Function), /** Implement this method in a subclass to handle the updating of a record. Serializes the record update and send it to the server. Example ```javascript App.ApplicationAdapter = DS.Adapter.extend({ updateRecord: function(store, type, record) { var data = this.serialize(record, { includeId: true }); var id = record.get('id'); var url = [type, id].join('/'); return new Ember.RSVP.Promise(function(resolve, reject) { jQuery.ajax({ type: 'PUT', url: url, dataType: 'json', data: data }).then(function(data) { Ember.run(null, resolve, data); }, function(jqXHR) { jqXHR.then = null; // tame jQuery's ill mannered promises Ember.run(null, reject, jqXHR); }); }); } }); ``` @method updateRecord @param {DS.Store} store @param {subclass of DS.Model} type the DS.Model class of the record @param {DS.Model} record @return {Promise} promise */ updateRecord: Ember.required(Function), /** Implement this method in a subclass to handle the deletion of a record. Sends a delete request for the record to the server. Example ```javascript App.ApplicationAdapter = DS.Adapter.extend({ deleteRecord: function(store, type, record) { var data = this.serialize(record, { includeId: true }); var id = record.get('id'); var url = [type, id].join('/'); return new Ember.RSVP.Promise(function(resolve, reject) { jQuery.ajax({ type: 'DELETE', url: url, dataType: 'json', data: data }).then(function(data) { Ember.run(null, resolve, data); }, function(jqXHR) { jqXHR.then = null; // tame jQuery's ill mannered promises Ember.run(null, reject, jqXHR); }); }); } }); ``` @method deleteRecord @param {DS.Store} store @param {subclass of DS.Model} type the DS.Model class of the record @param {DS.Model} record @return {Promise} promise */ deleteRecord: Ember.required(Function), /** By default the store will try to coalesce all `fetchRecord` calls within the same runloop into as few requests as possible by calling groupRecordsForFindMany and passing it into a findMany call. You can opt out of this behaviour by either not implementing the findMany hook or by setting coalesceFindRequests to false @property coalesceFindRequests @type {boolean} */ coalesceFindRequests: true, /** Find multiple records at once if coalesceFindRequests is true @method findMany @param {DS.Store} store @param {subclass of DS.Model} type the DS.Model class of the records @param {Array} ids @param {Array} records @return {Promise} promise */ /** Organize records into groups, each of which is to be passed to separate calls to `findMany`. For example, if your api has nested URLs that depend on the parent, you will want to group records by their parent. The default implementation returns the records as a single group. @method groupRecordsForFindMany @param {Array} records @return {Array} an array of arrays of records, each of which is to be loaded separately by `findMany`. */ groupRecordsForFindMany: function (store, records) { return [records]; } }); __exports__.InvalidError = InvalidError; __exports__.Adapter = Adapter; __exports__["default"] = Adapter; }); define("ember-data/system/container_proxy", ["exports"], function(__exports__) { "use strict"; /** This is used internally to enable deprecation of container paths and provide a decent message to the user indicating how to fix the issue. @class ContainerProxy @namespace DS @private */ function ContainerProxy(container){ this.container = container; } ContainerProxy.prototype.aliasedFactory = function(path, preLookup) { var _this = this; return {create: function(){ if (preLookup) { preLookup(); } return _this.container.lookup(path); }}; }; ContainerProxy.prototype.registerAlias = function(source, dest, preLookup) { var factory = this.aliasedFactory(dest, preLookup); return this.container.register(source, factory); }; ContainerProxy.prototype.registerDeprecation = function(deprecated, valid) { var preLookupCallback = function(){ }; return this.registerAlias(deprecated, valid, preLookupCallback); }; ContainerProxy.prototype.registerDeprecations = function(proxyPairs) { var i, proxyPair, deprecated, valid; for (i = proxyPairs.length; i > 0; i--) { proxyPair = proxyPairs[i - 1]; deprecated = proxyPair['deprecated']; valid = proxyPair['valid']; this.registerDeprecation(deprecated, valid); } }; __exports__["default"] = ContainerProxy; }); define("ember-data/system/debug", ["ember-data/system/debug/debug_info","ember-data/system/debug/debug_adapter","exports"], function(__dependency1__, __dependency2__, __exports__) { "use strict"; /** @module ember-data */ var DebugAdapter = __dependency2__["default"]; __exports__["default"] = DebugAdapter; }); define("ember-data/system/debug/debug_adapter", ["ember-data/system/model","exports"], function(__dependency1__, __exports__) { "use strict"; /** @module ember-data */ var Model = __dependency1__.Model; var get = Ember.get; var capitalize = Ember.String.capitalize; var underscore = Ember.String.underscore; /** Extend `Ember.DataAdapter` with ED specific code. @class DebugAdapter @namespace DS @extends Ember.DataAdapter @private */ __exports__["default"] = Ember.DataAdapter.extend({ getFilters: function() { return [ { name: 'isNew', desc: 'New' }, { name: 'isModified', desc: 'Modified' }, { name: 'isClean', desc: 'Clean' } ]; }, detect: function(klass) { return klass !== Model && Model.detect(klass); }, columnsForType: function(type) { var columns = [{ name: 'id', desc: 'Id' }]; var count = 0; var self = this; get(type, 'attributes').forEach(function(meta, name) { if (count++ > self.attributeLimit) { return false; } var desc = capitalize(underscore(name).replace('_', ' ')); columns.push({ name: name, desc: desc }); }); return columns; }, getRecords: function(type) { return this.get('store').all(type); }, getRecordColumnValues: function(record) { var self = this, count = 0; var columnValues = { id: get(record, 'id') }; record.eachAttribute(function(key) { if (count++ > self.attributeLimit) { return false; } var value = get(record, key); columnValues[key] = value; }); return columnValues; }, getRecordKeywords: function(record) { var keywords = []; var keys = Ember.A(['id']); record.eachAttribute(function(key) { keys.push(key); }); keys.forEach(function(key) { keywords.push(get(record, key)); }); return keywords; }, getRecordFilterValues: function(record) { return { isNew: record.get('isNew'), isModified: record.get('isDirty') && !record.get('isNew'), isClean: !record.get('isDirty') }; }, getRecordColor: function(record) { var color = 'black'; if (record.get('isNew')) { color = 'green'; } else if (record.get('isDirty')) { color = 'blue'; } return color; }, observeRecord: function(record, recordUpdated) { var releaseMethods = Ember.A(), self = this; var keysToObserve = Ember.A(['id', 'isNew', 'isDirty']); record.eachAttribute(function(key) { keysToObserve.push(key); }); keysToObserve.forEach(function(key) { var handler = function() { recordUpdated(self.wrapRecord(record)); }; Ember.addObserver(record, key, handler); releaseMethods.push(function() { Ember.removeObserver(record, key, handler); }); }); var release = function() { releaseMethods.forEach(function(fn) { fn(); } ); }; return release; } }); }); define("ember-data/system/debug/debug_info", ["ember-data/system/model","exports"], function(__dependency1__, __exports__) { "use strict"; var Model = __dependency1__.Model; Model.reopen({ /** Provides info about the model for debugging purposes by grouping the properties into more semantic groups. Meant to be used by debugging tools such as the Chrome Ember Extension. - Groups all attributes in "Attributes" group. - Groups all belongsTo relationships in "Belongs To" group. - Groups all hasMany relationships in "Has Many" group. - Groups all flags in "Flags" group. - Flags relationship CPs as expensive properties. @method _debugInfo @for DS.Model @private */ _debugInfo: function() { var attributes = ['id'], relationships = { belongsTo: [], hasMany: [] }, expensiveProperties = []; this.eachAttribute(function(name, meta) { attributes.push(name); }, this); this.eachRelationship(function(name, relationship) { relationships[relationship.kind].push(name); expensiveProperties.push(name); }); var groups = [ { name: 'Attributes', properties: attributes, expand: true }, { name: 'Belongs To', properties: relationships.belongsTo, expand: true }, { name: 'Has Many', properties: relationships.hasMany, expand: true }, { name: 'Flags', properties: ['isLoaded', 'isDirty', 'isSaving', 'isDeleted', 'isError', 'isNew', 'isValid'] } ]; return { propertyInfo: { // include all other mixins / properties (not just the grouped ones) includeOtherProperties: true, groups: groups, // don't pre-calculate unless cached expensiveProperties: expensiveProperties } }; } }); __exports__["default"] = Model; }); define("ember-data/system/map", ["exports"], function(__exports__) { "use strict"; /** * Polyfill Ember.Map behavior for Ember <= 1.7 * This can probably be removed before 1.0 final */ var mapForEach, deleteFn; function OrderedSet(){ Ember.OrderedSet.apply(this, arguments); } function Map() { Ember.Map.apply(this, arguments); } function MapWithDefault(){ Ember.MapWithDefault.apply(this, arguments); } var testMap = Ember.Map.create(); testMap.set('key', 'value'); var usesOldBehavior = false; testMap.forEach(function(value, key){ usesOldBehavior = value === 'key' && key === 'value'; }); Map.prototype = Object.create(Ember.Map.prototype); MapWithDefault.prototype = Object.create(Ember.MapWithDefault.prototype); OrderedSet.prototype = Object.create(Ember.OrderedSet.prototype); OrderedSet.create = function(){ return new OrderedSet(); }; /** * returns a function that calls the original * callback function in the correct order. * if we are in pre-Ember.1.8 land, Map/MapWithDefault * forEach calls with key, value, in that order. * >= 1.8 forEach is called with the order value, key as per * the ES6 spec. */ function translate(valueKeyOrderedCallback){ return function(key, value){ valueKeyOrderedCallback.call(this, value, key); }; } // old, non ES6 compliant behavior if (usesOldBehavior){ mapForEach = function(callback, thisArg){ this.__super$forEach(translate(callback), thisArg); }; /* alias to remove */ deleteFn = function(thing){ this.remove(thing); }; Map.prototype.__super$forEach = Ember.Map.prototype.forEach; Map.prototype.forEach = mapForEach; Map.prototype["delete"] = deleteFn; MapWithDefault.prototype.forEach = mapForEach; MapWithDefault.prototype.__super$forEach = Ember.MapWithDefault.prototype.forEach; MapWithDefault.prototype["delete"] = deleteFn; OrderedSet.prototype["delete"] = deleteFn; } MapWithDefault.constructor = MapWithDefault; Map.constructor = Map; MapWithDefault.create = function(options){ if (options) { return new MapWithDefault(options); } else { return new Map(); } }; Map.create = function(){ return new this.constructor(); }; __exports__["default"] = Map; __exports__.Map = Map; __exports__.MapWithDefault = MapWithDefault; __exports__.OrderedSet = OrderedSet; }); define("ember-data/system/model", ["ember-data/system/model/model","ember-data/system/model/attributes","ember-data/system/model/states","ember-data/system/model/errors","exports"], function(__dependency1__, __dependency2__, __dependency3__, __dependency4__, __exports__) { "use strict"; /** @module ember-data */ var Model = __dependency1__["default"]; var attr = __dependency2__["default"]; var RootState = __dependency3__["default"]; var Errors = __dependency4__["default"]; __exports__.Model = Model; __exports__.RootState = RootState; __exports__.attr = attr; __exports__.Errors = Errors; }); define("ember-data/system/model/attributes", ["ember-data/system/model/model","ember-data/system/map","exports"], function(__dependency1__, __dependency2__, __exports__) { "use strict"; var Model = __dependency1__["default"]; var Map = __dependency2__.Map; /** @module ember-data */ var get = Ember.get; /** @class Model @namespace DS */ Model.reopenClass({ /** A map whose keys are the attributes of the model (properties described by DS.attr) and whose values are the meta object for the property. Example ```javascript App.Person = DS.Model.extend({ firstName: attr('string'), lastName: attr('string'), birthday: attr('date') }); var attributes = Ember.get(App.Person, 'attributes') attributes.forEach(function(name, meta) { console.log(name, meta); }); // prints: // firstName {type: "string", isAttribute: true, options: Object, parentType: function, name: "firstName"} // lastName {type: "string", isAttribute: true, options: Object, parentType: function, name: "lastName"} // birthday {type: "date", isAttribute: true, options: Object, parentType: function, name: "birthday"} ``` @property attributes @static @type {Ember.Map} @readOnly */ attributes: Ember.computed(function() { var map = Map.create(); this.eachComputedProperty(function(name, meta) { if (meta.isAttribute) { meta.name = name; map.set(name, meta); } }); return map; }).readOnly(), /** A map whose keys are the attributes of the model (properties described by DS.attr) and whose values are type of transformation applied to each attribute. This map does not include any attributes that do not have an transformation type. Example ```javascript App.Person = DS.Model.extend({ firstName: attr(), lastName: attr('string'), birthday: attr('date') }); var transformedAttributes = Ember.get(App.Person, 'transformedAttributes') transformedAttributes.forEach(function(field, type) { console.log(field, type); }); // prints: // lastName string // birthday date ``` @property transformedAttributes @static @type {Ember.Map} @readOnly */ transformedAttributes: Ember.computed(function() { var map = Map.create(); this.eachAttribute(function(key, meta) { if (meta.type) { map.set(key, meta.type); } }); return map; }).readOnly(), /** Iterates through the attributes of the model, calling the passed function on each attribute. The callback method you provide should have the following signature (all parameters are optional): ```javascript function(name, meta); ``` - `name` the name of the current property in the iteration - `meta` the meta object for the attribute property in the iteration Note that in addition to a callback, you can also pass an optional target object that will be set as `this` on the context. Example ```javascript App.Person = DS.Model.extend({ firstName: attr('string'), lastName: attr('string'), birthday: attr('date') }); App.Person.eachAttribute(function(name, meta) { console.log(name, meta); }); // prints: // firstName {type: "string", isAttribute: true, options: Object, parentType: function, name: "firstName"} // lastName {type: "string", isAttribute: true, options: Object, parentType: function, name: "lastName"} // birthday {type: "date", isAttribute: true, options: Object, parentType: function, name: "birthday"} ``` @method eachAttribute @param {Function} callback The callback to execute @param {Object} [target] The target object to use @static */ eachAttribute: function(callback, binding) { get(this, 'attributes').forEach(function(meta, name) { callback.call(binding, name, meta); }, binding); }, /** Iterates through the transformedAttributes of the model, calling the passed function on each attribute. Note the callback will not be called for any attributes that do not have an transformation type. The callback method you provide should have the following signature (all parameters are optional): ```javascript function(name, type); ``` - `name` the name of the current property in the iteration - `type` a string containing the name of the type of transformed applied to the attribute Note that in addition to a callback, you can also pass an optional target object that will be set as `this` on the context. Example ```javascript App.Person = DS.Model.extend({ firstName: attr(), lastName: attr('string'), birthday: attr('date') }); App.Person.eachTransformedAttribute(function(name, type) { console.log(name, type); }); // prints: // lastName string // birthday date ``` @method eachTransformedAttribute @param {Function} callback The callback to execute @param {Object} [target] The target object to use @static */ eachTransformedAttribute: function(callback, binding) { get(this, 'transformedAttributes').forEach(function(type, name) { callback.call(binding, name, type); }); } }); Model.reopen({ eachAttribute: function(callback, binding) { this.constructor.eachAttribute(callback, binding); } }); function getDefaultValue(record, options, key) { if (typeof options.defaultValue === "function") { return options.defaultValue.apply(null, arguments); } else { return options.defaultValue; } } function hasValue(record, key) { return record._attributes.hasOwnProperty(key) || record._inFlightAttributes.hasOwnProperty(key) || record._data.hasOwnProperty(key); } function getValue(record, key) { if (record._attributes.hasOwnProperty(key)) { return record._attributes[key]; } else if (record._inFlightAttributes.hasOwnProperty(key)) { return record._inFlightAttributes[key]; } else { return record._data[key]; } } /** `DS.attr` defines an attribute on a [DS.Model](/api/data/classes/DS.Model.html). By default, attributes are passed through as-is, however you can specify an optional type to have the value automatically transformed. Ember Data ships with four basic transform types: `string`, `number`, `boolean` and `date`. You can define your own transforms by subclassing [DS.Transform](/api/data/classes/DS.Transform.html). Note that you cannot use `attr` to define an attribute of `id`. `DS.attr` takes an optional hash as a second parameter, currently supported options are: - `defaultValue`: Pass a string or a function to be called to set the attribute to a default value if none is supplied. Example ```javascript var attr = DS.attr; App.User = DS.Model.extend({ username: attr('string'), email: attr('string'), verified: attr('boolean', {defaultValue: false}) }); ``` @namespace @method attr @for DS @param {String} type the attribute type @param {Object} options a hash of options @return {Attribute} */ __exports__["default"] = function attr(type, options) { options = options || {}; var meta = { type: type, isAttribute: true, options: options }; return Ember.computed('data', function(key, value) { if (arguments.length > 1) { var oldValue = getValue(this, key); if (value !== oldValue) { // Add the new value to the changed attributes hash; it will get deleted by // the 'didSetProperty' handler if it is no different from the original value this._attributes[key] = value; this.send('didSetProperty', { name: key, oldValue: oldValue, originalValue: this._data[key], value: value }); } return value; } else if (hasValue(this, key)) { return getValue(this, key); } else { return getDefaultValue(this, options, key); } // `data` is never set directly. However, it may be // invalidated from the state manager's setData // event. }).meta(meta); }; }); define("ember-data/system/model/errors", ["ember-data/system/map","exports"], function(__dependency1__, __exports__) { "use strict"; var get = Ember.get; var isEmpty = Ember.isEmpty; var map = Ember.EnumerableUtils.map; var MapWithDefault = __dependency1__.MapWithDefault; /** @module ember-data */ /** Holds validation errors for a given record organized by attribute names. Every DS.Model has an `errors` property that is an instance of `DS.Errors`. This can be used to display validation error messages returned from the server when a `record.save()` rejects. This works automatically with `DS.ActiveModelAdapter`, but you can implement [ajaxError](api/data/classes/DS.RESTAdapter.html#method_ajaxError) in other adapters as well. For Example, if you had an `User` model that looked like this: ```javascript App.User = DS.Model.extend({ username: attr('string'), email: attr('string') }); ``` And you attempted to save a record that did not validate on the backend. ```javascript var user = store.createRecord('user', { username: 'tomster', email: 'invalidEmail' }); user.save(); ``` Your backend data store might return a response that looks like this. This response will be used to populate the error object. ```javascript { "errors": { "username": ["This username is already taken!"], "email": ["Doesn't look like a valid email."] } } ``` Errors can be displayed to the user by accessing their property name or using the `messages` property to get an array of all errors. ```handlebars {{#each errors.messages}} <div class="error"> {{message}} </div> {{/each}} <label>Username: {{input value=username}} </label> {{#each errors.username}} <div class="error"> {{message}} </div> {{/each}} <label>Email: {{input value=email}} </label> {{#each errors.email}} <div class="error"> {{message}} </div> {{/each}} ``` @class Errors @namespace DS @extends Ember.Object @uses Ember.Enumerable @uses Ember.Evented */ __exports__["default"] = Ember.Object.extend(Ember.Enumerable, Ember.Evented, { /** Register with target handler @method registerHandlers @param {Object} target @param {Function} becameInvalid @param {Function} becameValid */ registerHandlers: function(target, becameInvalid, becameValid) { this.on('becameInvalid', target, becameInvalid); this.on('becameValid', target, becameValid); }, /** @property errorsByAttributeName @type {Ember.MapWithDefault} @private */ errorsByAttributeName: Ember.reduceComputed("content", { initialValue: function() { return MapWithDefault.create({ defaultValue: function() { return Ember.A(); } }); }, addedItem: function(errors, error) { errors.get(error.attribute).pushObject(error); return errors; }, removedItem: function(errors, error) { errors.get(error.attribute).removeObject(error); return errors; } }), /** Returns errors for a given attribute ```javascript var user = store.createRecord('user', { username: 'tomster', email: 'invalidEmail' }); user.save().catch(function(){ user.get('errors').errorsFor('email'); // ["Doesn't look like a valid email."] }); ``` @method errorsFor @param {String} attribute @return {Array} */ errorsFor: function(attribute) { return get(this, 'errorsByAttributeName').get(attribute); }, /** An array containing all of the error messages for this record. This is useful for displaying all errors to the user. ```handlebars {{#each errors.messages}} <div class="error"> {{message}} </div> {{/each}} ``` @property messages @type {Array} */ messages: Ember.computed.mapBy('content', 'message'), /** @property content @type {Array} @private */ content: Ember.computed(function() { return Ember.A(); }), /** @method unknownProperty @private */ unknownProperty: function(attribute) { var errors = this.errorsFor(attribute); if (isEmpty(errors)) { return null; } return errors; }, /** @method nextObject @private */ nextObject: function(index, previousObject, context) { return get(this, 'content').objectAt(index); }, /** Total number of errors. @property length @type {Number} @readOnly */ length: Ember.computed.oneWay('content.length').readOnly(), /** @property isEmpty @type {Boolean} @readOnly */ isEmpty: Ember.computed.not('length').readOnly(), /** Adds error messages to a given attribute and sends `becameInvalid` event to the record. Example: ```javascript if (!user.get('username') { user.get('errors').add('username', 'This field is required'); } ``` @method add @param {String} attribute @param {Array|String} messages */ add: function(attribute, messages) { var wasEmpty = get(this, 'isEmpty'); messages = this._findOrCreateMessages(attribute, messages); get(this, 'content').addObjects(messages); this.notifyPropertyChange(attribute); this.enumerableContentDidChange(); if (wasEmpty && !get(this, 'isEmpty')) { this.trigger('becameInvalid'); } }, /** @method _findOrCreateMessages @private */ _findOrCreateMessages: function(attribute, messages) { var errors = this.errorsFor(attribute); return map(Ember.makeArray(messages), function(message) { return errors.findBy('message', message) || { attribute: attribute, message: message }; }); }, /** Removes all error messages from the given attribute and sends `becameValid` event to the record if there no more errors left. Example: ```javascript App.User = DS.Model.extend({ email: DS.attr('string'), twoFactorAuth: DS.attr('boolean'), phone: DS.attr('string') }); App.UserEditRoute = Ember.Route.extend({ actions: { save: function(user) { if (!user.get('twoFactorAuth')) { user.get('errors').remove('phone'); } user.save(); } } }); ``` @method remove @param {String} attribute */ remove: function(attribute) { if (get(this, 'isEmpty')) { return; } var content = get(this, 'content').rejectBy('attribute', attribute); get(this, 'content').setObjects(content); this.notifyPropertyChange(attribute); this.enumerableContentDidChange(); if (get(this, 'isEmpty')) { this.trigger('becameValid'); } }, /** Removes all error messages and sends `becameValid` event to the record. Example: ```javascript App.UserEditRoute = Ember.Route.extend({ actions: { retrySave: function(user) { user.get('errors').clear(); user.save(); } } }); ``` @method clear */ clear: function() { if (get(this, 'isEmpty')) { return; } get(this, 'content').clear(); this.enumerableContentDidChange(); this.trigger('becameValid'); }, /** Checks if there is error messages for the given attribute. ```javascript App.UserEditRoute = Ember.Route.extend({ actions: { save: function(user) { if (user.get('errors').has('email')) { return alert('Please update your email before attempting to save.'); } user.save(); } } }); ``` @method has @param {String} attribute @return {Boolean} true if there some errors on given attribute */ has: function(attribute) { return !isEmpty(this.errorsFor(attribute)); } }); }); define("ember-data/system/model/model", ["ember-data/system/model/states","ember-data/system/model/errors","ember-data/system/promise_proxies","ember-data/system/relationships/relationship","exports"], function(__dependency1__, __dependency2__, __dependency3__, __dependency4__, __exports__) { "use strict"; var RootState = __dependency1__["default"]; var Errors = __dependency2__["default"]; var PromiseObject = __dependency3__.PromiseObject; var createRelationshipFor = __dependency4__.createRelationshipFor; /** @module ember-data */ var get = Ember.get; var set = Ember.set; var merge = Ember.merge; var Promise = Ember.RSVP.Promise; var forEach = Ember.ArrayPolyfills.forEach; var map = Ember.ArrayPolyfills.map; var JSONSerializer; var retrieveFromCurrentState = Ember.computed('currentState', function(key, value) { return get(get(this, 'currentState'), key); }).readOnly(); var _extractPivotNameCache = Object.create(null); var _splitOnDotCache = Object.create(null); function splitOnDot(name) { return _splitOnDotCache[name] || ( _splitOnDotCache[name] = name.split('.') ); } function extractPivotName(name) { return _extractPivotNameCache[name] || ( _extractPivotNameCache[name] = splitOnDot(name)[0] ); } /** The model class that all Ember Data records descend from. @class Model @namespace DS @extends Ember.Object @uses Ember.Evented */ var Model = Ember.Object.extend(Ember.Evented, { _recordArrays: undefined, _relationships: undefined, _loadingRecordArrays: undefined, /** If this property is `true` the record is in the `empty` state. Empty is the first state all records enter after they have been created. Most records created by the store will quickly transition to the `loading` state if data needs to be fetched from the server or the `created` state if the record is created on the client. A record can also enter the empty state if the adapter is unable to locate the record. @property isEmpty @type {Boolean} @readOnly */ isEmpty: retrieveFromCurrentState, /** If this property is `true` the record is in the `loading` state. A record enters this state when the store asks the adapter for its data. It remains in this state until the adapter provides the requested data. @property isLoading @type {Boolean} @readOnly */ isLoading: retrieveFromCurrentState, /** If this property is `true` the record is in the `loaded` state. A record enters this state when its data is populated. Most of a record's lifecycle is spent inside substates of the `loaded` state. Example ```javascript var record = store.createRecord('model'); record.get('isLoaded'); // true store.find('model', 1).then(function(model) { model.get('isLoaded'); // true }); ``` @property isLoaded @type {Boolean} @readOnly */ isLoaded: retrieveFromCurrentState, /** If this property is `true` the record is in the `dirty` state. The record has local changes that have not yet been saved by the adapter. This includes records that have been created (but not yet saved) or deleted. Example ```javascript var record = store.createRecord('model'); record.get('isDirty'); // true store.find('model', 1).then(function(model) { model.get('isDirty'); // false model.set('foo', 'some value'); model.get('isDirty'); // true }); ``` @property isDirty @type {Boolean} @readOnly */ isDirty: retrieveFromCurrentState, /** If this property is `true` the record is in the `saving` state. A record enters the saving state when `save` is called, but the adapter has not yet acknowledged that the changes have been persisted to the backend. Example ```javascript var record = store.createRecord('model'); record.get('isSaving'); // false var promise = record.save(); record.get('isSaving'); // true promise.then(function() { record.get('isSaving'); // false }); ``` @property isSaving @type {Boolean} @readOnly */ isSaving: retrieveFromCurrentState, /** If this property is `true` the record is in the `deleted` state and has been marked for deletion. When `isDeleted` is true and `isDirty` is true, the record is deleted locally but the deletion was not yet persisted. When `isSaving` is true, the change is in-flight. When both `isDirty` and `isSaving` are false, the change has persisted. Example ```javascript var record = store.createRecord('model'); record.get('isDeleted'); // false record.deleteRecord(); // Locally deleted record.get('isDeleted'); // true record.get('isDirty'); // true record.get('isSaving'); // false // Persisting the deletion var promise = record.save(); record.get('isDeleted'); // true record.get('isSaving'); // true // Deletion Persisted promise.then(function() { record.get('isDeleted'); // true record.get('isSaving'); // false record.get('isDirty'); // false }); ``` @property isDeleted @type {Boolean} @readOnly */ isDeleted: retrieveFromCurrentState, /** If this property is `true` the record is in the `new` state. A record will be in the `new` state when it has been created on the client and the adapter has not yet report that it was successfully saved. Example ```javascript var record = store.createRecord('model'); record.get('isNew'); // true record.save().then(function(model) { model.get('isNew'); // false }); ``` @property isNew @type {Boolean} @readOnly */ isNew: retrieveFromCurrentState, /** If this property is `true` the record is in the `valid` state. A record will be in the `valid` state when the adapter did not report any server-side validation failures. @property isValid @type {Boolean} @readOnly */ isValid: retrieveFromCurrentState, /** If the record is in the dirty state this property will report what kind of change has caused it to move into the dirty state. Possible values are: - `created` The record has been created by the client and not yet saved to the adapter. - `updated` The record has been updated by the client and not yet saved to the adapter. - `deleted` The record has been deleted by the client and not yet saved to the adapter. Example ```javascript var record = store.createRecord('model'); record.get('dirtyType'); // 'created' ``` @property dirtyType @type {String} @readOnly */ dirtyType: retrieveFromCurrentState, /** If `true` the adapter reported that it was unable to save local changes to the backend for any reason other than a server-side validation error. Example ```javascript record.get('isError'); // false record.set('foo', 'valid value'); record.save().then(null, function() { record.get('isError'); // true }); ``` @property isError @type {Boolean} @readOnly */ isError: false, /** If `true` the store is attempting to reload the record form the adapter. Example ```javascript record.get('isReloading'); // false record.reload(); record.get('isReloading'); // true ``` @property isReloading @type {Boolean} @readOnly */ isReloading: false, /** The `clientId` property is a transient numerical identifier generated at runtime by the data store. It is important primarily because newly created objects may not yet have an externally generated id. @property clientId @private @type {Number|String} */ clientId: null, /** All ember models have an id property. This is an identifier managed by an external source. These are always coerced to be strings before being used internally. Note when declaring the attributes for a model it is an error to declare an id attribute. ```javascript var record = store.createRecord('model'); record.get('id'); // null store.find('model', 1).then(function(model) { model.get('id'); // '1' }); ``` @property id @type {String} */ id: null, /** @property currentState @private @type {Object} */ currentState: RootState.empty, /** When the record is in the `invalid` state this object will contain any errors returned by the adapter. When present the errors hash typically contains keys corresponding to the invalid property names and values which are an array of error messages. ```javascript record.get('errors.length'); // 0 record.set('foo', 'invalid value'); record.save().then(null, function() { record.get('errors').get('foo'); // ['foo should be a number.'] }); ``` @property errors @type {DS.Errors} */ errors: Ember.computed(function() { var errors = Errors.create(); errors.registerHandlers(this, function() { this.send('becameInvalid'); }, function() { this.send('becameValid'); }); return errors; }).readOnly(), /** Create a JSON representation of the record, using the serialization strategy of the store's adapter. `serialize` takes an optional hash as a parameter, currently supported options are: - `includeId`: `true` if the record's ID should be included in the JSON representation. @method serialize @param {Object} options @return {Object} an object whose values are primitive JSON values only */ serialize: function(options) { var store = get(this, 'store'); return store.serialize(this, options); }, /** Use [DS.JSONSerializer](DS.JSONSerializer.html) to get the JSON representation of a record. `toJSON` takes an optional hash as a parameter, currently supported options are: - `includeId`: `true` if the record's ID should be included in the JSON representation. @method toJSON @param {Object} options @return {Object} A JSON representation of the object. */ toJSON: function(options) { if (!JSONSerializer) { JSONSerializer = requireModule("ember-data/serializers/json_serializer")["default"]; } // container is for lazy transform lookups var serializer = JSONSerializer.create({ container: this.container }); return serializer.serialize(this, options); }, /** Fired when the record is loaded from the server. @event didLoad */ didLoad: Ember.K, /** Fired when the record is updated. @event didUpdate */ didUpdate: Ember.K, /** Fired when the record is created. @event didCreate */ didCreate: Ember.K, /** Fired when the record is deleted. @event didDelete */ didDelete: Ember.K, /** Fired when the record becomes invalid. @event becameInvalid */ becameInvalid: Ember.K, /** Fired when the record enters the error state. @event becameError */ becameError: Ember.K, /** @property data @private @type {Object} */ data: Ember.computed(function() { this._data = this._data || {}; return this._data; }).readOnly(), _data: null, init: function() { this._super(); this._setup(); }, _setup: function() { this._changesToSync = {}; this._deferredTriggers = []; this._data = {}; this._attributes = {}; this._inFlightAttributes = {}; this._relationships = {}; /* implicit relationships are relationship which have not been declared but the inverse side exists on another record somewhere For example if there was ``` App.Comment = DS.Model.extend({ name: DS.attr() }) ``` but there is also ``` App.Post = DS.Model.extend({ name: DS.attr(), comments: DS.hasMany('comment') }) ``` would have a implicit post relationship in order to be do things like remove ourselves from the post when we are deleted */ this._implicitRelationships = Object.create(null); var model = this; //TODO Move into a getter for better perf this.constructor.eachRelationship(function(key, descriptor) { model._relationships[key] = createRelationshipFor(model, descriptor, model.store); }); }, /** @method send @private @param {String} name @param {Object} context */ send: function(name, context) { var currentState = get(this, 'currentState'); if (!currentState[name]) { this._unhandledEvent(currentState, name, context); } return currentState[name](this, context); }, /** @method transitionTo @private @param {String} name */ transitionTo: function(name) { // POSSIBLE TODO: Remove this code and replace with // always having direct references to state objects var pivotName = extractPivotName(name); var currentState = get(this, 'currentState'); var state = currentState; do { if (state.exit) { state.exit(this); } state = state.parentState; } while (!state.hasOwnProperty(pivotName)); var path = splitOnDot(name); var setups = [], enters = [], i, l; for (i=0, l=path.length; i<l; i++) { state = state[path[i]]; if (state.enter) { enters.push(state); } if (state.setup) { setups.push(state); } } for (i=0, l=enters.length; i<l; i++) { enters[i].enter(this); } set(this, 'currentState', state); for (i=0, l=setups.length; i<l; i++) { setups[i].setup(this); } this.updateRecordArraysLater(); }, _unhandledEvent: function(state, name, context) { var errorMessage = "Attempted to handle event `" + name + "` "; errorMessage += "on " + String(this) + " while in state "; errorMessage += state.stateName + ". "; if (context !== undefined) { errorMessage += "Called with " + Ember.inspect(context) + "."; } throw new Ember.Error(errorMessage); }, withTransaction: function(fn) { var transaction = get(this, 'transaction'); if (transaction) { fn(transaction); } }, /** @method loadingData @private @param {Promise} promise */ loadingData: function(promise) { this.send('loadingData', promise); }, /** @method loadedData @private */ loadedData: function() { this.send('loadedData'); }, /** @method notFound @private */ notFound: function() { this.send('notFound'); }, /** @method pushedData @private */ pushedData: function() { this.send('pushedData'); }, /** Marks the record as deleted but does not save it. You must call `save` afterwards if you want to persist it. You might use this method if you want to allow the user to still `rollback()` a delete after it was made. Example ```javascript App.ModelDeleteRoute = Ember.Route.extend({ actions: { softDelete: function() { this.controller.get('model').deleteRecord(); }, confirm: function() { this.controller.get('model').save(); }, undo: function() { this.controller.get('model').rollback(); } } }); ``` @method deleteRecord */ deleteRecord: function() { this.send('deleteRecord'); }, /** Same as `deleteRecord`, but saves the record immediately. Example ```javascript App.ModelDeleteRoute = Ember.Route.extend({ actions: { delete: function() { var controller = this.controller; controller.get('model').destroyRecord().then(function() { controller.transitionToRoute('model.index'); }); } } }); ``` @method destroyRecord @return {Promise} a promise that will be resolved when the adapter returns successfully or rejected if the adapter returns with an error. */ destroyRecord: function() { this.deleteRecord(); return this.save(); }, /** @method unloadRecord @private */ unloadRecord: function() { if (this.isDestroyed) { return; } this.send('unloadRecord'); }, /** @method clearRelationships @private */ clearRelationships: function() { this.eachRelationship(function(name, relationship) { var rel = this._relationships[name]; if (rel){ //TODO(Igor) figure out whether we want to clear or disconnect rel.clear(); rel.destroy(); } }, this); }, disconnectRelationships: function() { this.eachRelationship(function(name, relationship) { this._relationships[name].disconnect(); }, this); var model = this; forEach.call(Ember.keys(this._implicitRelationships), function(key) { model._implicitRelationships[key].disconnect(); }); }, reconnectRelationships: function() { this.eachRelationship(function(name, relationship) { this._relationships[name].reconnect(); }, this); var model = this; forEach.call(Ember.keys(this._implicitRelationships), function(key) { model._implicitRelationships[key].reconnect(); }); }, /** @method updateRecordArrays @private */ updateRecordArrays: function() { this._updatingRecordArraysLater = false; get(this, 'store').dataWasUpdated(this.constructor, this); }, /** When a find request is triggered on the store, the user can optionally pass in attributes and relationships to be preloaded. These are meant to behave as if they came back from the server, except the user obtained them out of band and is informing the store of their existence. The most common use case is for supporting client side nested URLs, such as `/posts/1/comments/2` so the user can do `store.find('comment', 2, {post:1})` without having to fetch the post. Preloaded data can be attributes and relationships passed in either as IDs or as actual models. @method _preloadData @private @param {Object} preload */ _preloadData: function(preload) { var record = this; //TODO(Igor) consider the polymorphic case forEach.call(Ember.keys(preload), function(key) { var preloadValue = get(preload, key); var relationshipMeta = record.constructor.metaForProperty(key); if (relationshipMeta.isRelationship) { record._preloadRelationship(key, preloadValue); } else { get(record, '_data')[key] = preloadValue; } }); }, _preloadRelationship: function(key, preloadValue) { var relationshipMeta = this.constructor.metaForProperty(key); var type = relationshipMeta.type; if (relationshipMeta.kind === 'hasMany'){ this._preloadHasMany(key, preloadValue, type); } else { this._preloadBelongsTo(key, preloadValue, type); } }, _preloadHasMany: function(key, preloadValue, type) { var record = this; var recordsToSet = map.call(preloadValue, function(recordToPush) { return record._convertStringOrNumberIntoRecord(recordToPush, type); }); //We use the pathway of setting the hasMany as if it came from the adapter //because the user told us that they know this relationships exists already this._relationships[key].updateRecordsFromAdapter(recordsToSet); }, _preloadBelongsTo: function(key, preloadValue, type){ var recordToSet = this._convertStringOrNumberIntoRecord(preloadValue, type); //We use the pathway of setting the hasMany as if it came from the adapter //because the user told us that they know this relationships exists already this._relationships[key].setRecord(recordToSet); }, _convertStringOrNumberIntoRecord: function(value, type) { if (Ember.typeOf(value) === 'string' || Ember.typeOf(value) === 'number'){ return this.store.recordForId(type, value); } return value; }, /** Returns an object, whose keys are changed properties, and value is an [oldProp, newProp] array. Example ```javascript App.Mascot = DS.Model.extend({ name: attr('string') }); var person = store.createRecord('person'); person.changedAttributes(); // {} person.set('name', 'Tomster'); person.changedAttributes(); // {name: [undefined, 'Tomster']} ``` @method changedAttributes @return {Object} an object, whose keys are changed properties, and value is an [oldProp, newProp] array. */ changedAttributes: function() { var oldData = get(this, '_data'); var newData = get(this, '_attributes'); var diffData = {}; var prop; for (prop in newData) { diffData[prop] = [oldData[prop], newData[prop]]; } return diffData; }, /** @method adapterWillCommit @private */ adapterWillCommit: function() { this.send('willCommit'); }, /** If the adapter did not return a hash in response to a commit, merge the changed attributes and relationships into the existing saved data. @method adapterDidCommit */ adapterDidCommit: function(data) { set(this, 'isError', false); if (data) { this._data = data; } else { Ember.mixin(this._data, this._inFlightAttributes); } this._inFlightAttributes = {}; this.send('didCommit'); this.updateRecordArraysLater(); if (!data) { return; } this.notifyPropertyChange('data'); }, /** @method adapterDidDirty @private */ adapterDidDirty: function() { this.send('becomeDirty'); this.updateRecordArraysLater(); }, /** @method updateRecordArraysLater @private */ updateRecordArraysLater: function() { // quick hack (something like this could be pushed into run.once if (this._updatingRecordArraysLater) { return; } this._updatingRecordArraysLater = true; Ember.run.schedule('actions', this, this.updateRecordArrays); }, /** @method setupData @private @param {Object} data @param {Boolean} partial the data should be merged into the existing data, not replace it. */ setupData: function(data, partial) { if (partial) { Ember.merge(this._data, data); } else { this._data = data; } if (data) { this.pushedData(); } this.notifyPropertyChange('data'); }, materializeId: function(id) { set(this, 'id', id); }, materializeAttributes: function(attributes) { merge(this._data, attributes); }, materializeAttribute: function(name, value) { this._data[name] = value; }, /** If the model `isDirty` this function will discard any unsaved changes Example ```javascript record.get('name'); // 'Untitled Document' record.set('name', 'Doc 1'); record.get('name'); // 'Doc 1' record.rollback(); record.get('name'); // 'Untitled Document' ``` @method rollback */ rollback: function() { this._attributes = {}; if (get(this, 'isError')) { this._inFlightAttributes = {}; set(this, 'isError', false); } //Eventually rollback will always work for relationships //For now we support it only out of deleted state, because we //have an explicit way of knowing when the server acked the relationship change if (get(this, 'isDeleted')) { this.reconnectRelationships(); } if (!get(this, 'isValid')) { this._inFlightAttributes = {}; } this.send('rolledBack'); this.notifyPropertyChange('data'); }, toStringExtension: function() { return get(this, 'id'); }, /** Save the record and persist any changes to the record to an external source via the adapter. Example ```javascript record.set('name', 'Tomster'); record.save().then(function(){ // Success callback }, function() { // Error callback }); ``` @method save @return {Promise} a promise that will be resolved when the adapter returns successfully or rejected if the adapter returns with an error. */ save: function() { var promiseLabel = "DS: Model#save " + this; var resolver = Ember.RSVP.defer(promiseLabel); this.get('store').scheduleSave(this, resolver); this._inFlightAttributes = this._attributes; this._attributes = {}; return PromiseObject.create({ promise: resolver.promise }); }, /** Reload the record from the adapter. This will only work if the record has already finished loading and has not yet been modified (`isLoaded` but not `isDirty`, or `isSaving`). Example ```javascript App.ModelViewRoute = Ember.Route.extend({ actions: { reload: function() { this.controller.get('model').reload(); } } }); ``` @method reload @return {Promise} a promise that will be resolved with the record when the adapter returns successfully or rejected if the adapter returns with an error. */ reload: function() { set(this, 'isReloading', true); var record = this; var promiseLabel = "DS: Model#reload of " + this; var promise = new Promise(function(resolve){ record.send('reloadRecord', resolve); }, promiseLabel).then(function() { record.set('isReloading', false); record.set('isError', false); return record; }, function(reason) { record.set('isError', true); throw reason; }, "DS: Model#reload complete, update flags")['finally'](function () { record.updateRecordArrays(); }); return PromiseObject.create({ promise: promise }); }, // FOR USE DURING COMMIT PROCESS adapterDidUpdateAttribute: function(attributeName, value) { // If a value is passed in, update the internal attributes and clear // the attribute cache so it picks up the new value. Otherwise, // collapse the current value into the internal attributes because // the adapter has acknowledged it. if (value !== undefined) { this._data[attributeName] = value; this.notifyPropertyChange(attributeName); } else { this._data[attributeName] = this._inFlightAttributes[attributeName]; } this.updateRecordArraysLater(); }, /** @method adapterDidInvalidate @private */ adapterDidInvalidate: function(errors) { var recordErrors = get(this, 'errors'); function addError(name) { if (errors[name]) { recordErrors.add(name, errors[name]); } } this.eachAttribute(addError); this.eachRelationship(addError); }, /** @method adapterDidError @private */ adapterDidError: function() { this.send('becameError'); set(this, 'isError', true); }, /** Override the default event firing from Ember.Evented to also call methods with the given name. @method trigger @private @param {String} name */ trigger: function() { var length = arguments.length; var args = new Array(length - 1); var name = arguments[0]; for (var i = 1; i < length; i++ ){ args[i - 1] = arguments[i]; } Ember.tryInvoke(this, name, args); this._super.apply(this, arguments); }, triggerLater: function() { var length = arguments.length; var args = new Array(length); for (var i = 0; i < length; i++ ){ args[i] = arguments[i]; } if (this._deferredTriggers.push(args) !== 1) { return; } Ember.run.schedule('actions', this, '_triggerDeferredTriggers'); }, _triggerDeferredTriggers: function() { for (var i=0, l= this._deferredTriggers.length; i<l; i++) { this.trigger.apply(this, this._deferredTriggers[i]); } this._deferredTriggers.length = 0; }, willDestroy: function() { this._super(); this.clearRelationships(); }, // This is a temporary solution until we refactor DS.Model to not // rely on the data property. willMergeMixin: function(props) { } }); Model.reopenClass({ /** Alias DS.Model's `create` method to `_create`. This allows us to create DS.Model instances from within the store, but if end users accidentally call `create()` (instead of `createRecord()`), we can raise an error. @method _create @private @static */ _create: Model.create, /** Override the class' `create()` method to raise an error. This prevents end users from inadvertently calling `create()` instead of `createRecord()`. The store is still able to create instances by calling the `_create()` method. To create an instance of a `DS.Model` use [store.createRecord](DS.Store.html#method_createRecord). @method create @private @static */ create: function() { throw new Ember.Error("You should not call `create` on a model. Instead, call `store.createRecord` with the attributes you would like to set."); } }); __exports__["default"] = Model; }); define("ember-data/system/model/states", ["exports"], function(__exports__) { "use strict"; /** @module ember-data */ var get = Ember.get; var set = Ember.set; /* This file encapsulates the various states that a record can transition through during its lifecycle. */ /** ### State Each record has a `currentState` property that explicitly tracks what state a record is in at any given time. For instance, if a record is newly created and has not yet been sent to the adapter to be saved, it would be in the `root.loaded.created.uncommitted` state. If a record has had local modifications made to it that are in the process of being saved, the record would be in the `root.loaded.updated.inFlight` state. (This state paths will be explained in more detail below.) Events are sent by the record or its store to the record's `currentState` property. How the state reacts to these events is dependent on which state it is in. In some states, certain events will be invalid and will cause an exception to be raised. States are hierarchical and every state is a substate of the `RootState`. For example, a record can be in the `root.deleted.uncommitted` state, then transition into the `root.deleted.inFlight` state. If a child state does not implement an event handler, the state manager will attempt to invoke the event on all parent states until the root state is reached. The state hierarchy of a record is described in terms of a path string. You can determine a record's current state by getting the state's `stateName` property: ```javascript record.get('currentState.stateName'); //=> "root.created.uncommitted" ``` The hierarchy of valid states that ship with ember data looks like this: ```text * root * deleted * saved * uncommitted * inFlight * empty * loaded * created * uncommitted * inFlight * saved * updated * uncommitted * inFlight * loading ``` The `DS.Model` states are themselves stateless. What that means is that, the hierarchical states that each of *those* points to is a shared data structure. For performance reasons, instead of each record getting its own copy of the hierarchy of states, each record points to this global, immutable shared instance. How does a state know which record it should be acting on? We pass the record instance into the state's event handlers as the first argument. The record passed as the first parameter is where you should stash state about the record if needed; you should never store data on the state object itself. ### Events and Flags A state may implement zero or more events and flags. #### Events Events are named functions that are invoked when sent to a record. The record will first look for a method with the given name on the current state. If no method is found, it will search the current state's parent, and then its grandparent, and so on until reaching the top of the hierarchy. If the root is reached without an event handler being found, an exception will be raised. This can be very helpful when debugging new features. Here's an example implementation of a state with a `myEvent` event handler: ```javascript aState: DS.State.create({ myEvent: function(manager, param) { console.log("Received myEvent with", param); } }) ``` To trigger this event: ```javascript record.send('myEvent', 'foo'); //=> "Received myEvent with foo" ``` Note that an optional parameter can be sent to a record's `send()` method, which will be passed as the second parameter to the event handler. Events should transition to a different state if appropriate. This can be done by calling the record's `transitionTo()` method with a path to the desired state. The state manager will attempt to resolve the state path relative to the current state. If no state is found at that path, it will attempt to resolve it relative to the current state's parent, and then its parent, and so on until the root is reached. For example, imagine a hierarchy like this: * created * uncommitted <-- currentState * inFlight * updated * inFlight If we are currently in the `uncommitted` state, calling `transitionTo('inFlight')` would transition to the `created.inFlight` state, while calling `transitionTo('updated.inFlight')` would transition to the `updated.inFlight` state. Remember that *only events* should ever cause a state transition. You should never call `transitionTo()` from outside a state's event handler. If you are tempted to do so, create a new event and send that to the state manager. #### Flags Flags are Boolean values that can be used to introspect a record's current state in a more user-friendly way than examining its state path. For example, instead of doing this: ```javascript var statePath = record.get('stateManager.currentPath'); if (statePath === 'created.inFlight') { doSomething(); } ``` You can say: ```javascript if (record.get('isNew') && record.get('isSaving')) { doSomething(); } ``` If your state does not set a value for a given flag, the value will be inherited from its parent (or the first place in the state hierarchy where it is defined). The current set of flags are defined below. If you want to add a new flag, in addition to the area below, you will also need to declare it in the `DS.Model` class. * [isEmpty](DS.Model.html#property_isEmpty) * [isLoading](DS.Model.html#property_isLoading) * [isLoaded](DS.Model.html#property_isLoaded) * [isDirty](DS.Model.html#property_isDirty) * [isSaving](DS.Model.html#property_isSaving) * [isDeleted](DS.Model.html#property_isDeleted) * [isNew](DS.Model.html#property_isNew) * [isValid](DS.Model.html#property_isValid) @namespace DS @class RootState */ function didSetProperty(record, context) { if (context.value === context.originalValue) { delete record._attributes[context.name]; record.send('propertyWasReset', context.name); } else if (context.value !== context.oldValue) { record.send('becomeDirty'); } record.updateRecordArraysLater(); } // Implementation notes: // // Each state has a boolean value for all of the following flags: // // * isLoaded: The record has a populated `data` property. When a // record is loaded via `store.find`, `isLoaded` is false // until the adapter sets it. When a record is created locally, // its `isLoaded` property is always true. // * isDirty: The record has local changes that have not yet been // saved by the adapter. This includes records that have been // created (but not yet saved) or deleted. // * isSaving: The record has been committed, but // the adapter has not yet acknowledged that the changes have // been persisted to the backend. // * isDeleted: The record was marked for deletion. When `isDeleted` // is true and `isDirty` is true, the record is deleted locally // but the deletion was not yet persisted. When `isSaving` is // true, the change is in-flight. When both `isDirty` and // `isSaving` are false, the change has persisted. // * isError: The adapter reported that it was unable to save // local changes to the backend. This may also result in the // record having its `isValid` property become false if the // adapter reported that server-side validations failed. // * isNew: The record was created on the client and the adapter // did not yet report that it was successfully saved. // * isValid: The adapter did not report any server-side validation // failures. // The dirty state is a abstract state whose functionality is // shared between the `created` and `updated` states. // // The deleted state shares the `isDirty` flag with the // subclasses of `DirtyState`, but with a very different // implementation. // // Dirty states have three child states: // // `uncommitted`: the store has not yet handed off the record // to be saved. // `inFlight`: the store has handed off the record to be saved, // but the adapter has not yet acknowledged success. // `invalid`: the record has invalid information and cannot be // send to the adapter yet. var DirtyState = { initialState: 'uncommitted', // FLAGS isDirty: true, // SUBSTATES // When a record first becomes dirty, it is `uncommitted`. // This means that there are local pending changes, but they // have not yet begun to be saved, and are not invalid. uncommitted: { // EVENTS didSetProperty: didSetProperty, //TODO(Igor) reloading now triggers a //loadingData event, though it seems fine? loadingData: Ember.K, propertyWasReset: function(record, name) { var length = Ember.keys(record._attributes); var stillDirty = length > 0; if (!stillDirty) { record.send('rolledBack'); } }, pushedData: Ember.K, becomeDirty: Ember.K, willCommit: function(record) { record.transitionTo('inFlight'); }, reloadRecord: function(record, resolve) { resolve(get(record, 'store').reloadRecord(record)); }, rolledBack: function(record) { record.transitionTo('loaded.saved'); }, becameInvalid: function(record) { record.transitionTo('invalid'); }, rollback: function(record) { record.rollback(); } }, // Once a record has been handed off to the adapter to be // saved, it is in the 'in flight' state. Changes to the // record cannot be made during this window. inFlight: { // FLAGS isSaving: true, // EVENTS didSetProperty: didSetProperty, becomeDirty: Ember.K, pushedData: Ember.K, unloadRecord: function(record) { }, // TODO: More robust semantics around save-while-in-flight willCommit: Ember.K, didCommit: function(record) { var dirtyType = get(this, 'dirtyType'); record.transitionTo('saved'); record.send('invokeLifecycleCallbacks', dirtyType); }, becameInvalid: function(record) { record.transitionTo('invalid'); record.send('invokeLifecycleCallbacks'); }, becameError: function(record) { record.transitionTo('uncommitted'); record.triggerLater('becameError', record); } }, // A record is in the `invalid` if the adapter has indicated // the the record failed server-side invalidations. invalid: { // FLAGS isValid: false, // EVENTS deleteRecord: function(record) { record.transitionTo('deleted.uncommitted'); record.disconnectRelationships(); }, didSetProperty: function(record, context) { get(record, 'errors').remove(context.name); didSetProperty(record, context); }, becomeDirty: Ember.K, willCommit: function(record) { get(record, 'errors').clear(); record.transitionTo('inFlight'); }, rolledBack: function(record) { get(record, 'errors').clear(); }, becameValid: function(record) { record.transitionTo('uncommitted'); }, invokeLifecycleCallbacks: function(record) { record.triggerLater('becameInvalid', record); }, exit: function(record) { record._inFlightAttributes = {}; } } }; // The created and updated states are created outside the state // chart so we can reopen their substates and add mixins as // necessary. function deepClone(object) { var clone = {}, value; for (var prop in object) { value = object[prop]; if (value && typeof value === 'object') { clone[prop] = deepClone(value); } else { clone[prop] = value; } } return clone; } function mixin(original, hash) { for (var prop in hash) { original[prop] = hash[prop]; } return original; } function dirtyState(options) { var newState = deepClone(DirtyState); return mixin(newState, options); } var createdState = dirtyState({ dirtyType: 'created', // FLAGS isNew: true }); createdState.uncommitted.rolledBack = function(record) { record.transitionTo('deleted.saved'); }; var updatedState = dirtyState({ dirtyType: 'updated' }); createdState.uncommitted.deleteRecord = function(record) { record.disconnectRelationships(); record.transitionTo('deleted.saved'); }; createdState.uncommitted.rollback = function(record) { DirtyState.uncommitted.rollback.apply(this, arguments); record.transitionTo('deleted.saved'); }; createdState.uncommitted.propertyWasReset = Ember.K; function assertAgainstUnloadRecord(record) { } updatedState.inFlight.unloadRecord = assertAgainstUnloadRecord; updatedState.uncommitted.deleteRecord = function(record) { record.transitionTo('deleted.uncommitted'); record.disconnectRelationships(); }; var RootState = { // FLAGS isEmpty: false, isLoading: false, isLoaded: false, isDirty: false, isSaving: false, isDeleted: false, isNew: false, isValid: true, // DEFAULT EVENTS // Trying to roll back if you're not in the dirty state // doesn't change your state. For example, if you're in the // in-flight state, rolling back the record doesn't move // you out of the in-flight state. rolledBack: Ember.K, unloadRecord: function(record) { // clear relationships before moving to deleted state // otherwise it fails record.clearRelationships(); record.transitionTo('deleted.saved'); }, propertyWasReset: Ember.K, // SUBSTATES // A record begins its lifecycle in the `empty` state. // If its data will come from the adapter, it will // transition into the `loading` state. Otherwise, if // the record is being created on the client, it will // transition into the `created` state. empty: { isEmpty: true, // EVENTS loadingData: function(record, promise) { record._loadingPromise = promise; record.transitionTo('loading'); }, loadedData: function(record) { record.transitionTo('loaded.created.uncommitted'); record.notifyPropertyChange('data'); }, pushedData: function(record) { record.transitionTo('loaded.saved'); record.triggerLater('didLoad'); } }, // A record enters this state when the store asks // the adapter for its data. It remains in this state // until the adapter provides the requested data. // // Usually, this process is asynchronous, using an // XHR to retrieve the data. loading: { // FLAGS isLoading: true, exit: function(record) { record._loadingPromise = null; }, // EVENTS pushedData: function(record) { record.transitionTo('loaded.saved'); record.triggerLater('didLoad'); set(record, 'isError', false); }, becameError: function(record) { record.triggerLater('becameError', record); }, notFound: function(record) { record.transitionTo('empty'); } }, // A record enters this state when its data is populated. // Most of a record's lifecycle is spent inside substates // of the `loaded` state. loaded: { initialState: 'saved', // FLAGS isLoaded: true, //TODO(Igor) Reloading now triggers a loadingData event, //but it should be ok? loadingData: Ember.K, // SUBSTATES // If there are no local changes to a record, it remains // in the `saved` state. saved: { setup: function(record) { var attrs = record._attributes; var isDirty = false; for (var prop in attrs) { if (attrs.hasOwnProperty(prop)) { isDirty = true; break; } } if (isDirty) { record.adapterDidDirty(); } }, // EVENTS didSetProperty: didSetProperty, pushedData: Ember.K, becomeDirty: function(record) { record.transitionTo('updated.uncommitted'); }, willCommit: function(record) { record.transitionTo('updated.inFlight'); }, reloadRecord: function(record, resolve) { resolve(get(record, 'store').reloadRecord(record)); }, deleteRecord: function(record) { record.transitionTo('deleted.uncommitted'); record.disconnectRelationships(); }, unloadRecord: function(record) { // clear relationships before moving to deleted state // otherwise it fails record.clearRelationships(); record.transitionTo('deleted.saved'); }, didCommit: function(record) { record.send('invokeLifecycleCallbacks', get(record, 'lastDirtyType')); }, // loaded.saved.notFound would be triggered by a failed // `reload()` on an unchanged record notFound: Ember.K }, // A record is in this state after it has been locally // created but before the adapter has indicated that // it has been saved. created: createdState, // A record is in this state if it has already been // saved to the server, but there are new local changes // that have not yet been saved. updated: updatedState }, // A record is in this state if it was deleted from the store. deleted: { initialState: 'uncommitted', dirtyType: 'deleted', // FLAGS isDeleted: true, isLoaded: true, isDirty: true, // TRANSITIONS setup: function(record) { record.updateRecordArrays(); }, // SUBSTATES // When a record is deleted, it enters the `start` // state. It will exit this state when the record // starts to commit. uncommitted: { // EVENTS willCommit: function(record) { record.transitionTo('inFlight'); }, rollback: function(record) { record.rollback(); }, becomeDirty: Ember.K, deleteRecord: Ember.K, rolledBack: function(record) { record.transitionTo('loaded.saved'); } }, // After a record starts committing, but // before the adapter indicates that the deletion // has saved to the server, a record is in the // `inFlight` substate of `deleted`. inFlight: { // FLAGS isSaving: true, // EVENTS unloadRecord: assertAgainstUnloadRecord, // TODO: More robust semantics around save-while-in-flight willCommit: Ember.K, didCommit: function(record) { record.transitionTo('saved'); record.send('invokeLifecycleCallbacks'); }, becameError: function(record) { record.transitionTo('uncommitted'); record.triggerLater('becameError', record); } }, // Once the adapter indicates that the deletion has // been saved, the record enters the `saved` substate // of `deleted`. saved: { // FLAGS isDirty: false, setup: function(record) { var store = get(record, 'store'); store.dematerializeRecord(record); }, invokeLifecycleCallbacks: function(record) { record.triggerLater('didDelete', record); record.triggerLater('didCommit', record); }, willCommit: Ember.K, didCommit: Ember.K } }, invokeLifecycleCallbacks: function(record, dirtyType) { if (dirtyType === 'created') { record.triggerLater('didCreate', record); } else { record.triggerLater('didUpdate', record); } record.triggerLater('didCommit', record); } }; function wireState(object, parent, name) { /*jshint proto:true*/ // TODO: Use Object.create and copy instead object = mixin(parent ? Ember.create(parent) : {}, object); object.parentState = parent; object.stateName = name; for (var prop in object) { if (!object.hasOwnProperty(prop) || prop === 'parentState' || prop === 'stateName') { continue; } if (typeof object[prop] === 'object') { object[prop] = wireState(object[prop], object, name + "." + prop); } } return object; } RootState = wireState(RootState, null, "root"); __exports__["default"] = RootState; }); define("ember-data/system/promise_proxies", ["exports"], function(__exports__) { "use strict"; var Promise = Ember.RSVP.Promise; var get = Ember.get; /** A `PromiseArray` is an object that acts like both an `Ember.Array` and a promise. When the promise is resolved the resulting value will be set to the `PromiseArray`'s `content` property. This makes it easy to create data bindings with the `PromiseArray` that will be updated when the promise resolves. For more information see the [Ember.PromiseProxyMixin documentation](/api/classes/Ember.PromiseProxyMixin.html). Example ```javascript var promiseArray = DS.PromiseArray.create({ promise: $.getJSON('/some/remote/data.json') }); promiseArray.get('length'); // 0 promiseArray.then(function() { promiseArray.get('length'); // 100 }); ``` @class PromiseArray @namespace DS @extends Ember.ArrayProxy @uses Ember.PromiseProxyMixin */ var PromiseArray = Ember.ArrayProxy.extend(Ember.PromiseProxyMixin); /** A `PromiseObject` is an object that acts like both an `Ember.Object` and a promise. When the promise is resolved, then the resulting value will be set to the `PromiseObject`'s `content` property. This makes it easy to create data bindings with the `PromiseObject` that will be updated when the promise resolves. For more information see the [Ember.PromiseProxyMixin documentation](/api/classes/Ember.PromiseProxyMixin.html). Example ```javascript var promiseObject = DS.PromiseObject.create({ promise: $.getJSON('/some/remote/data.json') }); promiseObject.get('name'); // null promiseObject.then(function() { promiseObject.get('name'); // 'Tomster' }); ``` @class PromiseObject @namespace DS @extends Ember.ObjectProxy @uses Ember.PromiseProxyMixin */ var PromiseObject = Ember.ObjectProxy.extend(Ember.PromiseProxyMixin); var promiseObject = function(promise, label) { return PromiseObject.create({ promise: Promise.resolve(promise, label) }); }; var promiseArray = function(promise, label) { return PromiseArray.create({ promise: Promise.resolve(promise, label) }); }; /** A PromiseManyArray is a PromiseArray that also proxies certain method calls to the underlying manyArray. Right now we proxy: `reload()` */ var PromiseManyArray = PromiseArray.extend({ reload: function() { //I don't think this should ever happen right now, but worth guarding if we refactor the async relationships return get(this, 'content').reload(); } }); var promiseManyArray = function(promise, label) { return PromiseManyArray.create({ promise: Promise.resolve(promise, label) }); }; __exports__.PromiseArray = PromiseArray; __exports__.PromiseObject = PromiseObject; __exports__.PromiseManyArray = PromiseManyArray; __exports__.promiseArray = promiseArray; __exports__.promiseObject = promiseObject; __exports__.promiseManyArray = promiseManyArray; }); define("ember-data/system/record_array_manager", ["ember-data/system/record_arrays","ember-data/system/map","exports"], function(__dependency1__, __dependency2__, __exports__) { "use strict"; /** @module ember-data */ var RecordArray = __dependency1__.RecordArray; var FilteredRecordArray = __dependency1__.FilteredRecordArray; var AdapterPopulatedRecordArray = __dependency1__.AdapterPopulatedRecordArray; var ManyArray = __dependency1__.ManyArray; var MapWithDefault = __dependency2__.MapWithDefault; var OrderedSet = __dependency2__.OrderedSet; var get = Ember.get; var forEach = Ember.EnumerableUtils.forEach; /** @class RecordArrayManager @namespace DS @private @extends Ember.Object */ __exports__["default"] = Ember.Object.extend({ init: function() { this.filteredRecordArrays = MapWithDefault.create({ defaultValue: function() { return []; } }); this.changedRecords = []; this._adapterPopulatedRecordArrays = []; }, recordDidChange: function(record) { if (this.changedRecords.push(record) !== 1) { return; } Ember.run.schedule('actions', this, this.updateRecordArrays); }, recordArraysForRecord: function(record) { record._recordArrays = record._recordArrays || OrderedSet.create(); return record._recordArrays; }, /** This method is invoked whenever data is loaded into the store by the adapter or updated by the adapter, or when a record has changed. It updates all record arrays that a record belongs to. To avoid thrashing, it only runs at most once per run loop. @method updateRecordArrays @param {Class} type @param {Number|String} clientId */ updateRecordArrays: function() { forEach(this.changedRecords, function(record) { if (get(record, 'isDeleted')) { this._recordWasDeleted(record); } else { this._recordWasChanged(record); } }, this); this.changedRecords.length = 0; }, _recordWasDeleted: function (record) { var recordArrays = record._recordArrays; if (!recordArrays) { return; } recordArrays.forEach(function(array){ array.removeRecord(record); }); record._recordArrays = null; }, _recordWasChanged: function (record) { var type = record.constructor; var recordArrays = this.filteredRecordArrays.get(type); var filter; forEach(recordArrays, function(array) { filter = get(array, 'filterFunction'); this.updateRecordArray(array, filter, type, record); }, this); // loop through all manyArrays containing an unloaded copy of this // clientId and notify them that the record was loaded. var manyArrays = record._loadingRecordArrays; if (manyArrays) { for (var i=0, l=manyArrays.length; i<l; i++) { manyArrays[i].loadedRecord(); } record._loadingRecordArrays = []; } }, /** Update an individual filter. @method updateRecordArray @param {DS.FilteredRecordArray} array @param {Function} filter @param {Class} type @param {Number|String} clientId */ updateRecordArray: function(array, filter, type, record) { var shouldBeInArray; if (!filter) { shouldBeInArray = true; } else { shouldBeInArray = filter(record); } var recordArrays = this.recordArraysForRecord(record); if (shouldBeInArray) { if (!recordArrays.has(array)) { array.pushRecord(record); recordArrays.add(array); } } else if (!shouldBeInArray) { recordArrays["delete"](array); array.removeRecord(record); } }, /** This method is invoked if the `filterFunction` property is changed on a `DS.FilteredRecordArray`. It essentially re-runs the filter from scratch. This same method is invoked when the filter is created in th first place. @method updateFilter @param {Array} array @param {String} type @param {Function} filter */ updateFilter: function(array, type, filter) { var typeMap = this.store.typeMapFor(type); var records = typeMap.records, record; for (var i=0, l=records.length; i<l; i++) { record = records[i]; if (!get(record, 'isDeleted') && !get(record, 'isEmpty')) { this.updateRecordArray(array, filter, type, record); } } }, /** Create a `DS.ManyArray` for a type and list of record references, and index the `ManyArray` under each reference. This allows us to efficiently remove records from `ManyArray`s when they are deleted. @method createManyArray @param {Class} type @param {Array} references @return {DS.ManyArray} */ createManyArray: function(type, records) { var manyArray = ManyArray.create({ type: type, content: records, store: this.store }); forEach(records, function(record) { var arrays = this.recordArraysForRecord(record); arrays.add(manyArray); }, this); return manyArray; }, /** Create a `DS.RecordArray` for a type and register it for updates. @method createRecordArray @param {Class} type @return {DS.RecordArray} */ createRecordArray: function(type) { var array = RecordArray.create({ type: type, content: Ember.A(), store: this.store, isLoaded: true }); this.registerFilteredRecordArray(array, type); return array; }, /** Create a `DS.FilteredRecordArray` for a type and register it for updates. @method createFilteredRecordArray @param {Class} type @param {Function} filter @param {Object} query (optional @return {DS.FilteredRecordArray} */ createFilteredRecordArray: function(type, filter, query) { var array = FilteredRecordArray.create({ query: query, type: type, content: Ember.A(), store: this.store, manager: this, filterFunction: filter }); this.registerFilteredRecordArray(array, type, filter); return array; }, /** Create a `DS.AdapterPopulatedRecordArray` for a type with given query. @method createAdapterPopulatedRecordArray @param {Class} type @param {Object} query @return {DS.AdapterPopulatedRecordArray} */ createAdapterPopulatedRecordArray: function(type, query) { var array = AdapterPopulatedRecordArray.create({ type: type, query: query, content: Ember.A(), store: this.store, manager: this }); this._adapterPopulatedRecordArrays.push(array); return array; }, /** Register a RecordArray for a given type to be backed by a filter function. This will cause the array to update automatically when records of that type change attribute values or states. @method registerFilteredRecordArray @param {DS.RecordArray} array @param {Class} type @param {Function} filter */ registerFilteredRecordArray: function(array, type, filter) { var recordArrays = this.filteredRecordArrays.get(type); recordArrays.push(array); this.updateFilter(array, type, filter); }, // Internally, we maintain a map of all unloaded IDs requested by // a ManyArray. As the adapter loads data into the store, the // store notifies any interested ManyArrays. When the ManyArray's // total number of loading records drops to zero, it becomes // `isLoaded` and fires a `didLoad` event. registerWaitingRecordArray: function(record, array) { var loadingRecordArrays = record._loadingRecordArrays || []; loadingRecordArrays.push(array); record._loadingRecordArrays = loadingRecordArrays; }, willDestroy: function(){ this._super(); forEach(flatten(values(this.filteredRecordArrays.values)), destroy); forEach(this._adapterPopulatedRecordArrays, destroy); } }); function values(obj) { var result = []; var keys = Ember.keys(obj); for (var i = 0; i < keys.length; i++) { result.push(obj[keys[i]]); } return result; } function destroy(entry) { entry.destroy(); } function flatten(list) { var length = list.length; var result = Ember.A(); for (var i = 0; i < length; i++) { result = result.concat(list[i]); } return result; } }); define("ember-data/system/record_arrays", ["ember-data/system/record_arrays/record_array","ember-data/system/record_arrays/filtered_record_array","ember-data/system/record_arrays/adapter_populated_record_array","ember-data/system/record_arrays/many_array","exports"], function(__dependency1__, __dependency2__, __dependency3__, __dependency4__, __exports__) { "use strict"; /** @module ember-data */ var RecordArray = __dependency1__["default"]; var FilteredRecordArray = __dependency2__["default"]; var AdapterPopulatedRecordArray = __dependency3__["default"]; var ManyArray = __dependency4__["default"]; __exports__.RecordArray = RecordArray; __exports__.FilteredRecordArray = FilteredRecordArray; __exports__.AdapterPopulatedRecordArray = AdapterPopulatedRecordArray; __exports__.ManyArray = ManyArray; }); define("ember-data/system/record_arrays/adapter_populated_record_array", ["ember-data/system/record_arrays/record_array","exports"], function(__dependency1__, __exports__) { "use strict"; var RecordArray = __dependency1__["default"]; /** @module ember-data */ var get = Ember.get; function cloneNull(source) { var clone = Object.create(null); for (var key in source) { clone[key] = source[key]; } return clone; } /** Represents an ordered list of records whose order and membership is determined by the adapter. For example, a query sent to the adapter may trigger a search on the server, whose results would be loaded into an instance of the `AdapterPopulatedRecordArray`. @class AdapterPopulatedRecordArray @namespace DS @extends DS.RecordArray */ __exports__["default"] = RecordArray.extend({ query: null, replace: function() { var type = get(this, 'type').toString(); throw new Error("The result of a server query (on " + type + ") is immutable."); }, /** @method load @private @param {Array} data */ load: function(data) { var store = get(this, 'store'); var type = get(this, 'type'); var records = store.pushMany(type, data); var meta = store.metadataFor(type); this.setProperties({ content: Ember.A(records), isLoaded: true, meta: cloneNull(meta) }); records.forEach(function(record) { this.manager.recordArraysForRecord(record).add(this); }, this); // TODO: should triggering didLoad event be the last action of the runLoop? Ember.run.once(this, 'trigger', 'didLoad'); } }); }); define("ember-data/system/record_arrays/filtered_record_array", ["ember-data/system/record_arrays/record_array","exports"], function(__dependency1__, __exports__) { "use strict"; var RecordArray = __dependency1__["default"]; /** @module ember-data */ var get = Ember.get; /** Represents a list of records whose membership is determined by the store. As records are created, loaded, or modified, the store evaluates them to determine if they should be part of the record array. @class FilteredRecordArray @namespace DS @extends DS.RecordArray */ __exports__["default"] = RecordArray.extend({ /** The filterFunction is a function used to test records from the store to determine if they should be part of the record array. Example ```javascript var allPeople = store.all('person'); allPeople.mapBy('name'); // ["Tom Dale", "Yehuda Katz", "Trek Glowacki"] var people = store.filter('person', function(person) { if (person.get('name').match(/Katz$/)) { return true; } }); people.mapBy('name'); // ["Yehuda Katz"] var notKatzFilter = function(person) { return !person.get('name').match(/Katz$/); }; people.set('filterFunction', notKatzFilter); people.mapBy('name'); // ["Tom Dale", "Trek Glowacki"] ``` @method filterFunction @param {DS.Model} record @return {Boolean} `true` if the record should be in the array */ filterFunction: null, isLoaded: true, replace: function() { var type = get(this, 'type').toString(); throw new Error("The result of a client-side filter (on " + type + ") is immutable."); }, /** @method updateFilter @private */ _updateFilter: function() { var manager = get(this, 'manager'); manager.updateFilter(this, get(this, 'type'), get(this, 'filterFunction')); }, updateFilter: Ember.observer(function() { Ember.run.once(this, this._updateFilter); }, 'filterFunction') }); }); define("ember-data/system/record_arrays/many_array", ["ember-data/system/record_arrays/record_array","exports"], function(__dependency1__, __exports__) { "use strict"; var RecordArray = __dependency1__["default"]; /** @module ember-data */ var get = Ember.get, set = Ember.set; /** A `ManyArray` is a `RecordArray` that represents the contents of a has-many relationship. The `ManyArray` is instantiated lazily the first time the relationship is requested. ### Inverses Often, the relationships in Ember Data applications will have an inverse. For example, imagine the following models are defined: ```javascript App.Post = DS.Model.extend({ comments: DS.hasMany('comment') }); App.Comment = DS.Model.extend({ post: DS.belongsTo('post') }); ``` If you created a new instance of `App.Post` and added a `App.Comment` record to its `comments` has-many relationship, you would expect the comment's `post` property to be set to the post that contained the has-many. We call the record to which a relationship belongs the relationship's _owner_. @class ManyArray @namespace DS @extends DS.RecordArray */ __exports__["default"] = RecordArray.extend({ init: function() { this._super.apply(this, arguments); }, /** `true` if the relationship is polymorphic, `false` otherwise. @property {Boolean} isPolymorphic @private */ isPolymorphic: false, // LOADING STATE isLoaded: false, /** The relationship which manages this array. @property {DS.Model} owner @private */ relationship: null, /** Used for async `hasMany` arrays to keep track of when they will resolve. @property {Ember.RSVP.Promise} promise @private */ promise: null, /** @method loadingRecordsCount @param {Number} count @private */ loadingRecordsCount: function(count) { this.loadingRecordsCount = count; }, /** @method loadedRecord @private */ loadedRecord: function() { this.loadingRecordsCount--; if (this.loadingRecordsCount === 0) { set(this, 'isLoaded', true); this.trigger('didLoad'); } }, replaceContent: function(idx, amt, objects){ var records; if (amt > 0){ records = get(this, 'content').slice(idx, idx+amt); this.get('relationship').removeRecords(records); } if (objects){ this.get('relationship').addRecords(objects, idx); } }, /** @method reload @public */ reload: function() { return this.relationship.reload(); }, /** Create a child record within the owner @method createRecord @private @param {Object} hash @return {DS.Model} record */ createRecord: function(hash) { var store = get(this, 'store'); var type = get(this, 'type'); var record; record = store.createRecord.call(store, type, hash); this.pushObject(record); return record; } }); }); define("ember-data/system/record_arrays/record_array", ["ember-data/system/promise_proxies","exports"], function(__dependency1__, __exports__) { "use strict"; /** @module ember-data */ var PromiseArray = __dependency1__.PromiseArray; var get = Ember.get; /** A record array is an array that contains records of a certain type. The record array materializes records as needed when they are retrieved for the first time. You should not create record arrays yourself. Instead, an instance of `DS.RecordArray` or its subclasses will be returned by your application's store in response to queries. @class RecordArray @namespace DS @extends Ember.ArrayProxy @uses Ember.Evented */ __exports__["default"] = Ember.ArrayProxy.extend(Ember.Evented, { /** The model type contained by this record array. @property type @type DS.Model */ type: null, /** The array of client ids backing the record array. When a record is requested from the record array, the record for the client id at the same index is materialized, if necessary, by the store. @property content @private @type Ember.Array */ content: null, /** The flag to signal a `RecordArray` is currently loading data. Example ```javascript var people = store.all('person'); people.get('isLoaded'); // true ``` @property isLoaded @type Boolean */ isLoaded: false, /** The flag to signal a `RecordArray` is currently loading data. Example ```javascript var people = store.all('person'); people.get('isUpdating'); // false people.update(); people.get('isUpdating'); // true ``` @property isUpdating @type Boolean */ isUpdating: false, /** The store that created this record array. @property store @private @type DS.Store */ store: null, /** Retrieves an object from the content by index. @method objectAtContent @private @param {Number} index @return {DS.Model} record */ objectAtContent: function(index) { var content = get(this, 'content'); return content.objectAt(index); }, /** Used to get the latest version of all of the records in this array from the adapter. Example ```javascript var people = store.all('person'); people.get('isUpdating'); // false people.update(); people.get('isUpdating'); // true ``` @method update */ update: function() { if (get(this, 'isUpdating')) { return; } var store = get(this, 'store'); var type = get(this, 'type'); return store.fetchAll(type, this); }, /** Adds a record to the `RecordArray` without duplicates @method addRecord @private @param {DS.Model} record @param {DS.Model} an optional index to insert at */ addRecord: function(record, idx) { var content = get(this, 'content'); if (idx === undefined) { content.addObject(record); } else { if (!content.contains(record)) { content.insertAt(idx, record); } } }, /** Adds a record to the `RecordArray`, but allows duplicates @method pushRecord @private @param {DS.Model} record */ pushRecord: function(record) { get(this, 'content').pushObject(record); }, /** Removes a record to the `RecordArray`. @method removeRecord @private @param {DS.Model} record */ removeRecord: function(record) { get(this, 'content').removeObject(record); }, /** Saves all of the records in the `RecordArray`. Example ```javascript var messages = store.all('message'); messages.forEach(function(message) { message.set('hasBeenSeen', true); }); messages.save(); ``` @method save @return {DS.PromiseArray} promise */ save: function() { var promiseLabel = "DS: RecordArray#save " + get(this, 'type'); var promise = Ember.RSVP.all(this.invoke("save"), promiseLabel).then(function(array) { return Ember.A(array); }, null, "DS: RecordArray#save apply Ember.NativeArray"); return PromiseArray.create({ promise: promise }); }, _dissociateFromOwnRecords: function() { var array = this; this.forEach(function(record){ var recordArrays = record._recordArrays; if (recordArrays) { recordArrays["delete"](array); } }); }, willDestroy: function(){ this._dissociateFromOwnRecords(); this._super(); } }); }); define("ember-data/system/relationship-meta", ["ember-inflector/system","exports"], function(__dependency1__, __exports__) { "use strict"; var singularize = __dependency1__.singularize; function typeForRelationshipMeta(store, meta) { var typeKey, type; typeKey = meta.type || meta.key; if (typeof typeKey === 'string') { if (meta.kind === 'hasMany') { typeKey = singularize(typeKey); } type = store.modelFor(typeKey); } else { type = meta.type; } return type; } __exports__.typeForRelationshipMeta = typeForRelationshipMeta;function relationshipFromMeta(store, meta) { return { key: meta.key, kind: meta.kind, type: typeForRelationshipMeta(store, meta), options: meta.options, parentType: meta.parentType, isRelationship: true }; } __exports__.relationshipFromMeta = relationshipFromMeta; }); define("ember-data/system/relationships", ["./relationships/belongs_to","./relationships/has_many","ember-data/system/relationships/ext","exports"], function(__dependency1__, __dependency2__, __dependency3__, __exports__) { "use strict"; /** @module ember-data */ var belongsTo = __dependency1__["default"]; var hasMany = __dependency2__["default"]; __exports__.belongsTo = belongsTo; __exports__.hasMany = hasMany; }); define("ember-data/system/relationships/belongs_to", ["ember-data/system/model","exports"], function(__dependency1__, __exports__) { "use strict"; var Model = __dependency1__.Model; /** `DS.belongsTo` is used to define One-To-One and One-To-Many relationships on a [DS.Model](/api/data/classes/DS.Model.html). `DS.belongsTo` takes an optional hash as a second parameter, currently supported options are: - `async`: A boolean value used to explicitly declare this to be an async relationship. - `inverse`: A string used to identify the inverse property on a related model in a One-To-Many relationship. See [Explicit Inverses](#toc_explicit-inverses) #### One-To-One To declare a one-to-one relationship between two models, use `DS.belongsTo`: ```javascript App.User = DS.Model.extend({ profile: DS.belongsTo('profile') }); App.Profile = DS.Model.extend({ user: DS.belongsTo('user') }); ``` #### One-To-Many To declare a one-to-many relationship between two models, use `DS.belongsTo` in combination with `DS.hasMany`, like this: ```javascript App.Post = DS.Model.extend({ comments: DS.hasMany('comment') }); App.Comment = DS.Model.extend({ post: DS.belongsTo('post') }); ``` @namespace @method belongsTo @for DS @param {String or DS.Model} type the model type of the relationship @param {Object} options a hash of options @return {Ember.computed} relationship */ function belongsTo(type, options) { if (typeof type === 'object') { options = type; type = undefined; } else { } options = options || {}; var meta = { type: type, isRelationship: true, options: options, kind: 'belongsTo', key: null }; return Ember.computed(function(key, value) { if (arguments.length>1) { if ( value === undefined ) { value = null; } if (value && value.then) { this._relationships[key].setRecordPromise(value); } else { this._relationships[key].setRecord(value); } } return this._relationships[key].getRecord(); }).meta(meta); } /** These observers observe all `belongsTo` relationships on the record. See `relationships/ext` to see how these observers get their dependencies. @class Model @namespace DS */ Model.reopen({ notifyBelongsToAdded: function(key, relationship) { this.notifyPropertyChange(key); }, notifyBelongsToRemoved: function(key) { this.notifyPropertyChange(key); } }); __exports__["default"] = belongsTo; }); define("ember-data/system/relationships/ext", ["ember-data/system/relationship-meta","ember-data/system/model","ember-data/system/map"], function(__dependency1__, __dependency2__, __dependency3__) { "use strict"; var typeForRelationshipMeta = __dependency1__.typeForRelationshipMeta; var relationshipFromMeta = __dependency1__.relationshipFromMeta; var Model = __dependency2__.Model; var Map = __dependency3__.Map; var MapWithDefault = __dependency3__.MapWithDefault; var get = Ember.get; var filter = Ember.ArrayPolyfills.filter; /** @module ember-data */ /* This file defines several extensions to the base `DS.Model` class that add support for one-to-many relationships. */ /** @class Model @namespace DS */ Model.reopen({ /** This Ember.js hook allows an object to be notified when a property is defined. In this case, we use it to be notified when an Ember Data user defines a belongs-to relationship. In that case, we need to set up observers for each one, allowing us to track relationship changes and automatically reflect changes in the inverse has-many array. This hook passes the class being set up, as well as the key and value being defined. So, for example, when the user does this: ```javascript DS.Model.extend({ parent: DS.belongsTo('user') }); ``` This hook would be called with "parent" as the key and the computed property returned by `DS.belongsTo` as the value. @method didDefineProperty @param {Object} proto @param {String} key @param {Ember.ComputedProperty} value */ didDefineProperty: function(proto, key, value) { // Check if the value being set is a computed property. if (value instanceof Ember.ComputedProperty) { // If it is, get the metadata for the relationship. This is // populated by the `DS.belongsTo` helper when it is creating // the computed property. var meta = value.meta(); meta.parentType = proto.constructor; } } }); /* These DS.Model extensions add class methods that provide relationship introspection abilities about relationships. A note about the computed properties contained here: **These properties are effectively sealed once called for the first time.** To avoid repeatedly doing expensive iteration over a model's fields, these values are computed once and then cached for the remainder of the runtime of your application. If your application needs to modify a class after its initial definition (for example, using `reopen()` to add additional attributes), make sure you do it before using your model with the store, which uses these properties extensively. */ Model.reopenClass({ /** For a given relationship name, returns the model type of the relationship. For example, if you define a model like this: ```javascript App.Post = DS.Model.extend({ comments: DS.hasMany('comment') }); ``` Calling `App.Post.typeForRelationship('comments')` will return `App.Comment`. @method typeForRelationship @static @param {String} name the name of the relationship @return {subclass of DS.Model} the type of the relationship, or undefined */ typeForRelationship: function(name) { var relationship = get(this, 'relationshipsByName').get(name); return relationship && relationship.type; }, inverseMap: Ember.computed(function() { return Object.create(null); }), /* Find the relationship which is the inverse of the one asked for. For example, if you define models like this: ```javascript App.Post = DS.Model.extend({ comments: DS.hasMany('message') }); App.Message = DS.Model.extend({ owner: DS.belongsTo('post') }); ``` App.Post.inverseFor('comments') -> {type: App.Message, name:'owner', kind:'belongsTo'} App.Message.inverseFor('owner') -> {type: App.Post, name:'comments', kind:'hasMany'} @method inverseFor @static @param {String} name the name of the relationship @return {Object} the inverse relationship, or null */ inverseFor: function(name) { var inverseMap = get(this, 'inverseMap'); if (inverseMap[name]) { return inverseMap[name]; } else { var inverse = this._findInverseFor(name); inverseMap[name] = inverse; return inverse; } }, //Calculate the inverse, ignoring the cache _findInverseFor: function(name) { var inverseType = this.typeForRelationship(name); if (!inverseType) { return null; } //If inverse is manually specified to be null, like `comments: DS.hasMany('message', {inverse: null})` var options = this.metaForProperty(name).options; if (options.inverse === null) { return null; } var inverseName, inverseKind, inverse; //If inverse is specified manually, return the inverse if (options.inverse) { inverseName = options.inverse; inverse = Ember.get(inverseType, 'relationshipsByName').get(inverseName); inverseKind = inverse.kind; } else { //No inverse was specified manually, we need to use a heuristic to guess one var possibleRelationships = findPossibleInverses(this, inverseType); if (possibleRelationships.length === 0) { return null; } var filteredRelationships = filter.call(possibleRelationships, function(possibleRelationship) { var optionsForRelationship = inverseType.metaForProperty(possibleRelationship.name).options; return name === optionsForRelationship.inverse; }); if (filteredRelationships.length === 1 ) { possibleRelationships = filteredRelationships; } inverseName = possibleRelationships[0].name; inverseKind = possibleRelationships[0].kind; } function findPossibleInverses(type, inverseType, relationshipsSoFar) { var possibleRelationships = relationshipsSoFar || []; var relationshipMap = get(inverseType, 'relationships'); if (!relationshipMap) { return; } var relationships = relationshipMap.get(type); relationships = filter.call(relationships, function(relationship) { var optionsForRelationship = inverseType.metaForProperty(relationship.name).options; if (!optionsForRelationship.inverse){ return true; } return name === optionsForRelationship.inverse; }); if (relationships) { possibleRelationships.push.apply(possibleRelationships, relationships); } //Recurse to support polymorphism if (type.superclass) { findPossibleInverses(type.superclass, inverseType, possibleRelationships); } return possibleRelationships; } return { type: inverseType, name: inverseName, kind: inverseKind }; }, /** The model's relationships as a map, keyed on the type of the relationship. The value of each entry is an array containing a descriptor for each relationship with that type, describing the name of the relationship as well as the type. For example, given the following model definition: ```javascript App.Blog = DS.Model.extend({ users: DS.hasMany('user'), owner: DS.belongsTo('user'), posts: DS.hasMany('post') }); ``` This computed property would return a map describing these relationships, like this: ```javascript var relationships = Ember.get(App.Blog, 'relationships'); relationships.get(App.User); //=> [ { name: 'users', kind: 'hasMany' }, // { name: 'owner', kind: 'belongsTo' } ] relationships.get(App.Post); //=> [ { name: 'posts', kind: 'hasMany' } ] ``` @property relationships @static @type Ember.Map @readOnly */ relationships: Ember.computed(function() { var map = new MapWithDefault({ defaultValue: function() { return []; } }); // Loop through each computed property on the class this.eachComputedProperty(function(name, meta) { // If the computed property is a relationship, add // it to the map. if (meta.isRelationship) { meta.key = name; var relationshipsForType = map.get(typeForRelationshipMeta(this.store, meta)); relationshipsForType.push({ name: name, kind: meta.kind }); } }); return map; }).cacheable(false).readOnly(), /** A hash containing lists of the model's relationships, grouped by the relationship kind. For example, given a model with this definition: ```javascript App.Blog = DS.Model.extend({ users: DS.hasMany('user'), owner: DS.belongsTo('user'), posts: DS.hasMany('post') }); ``` This property would contain the following: ```javascript var relationshipNames = Ember.get(App.Blog, 'relationshipNames'); relationshipNames.hasMany; //=> ['users', 'posts'] relationshipNames.belongsTo; //=> ['owner'] ``` @property relationshipNames @static @type Object @readOnly */ relationshipNames: Ember.computed(function() { var names = { hasMany: [], belongsTo: [] }; this.eachComputedProperty(function(name, meta) { if (meta.isRelationship) { names[meta.kind].push(name); } }); return names; }), /** An array of types directly related to a model. Each type will be included once, regardless of the number of relationships it has with the model. For example, given a model with this definition: ```javascript App.Blog = DS.Model.extend({ users: DS.hasMany('user'), owner: DS.belongsTo('user'), posts: DS.hasMany('post') }); ``` This property would contain the following: ```javascript var relatedTypes = Ember.get(App.Blog, 'relatedTypes'); //=> [ App.User, App.Post ] ``` @property relatedTypes @static @type Ember.Array @readOnly */ relatedTypes: Ember.computed(function() { var type; var types = Ember.A(); // Loop through each computed property on the class, // and create an array of the unique types involved // in relationships this.eachComputedProperty(function(name, meta) { if (meta.isRelationship) { meta.key = name; type = typeForRelationshipMeta(this.store, meta); if (!types.contains(type)) { types.push(type); } } }); return types; }).cacheable(false).readOnly(), /** A map whose keys are the relationships of a model and whose values are relationship descriptors. For example, given a model with this definition: ```javascript App.Blog = DS.Model.extend({ users: DS.hasMany('user'), owner: DS.belongsTo('user'), posts: DS.hasMany('post') }); ``` This property would contain the following: ```javascript var relationshipsByName = Ember.get(App.Blog, 'relationshipsByName'); relationshipsByName.get('users'); //=> { key: 'users', kind: 'hasMany', type: App.User } relationshipsByName.get('owner'); //=> { key: 'owner', kind: 'belongsTo', type: App.User } ``` @property relationshipsByName @static @type Ember.Map @readOnly */ relationshipsByName: Ember.computed(function() { var map = Map.create(); this.eachComputedProperty(function(name, meta) { if (meta.isRelationship) { meta.key = name; var relationship = relationshipFromMeta(this.store, meta); relationship.type = typeForRelationshipMeta(this.store, meta); map.set(name, relationship); } }); return map; }).cacheable(false).readOnly(), /** A map whose keys are the fields of the model and whose values are strings describing the kind of the field. A model's fields are the union of all of its attributes and relationships. For example: ```javascript App.Blog = DS.Model.extend({ users: DS.hasMany('user'), owner: DS.belongsTo('user'), posts: DS.hasMany('post'), title: DS.attr('string') }); var fields = Ember.get(App.Blog, 'fields'); fields.forEach(function(field, kind) { console.log(field, kind); }); // prints: // users, hasMany // owner, belongsTo // posts, hasMany // title, attribute ``` @property fields @static @type Ember.Map @readOnly */ fields: Ember.computed(function() { var map = Map.create(); this.eachComputedProperty(function(name, meta) { if (meta.isRelationship) { map.set(name, meta.kind); } else if (meta.isAttribute) { map.set(name, 'attribute'); } }); return map; }).readOnly(), /** Given a callback, iterates over each of the relationships in the model, invoking the callback with the name of each relationship and its relationship descriptor. @method eachRelationship @static @param {Function} callback the callback to invoke @param {any} binding the value to which the callback's `this` should be bound */ eachRelationship: function(callback, binding) { get(this, 'relationshipsByName').forEach(function(relationship, name) { callback.call(binding, name, relationship); }); }, /** Given a callback, iterates over each of the types related to a model, invoking the callback with the related type's class. Each type will be returned just once, regardless of how many different relationships it has with a model. @method eachRelatedType @static @param {Function} callback the callback to invoke @param {any} binding the value to which the callback's `this` should be bound */ eachRelatedType: function(callback, binding) { get(this, 'relatedTypes').forEach(function(type) { callback.call(binding, type); }); }, determineRelationshipType: function(knownSide) { var knownKey = knownSide.key; var knownKind = knownSide.kind; var inverse = this.inverseFor(knownKey); var key, otherKind; if (!inverse) { return knownKind === 'belongsTo' ? 'oneToNone' : 'manyToNone'; } key = inverse.name; otherKind = inverse.kind; if (otherKind === 'belongsTo') { return knownKind === 'belongsTo' ? 'oneToOne' : 'manyToOne'; } else { return knownKind === 'belongsTo' ? 'oneToMany' : 'manyToMany'; } } }); Model.reopen({ /** Given a callback, iterates over each of the relationships in the model, invoking the callback with the name of each relationship and its relationship descriptor. @method eachRelationship @param {Function} callback the callback to invoke @param {any} binding the value to which the callback's `this` should be bound */ eachRelationship: function(callback, binding) { this.constructor.eachRelationship(callback, binding); }, relationshipFor: function(name) { return get(this.constructor, 'relationshipsByName').get(name); }, inverseFor: function(key) { return this.constructor.inverseFor(key); } }); }); define("ember-data/system/relationships/has_many", ["ember-data/system/model","exports"], function(__dependency1__, __exports__) { "use strict"; /** @module ember-data */ var Model = __dependency1__.Model; /** `DS.hasMany` is used to define One-To-Many and Many-To-Many relationships on a [DS.Model](/api/data/classes/DS.Model.html). `DS.hasMany` takes an optional hash as a second parameter, currently supported options are: - `async`: A boolean value used to explicitly declare this to be an async relationship. - `inverse`: A string used to identify the inverse property on a related model. #### One-To-Many To declare a one-to-many relationship between two models, use `DS.belongsTo` in combination with `DS.hasMany`, like this: ```javascript App.Post = DS.Model.extend({ comments: DS.hasMany('comment') }); App.Comment = DS.Model.extend({ post: DS.belongsTo('post') }); ``` #### Many-To-Many To declare a many-to-many relationship between two models, use `DS.hasMany`: ```javascript App.Post = DS.Model.extend({ tags: DS.hasMany('tag') }); App.Tag = DS.Model.extend({ posts: DS.hasMany('post') }); ``` #### Explicit Inverses Ember Data will do its best to discover which relationships map to one another. In the one-to-many code above, for example, Ember Data can figure out that changing the `comments` relationship should update the `post` relationship on the inverse because post is the only relationship to that model. However, sometimes you may have multiple `belongsTo`/`hasManys` for the same type. You can specify which property on the related model is the inverse using `DS.hasMany`'s `inverse` option: ```javascript var belongsTo = DS.belongsTo, hasMany = DS.hasMany; App.Comment = DS.Model.extend({ onePost: belongsTo('post'), twoPost: belongsTo('post'), redPost: belongsTo('post'), bluePost: belongsTo('post') }); App.Post = DS.Model.extend({ comments: hasMany('comment', { inverse: 'redPost' }) }); ``` You can also specify an inverse on a `belongsTo`, which works how you'd expect. @namespace @method hasMany @for DS @param {String or DS.Model} type the model type of the relationship @param {Object} options a hash of options @return {Ember.computed} relationship */ function hasMany(type, options) { if (typeof type === 'object') { options = type; type = undefined; } options = options || {}; // Metadata about relationships is stored on the meta of // the relationship. This is used for introspection and // serialization. Note that `key` is populated lazily // the first time the CP is called. var meta = { type: type, isRelationship: true, options: options, kind: 'hasMany', key: null }; return Ember.computed(function(key) { var relationship = this._relationships[key]; return relationship.getRecords(); }).meta(meta).readOnly(); } Model.reopen({ notifyHasManyAdded: function(key, record, idx) { var relationship = this._relationships[key]; var manyArray = relationship.manyArray; manyArray.addRecord(record, idx); //We need to notifyPropertyChange in the adding case because we need to make sure //we fetch the newly added record in case it is unloaded //TODO(Igor): Consider whether we could do this only if the record state is unloaded this.notifyPropertyChange(key); }, notifyHasManyRemoved: function(key, record) { var relationship = this._relationships[key]; var manyArray = relationship.manyArray; manyArray.removeRecord(record); } }); __exports__["default"] = hasMany; }); define("ember-data/system/relationships/relationship", ["ember-data/system/promise_proxies","ember-data/system/map","exports"], function(__dependency1__, __dependency2__, __exports__) { "use strict"; var PromiseManyArray = __dependency1__.PromiseManyArray; var PromiseObject = __dependency1__.PromiseObject; var OrderedSet = __dependency2__.OrderedSet; var Relationship = function(store, record, inverseKey, relationshipMeta) { this.members = new OrderedSet(); this.store = store; this.key = relationshipMeta.key; this.inverseKey = inverseKey; this.record = record; this.key = relationshipMeta.key; this.isAsync = relationshipMeta.options.async; this.relationshipMeta = relationshipMeta; //This probably breaks for polymorphic relationship in complex scenarios, due to //multiple possible typeKeys this.inverseKeyForImplicit = this.store.modelFor(this.record.constructor).typeKey + this.key; //Cached promise when fetching the relationship from a link this.linkPromise = null; }; Relationship.prototype = { constructor: Relationship, destroy: Ember.K, clear: function() { this.members.forEach(function(member) { this.removeRecord(member); }, this); }, disconnect: function(){ this.members.forEach(function(member) { this.removeRecordFromInverse(member); }, this); }, reconnect: function(){ this.members.forEach(function(member) { this.addRecordToInverse(member); }, this); }, removeRecords: function(records){ var that = this; records.forEach(function(record){ that.removeRecord(record); }); }, addRecords: function(records, idx){ var that = this; records.forEach(function(record){ that.addRecord(record, idx); if (idx !== undefined) { idx++; } }); }, addRecord: function(record, idx) { if (!this.members.has(record)) { this.members.add(record); this.notifyRecordRelationshipAdded(record, idx); if (this.inverseKey) { record._relationships[this.inverseKey].addRecord(this.record); } else { if (!record._implicitRelationships[this.inverseKeyForImplicit]) { record._implicitRelationships[this.inverseKeyForImplicit] = new Relationship(this.store, record, this.key, {options:{}}); } record._implicitRelationships[this.inverseKeyForImplicit].addRecord(this.record); } this.record.updateRecordArrays(); } }, removeRecord: function(record) { if (this.members.has(record)) { this.removeRecordFromOwn(record); if (this.inverseKey) { this.removeRecordFromInverse(record); } else { if (record._implicitRelationships[this.inverseKeyForImplicit]) { record._implicitRelationships[this.inverseKeyForImplicit].removeRecord(this.record); } } } }, addRecordToInverse: function(record) { if (this.inverseKey) { record._relationships[this.inverseKey].addRecord(this.record); } }, removeRecordFromInverse: function(record) { var inverseRelationship = record._relationships[this.inverseKey]; //Need to check for existence, as the record might unloading at the moment if (inverseRelationship) { inverseRelationship.removeRecordFromOwn(this.record); } }, removeRecordFromOwn: function(record) { this.members["delete"](record); this.notifyRecordRelationshipRemoved(record); this.record.updateRecordArrays(); }, updateLink: function(link) { if (link !== this.link) { this.link = link; this.linkPromise = null; this.record.notifyPropertyChange(this.key); } }, findLink: function() { if (this.linkPromise) { return this.linkPromise; } else { var promise = this.fetchLink(); this.linkPromise = promise; return promise.then(function(result) { return result; }); } }, updateRecordsFromAdapter: function(records) { //TODO Once we have adapter support, we need to handle updated and canonical changes this.computeChanges(records); }, notifyRecordRelationshipAdded: Ember.K, notifyRecordRelationshipRemoved: Ember.K }; var ManyRelationship = function(store, record, inverseKey, relationshipMeta) { this._super$constructor(store, record, inverseKey, relationshipMeta); this.belongsToType = relationshipMeta.type; this.manyArray = store.recordArrayManager.createManyArray(this.belongsToType, Ember.A()); this.manyArray.relationship = this; this.isPolymorphic = relationshipMeta.options.polymorphic; this.manyArray.isPolymorphic = this.isPolymorphic; }; ManyRelationship.prototype = Object.create(Relationship.prototype); ManyRelationship.prototype.constructor = ManyRelationship; ManyRelationship.prototype._super$constructor = Relationship; ManyRelationship.prototype.destroy = function() { this.manyArray.destroy(); }; ManyRelationship.prototype.notifyRecordRelationshipAdded = function(record, idx) { this.record.notifyHasManyAdded(this.key, record, idx); }; ManyRelationship.prototype.notifyRecordRelationshipRemoved = function(record) { this.record.notifyHasManyRemoved(this.key, record); }; ManyRelationship.prototype.reload = function() { var self = this; if (this.link) { return this.fetchLink(); } else { return this.store.scheduleFetchMany(this.manyArray.toArray()).then(function() { //Goes away after the manyArray refactor self.manyArray.set('isLoaded', true); return self.manyArray; }); } }; ManyRelationship.prototype.computeChanges = function(records) { var members = this.members; var recordsToRemove = []; var length; var record; var i; records = setForArray(records); members.forEach(function(member) { if (records.has(member)) return; recordsToRemove.push(member); }); this.removeRecords(recordsToRemove); var hasManyArray = this.manyArray; // Using records.toArray() since currently using // removeRecord can modify length, messing stuff up // forEach since it directly looks at "length" each // iteration records = records.toArray(); length = records.length; for (i = 0; i < length; i++){ record = records[i]; //Need to preserve the order of incoming records if (hasManyArray.objectAt(i) === record ) { continue; } this.removeRecord(record); this.addRecord(record, i); } }; ManyRelationship.prototype.fetchLink = function() { var self = this; return this.store.findHasMany(this.record, this.link, this.relationshipMeta).then(function(records){ self.updateRecordsFromAdapter(records); return self.manyArray; }); }; ManyRelationship.prototype.findRecords = function() { var manyArray = this.manyArray; return this.store.findMany(manyArray.toArray()).then(function(){ //Goes away after the manyArray refactor manyArray.set('isLoaded', true); return manyArray; }); }; ManyRelationship.prototype.getRecords = function() { if (this.isAsync) { var self = this; var promise; if (this.link) { promise = this.findLink().then(function() { return self.findRecords(); }); } else { promise = this.findRecords(); } return PromiseManyArray.create({ content: this.manyArray, promise: promise }); } else { this.manyArray.set('isLoaded', true); return this.manyArray; } }; var BelongsToRelationship = function(store, record, inverseKey, relationshipMeta) { this._super$constructor(store, record, inverseKey, relationshipMeta); this.record = record; this.key = relationshipMeta.key; this.inverseRecord = null; }; BelongsToRelationship.prototype = Object.create(Relationship.prototype); BelongsToRelationship.prototype.constructor = BelongsToRelationship; BelongsToRelationship.prototype._super$constructor = Relationship; BelongsToRelationship.prototype.setRecord = function(newRecord) { if (newRecord) { this.addRecord(newRecord); } else if (this.inverseRecord) { this.removeRecord(this.inverseRecord); } }; BelongsToRelationship.prototype._super$addRecord = Relationship.prototype.addRecord; BelongsToRelationship.prototype.addRecord = function(newRecord) { if (this.members.has(newRecord)){ return;} var type = this.relationshipMeta.type; if (this.inverseRecord) { this.removeRecord(this.inverseRecord); } this.inverseRecord = newRecord; this._super$addRecord(newRecord); }; BelongsToRelationship.prototype.setRecordPromise = function(newPromise) { var content = newPromise.get && newPromise.get('content'); this.setRecord(content); }; BelongsToRelationship.prototype.notifyRecordRelationshipAdded = function(newRecord) { this.record.notifyBelongsToAdded(this.key, this); }; BelongsToRelationship.prototype.notifyRecordRelationshipRemoved = function(record) { this.record.notifyBelongsToRemoved(this.key, this); }; BelongsToRelationship.prototype._super$removeRecordFromOwn = Relationship.prototype.removeRecordFromOwn; BelongsToRelationship.prototype.removeRecordFromOwn = function(record) { if (!this.members.has(record)){ return;} this._super$removeRecordFromOwn(record); this.inverseRecord = null; }; BelongsToRelationship.prototype.findRecord = function() { if (this.inverseRecord) { return this.store._findByRecord(this.inverseRecord); } else { return Ember.RSVP.Promise.resolve(null); } }; BelongsToRelationship.prototype.fetchLink = function() { var self = this; return this.store.findBelongsTo(this.record, this.link, this.relationshipMeta).then(function(record){ self.addRecord(record); return record; }); }; BelongsToRelationship.prototype.getRecord = function() { if (this.isAsync) { var promise; if (this.link){ var self = this; promise = this.findLink().then(function() { return self.findRecord(); }); } else { promise = this.findRecord(); } return PromiseObject.create({ promise: promise, content: this.inverseRecord }); } else { return this.inverseRecord; } }; function setForArray(array) { var set = new OrderedSet(); if (array) { for (var i=0, l=array.length; i<l; i++) { set.add(array[i]); } } return set; } var createRelationshipFor = function(record, relationshipMeta, store){ var inverseKey; var inverse = record.constructor.inverseFor(relationshipMeta.key); if (inverse) { inverseKey = inverse.name; } if (relationshipMeta.kind === 'hasMany'){ return new ManyRelationship(store, record, inverseKey, relationshipMeta); } else { return new BelongsToRelationship(store, record, inverseKey, relationshipMeta); } }; __exports__.Relationship = Relationship; __exports__.ManyRelationship = ManyRelationship; __exports__.BelongsToRelationship = BelongsToRelationship; __exports__.createRelationshipFor = createRelationshipFor; }); define("ember-data/system/store", ["ember-data/system/adapter","ember-inflector/system/string","ember-data/system/map","ember-data/system/promise_proxies","exports"], function(__dependency1__, __dependency2__, __dependency3__, __dependency4__, __exports__) { "use strict"; /*globals Ember*/ /*jshint eqnull:true*/ /** @module ember-data */ var InvalidError = __dependency1__.InvalidError; var Adapter = __dependency1__.Adapter; var singularize = __dependency2__.singularize; var Map = __dependency3__.Map; var promiseArray = __dependency4__.promiseArray; var promiseObject = __dependency4__.promiseObject; var get = Ember.get; var set = Ember.set; var once = Ember.run.once; var isNone = Ember.isNone; var forEach = Ember.EnumerableUtils.forEach; var indexOf = Ember.EnumerableUtils.indexOf; var map = Ember.EnumerableUtils.map; var Promise = Ember.RSVP.Promise; var copy = Ember.copy; var Store, RecordArrayManager, Model; var camelize = Ember.String.camelize; // Implementors Note: // // The variables in this file are consistently named according to the following // scheme: // // * +id+ means an identifier managed by an external source, provided inside // the data provided by that source. These are always coerced to be strings // before being used internally. // * +clientId+ means a transient numerical identifier generated at runtime by // the data store. It is important primarily because newly created objects may // not yet have an externally generated id. // * +reference+ means a record reference object, which holds metadata about a // record, even if it has not yet been fully materialized. // * +type+ means a subclass of DS.Model. // Used by the store to normalize IDs entering the store. Despite the fact // that developers may provide IDs as numbers (e.g., `store.find(Person, 1)`), // it is important that internally we use strings, since IDs may be serialized // and lose type information. For example, Ember's router may put a record's // ID into the URL, and if we later try to deserialize that URL and find the // corresponding record, we will not know if it is a string or a number. function coerceId(id) { return id == null ? null : id+''; } /** The store contains all of the data for records loaded from the server. It is also responsible for creating instances of `DS.Model` that wrap the individual data for a record, so that they can be bound to in your Handlebars templates. Define your application's store like this: ```javascript MyApp.Store = DS.Store.extend(); ``` Most Ember.js applications will only have a single `DS.Store` that is automatically created by their `Ember.Application`. You can retrieve models from the store in several ways. To retrieve a record for a specific id, use `DS.Store`'s `find()` method: ```javascript store.find('person', 123).then(function (person) { }); ``` If your application has multiple `DS.Store` instances (an unusual case), you can specify which store should be used: ```javascript store.find('person', 123).then(function (person) { }); ``` By default, the store will talk to your backend using a standard REST mechanism. You can customize how the store talks to your backend by specifying a custom adapter: ```javascript MyApp.ApplicationAdapter = MyApp.CustomAdapter ``` You can learn more about writing a custom adapter by reading the `DS.Adapter` documentation. ### Store createRecord() vs. push() vs. pushPayload() vs. update() The store provides multiple ways to create new record objects. They have some subtle differences in their use which are detailed below: [createRecord](#method_createRecord) is used for creating new records on the client side. This will return a new record in the `created.uncommitted` state. In order to persist this record to the backend you will need to call `record.save()`. [push](#method_push) is used to notify Ember Data's store of new or updated records that exist in the backend. This will return a record in the `loaded.saved` state. The primary use-case for `store#push` is to notify Ember Data about record updates that happen outside of the normal adapter methods (for example [SSE](http://dev.w3.org/html5/eventsource/) or [Web Sockets](http://www.w3.org/TR/2009/WD-websockets-20091222/)). [pushPayload](#method_pushPayload) is a convenience wrapper for `store#push` that will deserialize payloads if the Serializer implements a `pushPayload` method. [update](#method_update) works like `push`, except it can handle partial attributes without overwriting the existing record properties. Note: When creating a new record using any of the above methods Ember Data will update `DS.RecordArray`s such as those returned by `store#all()`, `store#findAll()` or `store#filter()`. This means any data bindings or computed properties that depend on the RecordArray will automatically be synced to include the new or updated record values. @class Store @namespace DS @extends Ember.Object */ Store = Ember.Object.extend({ /** @method init @private */ init: function() { // internal bookkeeping; not observable if (!RecordArrayManager) { RecordArrayManager = requireModule("ember-data/system/record_array_manager")["default"]; } this.typeMaps = {}; this.recordArrayManager = RecordArrayManager.create({ store: this }); this._pendingSave = []; //Used to keep track of all the find requests that need to be coalesced this._pendingFetch = Map.create(); }, /** The adapter to use to communicate to a backend server or other persistence layer. This can be specified as an instance, class, or string. If you want to specify `App.CustomAdapter` as a string, do: ```js adapter: 'custom' ``` @property adapter @default DS.RESTAdapter @type {DS.Adapter|String} */ adapter: '-rest', /** Returns a JSON representation of the record using a custom type-specific serializer, if one exists. The available options are: * `includeId`: `true` if the record's ID should be included in the JSON representation @method serialize @private @param {DS.Model} record the record to serialize @param {Object} options an options hash */ serialize: function(record, options) { return this.serializerFor(record.constructor.typeKey).serialize(record, options); }, /** This property returns the adapter, after resolving a possible string key. If the supplied `adapter` was a class, or a String property path resolved to a class, this property will instantiate the class. This property is cacheable, so the same instance of a specified adapter class should be used for the lifetime of the store. @property defaultAdapter @private @return DS.Adapter */ defaultAdapter: Ember.computed('adapter', function() { var adapter = get(this, 'adapter'); if (typeof adapter === 'string') { adapter = this.container.lookup('adapter:' + adapter) || this.container.lookup('adapter:application') || this.container.lookup('adapter:-rest'); } if (DS.Adapter.detect(adapter)) { adapter = adapter.create({ container: this.container }); } return adapter; }), // ..................... // . CREATE NEW RECORD . // ..................... /** Create a new record in the current store. The properties passed to this method are set on the newly created record. To create a new instance of `App.Post`: ```js store.createRecord('post', { title: "Rails is omakase" }); ``` @method createRecord @param {String} type @param {Object} properties a hash of properties to set on the newly created record. @return {DS.Model} record */ createRecord: function(typeName, inputProperties) { var type = this.modelFor(typeName); var properties = copy(inputProperties) || {}; // If the passed properties do not include a primary key, // give the adapter an opportunity to generate one. Typically, // client-side ID generators will use something like uuid.js // to avoid conflicts. if (isNone(properties.id)) { properties.id = this._generateId(type); } // Coerce ID to a string properties.id = coerceId(properties.id); var record = this.buildRecord(type, properties.id); // Move the record out of its initial `empty` state into // the `loaded` state. record.loadedData(); // Set the properties specified on the record. record.setProperties(properties); return record; }, /** If possible, this method asks the adapter to generate an ID for a newly created record. @method _generateId @private @param {String} type @return {String} if the adapter can generate one, an ID */ _generateId: function(type) { var adapter = this.adapterFor(type); if (adapter && adapter.generateIdForRecord) { return adapter.generateIdForRecord(this); } return null; }, // ................. // . DELETE RECORD . // ................. /** For symmetry, a record can be deleted via the store. Example ```javascript var post = store.createRecord('post', { title: "Rails is omakase" }); store.deleteRecord(post); ``` @method deleteRecord @param {DS.Model} record */ deleteRecord: function(record) { record.deleteRecord(); }, /** For symmetry, a record can be unloaded via the store. Only non-dirty records can be unloaded. Example ```javascript store.find('post', 1).then(function(post) { store.unloadRecord(post); }); ``` @method unloadRecord @param {DS.Model} record */ unloadRecord: function(record) { record.unloadRecord(); }, // ................ // . FIND RECORDS . // ................ /** This is the main entry point into finding records. The first parameter to this method is the model's name as a string. --- To find a record by ID, pass the `id` as the second parameter: ```javascript store.find('person', 1); ``` The `find` method will always return a **promise** that will be resolved with the record. If the record was already in the store, the promise will be resolved immediately. Otherwise, the store will ask the adapter's `find` method to find the necessary data. The `find` method will always resolve its promise with the same object for a given type and `id`. --- You can optionally `preload` specific attributes and relationships that you know of by passing them as the third argument to find. For example, if your Ember route looks like `/posts/1/comments/2` and your API route for the comment also looks like `/posts/1/comments/2` if you want to fetch the comment without fetching the post you can pass in the post to the `find` call: ```javascript store.find('comment', 2, {post: 1}); ``` If you have access to the post model you can also pass the model itself: ```javascript store.find('post', 1).then(function (myPostModel) { store.find('comment', 2, {post: myPostModel}); }); ``` This way, your adapter's `find` or `buildURL` method will be able to look up the relationship on the record and construct the nested URL without having to first fetch the post. --- To find all records for a type, call `find` with no additional parameters: ```javascript store.find('person'); ``` This will ask the adapter's `findAll` method to find the records for the given type, and return a promise that will be resolved once the server returns the values. --- To find a record by a query, call `find` with a hash as the second parameter: ```javascript store.find('person', { page: 1 }); ``` This will ask the adapter's `findQuery` method to find the records for the query, and return a promise that will be resolved once the server responds. @method find @param {String or subclass of DS.Model} type @param {Object|String|Integer|null} id @param {Object} preload - optional set of attributes and relationships passed in either as IDs or as actual models @return {Promise} promise */ find: function(type, id, preload) { if (arguments.length === 1) { return this.findAll(type); } // We are passed a query instead of an id. if (Ember.typeOf(id) === 'object') { return this.findQuery(type, id); } return this.findById(type, coerceId(id), preload); }, /** This method returns a record for a given type and id combination. @method findById @private @param {String or subclass of DS.Model} type @param {String|Integer} id @param {Object} preload - optional set of attributes and relationships passed in either as IDs or as actual models @return {Promise} promise */ findById: function(typeName, id, preload) { var type = this.modelFor(typeName); var record = this.recordForId(type, id); return this._findByRecord(record, preload); }, _findByRecord: function(record, preload) { var fetchedRecord; if (preload) { record._preloadData(preload); } if (get(record, 'isEmpty')) { fetchedRecord = this.scheduleFetch(record); //TODO double check about reloading } else if (get(record, 'isLoading')){ fetchedRecord = record._loadingPromise; } return promiseObject(fetchedRecord || record, "DS: Store#findByRecord " + record.typeKey + " with id: " + get(record, 'id')); }, /** This method makes a series of requests to the adapter's `find` method and returns a promise that resolves once they are all loaded. @private @method findByIds @param {String} type @param {Array} ids @return {Promise} promise */ findByIds: function(type, ids) { var store = this; return promiseArray(Ember.RSVP.all(map(ids, function(id) { return store.findById(type, id); })).then(Ember.A, null, "DS: Store#findByIds of " + type + " complete")); }, /** This method is called by `findById` if it discovers that a particular type/id pair hasn't been loaded yet to kick off a request to the adapter. @method fetchRecord @private @param {DS.Model} record @return {Promise} promise */ fetchRecord: function(record) { var type = record.constructor; var id = get(record, 'id'); var adapter = this.adapterFor(type); var promise = _find(adapter, this, type, id, record); return promise; }, scheduleFetchMany: function(records) { return Ember.RSVP.all(map(records, this.scheduleFetch, this)); }, scheduleFetch: function(record) { var type = record.constructor; if (isNone(record)) { return null; } if (record._loadingPromise) { return record._loadingPromise; } var resolver = Ember.RSVP.defer('Fetching ' + type + 'with id: ' + record.get('id')); var recordResolverPair = { record: record, resolver: resolver }; var promise = resolver.promise; record.loadingData(promise); if (!this._pendingFetch.get(type)){ this._pendingFetch.set(type, [recordResolverPair]); } else { this._pendingFetch.get(type).push(recordResolverPair); } Ember.run.scheduleOnce('afterRender', this, this.flushAllPendingFetches); return promise; }, flushAllPendingFetches: function(){ if (this.isDestroyed || this.isDestroying) { return; } this._pendingFetch.forEach(this._flushPendingFetchForType, this); this._pendingFetch = Map.create(); }, _flushPendingFetchForType: function (recordResolverPairs, type) { var store = this; var adapter = store.adapterFor(type); var shouldCoalesce = !!adapter.findMany && adapter.coalesceFindRequests; var records = Ember.A(recordResolverPairs).mapBy('record'); function _fetchRecord(recordResolverPair) { recordResolverPair.resolver.resolve(store.fetchRecord(recordResolverPair.record)); } function resolveFoundRecords(records) { forEach(records, function(record){ var pair = Ember.A(recordResolverPairs).findBy('record', record); if (pair){ var resolver = pair.resolver; resolver.resolve(record); } }); } function makeMissingRecordsRejector(requestedRecords) { return function rejectMissingRecords(resolvedRecords) { var missingRecords = requestedRecords.without(resolvedRecords); rejectRecords(missingRecords); }; } function makeRecordsRejector(records) { return function (error) { rejectRecords(records, error); }; } function rejectRecords(records, error) { forEach(records, function(record){ var pair = Ember.A(recordResolverPairs).findBy('record', record); if (pair){ var resolver = pair.resolver; resolver.reject(error); } }); } if (recordResolverPairs.length === 1) { _fetchRecord(recordResolverPairs[0]); } else if (shouldCoalesce) { var groups = adapter.groupRecordsForFindMany(this, records); forEach(groups, function (groupOfRecords) { var requestedRecords = Ember.A(groupOfRecords); var ids = requestedRecords.mapBy('id'); if (ids.length > 1) { _findMany(adapter, store, type, ids, requestedRecords). then(resolveFoundRecords). then(makeMissingRecordsRejector(requestedRecords)). then(null, makeRecordsRejector(requestedRecords)); } else if (ids.length === 1) { var pair = Ember.A(recordResolverPairs).findBy('record', groupOfRecords[0]); _fetchRecord(pair); } else { } }); } else { forEach(recordResolverPairs, _fetchRecord); } }, /** Get a record by a given type and ID without triggering a fetch. This method will synchronously return the record if it is available in the store, otherwise it will return `null`. A record is available if it has been fetched earlier, or pushed manually into the store. _Note: This is an synchronous method and does not return a promise._ ```js var post = store.getById('post', 1); post.get('id'); // 1 ``` @method getById @param {String or subclass of DS.Model} type @param {String|Integer} id @return {DS.Model|null} record */ getById: function(type, id) { if (this.hasRecordForId(type, id)) { return this.recordForId(type, id); } else { return null; } }, /** This method is called by the record's `reload` method. This method calls the adapter's `find` method, which returns a promise. When **that** promise resolves, `reloadRecord` will resolve the promise returned by the record's `reload`. @method reloadRecord @private @param {DS.Model} record @return {Promise} promise */ reloadRecord: function(record) { var type = record.constructor; var adapter = this.adapterFor(type); var id = get(record, 'id'); return this.scheduleFetch(record); }, /** Returns true if a record for a given type and ID is already loaded. @method hasRecordForId @param {String or subclass of DS.Model} type @param {String|Integer} id @return {Boolean} */ hasRecordForId: function(typeName, inputId) { var type = this.modelFor(typeName); var id = coerceId(inputId); return !!this.typeMapFor(type).idToRecord[id]; }, /** Returns id record for a given type and ID. If one isn't already loaded, it builds a new record and leaves it in the `empty` state. @method recordForId @private @param {String or subclass of DS.Model} type @param {String|Integer} id @return {DS.Model} record */ recordForId: function(typeName, inputId) { var type = this.modelFor(typeName); var id = coerceId(inputId); var idToRecord = this.typeMapFor(type).idToRecord; var record = idToRecord[id]; if (!record || !idToRecord[id]) { record = this.buildRecord(type, id); } return record; }, /** @method findMany @private @param {DS.Model} owner @param {Array} records @param {String or subclass of DS.Model} type @param {Resolver} resolver @return {DS.ManyArray} records */ findMany: function(records) { var store = this; return Promise.all( map(records, function(record) { return store._findByRecord(record); })); }, /** If a relationship was originally populated by the adapter as a link (as opposed to a list of IDs), this method is called when the relationship is fetched. The link (which is usually a URL) is passed through unchanged, so the adapter can make whatever request it wants. The usual use-case is for the server to register a URL as a link, and then use that URL in the future to make a request for the relationship. @method findHasMany @private @param {DS.Model} owner @param {any} link @param {String or subclass of DS.Model} type @return {Promise} promise */ findHasMany: function(owner, link, type) { var adapter = this.adapterFor(owner.constructor); return _findHasMany(adapter, this, owner, link, type); }, /** @method findBelongsTo @private @param {DS.Model} owner @param {any} link @param {Relationship} relationship @return {Promise} promise */ findBelongsTo: function(owner, link, relationship) { var adapter = this.adapterFor(owner.constructor); return _findBelongsTo(adapter, this, owner, link, relationship); }, /** This method delegates a query to the adapter. This is the one place where adapter-level semantics are exposed to the application. Exposing queries this way seems preferable to creating an abstract query language for all server-side queries, and then require all adapters to implement them. This method returns a promise, which is resolved with a `RecordArray` once the server returns. @method findQuery @private @param {String or subclass of DS.Model} type @param {any} query an opaque query to be used by the adapter @return {Promise} promise */ findQuery: function(typeName, query) { var type = this.modelFor(typeName); var array = this.recordArrayManager .createAdapterPopulatedRecordArray(type, query); var adapter = this.adapterFor(type); return promiseArray(_findQuery(adapter, this, type, query, array)); }, /** This method returns an array of all records adapter can find. It triggers the adapter's `findAll` method to give it an opportunity to populate the array with records of that type. @method findAll @private @param {String or subclass of DS.Model} type @return {DS.AdapterPopulatedRecordArray} */ findAll: function(typeName) { var type = this.modelFor(typeName); return this.fetchAll(type, this.all(type)); }, /** @method fetchAll @private @param {DS.Model} type @param {DS.RecordArray} array @return {Promise} promise */ fetchAll: function(type, array) { var adapter = this.adapterFor(type); var sinceToken = this.typeMapFor(type).metadata.since; set(array, 'isUpdating', true); return promiseArray(_findAll(adapter, this, type, sinceToken)); }, /** @method didUpdateAll @param {DS.Model} type */ didUpdateAll: function(type) { var findAllCache = this.typeMapFor(type).findAllCache; set(findAllCache, 'isUpdating', false); }, /** This method returns a filtered array that contains all of the known records for a given type. Note that because it's just a filter, it will have any locally created records of the type. Also note that multiple calls to `all` for a given type will always return the same RecordArray. Example ```javascript var localPosts = store.all('post'); ``` @method all @param {String or subclass of DS.Model} type @return {DS.RecordArray} */ all: function(typeName) { var type = this.modelFor(typeName); var typeMap = this.typeMapFor(type); var findAllCache = typeMap.findAllCache; if (findAllCache) { return findAllCache; } var array = this.recordArrayManager.createRecordArray(type); typeMap.findAllCache = array; return array; }, /** This method unloads all of the known records for a given type. ```javascript store.unloadAll('post'); ``` @method unloadAll @param {String or subclass of DS.Model} type */ unloadAll: function(type) { var modelType = this.modelFor(type); var typeMap = this.typeMapFor(modelType); var records = typeMap.records.slice(); var record; for (var i = 0; i < records.length; i++) { record = records[i]; record.unloadRecord(); record.destroy(); // maybe within unloadRecord } typeMap.findAllCache = null; }, /** Takes a type and filter function, and returns a live RecordArray that remains up to date as new records are loaded into the store or created locally. The callback function takes a materialized record, and returns true if the record should be included in the filter and false if it should not. The filter function is called once on all records for the type when it is created, and then once on each newly loaded or created record. If any of a record's properties change, or if it changes state, the filter function will be invoked again to determine whether it should still be in the array. Optionally you can pass a query which will be triggered at first. The results returned by the server could then appear in the filter if they match the filter function. Example ```javascript store.filter('post', {unread: true}, function(post) { return post.get('unread'); }).then(function(unreadPosts) { unreadPosts.get('length'); // 5 var unreadPost = unreadPosts.objectAt(0); unreadPost.set('unread', false); unreadPosts.get('length'); // 4 }); ``` @method filter @param {String or subclass of DS.Model} type @param {Object} query optional query @param {Function} filter @return {DS.PromiseArray} */ filter: function(type, query, filter) { var promise; var length = arguments.length; var array; var hasQuery = length === 3; // allow an optional server query if (hasQuery) { promise = this.findQuery(type, query); } else if (arguments.length === 2) { filter = query; } type = this.modelFor(type); if (hasQuery) { array = this.recordArrayManager.createFilteredRecordArray(type, filter, query); } else { array = this.recordArrayManager.createFilteredRecordArray(type, filter); } promise = promise || Promise.cast(array); return promiseArray(promise.then(function() { return array; }, null, "DS: Store#filter of " + type)); }, /** This method returns if a certain record is already loaded in the store. Use this function to know beforehand if a find() will result in a request or that it will be a cache hit. Example ```javascript store.recordIsLoaded('post', 1); // false store.find('post', 1).then(function() { store.recordIsLoaded('post', 1); // true }); ``` @method recordIsLoaded @param {String or subclass of DS.Model} type @param {string} id @return {boolean} */ recordIsLoaded: function(type, id) { if (!this.hasRecordForId(type, id)) { return false; } return !get(this.recordForId(type, id), 'isEmpty'); }, /** This method returns the metadata for a specific type. @method metadataFor @param {String or subclass of DS.Model} type @return {object} */ metadataFor: function(type) { type = this.modelFor(type); return this.typeMapFor(type).metadata; }, // ............ // . UPDATING . // ............ /** If the adapter updates attributes or acknowledges creation or deletion, the record will notify the store to update its membership in any filters. To avoid thrashing, this method is invoked only once per run loop per record. @method dataWasUpdated @private @param {Class} type @param {DS.Model} record */ dataWasUpdated: function(type, record) { this.recordArrayManager.recordDidChange(record); }, // .............. // . PERSISTING . // .............. /** This method is called by `record.save`, and gets passed a resolver for the promise that `record.save` returns. It schedules saving to happen at the end of the run loop. @method scheduleSave @private @param {DS.Model} record @param {Resolver} resolver */ scheduleSave: function(record, resolver) { record.adapterWillCommit(); this._pendingSave.push([record, resolver]); once(this, 'flushPendingSave'); }, /** This method is called at the end of the run loop, and flushes any records passed into `scheduleSave` @method flushPendingSave @private */ flushPendingSave: function() { var pending = this._pendingSave.slice(); this._pendingSave = []; forEach(pending, function(tuple) { var record = tuple[0], resolver = tuple[1]; var adapter = this.adapterFor(record.constructor); var operation; if (get(record, 'currentState.stateName') === 'root.deleted.saved') { return resolver.resolve(record); } else if (get(record, 'isNew')) { operation = 'createRecord'; } else if (get(record, 'isDeleted')) { operation = 'deleteRecord'; } else { operation = 'updateRecord'; } resolver.resolve(_commit(adapter, this, operation, record)); }, this); }, /** This method is called once the promise returned by an adapter's `createRecord`, `updateRecord` or `deleteRecord` is resolved. If the data provides a server-generated ID, it will update the record and the store's indexes. @method didSaveRecord @private @param {DS.Model} record the in-flight record @param {Object} data optional data (see above) */ didSaveRecord: function(record, data) { if (data) { // normalize relationship IDs into records data = normalizeRelationships(this, record.constructor, data, record); setupRelationships(this, record, data); this.updateId(record, data); } record.adapterDidCommit(data); }, /** This method is called once the promise returned by an adapter's `createRecord`, `updateRecord` or `deleteRecord` is rejected with a `DS.InvalidError`. @method recordWasInvalid @private @param {DS.Model} record @param {Object} errors */ recordWasInvalid: function(record, errors) { record.adapterDidInvalidate(errors); }, /** This method is called once the promise returned by an adapter's `createRecord`, `updateRecord` or `deleteRecord` is rejected (with anything other than a `DS.InvalidError`). @method recordWasError @private @param {DS.Model} record */ recordWasError: function(record) { record.adapterDidError(); }, /** When an adapter's `createRecord`, `updateRecord` or `deleteRecord` resolves with data, this method extracts the ID from the supplied data. @method updateId @private @param {DS.Model} record @param {Object} data */ updateId: function(record, data) { var oldId = get(record, 'id'); var id = coerceId(data.id); this.typeMapFor(record.constructor).idToRecord[id] = record; set(record, 'id', id); }, /** Returns a map of IDs to client IDs for a given type. @method typeMapFor @private @param {subclass of DS.Model} type @return {Object} typeMap */ typeMapFor: function(type) { var typeMaps = get(this, 'typeMaps'); var guid = Ember.guidFor(type); var typeMap; typeMap = typeMaps[guid]; if (typeMap) { return typeMap; } typeMap = { idToRecord: Object.create(null), records: [], metadata: Object.create(null), type: type }; typeMaps[guid] = typeMap; return typeMap; }, // ................ // . LOADING DATA . // ................ /** This internal method is used by `push`. @method _load @private @param {String or subclass of DS.Model} type @param {Object} data @param {Boolean} partial the data should be merged into the existing data, not replace it. */ _load: function(type, data, partial) { var id = coerceId(data.id); var record = this.recordForId(type, id); record.setupData(data, partial); this.recordArrayManager.recordDidChange(record); return record; }, /** Returns a model class for a particular key. Used by methods that take a type key (like `find`, `createRecord`, etc.) @method modelFor @param {String or subclass of DS.Model} key @return {subclass of DS.Model} */ modelFor: function(key) { var factory; if (typeof key === 'string') { factory = this.modelFactoryFor(key); if (!factory) { throw new Ember.Error("No model was found for '" + key + "'"); } factory.typeKey = factory.typeKey || this._normalizeTypeKey(key); } else { // A factory already supplied. Ensure it has a normalized key. factory = key; if (factory.typeKey) { factory.typeKey = this._normalizeTypeKey(factory.typeKey); } } factory.store = this; return factory; }, modelFactoryFor: function(key){ return this.container.lookupFactory('model:' + key); }, /** Push some data for a given type into the store. This method expects normalized data: * The ID is a key named `id` (an ID is mandatory) * The names of attributes are the ones you used in your model's `DS.attr`s. * Your relationships must be: * represented as IDs or Arrays of IDs * represented as model instances * represented as URLs, under the `links` key For this model: ```js App.Person = DS.Model.extend({ firstName: DS.attr(), lastName: DS.attr(), children: DS.hasMany('person') }); ``` To represent the children as IDs: ```js { id: 1, firstName: "Tom", lastName: "Dale", children: [1, 2, 3] } ``` To represent the children relationship as a URL: ```js { id: 1, firstName: "Tom", lastName: "Dale", links: { children: "/people/1/children" } } ``` If you're streaming data or implementing an adapter, make sure that you have converted the incoming data into this form. This method can be used both to push in brand new records, as well as to update existing records. @method push @param {String or subclass of DS.Model} type @param {Object} data @return {DS.Model} the record that was created or updated. */ push: function(typeName, data, _partial) { // _partial is an internal param used by `update`. // If passed, it means that the data should be // merged into the existing data, not replace it. var type = this.modelFor(typeName); // If the payload contains relationships that are specified as // IDs, normalizeRelationships will convert them into DS.Model instances // (possibly unloaded) before we push the payload into the // store. data = normalizeRelationships(this, type, data); // Actually load the record into the store. this._load(type, data, _partial); var record = this.recordForId(type, data.id); // Now that the pushed record as well as any related records // are in the store, create the data structures used to track // relationships. setupRelationships(this, record, data); return record; }, /** Push some raw data into the store. This method can be used both to push in brand new records, as well as to update existing records. You can push in more than one type of object at once. All objects should be in the format expected by the serializer. ```js App.ApplicationSerializer = DS.ActiveModelSerializer; var pushData = { posts: [ {id: 1, post_title: "Great post", comment_ids: [2]} ], comments: [ {id: 2, comment_body: "Insightful comment"} ] } store.pushPayload(pushData); ``` By default, the data will be deserialized using a default serializer (the application serializer if it exists). Alternatively, `pushPayload` will accept a model type which will determine which serializer will process the payload. However, the serializer itself (processing this data via `normalizePayload`) will not know which model it is deserializing. ```js App.ApplicationSerializer = DS.ActiveModelSerializer; App.PostSerializer = DS.JSONSerializer; store.pushPayload('comment', pushData); // Will use the ApplicationSerializer store.pushPayload('post', pushData); // Will use the PostSerializer ``` @method pushPayload @param {String} type Optionally, a model used to determine which serializer will be used @param {Object} payload */ pushPayload: function (type, inputPayload) { var serializer; var payload; if (!inputPayload) { payload = type; serializer = defaultSerializer(this.container); } else { payload = inputPayload; serializer = this.serializerFor(type); } serializer.pushPayload(this, payload); }, /** `normalize` converts a json payload into the normalized form that [push](#method_push) expects. Example ```js socket.on('message', function(message) { var modelName = message.model; var data = message.data; store.push(modelName, store.normalize(modelName, data)); }); ``` @method normalize @param {String} type The name of the model type for this payload @param {Object} payload @return {Object} The normalized payload */ normalize: function (type, payload) { var serializer = this.serializerFor(type); var model = this.modelFor(type); return serializer.normalize(model, payload); }, /** Update existing records in the store. Unlike [push](#method_push), update will merge the new data properties with the existing properties. This makes it safe to use with a subset of record attributes. This method expects normalized data. `update` is useful if your app broadcasts partial updates to records. ```js App.Person = DS.Model.extend({ firstName: DS.attr('string'), lastName: DS.attr('string') }); store.get('person', 1).then(function(tom) { tom.get('firstName'); // Tom tom.get('lastName'); // Dale var updateEvent = {id: 1, firstName: "TomHuda"}; store.update('person', updateEvent); tom.get('firstName'); // TomHuda tom.get('lastName'); // Dale }); ``` @method update @param {String} type @param {Object} data @return {DS.Model} the record that was updated. */ update: function(type, data) { return this.push(type, data, true); }, /** If you have an Array of normalized data to push, you can call `pushMany` with the Array, and it will call `push` repeatedly for you. @method pushMany @param {String or subclass of DS.Model} type @param {Array} datas @return {Array} */ pushMany: function(type, datas) { var length = datas.length; var result = new Array(length); for (var i = 0; i < length; i++) { result[i] = this.push(type, datas[i]); } return result; }, /** If you have some metadata to set for a type you can call `metaForType`. @method metaForType @param {String or subclass of DS.Model} type @param {Object} metadata */ metaForType: function(typeName, metadata) { var type = this.modelFor(typeName); Ember.merge(this.typeMapFor(type).metadata, metadata); }, /** Build a brand new record for a given type, ID, and initial data. @method buildRecord @private @param {subclass of DS.Model} type @param {String} id @param {Object} data @return {DS.Model} record */ buildRecord: function(type, id, data) { var typeMap = this.typeMapFor(type); var idToRecord = typeMap.idToRecord; // lookupFactory should really return an object that creates // instances with the injections applied var record = type._create({ id: id, store: this, container: this.container }); if (data) { record.setupData(data); } // if we're creating an item, this process will be done // later, once the object has been persisted. if (id) { idToRecord[id] = record; } typeMap.records.push(record); return record; }, // ............... // . DESTRUCTION . // ............... /** When a record is destroyed, this un-indexes it and removes it from any record arrays so it can be GCed. @method dematerializeRecord @private @param {DS.Model} record */ dematerializeRecord: function(record) { var type = record.constructor; var typeMap = this.typeMapFor(type); var id = get(record, 'id'); record.updateRecordArrays(); if (id) { delete typeMap.idToRecord[id]; } var loc = indexOf(typeMap.records, record); typeMap.records.splice(loc, 1); }, // ...................... // . PER-TYPE ADAPTERS // ...................... /** Returns the adapter for a given type. @method adapterFor @private @param {subclass of DS.Model} type @return DS.Adapter */ adapterFor: function(type) { var container = this.container, adapter; if (container) { adapter = container.lookup('adapter:' + type.typeKey) || container.lookup('adapter:application'); } return adapter || get(this, 'defaultAdapter'); }, // .............................. // . RECORD CHANGE NOTIFICATION . // .............................. /** Returns an instance of the serializer for a given type. For example, `serializerFor('person')` will return an instance of `App.PersonSerializer`. If no `App.PersonSerializer` is found, this method will look for an `App.ApplicationSerializer` (the default serializer for your entire application). If no `App.ApplicationSerializer` is found, it will fall back to an instance of `DS.JSONSerializer`. @method serializerFor @private @param {String} type the record to serialize @return {DS.Serializer} */ serializerFor: function(type) { type = this.modelFor(type); var adapter = this.adapterFor(type); return serializerFor(this.container, type.typeKey, adapter && adapter.defaultSerializer); }, willDestroy: function() { var typeMaps = this.typeMaps; var keys = Ember.keys(typeMaps); var types = map(keys, byType); this.recordArrayManager.destroy(); forEach(types, this.unloadAll, this); function byType(entry) { return typeMaps[entry]['type']; } }, /** All typeKeys are camelCase internally. Changing this function may require changes to other normalization hooks (such as typeForRoot). @method _normalizeTypeKey @private @param {String} type @return {String} if the adapter can generate one, an ID */ _normalizeTypeKey: function(key) { return camelize(singularize(key)); } }); function normalizeRelationships(store, type, data, record) { type.eachRelationship(function(key, relationship) { var kind = relationship.kind; var value = data[key]; if (kind === 'belongsTo') { deserializeRecordId(store, data, key, relationship, value); } else if (kind === 'hasMany') { deserializeRecordIds(store, data, key, relationship, value); } }); return data; } function deserializeRecordId(store, data, key, relationship, id) { if (!Model) { Model = requireModule("ember-data/system/model")["Model"]; } if (isNone(id) || id instanceof Model) { return; } var type; if (typeof id === 'number' || typeof id === 'string') { type = typeFor(relationship, key, data); data[key] = store.recordForId(type, id); } else if (typeof id === 'object') { // polymorphic data[key] = store.recordForId(id.type, id.id); } } function typeFor(relationship, key, data) { if (relationship.options.polymorphic) { return data[key + "Type"]; } else { return relationship.type; } } function deserializeRecordIds(store, data, key, relationship, ids) { if (!Ember.isArray(ids)) { return; } for (var i=0, l=ids.length; i<l; i++) { deserializeRecordId(store, ids, i, relationship, ids[i]); } } // Delegation to the adapter and promise management function serializerFor(container, type, defaultSerializer) { return container.lookup('serializer:'+type) || container.lookup('serializer:application') || container.lookup('serializer:' + defaultSerializer) || container.lookup('serializer:-default'); } function defaultSerializer(container) { return container.lookup('serializer:application') || container.lookup('serializer:-default'); } function serializerForAdapter(adapter, type) { var serializer = adapter.serializer; var defaultSerializer = adapter.defaultSerializer; var container = adapter.container; if (container && serializer === undefined) { serializer = serializerFor(container, type.typeKey, defaultSerializer); } if (serializer === null || serializer === undefined) { serializer = { extract: function(store, type, payload) { return payload; } }; } return serializer; } function _objectIsAlive(object) { return !(get(object, "isDestroyed") || get(object, "isDestroying")); } function _guard(promise, test) { var guarded = promise['finally'](function() { if (!test()) { guarded._subscribers.length = 0; } }); return guarded; } function _bind(fn) { var args = Array.prototype.slice.call(arguments, 1); return function() { return fn.apply(undefined, args); }; } function _find(adapter, store, type, id, record) { var promise = adapter.find(store, type, id, record); var serializer = serializerForAdapter(adapter, type); var label = "DS: Handle Adapter#find of " + type + " with id: " + id; promise = Promise.cast(promise, label); promise = _guard(promise, _bind(_objectIsAlive, store)); return promise.then(function(adapterPayload) { var payload = serializer.extract(store, type, adapterPayload, id, 'find'); return store.push(type, payload); }, function(error) { var record = store.getById(type, id); if (record) { record.notFound(); } throw error; }, "DS: Extract payload of '" + type + "'"); } function _findMany(adapter, store, type, ids, records) { var promise = adapter.findMany(store, type, ids, records); var serializer = serializerForAdapter(adapter, type); var label = "DS: Handle Adapter#findMany of " + type; if (promise === undefined) { throw new Error('adapter.findMany returned undefined, this was very likely a mistake'); } promise = Promise.cast(promise, label); promise = _guard(promise, _bind(_objectIsAlive, store)); return promise.then(function(adapterPayload) { var payload = serializer.extract(store, type, adapterPayload, null, 'findMany'); return store.pushMany(type, payload); }, null, "DS: Extract payload of " + type); } function _findHasMany(adapter, store, record, link, relationship) { var promise = adapter.findHasMany(store, record, link, relationship); var serializer = serializerForAdapter(adapter, relationship.type); var label = "DS: Handle Adapter#findHasMany of " + record + " : " + relationship.type; promise = Promise.cast(promise, label); promise = _guard(promise, _bind(_objectIsAlive, store)); promise = _guard(promise, _bind(_objectIsAlive, record)); return promise.then(function(adapterPayload) { var payload = serializer.extract(store, relationship.type, adapterPayload, null, 'findHasMany'); var records = store.pushMany(relationship.type, payload); return records; }, null, "DS: Extract payload of " + record + " : hasMany " + relationship.type); } function _findBelongsTo(adapter, store, record, link, relationship) { var promise = adapter.findBelongsTo(store, record, link, relationship); var serializer = serializerForAdapter(adapter, relationship.type); var label = "DS: Handle Adapter#findBelongsTo of " + record + " : " + relationship.type; promise = Promise.cast(promise, label); promise = _guard(promise, _bind(_objectIsAlive, store)); promise = _guard(promise, _bind(_objectIsAlive, record)); return promise.then(function(adapterPayload) { var payload = serializer.extract(store, relationship.type, adapterPayload, null, 'findBelongsTo'); var record = store.push(relationship.type, payload); return record; }, null, "DS: Extract payload of " + record + " : " + relationship.type); } function _findAll(adapter, store, type, sinceToken) { var promise = adapter.findAll(store, type, sinceToken); var serializer = serializerForAdapter(adapter, type); var label = "DS: Handle Adapter#findAll of " + type; promise = Promise.cast(promise, label); promise = _guard(promise, _bind(_objectIsAlive, store)); return promise.then(function(adapterPayload) { var payload = serializer.extract(store, type, adapterPayload, null, 'findAll'); store.pushMany(type, payload); store.didUpdateAll(type); return store.all(type); }, null, "DS: Extract payload of findAll " + type); } function _findQuery(adapter, store, type, query, recordArray) { var promise = adapter.findQuery(store, type, query, recordArray); var serializer = serializerForAdapter(adapter, type); var label = "DS: Handle Adapter#findQuery of " + type; promise = Promise.cast(promise, label); promise = _guard(promise, _bind(_objectIsAlive, store)); return promise.then(function(adapterPayload) { var payload = serializer.extract(store, type, adapterPayload, null, 'findQuery'); recordArray.load(payload); return recordArray; }, null, "DS: Extract payload of findQuery " + type); } function _commit(adapter, store, operation, record) { var type = record.constructor; var promise = adapter[operation](store, type, record); var serializer = serializerForAdapter(adapter, type); var label = "DS: Extract and notify about " + operation + " completion of " + record; promise = Promise.cast(promise, label); promise = _guard(promise, _bind(_objectIsAlive, store)); promise = _guard(promise, _bind(_objectIsAlive, record)); return promise.then(function(adapterPayload) { var payload; if (adapterPayload) { payload = serializer.extract(store, type, adapterPayload, get(record, 'id'), operation); } else { payload = adapterPayload; } store.didSaveRecord(record, payload); return record; }, function(reason) { if (reason instanceof InvalidError) { store.recordWasInvalid(record, reason.errors); } else { store.recordWasError(record, reason); } throw reason; }, label); } function setupRelationships(store, record, data) { var type = record.constructor; type.eachRelationship(function(key, descriptor) { var kind = descriptor.kind; var value = data[key]; var relationship = record._relationships[key]; if (data.links && data.links[key]) { relationship.updateLink(data.links[key]); } if (kind === 'belongsTo') { if (value === undefined) { return; } relationship.setRecord(value); } else if (kind === 'hasMany' && value) { relationship.updateRecordsFromAdapter(value); } }); } __exports__.Store = Store; __exports__["default"] = Store; }); define("ember-data/transforms", ["ember-data/transforms/base","ember-data/transforms/number","ember-data/transforms/date","ember-data/transforms/string","ember-data/transforms/boolean","exports"], function(__dependency1__, __dependency2__, __dependency3__, __dependency4__, __dependency5__, __exports__) { "use strict"; var Transform = __dependency1__["default"]; var NumberTransform = __dependency2__["default"]; var DateTransform = __dependency3__["default"]; var StringTransform = __dependency4__["default"]; var BooleanTransform = __dependency5__["default"]; __exports__.Transform = Transform; __exports__.NumberTransform = NumberTransform; __exports__.DateTransform = DateTransform; __exports__.StringTransform = StringTransform; __exports__.BooleanTransform = BooleanTransform; }); define("ember-data/transforms/base", ["exports"], function(__exports__) { "use strict"; /** The `DS.Transform` class is used to serialize and deserialize model attributes when they are saved or loaded from an adapter. Subclassing `DS.Transform` is useful for creating custom attributes. All subclasses of `DS.Transform` must implement a `serialize` and a `deserialize` method. Example ```javascript // Converts centigrade in the JSON to fahrenheit in the app App.TemperatureTransform = DS.Transform.extend({ deserialize: function(serialized) { return (serialized * 1.8) + 32; }, serialize: function(deserialized) { return (deserialized - 32) / 1.8; } }); ``` Usage ```javascript var attr = DS.attr; App.Requirement = DS.Model.extend({ name: attr('string'), temperature: attr('temperature') }); ``` @class Transform @namespace DS */ __exports__["default"] = Ember.Object.extend({ /** When given a deserialized value from a record attribute this method must return the serialized value. Example ```javascript serialize: function(deserialized) { return Ember.isEmpty(deserialized) ? null : Number(deserialized); } ``` @method serialize @param {mixed} deserialized The deserialized value @return {mixed} The serialized value */ serialize: Ember.required(), /** When given a serialize value from a JSON object this method must return the deserialized value for the record attribute. Example ```javascript deserialize: function(serialized) { return empty(serialized) ? null : Number(serialized); } ``` @method deserialize @param {mixed} serialized The serialized value @return {mixed} The deserialized value */ deserialize: Ember.required() }); }); define("ember-data/transforms/boolean", ["ember-data/transforms/base","exports"], function(__dependency1__, __exports__) { "use strict"; var Transform = __dependency1__["default"]; /** The `DS.BooleanTransform` class is used to serialize and deserialize boolean attributes on Ember Data record objects. This transform is used when `boolean` is passed as the type parameter to the [DS.attr](../../data#method_attr) function. Usage ```javascript var attr = DS.attr; App.User = DS.Model.extend({ isAdmin: attr('boolean'), name: attr('string'), email: attr('string') }); ``` @class BooleanTransform @extends DS.Transform @namespace DS */ __exports__["default"] = Transform.extend({ deserialize: function(serialized) { var type = typeof serialized; if (type === "boolean") { return serialized; } else if (type === "string") { return serialized.match(/^true$|^t$|^1$/i) !== null; } else if (type === "number") { return serialized === 1; } else { return false; } }, serialize: function(deserialized) { return Boolean(deserialized); } }); }); define("ember-data/transforms/date", ["ember-data/transforms/base","exports"], function(__dependency1__, __exports__) { "use strict"; /** The `DS.DateTransform` class is used to serialize and deserialize date attributes on Ember Data record objects. This transform is used when `date` is passed as the type parameter to the [DS.attr](../../data#method_attr) function. ```javascript var attr = DS.attr; App.Score = DS.Model.extend({ value: attr('number'), player: DS.belongsTo('player'), date: attr('date') }); ``` @class DateTransform @extends DS.Transform @namespace DS */ var Transform = __dependency1__["default"]; // Date.prototype.toISOString shim // https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/toISOString var toISOString = Date.prototype.toISOString || function() { function pad(number) { if ( number < 10 ) { return '0' + number; } return number; } return this.getUTCFullYear() + '-' + pad( this.getUTCMonth() + 1 ) + '-' + pad( this.getUTCDate() ) + 'T' + pad( this.getUTCHours() ) + ':' + pad( this.getUTCMinutes() ) + ':' + pad( this.getUTCSeconds() ) + '.' + (this.getUTCMilliseconds() / 1000).toFixed(3).slice(2, 5) + 'Z'; }; if (Ember.SHIM_ES5) { if (!Date.prototype.toISOString) { Date.prototype.toISOString = toISOString; } } __exports__["default"] = Transform.extend({ deserialize: function(serialized) { var type = typeof serialized; if (type === "string") { return new Date(Ember.Date.parse(serialized)); } else if (type === "number") { return new Date(serialized); } else if (serialized === null || serialized === undefined) { // if the value is not present in the data, // return undefined, not null. return serialized; } else { return null; } }, serialize: function(date) { if (date instanceof Date) { return toISOString.call(date); } else { return null; } } }); }); define("ember-data/transforms/number", ["ember-data/transforms/base","exports"], function(__dependency1__, __exports__) { "use strict"; var Transform = __dependency1__["default"]; var empty = Ember.isEmpty; /** The `DS.NumberTransform` class is used to serialize and deserialize numeric attributes on Ember Data record objects. This transform is used when `number` is passed as the type parameter to the [DS.attr](../../data#method_attr) function. Usage ```javascript var attr = DS.attr; App.Score = DS.Model.extend({ value: attr('number'), player: DS.belongsTo('player'), date: attr('date') }); ``` @class NumberTransform @extends DS.Transform @namespace DS */ __exports__["default"] = Transform.extend({ deserialize: function(serialized) { return empty(serialized) ? null : Number(serialized); }, serialize: function(deserialized) { return empty(deserialized) ? null : Number(deserialized); } }); }); define("ember-data/transforms/string", ["ember-data/transforms/base","exports"], function(__dependency1__, __exports__) { "use strict"; var Transform = __dependency1__["default"]; var none = Ember.isNone; /** The `DS.StringTransform` class is used to serialize and deserialize string attributes on Ember Data record objects. This transform is used when `string` is passed as the type parameter to the [DS.attr](../../data#method_attr) function. Usage ```javascript var attr = DS.attr; App.User = DS.Model.extend({ isAdmin: attr('boolean'), name: attr('string'), email: attr('string') }); ``` @class StringTransform @extends DS.Transform @namespace DS */ __exports__["default"] = Transform.extend({ deserialize: function(serialized) { return none(serialized) ? null : String(serialized); }, serialize: function(deserialized) { return none(deserialized) ? null : String(deserialized); } }); }); define("ember-inflector", ["./system","./helpers","./ext/string","exports"], function(__dependency1__, __dependency2__, __dependency3__, __exports__) { "use strict"; var Inflector = __dependency1__.Inflector; var defaultRules = __dependency1__.defaultRules; var pluralize = __dependency1__.pluralize; var singularize = __dependency1__.singularize; Inflector.defaultRules = defaultRules; Ember.Inflector = Inflector; Ember.String.pluralize = pluralize; Ember.String.singularize = singularize; __exports__["default"] = Inflector; __exports__.pluralize = pluralize; __exports__.singularize = singularize; }); define("ember-inflector/ext/string", ["../system/string"], function(__dependency1__) { "use strict"; var pluralize = __dependency1__.pluralize; var singularize = __dependency1__.singularize; if (Ember.EXTEND_PROTOTYPES === true || Ember.EXTEND_PROTOTYPES.String) { /** See {{#crossLink "Ember.String/pluralize"}}{{/crossLink}} @method pluralize @for String */ String.prototype.pluralize = function() { return pluralize(this); }; /** See {{#crossLink "Ember.String/singularize"}}{{/crossLink}} @method singularize @for String */ String.prototype.singularize = function() { return singularize(this); }; } }); define("ember-inflector/helpers", ["./system/string"], function(__dependency1__) { "use strict"; var singularize = __dependency1__.singularize; var pluralize = __dependency1__.pluralize; /** * * If you have Ember Inflector (such as if Ember Data is present), * singularize a word. For example, turn "oxen" into "ox". * * Example: * * {{singularize myProperty}} * {{singularize "oxen"}} * * @for Ember.Handlebars.helpers * @method singularize * @param {String|Property} word word to singularize */ Ember.Handlebars.helper('singularize', singularize); /** * * If you have Ember Inflector (such as if Ember Data is present), * pluralize a word. For example, turn "ox" into "oxen". * * Example: * * {{pluralize myProperty}} * {{pluralize "oxen"}} * * @for Ember.Handlebars.helpers * @method pluralize * @param {String|Property} word word to pluralize */ Ember.Handlebars.helper('pluralize', pluralize); }); define("ember-inflector/system", ["./system/inflector","./system/string","./system/inflections","exports"], function(__dependency1__, __dependency2__, __dependency3__, __exports__) { "use strict"; var Inflector = __dependency1__["default"]; var pluralize = __dependency2__.pluralize; var singularize = __dependency2__.singularize; var defaultRules = __dependency3__["default"]; Inflector.inflector = new Inflector(defaultRules); __exports__.Inflector = Inflector; __exports__.singularize = singularize; __exports__.pluralize = pluralize; __exports__.defaultRules = defaultRules; }); define("ember-inflector/system/inflections", ["exports"], function(__exports__) { "use strict"; __exports__["default"] = { plurals: [ [/$/, 's'], [/s$/i, 's'], [/^(ax|test)is$/i, '$1es'], [/(octop|vir)us$/i, '$1i'], [/(octop|vir)i$/i, '$1i'], [/(alias|status)$/i, '$1es'], [/(bu)s$/i, '$1ses'], [/(buffal|tomat)o$/i, '$1oes'], [/([ti])um$/i, '$1a'], [/([ti])a$/i, '$1a'], [/sis$/i, 'ses'], [/(?:([^f])fe|([lr])f)$/i, '$1$2ves'], [/(hive)$/i, '$1s'], [/([^aeiouy]|qu)y$/i, '$1ies'], [/(x|ch|ss|sh)$/i, '$1es'], [/(matr|vert|ind)(?:ix|ex)$/i, '$1ices'], [/^(m|l)ouse$/i, '$1ice'], [/^(m|l)ice$/i, '$1ice'], [/^(ox)$/i, '$1en'], [/^(oxen)$/i, '$1'], [/(quiz)$/i, '$1zes'] ], singular: [ [/s$/i, ''], [/(ss)$/i, '$1'], [/(n)ews$/i, '$1ews'], [/([ti])a$/i, '$1um'], [/((a)naly|(b)a|(d)iagno|(p)arenthe|(p)rogno|(s)ynop|(t)he)(sis|ses)$/i, '$1sis'], [/(^analy)(sis|ses)$/i, '$1sis'], [/([^f])ves$/i, '$1fe'], [/(hive)s$/i, '$1'], [/(tive)s$/i, '$1'], [/([lr])ves$/i, '$1f'], [/([^aeiouy]|qu)ies$/i, '$1y'], [/(s)eries$/i, '$1eries'], [/(m)ovies$/i, '$1ovie'], [/(x|ch|ss|sh)es$/i, '$1'], [/^(m|l)ice$/i, '$1ouse'], [/(bus)(es)?$/i, '$1'], [/(o)es$/i, '$1'], [/(shoe)s$/i, '$1'], [/(cris|test)(is|es)$/i, '$1is'], [/^(a)x[ie]s$/i, '$1xis'], [/(octop|vir)(us|i)$/i, '$1us'], [/(alias|status)(es)?$/i, '$1'], [/^(ox)en/i, '$1'], [/(vert|ind)ices$/i, '$1ex'], [/(matr)ices$/i, '$1ix'], [/(quiz)zes$/i, '$1'], [/(database)s$/i, '$1'] ], irregularPairs: [ ['person', 'people'], ['man', 'men'], ['child', 'children'], ['sex', 'sexes'], ['move', 'moves'], ['cow', 'kine'], ['zombie', 'zombies'] ], uncountable: [ 'equipment', 'information', 'rice', 'money', 'species', 'series', 'fish', 'sheep', 'jeans', 'police' ] }; }); define("ember-inflector/system/inflector", ["exports"], function(__exports__) { "use strict"; var BLANK_REGEX = /^\s*$/; var LAST_WORD_DASHED_REGEX = /(\w+[_-])([a-z\d]+$)/; var LAST_WORD_CAMELIZED_REGEX = /(\w+)([A-Z][a-z\d]*$)/; var CAMELIZED_REGEX = /[A-Z][a-z\d]*$/; function loadUncountable(rules, uncountable) { for (var i = 0, length = uncountable.length; i < length; i++) { rules.uncountable[uncountable[i].toLowerCase()] = true; } } function loadIrregular(rules, irregularPairs) { var pair; for (var i = 0, length = irregularPairs.length; i < length; i++) { pair = irregularPairs[i]; //pluralizing rules.irregular[pair[0].toLowerCase()] = pair[1]; rules.irregular[pair[1].toLowerCase()] = pair[1]; //singularizing rules.irregularInverse[pair[1].toLowerCase()] = pair[0]; rules.irregularInverse[pair[0].toLowerCase()] = pair[0]; } } /** Inflector.Ember provides a mechanism for supplying inflection rules for your application. Ember includes a default set of inflection rules, and provides an API for providing additional rules. Examples: Creating an inflector with no rules. ```js var inflector = new Ember.Inflector(); ``` Creating an inflector with the default ember ruleset. ```js var inflector = new Ember.Inflector(Ember.Inflector.defaultRules); inflector.pluralize('cow'); //=> 'kine' inflector.singularize('kine'); //=> 'cow' ``` Creating an inflector and adding rules later. ```javascript var inflector = Ember.Inflector.inflector; inflector.pluralize('advice'); // => 'advices' inflector.uncountable('advice'); inflector.pluralize('advice'); // => 'advice' inflector.pluralize('formula'); // => 'formulas' inflector.irregular('formula', 'formulae'); inflector.pluralize('formula'); // => 'formulae' // you would not need to add these as they are the default rules inflector.plural(/$/, 's'); inflector.singular(/s$/i, ''); ``` Creating an inflector with a nondefault ruleset. ```javascript var rules = { plurals: [ /$/, 's' ], singular: [ /\s$/, '' ], irregularPairs: [ [ 'cow', 'kine' ] ], uncountable: [ 'fish' ] }; var inflector = new Ember.Inflector(rules); ``` @class Inflector @namespace Ember */ function Inflector(ruleSet) { ruleSet = ruleSet || {}; ruleSet.uncountable = ruleSet.uncountable || makeDictionary(); ruleSet.irregularPairs = ruleSet.irregularPairs || makeDictionary(); var rules = this.rules = { plurals: ruleSet.plurals || [], singular: ruleSet.singular || [], irregular: makeDictionary(), irregularInverse: makeDictionary(), uncountable: makeDictionary() }; loadUncountable(rules, ruleSet.uncountable); loadIrregular(rules, ruleSet.irregularPairs); this.enableCache(); } if (!Object.create && !Object.create(null).hasOwnProperty) { throw new Error("This browser does not support Object.create(null), please polyfil with es5-sham: http://git.io/yBU2rg"); } function makeDictionary() { var cache = Object.create(null); cache['_dict'] = null; delete cache['_dict']; return cache; } Inflector.prototype = { /** @public As inflections can be costly, and commonly the same subset of words are repeatedly inflected an optional cache is provided. @method enableCache */ enableCache: function() { this.purgeCache(); this.singularize = function(word) { this._cacheUsed = true; return this._sCache[word] || (this._sCache[word] = this._singularize(word)); }; this.pluralize = function(word) { this._cacheUsed = true; return this._pCache[word] || (this._pCache[word] = this._pluralize(word)); }; }, /** @public @method purgedCache */ purgeCache: function() { this._cacheUsed = false; this._sCache = makeDictionary(); this._pCache = makeDictionary(); }, /** @public disable caching @method disableCache; */ disableCache: function() { this._sCache = null; this._pCache = null; this.singularize = function(word) { return this._singularize(word); }; this.pluralize = function(word) { return this._pluralize(word); }; }, /** @method plural @param {RegExp} regex @param {String} string */ plural: function(regex, string) { if (this._cacheUsed) { this.purgeCache(); } this.rules.plurals.push([regex, string.toLowerCase()]); }, /** @method singular @param {RegExp} regex @param {String} string */ singular: function(regex, string) { if (this._cacheUsed) { this.purgeCache(); } this.rules.singular.push([regex, string.toLowerCase()]); }, /** @method uncountable @param {String} regex */ uncountable: function(string) { if (this._cacheUsed) { this.purgeCache(); } loadUncountable(this.rules, [string.toLowerCase()]); }, /** @method irregular @param {String} singular @param {String} plural */ irregular: function (singular, plural) { if (this._cacheUsed) { this.purgeCache(); } loadIrregular(this.rules, [[singular, plural]]); }, /** @method pluralize @param {String} word */ pluralize: function(word) { return this._pluralize(word); }, _pluralize: function(word) { return this.inflect(word, this.rules.plurals, this.rules.irregular); }, /** @method singularize @param {String} word */ singularize: function(word) { return this._singularize(word); }, _singularize: function(word) { return this.inflect(word, this.rules.singular, this.rules.irregularInverse); }, /** @protected @method inflect @param {String} word @param {Object} typeRules @param {Object} irregular */ inflect: function(word, typeRules, irregular) { var inflection, substitution, result, lowercase, wordSplit, firstPhrase, lastWord, isBlank, isCamelized, isUncountable, isIrregular, isIrregularInverse, rule; isBlank = BLANK_REGEX.test(word); isCamelized = CAMELIZED_REGEX.test(word); firstPhrase = ""; if (isBlank) { return word; } lowercase = word.toLowerCase(); wordSplit = LAST_WORD_DASHED_REGEX.exec(word) || LAST_WORD_CAMELIZED_REGEX.exec(word); if (wordSplit){ firstPhrase = wordSplit[1]; lastWord = wordSplit[2].toLowerCase(); } isUncountable = this.rules.uncountable[lowercase] || this.rules.uncountable[lastWord]; if (isUncountable) { return word; } isIrregular = irregular && (irregular[lowercase] || irregular[lastWord]); if (isIrregular) { if (irregular[lowercase]){ return isIrregular; } else { isIrregular = (isCamelized) ? isIrregular.capitalize() : isIrregular; return firstPhrase + isIrregular; } } for (var i = typeRules.length, min = 0; i > min; i--) { inflection = typeRules[i-1]; rule = inflection[0]; if (rule.test(word)) { break; } } inflection = inflection || []; rule = inflection[0]; substitution = inflection[1]; result = word.replace(rule, substitution); return result; } }; __exports__["default"] = Inflector; }); define("ember-inflector/system/string", ["./inflector","exports"], function(__dependency1__, __exports__) { "use strict"; var Inflector = __dependency1__["default"]; function pluralize(word) { return Inflector.inflector.pluralize(word); } function singularize(word) { return Inflector.inflector.singularize(word); } __exports__.pluralize = pluralize; __exports__.singularize = singularize; }); global.DS = requireModule('ember-data')['default']; })(this);
fields/types/datearray/DateArrayFilter.js
dryna/keystone-twoje-urodziny
import React from 'react'; import { findDOMNode } from 'react-dom'; import moment from 'moment'; import DayPicker from 'react-day-picker'; import { FormInput, FormSelect, Grid, } from '../../../admin/client/App/elemental'; const PRESENCE_OPTIONS = [ { label: 'At least one element', value: 'some' }, { label: 'No element', value: 'none' }, ]; const MODE_OPTIONS = [ { label: 'On', value: 'on' }, { label: 'After', value: 'after' }, { label: 'Before', value: 'before' }, { label: 'Between', value: 'between' }, ]; var DayPickerIndicator = React.createClass({ render () { return ( <span className="DayPicker-Indicator"> <span className="DayPicker-Indicator__border" /> <span className="DayPicker-Indicator__bg" /> </span> ); }, }); function getDefaultValue () { return { mode: MODE_OPTIONS[0].value, presence: PRESENCE_OPTIONS[0].value, value: moment(0, 'HH').format(), before: moment(0, 'HH').format(), after: moment(0, 'HH').format(), }; } var DateFilter = React.createClass({ displayName: 'DateFilter', propTypes: { filter: React.PropTypes.shape({ mode: React.PropTypes.oneOf(MODE_OPTIONS.map(i => i.value)), presence: React.PropTypes.string, }), }, statics: { getDefaultValue: getDefaultValue, }, getDefaultProps () { return { format: 'DD-MM-YYYY', filter: getDefaultValue(), value: moment().startOf('day').toDate(), }; }, getInitialState () { return { activeInputField: 'after', month: new Date(), // The month to display in the calendar }; }, componentDidMount () { // focus the text input if (this.props.filter.mode === 'between') { findDOMNode(this.refs[this.state.activeInputField]).focus(); } else { findDOMNode(this.refs.input).focus(); } }, updateFilter (value) { this.props.onChange({ ...this.props.filter, ...value }); }, selectPresence (e) { const presence = e.target.value; this.updateFilter({ presence }); findDOMNode(this.refs.input).focus(); }, selectMode (e) { const mode = e.target.value; this.updateFilter({ mode }); if (mode === 'between') { setTimeout(() => { findDOMNode(this.refs[this.state.activeInputField]).focus(); }, 200); } else { findDOMNode(this.refs.input).focus(); } }, handleInputChange (e) { const { value } = e.target; let { month } = this.state; // Change the current month only if the value entered by the user is a valid // date, according to the `L` format if (moment(value, 'L', true).isValid()) { month = moment(value, 'L').toDate(); } this.updateFilter({ value: value }); this.setState({ month }, this.showCurrentDate); }, setActiveField (field) { this.setState({ activeInputField: field, }); }, switchBetweenActiveInputFields (e, day, modifiers) { if (modifiers && modifiers.disabled) return; const { activeInputField } = this.state; const send = {}; send[activeInputField] = day; this.updateFilter(send); const newActiveField = (activeInputField === 'before') ? 'after' : 'before'; this.setState( { activeInputField: newActiveField }, () => { findDOMNode(this.refs[newActiveField]).focus(); } ); }, selectDay (e, day, modifiers) { if (modifiers && modifiers.disabled) return; this.updateFilter({ value: day }); }, showCurrentDate () { this.refs.daypicker.showMonth(this.state.month); }, renderControls () { let controls; const { field, filter } = this.props; const mode = MODE_OPTIONS.filter(i => i.value === filter.mode)[0]; const placeholder = field.label + ' is ' + mode.label.toLowerCase() + '...'; // DayPicker stuff const modifiers = { selected: (day) => moment(filter.value).isSame(day), }; if (mode.value === 'between') { controls = ( <div> <div style={{ marginBottom: '1em' }}> <Grid.Row xsmall="one-half" gutter={10}> <Grid.Col> <FormInput ref="after" placeholder="From" onFocus={(e) => { this.setActiveField('after'); }} value={moment(filter.after).format(this.props.format)} /> </Grid.Col> <Grid.Col> <FormInput ref="before" placeholder="To" onFocus={(e) => { this.setActiveField('before'); }} value={moment(filter.before).format(this.props.format)} /> </Grid.Col> </Grid.Row> </div> <div style={{ position: 'relative' }}> <DayPicker className="DayPicker--chrome" modifiers={modifiers} onDayClick={this.switchBetweenActiveInputFields} /> <DayPickerIndicator /> </div> </div> ); } else { controls = ( <div> <div style={{ marginBottom: '1em' }}> <FormInput onChange={this.handleInputChange} onFocus={this.showCurrentDate} placeholder={placeholder} ref="input" value={moment(filter.value).format(this.props.format)} /> </div> <div style={{ position: 'relative' }}> <DayPicker className="DayPicker--chrome" modifiers={modifiers} onDayClick={this.selectDay} ref="daypicker" /> <DayPickerIndicator /> </div> </div> ); } return controls; }, render () { const { filter } = this.props; const mode = MODE_OPTIONS.filter(i => i.value === filter.mode)[0]; const presence = PRESENCE_OPTIONS.filter(i => i.value === filter.presence)[0]; return ( <div> <div style={{ marginBottom: '1em' }}> <FormSelect onChange={this.selectPresence} options={PRESENCE_OPTIONS} value={presence.value} /> </div> <div style={{ marginBottom: '1em' }}> <FormSelect onChange={this.selectMode} options={MODE_OPTIONS} value={mode.value} /> </div> {this.renderControls()} </div> ); }, }); module.exports = DateFilter;
src/pages/page-2.js
narendrasoni1989/react-site
import React from 'react' import Link from 'gatsby-link' const SecondPage = () => ( <div> <h1>Hi from the second page</h1> <p>Welcome to page 2</p> <Link to="/">Go back to the homepage</Link> </div> ) export default SecondPage
src/www/js/form-fields/submit-button.js
nickolusroy/react_dnd
import React from 'react'; /** * TextInput(); * * Params: * * @param {string} cssClass - type attribute for input element ("text" || "paragraph") * @param {string || number} value - value to associate with button click (optional) * @param {string} label - text label for element * @param {function} onUpdate - function to execute when the button is clicked * * Example: * <SubmitButton type="text" label="Submit" name="submit_data" onChange={this.update} /> */ export class SubmitButton extends React.Component { constructor(props) { super(props); }; render() { var cssClass = "btn "; if (this.props.cssClass) { cssClass += this.props.cssClass; } return <div className={cssClass} data-key={this.props.value} onClick={this.props.onUpdate}>{this.props.label}</div> } }
packages/material-ui-icons/src/SubdirectoryArrowRightSharp.js
Kagami/material-ui
import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( <React.Fragment><path fill="none" d="M24 24H0V0h24v24z" opacity=".87" /><path d="M19 15l-6 6-1.42-1.42L15.17 16H4V4h2v10h9.17l-3.59-3.58L13 9l6 6z" /></React.Fragment> , 'SubdirectoryArrowRightSharp');
geonode/contrib/monitoring/frontend/src/pages/alerts-settings/index.js
ingenieroariel/geonode
import React from 'react'; import PropTypes from 'prop-types'; import { connect } from 'react-redux'; import Header from '../../components/organisms/header'; import AlertSetting from '../../components/organisms/alert-setting'; import HoverPaper from '../../components/atoms/hover-paper'; import actions from './actions'; import styles from './styles'; const mapStateToProps = (state) => ({ alerts: state.alertSettings.response, timestamp: state.interval.timestamp, }); @connect(mapStateToProps, actions) class AlertsSettings extends React.Component { static propTypes = { alerts: PropTypes.object, get: PropTypes.func.isRequired, timestamp: PropTypes.instanceOf(Date), } constructor(props) { super(props); this.get = () => { this.props.get(); }; } componentWillMount() { this.get(); } render() { const { alerts } = this.props; let alertList = []; if (alerts) { alertList = alerts.data; } return ( <div style={styles.root}> <Header back="/alerts" disableInterval autoRefresh={false} /> <HoverPaper style={styles.content}> <div style={styles.header}> <h3>Alerts Settings</h3> </div> { alertList.map((alert, index) => ( <AlertSetting alert={alert} key={index} autoFocus={index === 0} /> )) } </HoverPaper> </div> ); } } export default AlertsSettings;
docs/src/app/components/CodeExample/CodeBlockTitle.js
skarnecki/material-ui
import React from 'react'; import IconButton from 'material-ui/IconButton'; import CodeIcon from 'material-ui/svg-icons/action/code'; import {Toolbar, ToolbarGroup, ToolbarTitle} from 'material-ui/Toolbar'; const CodeBlockTitle = (props) => ( <Toolbar> <ToolbarGroup float="left"> <ToolbarTitle text={props.title || 'Example'} /> </ToolbarGroup> <ToolbarGroup float="right"> <IconButton touch={true} tooltip={props.tooltip}> <CodeIcon /> </IconButton> </ToolbarGroup> </Toolbar> ); CodeBlockTitle.propTypes = { title: React.PropTypes.string, tooltip: React.PropTypes.string, }; export default CodeBlockTitle;
ReactNativeDemo/app/main/Navigator.js
zxpLearnios/ReactNativeDemo
/** * Created by jingnanzhang on 2017/5/31. */ // 这里只写tab页 import React, { Component } from 'react'; import { Button, Text, } from 'react-native'; import { TabNavigator, StackNavigator, TabBarBottom, }from 'react-navigation'; // npm install --save react-navigation 来安装词库 // 导入js类 import HomePage from '../home/Home' import MinePage from '../mine/Mine' import LoginPage from '../mine/Login' import CustomeNavigationBar from '../customeComponents/NavigationBar' import TabBarItem from '../main/TabBarItem' import NavBarItem from '../main/NavBarItem' import MineDetailPage from '../mine/MineDetail' import TestListViewPage from '../mine/TestListView' import GesturePwdPage from '../customeComponents/GesturePwd' import * as conster from '../const/Const' let navRightItemImg = require('../img/plus.png'); export default class Navigator extends Component{ render(){ return <AppNavigator/>; } test(){ } } // 几个table页面 const AppTab = TabNavigator({ HomePage: { screen: HomePage, navigationOptions: { title: '主页', tabBarIcon: ({focused, tintColor}) => ( <TabBarItem tintColor={tintColor} focused={focused} normalImage={require('../img/icon_tabbar_misc.png')} selectedImage={require('../img/icon_tabbar_misc_selected.png')} /> ) } }, MinePage: { screen: MinePage, navigationOptions: { title: '我的', tabBarIcon: ({focused, tintColor}) => ( <TabBarItem tintColor={tintColor} focused={focused} normalImage={require('../img/icon_tabbar_mine.png')} selectedImage={require('../img/icon_tabbar_mine_selected.png')} /> ) } }, }, // 设置 tabbar { tabBarOptions: { activeTintColor: 'orange', // 选中tabItem inactiveTintColor: 'gray', // 普通tabItem labelStyle:{fontSize: 12}, // 文字大小 style: {backgroundColor: '#fff'}, // TabBar 背景色, }, tabBarComponent: TabBarBottom, tabBarPosition: 'bottom', swipeEnabled: false, // 左右滑动 animationEnabled: false, // 页面切换时不需要动画 lazy: true, initialRouteName: 'MinePage', // 默认显示的tab MinePage HomePage backBehavior:'none', // 回调 }, ); /* * 1. 所有需要push的页面均需加入此screen组里 * 2. 下面的StackNavigator默认显示里面的第一个screen * * */ const AppNavigator = StackNavigator({ // 登录的导航栏在LoginPage设置 LoginPage:{ screen: LoginPage, // navigationOptions: CustomeNavigationBar('wetft'), // 测试自定义的导航栏 }, TabPage: { screen: AppTab, // 设置navigation NavBarItem, 使tab页左右都有按钮 navigationOptions:{ headerLeft: <NavBarItem type={'btn'} onPress={() => alert('点击了left-navigation')}/>, headerRight: <NavBarItem type={'img'} img={navRightItemImg} onPress={() => alert('点击了right-navigation')}/> }, }, MineDetail:{ screen: MineDetailPage, navigationOptions:{ headerTitle:'我的详情', }, }, TestListView:{ screen: TestListViewPage, header:{ // visible: false, // 是否顯示導航欄 }, }, GesturePwd:{ screen: GesturePwdPage, }, }, { // headerMode: 导航栏的显示模式: screen: 有渐变透明效果, float: 无透明效果, none: 隐藏导航栏 mode: this.modeType,//页面切换模式: 左右是card(相当于iOS中的push效果), 上下是- - (相当于iOS中的 效果) // onTransitionStart: ()=>{ console.log('导航栏切换开始'); }, // 回调 // onTransitionEnd: ()=>{ console.log('导航栏切换结束'); } });
lexicon.js
Laurian/jspos
/* * Javascript version of Eric Brill's English lexicon, compressed by Toby Rahilly. */ var POSTAGGER_LEXICON = {Ranavan:0,"pro-Soviet":1,"Hydro-Electric":2,"waste-disposal":3,chameleons:4,clotted:1,spiders:4,verses:4,hanging:5,"Hawaiian\\/Japanese":1,hastily:6,comically:6,REIS:2,localized:7,spidery:1,disobeying:8,"marketing-wise":1,"plant-closing":1,Archuleta:2,refunding:9,Western:10,"wrought-iron":1,Gravesend:2,"government-to-government":1,Euro:2,slothful:1,Valle:2,Famed:1,Blade:2,Poetry:11,Mizell:2,"plant-modernization":1,Rizopolous:2,seamier:12,wooded:1,grueling:13,Muniz:2,Amparano:2,Saco:2,Sack:2,virtuosos:4,Raptopoulos:2,Multilateral:2,immunities:4,"all-news":1,Pinkerton:2,gaskets:4,Kibbutzim:4,Shocked:14,deadheads:4,Dixiecrat:2,Honorable:2,Olde:2,"":15,snuggled:16,inanimate:1,errors:4,Initially:6,"self-reliant":1,defenses:4,Hamilton:2,HCFA:2,designing:8,pawed:17,Kosonen:2,Designcraft:2,mailings:4,perforations:4,Sussman:2,affiliates:18,"advanced-ceramics":19,perfunctorily:6,affiliated:14,Footnotes:4,confronts:20,"small-screen":1,Manger:2,Manges:2,Bereuter:2,kids:18,uplifting:13,Downfall:2,deferring:8,Keillor:2,"electric-power":1,orthographies:4,Hafiz:2,"sheep-lined":1,"inflation-induced":1,Harvey:2,stern:3,Vernor:2,inevitable:1,Vernon:2,distortions:4,reasserting:8,sermons:4,"grounds-care":1,populations:4,exuberantly:6,Sindona:2,Hardshell:2,"whole-heartedly":6,Pedone:2,"pay-movie":1,"co-marketing":1,morally:6,Indigo:2,"non-advertising":1,Reichhold:2,Gastronomy:2,"old-guard":1,wiretapping:21,deputy:22,"R.G.":2,"grass-fed":1,Darling:23,Tippecanoe:2,nondiscretionary:1,"well-armed":1,Editorials:4,"electrical-engineering":1,McCamant:2,travel:24,Attention:25,Businessland:2,Nussbaum:2,Bates:2,exposited:17,Feelers:4,assimilated:14,dinosaurs:4,iodocompounds:4,Fogg:2,stipulate:26,sentencing:27,Tenants:28,CFM:2,FINANCIAL:2,CFD:2,CFC:11,subplots:4,"b-Current":29,Shimon:2,CFP:2,Retention:2,sprawling:30,snugly:6,Capistrano:2,Blackstone:31,Sabreliner:2,benefited:32,Robertson:2,"Soviet-trained":1,activating:8,"gay-ess":33,"H.L.":2,WPS:2,"ex-dividend":34,His:35,Hit:36,fit:37,Albrights:28,Schroeder:2,screaming:5,Admirers:4,Bischofberger:2,Kavanagh:2,Walesa:2,Hid:2,Rubins:4,reentered:16,Ciminero:2,Him:38,Galanter:2,effecte:39,Plebian:1,Aloe:2,vouchers:4,"top-quality":1,Civics:28,Pavlovitch:2,effects:18,Specialized:40,McArtor:2,whacking:8,castigating:8,wooden:1,Pergamon:2,Combine:39,uninfluenced:17,Weakening:8,Dairies:41,Eyewear:2,parasites:4,Bullocks:2,Pamorex:2,Crowds:4,ANNOUNCED:16,Pomerania:2,Denizens:4,Susie:11,Sidestepping:8,adapt:42,Chivas:2,Kahler:2,Impressionists:28,MEDIA:2,underfoot:6,Schwarz:2,Corinne:2,Argabright:2,elsewhere:43,stereotypical:1,Bergelt:2,Transformers:28,estimate:44,obliterans:4,Egg:11,silent:1,Nigel:2,nucleoli:4,Woodberry:2,Domestically:6,SIGNED:17,disturbed:45,"dinner-hour":1,Facts:46,Niger:2,breed:44,Varadero:2,Activity:47,Gingerly:6,megabytes:4,Nerves:4,Lurie:2,olds:4,LAND:2,renovated:14,needed:48,master:49,specters:4,"Russo-American":1,Hammerstein:2,Aztar:2,scrapes:4,yield:50,"mid-June":11,mutilated:14,Daddy:2,heftiest:51,positively:6,Guardsmen:28,SPAN:2,anniversaries:4,"ozone-destroying":1,Moonlighting:47,Zeta:2,feeling:21,"movie-themed":1,Escadrille:2,"third-round":1,"value-story":1,neuroselective:1,Chicago:2,"straight-from-the-shoulder":1,"index-options":4,consenting:30,pecs:4,brawny:1,recapitalized:17,Theo:2,Then:6,Them:52,scraped:32,wholesome:1,Ashenberg:2,Grodnik:2,Thee:53,Tschilwyk:2,Myron:2,They:38,"v-senv5":2,shipments:4,diminishing:8,resonates:20,Jessye:2,tensely:6,Hubacher:2,Pandora:2,resonated:16,transverse:3,KEARNEY:2,Encore:2,semicircular:1,Pastern:2,Lanvin:2,"state-directed":1,"Journal-Bulletin":2,willinge:1,Civilized:1,fugitives:4,"conservative-led":1,purged:54,saying:55,ffreind:39,"U-2":2,Euralliance:2,Mignanelli:2,Jacobson:2,padded:7,Butterfinger:2,Cunha:2,Basinger:2,hounded:16,apace:6,Taiyo:2,clicked:32,Rizvi:2,Geste:2,TEACH:39,"L.C.":2,familistical:1,"photo-montage":1,INSEAD:2,Warnke:2,Sibson:2,outfielders:4,Dionne:2,Comenico:2,"Bancorp.":2,affronted:17,Senators:56,Ecology:47,"Baden-Wuerttemburg":2,nicely:6,Andover:2,succumb:39,Dances:57,Dancer:2,pipers:4,Jabe:2,programmatic:1,"concretistic-seeming":1,Centerbank:2,Anderson:2,"Boon-Sanwa":2,news:19,McChicken:2,advisedly:6,Mosle:2,"above-market":1,Heinkel:2,Trinitron:2,motional:1,"guided-missile":3,Chugoku:2,Dexedrine:2,Tarzana:2,Eichner:2,Hurst:2,requisites:4,wage:25,redistricting:55,extend:58,nature:22,Eisai:2,fruits:4,lapping:8,superficial:1,brainwashed:17,Bajakian:2,tendons:4,Resolute:2,Camusfearna:2,Orkem:59,Handmaid:2,"lumber-like":1,Altairians:28,"Oil-related":1,fearlessly:6,Apartment:47,foreclosing:8,SCHWARTZ:2,Reuter:11,wearying:8,unhealed:1,fondled:17,minuses:4,"self-consistent":1,"month-long":1,humming:21,Instantly:6,fro:6,".":60,Nischwitz:2,much:61,Jorio:2,Closely:6,dehumanised:17,unleavened:1,fry:24,Ellman:2,Goals:28,INMAC:2,spit:62,Clayt:2,Clays:2,Donovan:2,doubts:18,Akerson:2,"two-hundredths":4,Cipolla:2,spin:63,Volksgeist:64,skilfully:6,wildcat:22,"near-irrelevant":1,"U.N.-chartered":1,"Ben-Gurion":2,"bargain-hunters":4,contingencies:4,microbiological:1,misconstrued:17,"low-smoke":1,"red-figured":1,Courtrai:2,prostrate:1,Crusaders:65,biddies:4,"slide-packs":4,cupful:1,Berridge:2,Innumerable:1,embargos:4,conditioned:45,"to-morrow":6,Stanhope:2,Brookings:2,"half-billion":1,hone:42,memorial:22,WFXT:2,inventively:6,"C/NNP.A.J.":2,mummified:17,honk:33,"slash-mouthed":1,Tahitian:66,conformed:54,visitations:4,HOSPITALS:4,saluted:32,myocardial:1,"Front-runners":4,Maybe:67,Alienus:2,torpedoes:4,"low-grade":1,pfffted:16,torpedoed:54,holystones:4,spotty:1,peremptory:1,Verges:2,mentors:4,Stearn:2,academic:3,ALPA:2,lonelier:68,EBS:2,"J.MBB":2,Table:47,corporate:1,massaging:8,Hickey:2,absurdities:4,golden:1,"half-starved":1,valleys:4,Feigenbaum:2,"salt-crusted":1,lasso:25,Vitalie:2,"out-of-town":1,Oscar:2,"bull-roaring":1,Schlemmer:2,Mohammedanism:2,hay:25,vicitims:4,has:69,Spence:2,Housekeeping:47,elders:4,Serieuses:2,constrictors:4,unequivocally:6,objective:22,indicative:1,Seaboard:2,ERNST:2,"solid-state":1,Eurocell:2,Kontrollbank:2,Wedtech:2,Brenda:2,Perfecta:2,Stiller:2,Pentagon:2,"double-step":1,misdemeanors:4,Swedish:66,Quadrex:2,crowd:24,mosques:4,Expressways:2,crown:25,culpas:64,Bourcier:2,captive:3,Avdel:2,emphases:4,"anti-epilepsy":1,fiduciary:1,"debt-rating":1,"leather-hard":1,perchance:6,Nixdorf:2,bottom:70,inhuman:1,Wangenheim:2,Celebration:2,Lasorda:2,Calls:18,"non-porous":1,considerin:8,Kentuck:2,brigades:4,starring:30,caskets:4,Scwhab:2,accelerations:4,benches:4,"Transmanche-Link":2,anomalous:1,officeholders:4,catchy:1,"newly-emerging":1,sticle:39,ribozymes:4,"classical-music":1,lemmings:4,Cydonia:2,"pre-tax":1,Concerned:71,honeymoon:25,Valdez:2,"Pontiac-Cadillac":2,shoots:72,appropriators:4,Ends:73,despised:32,Inherently:6,raped:45,Carolco:2,grasping:8,GERMANY:2,rapes:18,avocados:4,Endo:2,perfumes:4,"Bonds-b":74,denoting:8,Telesphere:11,perfumed:7,Roast:39,Nineteenth:66,Bensonhurst:2,Interferon:2,congratulations:75,"dark-squared":1,Whom:76,"Year-to-date":1,Jaya:2,Household:11,VTOL:2,County:77,Merom:2,"open-air":1,nicest:51,"appeals-court":22,soldering:13,"slow-bouncing":1,Jays:28,Manderscheid:2,passenger:22,Ladas:2,Tales:56,YOUNG:66,VARIAN:2,"two-day":1,Fukuda:2,"ECU-based":1,"taxable-equivalent":1,Fennessy:2,Velasco:2,Resler:2,crowns:4,Burke:2,wordlessly:6,Demagogues:4,thoroughgoing:1,Checchi:2,hawked:32,Melbourne:2,SONGsters:4,Bucer:2,smelling:8,Filofax:2,Ida:2,continentally:6,Debutante:2,Oriole:2,Dragonetti:2,BURNHAM:2,Wiley:2,chain:78,whoever:79,Agura:2,Spector:2,Cairoli:2,Ipswich:2,chair:25,Beyeler:2,ballet:80,grapples:20,freelance:1,Yemma:2,"sweat-suits":4,balled:17,grappled:16,underlining:55,circumstances:4,tenacious:1,Barret:2,windshields:4,paychecks:4,jerk:25,enflamed:17,Barred:17,gloomy:1,Levittown:2,Barren:2,locked:81,"upper-lower":1,exact:82,minute:22,"Tri-State":2,Hellman:2,reining:8,skewed:45,illustrators:4,erasures:4,reimpose:83,"M$":84,Silvio:2,hindered:54,"M.":11,ogles:20,"M4":2,Olgivanna:2,chopping:55,hegemonic:1,"SFr3":2,"SFr2":2,DeRita:2,celebrated:85,Premise:2,"S*/NNS&Ls":2,"non-caffeine":1,celebrates:20,unintentionally:6,Metrecal:2,Me:86,Md:2,Ma:87,Mc:2,climbs:72,blunted:85,Mo:2,Mi:87,plucking:8,Mt:2,Ms:2,Mr:2,dwindling:8,My:88,ME:53,MG:2,MF:2,MC:2,MB:2,impacted:14,MO:2,Pestillo:2,Haddix:2,snowbirds:4,sprouted:32,MP:2,MS:2,MR:2,"ill-fated":1,Kylberg:2,Jardin:2,stockbuilding:8,Dilantin:2,POWs:4,"Germano-Slavic":1,redevelopers:4,"ex-wives":4,BOOSTS:18,opposes:20,August:2,perished:32,Watsonville:2,ARNOLD:2,"non-Magyars":28,Rima:2,unjust:1,Pinsk:2,Those:89,perishes:20,Iris:2,Szocs:2,ADVANCES:4,Proposals:4,Bars:2,Henley:11,consoles:18,Barr:11,ADVANCED:2,"gray-black":1,Pianos:2,Mikoyan:2,Hershey:2,"pre-financed":1,Laotian:1,Wetherell:2,following:5,renew:42,Revolutionaries:4,unoriginals:4,want:90,mailboxes:4,Symphony:2,Chula:2,Dayna:2,Shige:2,photoelectronic:1,Mantha:2,"petroleum-related":1,Broglie:2,Broglio:2,"T-bills":4,"anti-toxic":1,"mid-September":11,thanking:8,Sprizzo:2,Significant:1,Dumb:1,Bard:2,epidemiologic:1,Zucker:2,convincingly:6,fueled:54,Wiesel:2,"warm-blooded":1,"extended-care":1,"under-achievers":4,Crobsy:2,"advertiser-sponsored":1,inhabiting:8,"middle-income":3,forebears:4,Gillespie:2,Centredale:2,Lumex:2,"gold-based":1,shirked:17,Bowie:2,LIN:2,Hiroaki:2,copious:1,LIT:2,"anti-Semites":91,Trustees:92,Elias:2,Cromwell:2,Wetten:64,disconnect:39,milked:32,Stoltzman:2,Agencies:56,Hopis:28,"revenue-raisers":4,"First-hand":1,librarians:4,spotlighting:8,"gold-leaf":3,"oral-care":1,Veil:2,Hiding:8,shacked:17,Iraqis:28,ENERGY:47,bashful:1,"EL-10":2,overpowering:1,Gordon:2,"now-standard":1,workmanlike:1,henpecked:1,sorted:54,bedevil:39,didn:16,pealing:8,Yellow:40,Bubenik:2,Roslyn:2,"Merieux-Connaught":2,growthy:1,bursting:8,Yoshiaki:2,presages:20,growths:4,Venturesome:1,frames:4,irremediable:1,entering:8,Soiree:2,salads:4,disasters:4,Deborah:2,Jiangsu:2,assessors:4,Imasdounian:2,Michigan:40,Nightclubs:28,"staff-written":1,seriously:6,TIGRs:2,calming:30,"cash-back":1,Bouvier:2,Westpac:2,incentives:4,Recital:2,Johsen:2,inwardly:6,crazies:4,"la-la":1,backfiring:8,"Sun-3\\":2,Ventes:2,"precious-metals":93,modest:1,Kepler:2,Voegtli:2,socking:8,Yucaipa:2,hemorrhoids:4,Norwalk:2,"top-heavy":1,Latchford:2,"cigarette-vending":1,spoken:14,twined:32,Pixley:2,"NIH-appointed":1,spokes:4,Sinyard:2,affords:20,Palos:2,Drouot:2,Monday:2,"Cia.":2,"inflation-offsetting":1,"carbide-products":4,Stuckey:2,Mounted:2,lingering:30,subcompacts:4,Omron:2,RAISED:16,"solid-waste":22,surges:18,snatch:42,retrogressive:1,Smaby:2,"Hamilton-oriented":1,absorbs:20,surged:32,"drug-cartel":1,History:47,"government-guaranteed":1,Equinox:2,Ciao:64,crossroads:91,"so-so":3,oerations:4,wandering:8,Waring:2,sumptuous:1,turned:32,jewels:4,Field:11,Hubay:2,uninterrupted:1,Nummi:2,"Exchange-listed":1,politicos:4,fashionable:3,Forester:2,"market-monitoring":1,Klesken:2,pistachio:1,opposite:94,discerning:1,"below-investment-grade":1,spewing:8,Darman:2,Plentywood:2,Depositors:4,Wong:2,Depository:2,Melsungen:2,Sochaux:2,"non-vaccinated":1,touchy:1,Hurwitt:2,Instances:4,jitters:91,jittery:1,scavanged:17,Sibley:2,"lung-function":1,unmistakable:1,imagines:20,Ethiopia:11,inconsistent:1,imagined:45,"area-sales":1,ensembles:4,reconciling:8,transact:39,Duponts:28,aimlessly:6,Adia:2,Dolmabahce:2,"seven-unit":1,Alfieri:2,rejoiced:16,Surprising:1,revolutionized:32,balconies:4,skiffs:4,rejoices:20,etcetera:80,recombinant:1,keenly:6,Winnie:2,recurred:32,Facilities:41,airily:6,YES:2,Pawtucket:2,"Old-time":1,WTBS:2,"gold-share":1,"printing-ink":1,Osbert:2,Nearing:8,Ringo:2,MerchantsBank:2,FIAT:2,defensively:6,"Arabian-American":2,"foreign-investment":1,Lermer:2,"field-services":1,Designated:2,Wisdom:11,vaccines:4,unlocks:20,moons:4,Kadane:2,Ziegfeld:2,welcomes:20,"food-sector":1,Rademacher:2,"severe-looking":1,Harbor:2,Wachter:2,Oglethorpe:2,VGA:2,Katzenjammer:2,Mazowsze:2,Teeth:4,menacing:13,wickedly:6,Cosmos:2,uncharacteristically:6,"Ashington-Pickett":2,majestically:6,Collectors:4,Hwang:2,catcalls:4,workplace:22,grooming:21,fix:95,Yosemite:2,Kaganovich:2,Fairbanks:2,Whiteley:2,Smiths:28,Carnegey:2,cribs:18,Nedelya:2,Shouldering:8,Alperstein:2,Chaseman:2,Caius:2,"network-buying":1,"A.C.":2,west:96,Interscience:2,Asheville:2,motives:4,MountainBikes:28,BankAmerica:2,readings:4,photos:4,tightened:32,offshore:97,abject:1,extant:1,Prompted:17,Adjusted:98,Muenchen:2,Pozzatti:2,bankrupts:20,Cooch:2,graphed:17,Zhitzhakli:2,"over-stitched":1,limping:30,depressors:4,demolition:22,Norcen:2,ingrained:1,sinuously:6,Profili:2,Apocrypha:28,Kiko:2,Kiki:2,Blood:11,Bloom:2,visually:6,assigns:72,Map:2,"saber-toothed":1,Clear:2,IRS:2,"anti-Honecker":1,IRI:2,Anywhere:6,Clean:99,Barend:2,IRA:11,Temper:47,Tappan:2,wane:95,Whiting:2,Mednis:2,"Non-lawyers":4,Longley:2,flatish:1,May:100,peculiarities:4,nonunionized:17,Berlitz:2,Sigmund:2,"highest-ranking":1,Magellan:11,persistently:6,NAB:2,NAC:2,Mudugno:2,Conceivably:6,being:101,Diesel:11,NAM:2,NAR:2,NAS:2,Aeschylus:2,"B.G.":2,Megargel:2,Completed:17,adroit:1,plunderers:4,Mac:2,plumed:1,saddened:7,plumes:4,Crane:2,Completes:20,FOREAMI:2,"foot-loose":1,"customer-oriented":1,unerring:1,Tarnoff:2,rejoin:42,decomposed:1,sums:18,romps:4,spokespersons:4,decomposes:20,Manon:2,sensational:1,Coontz:2,Millenbruch:2,conpired:17,Sergio:2,Electrochemical:2,Warming:8,Valiant:2,"pizza-eating":1,Suggs:2,obstruct:42,Case:11,satisfactory:1,NAFTA:2,Aligning:8,Expressed:17,pervading:8,Expresses:20,Sorkin:2,Hanifen:2,Pharaoh:2,Verwoerd:2,ravines:4,"bench...":102,Chausson:2,"bravest-feathered":1,averse:1,disparaging:8,Pooling:2,Gaul:2,KCs:4,Knows:20,exasperating:30,Bramah:2,ferromagnetic:1,revolutionists:4,"one-iron":1,Agoura:2,KCS:2,Gloria:2,Lindzen:2,Hesburgh:2,perturbed:103,commingled:17,tangoed:16,revivified:17,Herber:2,Celie:2,lively:97,Celia:2,pivot:104,biches:4,gnashing:8,bubbly:3,gleam:78,glean:39,Galamian:2,Peninsula:2,Calder:2,Steckles:2,sealed:45,cupids:4,bubble:24,"Political-Military":2,"tire-makers":4,secreted:17,emigres:4,societal:1,Southgate:2,with:105,Redevelopment:2,abused:81,rage:25,"self-seeking":3,"upper-level":1,chomped:17,rags:4,operationally:6,FRANKLIN:2,abuses:4,Berea:2,trips:4,"dance-committee":1,Beaubien:2,Hormats:2,Cinderella:2,POLITICAL:1,Auerbach:2,watches:18,Meineke:2,incepting:8,associating:8,"follow-up":22,creak:25,tremble:63,"C.H.":2,cream:22,Ladd:2,Lada:2,Burnley:2,sympathetically:6,unparalleled:1,Savior:11,Bunyan:2,Incinerator:2,Lady:11,Amadee:2,faxes:4,refunded:17,waving:55,Kaufnabb:2,faxed:32,hairsplitting:1,linebackers:4,LeFevre:2,tricky:1,Krims:28,twinges:4,Henh:106,"Mercer-Meidinger-Hansen":2,Explained:2,maliciously:6,Casinos:4,Lyric:2,"pre-Revolutionary":1,Moorhead:2,accreted:17,Hens:57,"industry-government":3,legislatures:4,"head-to-head":107,Drinkhouse:2,caused:54,beware:42,ceramic:1,unitholders:4,About:108,"tax-loss":22,Farley:2,Alperts:4,causes:18,Galsworthy:2,"Rodney-Miss":2,predawn:1,"front-desk":22,"contraction-extension":1,overexpose:39,Grappelly:2,"break-neck":1,floated:32,TRANSCANADA:2,Menzel:2,Wilkes:109,Maniffature:2,Wilkey:2,insufficiently:6,sang:110,Hoxa:2,sane:1,Semifinished:17,sana:64,senselessly:6,sank:16,abbreviated:1,OEP:2,ultravehement:1,Thrice:6,"strong-willed":1,topcoats:4,psychosomatic:1,straggle:33,"Dutch\\/Shell":2,"computing-services":1,PAYS:20,Ogilvy:11,dwells:20,hash:44,obtrudes:20,Huntley:2,Departments:111,strata:4,daunted:112,OEC:2,unrewarding:1,hast:33,"less-complicated":1,MANHATTAN:2,Histadrut:2,Concept:2,Fawkes:2,Mercer:2,Rodman:2,Vaikule:2,periodic:1,"free-on-board":1,Quintet:2,Chazanoff:2,dehumanized:17,Alsatian:2,depart:42,retroactive:1,reclaimed:45,Scorpio:2,traumatized:32,"full-sized":1,Puttin:2,cynics:4,launchings:4,"shape-up":1,Crash:11,prejudging:8,Dumpster:2,Bamford:2,"cat-and-mouse":1,"act...":102,"failure-to-supervise":1,initiated:54,Frumil:2,corrected:45,Subways:4,initiates:72,Subic:2,"survey-type":1,Cybill:2,stampings:4,Willows:4,Gods:113,installing:8,Corsicas:4,CORTES:2,resorcinol:22,"ice-breaker":3,knocked:32,grope:42,scramble:24,Panasonic:40,bogs:20,Guppy:2,meaner:12,Called:114,Somali:66,clotheslines:4,allegro:1,"electric-driven":1,Grits:2,recapitalize:39,Wolfson:2,Quinta:2,Glasgow:2,bonded:14,huge:1,Murkland:2,hugh:1,dismissed:32,Frances:2,"top-selling":1,Hering:2,hugs:4,dismisses:20,Sigmen:2,Skorich:2,thickened:54,disgraced:17,variant:22,ineffectively:6,Declan:2,malevolent:1,"loan-to-value":1,resemble:42,twisting:55,"France.":2,Nero:2,media:91,exclusions:4,Ikle:2,everlastingly:6,accuse:42,Oilfields:4,peppy:1,installed:81,enrollments:4,paper:25,spirituals:4,sceneries:4,bummed:17,Parental:1,boomerangs:4,Fisheries:74,bypass:63,"non-subcommittee":1,Brussels:113,reintroduced:54,Loma:2,Lomb:2,abandons:20,"MS-DOS":2,deliberating:8,Berkman:2,idols:4,Markovic:2,Ameritech:2,Curley:2,"cigar-making":1,Satires:28,"anti-price-fixing":1,Authority:11,courses:4,"Day-to-day":1,Oswald:2,shocking:13,chipping:55,begged:32,Bosak:2,cicadas:4,"C.W.":2,Bergman:2,"scarcely-tapped":1,scoops:72,"boxed-in":1,research:44,"life-changing":1,Report:115,Jewett:2,electricals:4,cables:4,Muzo:2,Canute:2,Bohane:2,CIRCUIT:2,ecologically:6,Nino:2,Buell:2,"carry-on":3,Exitosa:2,MGM:2,Fawaz:2,Thyssen:2,precautionary:1,Remains:4,Dalai:2,Delancy:2,Agonale:2,peaceable:1,CH:47,Started:17,swipe:25,Giraffe:2,"intra-EC":1,calculations:4,Homebrew:2,essays:4,Starter:2,"scimitar-wielding":1,"hand-covered":1,"age-and-sex":1,Bugs:113,cheekbones:4,Trinen:2,Dludsky:2,stifle:39,evicting:8,Treble:2,Hogg:2,Cancer:11,Hoge:2,"de-emphasized":17,Hogs:4,dismantling:55,Shiloh:2,"mass-producing":8,"country-and-Western":1,Speculative:1,exuberant:1,"forward-moving":1,swanky:1,"Metro-Goldwyn-Mayer":2,Oldsmobile:2,"Anti-Deficiency":2,mutilates:20,blond:3,Etess:2,odors:4,Founding:116,fermented:17,"single-B-minus":117,peridontal:1,recognizing:8,Othello:2,Addis:2,Recreation:11,singles:18,Consultant:11,Pollare:2,Energetic:1,understands:20,wiggled:16,seize:42,Brownapopolus:2,OTC:2,proliferated:118,cultivating:8,administrate:39,Indirect:1,OTS:2,harvests:4,ambiguities:4,"husband-and-wife":3,"far-flung":1,exterminate:39,agonize:42,Deadly:1,Motown:2,affix:39,Amgen:2,Pepperdine:2,Behold:39,overwhelmed:45,Bast:2,Basu:2,Bass:11,"two-room":1,Premiere:2,Patrolmen:2,gooey:1,Basf:2,Maxxam:2,Base:11,Dire:1,Dirk:2,Palash:2,"non-wealthy":1,columns:4,chiefdoms:4,uncontested:1,mousetraps:4,"pleasure\\":119,Cooker:2,Lesley:2,adventurers:4,Aroostook:2,Cooked:14,remedy:25,"Delaware-based":1,Finevest:2,compass:25,damnit:106,sects:4,incapacitated:17,"well-off":1,tanked:17,Improper:1,Surveying:8,rumored:45,insane:1,Criticisms:2,handcuffs:4,GROUP:11,Sener:2,bundling:8,activists:18,"Thirty-ninth":2,collectively:6,Founders:41,semidrying:1,analog:22,Osram:2,Straightening:8,Roukema:2,dipole:3,Peggy:2,exclaimed:16,Tieken:2,ablated:17,thrive:42,Hollowell:2,pantomimed:16,"hunter-gatherers":4,NEKOOSA:2,condoned:54,Fulton:2,empowering:8,Neil:2,legitimately:6,KRENZ:2,"Boy-Lady":2,Wilde:2,"al-Husseini":2,Acapulco:2,retarded:3,Wisely:6,Breton:2,Clyde:2,Mecholyl:2,Peanuts:46,nimbler:12,Cary:2,Blaikie:2,Leiby:2,Cars:41,Stoutt:2,imperfections:4,longs:20,extravagant:1,Carl:2,Cara:2,Card:11,Care:120,Polly:2,"N.C.":2,"Spike-haired":1,Polls:4,complements:72,awake:121,Sinfonia:2,Pollo:2,Harriet:2,Harrier:2,Hiroshima:2,Giblen:2,"lace-drawn":1,presses:18,"Slim-Fast":2,Markel:2,Drennen:2,budget:25,Colston:2,Biopharm:2,Markey:2,pressed:54,Brauerei:2,Market:11,"error-laden":1,averaging:5,binding:122,"deferred-maintenance":1,"signal-processing":3,Expressway:11,"contract-services":4,Bouwer:2,raiders:4,Norwick:2,Norwich:2,Leibowitz:2,"U.S.A":11,behemoths:4,Spencerian:1,Tidal:2,Payments:123,affairs:4,"most-watched":1,"U.S.$":84,cardholders:4,Miners:2,Likud:2,nickname:44,infamous:1,Regulator:2,Oregonian:2,Haas:2,"Mexico-based":1,Manny:11,Taster:2,Mockowiczes:28,copes:20,clasped:32,Reidy:2,"O.":2,"quick-fix":1,uncouth:1,salvo:80,"World-Wide":40,Boyde:2,Grenier:2,Orphic:1,"harness-emotions":1,Colorliner:2,salve:25,Marsh:2,Harland:2,avionics:91,"no-strike":1,"pool-side":3,"F.O.":2,Brando:2,Nationally:6,Brande:2,"multi-year":1,Brandy:2,parents:4,Brands:46,"Old-House":2,Brandt:2,On:124,Ol:1,Ok:11,Oi:2,Oh:125,Of:124,couple:70,emanating:8,Pepinsky:2,oneyear:1,polemic:1,Oz:2,Oy:2,Buzz:2,colonials:4,"credit-reporting":3,Or:119,"Cairo-sponsored":1,OK:126,Schacht:2,OF:127,Show:128,Schotter:2,Kaydon:11,Heideman:2,OR:119,Treatment:11,Burlingham:2,crapshoot:25,bounce:95,bouncy:1,"gold-filled":1,"earthquake...":102,greener:12,sorbed:17,orderings:4,Yacos:2,"Japanese-based":1,microbes:4,Rosty:2,Frank:74,Witter:2,Frans:2,Ogisu:2,Witten:2,"Drexel-underwritten":1,Franz:2,Aviation:11,Hells:2,Sculley:2,Liaisons:4,"electronics-instruments":1,"less-aggressive":1,Reeder:2,Hello:106,browny:1,disjointed:14,"Soft-spoken":1,scraggly:1,Kassebaum:2,Oso:2,Winnetka:2,Rican:10,canning:27,Suhey:2,"well-versed":1,"seven-figure":1,Herslow:2,terrorists:4,disturbingly:6,"disease-resistance":1,bloodspots:4,Flights:4,controversies:4,"el-Fna":2,controllers:4,Corvallis:2,Pellicano:2,uncertainties:4,discoid:1,Dime:2,gases:4,atheists:4,"four-jet":1,fragmented:7,Natcher:2,Principal:129,"market-reform":1,Natchez:2,"junior-year-abroad":1,carping:5,Boswell:2,HelmsleySpear:2,Resolution:11,intestines:4,Spinnaker:2,Consolidated:98,testaments:4,paired:81,retaliatory:1,purges:72,Magoun:2,Apex:2,Goudsmit:2,Enthoven:2,deadliest:51,haunt:95,Vauxhall:2,bobbed:16,Twins:130,nectaries:4,"self-victimized":1,"tragi-comic":1,unsaturated:1,"non-Fed":1,intrepid:1,puzzling:13,Hollins:2,Hazel:2,Noticing:8,Last:131,Gephardt:2,Senor:2,depredations:4,myofibrils:4,"trans-illuminated":1,litigants:4,Larchmont:2,Longwood:2,Ludie:2,bibliographies:4,interfaith:1,Dort:2,Devery:2,methodologies:4,"Pitman-Moore":2,"time-share":1,"Sacramento-based":1,transient:1,Stamford:2,"F.E.":2,Hodson:2,Bolivar:2,Doubt:78,hepatitis:47,"Aguirre-Sacasa":2,conservative:3,"two-seater":1,Shortridge:2,detectives:4,unforseen:3,glows:4,Bobar:2,carelessly:6,Bince:2,dicker:39,account:24,Ornithological:2,Loantech:2,minerals:4,detested:32,Intercity:1,"Scobee-Frazier":2,extraditing:8,Negus:2,"less-than-brilliant":1,vouchsafes:20,Bankruptcy:11,"stair-step":1,Begins:20,Haqvin:2,Winchester:11,cannibals:4,"castle-themed":1,progenitors:4,Catskills:28,Hollsworth:2,dynamics:4,tempted:54,lawbreakers:4,sweats:4,Association:11,"alpha-beta-gammas":4,waning:8,Kathryn:2,multimedia:4,sweaty:1,flowing:30,Handels:2,continously:6,harassing:8,Brasilia:2,"wishy-washy":1,Luciano:2,Puppies:4,squirming:8,"garbage-to-energy":1,Seddon:2,"hi-tech":1,credits:18,Recycling:11,ould:1,"information-technology":1,Alien:2,makes:132,hasps:4,panicked:112,Tito:2,Pigeon:2,NASDA:2,Beronio:2,nibbling:55,McKusick:2,desiring:8,Solo:40,Bookman:2,Presently:6,HEARS:20,incertain:1,Sold:17,Sole:11,Siegel:11,Masami:2,Neutral:40,surrogates:4,NATO:2,Kauffmann:2,Jadwiga:2,"ex-FDA":1,"arbitrage``":133,Chatsworth:2,EURODOLLARS:134,rich:135,stolidly:6,undeclared:1,Laporte:2,Hiawatha:2,Growing:8,Blackfriar:2,Madam:2,Shurtleff:2,integrating:8,Fiedler:2,"trans-lingually":6,unknowns:4,reserves:18,retell:33,Overland:2,"English-language":3,Lawford:2,scatter:25,Harnischfeger:2,"field-service":1,murmuring:8,billboards:4,rode:16,"Democratic-controlled":1,Panmunjom:2,bolstered:54,Rosie:11,"cross-eyed":1,Vesole:2,clasping:8,"fine-looking":1,SCRAP:33,disassociated:16,"re-entering":8,Glowering:8,Forseth:2,Spanberg:2,Ono:2,Ong:2,Grosse:2,Bleeker:2,Laugh:2,Maccario:2,"Nine-month":1,Madson:2,evolutionary:1,"non-church":1,volts:4,Shigeru:2,altogether:6,Fitzgerald:2,"Lincoln-Mercury-Merkur":2,"summer-holiday":1,Mikie:2,"long-lived":1,Reconsider:39,Emergency:11,"cut-rate":1,BRIDGEPORT:2,"high-price":1,accompaniments:4,"barrel-wide":1,derivative:3,Home:11,LYNCH:2,physicians:4,prosper:39,Yongjian:2,Teleprompter:2,Fortified:17,Morrill:2,Register:2,creedal:1,"Long-Term":40,"junior-high":1,Extensions:4,Sense:47,"nose-dived":32,Creators:4,grimaced:16,STOCK:47,"off-center":1,"five-party":1,"far-famed":1,concave:1,Riely:2,Wenceslas:2,invertebrates:4,Bonanno:2,reproducing:8,homogeneous:1,Landis:2,Molloy:2,Dunes:41,"gravel-voiced":1,Recyclers:28,Anniversary:11,Dropping:8,Cheng:2,Seiyu:2,patch:25,witness:25,Treausry:2,Noting:8,frowns:20,"market-on-close":1,DuroTest:2,Shortly:6,unwieldy:1,greedy:1,Monopolies:111,convolutions:4,ServantCor:11,Hammersla:2,Ecco:2,Oros:2,Angola:2,Juliano:2,"U-I":2,Zayre:2,Plenary:2,underinvestigated:1,troughed:16,BOSSES:2,Calvert:2,receding:8,"upper-class":1,imprecates:20,jurists:4,REINSURERS:4,Refco:2,"landlord-tenant":1,Kubek:2,Connecting:2,Backstairs:4,WORKS:2,vetoed:32,Dunston:2,erstwhile:1,"foul-ups":4,Pinter:2,onslaughts:4,Kikkoman:2,interests:18,Boardman:2,Dill:2,Roosevelt:2,Xenia:2,Copperman:2,incongruities:4,Heckman:2,Existing:30,"non-research":1,orchestrated:32,"Ashton-Tate":2,gays:4,Doswell:2,Tennesse:2,Negotiable:1,Oldenburg:2,false:97,shrinks:20,chivalrous:1,Fenimore:2,"cost-reduction":3,tonight:43,Secret:40,Ledge:47,"wave-setting":1,mustachioed:1,depict:42,Mulloy:2,"how-to":1,Fukuyama:2,cloakrooms:4,teetered:16,Invisible:2,Lansbury:2,"tall-masted":1,Sysco:2,"Brown-tobacco":1,Fizkultura:2,"hoof-and-mouth":1,cipher:39,Mode:2,jimmied:16,"oil-slicked":1,Wheatena:2,"so-called":117,Barasch:2,Soderblom:2,bred:54,Adaptaplex:2,Belisle:2,lots:4,consorting:8,brew:25,"back...":102,Unstained:1,Hasenauer:2,Brandes:2,Reliance:11,"free-traders":4,Brandel:2,replaster:39,taps:18,trying:5,Betsey:2,quickened:32,Curzon:2,entities:4,irk:39,tape:44,"reggae-and-rock":1,riding:5,Storekeepers:4,preliminaries:4,Schlieren:2,undivided:1,Hooked:16,Tasso:2,"I.R.S":2,unbundle:39,EnClean:2,Keen:2,wring:39,strollers:4,monkish:1,Rating:11,"five-block":1,"State-run":1,"fez-wearing":1,comprising:8,taxes:18,"low-value":1,stuff:44,"cabaret-like":1,taxed:81,Landesrentenbank:2,Brent:2,guessing:55,deathward:6,frame:24,AmeriGas:2,Joachim:2,Fe:2,"knee-type":1,Hooker:2,Linden:2,Nagayama:2,Yanks:123,Issam:2,nuclear:1,Hindoo:2,Issak:2,roiled:17,STUBBED:17,"onward-driving":1,Linder:2,"incumbent-protection":1,"post-bankruptcy":1,Succasunna:2,Courbet:2,"hot-selling":1,Clairson:2,staring:8,handstands:4,challengers:4,marts:4,Circus:2,Leontief:2,"Zurich-based":1,Ione:2,"award-winning":1,Musmanno:2,exalting:8,"near-term":3,Ledger:11,indict:39,stylistically:6,scapulars:4,"Certificates-a":74,Meadows:2,balloonists:4,decanting:8,"open-shelf":1,genetic:1,willing:13,entitle:42,Aziz:2,feather:25,GRiDPad:11,"Land-based":1,commutes:18,commuted:54,Vicks:2,Kupor:2,MARKS:4,swindling:8,Vicky:2,banish:39,countermeasures:4,sourly:6,Widener:2,Verbrugge:2,Ebersol:2,OECD:2,Bethlehem:2,"Mahal-flavor":2,Virginians:28,westerly:97,"Greek-speaking":1,Noces:87,Dalfen:2,Yazov:2,greater:136,ostentatious:1,descendants:4,Judie:2,Regular:40,Stanbury:2,chronicling:8,unimaginable:1,Mandelbaum:2,nondescriptly:6,"high-standard":1,diplomatically:6,Decker:2,polyesters:4,heathenish:1,"Hanover-Precious":2,Dulles:113,"non-fortress-like":1,off:137,EYP:2,provocatively:6,SHIBUMI:2,southeastern:1,oft:6,windowless:1,"Bambi-syndronists":4,reefs:4,newest:138,Similarly:6,"peer-group":1,Lover:11,resuspended:54,Siegman:2,Joyo:2,Camdessus:2,monetarist:22,Ramcharger:2,granulocytic:1,"W.D.":2,Schering:2,"too-expensive":1,moralities:4,"hot-rolled":1,neoliberal:1,Countrywide:2,crack:139,Unfurling:8,"one-percentage-point":1,Lebo:2,Qualitative:1,stooped:16,falters:20,Ghent:2,RESOURCES:2,debatable:1,Virdon:2,bulge:25,"Insta-Care":2,"sharp-jawed":1,Gino:2,Agents:56,Hondurans:4,become:140,Earthbeat:2,Lauritsen:2,Purves:2,Newburgh:2,Kidder:141,"stress-producing":1,"Rykoff-Sexton":2,"Food-price":1,castorbeans:4,hissing:21,Feldstein:2,Belvidere:2,Warrior:2,"cutting-tools":4,"five-by-eight-inch":1,Fruehauf:2,Kikuyu:2,Komurasaki:2,Telefonos:74,Jaggers:2,"last-resort":1,Utopia:11,torched:32,tubing:142,imaginary:3,Judgments:4,debentures:4,grayer:12,SalFininistas:2,Cos:74,Replace:39,Glassell:2,"moss-covered":1,curative:1,grayed:1,swimming:5,cultivates:20,"high-priced":1,letters:4,Somewhere:143,Propulsion:2,Caesars:74,"Ravel-like":1,Schmalzried:2,unstanched:17,cultivated:81,HOLIDAY:11,bothers:20,glistened:16,brownies:4,"Corton-Charlemagne":2,nonfarm:1,splintered:103,pairing:21,"faster-growing":12,providential:1,"solid-muscle":1,terminates:20,Billings:123,sommelier:64,"Majdan-Tartarski":2,Exact:1,Wimpys:2,"public-housing":3,Sanitation:11,Kloman:2,"Lo-Jack":2,"cancer-gene":1,FormBase:2,Bohn:2,Lifson:2,Healthcare:129,Milstar:2,"Nu-West":2,"Guber\\/Peters":2,tossed:112,evident:1,shrunk:17,Terrizzi:2,wheellike:1,tosses:4,"office-supply":1,"man-to-man":6,Bumkins:2,Cementos:113,Argonne:2,obese:1,Nath:2,Alleghany:2,"fine-featured":1,Nate:2,"smoothed-muscled":1,nonetheless:6,tubular:1,Somers:2,decisional:1,Khare:2,details:18,"D.W.":2,"Corp.":11,rebelled:32,Accord:2,Trickster:2,Matais:2,Peery:2,Druse:1,outlets:4,treelike:1,ULI:2,"Monterrey-based":1,Delwin:2,Michaels:113,"export-driven":1,Octoroon:2,Corps:144,compete:42,villainous:1,Philly:6,Infotab:2,"non-Alternative":2,"near-strangers":4,clamoring:8,Agile:145,magnetic:1,Kensington:2,Interlude:2,Roche:2,Rocha:2,tenuous:1,Partecipazioni:2,stinks:20,Brainard:2,"self-consuming":1,Assemblyman:2,periodicals:4,Immediate:40,propellants:4,neighbours:4,Greenshields:2,"over-the-road":1,worth:146,alternating:8,Aaawww:106,Ametek:2,perishable:1,Mancini:2,Shaughnessy:2,Pipe:2,summarized:54,"pre-employment":3,"Hands-off":1,"white-collar-defense":1,"five-ply":1,blanche:3,"by-election":22,Subsidies:4,debunked:17,samurai:147,superlunary:1,Zagaria:2,Conning:2,"weapons-plant":1,professionally:6,Boats:123,Thema:2,Troubled:148,shatteringly:6,Capra:2,machines:4,Salle:2,"food-service":22,Fireman:11,"time-tested":1,Grandis:2,offshoots:4,Whirling:1,Mazda:2,Sedan:2,Olatunji:2,Nietzsche:2,Photograph:47,"No-o-o":106,viewings:4,Caradon:2,PARIS:2,"sub-therapeutic":1,Linville:2,equals:72,remarried:32,Cadre:2,Algonquin:2,Taisei:2,"non-Mexican":1,Marshal:2,stresses:18,bilevel:1,Duero:2,fireballs:4,"catch-up":22,Barabba:2,Riefling:2,stressed:85,otters:4,Absolute:1,Brownell:2,Economdis:2,inequitable:1,Raymonda:2,inequitably:6,"building-supplies":4,Satan:11,compulsively:6,HOLLYWOOD:2,Cestre:2,Shootin:8,Bellini:113,fulfull:39,"W.I.L.D":2,unrehearsed:1,Poughkeepsie:2,spearhead:63,administering:8,sweated:32,exacts:20,Competes:20,Consort:2,Skye:2,Extracts:4,simperers:4,ascribe:149,"two-drug":1,regrouping:21,championships:4,"profits-optimism":1,overstretch:39,Thurmond:2,"Count-Duke":2,Ormoc:2,Normally:150,Svevo:2,divorced:81,Steele:2,honeymooners:4,cuddly:1,divorces:4,Steels:113,Abe:2,quivering:8,relativistic:1,DiLorenzo:2,Abt:2,Abu:2,Schenley:2,"RTC-owned":1,totaled:151,Caniglia:2,impassive:1,confidential:1,Seafirst:2,rationed:17,nuts:152,photoelectrons:4,"corporation-socialist":1,Lelogeais:2,LATEST:51,chines:4,Griggs:2,Invoking:8,Duluth:2,misleads:20,Huard:2,Farrell:2,"Anglo-Dutch":66,purging:55,"pre-1986":1,CALL:153,Mandom:2,"well-born":1,crystallographic:1,Colucci:2,greasies:4,Brasiliaaircraft:2,Guest:11,slimmed:17,undetected:1,ancients:4,slimmer:154,coiling:8,"counter-drill":39,understates:20,defrauded:32,understated:45,"single-A-1-plus":2,fumigants:4,Cherwell:2,underperform:83,Oman:2,Keepers:4,Motion:11,Omar:2,Hamburger:47,sizenine:1,"Cross-Purposes":28,"Reno-Lake":155,principals:4,Schoenberg:2,reasonably:6,routines:4,reasonable:1,Broadcasters:56,Volatile:1,feeds:72,"Turin-based":1,volcanos:4,unfocused:1,dumping:55,emeralds:4,Type:47,Brunswig:2,chauvinistic:1,Aubrey:11,Gumucio:2,trainers:4,ruggedly:6,"out-of-sight":1,"drawn-out":1,"self-important":1,disputed:45,bellhops:4,Ubberroth:2,certifies:20,"funn-eeee":1,disputes:18,enlightened:7,certified:14,scabs:4,chortled:32,Ugh:106,Parade:2,AFFLUENT:1,flawless:1,chortles:20,manias:4,generalizations:4,JERSEY:2,Amendments:65,Tracey:2,"re-enact":39,railroads:4,hamstring:39,another:156,Manfred:157,Vulturidae:4,Flavel:2,Azoff:2,alcoves:4,illustrate:42,reconfirming:8,"public-sector":22,tossers:4,takeovers:4,"more-than-ordinary":1,"sweat-saturated":1,Sangamon:2,"mail-sorting":8,dogs:18,incitements:4,Pike:2,Rushdie:2,Rare:1,"over-large":1,offhand:1,Spaarbank:2,Andersson:2,enmeshed:17,"anti-missile":3,"luxuriosly-upholstered":1,"volume-decliner":1,Lewtas:2,Spontex:2,Hazzard:2,lanzador:64,microfossils:4,Hiltunen:2,resettable:1,"well-meaning":1,Lendrum:2,Zamislov:2,respecting:8,Venable:2,Lincoln:158,Talbott:2,sportsmen:4,Kinnear:2,admittances:4,refreshingly:6,impelled:54,DeKalb:2,contents:4,"Q.":2,Pravda:2,"semi-conductors":4,"field-based":1,convenient:1,Confiscated:159,subjects:18,quadric:22,thundering:30,Emyanitoff:2,Flamingo:2,Splits:4,Button:2,Resolving:116,troughs:4,"Machine-vision":1,"weak...":102,ramblings:4,Yutaka:2,"return-on-savings":1,Atchinson:2,"blood-pressure":3,nostrils:4,witnessed:54,Shanties:28,enshrined:17,QB:2,QE:2,reserve:139,Fultz:2,yachters:4,Atala:2,ESOP:11,Refinements:4,"foamed-core":1,bellow:25,"value-oriented":1,Yocum:2,witnesses:4,Mapco:2,Moselle:2,Photography:2,"mid-flight":6,"fuel-guzzling":1,Krueger:2,completes:20,industriously:6,cashews:4,facaded:17,Haitian:1,tracers:4,Sass:2,"tin-roofed":1,machos:4,"fluid-filled":1,haunted:45,roundabout:1,"Curie-Weiss":2,"rolled-up":1,conventioneers:4,runs:72,Donoghue:128,"SMALL-COMPANY":1,Pearce:2,gears:18,rung:160,Psychical:1,insurgents:4,freshwater:12,Loeser:2,Clifford:2,smoldered:32,AEP:2,AES:2,Jackson:2,Caracas:2,AEW:2,"shoe-horn":39,Shinton:2,AEC:2,Bleier:2,bullhorns:4,AEG:2,horrendous:1,"Judeo-Christian":1,Meyohas:2,pastel:3,draws:72,smoggy:3,pasted:54,Horror:2,Fifteenth:40,Workmen:4,drawn:14,encounters:18,Micha:2,pastes:4,Domingo:2,"A310-300s":2,Hudnut:2,"rush-hour":1,succumbs:20,"non-skid":1,Koeppel:2,"Self-Government":2,Perish:39,essentially:6,psychologists:4,Bring:39,"Mich.":2,Gtech:2,Dawn:11,Brink:2,Telemann:2,tone:25,SkyWest:2,Conservationists:4,had:32,Molokai:2,engulfs:20,Furhmann:2,anticipatory:1,tons:4,infirm:1,tony:1,guzzlers:4,Taccetta:2,Tchalo:64,Connecticut:11,Hungarians:65,Barge:11,Mamaroneck:2,plebeian:1,excite:39,Elections:123,psychically:6,novitiates:4,Horstman:2,reciprocal:1,"Canada-Newfoundland":2,rattlers:4,thrash:39,endpoints:4,Lamberjack:2,Massey:2,Marenzio:2,beetles:4,Amfac:2,unblinkingly:6,CVN:2,dizzy:1,teutonic:1,spectrometric:1,CVB:2,"chip-design":1,municipal:3,bilious:1,"pesticide-free":1,Santas:28,"Ill.":2,addressees:4,Smug:1,"wider-body":12,disciplining:8,Classroom:2,fuss:25,Lyndhurst:2,unready:1,"Denver-based":66,"TND.B":2,fuse:25,Bloeser:2,rasping:1,venturing:8,Takashimaya:2,Flippo:2,humble:82,Gresham:2,Alamito:2,"neo-stagnationist":1,"R.W.":2,sullenly:6,Ille:2,"tax-department":1,wops:20,Doubtless:6,daguerreotypes:4,"super-Herculean":1,Duff:2,Lorenzo:2,thanks:161,sabbatical:22,beautifying:8,"Taft-Hartley":2,Suitable:1,nilpotent:1,similarities:4,"High-Yield":2,Baeyens:2,Nader:2,openings:4,Eighth:40,"Democratic-endorsed":1,Hubble:2,Tabellen:64,Wink:2,Winn:2,"mail-order":3,Jansen:2,InCide:2,designers:4,Lancet:2,Agouron:2,Wine:11,eroded:81,rustle:25,Hochman:2,cool:162,temporally:6,slavish:1,night:163,"long-endurance":1,mazes:4,dualities:4,Supplies:4,Steamboat:2,OFFENSIVE:1,"fine-arts":4,Commission:164,Grapefruit:2,Italia:2,Glantz:2,bemused:1,contaminating:8,glamorize:39,ungracious:1,Malibu:2,signifying:8,Bieber:2,"post-conviction":1,cortical:1,dolce:64,Proceedings:113,architectural:1,Mailing:116,"non-contributory":1,Vajna:2,gentler:12,Briarcliff:2,"passenger-kilometers":4,Dragging:8,DEPOSIT:47,Arata:2,Priory:2,Horizon:2,synagogues:4,Puglisi:2,rendering:55,Schnabel:40,Richfield:2,vipers:4,Blasi:2,Garcias:28,Tatanga:2,overblown:1,sternal:1,Cherkasov:2,Regency:11,Presley:2,"emission-control":1,Blast:2,Blass:2,gaseous:1,garaged:17,McChesney:2,Bhagat:2,"U.N.F.P":2,garages:4,Liipfert:2,Fanshawe:2,sailboats:4,"human-generated":1,reproductive:1,crows:18,"not-knowing":165,"McGraw-Hill":2,Reducing:8,Crean:2,Cream:2,Jessie:2,"Joint-venture":1,Some:166,"Quill\\/William":2,potholes:4,"direct-marketed":1,Repsol:2,valuing:8,chantier:64,denouncing:8,Isikoff:2,evasive:1,test:24,Largely:6,Kaza:2,Maxicare:2,Behan:2,"school-sponsored":1,Ouse:2,faze:39,"}":167,Escobar:2,"fourth-ranking":1,Hallman:2,bestioles:4,banquets:4,Keller:2,Chicken:11,Kelley:2,"Japanese-language":3,songs:4,"Draw-file":25,Mathias:2,Containment:47,horseback:168,Republic:11,roundtable:1,battle:24,tenable:1,soothed:16,zeroing:8,aristocratic:1,Delphine:2,"island-fantasy":1,headstrong:1,extols:20,puppyish:1,Prego:2,Roles:4,"graphite-plastic":1,Rolex:2,"dark-haired":1,Mineralogy:2,turns:72,gun:25,gum:25,Butterfield:2,"car-sales":4,Reaganite:1,jurisdictional:1,"Leningrad-Kirov":2,Sander:2,CML:2,CMK:2,detonated:54,CMI:2,CME:2,Watts:2,CMA:2,"hand-woven":160,Galoob:2,wattles:4,CMZ:2,forging:8,Ziff:2,CMS:2,Fork:2,"Corp.-compatible":1,Form:169,foregoing:122,shares:170,Ford:2,peels:20,Yoshida:2,Fort:59,khaneh:64,Darin:2,"research-and-production":1,wonduh:39,sleepwalkers:4,English:171,combatant:3,Lorin:2,Bunks:4,sociable:1,Perch:2,Juvenile:40,Portugal:2,Fueling:8,Sanlandro:2,Percy:2,burdensome:1,reagents:4,Lizzy:2,plotted:54,lighthouses:4,Guarascio:2,"H.A.":2,regardless:6,extra:34,unappeasably:6,uphill:97,filaments:4,puffed:54,Isaam:2,unappeasable:1,Isaac:2,Semon:2,"Lines-Trans":2,coalesce:42,Fell:172,unreinforced:1,slough:39,Idols:4,Feld:2,"Government-owned":1,Teleflora:2,Anabaptist:47,Require:39,"celebrity-oriented":1,"southern-central":1,Westbrook:2,Quotations:65,spaceships:4,prepay:39,defeats:18,"Conn.based":1,"top-management":3,Johann:2,syntactically:6,HEYNOW:2,woefully:6,Homer:2,Livermore:2,Clough:2,Drivers:4,"self-realized":1,Freight:11,"ton-per-year":1,ERG:2,chin:25,Runge:2,ERC:2,chic:3,determinations:4,Dubinsky:2,varnishes:4,Reber:2,positional:1,"antitrust-law":3,Rebel:47,"wash-up":1,deteriorate:42,armies:4,unenforcible:1,Biaggi:2,peerless:1,escalate:42,APARTHEID:2,Elaborate:1,"push-up":22,Kendrick:2,drastic:97,Spiller:2,Supavud:2,Shih:2,Kornbluth:2,Dieter:2,HUDSON:2,devotees:4,Radio:11,"ill-founded":1,Sporkin:2,Radic:2,Grandparent:2,Ship:11,conquests:4,opts:20,Combustion:2,Author:11,"backwoods-and-sand-hill":1,Hannon:2,Jas:2,Jap:2,Jan:2,Mandell:2,Jam:2,tablets:4,obediences:4,Jai:2,"still-building":1,still:173,Mandela:2,Dolan:2,"safe-driving":1,"big-souled":1,"customer-driven":1,"Arkansas-based":1,Modigliani:2,Genghis:2,thermometers:4,refineries:4,Ventspils:2,slacks:4,"five-year-old":1,Mattison:2,galloping:30,Zeke:2,placate:39,WestAir:2,drop:139,"S.G.":2,beings:4,Glenview:2,extradite:39,marshals:4,grouse:174,challenged:32,"mixed-up":1,Museum:11,stooping:8,"free-holders":4,yeah:175,Kahwaty:2,challenges:18,Becalmed:17,year:22,"Zealand-based":1,Thru:127,"quasi-private":1,monitors:18,"crisis-response":1,"Seattle-based":1,Compagnie:2,Norwegian:66,"structural-adjustment":3,wholeheartedly:6,Indochinese:176,temporizing:8,Tariff:47,"well-operated":1,Iijima:2,"York-area":1,saxophones:4,"Taiwan-born":1,Itoiz:2,advantages:4,"Lincoln-Douglas":2,repayable:1,Travelers:130,AgResource:2,Erin:2,tangled:103,Erik:2,Ironic:1,nonprofit:1,Padget:2,Payers:4,suffice:42,BENTSEN:2,flipping:177,TRAVELS:20,Vonnegut:2,Medicine:11,"two-and-a-half-mile":1,"L.L.":2,tomorrow:168,Petry:2,Bruckner:2,"publicly-traded":1,Driscoll:2,Zadel:2,"Tech-Sym":2,typographical:1,despises:20,Analyses:4,Roaco:2,brainy:1,Quadrum:2,uninformed:1,brains:4,Jail:11,interbank:178,"auto-immune":1,Karstadt:2,professionals:4,transferred:45,Bremerton:2,diktat:1,GERMANS:179,Volland:2,overcollateralized:17,extinguish:39,Settlement:47,Ekberg:2,unsubstantiated:1,Cappy:2,Marcor:2,Marcos:2,"beef-hungry":1,Orrie:2,Capps:2,"For...":102,OUTSIDE:1,Winnipeg:2,Deep:180,Petre:2,Marcom:2,Israelite:2,"blonde-headed":1,"custom-built":17,"call-in":1,Refuses:20,"chemical-weapons":152,Wiseguy:2,Vestar:2,importantly:6,Viatech:2,Akio:2,Akin:2,MeraBank:2,countries:4,Ibaraki:2,Ente:2,Iveco:2,Thermo:2,Coupes:2,implications:4,premiered:16,chauffeured:17,premieres:18,"precipice-walled":1,Jibril:2,Web:2,Aggies:2,Blount:2,Wei:2,Character:47,"play-by-play":1,Wes:2,teamed:32,Wet:66,Sharing:8,Jeepers:106,Nijinska:2,Pelletier:2,industrialize:39,embittered:14,"self-supporting":1,Awake:2,Cupply:2,Marsden:2,Adaptations:4,paneled:1,"ten-gallon":1,crevasses:4,Levinson:2,humbled:54,stroll:44,"well-capitalized":1,rippling:8,Intellectual:2,"anti-tax":1,ambling:8,carloads:4,Arhat:2,"Chicago-area":1,bannnnnng:39,EMA:2,Whigs:65,EMC:2,burst:181,excoriated:32,EMI:2,anchored:45,Harbanse:2,EMS:2,hoes:4,"break-up":22,Rincon:2,"once-dull":1,"Krzywy-Rog":2,Krieger:2,Members:92,complications:4,westbound:1,intonations:4,Diehards:4,"piece-by-piece":1,Lieberman:2,toting:8,Beahrs:2,Joseph:74,clipboards:4,broil:25,"money-transfer":3,"WIN\\":2,WINS:20,Adoniram:2,outcuss:20,Malaysia:11,Lavery:2,botched:14,Altenburg:2,foreboding:22,hybrids:4,inexplicable:1,exploit:182,"Japanese-Americans":65,Velazquez:2,Principals:4,charismatic:1,sledding:21,amino:1,muzzling:1,Meteorological:2,micrometeoritic:1,Paid:14,tropical:3,Paix:2,Floyd:2,"six-dollar":1,Goodby:183,Maybelline:2,"before-school":1,aggressions:4,straying:8,discontinuing:8,Involved:17,fours:4,"earth-bound":1,skiers:4,Biosystems:74,Night:144,freebooters:4,"financial-service":22,Steroids:4,Yaffe:2,offbeat:1,Hyun:2,moderns:4,Performed:17,Edgewater:2,Moody:129,Histochemistry:2,Aaronson:2,GNP:11,bickered:17,tilling:8,metric:3,"continuing-education":1,Insurgent:1,Better:184,Unwilling:1,Israel:2,develop:42,"M.R.":2,pester:39,Notitia:4,Bloomberg:2,preisolated:17,"Fed-watching":1,"near-complete":1,Amado:2,Fertitta:2,"century...":102,squatted:32,Telelawyer:2,Amada:2,"single-sentence":1,"fifty-cent":1,Colee:2,irresistable:1,Peruvian:66,Caverns:2,Terence:2,Nesconset:2,tarpapered:1,Catinari:2,Walkers:65,"depreciation-induced":1,Municipals:57,nondurable:1,Service:11,Oaklanders:28,"worn-out":1,Bafflers:28,Gases:4,Pump:11,growled:16,greetings:4,Syllables:4,Molecular:2,Linear:2,"forward-looking":1,Muniak:2,abortive:1,felicities:4,Marysville:2,overbought:185,Thatcherian:1,"lowest-cost":186,Analyst:47,disproportionate:1,propped:54,Outflows:4,"Tenn.-based":1,dialectics:4,earnest:22,Plainview:2,Playtex:2,heightened:45,Regulars:4,unrequited:1,conducts:20,Greyhound:2,roll:44,annually:6,yearnings:4,unspoiled:1,scholastics:4,Salwen:2,Mahran:2,output:25,Magleby:2,verbal:1,exposed:81,tragedies:4,Walnut:11,exposes:20,zealously:6,slurries:4,intend:149,Udall:2,ACTH:2,salicylic:1,Symantec:2,palms:4,AlunJones:2,"two-minute":1,Vinken:2,Pompey:2,Ion:2,Prizzi:2,"elephant-like":1,fractures:18,Chilean:1,Kalmuk:2,"FT-SE":2,"sweet-natured":1,PLACE:2,"heat-absorbing":1,fractured:81,Leonardo:2,Kalmus:2,"B.B.C.":2,Krakowiak:2,Cavenee:2,"user-inviting":1,Scapin:2,Blaine:2,Chevron:11,"non-resistants":1,"D&B":158,backup:22,Intergovernmental:2,Kapoor:2,Boogie:2,Amicam:2,Pavletich:2,shrinking:55,Karshilama:2,"Well-received":1,Yuppily:6,Budzyn:2,Finnie:2,Ruschkowski:2,explosions:4,Acarbose:2,"cost-push":1,Kennon:2,"American-developed":1,Calderwood:2,"Galveston-Port":2,recouped:32,pervasively:6,"eighth-floor":1,wholes:4,curtail:42,embedded:14,"Two-month":1,Survival:2,Marston:2,waltzing:8,Fitzwater:2,realigned:187,Moves:4,DEFECT:33,sturdiest:51,"Jacques-Francois":2,BALKS:20,rosarians:4,Veterans:46,Idol:2,finishes:72,"Howson-Algraphy":2,Niven:2,Finnegan:2,"Herald-American":2,Purpose:11,Daberko:2,fools:4,poor:10,Engine:11,diaries:4,endeavors:4,whistling:8,"drive-through":1,SIMPLIFYING:8,"Y.W.C.A.":2,Miron:2,titillating:8,insertions:4,Boissoneault:2,Comcast:2,DIRECTORS:4,cores:4,overseas:34,Magnolias:4,Intervoice:2,interspecies:4,ceases:20,JWP:2,Unknown:1,HURRICANE:2,ceased:32,thoughtful:1,unblock:39,Take:188,Shultz:2,religious:94,Kasler:2,Cieca:2,corps:80,Staloff:2,Discos:4,computerizing:8,"music-publishing":1,"sight-seeing":3,volunteer:189,twothirds:4,patently:6,"clean-air":3,Hancock:2,"Status-roles":4,coloured:1,Celestial:2,Surging:8,Underwoods:28,"coupon-distribution":1,Terminiello:2,anarchical:1,Veiling:8,rationally:6,reaffirming:8,startin:8,lulls:18,streets:4,GUN:2,"less-conservative":1,coudn:190,Watchmen:2,Youngberg:2,Gaetan:2,Robb:2,cues:4,"raw-material":22,lurch:78,Stenhachs:28,cued:16,Importers:2,Breda:2,scallops:4,stockyards:4,Chessman:2,longshoremen:4,Paramus:2,continuingly:6,Latinovich:2,excess:3,marring:8,"food-products":4,Fokine:2,Doll:2,cathartic:1,Dole:2,Bolstered:17,Krasnik:2,"Kohnstamm-positive":66,Trusthouse:2,advertising:191,successors:4,Plateau:2,inspires:20,Tingley:2,"gun-carrying":1,Stateswest:2,Chicopee:2,"S*":2,"S.":2,"A.S.":2,seventeenth:1,Climb:39,"S$":84,Commencing:8,Moet:192,Butlers:28,Intouch:2,Connor:2,"Mono-unsaturated":1,"oil-field":22,Struggle:31,"Sheraton-Biltmore":2,Sy:2,Viewmaster:2,Sr:2,propellers:4,Sp:2,Arlt:2,Su:2,St:11,Banking:193,Si:2,sclerotic:1,So:194,Se:2,macho:3,spandrels:4,SS:2,"on-again-off-again":1,Blumberg:2,SP:2,SW:2,SK:2,SH:47,SO:6,budgets:4,SC:2,SA:2,"self-conscious":1,SE:2,SD:2,Bitten:17,IBJ:2,persists:20,cubist:1,IBM:11,unconcealed:17,IBC:2,Finberg:2,"black-draped":1,quartets:4,Innocent:1,Cellist:2,Signers:4,IBT:2,overcharging:8,stymie:39,surpassed:54,dismembering:8,individualistic:1,Brahm:2,reject:42,surpasses:20,Falb:2,Alcorn:2,Lower:195,Microorganisms:4,desisted:16,purring:55,compulsory:1,Sumat:2,criticize:42,Schellke:2,Slote:2,embark:42,anytime:6,roommates:4,chopsticks:4,Marathon:2,ghostbusters:4,"world-affairs":4,groundup:1,networking:21,Cholet:2,Bedouins:4,Definite:1,charities:4,Southbrook:2,lovebirds:4,sarcolemmal:1,Atlas:129,Confederacy:11,"Property-tax":1,"may...":102,Pountain:2,miter:39,Temptation:47,Equibank:2,prowled:16,differed:32,Tupolev:2,boastings:4,evening:21,Intergroup:2,Hostess:2,slighter:12,Kwang:2,"Pre-Legislative":2,"flashlight-type":1,"fifth-largest":1,slighted:7,Incurably:6,inflecting:8,impressionists:4,liquefied:17,obligates:20,freebies:4,Suez:2,bless:39,Quaid:2,disdaining:8,Elbaum:2,McNaughton:2,blest:196,fairy:3,obligated:45,heavy:34,thrombi:4,transcribe:42,Tax:128,Gentleman:47,Anat:2,ballistics:4,"honest-to-Betsy":6,Westridge:2,Fearon:2,"four-element":1,"processed-foods":1,Tad:2,jolly:1,Besher:2,shrivel:39,Serpentine:2,Town:11,Rayfield:2,Storyboard:2,earns:20,Manjucri:2,toiling:55,Senese:2,Capitalincludes:4,hapless:1,Blend:39,Fantastic:1,"broad-based":1,Sauvignon:2,Bros:74,Broe:2,Brod:2,Feniger:2,Supplee:2,CNBC:2,Samba:2,Adds:109,spitting:55,"quasi-recitative":1,Tatler:2,Hawksworth:2,Adde:2,effortless:1,visions:18,equating:8,obtainable:1,Grenville:2,"DEAE-cellulose":11,announcements:4,teamsters:4,fiddle:25,Dutil:2,Refuge:2,trapped:45,Schroll:2,BRADSTREET:2,"French-Italian":1,Initiating:8,assaulted:32,imperiled:14,"clean-fuels":4,"south-eastern":1,Dreamboat:2,gnawed:16,hesitating:8,Mahoganny:2,garrison:25,Communities:65,mooed:16,Beretta:2,readapting:8,"event-driven":1,tearfully:6,Mizuno:2,heaviest:51,deflationary:1,Late:197,ogled:32,organs:4,boorish:1,adorns:20,adrift:6,Wetzler:2,Price:11,itemized:17,Graduates:4,"after-dinner":1,Swinburne:2,Focusing:8,Cruze:2,Lucinda:2,Lookit:39,Chief:129,"money-back":1,Chien:87,Schweitzer:2,Polygram:2,Killips:2,"once-in-a-lifetime":1,Usinor:2,arising:8,Viscerally:6,Nanjing:2,Chartered:2,ansuh:39,rechargeable:1,physics:19,stalked:112,hovered:32,Wheaties:28,"church-going":1,beatniks:4,Johannesburg:2,Benin:2,heavens:75,Venturi:2,ERISA:2,predilections:4,Pittston:2,French:198,Trustee:2,"Office.":2,"ten-minute":1,"inner-ear":1,Michelle:11,FITC:2,retorts:18,Uclaf:2,Greco:2,competing:199,boils:20,Counselor:2,unburned:1,Oncogen:2,Confucian:40,"employer-paid":1,hypo:1,doctrinaire:3,wriggled:16,Franck:2,howled:16,Paradox:2,Franco:2,drafted:54,Bridgewater:2,Kipp:2,Laramie:2,France:2,Asbury:2,Gibbs:2,Mama:11,Poised:2,Goldenberg:2,Gibby:2,"payroll-paring":1,locals:4,Brash:2,oldies:4,"loud-voiced":1,tolls:4,falsify:39,Realty:2,Tsuruo:2,Brass:2,FREED:16,"five-row":1,Rodolfo:2,Kercheval:2,Smelov:2,Rippe:2,disintegrative:1,Redundant:2,Elise:2,arrears:4,abruptly:6,hoisted:54,collaborators:4,Vadas:2,Vadar:2,"grass-covered":1,memorized:54,"higher-cost":200,minorities:4,Admirably:6,SHEDDING:8,Mailloux:2,Compaq:59,Koerner:2,Bader:2,Rothshchild:2,"non-exempt":1,Sullam:2,Lookout:2,Bracknell:2,"three-building":1,BRITANNICA:2,Protection:11,Runiewicz:2,Bogdan:2,Gott:64,Lenders:123,Harbison:2,enroll:42,N:47,Gilt:2,Donna:2,confusions:4,Hassan:2,"floating-point":3,substantiates:20,Supplement:11,accidently:6,Asmara:2,LifeSavers:111,Qatar:2,procedurally:6,embroidered:17,Pulaski:2,"high-rolling":1,Delving:8,Bonwit:2,Eyes:46,grant:24,Luke:2,"Lafite-Rothschild":2,Masks:20,makeshift:3,"paid-up":1,vulnerable:1,grand:1,"well-hit":1,Lonski:2,pleadings:4,Faith:11,classmates:4,fatty:1,Seated:17,soberly:6,Bleus:2,"Euro-beach":22,Archie:2,calibrates:20,sniggered:16,Rhenish:1,Lupel:2,MX:2,calibrated:54,mobs:4,Schwinn:2,POLICY:2,Burleson:2,settlements:4,Grenadian:1,reviewed:54,devastatingly:6,Falconbridge:2,Reconstruction:2,Durables:28,PIK:2,informal:1,PIC:2,representational:3,cherries:4,questioned:32,Berkeley:11,PIR:2,reemphasizes:20,nymphomaniacs:4,capacities:4,"cruise-ship":22,"payment...":102,Antigua:2,dearly:6,preparatory:1,"pre-sentencing":1,ponds:4,Kathie:2,"helter-skelter":1,Systemic:1,Personages:4,LABORATORIES:2,Crip:2,Cris:2,"F-16s":28,sketch:25,"Push-ups":4,"still-healthy":1,Myself:2,lips:4,towards:127,plumbers:4,Laos:2,"Futures-related":1,Manifatture:2,MorningStar:2,dilapidated:7,Preparations:113,Aquacutie:2,competitions:4,intramuscularly:6,Davidson:2,Sainted:2,Southport:2,Protestant:129,Parliamentarians:2,undergone:17,Biologics:2,multivalent:1,Biologico:2,assists:72,viewpoints:4,"infusion-therapy":1,repressions:4,Strategies:123,Swallow:2,BUYERS:4,Taylor:11,"anti-Sony":1,lyophilized:17,mentalities:4,silence:25,shavers:4,Thi:2,"not-so-new":1,unimpaired:1,presupposes:20,Hennessey:2,reworked:32,Evangelicalism:2,Norman:2,HISPANIC:1,placing:55,Kitty:11,visas:4,Koch:2,unlashed:16,Benackova:2,Kitti:2,opposed:81,uncomplaining:1,withholding:21,Secom:2,healthful:1,Perpetual:1,Dakotas:28,tragically:6,Howe:2,"investment-banking":22,liberalizing:8,Howl:2,Rafsanjani:2,viciously:6,limpid:1,Okayama:2,purloined:17,chomp:78,familar:1,Newspeak:2,"graham-flour-based":1,MacroChem:2,munis:4,"On-to-Spokane":2,Marella:2,similar:1,"CBS-K":2,hesitantly:6,ordered:112,Lauder:2,metalsmiths:4,interventions:4,"criminal-abortion":1,Edward:2,"buckle-on":1,consoled:32,aeronautical:1,dashed:81,fears:18,"Wash.":2,aprons:4,dashes:18,Benninger:2,smiles:18,Exterminatin:8,Stanford:11,Sentry:2,Cott:2,Sizwe:2,"hot-slough":1,assayed:17,Sentra:2,graphically:6,smiled:32,Dauchy:2,approving:8,Roundtable:2,aesthetically:6,Baucus:2,correlated:103,syntactical:1,resolving:8,Perches:2,Corrette:2,"England-born":201,bribe:25,Perched:17,Soviets:41,infringing:8,Apparently:6,Levinger:2,"current-carrying":1,Bengal:2,"No-Smoking":2,compact:202,GABLE:2,Parent:11,insistent:1,Nod:2,Nob:2,uninformative:1,"Father-God":2,"anti-communist":1,Not:203,Nov:2,Now:150,Nor:119,unabridged:1,rebounding:8,Celebrity:11,assuming:8,Donut:2,Elbow:47,yourselves:53,Curb:39,"No.":204,meticulously:6,"browny-haired":1,Mogul:2,Yiddish:40,sedentary:1,enforce:42,Antietam:2,FHLBB:2,overfunded:17,jump:205,notwithstanding:206,Gris:2,Ramseier:2,Milanoff:2,Fahey:2,"anti-party":1,Kutney:2,Isacsson:2,conning:8,Grid:2,Survived:16,Hibler:2,upsetting:5,McNealy:2,fifteenth:1,Hershel:2,Conducted:17,"just-rejuvenated":1,Skipjack:2,Palace:11,Tequila:2,Back:207,Bach:11,"ever-anxious":1,avaricious:1,Kermit:2,Organizational:1,"strong-arm":1,patents:4,Temperatures:4,hilltops:4,Oilers:74,foresee:149,Krishnamurthy:2,Assistance:11,manage:42,Pankyo:2,"all-white":1,Loyalist:1,"Rowland-Morin":2,Lanza:2,biophysical:1,"semi-sterile":1,"Rich-affiliated":1,Discontinue:39,trivializing:8,Averae:2,Png:2,Markus:2,salvages:20,"Kumagai-Gumi":2,Oakar:2,Basking:2,"fifteenth-century":1,salvaged:17,boards:18,parachute:25,"techno-managerial":1,laendler:1,meek:1,"computer-products":152,averaged:32,"test-prep":1,Generation:11,VIII:2,servants:4,Caravan:2,meet:95,averages:18,Israeli:66,links:208,"money-losing":1,radioing:8,chinless:1,"Politics-ridden":1,pulling:8,intuitions:4,peelback:1,"cave-men":4,Wakabayashi:2,Deeper:12,cratering:8,"well-served":1,Beast:2,"Passaic-Clifton":2,sentiments:4,Reservation:11,instinctively:6,listens:20,MiniScribe:2,embellished:17,Baubles:28,ultrasonically:6,outdid:16,Heilbron:2,Mrs:2,Roman:209,bibliographical:1,Allou:2,Allow:39,Wheeling:2,Makin:116,scoop:25,Guard:128,desensitized:17,encyclopedic:1,"estate-freeze":1,Skelly:2,Baltimorean:2,Bapepam:2,carnivores:4,Favre:2,RAF:2,Multiple:40,EASTERN:2,Telegraphers:57,subroutines:4,Baxley:2,gymnasts:4,Multiply:39,RAX:2,overflights:4,popularly:6,wells:4,Loser:1,Loses:20,"J.E.":2,Lewco:2,Losec:2,Mendelsohn:2,Montpelier:2,Bellman:2,Telemunchen:2,"tax-based":1,slide:24,firings:4,Pesce:2,"drug-delivery":1,"still-ravaged":1,"Dream-Sweetmite":2,"six-minute":1,Statistics:130,attachments:4,Borges:2,Bertrand:2,OCC:2,constitute:149,buccolic:1,Oils:4,OCR:2,special:3,littered:54,"special-projects":1,Parioli:2,Fermate:2,obsessive:3,Anderlini:2,Crosbie:2,"full-season":1,Gromov:2,darkly:6,"non-Cocom":1,Daiwa:11,Relentlessly:6,improvisational:1,Sentor:2,Meurons:4,delegated:17,Drawing:210,resumed:32,Bombay:11,"Cell-free":1,Owen:2,times:211,Telxon:2,"Boesky-greed-is-good":1,isotropic:1,"cash-hungry":1,resumes:72,timed:45,Lustgarten:2,Lanier:2,Iaciofano:2,"Merry-go-round":2,confuse:42,unsupported:1,"French-Canadians":28,bitch:25,"man-in-the-moon":1,Pioneering:2,Shann:2,Newtonian:1,Contracts:57,Fran:2,Tshombe:2,Dunker:2,Pilko:2,Dunkel:2,minisupercomputers:4,"goings-on":4,"Weill\\/Bertolt":2,"hard-nosed":1,weepers:4,Volney:2,crackle:78,innovate:39,secco:80,RESEARCHERS:4,Geary:2,catered:187,bloodiest:51,conscious:3,Malcom:2,sidetracked:16,Macmillan:2,Asti:2,enforced:45,Asta:2,Flying:116,enforces:20,Interview:59,EVEREX:2,metaphysics:91,Falstaff:2,Administrator:2,Solemnly:6,Parcel:2,rosier:136,thunders:20,Bowery:2,pushups:4,battles:18,Schuman:2,grounding:55,battled:32,Nokomis:2,Morgenthau:2,"polka-dotted":1,blades:4,venereal:1,swollen:7,regi:64,Geographic:40,Countin:8,"quick-kill":1,Rescue:11,Exceed:16,"free-marketers":4,subtracted:54,Keiyo:2,repeated:212,Fellow:213,Rusting:8,Lavallade:2,stationing:8,Lehn:2,"sisters-in-law":4,Anthea:2,loadin:8,seclude:39,Anthem:2,Belzec:2,halting:30,"Non-residential":1,beatific:1,telling:5,Holgerson:2,Garvier:2,unfinished:1,nitrous:1,Waterways:4,brighten:39,"Pro-Choice":1,won:214,Newtown:2,cameos:4,inherited:45,embody:33,"bottom-of-the-barrel":1,Lumia:2,kinked:1,Marquis:2,indentations:4,alabaster:215,Holtzman:2,maritime:1,vehicles:4,Rosner:2,scintillating:1,siphons:4,Guizot:2,Fitness:2,"post-Deng":1,Savelyeva:2,dwellings:4,Rezsoe:2,professors:4,Forget:216,CANADIAN:1,imperious:1,"French-speaking":1,yearn:95,coaxed:54,"Abbe-Scotch":2,Darlington:2,Austrian:66,Internatonal:2,"stock-repurchase":1,Senk:2,Rainy:2,multiplying:8,Investing:217,Arland:2,"pro-repeal":1,canine:3,Stolzenbach:2,"Cadbury-Schweppes":2,rifts:4,Mariners:28,intercorporate:1,Raine:2,Nuttle:2,washable:1,"N.H.":2,illusory:1,southward:218,Normura:2,dialectically:6,Liptak:2,McIntyre:2,"Sen.":2,"re-oriented":17,hurrying:30,ovals:4,indiscriminate:1,Hooray:106,kicking:55,Projecting:8,Benanav:2,key:104,reprobating:8,Muscovite:2,limits:219,writhed:16,outrank:33,historichomes:4,"computer-distributed":1,"one-size-fits-all":1,strains:4,heavenward:1,Loftus:2,"red-flag":39,diplomats:4,Integraph:2,paranormal:1,presaging:8,overarming:8,accomplishing:8,TransTechnology:2,ANTHEM:2,unaffordable:1,glommed:16,immense:3,Bolivian:1,Spook:33,troopers:4,controlled:81,retrospective:22,Steinbach:2,abortions:4,"G.N.":2,unamusing:1,Masnadieri:2,Falwell:2,Consequently:6,Hanao:2,debtor:22,Gardening:2,Sture:2,Atlantans:28,Angotti:2,"Federal-Tiger":2,Kneeling:8,piloting:21,Stockdale:2,comets:4,"margin-calls":4,examines:20,modestly:6,Baccarat:2,surface:44,Fraas:2,examined:32,Pretty:197,cometh:20,"day-after-day":1,Songbag:2,bazaars:4,"school-based":1,Skilton:2,"Seoul-Moscow":2,"computer-aided":1,Bangkok:11,harmonies:4,"over-all":1,northwest:220,Arabist:1,Syse:2,Mockler:2,"foreign-made":1,Types:4,dirhams:4,Torme:2,Buzzy:2,"anti-viral":1,proscribe:33,Curie:2,stumped:17,Curia:2,Hallelujah:11,refashion:25,steals:20,"RB&H":2,Macaulay:2,EBPI:2,Evelyn:2,Mayflower:2,Tide:11,insurmountable:1,Experiments:4,furriers:4,coronaries:4,Exton:2,"By-passing":8,increasingly:6,spotchecks:4,liked:32,Disappointments:4,distant:1,Atwell:2,VATICAN:2,Gaming:11,Bellevue:2,"O.K.":125,Spadafora:2,Zane:2,emblems:4,Dorsey:2,Dorset:2,precedents:4,propelled:54,Herrmann:2,Zambon:2,Amerman:2,"Total-Cie":2,"Aug.":2,Manuscript:2,skips:20,Merely:6,Drawbacks:4,unthaw:39,payments:4,conscripts:4,rote:22,climbers:4,revisits:20,glare:25,Avoid:39,Colleagues:4,Leventhal:2,"U.":2,"Kong-based":66,FOES:4,moderates:18,Andras:2,Boyeki:2,objected:32,Newell:2,Enrico:2,cradle:25,moderated:54,"open-door":22,sweepstakes:19,Strang:2,demonstrated:45,limitations:4,"to-and-fro":6,forgit:42,Straight:1,Official:66,"degree-granting":1,Up:221,Us:222,Farmwife:2,Um:106,berserk:97,Cartier:2,"Dream-Way":2,Euratom:2,unhinged:17,UP:223,US:38,UN:2,UH:2,UK:2,unaided:1,interlobular:1,"CB-radio-style":1,pointless:1,Vergessen:64,additional:1,lagged:54,Stripes:46,Valois:2,Souza:2,SsangYong:2,"Fear-maddened":1,"non-Aryan":1,Moss:2,Waldo:2,squirmy:1,gain:24,Rauschenbusch:2,"October-December":2,MetroCorp:2,highest:224,McGinley:2,Bordner:2,sinusoids:4,Kinnock:2,derelicts:4,Niarchos:2,Twist:169,Einstein:2,cavalcades:4,Djurdjevic:2,Nawal:2,Invictus:2,kisses:18,beats:72,Doors:4,Spierer:2,"take-home":1,Lubyanka:2,Leftist:1,cosmopolitans:4,ingredients:4,RULES:4,"chock-a-block":1,Elmgrove:2,proctors:4,Wells:2,presaged:16,Delivery:47,Giles:2,Vane:2,popularizing:8,McCleod:2,blunders:4,stormbound:1,exothermic:1,traditionalist:22,tackiest:51,Kazikaev:2,Hyndman:2,foil:25,middlebrow:1,backstage:6,Endure:33,Novato:2,Muncipal:2,"in-office":1,"better-prepared":1,shuns:20,accidents:4,Tzora:2,"Rome-based":1,Fourteenth:2,Stickers:4,indirectly:6,eclipsing:8,paperless:1,Keul:2,Soak:39,Frontier:2,Toubro:2,"twelve-hour":1,"high-button":1,Energieproduktiebedrijf:2,trodden:1,Bailey:2,Leggett:2,Cuauhtemoc:2,Soap:11,"ruling-class":1,Hondo:2,auf:64,swam:16,Honda:11,pensions:4,Shapovalov:2,swap:24,Sheets:2,Dynafac:47,recycle:39,aux:64,sorry:126,sway:95,Pleas:41,collaborate:42,Znaniye:2,void:70,Industria:2,Panyotis:2,voir:64,"comico-romantico":1,Simplot:2,deplorably:6,"hurricane-stricken":1,Extending:8,unrelated:1,enhance:42,deplorable:1,"separation-of-powers":1,whirlwind:22,landlords:4,Cuisine:2,Margaux:2,scouted:16,Christic:2,Herrick:2,Christie:11,Yasuda:2,hibernate:149,tangential:1,kidnap:39,disintegrated:16,ignominiously:6,"tall-growing":1,Sikes:2,uptempo:1,Schenk:2,WELLS:2,reviving:30,mee:53,helmets:4,"market-hog":1,mea:64,"back-on-terra-firma":1,muzzle:25,mem:64,men:4,mei:64,weirdly:6,met:32,Bussieres:2,biconcave:1,Lassus:2,systematized:17,Aalseth:2,Curry:2,Predispositions:4,Chiron:2,Simeon:2,Brakes:4,Extra:2,Scolatti:2,Demonstrations:4,fajitas:4,Ricketts:2,"have-nots":4,Lyon:2,"south-central":1,objectively:6,sliced:54,Fleischmanns:2,Norske:2,Piano:11,Romanza:2,"Boersen-Zeitung":2,rationalist:3,"doubled-edged":1,LOBBIES:20,"gold-oriented":1,Drexler:2,"well-servicing":1,Kingsepp:2,Rudibaugh:2,Carbon:11,TASS:2,overlooked:54,grabbin:8,"surgical-abortion":1,"multi-state":1,Smelting:2,defecated:17,room:47,"flue-cured":1,Slug:39,movies:4,Fournier:2,exceptions:4,root:24,troubles:18,"motor-operated":1,Zweibel:2,Chrome:2,Wizard:11,"whistle-blowers":4,Scalfaro:2,cials:4,Maecker:2,Hardscrabble:2,elicited:54,"January-August":2,decrying:8,Darcy:2,remonstrated:16,"Red-Green":2,quibble:39,loggers:4,Fidler:2,disassemble:39,manuals:4,Kiley:2,"security-type":1,lifesaving:8,Trujillos:28,defaces:20,EQUITIES:28,Delusion:2,Touring:55,neglect:44,Ended:2,fictitious:1,pasteurized:17,plagiarizers:4,Edwviges:2,Textiles:113,glycols:4,determinate:1,Agnelli:2,"high-rep":1,inconclusive:1,"W.T.":2,fellas:4,budding:30,famille:64,personae:4,deathly:1,personal:10,"Sun-Times":2,Econometric:2,MiGs:28,Luber:2,"Butter-Nut":2,drops:72,confidently:6,rebutted:54,"comedy-oriented":1,madly:6,Ashwood:2,driftin:8,Challenge:11,glazes:4,demythologize:39,Agenda:11,Beggiato:2,glazed:17,imprisoning:8,Saitama:2,Chesley:2,"AIDS-related":1,Seita:2,Seitz:2,ducking:8,Check:216,punishable:1,nonchurchgoing:1,Goulde:2,admittees:4,"SS.":2,trading:225,forgot:32,aids:18,LeBrun:2,comedies:4,"two-percentage-point":1,Obeying:8,merchants:4,unbound:7,Menderes:2,"Eagle-Berol":2,Rosabelle:2,Skolniks:2,bulkheads:4,Stockman:2,Join:188,Clive:2,"Reps.":74,"SS-18s":4,abate:39,Healthco:2,Salvatori:2,resew:39,gruonded:16,SST:2,cosmic:1,Sudden:1,SSI:2,uses:72,enraged:103,Adolf:2,causeways:4,Freshmen:4,oracles:4,Waite:2,"double-A-2":22,"double-A-3":1,"Electro-Optics":2,Vectra:2,ALBERTA:2,Fienberg:2,PATRON:2,acquaint:39,Mullerin:2,Johns:2,Excellent:1,gourmets:4,McKinleyville:2,Commandeering:8,Estimated:14,Yevgeny:2,chronicled:32,Charleston:11,Minikes:2,begins:20,homogenized:17,"Travel-Holiday":2,enshrouding:8,Exhausted:1,conforms:20,Colefax:2,exchangeable:1,biochemical:1,Bottlers:113,Mercier:2,Snuff:2,recommence:39,Curacao:2,rattle:25,Lewellyn:2,Gideon:2,"central-planning":1,prerecorded:17,"nine-tenths":4,Tashkent:2,Egyptian:66,"Kinder-Care":2,Gripen:2,yearlong:1,uproariously:6,overplayed:32,Biological:66,"legal-services":152,maria:4,Sanctuary:2,splints:4,competitors:4,Kyocera:2,"egg-throwing":1,unleashed:54,Sabre:2,PATCO:2,UPI:2,mineralized:1,implying:8,flouted:17,poison:226,McDuffie:2,dampening:1,CONSUMERS:4,"double-A":117,bookish:1,Archbishops:4,"Post-Newsweek":2,Advantages:4,Lahus:2,Others:92,bangish:1,lightening:8,"company-owned":1,extraterrestrials:4,preparatives:4,nyet:106,"difference...":102,Yesiree:106,"trans-Panama":1,"water-deficient":1,pallets:4,Holstein:2,untradeable:1,"boom-boom-boom":1,facilitators:4,COMMENTS:4,troop:78,adulterous:1,Partners:41,"Star-Spangled":40,testing:191,"Af-values":4,Indexes:4,Dreamers:57,"non-stop":1,hoydenish:1,Indexed:1,interruptions:4,"home-entertainment":1,Watervliet:2,Somebody:47,Plotkin:2,narrated:17,"eighty-sixth":1,Billed:17,"by-ways":4,Multiplexers:4,"socio-economic":3,Blumstein:2,"W.Va.":2,Tunnel:2,"non-governmental":1,busloads:4,Otherwise:6,Micawber:2,resistant:3,Imperiales:28,"discount-movie":1,RobertsCorp:2,"Naples-born":1,Thrall:2,Glimco:2,Bahamas:111,precut:1,"half-point":1,Muscat:2,putt:25,puts:72,regenerate:39,KANEB:2,"growth...":102,"soft-landing":1,entered:32,lovely:1,"well-deserved":1,"SHORT-TERM":1,"eight-bar":1,Emmert:2,Flor:2,Flow:2,BRITISH:1,"word-games":4,Keteyian:2,Flom:2,scrubbers:4,Voice:11,Debugging:8,Reputedly:6,Process:11,Tatman:2,Canaan:2,Pines:2,ceilings:4,CAPITALIST:1,sprinted:16,"bribery-related":1,recuperate:39,"well-kept":1,Arrangement:11,cans:18,inscrutable:1,gaze:44,cockatoos:4,Kibbutz:2,realizing:8,Sanson:2,Chatwal:2,Sansom:2,"world-famous":3,colonies:4,evolve:42,"off-duty":1,Hals:2,opulent:1,Champlain:2,impelling:1,Dilip:2,"price-stabilized":1,Usually:6,geological:1,interferometers:4,Brassbound:2,SAKOS:64,presto:6,unconditionally:6,jackdaws:4,failing:55,Matson:2,resuming:8,Janitsch:2,sanctums:4,yours:227,"worked-out":1,Helicopters:74,Griffin:2,unclenched:17,Significants:4,crystallites:4,Capone:11,Acceptable:1,assigned:45,fighters:4,salivary:1,"rent-subsidy":1,Bills:123,pecuniary:1,Boss:11,appellant:64,copyrights:4,cardiologists:4,Buddhism:11,"revenue-sharing":1,"ago.":6,"Kerr-Mills":2,Bowman:2,boasted:32,involuntary:1,rehash:78,supervisors:4,paramilitary:1,orthodontic:1,Browne:2,Picturing:8,Arp:2,Stolz:2,Art:228,repossessed:7,ramparts:4,Arx:2,tormentors:4,Michele:2,Computing:229,Ara:2,Arc:2,Are:230,testers:4,Ark:11,Michels:2,Arm:169,Aro:2,Arraignments:4,dean:47,Generics:4,Beef:47,Conduits:4,deaf:1,Zeising:2,Been:231,Beep:11,Beer:47,yearlings:4,Beet:2,Browns:74,dear:232,"doll-like":1,carts:4,buffer:25,Parizeau:2,provoking:30,Leonidas:2,Kochan:2,subscriptions:4,codifies:20,predicting:55,Salman:2,"defense-electronics":152,Corey:2,buffet:44,Blampied:2,codified:17,backlogs:4,lyking:8,"Hoped-for":1,blithe:1,Merill:2,Carstens:2,"second-guessed":17,managers:4,Dallas:2,Isabell:2,"memory-pictures":4,Pokorny:2,HyperCard:2,down:233,Southlife:2,"plain-clothes":1,"P.D.I.":2,Chairmen:4,refined:7,Satrum:2,Cranston:2,TRC:2,initial:104,"U/NNP.S.C.":2,"districts\\/states":4,"let-down":4,"tank-related":1,Herman:11,polemical:1,clinics:4,Lissa:2,Bradsby:2,Dicello:2,anionics:4,landing:21,feminine:3,experimentations:4,zaiteku:64,Defeat:2,Urstadt:2,evinced:54,trendiest:51,Albanians:65,"bad-neighbor":1,Boismassif:2,Langhorne:2,Fedders:113,resuscitating:8,Richman:2,"on-air":1,Heymann:2,"flood-lighted":1,strengthening:5,petit:64,"cure-all":22,HELPS:20,awhile:6,marinated:17,Tiber:2,Persona:2,exaltations:4,"Menuhin-Amadeus":2,Taisho:2,Persons:56,"time-strapped":1,Lande:2,Uplands:28,Romantic:66,handicap:25,"super-expensive":1,utilities:4,brightens:20,"export-license":3,Cathy:2,"twelve-year-old":1,bluefish:4,Barnard:11,"load-shedding":4,pseudo:1,worked:32,scribblers:4,Substitute:1,Daikin:2,Exploracion:2,restored:54,discreetly:6,"E.G.":2,Torino:2,Tango:2,Winning:229,Kalevi:2,redouble:39,hijacked:54,DALLAS:2,father:25,Redskins:28,analogous:1,"Washington-based":1,telegraph:24,Lakeland:2,Sewanee:2,Cantobank:2,Tenements:4,"self-proclaimed":1,airings:4,biceps:91,stiffed:32,cheapest:51,proposals:4,tartans:4,trombones:4,turgid:1,Mahmoud:2,Fidelity:2,misimpressions:4,stiffer:12,talked:32,Curcio:2,Merger:47,"four-crate":1,onrushing:1,measurable:1,Pittsburghers:28,measurably:6,Zoghby:2,targets:18,Define:39,majors:4,"page-one":3,encrusted:17,Comend:39,Klette:2,annals:91,suspect:234,noconfidence:1,"less-than-perfect":1,processing:21,Bishops:113,Latvians:28,Bids:4,DSP:2,cushioning:21,DSL:2,DSM:2,DSG:2,Muffling:8,box:25,boy:235,diagnoses:18,Founder:47,grinned:16,bow:44,Founded:17,spheres:4,Daylight:2,diagnosed:54,bon:64,Jaques:2,Antonini:2,bog:63,teenage:1,Cortlandt:2,"KFAC-FM":2,passthrough:1,Mannix:2,Lansing:2,"close-knit":1,"mainframe-class":3,transplant:24,Couperin:2,infinitum:147,Conrail:2,cooperates:20,uncritical:1,Tonio:2,Aerospace:11,cooperated:54,Maintaining:8,scriptwriters:4,Kingwood:2,Carletonian:2,polymerizations:4,Customhouse:2,forswears:20,AUS:2,Ginsberg:2,bushels:4,"four-syllable":1,JOIN:39,"evil-doers":4,McAfee:2,quoting:8,Scan:2,whizzed:16,drags:20,Numbers:57,romanticized:17,Ekstrohm:2,Abney:2,thicknesses:4,Purkis:2,Heather:2,Conalco:2,fuck:39,forerunners:4,Cougar:2,floodheads:4,"RE-ENTRY":2,subconsciously:6,"metal-workers":4,Earns:20,nonchalant:1,Carrollton:2,Flotilla:2,irreverent:1,"hazardous-waste":22,Liddell:2,Germania:2,"male-sterile":1,Germanic:66,metamidophos:4,Amerongen:2,Urn:2,"hand-tooled":1,nondairy:1,Urs:2,"CORP.":2,"sweat-soaked":1,"fetal-alcohol":1,Braniff:2,Restless:1,reseller:236,Olean:2,Headland:2,"brokerage-firm":1,Nicaraguan:66,Sequa:2,demonstratives:4,Hasbrouck:2,spreadsheets:4,"half-inch":1,fatalities:4,solder:82,blooded:17,Trappings:2,"Cf.":39,Muscle:47,police:237,"domestic-policy":3,Rail:11,Rain:11,Regis:2,Guatemala:2,Opportunity:11,"one-out-of-three":1,transparently:6,reinvested:54,underpinning:21,"Terg-O-Tometer":2,Solomons:28,tucked:54,Burghardt:2,soulful:1,contravened:32,lunch:25,markings:4,Fiasco:11,Kloner:2,"Selmer-Sande":2,Trabb:2,Seville:2,showcasing:8,"home-owners":4,physiologic:1,"one-over-par":1,Sentelle:2,unachievable:1,elephants:4,"mass-market":3,"well-paying":1,SERVICES:46,"foreign-trading":1,Routine:1,Disappointing:1,Lollipops:4,carrion:3,Successful:66,HEFTY:2,FSLIC:2,Pocket:2,Stansfield:2,"Longer-term":97,registries:4,irrigating:8,G:238,Rights:239,Needing:8,"non-bank":1,publicsector:1,coffers:4,noisemakers:4,Luigi:4,ajar:6,Maharashtra:2,Fight:63,contented:14,Microscopes:4,Andruses:28,frequent:240,adoptees:4,Lindens:28,fleeing:8,dungeons:4,SHEVARDNADZE:2,subterfuges:4,"neo-populist":1,"Super-Protein":2,enthralled:7,Black:129,intrastate:1,overheating:5,noisier:12,Lecky:2,Isolating:8,"Anglo-American":40,Minerva:2,Norwell:2,"home-state":1,"bare-bones":1,Saxe:2,"vacuum-tube":1,"fifteen-mile":1,speaking:55,"anti-South":1,Oncor:2,inefficient:1,Miracle:2,Ministries:2,Denouncing:8,"Court-packing":1,Hanshin:2,Consulting:11,doddering:1,Addwest:2,automakers:4,"big-shouldered":1,Styrofoam:2,Jayark:2,DeWalt:2,thyrotoxic:1,EUROPE:2,Bandini:2,Rockies:28,defecting:8,Expectations:56,Lovett:2,"hard-hit":1,incontestable:1,himself:53,nondefeatist:1,Waterston:2,Torrance:2,squat:104,Steudler:2,Broncs:2,shocked:45,"more-muscular":1,quieting:8,reacquainted:17,Bronco:2,Kazakhstan:2,Mathematical:1,ultimate:1,flattered:81,Worldwide:2,DHL:2,innuendoes:4,Parrot:2,"with-it":1,arguing:55,cathedrals:4,"cost-raising":1,humorists:4,Kellum:2,tugging:8,Keane:2,incisive:1,"wheel-loader":1,bleating:8,cosponsors:20,Actively:6,Graubart:2,"Duty-free":1,iniquitous:1,Harriers:28,WE:53,WB:2,"big-boned":1,Detached:17,"pro-U.N.F.P.":1,Yuppie:11,WW:2,Barre:2,maninstays:4,"high-profile":1,"new-rich":1,We:241,Wa:242,Wo:190,"non-Soviet":1,treasure:78,"Uzi-model":1,Wu:2,Diary:2,coagulating:8,travesty:25,pegged:45,Partisan:2,"program-trade":1,"even-larger":1,Kleist:2,"self-plagiarisms":4,seekin:8,Frothingham:2,hailed:32,gee:106,juleps:4,unaltered:1,bitters:4,Pelin:2,enjoys:20,Mommor:2,Laird:2,Right:243,Angel:2,"W.":11,Snodgrass:2,requesting:8,"growth-stunting":1,miles:4,Weiler:2,"less-restrictive":1,Attribute:2,Anger:174,Delacre:2,ANR:2,declared:112,Wyndham:2,Grant:59,Provide:42,sear:39,Wansee:2,seat:44,HELD:16,declares:20,Neave:2,Grand:244,Placement:11,emulating:8,Grano:2,Shaefer:2,Machiguenga:2,Nakazato:2,Bonecrusher:2,indicted:54,Illiterate:1,"tongue-tied":1,"pilot-management":1,label:44,boundaries:4,"public-information":1,permeated:54,Mercantilists:4,"government...":102,across:245,"property-tax":1,satiate:39,august:1,FOR:127,"data-base":3,dreamless:1,dogging:8,Each:246,"beefed-up":1,Perse:2,Potlatch:2,Carver:2,philosophically:6,feelers:4,Carvey:2,fulminate:39,"badly-needed":1,blasts:4,sketchy:1,Taught:17,tout:247,Carved:1,Statistical:40,Laboratory:11,"long-sleeved":1,ISRAEL:2,polities:4,Wachtel:2,dislocations:4,"V-shaped":1,McLennan:2,PRICIEST:51,Riley:2,considering:8,Assembly:11,capable:1,wobble:63,Affiliates:74,Optical:2,wobbly:1,Assemble:39,Affiliated:157,capably:6,lustily:6,vopos:64,repurchasing:8,Hathaway:2,wake:24,Solovyov:2,"stand-ups":4,hardcore:3,Revise:39,Chiaromonte:2,Showalter:2,"earlier-reported":1,Baths:28,investigating:55,Shipbuilders:28,falsified:17,blackballed:17,Shivers:2,Crutzen:2,"Tibetan-like":1,Burge:2,Intermediate:40,Blumenfeld:2,Symposium:11,Targetted:2,essayish:1,doubting:30,dairies:4,paring:8,woodland:1,Destruction:47,grantors:4,extended:45,expended:54,Mustangs:2,Barcelona:2,annulled:16,Holliday:2,Ortho:2,CAPITAL:11,pistoleers:4,shopworn:1,Hampton:2,"Indian-summer":1,identifiers:4,Fosterites:2,stunted:17,Carlton:2,Bit:163,admonishing:8,Marxists:28,convened:32,consisted:32,Englishy:1,Einsatzkommandos:2,Feedlots:4,"snug-fitting":1,Pittsburg:2,embroideries:4,statesmen:4,"willy-nilly":97,Putka:2,"pre-clinical":1,"silver-painted":1,Weekes:2,Nisbet:2,Enver:2,glutinous:1,tenses:4,"First-Born":2,Coconut:2,tensed:16,Telefonica:2,"Well-trained":1,GRAND:66,Liberal:129,"DC-10s":65,vertically:6,acquainted:17,vending:27,Haase:2,utopians:4,Gannon:2,Moreover:248,passionate:1,escalators:4,Digest:11,"woolly-minded":1,"Schmidt-Chiari":2,obsessions:4,Gilkson:2,Romana:2,pronounce:39,Analogously:6,Pembina:2,snoring:55,smarting:8,prerogatives:4,illustrated:81,Shipyard:2,Pasteur:2,Skies:28,"thrust-to-weight":1,"staff-reduction":22,"snake-like":1,Ciardi:2,"sixty-day":1,Vietnam:2,Assuredly:6,glomerular:1,Intermediates:65,"long-studied":1,"R-shaped":1,"city-states":4,Images:2,"most-dangerous":1,purported:249,fertile:1,Middletown:2,quintets:4,Buaford:2,Maintenance:11,certitudes:4,Trapped:17,pastures:4,hassling:8,Leperq:2,Baruschke:2,distracted:54,collided:16,deadlines:4,Appropriation:2,practised:1,"gains-tax-cut":1,spicy:1,Baliles:2,Dorgan:2,wholehearted:1,Orlick:2,"pre-kidnap":1,Meller:2,"information-services":176,Mellen:2,"whichever-the-hell":1,BATTLED:16,Guber:2,spice:24,"well-understood":1,Eddie:2,"Angeles-based":1,powerless:1,dawdling:8,Hershiser:2,aesthetes:4,Shijie:2,Crucial:1,undiminished:1,examine:42,spat:250,Riding:229,Weinroth:2,Mulligatawny:2,strikers:4,Busby:2,turmoils:4,Cuneo:2,designating:8,weeded:17,Courtenay:2,"what-nots":4,Buddhists:2,Somewhat:6,"Tse-tung":2,victimize:33,Milko:2,Climate:11,deliverers:4,FPA:2,equitably:6,"Fixed-income":3,FPL:2,Yorktown:2,"custom-made":7,Milka:2,Milky:2,Alfredo:2,equitable:1,itches:20,Beneficial:2,blackmailers:4,Healthdyne:2,wanta:39,boosters:4,u:251,oases:4,"double-bolt":39,grassroots:4,Waning:1,departmentalizing:8,Tomczak:2,"full-body":1,Kaplan:2,Asahi:113,Championship:2,McLuhan:2,Icahn:2,tomes:4,PRIME:10,puffs:20,Hazlitt:2,righted:17,Giorgios:2,puffy:1,yon:6,Socrates:2,Calude:2,Pels:2,Liman:2,clench:39,Objections:4,squirted:16,forking:8,alma:3,phosphines:4,Piraro:2,CTCA:2,Vilnius:2,outworn:1,clinch:39,arithmetized:17,straighten:39,Peppers:2,squeezes:72,"late-summer\\":1,Corollas:28,repeals:20,Densmore:2,Laro:2,wrecked:85,Muffler:2,Hydro:2,fetishize:33,HCS:2,mull:39,"action-adventure":1,bushwhacked:16,calculates:20,witchy:1,HCC:2,Georgescu:2,HCF:2,affectionately:6,Fishback:2,Clark:2,Clare:2,squiggly:6,Clara:2,Wrangle:39,WLIB:2,repaying:8,Keenan:2,Separating:8,Marquette:2,collated:17,specialize:42,Misawa:2,splashes:72,Reform:11,"Mmes.":28,"rock-ribbed":1,Carboni:2,Dolly:2,pigmented:17,Dolls:2,"correspondent\\/news":4,monocytogenes:64,Bialystok:2,Houtz:2,Coming:229,Lekberg:2,Governments:123,Biblically:6,engaged:81,jangling:8,"just-departed":1,"Communist-led":1,Byronic:1,karaoke:147,Purcell:2,Brody:2,recall:182,sulkily:6,Activists:4,marcato:64,"social-register":1,Oregonians:28,remain:42,halts:18,reaps:20,proteolytic:1,stubborn:1,synchronized:14,rejuvenated:14,minimum:252,"petroleum-exploration":1,UNESCO:2,Calif:2,rejuvenates:20,Yalta:2,Sandhurst:2,Chromatography:47,misallocated:16,comfort:25,"low-risk":1,maps:4,Wamre:2,Nouns:4,stir:95,Comanches:28,uninfected:1,Kelli:2,divinities:4,"spread-sensitive":1,Shafroth:2,Transplantation:2,countering:8,accorded:54,Erde:2,verified:17,undecided:1,reappeared:32,"hair-trigger":1,CLARK:2,tradeoffs:4,conglomerates:4,"special-service":1,Muscular:2,rebuked:32,"co-exist":39,Kurtzig:2,Bish:2,mulching:8,heartfelt:1,RAYCHEM:2,Creamer:2,Roald:2,"Inefficient-Market":2,Canfield:2,hundredth:1,comedic:1,emaciated:14,"Final-hour":1,seasonally:6,"three-hour-long":1,"counter-culture":1,Jath:2,worshiping:8,cinches:4,Fuchs:2,Scana:2,hyphens:4,compound:139,"walk-to":1,viewers:4,groped:16,Polished:1,"Chmn.":2,Kika:2,"Super-Sets":2,evade:39,micro:1,Merkurs:28,"submarine-launched":1,repeating:30,"integrated-circuit":1,politicize:39,Berle:2,engaging:30,managements:4,suspecting:8,edged:85,wisecracks:4,bandaged:14,acquisitive:1,Coor:2,Braumeisters:28,traitorous:1,Cook:128,Cool:253,"semi-celebrities":4,"Long-range":1,extraordinary:3,"asked...":102,Enos:2,deflate:39,backed:81,Migliorino:2,Nielsen:2,Archbishop:2,constraining:8,Puritan:40,"white-spirits":1,PAPER:254,Puritans:4,"private-bank":1,Lorena:2,Smukler:2,treetops:4,Homewood:2,welcome:255,"steel-gray":1,faultlessly:6,mercilessly:6,WPP:2,Slums:2,Environmental:40,"paper-products":152,"four-count":1,Silesia:2,catapult:42,Justin:2,Ballenger:2,Napkins:4,"sea-launched":1,differentiate:42,Dividend:47,"after-school":1,"cost-savings":176,Franklyn:2,Juncal:2,"third-dimensional":1,"clear-it-out":1,Cimoli:2,unbroken:1,ONCE:6,Sprinkel:2,swerve:256,confessional:22,focally:6,Eurocops:28,Amusing:1,Aterman:2,"three-quarters":91,Administrative:40,ditched:16,Limitations:57,Lucio:2,Bernardo:2,Ukrainian:66,Lucie:2,Cudahy:2,Lucia:2,lifts:72,zitless:1,Laband:2,"electro-optical":1,chary:1,serene:3,eggs:4,Holes:4,chart:44,serviced:54,Holen:2,charm:25,"Evans-Black":2,services:18,Fresh:66,Taras:2,teems:20,Anointing:8,honkytonks:4,"dealer-related":1,WATCH:39,Beira:2,seething:30,Rexall:2,consanguineous:1,chelas:4,rebels:18,swelling:5,"charter-shipping":1,Confident:1,"shut-in":1,Billiken:2,headlines:4,exteriors:4,Freeman:2,sluggishly:6,Sellers:113,Caterpillar:2,"Solomon-like":1,sanitize:33,thruways:6,Concluding:8,unagi:64,Keeny:2,"City-based":1,"U.N.-monitored":1,"Guilford-Martin":2,Favorite:40,toddlers:4,"mid-1950s":4,rotted:17,Amending:8,"methanol-powered":1,judiciously:6,Keene:2,Scenarios:4,spikes:4,motorcycles:4,Distributors:92,enclaves:4,Lucullan:1,Ecogen:2,Minneapolis:113,motorcycled:16,"pre-production":1,spiked:7,Female:1,Apologies:4,restaurants:4,"light-flared":1,Morse:2,"semi-finished":1,semisecret:1,overburdened:81,"short-contact":1,internationalist:1,Woodside:2,Omnicorp:2,Sigemund:2,GET:39,"GE\\":2,GEC:2,cahoots:4,"eight-year":1,Richards:2,Bayaderka:2,Superstar:2,rbi:4,trustingly:6,Archibald:2,"plutonium-powered":1,inimitable:1,Detective:2,Yeh:2,defunct:82,Slower:12,appropriations:4,Yea:106,Gann:2,foreign:1,sparring:55,Reservoirs:2,focused:81,Dawson:2,Yet:257,Yew:11,subpar:1,combinable:1,duplicable:1,Surrounded:17,Rastus:2,panicking:8,Schaumburg:2,"cross-functional":1,"non-instinctive":1,Institut:2,Checks:4,Khmer:2,fused:54,Middenstandsbank:2,Wendell:2,Processing:258,appall:33,"TV-Cable":2,screened:54,grandsons:4,peppery:1,fuses:4,peppers:4,"middle-of-the-roaders":4,nukes:4,assorted:7,decorous:1,roved:16,"non-Germans":4,"two-valued":1,Stockholm:11,Rory:2,resisted:54,outriggers:4,evangelical:1,Indications:4,dicks:4,Pohly:2,deferred:45,teaspoonful:3,mechanochemically:6,Institue:2,radiosterilized:17,Rehfeld:2,perilously:6,"audience-friendly":1,Delay:11,confining:8,DataQuest:2,stoves:4,Ira:2,Elliott:2,Ahm:53,"all-important":1,infernally:6,Copp:2,"lap-shoulder":1,Sonnenschein:2,bristle:90,Heine:2,Copy:158,riddling:8,currencies:4,"Cash-pressed":1,PETROLEUM:2,"deterrence...":102,SISAL:2,unveil:39,LVI:2,"horse-drawn":1,gestures:18,organically:6,Serving:8,whores:4,PLANS:20,Plainly:6,Councils:28,Healthvest:2,Carolus:2,iffy:1,Economic:40,Insitutional:1,briquettes:4,"Fiscal-year":1,"consumer-minded":1,Albany:11,"criss-cross":259,Kennewick:2,Obispo:2,zestfully:6,segregate:39,Boren:2,Picon:2,shrewdly:6,Minolta:2,"place-names":19,choreographers:4,Aspirin:2,McGann:2,postal:1,Proprietorships:113,PROPOSE:39,adjusters:4,"coal-black":1,studious:1,Christopher:2,impassible:1,clamping:8,Astra:2,"per-ad":1,Belknap:2,malfunctions:4,Commons:77,Truth:47,bribing:8,knock:95,Butterwyn:2,"L-shaped":1,"hard-wire":1,parsimonious:1,borrows:20,loyalist:22,foolish:1,Happens:20,outscored:16,lastest:51,Fischbach:2,Deliberately:6,blow:44,scalps:4,Togs:2,balmy:1,pleats:4,"revenue-desperate":1,fixations:4,inimical:1,Ambridge:2,Bosket:2,Freni:2,Cascade:2,Sourcing:8,"self-published":1,Birkel:2,feigning:8,Nomani:2,Cocoa:11,canvassing:8,Cocom:2,hindrances:4,buffoons:4,abusive:1,seating:21,"English-rights":1,Increase:260,inhospitable:1,Oberkfell:2,retailed:17,Zaroubin:2,"U.S.-style":1,Feeley:2,underused:17,Cordis:2,"out-plunging":1,underlines:20,Esperanza:2,Stephenson:2,exterminated:17,Filter:2,mechanistic:1,underlined:32,"Supply-sider":2,HONECKER:2,Beijing:116,pickers:4,Kazakh:2,corkscrews:4,Bennett:11,Groucho:2,"drug-traffickers":4,"market-specific":1,Potala:2,curt:1,constant:34,pseudonymous:1,GORBACHEV:2,beckoning:55,scarlet:1,Charisma:2,cure:24,"network-writer":1,fabricating:55,Linda:2,curl:42,Municipalities:4,pecks:4,Commissioned:17,"Neo-Classicists":28,confine:42,"dark-green":1,Advance:40,Bowles:2,Kleiman:2,Slogan:2,endocrine:1,"marijuana-smuggling":1,"less-risky":1,showgirls:4,HDTV:47,Hainan:2,cater:149,utterly:6,unenforceable:1,reflectors:4,Bartville:2,Taft:2,implies:20,healers:4,"red-and-yellow":1,"mortgage-interest":1,cooked:54,implied:81,Determine:39,razing:8,conjugal:1,verstrichen:64,Voegelin:2,portraying:8,groceries:4,fascinatingly:6,Coons:2,Angelina:2,marveled:32,Bonds:56,"ill-suited":1,reductions:4,Prepayments:4,masculine:3,Sietsma:2,pleasing:261,NTSB:2,Redoute:2,presently:6,Sportswriters:4,Ibbotson:2,radiophonic:1,startlingly:6,hoards:4,uttuh:39,entire:3,"economic-reform":3,diverging:8,"A.N.":2,RepublicBank:2,Gatos:2,busier:12,busies:4,"flex-time":1,havens:4,Timken:2,Sacred:2,Howard:262,Neoax:2,Onsets:4,Fast:40,Birns:2,Faso:2,"wider-than-normal":1,repurchased:54,"par-5":1,emigrations:4,fat:3,IUD:2,Butts:2,Butte:2,employerpaid:1,Tindal:2,Nugget:2,apologetic:1,vexatious:1,Afranio:2,packing:55,healing:122,safer:12,DEVELOPMENTS:28,"million-gallon":1,Oreos:28,windfalls:4,Jennifer:2,Correll:2,Henritze:2,implement:42,Reedville:2,absolutes:4,bumming:8,"light-duty":1,Starlings:4,Rhode:2,Rhoda:2,Batchelder:2,"over-50":1,Answer:25,welcomed:32,Aston:2,oilfields:4,abhorrently:6,Tarter:2,Garrin:2,hammered:54,"once-moribund":1,"little-known":1,"year-ago":1,Eastman:2,Astor:2,prized:14,Honest:106,Revolution:11,prizes:18,Latour:2,"many-bodied":1,"steroid-induced":1,silvery:1,headstands:4,"non-communist":1,fooling:55,jeers:4,"tobacco-product":1,grated:187,"public-asset":1,closing:263,Asylum:2,fetch:42,experiential:1,blabs:20,invoices:4,lammed:16,McGeorge:2,homoerotic:1,Meninas:2,"hair-care":22,Chapdelaine:2,varied:45,Yo:2,Worrell:2,Drink:63,Ye:2,Fridge:2,Respondents:4,KFC:2,"NZ$":84,Yu:2,profile:70,Riegle:2,"Washington-Alexandria":2,dockyards:4,Hedison:2,Gosson:2,chasing:55,friendlier:136,"Texas-Louisiana":2,"Y.":2,interviewees:4,nonworking:1,miscues:4,trembling:30,"year...":102,sensitively:6,Adultery:2,furious:1,solos:18,subsequently:6,"B-52":11,"cease-fire":22,rutted:1,disarm:39,Theatres:2,McMillin:2,"east-west":1,flattering:1,electors:4,Rotman:2,enactments:4,twirls:20,Legislators:4,integrators:4,twirly:1,wadded:16,accredited:32,"bull-necked":1,blatant:1,circumspectly:6,disrupts:20,youngish:1,bolder:12,Nickelodeon:2,"century-old":1,Robie:2,LeMans:2,tetragonal:1,ineffably:6,Robin:2,frayed:7,blindfolded:81,"shelf-registered":1,Indicated:16,Gari:2,mammals:4,Kailin:2,Moroccan:40,Gary:2,Talsky:2,theatergoing:1,Sanjay:2,"two-inch":1,recoated:17,Finucane:2,Print:39,"table-top":1,sexual:1,Prins:2,Kaliniak:2,Griston:2,Nu:2,Hein:2,Ching:2,China:2,Chino:2,Chinn:2,tradeable:1,Bostonian:2,Kakita:2,Trappist:1,fluctuates:20,NJ:2,Natick:2,Picks:20,fluctuated:32,"Manhattan-based":1,goitrogens:4,Exceptions:4,Specific:1,Outlook:47,Durban:2,"candle-lit":1,hinting:8,"better-educated":1,Rothwell:2,"V-8":66,"V-6":129,Sammy:2,Adsi:2,handier:12,"seventy-six":1,braced:54,Emhart:2,reaches:72,glanders:4,Pickup:2,Tuitions:4,Necesarily:2,reached:54,hashes:4,braces:4,presuming:8,pershare:1,MANAGEMENT:2,"coffee-roasting":1,Symbol:47,demythologized:14,intermediate:1,"then-Vice":40,"student-directed":1,programmable:1,cartoonlike:1,bulldog:1,hesitatingly:6,Gainen:2,unsubtle:1,Hartweger:2,NP:2,Gaines:2,"three-front":1,inapt:1,coughed:32,"opposition-party":1,Pound:11,Portraits:28,Agnese:2,Sabrina:47,"long-term``":133,tenements:4,Stirs:20,Battista:2,mastodons:4,"men-folk":4,Hagood:2,"FRINGE-BENEFIT":1,Newhart:2,yearned:32,have:264,"Dollar-De":2,Bacarella:2,continents:4,"black-and-yellow":1,shoestrings:4,"million-share":3,gingerly:218,"capital-to-assets":176,"whistle-stop":1,"computer-edited":1,LeGere:2,Meggs:113,Morley:2,orchestrations:4,Scientology:2,mimics:18,Rafer:2,enamels:4,clinkers:4,inexorable:1,beets:4,misrelated:17,Banca:2,MICROPOLIS:2,occasion:25,Banco:2,contemptuous:1,inexorably:6,squeegee:33,Gonzalez:2,Britten:11,ejaculated:16,Capshaw:2,demurred:16,Wheelabrator:2,trustfully:6,submachine:1,definable:1,ImmunoGen:2,Snezak:2,"freedom-conscious":1,Colodny:2,Doner:2,Vanessa:2,"no-hit":1,Arau:2,"standard-weight":1,emitting:8,Handelsbank:2,Hummerstone:2,Thrift:11,Casanovas:28,hijacking:21,Finnish:1,reputations:4,microelectronic:1,Winnick:2,Husak:2,Blevins:28,Gaffney:2,subways:4,teams:18,Helaba:2,PITCH:2,excesses:4,Zoe:2,hypophyseal:1,CONSOLIDATED:2,"GNP-based":1,polyphosphates:4,Zoo:2,daffodils:4,Vanuatu:2,tuxedos:4,Juliber:2,Squaresville:2,Pettibone:2,Discreet:1,wean:39,invariant:3,tediously:6,"b-Week":265,dirty:82,antiquarians:4,Nonelectrical:1,various:1,Incline:2,weak:1,Inexpensive:1,antics:4,Elvador:2,Financings:4,watts:4,Tompkins:2,effluent:22,Osamu:2,revoked:17,UAP:2,joke:24,equal:255,pulp:25,Byrnes:2,liquidating:5,politicizing:8,statues:4,"bond-market":1,Piscataway:2,Machinists:266,liquidations:4,Miklos:2,Musica:2,Buffet:2,"tax-law":22,playwrights:4,magnetized:17,devoting:8,"self-aggrandizing":1,Thailand:11,Huerta:2,"thrift-industry":22,"hard-core":1,Massachussets:2,Parsow:2,Trevor:2,Airlines:41,Parson:2,"advance-purchase":3,welcoming:267,Arigato:64,Spruell:2,Tissues:28,"limited-scale":1,General:40,Nunn:2,Pricing:268,hubs:4,ensuing:8,frustrating:13,"liberal-democratic":1,Carty:2,workplaces:4,weighed:32,arrangements:4,closets:4,marginalia:4,watched:112,Beach:11,"corporate-lending":1,tumbled:112,whirl:44,Return:269,Schuette:2,MBK:2,diets:4,MBE:2,DiSimone:2,MBA:47,MBB:2,"sugar-coated":1,"Polo\\/Ralph":2,Postel:2,Posted:54,garish:1,Pemex:2,Prevents:20,Aims:20,Groves:2,Grover:2,noncommittally:6,unfetter:39,"C.R.":2,Westminister:2,Pasquale:2,disoriented:14,exceedingly:6,wobbled:32,residuals:4,redeemable:1,Warshaw:2,comparisons:4,multibilliondollar:1,Weimar:2,stores:18,numbering:55,interim:3,Collected:2,localize:39,"nerve-shattering":1,Aspects:28,repetitious:1,reformer:3,onward:6,demographic:1,"future-time":1,slits:18,Jacobius:2,tremulously:6,Heiko:2,embossed:32,bishops:4,reformed:81,characteristically:6,resolved:54,footholds:4,"co-founders":4,Thread:39,Madrigal:2,Hadley:2,Gran:11,resolves:20,Release:128,"computer-age":1,Inflammatory:1,like:270,vibrant:1,Niem:2,admitted:112,Anders:2,"job-hunting":1,"coin-cleaning":1,"one-year-old":1,Heldring:2,"foamed-in-place":1,Wasatch:2,Meyerbeer:2,Arney:2,scurried:16,"federal-court":3,Arai:2,hail:44,"Tribune-Democrat":2,Palatine:2,Janofsky:2,elephantine:1,indemnify:39,poseurs:4,scurries:4,"Non-Catholics":4,Crosbys:28,trust:24,"OS\\":11,McDLT:2,unalluring:1,Racks:72,"null-type":1,Mathues:2,Baker:2,Bakes:2,"non-readers":4,uptight:1,Oubati:2,Diebel:2,marketable:1,Foggia:2,Indulgence:2,Jarrell:2,CPAs:56,introduces:20,befogged:1,Japan:2,introduced:54,Kingman:2,Salina:2,Psychology:2,socks:4,Iraqw:2,Iraqi:66,termini:4,Mindlin:2,lightyears:4,Cronkite:2,Lanzhou:2,Fresca:2,elastic:3,rushed:112,"two-tone":1,petroleumproducts:4,FAST:2,rushes:72,Artra:2,onepage:1,FASB:2,"USN.":2,touted:54,insures:20,insured:271,photocathodes:4,"no-star":1,anonymous:1,"now-obscure":1,persimmons:4,Ariail:2,flit:33,"non-representation":1,flip:82,Konigsberg:2,Toshiki:2,omnibus:3,Toshiko:2,replying:8,"well-defined":1,commentators:4,identities:4,Carwood:2,Driesell:2,Trepp:2,geeing:8,dressed:81,Movable:1,interdepartmental:1,detain:39,Wireless:2,"interest-free":1,ducked:16,dresses:18,convicts:4,Cry:47,Fortas:2,Hersey:2,maturational:1,April:2,detours:4,"over-hired":16,Prospect:2,stirred:32,ramble:42,AARP:2,grimmer:68,Alonso:2,wine:22,Gratified:1,Zaves:2,sterilizing:8,Communist:272,Infirmary:2,inexpert:1,Employes:4,"public-relations":93,consciences:4,Wathen:2,glides:20,activist:22,"@":273,"non-interest":3,prowls:20,Auvil:2,Kevah:2,reiterating:8,Shook:16,canners:4,MONEY:47,harried:54,ANNUAL:1,barracks:19,"Norris-LaGuardia":2,feathery:1,Fortunately:150,Nightmare:11,feathers:4,direct:274,Solly:2,nail:275,Okamoto:2,bubblelike:1,"Samsung-Corning":2,caseworkers:4,commemorating:8,revolves:20,Houdini:2,Mmm:106,oaths:4,Manko:2,ebbs:20,rubdowns:4,revolved:32,Augustan:2,electroshocks:4,ultimatums:4,"half-past":1,overplanted:17,vertebrates:4,GARY:2,Fitchburg:2,"red-and-white":1,snacked:16,Dames:111,Obligations:4,leaves:276,Elkus:2,"Per-capita":1,"White-haired":1,Barbados:2,midway:277,issuers:4,prints:18,"consumer-analgesic":1,"Well-Tempered":1,Narrative:1,purifying:8,Henceforth:6,Pasadena:2,meats:4,Lefcourt:2,audivi:64,meaty:1,riots:4,saleswomen:4,gweilo:64,"dollar-sellers":4,fainting:21,Sounion:2,"Blue-chip":1,Legers:28,overstored:1,excellent:1,Accrued:17,"Kay-Bee":2,supplemental:1,"Bio-Technology":2,Manigat:2,philanthropic:1,Brahms:2,Lube:2,"Fox-Meyer":2,Mohan:2,salvage:63,Buchwald:2,"male-fertile":1,scorekeepers:4,overhears:20,Jarvik:2,gadgets:4,"more-spontaneous":1,treasuries:4,keep:182,attract:42,Jarvis:2,Haywood:2,drummed:32,Poverty:47,Flemings:74,"char-broiled":1,insecure:1,befoh:6,astoundingly:6,Stookey:2,"ash-blonde":1,Wilhelmina:2,Banners:4,parallel:278,provisionally:6,humiliatingly:6,Sadler:2,"hotel-casinos":4,HEALTHY:1,amid:127,highpriced:1,summing:8,flippantly:6,funniest:51,"fourth-biggest":1,Rouge:2,Rough:3,Midvale:2,reforming:8,glories:18,"agriculture-related":1,resounds:20,Sportin:8,staining:21,Nadelmann:2,Haselhoff:2,"How-2":2,howdy:106,RXDC:2,Reva:2,Shopkorn:2,sob:39,Convinced:17,Blistered:17,McCord:2,Coastline:2,denizens:4,blots:18,diseases:4,"coconut-containing":1,Kosar:2,preconceived:1,whitened:249,diseased:1,linguists:4,Kosan:2,Nameless:2,Online:2,ennumerated:16,Soldatenko:2,"long-hair":1,steelworkers:4,Walden:2,Verfahrenstechnik:2,Unigesco:2,"Three-and-a-half":1,Adding:8,exhilarated:17,leftist:1,Handelsman:2,railed:32,Corpus:2,"Stock-fund":3,Azusa:2,Restrictive:1,Oberlin:2,banning:55,foolishly:6,newly:218,Zeien:2,Signore:2,Inferential:2,Darwen:2,associate:279,"hump-backed":1,unwraps:20,"anti-A":2,"anti-B":2,homologous:6,Signora:280,mastering:8,"too-hearty":1,mononuclear:1,Supervisor:2,Photo:2,notching:8,hyperbolic:1,spendthrifts:4,days:4,Traits:2,wowed:16,"X-rayed":17,"F.B.":2,ayni:4,ecumenists:4,Interviewed:17,lovable:1,"much-discussed":1,Shenandoah:2,"inter-German":1,ASC:2,"fact-finding":3,Insurances:28,Cocoons:4,"five-foot":1,ASA:2,pomological:1,gowns:4,Sweetener:2,malingering:8,"extra-nasty":1,speechwriters:4,Automated:157,embellish:39,Twice:6,Thames:113,Shots:4,postcards:4,Surrey:2,reclining:30,frankly:6,overinvested:17,"up-or-down":1,visages:4,Sputnik:2,hemispherical:1,seminal:1,bridge:70,Christos:2,thistles:4,Barreiro:2,"OCC-member":1,unpopular:1,"Help-wanted":1,"truck-sales":4,Binn:2,Bernini:2,"page-long":1,thoroughly:6,Trends:130,thorough:1,dermal:1,unashamedly:6,Nikitas:2,Economies:4,"court-appointed":1,"cross-bay":1,Schroder:2,erasers:4,impels:20,rancid:1,Promised:1,aggrandizing:8,pardoned:54,"mega-projects":4,overpriced:14,"Anglo-North":1,Tsarevich:2,"U.S.investors":4,Spots:4,musicals:4,Inquirer:2,opinionmakers:4,aspired:16,peddle:42,LOCKHEED:2,prevailed:32,situations:4,sycophantic:1,gouty:1,liquified:1,borrowed:45,Handicapped:2,neoclassical:1,Gunder:2,considerate:1,"dog-eared":1,Weatherly:2,angers:20,bel:64,igneous:1,Mediterranean:40,massifs:4,ailments:4,Medialink:2,wildflowers:4,sharpens:20,skeptically:6,Wolfe:2,Helva:2,Wolff:2,Datson:2,Stolley:2,mus:190,"Corp.:8.725":2,Stoller:2,Pizarro:2,Hilger:2,"G.E.":2,hopefully:6,mum:3,furloughs:4,herding:55,"print-developing":1,deposed:54,Staffordshire:2,"pre-med":1,Zimbabwean:40,portrays:20,CEREAL:2,"four-quarter":1,NASAA:2,Drahuschak:2,Bridgeton:2,"born-to-shop":1,fault:44,Barnum:2,overcooks:20,Pantas:2,"six-day":1,consonantal:1,Gandois:2,spurs:18,"industry-specific":1,interoffice:1,HomeFed:157,Blomfield:2,antiSony:1,Geos:4,TVs:57,"hands-down":1,"foamy-necked":1,inactivate:39,Vendome:2,corteggiamento:64,villains:4,"pre-selected":14,Cutty:2,FEMALES:4,TVX:2,Hockett:2,warehouses:18,sororities:4,zigzags:4,TVS:2,Spencer:2,beneficiary:22,Bering:2,TVA:2,unchanged:1,refuted:32,Adams:2,pecked:16,transatlantic:3,Adame:2,"Geo.":2,moldable:1,Adamo:2,Irretrievably:6,STATES:4,microns:4,Fillmore:2,Deputy:40,"lb-plus":1,Shuiski:2,censors:18,n:281,Herzog:2,YMCA:2,cantles:4,"AIDS-inspired":1,persecutory:1,persecutors:4,"card-carrying":1,accessories:4,dazzled:14,Tela:2,dazzles:20,Microdyne:2,Tell:216,Thacher:2,Handing:8,Abstraction:11,prior:282,forgitful:1,"high-polluting":1,Woodruff:2,beside:206,Chongju:2,Remarks:283,"single-valued":1,Imaginary:40,Clumps:4,Primerica:2,peaks:18,Descending:8,Oley:2,Oleg:2,unyielding:1,Cascading:55,Olea:2,goofed:16,Patterson:2,darned:6,"all-something-or-the-other":1,shortly:6,Muenchmeyer:2,Manager:11,multistage:1,Ethical:2,"Narrow-gauged":1,Utility:11,assembling:55,Estonian:66,"ex-housing":1,grades:4,"less-profitable":1,"gray-thatched":1,Kuwait:2,warping:55,Konstantin:2,Heileman:2,gave:16,Epinalers:28,salacious:1,breaks:18,LEAVING:8,Doolin:2,Skyline:2,descending:8,overcrowding:22,"b-Includes":20,melting:5,Chrysalis:2,renames:20,Shevardnadze:2,Unmarried:1,Echo:2,renamed:54,majored:17,Hakko:2,envision:149,Mosque:11,"M30":2,"Takeover-stock":1,Champagne:11,Pitiful:2,Edinburgh:2,Experienced:17,SCI:2,SCE:2,Gurla:2,Annalee:2,SCA:2,mystified:17,Hiram:2,Spago:2,loins:4,Tradition:47,SCR:2,khaki:1,Huggins:2,plugging:55,Camaro:2,"mark-ups":4,Coincidences:28,Kligman:2,METALS:57,ASDA:2,shuck:39,Courtaulds:2,blabbed:16,plying:8,Renata:2,Strivers:28,Scarface:2,Runnan:2,Florio:2,aber:64,disaffiliate:33,unsalted:1,Keshtmand:2,Environment:11,ahs:106,abed:6,RATES:92,Tewary:2,Islanders:28,warrant:24,transoceanic:1,Hilprecht:2,stuck:45,Brean:2,"mid-October":284,Shiremanstown:2,"data-storing":1,Bread:11,indexers:4,"Heart-measuring":1,Congratulations:75,Periclean:2,automate:39,"pp.":4,pricked:17,overcollected:1,Aviazione:2,deoxyribonucleic:1,Finishing:8,forborne:39,Cauff:2,Loomans:2,"Seventy-six":1,tipsters:4,Mifflin:2,mannequins:4,Dannemiller:2,"U.N.-backed":1,Ohmae:2,nerdy:1,more:285,nerds:4,worshipful:1,cobbled:54,Kunze:2,suspicions:4,Edouard:2,limbic:1,sometime:218,"voter-approved":1,Taylors:28,inborn:1,eerie:1,Panelli:2,outgrew:16,Rinker:2,Cornwall:2,Rouben:2,Ewan:2,beheading:21,"Euro-banners":4,"but...":102,implant:25,papery:1,squeals:4,ROARED:16,Britoil:2,savviest:51,SPERANDEO:2,flushes:20,"V.H.":2,shirkers:4,flushed:54,Woodhaven:2,Forecasters:4,agayne:6,faster:286,"Universal-International":2,vigorously:6,Clifton:2,roomed:16,unchallenged:1,remarked:32,fasten:42,nuclei:4,"item-processing":1,"relation-back":1,Klugt:2,winnings:4,Tsk:106,"Dutch-descended":1,rob:42,Vickstrom:2,deliveries:91,Fuqua:2,Transcontinental:2,Getz:2,Kluge:2,"savings-type":1,functioned:32,Gets:109,rot:25,row:24,inverse:3,"unk-unks":4,"blind-sided":7,"September-October":2,unconcernedly:6,Oesterreichische:2,"R-Cape":2,marrieds:4,"Snap-On":2,Whittlesey:2,Holston:2,frequencies:4,emphasizes:20,Creepers:106,Tsunami:4,Roylott:2,"feel-good":1,emphasized:32,hydraulically:6,"near-majority":1,Danger:11,"Owens-Illinois":2,Accounts:56,Tyndall:2,"Yok.":2,Novo:2,irritates:20,Azcuenaga:2,Braddock:2,Nova:2,thickest:51,widened:32,"double-bladed":1,"video-rental":1,Savory:1,"\\*\\*":287,Feuermann:2,irritated:81,evaporative:1,explictly:6,"psyllium-fortified":1,goes:20,hopscotched:16,Qui:64,jilted:17,"now-legal":1,"Nov.":128,Fragua:2,slaying:21,learn:42,erembal:2,Pebworth:2,Mainz:2,Fischer:2,boast:256,rethink:63,AGENCY:11,"then-Speaker":1,lamps:4,"prudent-man":1,Maine:2,Leet:2,Kress:2,Lees:2,Visiting:229,problematic:1,atrocious:1,wreak:39,Ohioans:28,Kresa:2,civilizations:4,Jerky:2,bulbs:4,Sienkiewicz:2,chimps:4,variously:6,Nikon:2,Appel:2,prey:24,meanes:4,prep:3,today:168,plug:24,Westamerica:11,Pellegrini:2,cased:16,fuel:24,"higher-than-normal":1,Manningham:2,BUFFALO:2,Lavidge:2,depressants:4,"family-owned":1,posthumous:1,inveterate:1,dthat:127,Vesco:2,Bergsma:2,hitmakers:4,address:24,Kanon:2,figure:288,adherent:3,Hutchings:2,Encino:2,unloads:20,McDowell:2,"air-cell":1,Dilys:2,Concerning:8,"middle-range":1,"medium-to-long-range":1,Tarwhine:2,"night-vision":3,fourth:97,Demand:169,"deep-pocketed":1,"generic-drug":22,digesting:8,Coproduction:2,trickling:8,unificationists:4,representations:4,eighth:3,Exclusive:1,Gomez:2,Cardin:2,Soup:11,pastilles:4,Newport:11,Behague:2,Ratner:2,statisticians:4,Unruh:2,DOORS:4,dreading:8,farmed:187,stanchest:51,Rules:130,cathodoluminescent:1,"non-confrontational":1,Wesley:2,Everywhere:6,pervade:33,Matamoras:2,leggy:1,Ruled:17,Wildlife:11,nomads:4,Harmonizing:2,Koenigsberg:2,"non-recessionary":1,"top-four":1,Nobuto:2,Ultimate:40,Ornelas:2,inheriting:8,invents:20,"argues...":102,Monsky:2,"community-based":1,"all-New":2,ordain:39,farewell:235,Petersburg:2,Poag:2,Eugenia:2,intended:45,UGI:2,"computer-market":1,concur:149,precooked:17,sha:190,tensions:4,prophesized:16,UGF:2,abounding:8,Timpanogos:2,"with-but-after":1,Throw:216,monopolized:32,"one-owner":1,Gregoire:2,Economizers:4,"nuclear-weapons-sites":4,"dyed-in-the-wool":1,TECHNOLOGIES:2,minted:17,drilled:54,Bock:2,Battery:11,"then-Secretary":2,Boca:2,Virgins:28,Gringo:47,Holler:2,outbreaks:4,mortars:4,Longview:2,Holley:2,"Ah-ah":106,"long-troubled":1,"Hyde-to-Jekyll":1,parasols:4,handled:54,Chernishev:2,unattainable:3,dissolutions:4,squashed:7,"in-state":1,Lido:2,spurned:45,"native-born":1,prayers:4,"less-than-robust":1,Contras:41,DGII:2,arousing:8,"seller-financed":1,Aurelius:2,"international-share":1,Lids:4,Netty:2,Bruckheimer:2,Kaufhof:2,stylized:7,"SE\\/30":2,Netto:2,grunt:63,"strange-sounding":1,"prior-approval":1,Garment:2,"barrels-a-day":1,Yoshiyuki:2,cards:4,Thelma:2,Bakeries:2,BPC:2,BPB:2,overfill:39,Grange:2,Attraction:2,stiffest:51,Navona:2,exchanging:8,ADR:2,batting:55,ADS:289,Karlis:2,subsystems:4,"```":25,Lemmon:2,Hotelecopy:2,Topeka:2,sciences:4,"jade-handled":1,Sauternes:74,Jachmann:2,Londono:2,commonplace:3,"Korean-American":66,Barnaba:2,Good:290,wireless:1,annum:80,Geduld:2,proud:1,pores:18,Abreast:2,pored:32,Gesamtkunstwerke:64,"pop-out":1,drastically:6,Anglophilia:2,antitakeover:12,cheat:42,Kanjorski:2,allegations:4,Research:11,spaces:4,Opposed:17,Bundesbank:2,inshore:97,painlessly:6,trot:25,Publishers:41,Confer:2,believing:8,Mimi:2,Overtega:2,Louis:2,Annual:66,broadest:51,Europalia:2,Kennametal:2,Lashof:2,Colombatto:2,cylinders:4,heisted:16,cautionary:1,burlesque:1,Doherty:2,"high-backed":1,contrivances:4,Goethe:2,Salim:2,Gouldoid:1,jokes:18,Geoff:2,predicted:85,"E.W.":2,Dagens:2,Plympton:2,Conquest:2,Lamphere:2,"oil-depletion":1,"Off-Road":2,signs:18,Jaffray:2,Conus:2,Dickie:2,Bits:4,Chicagoans:65,Chestnut:11,Tardily:6,subcompact:22,Hamish:2,Bouncing:2,Loose:40,commitments:4,"Vitro-Anchor":2,Galipault:2,"anti-apartheid":3,Breuer:2,Harperner:2,saucy:1,"three-step":3,Seiders:2,"freight-forwarding":1,harshly:6,Westerly:2,Tolstoy:11,tantalizingly:6,"ISC\\/Bunker":2,quiet:104,jillions:4,Krat:2,Genetics:74,Travel:128,"staff...":102,insist:149,Durning:2,"ECU-denominated":1,"sugar-producing":1,Numerous:1,"debt-service":3,Courant:2,turkey:22,subscribed:291,"lower-value":12,Meeker:2,Edsel:2,subscribes:20,Modest:1,"ASHTON-TATE":2,peaking:55,"vulture-like":1,Aer:2,exasperate:39,CAAC:2,surreptitiously:6,Spilman:2,"Hartfield-Zodys":2,roaringest:51,TRANSPLANT:2,case:25,Aeronautics:2,"multiple-purpose":1,Stetson:2,Intertech:2,cash:25,fiercer:12,cast:292,Conversion:11,Laurel:2,abducted:160,Lauren:2,antisocial:1,clefts:4,Dionysian:1,duplicating:8,"flat-bed":3,ironic:1,impaled:17,refiners:4,"four-wheel":1,Characteristically:6,hustlers:4,Germanys:57,revolutions:4,MarCor:2,Frenchmen:65,Swiftly:6,injurious:1,Jacuzzi:11,FileNet:2,manila:1,Lasswitz:2,frequented:32,fended:32,Aphrodite:2,"even-handed":1,Antone:2,Antoni:2,"first-half":3,"one-by-one":1,epidemiological:1,FIDELITY:2,Antony:2,"British-French-Israeli":1,Psychoanalytic:2,Failures:4,bodied:1,Zirbel:2,delectable:1,Pure:40,delectably:6,"influence-peddling":22,bodies:18,justify:42,Pink:129,Bokat:2,Yakkety:2,splices:20,Barrios:2,Pina:2,Pine:2,spliced:17,cease:42,polish:63,Decorators:2,Municipal:117,FDIC:2,feminist:3,Missile:2,Tamotsu:2,ditties:4,Bosworth:2,Bonnierforetagen:2,"assets*":4,Clairton:2,"half-states":4,"co-ordinates":20,"the...":102,Motorfair:2,"Af-stage":1,Accompanied:17,"U.N.":129,Kasen:2,acute:3,coursed:17,"eight-piece":1,Old:40,towed:32,footballs:4,Enhancement:2,Ludden:2,snatches:18,"quick-service":1,Master:11,Muynak:2,snatched:32,"arms-reduction":22,Struggling:8,animalcare:1,swaps:4,tricks:18,Cater:2,Tettamanti:2,Mercifully:6,"penny-pinching":1,Harmas:2,cringing:30,slaughter:78,Forsyth:2,lifeboats:4,"five-consecutive":1,treadmills:4,fillings:4,Genesee:2,"thin-soled":1,whence:293,Celine:2,Amherst:2,Broder:2,Anand:2,nods:72,Toseland:2,Cumulative:66,warbling:8,Hosomi:2,engendered:54,rising:267,"anti-Nazis":28,Postmaster:2,"vine-shaded":1,whales:4,Norma:2,cultured:7,Clorets:2,Norms:4,cultures:4,Veltri:2,Arcadipane:2,"livestock-dealing":1,Tunis:2,Permit:39,"triple-C":117,"triple-B":1,"triple-A":117,Turben:2,"travelogue-like":1,competitve:1,Boksen:2,incise:39,Subaru:2,"de-inking":1,"closely-held":1,Ambigua:2,"triple-a":1,Ringler:2,Constructors:28,autoimmune:1,Biederman:2,outgrip:39,Knightsbridge:2,scotches:4,Fabrri:2,deserve:149,Eternal:2,Dart:2,Dark:40,Darn:39,"seven-stories":1,"Lesch-Nyhan":2,Panhandle:59,"line-drawing":1,Dare:39,Pulitzer:2,mummies:4,releasing:8,Jaguar:11,"T.R.":2,uncorked:32,Foundry:2,Dashitchev:2,fiberglas:4,bullets:4,Dragon:2,finals:4,"land-locked":1,Satisfactory:1,"Forty-third":1,"anti-plaque":1,Cuban:66,directors:4,Presbyterians:28,directory:22,numbing:1,Maple:129,crumpled:103,tarry:39,Lubowski:2,Riggs:2,Hendrik:2,generalize:42,barons:4,Certificates:56,cementing:8,decisions:4,Subsequently:150,weightings:4,subsided:32,Kurlak:2,Frequently:150,subsides:72,Angus:2,treating:8,Silber:2,Steptoe:2,RUSSIANS:4,Dickey:2,nahce:1,Ress:2,clinched:16,Rest:216,occurs:20,singularly:6,Stitched:17,Dickel:2,renouncing:8,clinches:4,Milbauer:2,employing:8,"uh-huh":106,Willow:2,Ease:39,Hennefeld:2,Kasten:2,Ilka:2,Kaster:2,"granular-type":1,Easy:294,Flameco:2,East:295,Ionizing:8,sue:42,sub:80,sun:25,sum:25,Naturals:111,Disposti:2,sur:64,sup:39,skippering:8,Straights:4,"low-cal":1,Kodansha:2,Barba:2,toes:4,"AIDS-research":1,"autumn-touched":1,Fonstein:2,"Chardonnay-sipping":1,Ginza:47,Gloves:2,Glover:2,equations:4,"bacteria-contaminated":1,underhanded:1,"high-school":22,dues:4,Mathewson:2,"Biondi-Santi":2,"better-remembered":1,"student-led":1,tramping:8,poignantly:6,"arms-control":22,"fee-per-case":1,airlifting:8,Providence:11,Louisville:2,enlivened:17,loping:8,Intermarco:2,rustic:1,"vote-diluting":1,"radar-type":1,Richeson:2,Harlin:2,horses:4,Theodosian:1,antibiotics:4,aerialists:4,hissed:16,Trupins:28,"five-member":1,Laplace:2,Alberding:2,Wheeland:2,Libyan:10,Showbiz:2,Captures:2,Gecker:2,Cozying:8,ineffectual:1,Apropos:6,absently:6,Indefinite:1,Captured:17,"technical-services":4,Willenson:2,duets:4,Duffey:2,"asset-rich":1,Interco:2,Thompson:2,Democratique:2,"third-generation":1,ostentatiously:6,terrestrial:1,"grey-haired":1,Cashin:2,liveried:1,Cannon:2,irrigate:39,untied:16,occasionally:6,Boseki:2,antebellum:1,Lobo:2,biophysics:4,adventure:25,concentrating:8,Ceremonial:2,Belgrade:2,"Single-A-3":1,"Single-A-2":1,meticulous:1,"stock-optioned":1,untenable:1,Armen:2,"fish-export":1,Armed:98,PPI:2,Yenakiyevo:2,SAINT:2,Bottom:129,"Carr-Lowrey":2,Alsop:2,Tessie:2,Same:1,Ravitz:2,Lorrain:2,Alson:2,"Arab-sponsored":1,Relational:2,Cigarette:47,Roach:2,unitary:1,Daolet:2,transfers:18,generously:6,Err:39,Trimmer:2,countercharged:16,Era:11,Haack:2,countercharges:4,"U.S.-grown":1,instructions:4,intolerably:6,Longue:2,"Hands-on":1,Danes:41,sequester:44,accommodates:20,permanant:1,"Western-owned":1,Ready:66,accommodated:17,transportable:1,intolerable:1,erratic:1,intactible:1,Bede:2,Fabric:47,Kitada:2,oppressed:103,Butcher:2,loopy:1,Simat:2,mainframes:4,loops:18,atonal:1,oppresses:20,kotowaza:64,"Abitibi-Price":2,firsts:4,telltale:3,Vikes:28,"anti-depressant":3,hydraulic:1,compounding:55,Samoilov:2,Bryce:2,roofs:4,"side-effects":4,"management-incentive":1,Opinion:11,"shut-off":1,"Germans.":4,bourgeoisie:296,Tempter:2,"less-than-amicable":1,prejudice:25,Guardian:2,Bland:1,Blanc:2,Vietor:2,Ponder:33,shrewish:1,seeming:13,vellum:1,Connelly:2,Indian:40,Axel:2,distributive:1,earthworms:4,scathing:1,Dictionary:11,talismanic:1,Durmoy:2,leading:297,"Castro-Medellin":2,"polyether-type":1,Voicetek:2,"sub-freezing":1,"market-ready":1,"often-criticized":1,VIACOM:2,Danske:2,"second-class":1,Hawker:2,Hawkes:2,store:44,temptations:4,Bevel:39,Dangerous:66,retinal:1,"off-putting":1,Bozic:2,"five-course":1,shrunken:7,kind:168,"Munich-based":1,weatherproof:1,Semmelman:2,Chickasaws:28,Transol:2,"cut-price":1,multibillion:1,Gladiator:2,Questioned:17,tongues:4,Ballet:11,skyscrapers:4,Giampiero:2,shrewd:1,Marmalstein:2,tongued:187,Westport:2,Telegraphie:2,Cid:2,Caccappolo:2,Frabotta:2,Moreland:2,"DJS-Inverness":2,"single-sex":1,conforming:8,humanize:39,establshed:17,genetically:6,Perna:2,Levenson:2,gild:39,Equal:40,architects:4,rarefied:17,Pedott:2,probabilistic:1,farmhouses:4,dealers:4,Gaither:2,acclaims:20,lying:55,vaunted:7,safeguarding:8,grandmas:4,Dolores:113,Suits:57,inflexible:1,Suite:47,Lowenthal:2,piezoelectric:1,Affordable:40,Lacking:8,suburbanized:17,Epsilon:2,"China-investment":1,"yet-to-be-formed":1,Stratas:2,incapacitating:1,founding:27,invoke:39,ungrateful:1,"mortgage-backed":1,"H.J.":2,knighted:17,reprint:39,"Uno-Ven":2,Evren:2,syringes:4,Knorr:2,"tree-huggers":4,prescribing:8,McCoy:2,revenues:4,engraved:14,wrote:16,Whitehead:2,excellences:4,"rent-subsidized":1,procrastinated:16,visualize:39,axially:6,"worst-marked":1,surmounted:32,ups:4,Mmmm:106,Quell:2,Fogelson:2,Hsu:2,Costanza:2,obscenities:4,solo:298,ushered:32,franchises:18,Manual:66,confiscated:54,Workplace:47,franchised:14,Steinmetz:2,oversee:39,shorthanded:1,Aspercreme:2,Apollonian:1,"cancer-susceptible":1,"much-respected":1,nettled:32,"Ex-Cub":1,"drug-interdiction":22,"export-control":3,Snowmass:2,Skala:2,Metcalf:2,Lovie:106,Ibrahim:2,Yoorick:2,Cement:2,Caitlin:2,Fueled:17,Edelmann:2,Tightened:1,Pediatricians:4,"cone-sphere":1,Coeditors:4,isolationistic:1,Sunay:2,institutionalized:14,"commodity-options":4,Marcile:2,"proxy-solicitation":1,unswagged:1,precision:22,Corinth:2,rescissions:4,notables:4,"up-tight":1,Guccione:2,GoldCard:2,workmen:4,guarding:8,indefinitely:6,Leponex:2,"Fifty-fifth":2,Fabrics:130,kick:44,Aikin:2,Forwarding:2,unaccompanied:1,"blue-blood":1,Lurgi:2,"important-looking":1,Vernitron:11,laundered:54,Advancers:4,"Chicago-based":1,sachems:4,badgering:8,HUNGARY:2,shirk:39,daughters:4,higher:299,sell:50,GOOD:1,Escorts:4,Ranch:11,demarcated:17,restrains:20,Crossing:8,Triangle:11,Solana:2,Fitzgibbon:2,Qureshey:2,try:95,magnified:54,destabilizing:30,Norsemen:28,extorted:16,magnifies:20,self:300,Liberalism:47,"acquisition-minded":1,Fitts:2,prorata:64,"large-area":1,prorate:39,"Anti-nuclear":1,Dragoumis:2,Wonderful:1,Playground:2,comprehensively:6,"blank-faced":1,Ovonic:2,Groff:2,summaries:4,meanest:51,Jackpot:2,Ironically:150,Marulanda:2,Nokia:2,"comedy\\":1,Pompano:2,Shores:2,Chadli:2,difficile:64,jostle:149,Ammann:2,Sain:2,Injection:11,vetoing:8,Hilder:2,Naumberg:2,Artois:2,Enzor:2,Sail:2,Thou:53,advocate:44,bemoan:39,Kurtanjek:2,Thor:2,Thom:2,Nakhamkin:2,Foliage:47,macromolecular:1,Revising:8,"Uniroyal\\":2,skeptical:1,confront:42,phosphors:4,separately:6,deleterious:1,Cady:2,Bishopsgate:2,DALKON:2,"new-model":3,"policy-makers":4,disinclined:14,Matsunaga:2,Roustabouts:28,hurriedly:6,Prosecutor:2,"Sony\\/Columbia":2,LATE:301,Klimt:2,Gewirtz:2,Parvenu:2,"Sunday-newspaper":2,Nishi:2,"stock-manipulation":22,"jumped-up":1,Uspensky:2,perpendicular:1,refused:32,Bikers:4,refuses:20,Peiping:2,asserting:8,bristling:30,raucous:1,violins:4,lifeless:1,Bolshevism:2,"Voyagers.":28,Keizer:2,Defrost:39,youthful:1,calloused:1,CONFIRMED:16,Andersen:2,"re-engineered":32,Moffett:2,tappets:4,Arbogast:2,BioScience:2,Minster:2,flagellated:17,strumming:8,impressed:48,acquiesce:39,lone:1,handles:72,long:302,Microcom:11,"Torrid-Breeze":2,impresses:20,etch:39,EAST:303,Appaloosas:28,authored:17,audacious:1,monomers:4,Barth:2,anesthetics:4,Elizario:2,"anti-clericalism":1,fulfilling:8,Wesleyan:2,Barbera:2,bankrolling:8,"price-sensitive":1,"co-managing":13,fluctuations:4,"etc.":147,Bankhaus:2,fiscally:6,Saxony:2,Gerold:2,"water-cooled":1,Nazia:2,Attack:11,reservoirs:4,whitewashing:8,rally:24,rained:32,Nazis:41,Cunard:2,"leadership...":102,toeholds:4,camcorders:4,Jorge:2,"Price-boosting":1,"one-on-one":97,Personally:6,Prefecture:2,Colts:2,Coupons:4,nice:1,Audit:2,Hackmann:2,"private-placement":3,smitten:17,cityscapes:4,bonding:55,ROK:2,allowing:8,Audio:2,Saupiquet:2,relaunch:39,HHS:2,Asher:2,Curling:2,Edna:2,amusements:4,Turned:17,departments:4,Rubinstein:2,"Afro-Asian":2,Boisvert:2,Kinney:2,safekeep:39,Turner:2,buffalo:19,Wheelan:2,Based:231,Basel:2,Oremland:2,Foret:2,Lattice:2,Braverman:2,discordant:1,uphold:42,Shippings:4,inbreeding:55,graybeards:4,Govett:2,Morphophonemic:1,Axxess:2,languages:18,repackage:39,careened:16,blended:103,include:304,Takahashi:2,Matagorda:2,Killen:2,accommodations:4,"currency-exchange":1,Topaz:2,Reaffirming:8,Oresme:2,skivvies:4,Chesterfield:2,Bruckmann:2,"socio-political":1,disclaimed:16,leveled:32,Taurida:2,Riverwalk:2,Dyazide:2,Telecommunications:41,Euzhan:2,concluded:32,"non-fiction":3,Wames:2,Nocturne:2,Kerrey:2,wrestling:55,"electronic-transaction":1,bedpans:4,acid:22,"Cash-heavy":1,Shanyun:2,Baches:28,bibliophiles:4,Governors:130,disentangle:39,bearish:1,Coherent:2,McElvaney:2,"well-traveled":1,chose:16,Seton:2,Grovers:2,wraps:72,Apostles:28,explore:42,Yun:2,insubordinate:1,Belvieu:2,"Checchi-Skinner":2,settling:55,Goodis:2,Arvey:2,"blue-glazed":1,Christmastime:2,"operating-system":3,suggests:20,Cheshire:2,Palm:11,Pall:11,Palo:2,Phosphates:2,"pre-academic":1,Pale:305,"pro-Hearst":1,Staffers:4,saltier:12,Ships:4,hardy:1,doubtfully:6,Froissart:2,Wiseman:2,from:245,Neurex:2,procrastinate:39,underscoring:8,DEMOCRATS:4,circuitous:1,"rapid-fire":1,auxiliaries:4,removable:1,Gun:11,Wheaton:2,Landfill:47,Sequoia:11,Kondratas:2,Guy:2,Netsch:2,Affair:11,Aghazadeh:2,"fifth-best":1,accrues:20,recessionary:1,Calvi:2,Comsat:2,hookups:4,accrued:14,Tartaglia:2,Edmund:2,Farnese:2,thirsty:1,nonverbal:1,"re-set":39,"L&N":2,assumptions:4,Reorganizing:8,Australian:66,counting:55,"then-rampant":1,cliches:4,Toshiichi:2,sidewalks:4,"Large-package":1,Garments:4,Concocts:20,secular:1,cliched:1,Mambelli:2,ceasing:8,detests:20,Pockets:4,Ruwe:2,Puhl:2,Outdoor:66,hum:25,budge:39,Sonenberg:2,civics:4,villas:4,Kings:74,Liriano:2,"Sino-foreign":1,Craton:2,perishing:8,sanctioned:17,Interference:2,interpreted:54,strove:16,Tortoriello:2,Mitre:2,Markese:2,"late-1988":1,dismaying:1,Fairly:6,neighborly:1,Lublin:2,crowds:219,Admassy:2,Tickets:4,Ibn:2,undoing:21,impressing:8,Deloris:2,REPORTS:4,abstractive:1,clippings:4,measly:1,edit:39,enviable:1,redwoods:4,"three-wood":1,Bucky:2,"computer-operated":1,Eliminating:8,pleasures:4,Bucks:2,treads:20,Preferences:130,floutingly:6,Venezuelans:28,Nihon:2,"deals...":102,"double-wing":1,whipsawed:17,"senior-subordinated":1,ambassadors:4,"say-great":1,KAISER:2,honorably:6,"Civ.":2,Waikoloa:2,Canseco:2,delivre:39,Weisberg:2,Brokerage:47,"M.I.T.-trained":1,Unique:1,Cartoon:47,Sequent:2,Ednee:2,Mattis:2,pours:20,SUPREME:2,"up-scale":1,Mattie:2,Stupid:1,Beige:2,Mattia:2,Paganini:4,organic:1,crashed:85,"bioequivalence-therapeutic-equivalence":1,footnoted:17,loggerheads:4,"Renaissance-style":1,regaining:8,hence:6,footnotes:4,Regionally:6,"self-enclosed":1,Belfast:2,Lufkin:2,eleventh:1,Electrical:40,"J.G.":2,"two-wheel-drive":1,assailing:8,"end-of-year":1,unknown:3,Waving:8,"glide-bombed":16,misunderstood:54,Nibelungenlied:2,Lencioni:2,consoling:8,Mixtec:1,"well-organized":1,Intolerable:1,Denrees:2,bashed:32,colas:4,Quebecers:28,Ellison:2,"War-era":2,househld:1,Cozumel:2,creditors:4,Diego:40,"co-written":17,Keogh:2,teenagers:4,"thrift-rescue":3,"small-stock":22,delineated:17,gloomily:6,convenants:4,declasse:1,Howsam:2,"lightning-like":1,marginalizing:8,boastful:1,Dock:2,trespassing:21,Angrist:2,Johansen:2,misplacing:8,"law-based":1,Gorenstein:2,Moines:2,twittering:8,mavens:4,Dorsten:2,agglutinins:4,"Agnelli-related":1,"GM-Toyota":1,why:293,Lindsay:2,JPI:2,Huskins:2,ensues:20,oscillated:16,Actress:2,ensued:32,Everybody:47,Whose:306,balding:13,pleases:20,Shima:2,chapters:4,Klamath:2,Chemical:129,unwinding:21,convertibles:4,utter:240,pleased:81,"earthquake-proof":1,SUPERPOWERS:28,"post-modern":1,Gramercy:2,Dickson:2,Tanganika:2,he:307,widegrip:1,indignant:1,skimp:39,skims:20,"Clayton-Pedersen":2,Enright:2,GPA:2,"growth-and-income":1,Beaman:2,cubs:4,coordinating:55,Holman:2,Plastics:92,Ambushes:4,Spinning:8,paternalism:22,"Stalinist-corrupted":1,"union-busting":1,Halsey:2,editorialize:39,"half-million":1,"go-go":1,Ungava:2,Relocation:2,"bust-up":1,honorariums:4,multipart:1,Cartusciello:2,Bosses:4,confrontational:1,despoiled:17,endothermic:1,sparsely:6,penetrations:4,credentialized:1,monstrous:1,"candidate-picking":1,multifaceted:1,wetting:55,limit:44,defacing:8,Diagnoses:28,Gordin:2,horrifyingly:6,Democrat:11,Subway:11,Machiavellian:1,Donnelly:2,valiantly:6,april:2,Sustaining:8,Dealer:11,grounds:18,Expos:28,Kuhlman:2,Staffe:2,"Indianapolis-based":1,symphonies:4,Staffs:4,"Abd-al-Aziz":2,"advertising-backed":1,Sternberg:2,Postwar:6,decent:1,Campestre:2,responds:20,"short-circuited":32,lipsticks:4,Toronto:11,harshest:51,"talk-show":22,Westmin:2,Face:31,"boozed-out":1,McGruder:2,"Junk-holders":4,"follow-ups":4,"Sept.":129,"leaded-glass":1,"Not-held":1,stunning:1,"black-eyed":1,medicinal:3,Doraville:2,Knappertsbusch:2,unworkable:1,"lower-than-anticipated":1,draining:55,lonely:1,Marchand:2,lightweight:3,disinterred:17,Rimini:2,"over-price":39,Culver:2,maddening:13,temptingly:6,lyricists:4,burnouts:4,Doobie:2,disagree:149,Fungi:2,Quickening:8,overcrowded:7,recriminations:4,picayune:1,Rauschenberg:2,Loosli:2,"fur-and-leather":1,warming:308,Houston:40,Meaney:2,enamored:1,conquer:42,Ruppert:2,"re-incorporated":17,cameo:22,accosting:8,Balmain:2,"off-off":1,Strawbridge:2,Eshleman:2,Liebler:2,pythons:4,Burkhardt:2,Crumley:2,guts:4,"trade-ethnic":1,Quotron:11,Glasses:4,Pearson:2,provisions:4,Homeowners:113,term:44,"single-handed":1,Components:74,catchers:4,redesign:25,Gabe:2,Portago:2,"largest-selling":1,CAMBREX:2,Vila:2,KVA:2,"gilt-edged":1,perpetual:1,"housing-assistance":1,Treece:2,Frosted:2,Interfinance:2,overtures:4,feigned:7,hosts:18,"glass-fiber":1,"anti-cholesterol":1,exceed:42,smoothly:6,contemporaneous:1,Zukin:2,misadventures:4,Biblical:66,Wildbad:2,Himebaugh:2,Tussard:2,Korobytsin:2,Heartwise:2,"physician-executive":1,pasty:3,"across-the-board":34,Newall:2,Dollars:65,Ehman:2,Bingles:4,fords:4,Bingley:2,paste:25,"calcium-supplemented":1,Jurists:2,rare:1,carried:32,Dufresne:2,"goat-drawn":1,"then-Air":309,Carr:2,Kreutzer:2,"construction-oriented":1,outstripped:310,Cigna:2,Angelica:87,"half-heartedly":1,WTXF:2,polished:81,Gorton:2,gymnastic:1,"Gene-Spliced":1,Angelico:2,polishes:4,lawful:1,Penman:2,Honeybee:2,AWOC:2,Schuler:2,Feeding:2,Finance:11,crave:149,suburbs:4,Capetown:2,Transcaucasus:2,spiral:25,RAAF:2,captains:4,Hartigan:2,Execution:11,Leveraged:7,Greasy:1,automates:20,Davison:2,nourish:39,"Galophone-Prissy":2,indigents:4,DEFICIT:2,Witcher:2,defamed:54,"administration...":102,protesting:8,"FCB\\/Leber":2,Tawney:2,Britain:2,unasterisked:1,"Hi-Country":2,"CAE-Link":2,monastic:1,bewail:39,horrific:1,"Illinois-based":1,overhauled:54,maroon:1,Geometric:40,monopolists:4,Haskin:2,"multi-spired":1,overprotected:17,"hurricane-prone":1,Elsinore:2,coffees:4,Raful:2,kinds:4,Lionville:2,pumps:4,Karim:2,Karin:2,"Acme-Cleveland":2,"market-related":1,Siti:2,auxiliary:3,Surviving:116,adaptable:1,Bellas:2,Sitz:2,tulips:4,"pistol-whipped":16,impersonalized:1,Campuses:4,tormenting:8,Elevated:2,Sugar:11,plaudits:4,Thriving:1,Seekonk:2,Thrive:33,"third-biggest":1,"little-noted":1,Casey:2,fingernails:4,Cases:4,Winooski:2,Regionalism:2,illegally:6,shielding:21,IXL:2,Eiszner:2,TAINTS:20,"Super-NOW":2,Waikikians:28,antianemia:1,"Single-seeded":1,Tierno:2,tensile:1,disburden:39,"then-Minister":1,Whisper:2,debuting:8,parsympathetic:1,"B.A.":2,"world-oriented":1,Gressette:2,crisply:6,Hockey:2,Merlis:2,milled:1,SIZING:2,admire:42,"machine-masters":4,dangled:32,unlisted:7,Georgene:2,Verner:2,dangles:20,Arighi:2,negated:54,increasing:5,pictorially:6,Neville:2,Sioux:74,PROCTER:2,"russet-colored":1,Budget:11,Longer:12,Stuttgart:2,"eight-acre":1,Amtech:2,Foremost:150,Yuko:2,Yuki:2,borrowers:4,"fast-developing":1,Allenport:2,hollyhocks:4,NOC:2,"grade-school":1,"yet...":102,CONSERVATIVES:4,NOW:150,NOP:47,burrow:25,Cheered:17,Quincy:2,"previous-year":1,"high-current":1,Jennings:2,besets:20,explained:32,Hallingby:2,Savoyards:2,Irishmen:65,spoke:250,"re-emphasize":42,Scheherazade:2,overshadow:149,glimmering:8,Anticipated:14,"play-it-safe":1,Corning:116,heralded:54,Sassy:40,Brainards:28,Bioengineers:4,Brighton:2,segregationist:22,mired:14,successful:1,"greenhouse-effect":1,officio:64,hurt:311,naczelnik:64,Genossenschaftsbank:2,goddammit:106,straddle:39,Luna:2,vow:78,Lung:11,Gogol:2,"lower-wage":1,Lund:2,"better-paying":1,Mystery:47,unstuffy:39,droppable:1,household:22,Celso:2,Insulate:39,Reality:47,"Smith-Colmer":2,reprove:39,rescue:25,preferably:6,Eagle:2,"Wheaties-box":1,complaining:8,Atop:127,damage:24,Killing:268,Jussel:2,preferable:1,Caldor:2,Alcatel:2,swing:205,"anti-flag-burning":1,Matlock:2,calves:4,wins:72,attracts:20,Tiant:2,signatories:4,wink:25,Haskell:2,keeps:72,Manitoba:2,PNC:2,Petruchka:2,wing:78,wind:24,"heavily-upholstered":1,Lohmans:2,Requirements:4,"money-retirees":4,"ARAL-88":2,"C.B.":2,"west-central":1,handcuff:33,"lower-cost":200,affect:95,soothingly:6,Kearns:2,rankings:4,"un-Swiss":1,Kearny:2,narrowest:51,Harris:2,Prohibited:2,endeavoring:8,Shattuck:2,woods:4,universalistic:1,Christiansen:2,"exploding-wire":1,commemorate:42,captioned:16,MRI:2,Robbery:2,Cards:312,Robbers:4,MRA:2,MRC:2,represents:20,"China-bound":1,Hilkert:2,"chamber-music":1,queues:4,dumps:72,clothed:17,Branford:2,Bonnier:2,Hoogli:2,Mouse:11,queued:1,preceded:32,typifies:20,financial:1,Dortmund:2,bowls:18,"mule-drawn":1,precedes:20,Grauman:2,urbane:1,Stillwater:2,Tarheelia:2,Hellisen:2,Awkwardly:6,rented:81,Colorcoat:2,Swasey:2,Systematically:6,"last-gasp":1,Karre:2,fugitive:3,sensory:1,assures:20,Nutmeg:2,Singletary:2,sensors:4,Poltrack:2,Raphael:2,Hord:2,"tsunami-warning":1,Hori:2,typified:54,Dubilier:2,obsolescent:1,Horn:11,waddles:20,Human:129,clothes:4,Please:313,shopped:54,Turpin:2,Canion:2,outstandingly:6,Skyway:2,dogmas:19,postulate:39,legs:4,persecute:33,"oil-patch":3,Atmospheric:2,collapse:25,fibrous:1,snooty:1,"Precious-metals":152,Named:17,Outrunning:8,Bertoia:2,Chernobyl:2,Plummer:2,PHOENIX:2,endure:42,"warm-toned":1,bodyguards:4,recheck:33,Computerworld:2,Varvara:2,groaning:8,PLC:2,Keeping:229,"demand-related":1,Fraud:11,Gursel:2,overregulated:7,Haussmann:2,rechartering:8,Crotale:1,Bans:2,responsible:1,Northlich:2,Tastes:65,condensers:4,metallic:1,Bane:11,Band:11,Bang:2,causing:55,defiantly:6,Banc:2,alai:64,Bani:2,Bank:128,"Marrow-Tech":2,"Anglo\\/Dutch":2,Emboldened:7,gloaters:4,looming:55,"deficit-inflation-capital-flight":1,"well-fortified":1,Logic:11,retaining:8,conclaves:4,antitrust:3,Kingston:2,detectors:4,"rerun-sales":4,alas:106,braying:1,"suspicions...":102,Ashmolean:2,bomb:25,"pro-enterprise":1,Sawallisch:2,advisors:4,parolees:4,Cinalli:2,undefined:1,regiments:4,gauge:25,"five-week":1,Meyner:2,capes:4,"rock-hard":1,copy:24,"crisis-management":3,"adoption-assistance":1,buxom:1,"breath-taking":3,Beulah:2,Evry:2,mend:39,telegrams:18,Belated:1,"quasi-religious":1,"bank-branch":1,lenders:4,Pointing:8,requalify:39,"slow-scrambling":1,IQ:2,lurched:16,Purified:17,Nett:2,Clearly:150,"two-mile":1,traverse:39,leasing:308,conservatories:4,Tenney:2,Velveeta:2,Liebowitz:2,"natural-gas":22,nocturnal:1,best:314,stealthy:1,killable:1,planoconcave:1,Courts:41,conceptual:1,Cage:2,"boom-boxes":4,"donut-sales":1,claws:4,screwball:3,felons:4,aesthetic:3,"non-daily":1,Mechanix:2,"two-sevenths":4,Trohan:2,drew:16,"wrap-around":1,Malabar:2,Stiemerling:2,violators:4,PSA:2,adventures:4,PSE:2,Demented:1,estates:4,"PS\\":254,quests:4,adapted:54,polycrystalline:1,irresponsible:3,"higher-rate":1,Sawicki:2,SAFEWAY:2,irresponsibly:6,linguistically:6,Weyerhauser:2,"non-professionals":4,"eased...":102,Skyros:2,corrugations:4,"anti-psychotic":1,"D.,Calif":2,breakoff:1,"risk-capital":1,quadripartite:1,tutorials:4,Luneburg:2,incompetent:1,life:163,"Board-traded":1,hospitalized:14,"cash-equivalent":1,Poland:2,Fergus:2,"similar-sounding":1,Concrete:40,lift:182,regaled:32,Investigating:8,chili:19,"self-destructed":16,"modern-day":1,chill:70,unsold:1,adaptations:4,sanctorum:64,Kippur:2,"never-predictable":1,picturing:55,Potsdam:2,"Y-cells":4,Slyke:2,actuated:17,electromagnets:4,"Sure-sure":1,schoolbooks:4,Grafin:2,Grafil:2,buckles:4,Lehtinen:2,accouterments:4,Doronfeld:2,impaling:8,Barataria:2,swarthy:1,babies:4,nonphysical:1,Appleby:2,Taper:2,Ranieri:2,wholewheat:1,Biggio:2,Taped:17,Peking:2,stiffs:4,pioneers:4,wives:4,"J.J.":2,RJR:2,stupendous:1,ventricles:4,"hair-growing":1,subpoena:315,spearheading:8,juridical:1,misrepresents:20,fittest:51,halfhearted:1,adagios:4,"British-American":40,Buxtehude:2,"high-rated":1,forsaken:17,forsakes:20,"life-saving":1,deductable:1,ungovernable:1,"agricultural-research":1,Geertz:2,"HUD-related":1,"ground-floor":1,irradiated:14,Ligne:2,Halebian:2,Waltham:2,thickening:8,Framework:2,collections:4,delinquents:4,Marrill:2,contribued:16,"self-inflicted":1,ON:223,Aeneid:2,Oceana:2,massively:6,Taksim:2,Braving:8,articulated:17,tapering:8,Ingeniera:2,"de-listed":17,Behind:316,abscesses:4,DEALERS:28,people:91,Pharmacy:2,Tropical:2,Toensing:2,warring:8,aspen:22,Shirer:2,gasps:4,Quarry:2,hulks:4,Baum:2,Prolusion:2,Withdrawals:4,impulsively:6,consummately:6,serpents:4,"a-raising":8,germinate:33,Keith:2,Royce:2,pinched:45,INFORMATION:11,Naess:2,Didi:2,Hauling:8,Thing:11,Practices:41,shifting:5,pinches:4,Think:317,insinuations:4,Snatching:8,derailed:32,Celanese:2,rebuffed:54,Ichi:2,Bronson:2,despair:25,repellent:3,spins:20,Shake:39,sarakin:64,Strength:47,Summers:2,dashboards:4,Occasional:66,Misses:28,"fixed-price":1,Hirschman:2,reducing:55,Repligen:2,ownerships:4,Ali:2,Paestum:2,Wichita:2,"common-law":3,Amaury:2,Ogura:2,happy:1,alloys:4,grokking:8,Completing:8,Dentistry:2,conclusively:6,Dabney:2,gripes:18,Boole:2,materals:4,mirthless:1,Reductions:4,antiCommunist:1,pest:318,pontificate:39,panels:4,"five-inch":1,Mancuso:11,juvenile:3,liberal:3,Variety:2,Dixiecrats:4,Zuercher:2,Raimondo:2,exist:319,obligations:4,accounting:27,provisons:4,supporters:4,dotted:45,Gherlein:2,ROBERT:2,Beismortier:2,Hennessy:2,Nolan:2,"deep-seated":1,dissimiliar:1,Ceramics:28,disastrously:6,Shuwa:2,Reinforcing:8,invested:320,Barberini:2,"anti-white":1,Carpathians:28,Jutish:1,Stirring:8,spades:4,deformational:1,sniffed:16,Ellsworth:2,Aureliano:2,DevelopMate:2,goaded:32,McKid:2,Steinhart:2,fares:170,Indians:111,Glauber:2,"anti-airline-takeover":1,Indiana:2,Falkland:2,Plump:1,cupped:187,rousing:3,Truckers:4,indolent:1,behave:42,Lighting:321,veterans:4,Hnilica:2,"single-employer":3,prepaid:322,Scranton:2,refinance:39,SunAmerica:2,mourn:39,servicing:21,Seko:2,"sun-browned":1,Experimental:1,"fire-resistant":1,wondrously:6,Dugan:2,"short-range":1,solves:20,Northeastern:66,"corporate-identity":1,Intelogic:2,Aeromexico:2,solved:54,Quigley:2,Cantonese:40,Subsidizing:8,Tables:4,officiate:39,Marmi:2,steaks:4,"Bldg.":2,Hingham:2,erotic:1,"anti-androgen":1,Dellums:2,Tricia:2,"Brumidi-Costaggini":2,current:3,extraterrestrial:1,Crowell:2,"all-powerful":1,Cays:2,drewe:16,"tough-looking":1,Machold:2,UNION:47,Caetani:2,Decca:11,Eighties:2,Nynex:2,Godwin:2,"government-relations":4,Baton:2,studied:45,tassels:4,Exegete:2,therein:6,Miglia:2,studies:18,bearable:1,carpets:4,indiscriminantly:6,SOYBEANS:57,Rogin:2,"properties.``":133,Alberto:2,Alberta:2,monaural:1,grimmest:51,fresher:12,Emanuele:2,Abello:2,predictions:4,"public-land":1,Pontius:2,corners:4,Kafkaesque:1,"One-Leg":2,Califon:2,cranked:32,afford:42,apparent:3,"MD-90s":4,wrenches:18,easiest:51,Oum:2,"COS.":2,overloaded:14,"cooked-over":1,believes:20,"God-curst":1,Appliances:28,believed:32,scenics:4,"Worth-based":1,"O.N.":2,Sepulveda:2,Inward:2,teaspoons:4,wrenched:32,Bandaging:2,Officine:2,intransigent:1,hides:18,fiche:64,philological:1,agendas:4,uncles:4,deserves:20,Vyacheslav:2,Holmberg:2,Newlywed:2,belongs:20,snaps:20,Aeroquip:2,blasting:30,"transportation-cost":1,rehabilitate:39,Managua:2,date:24,Become:39,data:323,Shandong:2,Yoshihashi:2,sectors:4,"interest-sensitive":1,aseptically:6,yielding:5,Catching:8,definitions:4,scents:4,wavelengths:4,"debt-coverage":1,unfavorably:6,haute:145,unacceptable:1,Leaguers:74,bibulous:1,unacceptably:6,ungentlemanly:1,unfavorable:1,stills:4,Clemson:2,Shaw:2,solitary:3,Karalis:2,Zolo:2,lackluster:34,bagels:4,Unlimited:40,covertly:6,creations:4,orchestrating:8,Rafeedie:2,Persky:2,decades:4,into:324,Amin:2,stabilizers:4,"three-family":1,matches:72,Socialist:129,"Sherwin-Williams":2,Langer:2,records:18,Socialism:47,"six-week":1,arriving:8,"in-laws":4,"non-brain":1,runners:4,matched:81,Newest:51,revert:42,McCrory:2,bowling:21,"target-hunting":1,manors:4,"sex-manuals":4,"Richmond-area":1,ALCOHOL:2,whosoever:79,Snyder:2,bovine:3,"low-wage":1,Calderone:2,Habicht:2,Ferraros:28,revises:20,Shah:2,giddy:1,Eire:11,workaholic:22,"top-performing":1,unreleasable:1,Hollis:2,sibilant:3,suggesting:8,bordering:8,flurries:4,clustering:55,joiners:4,Braille:2,"KOFY-FM":2,intensely:6,"Aye-yah-ah-ah":106,toned:17,Bruyette:2,Monet:2,Monex:2,Money:11,thunderclaps:4,Jeffry:2,livable:1,"Euro-pillows":4,Hovarter:2,Monel:2,Sanford:2,Tailback:2,"now-purged":1,Blanco:2,Conradie:2,"hair-raising":1,nested:54,vote:44,Blancs:2,intermolecular:1,Benington:2,"merger-related":1,phonetics:4,"Franco-German":2,Garza:2,Spagna:64,Uses:4,"six-lane":1,Homestake:2,Petruzzi:2,dealmakers:4,Grandson:2,"white-stucco":1,Aircoa:2,Haskayne:2,padding:21,redoubled:54,"Northwest-Skinner":2,Sept:2,"High-priced":1,Embarrassed:1,encrypting:8,exacted:16,Titan:2,"non-members":4,Emmerich:2,Alejandro:2,future:22,"Trump-watchers":4,opens:20,Holynskyj:2,cavalier:1,financings:4,tasted:32,"round-faced":1,tastes:18,Inquiry:2,lurking:8,dragooned:16,"hand-carved":1,serials:4,sanctimonious:1,LeRoy:2,undercover:1,Aspin:2,take:182,vandals:4,convulsive:1,"long-life":1,altered:81,Galant:2,Katutura:2,candidly:6,Kerr:2,transpirating:8,Kern:2,Rogaine:2,Radames:2,Belin:2,Settled:17,Portuguese:66,"French-government-owned":1,occidental:1,Mame:2,"AK-47":2,Swingin:2,Strip:59,affirmed:32,Hereby:6,surplus:22,Kurland:2,mince:39,"Hamilton-Dorgan":2,realists:4,unkind:1,"ready-to-eat":1,robs:20,"Greek-Canadian":1,Fraga:2,ALLOWED:16,clawing:8,charmed:54,"sweet-smelling":1,morphological:1,Lexington:11,countered:32,cursing:55,Kiowa:2,Farmingdale:2,Products:41,"Ta-Hu-Wa-Hu-Wai":2,Sikhs:28,"literal-minded":1,Givers:2,assimilate:39,Madsen:2,neutralist:3,nociceptive:1,liable:1,Kassem:2,disparage:39,surgeries:4,raged:32,dived:32,Specifically:6,BOARD:2,Goldwag:2,Ravencroft:2,Tirello:2,rages:72,gastrointestinal:1,Zafris:2,Librium:2,Vandenberg:2,Audiovisual:2,"discount-rate":1,Mather:2,Determining:8,affecting:8,Primakov:2,Keeling:2,Bible:129,Velon:2,HLTs:4,rapacious:1,jovial:1,jaunts:4,demonetized:17,Hodgkin:2,"second-worst":1,"shit-sick":1,Citation:2,Worms:111,Glynis:2,loudly:6,Cornelius:2,Mollie:2,Liber:2,ants:4,stereophonic:1,anti:325,Libel:2,ante:315,"human-sounding":1,"thick-skulled":1,"contingent-fee":1,combines:72,booms:18,breath:25,combined:81,lowincome:1,Signor:2,"Plus-one":1,squinted:32,Distressed:1,influence:44,Torrence:2,sturdily:6,Rotary:2,Agatha:2,rematches:4,globally:6,Honshu:2,Wedd:2,disbelieve:39,"vote-getters":4,COMMUNICATIONS:111,Doctrine:11,curricula:4,malevolencies:4,Jolt:59,brok:16,"M.D":2,Ilyushins:28,"three-second":1,shuts:72,"funds-service":1,spiraling:30,Trettien:2,expediently:6,"Rodney-Honor":2,unemployed:1,cramming:8,"two-year-old":3,unmanageably:6,cheere:33,glycerolized:17,"State-owned":1,Anchorage:2,carillons:4,cheers:18,Birtcher:2,Diagnostics:28,unmanageable:1,cheery:1,Kirschbaum:2,Silkworms:2,escorts:72,coste:39,Slay:33,flocks:4,"sharp-rising":1,Simultaneous:1,engulfing:30,bravura:22,trains:18,Soule:2,Botswana:2,Mexicana:2,barbecues:4,McGlothlin:2,mediumistic:1,DISCOUNT:326,Mexicans:65,Daniel:2,Hurrays:2,"non-binding":1,McGillivray:2,Bygdeman:2,barbecued:17,"Pepper\\/Seven":2,blondes:4,Mullen:2,Zack:2,Zach:2,Phineoppus:2,hereabouts:6,Stirlen:2,formative:3,lengthens:20,Transgenics:2,Muller:2,Hitchcock:2,Mona:2,unquiet:1,Korra:2,Monk:2,Drake:2,"Mis-ter":2,Mont:2,Wellman:2,Mony:2,clam:78,clad:14,overhyped:1,Rabinowiczes:28,yearly:97,Muammar:2,Tasuku:2,"full-scale":1,Cervetto:2,Ostrager:2,winds:18,Brandon:2,"all-pervading":1,endeavor:25,Cecchini:2,Piranesi:2,riveting:30,Timidly:6,Bleckner:2,oblige:63,Projects:41,"state-provided":1,unsuccessfully:6,philosophizing:55,contingent:3,confided:32,relented:32,Testifying:8,Awareness:47,Proteins:28,sprung:17,confides:20,ratios:4,Curzio:2,Chardonnays:28,joyfully:6,counterbids:4,fightin:8,"evil-minded":1,act:24,Timber:47,Macchiarola:2,curling:21,Litz:2,Advancement:2,"home-furnishings":4,Eppelmann:2,Hansen:2,parties:18,Lite:2,somnolent:1,Pakistani:66,Lita:2,Gilhooley:2,"blood-bought":1,"V.E.":2,yeasts:4,Equimark:2,bobbing:8,recommends:20,BORLAND:2,TeleVideo:2,Yanes:2,fastidious:1,McFeeley:2,cloned:17,Francais:2,Teniente:2,Guido:2,DRAM:2,"Detroit-over-San":1,wickets:4,Guide:11,buying:327,Wrigley:2,confessions:4,"sales-building":1,Won:2,severally:6,Close:328,agree:42,detailed:81,gone:329,carves:20,dovish:1,Quietism:2,ag:22,Seigner:2,ah:330,am:331,Amiel:2,Deatherage:2,Nacional:2,as:332,Becca:2,au:147,at:333,Quietist:2,carven:17,"Serve-Air":2,"self-referential":1,prosceniums:4,Salamander:2,Machos:64,Simpsons:28,Machon:2,gunboats:4,Birenbaum:2,spatial:1,jell:39,contemporaries:4,bizarrely:6,IBRD:2,unrefrigerated:1,fluorinated:17,annex:25,Maier:2,slant:25,herbs:4,middling:1,Pekin:2,PROFITT:2,Sabol:2,Explanations:4,PROFITS:4,"Retin-A":2,Vicar:2,"police-community":1,Absorbing:8,Twiggy:2,mimic:42,cps:4,Vical:2,overeager:1,Canada:2,externally:6,instincts:4,asteroids:4,"ex-Beecham":1,Currier:2,Amdahl:2,"sugar-using":1,revolting:1,Mateyo:2,Wickhams:2,caveats:4,disciples:4,pornographic:1,"Early-morning":1,champions:18,piddling:1,"co-signed":1,dressing:27,Precious:294,"well-cut":1,splashing:8,"state-produced":1,compromising:30,gemlike:1,fullbacking:8,Severence:2,"purpose...":102,Kweisi:2,manageable:1,"price-moving":1,Cockburn:2,"`":133,Noam:2,Noah:2,accompanying:30,DELAYED:17,underclothes:4,scrapping:55,Darrell:2,"program-driven":1,"Chiat\\":40,Powless:2,humongous:1,antibiotic:22,pretenses:4,"two-class":1,Nordmann:2,"fill-ins":4,"nation-state":22,Dilly:2,Arlin:2,Immaculate:2,"one-drug":1,poisonous:1,Safari:2,"non-medical":1,avenues:4,celluloses:4,Bureaus:74,installations:4,Deminex:2,"re-examines":20,pidgin:22,DALIS:28,"Fireside\\/Simon":2,dreamlessly:6,"non-performing":1,squashy:1,Planet:11,"ultra-safe":1,Westendorf:2,"L-1011":2,Zurich:11,Totaling:8,Litowski:2,interconnected:17,"Richardson-Smith":2,"cap-and-ball":1,gunfights:4,brimmed:32,Lytton:2,Astarte:2,Auf:2,filial:1,"Sleepy-eyed":1,Aul:2,Cotty:2,conspiratorial:1,"Pouilly-Fuisse":2,"worry-free":1,"intermediate-range":1,unbleached:1,Elements:57,Optimists:4,Peat:2,"mothers-in-law":4,AMDAHL:2,Peal:2,Peak:40,Scratchard:2,Meaningful:1,Financing:321,Canoga:2,contrive:39,Philippines:74,Humble:2,spoils:4,LaFalce:2,Slick:1,expansively:6,delphic:1,evolves:20,Carltons:28,chisel:25,Coney:2,indicating:8,evolved:81,Compelled:17,beautiful:1,Denton:2,impacts:4,stated:81,rustled:14,dislikes:334,moon:25,accept:42,Laban:2,Venezuelan:66,elaborately:6,McCulley:2,"faster-spending":1,equities:4,Fulham:2,earnings:91,cling:149,telegraphic:1,Hanover:2,BancOklahoma:2,Bracken:2,Ditka:2,Maxentius:2,"re-evaluating":13,haggardly:6,Yastrow:2,unhesitant:1,"Authority-Garden":2,MANUFACTURERS:28,hauling:55,Beowulf:2,chemistries:4,"pre-historic":1,pans:18,veridical:1,Nana:2,MICRO:2,Scofield:2,Seasonings:28,Nkrumah:2,Alter:216,Abbie:2,Seifert:2,Llewellyn:2,debilitated:14,deeds:18,"MD11":2,rigids:4,VandenBerg:2,consign:39,iridescent:1,Experimentally:6,Gerhard:2,Creative:40,Partnerships:4,Alcibiades:2,"be-thonged":1,judgeships:4,"real-estate":22,Menet:2,Newton:2,truths:4,impugning:8,Pole:11,Thanks:75,Pola:2,Polo:2,Poll:11,Polk:2,"fee-related":1,Menem:2,transforming:8,bends:18,catalogues:4,Dactyls:28,Balenciaga:2,exorbitant:1,Setting:8,fewer:299,Peoples:41,"Mon-Fay":2,catalogued:54,takeing:8,BMC:2,BMA:2,BMI:2,mattered:32,"pea-green":1,BMP:47,BMW:2,BMT:2,Railroad:11,Beckstrom:2,Folding:8,"free-spending":1,drifting:5,disheveled:1,Burgundies:28,pitfalls:4,proxy:22,imagine:42,Nonprofit:1,Hispanic:66,uplands:4,positioning:55,Allotments:4,bookies:4,Spanos:2,conductors:4,Doran:2,redeemded:17,Tabacs:2,waspishly:6,corrugated:7,vowel:22,protectionist:3,thereafter:6,"Services\\/Japan":2,Kinnett:2,Kagan:2,SMALL:40,Treiger:2,Isham:2,"intervention...":102,unexplained:1,tadpoles:4,Courier:2,Hualien:2,erupted:32,Mathavious:2,crisscrossed:54,sympathies:4,Doubts:4,"soft-drinks":4,immediate:1,"credit-market":1,consult:39,focusing:55,unprofitable:1,Equator:11,"Jean-Pascal":2,"computer-guided":1,Inhouse:1,drawled:16,PegaSys:2,Migs:4,lovelorn:1,"less-influential":1,revelling:8,"carrier-current":1,Sanjiv:2,refrigerators:4,fights:18,"well-developed":1,Donnay:2,Adverse:1,Donnan:2,Loevner:2,"more-senior":335,honeybees:4,Kyoto:2,Makwah:2,equaled:32,"chest-back-lat-shoulder":1,MacKinnon:2,fellers:4,"civil-investigative":1,effecting:8,"benefit-plan":1,"Prentice-Hall":2,"high-rate":1,funnier:12,Tanzi:2,Lysol:2,tokens:4,unequal:1,Tomsho:2,covet:42,cover:182,coves:4,"low-stress":1,Fauntroy:2,Physicochemical:1,Swirsky:2,Singing:229,"fiscal-fourth":1,"notebook-size":1,Burnsville:2,Gridley:2,aghast:1,"Mail-Order":1,"well-endowed":1,"Soviet-American":1,Melloan:2,Hajime:2,"AIDS-like":1,SCUD:2,condos:4,undying:1,Istvan:2,Tagamet:2,Lodestar:2,"T.B.":2,alloted:17,Broomfield:2,Oddy:2,Masters:46,magicians:4,Stouffer:2,gratis:97,"Point-Pepperell":2,Odds:57,eies:4,"Dana-Farber":2,Heikes:2,Yaaba:2,Pereira:2,Minutes:41,dustin:8,Tator:2,tumors:4,demeanors:4,"low-fat":1,obscure:82,sew:42,dryin:8,overwhelm:42,Fox:2,Foy:2,sex:25,Foe:2,see:336,unsheltered:1,sea:44,Stedt:2,Umm:106,Westbound:2,Calabria:2,vitamins:4,"Yale-New":2,unmarketable:1,topmost:1,avuncular:1,Belinda:11,Ungaretti:2,Rebounding:8,Pocketing:8,"ego-adaptive":1,embargoes:4,Dmitri:2,redesigning:8,Serves:20,hooted:32,shortlived:1,Served:17,pagan:1,embargoed:103,Kaskaskia:2,Nortek:2,RETIREMENT:2,Goldscheider:2,"fifty-year":1,repainted:14,scams:4,Halloran:2,"long-term":337,Nortex:2,volcanic:1,Spectator:2,drunk:338,underwent:16,Ephlin:2,USGA:2,hollow:3,agents:4,BREWERS:4,creeds:4,underlay:33,runups:4,worthless:1,vehemently:6,numinous:1,APPLE:2,Trail:59,"A321s":4,scions:4,McBride:2,flounced:17,"self-deceived":1,"semi-public":1,Burwell:2,Waseda:2,repayments:4,"then-21":1,fund:24,McRoberts:2,Ninja:2,womanizing:8,insiders:4,towns:4,ligands:4,"Standard-issue":1,tweaked:16,Dallara:2,judicial:1,Duplicating:8,Fighters:2,redounds:20,Measure:269,"front-loaded":1,Keschl:2,owed:54,Hubermann:2,Hartzog:2,owes:20,mediating:8,Ayres:2,"volume-based":1,"two-color":1,Morelli:2,voraciously:6,Jocelyn:2,doan:33,levels:18,"dollar-and-cents":1,Raleigh:2,Expands:20,oddest:51,Cameo:2,Camel:2,Woodbridge:2,upland:97,Rate:11,regulating:55,Nastro:2,Uxbridge:2,Resourceful:1,Rath:2,Segal:2,"red-haired":1,hypothesized:17,militiamen:4,Alabamans:4,rumbling:8,LAYOFFS:4,Segar:2,contradicting:8,Rahway:2,VCOR:2,Varian:2,ellipsoids:4,"DM850-a-month":1,billable:1,Fukuoka:2,Shartzer:2,victims:4,Frenchwoman:2,Merhige:2,instructors:4,Vermejo:2,Duffus:2,contraptions:4,Aransas:2,"criminal-defense":3,amicably:6,Dams:4,Damp:1,DES:11,Yamatake:2,Damn:83,sight:25,nostrums:4,DEA:2,DEC:2,amicable:1,Dame:2,wrongful:1,Balcerowicz:2,"Viewmaster-Ideal":2,stamens:4,stables:4,"sheet-fed":1,stabled:16,"cop-killer":1,durables:4,"EPO-treated":1,tankers:4,"two-for-one":1,Riviera:2,Soll:2,"U.S.-SOVIET":1,vitals:4,"non-tariff":1,scarify:39,Fulgoni:2,"global-market":1,Shawano:2,ambush:25,computational:1,Hatless:1,Bensten:2,Young:129,ACS:2,adverbs:4,Skillman:2,Riger:2,ACT:2,burdens:18,next:339,CoGen:2,criticisms:4,"straight-line":1,bargaining:122,assuring:8,textual:1,occupy:42,"often-disparaged":1,"pixie-like":1,BONO:64,rhetorical:1,DowBrands:2,excavating:8,impudent:1,Klimpl:2,Mlle:2,Trafton:2,vowing:8,numismatic:1,"High-yielding":1,"cortico-hypothalamic":1,Bandish:2,nieces:4,redeemed:54,Indoor:1,Ohlman:2,Erdos:2,mature:340,Gobbee:2,WALL:2,Disposal:11,Jolla:2,Parks:46,"Gutfreund-Postel":2,Mishelevka:2,Frothy:1,Memory:47,Parke:2,wove:16,Chesshire:2,"bad-cop":1,Sundstrand:2,"Brush-off":47,Dividends:4,leftward:1,overshoots:20,actors:4,Monchecourt:2,pockmarked:7,"rumor-fraught":1,sided:32,faintly:6,Gorilla:2,Onan:2,Railway:2,Biscuits:74,sides:4,worsened:32,unionized:103,"one-set":1,"TR.":2,Ritter:2,summit:22,"Exchange-rate":1,Krauts:4,CPI:2,pooched:16,Taxonomists:4,CPA:2,Tweed:2,CPC:2,results:18,"June-to-September":2,dedicates:20,Nonconformists:4,CPR:2,QVC:2,ORDERS:20,inferences:4,Taraday:2,renunciations:4,Milhaud:2,"court-supervised":1,send:42,outlooks:4,Bharati:2,Candide:2,sent:32,pestering:8,recitals:4,Sanctions:57,Goldstein:2,languished:54,Following:55,languishes:20,"seven-member":1,categories:4,Kimball:2,"travel-services":4,Related:71,Talking:8,bemoans:20,Seattle:11,"thirty-foot":1,Lynford:2,burrowed:16,agrarian:3,Redbirds:2,buckskins:4,Newbery:2,Newberg:2,"re-enactments":91,Reinhardt:2,shivery:1,Jessica:2,firma:147,Alai:2,Giddings:2,analogously:6,Alan:2,Alar:47,Alas:341,firms:18,Diario:2,Barbudos:28,"Newton-John":2,panelists:4,jammies:4,Lammermoor:2,identifications:4,Tremdine:2,aerodynamic:1,Streak:2,engage:42,Stream:2,Energy:11,"Ala.":2,"McCarthy-era":1,"bank-affiliated":1,Militia:4,Religious:66,Dohnanyi:2,debts:4,Decay:2,Alleged:1,distrusted:54,Industrielle:2,moonlighting:21,"F-14":47,"F-15":11,trivialize:39,"F.E.L.":2,cheered:32,Ha:183,Outright:1,whipping:5,painstakingly:6,ministers:4,"cash-or-shares":1,Oppenheim:2,muffed:32,Telmex:2,Delawareans:28,Kaisers:28,Biny:2,crisscrossing:8,Bricktop:2,monophonic:1,Gumi:2,"one-megabit":1,Hosting:8,Cimabue:2,Gums:4,Gump:2,Sucre:2,sharply:6,promotional:1,"cross-margining":3,Christoph:2,insists:20,instinctual:1,Subtle:1,"hare-brained":1,campsites:4,"million-member-Teamsters":28,wed:342,Shrieves:2,Sherrie:2,beckoned:32,Several:66,trumpet:78,Shoupe:2,Osler:2,"nuts-and-bolts":1,hydrophilic:1,Crocodile:2,Bolling:2,Ransy:2,"expansion-minded":1,Ittleson:2,Tigershark:2,Railcar:2,stand:182,ACQUISITIONS:4,blocks:18,Flax:2,Poitrine:2,blocky:1,Garcia:2,demonstrating:8,Ingrid:2,lagoons:4,"near-total":1,efficiently:6,Welmers:4,selectors:4,"critical-intellectual":1,intellectuals:4,Leisire:2,"Buhrmann-Tetterode":2,Kaiser:2,unpalatable:1,"N.C.-based":1,Brenna:2,Octobrists:28,operative:3,easements:4,recreating:8,excretory:1,Shroeder:2,hypothesize:39,Southeastern:40,shudder:42,spoiling:8,Bazaar:2,burping:8,crucial:1,Excluding:229,Reichenberg:2,Manzanola:2,triphosphorous:1,Wynston:2,"A&M":11,Katz:2,"rail-equipment":1,installment:22,gallstones:4,"A&E":2,Sporting:11,merge:182,Informix:2,Kato:2,accounts:18,"A&W":2,"A&P":11,Kate:11,veracious:1,Lumpur:2,kisha:64,BUSINESS:47,Treasure:11,Mills:46,Millo:2,"Most-Favored":51,intangible:3,Dispatch:2,Treasury:11,repainting:21,Mille:2,WOLFSON:2,Lynes:2,wander:42,"Least-cost":1,Agreement:11,HIAA:2,exults:20,Contractors:57,Bakkers:28,interactions:4,Grove:11,yawns:4,"opinion-makers":4,Albanese:2,Herwick:2,BICC:2,Freddy:2,loomed:32,Cuellar:2,eyeballing:8,monographs:4,Aided:17,Bachman:2,shuld:190,congressonal:1,mesmerized:17,followings:4,"low-calorie":1,Aides:4,Caper:2,Wheeler:2,transmitters:4,Capet:2,pines:4,Review:11,owned:45,straining:8,Capek:2,Sovtransavto:2,Pampers:111,Capel:2,Naturally:6,legislative:1,"Solidarity-led":1,STOCKS:4,"Y-MP\\/832":2,"foreign-based":1,upstate:97,"tulip-shaped":1,"state-controlled":1,acknowleged:16,Bahrenburg:2,painful:1,twinjets:4,Levin:2,midlevel:1,applauds:20,BRANDS:28,Meanwile:6,marquees:4,delimits:20,steel:22,buttocks:4,"boot-wearer":1,haystacks:4,restaffed:16,malpractice:25,punctured:7,Paschall:2,"Re-enactments":4,steep:3,steer:182,Jolivet:2,seaborne:1,Results:123,PLODDERS:4,"chromium-plated":1,"Mercedes-Benz":2,devotions:4,Zorn:2,Haferkamp:2,blockbuster:22,Balag:2,clearly:6,Remember:39,Claws:4,documents:18,soak:39,vented:32,probly:6,decomposing:8,"Dare-Base":2,regard:44,snuff:63,BEWARE:39,"safety-first":1,sophomoric:1,Hurricanes:28,HOLD:39,Patents:2,RCSB:2,thirdquarter:3,Expedition:2,reignite:63,endrocrine:1,Pancho:2,montgolfiere:64,Marquess:2,Sophias:2,EXE:2,Evidences:4,dissociate:39,understate:33,EXP:2,Wolzein:2,Removal:11,ELP:2,jostling:8,illumine:39,championed:54,emancipate:39,Serif:2,planted:81,matronly:1,Bergsten:2,maggots:4,Saltiel:2,maggoty:1,Keswick:2,pogroms:4,Sumita:2,Owners:123,internationals:4,intellectually:6,Ekman:2,"flower-scented":1,fronds:4,Fashions:28,River:11,multiyear:1,"quarter-mile":22,dishearten:39,Lydall:2,Brahmin:2,nise:1,streamlined:103,DeGol:2,Anniston:2,incurably:6,Wilshire:2,Histrionix:2,creationist:1,catastrophic:1,"Pre-attack":1,corrals:4,bidders:4,incurable:1,Nonunion:2,Hannes:2,partisan:3,"Euro-Belge":2,"Two-part":1,"Jean-Pierre":2,"Jones-Irwin":2,classless:1,faceless:1,Forum:2,WFRR:2,Amdura:2,"bright-eyed":1,Admistration:2,drum:63,"Ter-Arutunian":2,unflinching:1,sevenday:1,Ethiopian:1,sugared:7,Anlage:2,irruptions:4,Vaughan:2,Guinea:2,ca:190,skylights:4,"missile-guidance":1,nonstops:4,pounced:16,rapidement:64,allocated:54,equips:20,Get:188,dazzling:13,anhydrously:6,Chennault:2,Gee:125,QUANTUM:2,hottest:51,"break-even":104,Marous:2,Gem:2,Gel:2,"Mid-sized":1,stalled:81,Enthusiastic:1,Cytogen:2,geysering:8,Continentals:4,grinning:30,Pulling:8,Fatman:2,Hickok:2,rigged:45,maul:39,Eros:2,rethought:1,Burnsides:28,delaying:343,lush:1,"L.R.":2,"five-cylinder":1,Crestmont:2,Rajter:2,waspish:1,maligned:17,concealing:8,Pettee:2,highlighted:54,Raoul:111,Geothermal:2,"five-pound":1,glares:20,Wertheimer:2,inlaid:17,balk:42,"Canadian-fisheries":4,Jase:2,forecasts:18,heaped:54,robotic:1,Hires:2,overalls:4,whyfores:4,Julio:2,Oklahoman:2,Julie:2,Julia:2,Sontag:2,clambering:8,Thutmose:2,"Ito-Yokado":2,Sahour:2,Marcia:2,moments:4,glut:25,LABOR:11,glum:3,Drobny:2,Flynn:2,Bahrain:11,Ankara:2,Unbelievable:1,Works:130,Ketchikan:2,politique:64,"fifth-straight":1,coattails:4,Levesque:2,Osterreichische:2,Zoeller:2,unrecoverable:1,fluctuating:8,Unfortunately:6,taunt:25,famously:6,Slatkin:2,Kaddish:2,SGA:2,"car-rental":3,bayonets:4,Skating:2,SGB:2,crisp:3,Gensichen:2,scenic:1,Wakayama:2,Quit:39,indications:4,Kodama:2,"U.N.F.P.":2,foreseeable:1,Withrow:2,hashers:4,Barron:2,"Gardner-Denver":2,leveraged:344,snappy:1,"half-crocked":1,"high-definition":3,forgiven:17,Barrow:2,Eden:2,Markrud:2,haulage:3,Brizola:2,"fetal-vulnerability":1,Eder:2,Toward:124,"mosquito-plagued":1,gained:345,embolisms:4,ingest:149,idolize:33,Talon:2,seeds:4,kneebreeches:4,seedy:1,strode:16,Grune:2,"German-born":1,Consuming:8,unbent:1,libertarians:4,jingles:4,uninterruptedly:6,Charters:2,Coen:2,jingled:16,recapitalizations:4,Serra:2,"Young-Jin":2,"off-speed":1,housing:27,Dictates:4,Expenditure:2,Republicanism:2,unresponsive:1,Deor:2,hoosegows:4,beeped:17,Suppose:39,delivers:20,Balance:2,illustrative:1,beeper:215,straightaway:163,Jessy:2,Bicycle:11,official:22,harvested:17,unguaranteed:1,Vagabond:2,Jesse:2,Lusser:2,BOSTON:2,Riga:2,Leixlip:2,denote:42,"semi-arid":1,"Neisse-Oder":2,shepherded:16,Thoma:2,Benets:28,"battery-powered":1,anaerobic:1,Imam:2,Imai:2,Griswold:2,saunas:4,"fast-rising":1,"deficit-racked":1,"Anti-Jones":1,WANES:20,penciled:17,FELLED:16,footprints:4,unswerving:1,Dulude:2,McFeely:6,"Fifty-two":1,Arvin:2,pacify:39,Wafaa:2,Appleseeds:28,Page:11,"time-on-the-job":1,limousines:4,Fujimoto:2,transports:18,undercutting:8,"orders-related":1,Soaring:8,Trotting:8,buoy:39,knockers:4,Sadly:6,consolidated:103,Rous:2,Boies:2,Antler:2,oldest:51,Sicurella:2,consolidates:20,psychopathic:1,metropolitian:1,sputtered:16,Schmolka:2,"forte-pianos":4,physiological:1,Architects:57,Rangel:2,Ranger:2,Sasebo:2,Schonberg:2,"hell-for-leather":6,slowest:51,Pololu:2,overpaying:8,litle:3,League:11,Breed:11,"higher-multiple":1,fireplaces:4,blanket:346,distort:42,sellers:4,Telectronics:2,Adlai:2,disobedient:1,Brindisi:2,XRAL:2,"Canada-North":2,uninviting:1,Surrounding:8,ACLU:2,antagonize:42,Amudarya:2,Shevchenko:2,"League-sponsored":1,Ambiguan:1,Lubrizol:2,chaffing:8,belaboring:55,Kiryat:2,dwindles:20,Bauman:2,Avoidance:2,established:81,LSC:2,DeMyer:2,"Dresdner-ABD":2,"+":287,Sherman:2,LSI:2,LSU:2,"drug-laden":1,LSX:2,textures:4,Yeller:1,Stiles:2,Tiepolo:2,Yellen:2,textured:1,noncompliant:1,Dimitris:2,"F.S.B.":2,Vanities:92,Widsith:2,Martinair:2,rigorously:6,Tuesday:2,Brozman:2,bunked:16,smoke:44,Negotiations:4,secure:347,Cristal:2,"phase-two":1,modulated:17,wrack:78,BEVERLY:2,linearly:6,shams:4,Nezhari:2,Lock:2,Corestates:2,Ssmc:47,fragmentary:97,"two-pronged":1,Dells:2,Plunkett:2,"already-strained":1,sunbleached:17,stochastic:1,emeritus:22,authentically:6,Della:2,soils:4,Porters:28,unfailing:1,Courtier:11,grovel:39,Habib:2,groves:4,gallons:4,Glance:39,could:190,piers:4,"chemical-arms-control":1,Carnochan:2,"whole-bank":1,flunking:8,unreadable:1,Freie:2,Nizer:2,Rowan:2,unsatisfying:1,indifferent:1,altitudes:4,MOHAWK:2,envenomed:17,"Iran-Iraq":2,IPTAY:2,snobbishly:6,morbid:1,objets:64,if:127,"tax-deductible":1,doable:1,Extruded:17,Gottshall:2,suing:8,unmiked:17,LeSabre:2,repeats:72,Trusk:2,homeowners:4,"fund-objective":1,nascent:1,corvettes:4,Trust:115,ridings:4,Fitzwilliam:2,tricked:17,Switchgear:2,Innes:2,Inner:40,"New-home":1,priciest:51,Catholics:41,Kalyani:2,waterworks:348,bunching:8,count:44,beakers:4,"most-recommended-issues":1,promulgators:4,soothing:30,Labatt:2,"loose-jowled":1,classified:45,backgrounds:4,naysay:39,Softer:12,"hard-won":1,excavations:4,Newtonville:2,Kinnevik:2,councils:4,"pin-point":1,"stronger-than-expected":1,Cyclone:2,Nellcor:2,Psyche:2,Lampe:2,Wary:1,Wars:41,vessels:4,strangers:4,Warm:1,understaffs:20,Ward:2,Chatham:2,forth:349,Convocations:4,PILGRIM:2,appointments:4,Palaces:28,Scare:11,monoliths:4,Cambridge:11,Eastern:40,Gellert:2,construing:8,ordering:55,unenticing:1,"low-paying":1,EuroTV:2,Rohm:2,COAHR:2,"E-71":2,Nationalized:17,beaching:8,toconsolidated:17,Cell:11,Stalinist:10,"four-day":1,Squeezing:8,blossomed:32,Doerner:2,drones:4,Harveys:28,ficials:4,Cela:2,Rohs:2,Rohr:2,Magruder:2,protracted:7,"German-made":1,Shreveport:2,Isolde:280,Koshland:2,Census:11,vetoes:18,ludicrously:6,"early-season":1,"plant-expansion":1,Guffey:2,totted:17,Forsan:64,Necklace:2,Brookmeyer:2,"ever-existent":1,Communism:11,extracurricular:1,"one-pound-or-so":1,admonitions:4,Kerensky:2,Dompierre:2,devious:1,Purina:2,encumbered:17,Romero:2,Mironenko:2,"House-Senate":40,stomach:25,Correct:1,Cumhuriyet:2,alors:64,"mean-spirited":1,Nymex:2,"Tudor-style":1,Mahathir:2,Stolen:2,Dniepr:2,prohibitive:1,Naderite:350,devoutly:6,Olivier:2,cumulatively:6,Side:11,manifested:32,"Excise-tax":1,leavening:8,unsophisticated:1,Jerrico:2,fussy:1,dredged:16,Amatayakul:2,Kiep:2,Kiev:2,Carriers:130,"anti-abortion":3,HUNTLEY:2,Gouldings:28,infrared:3,serenely:6,"IH.":2,dredges:20,wrung:39,"good-size":1,bemaddening:8,Kiel:2,latent:3,Brand:47,Republicans:41,Bldg:2,frivolities:4,SCHLOSS:2,"custom-fit":39,summarizing:8,accompanists:4,Brant:2,"financial-related":1,Plumrose:2,Harms:2,"center-fire":1,frowning:8,Soviet:66,Nikonov:2,chastened:32,Armstrong:2,blunderings:4,Fresnel:2,Denman:2,Upson:2,Weasel:2,Pull:39,Pepperidge:2,Bailkin:2,"now-misplaced":1,"sewage-polluted":1,Homecoming:47,SEEKS:20,"bake-offs":4,"ES250":2,"Quick-Wate":2,snoozing:55,symmetric:1,Asensio:2,chattels:4,"multiple-paged":1,Cralin:2,paramagnetic:1,slugs:4,"Ten-year":1,Preoccupied:14,"pre-conscious":1,Argus:2,"city-bred":1,Westmoreland:2,CENTERIOR:2,"Metromedia-ITT":2,Genie:2,VICTOR:2,Pickford:2,Focus:2,twos:4,Leads:20,"axle-breaking":1,"capital-draining":8,Garman:2,requests:18,"non-core":1,Electricity:11,KMW:2,Galicians:28,"money-strapped":1,Groupe:2,broadening:55,FREIGHTWAYS:74,"moon-splashed":1,chimneys:4,Hillary:2,Boxer:2,Rust:2,Groups:92,"post-retirement":1,Igdaloff:2,Bootle:2,cutouts:4,families:4,autumns:4,beastly:1,Citizens:41,jeopardized:17,coherent:1,Montreux:2,Superstitions:28,jeopardizes:20,Bozeman:2,Cynical:1,soundproof:1,Chelmno:2,Altos:2,depictions:4,Accused:40,abrupt:1,Dried:14,"double-digit":3,Thence:6,discourses:4,Crises:4,dumped:32,glutamic:1,"plastic-coated":1,"British-built":1,Jelke:2,comparative:3,Falling:229,Rococo:1,confirmed:112,"One-Horse":1,patent:22,skyjacked:17,unharmed:1,Ingersoll:2,raid:25,Crisman:2,"high-frequency":1,blames:20,Hocke:2,closings:4,rain:25,"Basel-based":1,Berol:2,Milquetoasts:4,Y:351,faiths:4,blamed:32,literatures:4,Diplomats:4,Kegham:2,Electrification:2,orgasms:4,bodes:20,Proper:1,camps:4,"privately-owned":1,Sheldon:2,Able:2,"Bonn-sponsored":2,Surprise:47,convivial:1,adding:55,Lazy:2,starboard:39,dished:16,Leeches:4,Offenbach:2,Slovenia:2,advisories:4,transformed:81,VALLEY:2,Tampa:2,Filipino:129,basses:4,Aarvik:2,Combis:28,Envigado:2,Priem:2,arak:64,insurgent:1,Guadalupe:2,immoralities:4,Zambian:1,lapsed:103,"tight-turn":1,Trading:268,Necci:2,lapses:18,Yao:2,"gas-guzzling":1,sends:20,Divided:17,Tom:2,webs:4,Loewenstern:2,Planeten:2,Seasoned:1,Mesaba:2,Lea:2,Lipman:2,Led:54,Lee:2,Leg:11,phenomenal:1,Lek:2,Kots:2,Len:2,Leo:2,Lep:2,Les:87,Let:352,Leu:2,Lev:2,Lew:2,Lex:2,lagers:4,WNET:2,"past-due":1,scribbles:20,Hedman:2,Caucusing:8,unswaggering:1,graduates:18,blander:12,Swine:1,Swing:2,Swink:2,Deryck:2,dines:20,impenetrable:1,theirs:227,Ceramic:1,Mortage:2,"bone-deep":1,dined:32,cherish:42,Ciciulla:2,"pegged-down":1,"Factory-to-You":2,Make:353,delighted:81,balances:18,Weinberger:2,balanced:103,lewd:1,malignancies:4,Sirs:65,Ketchum:2,liquidated:54,Solzhenitsyn:2,unstressed:1,"general-election":22,"crime-infested":1,Kurzweil:2,McLauchlin:2,encoded:17,Filigreed:1,reset:354,responding:8,unthinkable:3,Bacterial:1,Milman:2,Milstein:2,"Chicago-Manchester":2,"private-sector":3,hotter:12,"electric-sewer-water":1,Scampini:2,Hector:2,subsist:39,Blunt:40,dosages:4,inculcated:32,baguette:64,Jacobean:1,weaned:17,weakened:81,handmade:1,"foot-tall":1,liberalized:81,negotiators:18,Supercritical:2,shoji:64,"limited-partnership":22,tripped:32,ENCYCLOPAEDIA:2,EXECUTIVES:65,"Dallas-Fort":2,Stalinists:65,guiltless:1,CHEWING:8,Massive:66,Monument:11,"action-results":4,Fausto:2,"B.V.":2,cheated:81,pollings:4,Gourman:2,Ropart:2,Teutonic:1,Penutian:2,"centuries-old":1,Situated:17,"government-sponsored":1,vampires:4,"single-family":3,global:1,Parsley:2,Dundee:2,Lintner:2,irritants:4,Haugh:2,Quite:355,Comparable:1,hums:20,flash:205,"Jean-Luc":2,Strenuous:1,videos:4,feebly:6,protective:3,Zhu:2,Effoa:2,dispelled:54,Amfesco:2,Kililngsworth:2,floodlighted:17,Klinger:2,Volunteers:111,"Cincinnati-based":1,feeble:1,Rapoport:2,tooling:55,Facility:2,altering:8,"Rita-Sue":2,fragile:1,Cheerful:1,ruminants:4,Pastures:4,Transylvania:2,PCS:2,PCP:2,repetitive:1,PCM:2,Bryson:2,Rodale:2,Bapilly:2,Rider:2,decelerating:8,Fittro:2,Lowe:2,Lown:2,PCs:56,Gebrueder:2,Basso:2,During:124,Viaje:2,supporting:30,burn:95,Berri:2,overseers:4,"corporate-earnings":4,Berra:2,Hentoff:2,Berry:11,Bassi:2,rubbery:1,appears:72,change:24,Skandinaviska:2,pedals:18,"MacNeil-Lehrer":2,Edzard:2,Humpty:2,Cardiovasculatory:2,Sweig:2,detonate:42,trial:25,"aviation-services":152,Resnick:2,seedcoats:4,triad:22,Fahlgren:2,agates:4,Rangoni:2,Zwei:2,lending:356,Palasts:28,Malays:2,Update:2,retires:20,suicides:4,discrediting:21,terminal:22,Stritch:2,Tiger:11,Caddyshack:2,live:357,jam:44,Tammy:2,eccentrics:4,marginally:6,"re-insure":39,Waltermire:2,ABC:2,Echeandia:2,Beverage:2,Ulanys:74,Moune:2,clumps:4,yelling:55,Concise:1,Jens:2,Epilepsy:2,MMS:2,gathers:20,MMI:2,Alessio:2,Jena:2,Corporations:92,"shock-damping":1,MMC:2,breeds:18,dedicated:81,"warm-hearted":1,"AH-64":47,saith:358,expanding:30,Neoliberal:1,STRUGGLED:16,unlovable:1,Dataproducts:74,"quota-increase":1,Magog:2,trophies:4,Fleischer:2,Norm:2,Acorn:2,Karkazis:2,"planetary-science":1,"commodity-oriented":1,banding:8,Trumplane:2,Lorincze:2,Pilson:2,crepe:1,remember:42,"Two-day":1,candles:4,"tag-team":1,"chin-out":1,"home-mortgage":1,baseballs:4,truley:6,crept:32,Rawlings:2,bleedings:4,Sulzer:2,"installment-loan":1,embassies:4,tagged:45,"Spanish-American":40,toward:127,"cross-currency":1,Brezinski:2,coli:4,cold:3,birds:4,Landini:2,"sloe-eyed":1,Greater:141,Transactions:123,selves:4,reacting:8,Landing:116,"Leesona-Holt":2,resurfaced:32,enny:1,feats:4,Blythe:2,halt:139,Trexler:2,Robertsons:28,Compliance:11,Zupan:2,wielded:54,appoints:20,Preventive:1,Elinor:2,Fery:2,LIVERPOOL:2,"better-quality":1,Marlene:2,"construction-management":1,Critical:40,dramatical:1,Lowenstein:2,"cancer-suppressing":1,em:53,en:359,eh:106,Baer:2,"trade-offs":91,worriedly:6,Except:124,Guadalajara:2,"Philadelphia-based":1,ex:145,et:360,er:106,vying:8,"foot-thick":1,opened:32,space:25,"VH-1":2,Torquemada:2,showy:1,castlelike:1,"too-naked":1,eidetic:1,Mattei:2,Ghanaian:1,Stans:2,"earthquake-related":1,Covey:2,Cover:59,eluted:17,Stand:95,Lockwood:2,Foreign:40,Ransomes:2,rearrangements:4,barest:51,Beatie:2,Guiana:2,Bavarian:1,domes:4,Konner:2,Promise:2,domed:1,Even:218,concertos:4,Teslik:2,Asil:2,impossibly:6,Asia:11,Inca:40,Landers:2,orthographic:1,Rookie:47,impossible:1,forwarding:21,Ever:150,"Al-Sabah":2,Inco:2,sheep:19,sheer:3,Diamond:11,jugs:4,lightened:32,weekdays:361,naughtier:12,"co-pilots":4,Galicia:2,Calmer:12,"long-vanished":1,"much-despised":1,shampooed:17,Johansson:2,Waterseller:2,Neck:2,pelting:13,peck:256,"Inc.":144,Quinzaine:2,rugged:1,Heisch:2,Speculators:4,Larkspur:2,"non-union":1,shady:1,sublime:3,Furillo:2,Remarketers:4,saute:39,"World-Journal-Tribune":2,Cali:2,"too-simple-to-be-true":1,Call:362,Calm:1,abnormalities:4,Crawford:2,Cale:2,Calf:2,sterilized:54,"anti-Kabul":1,Phi:2,cavemen:4,skidding:8,Hellene:2,"Non-interest":1,Exodus:2,faciunt:64,"six-cylinder":1,"trans-Pacific":1,Osipenko:2,SUNY:2,Colombians:65,PS:2,Markoe:2,"Less-than-truckload":1,Nacion:2,Duyvil:2,hamstrung:363,"Ph.":144,largish:1,sunset:25,diagonals:4,dispersed:81,"higher-caliber":12,Fifth:40,Accutane:2,Polevoi:2,misrepresenting:8,"Sony-owned":1,Schwartzman:2,Centurion:2,Seismographic:2,cheeseburgers:4,"ikey-kikey":1,gnaw:39,unedifying:1,probings:4,Solar:40,underfunded:14,Leasco:2,Katya:2,NATIONAL:40,telomeric:1,prides:20,Plunging:8,fortifications:4,remoter:12,prided:32,"European-minded":1,appreciatively:6,Grumbled:16,seldom:6,Alley:11,Jeux:64,guttered:16,Rundfunk:2,Allen:74,PM:2,bluebloods:4,pouches:4,"once-prevailing":1,Runyon:2,unmarried:7,Parkhouse:2,fanned:32,Winslow:2,"matter-of-factly":6,tackling:8,halides:4,"big-daddy":1,Berlin:129,"work-out":3,Butt:2,herbal:1,Butz:2,Equations:4,"extraordinary...":102,Antares:2,"post-revolutionary":1,Palmolive:2,transluscent:1,OSHA:2,UNITED:2,Swamped:17,diocesan:1,"self-interest":22,"successor-designate":1,unfrosted:17,Chevalier:2,mirroring:55,pilings:4,moreover:6,imcomparable:1,deducting:8,capitalizations:4,Anthology:2,rebuild:39,"manmade-fiber":1,SCECorp:2,lumpish:1,whispers:18,dangers:4,"build-better-for-less":1,rebuilt:17,"prie-dieu":64,shortages:4,Hamburg:2,"non-veterans":4,Creamette:2,observers:4,Vorontsov:2,Enforcers:4,countless:1,OEX:2,Merced:2,Reins:2,Serlin:2,OEL:2,dregs:4,Reine:2,PARTICIPATED:16,piglets:4,Reina:2,Dice:4,Dick:2,"Me-210":40,"South-East":2,embrace:95,bestial:1,heels:4,multitudes:4,mediocre:1,Bolsa:2,Mediumistic:1,commuting:55,Arden:2,"fair-weather":1,pedantic:1,finish:182,buccaneers:4,Shady:2,reunions:4,Pinsoneault:2,Stash:2,videotaped:54,Steelworkers:111,woulda:190,Shade:11,Hersh:2,"inspector-general":1,Joining:8,Ackermann:2,"fluorescein-labeled":1,"sex-for-hire":1,diatomic:1,slugged:32,wintered:17,tablespoonful:22,slanting:30,dueling:55,conclude:42,sportin:8,ESOPs:123,"well-set":1,sportif:64,participative:1,"near-solid":1,SoHo:2,real:34,Renwick:2,preliterate:1,Tuck:2,read:364,Phillip:2,detoxify:39,Reorganized:2,leapfrog:63,unreflective:1,detract:42,pesetas:4,"French-polished":1,Adrien:2,reap:42,rear:104,Kenlake:2,fractionally:6,suppliers:4,"glass-making":22,evidencing:8,Hawkinses:28,servile:1,"rival-bashing":1,Szanton:2,hacks:4,Archives:111,Barbaresco:2,slaughtering:8,recorded:45,Landrieu:2,descents:4,Southeast:180,featherless:1,putted:16,Marilyn:2,architectonic:1,stagecoaches:4,Hunt:2,seducing:8,hectic:1,Promotion:11,"anti-Catholic":1,Weavers:57,"easy-to-read":1,paints:18,STRIPES:2,Grandmothers:2,greatly:6,Forgot:17,Depressive:2,Dubaih:2,Cousin:11,"more-advanced":200,Memories:41,Fallout:2,"Wyser-Pratte":2,Hung:2,"Bard\\/EMS":2,heated:81,Steppers:65,gungho:1,prepare:42,Vaux:2,Engelken:2,DISPLAYED:16,Hotei:2,Birthday:47,unclasping:8,faulted:54,Motorcycles:4,"highway-relief":1,Nagykanizsa:2,"TSH-treated":1,Calimala:2,Tripoli:2,"DDG-51":2,Calcutta:2,appareled:17,irreversible:1,"Department-store":1,McKay:2,Leinoff:2,"Monday-morning":1,comics:4,condemnatory:1,Leyte:2,enameling:21,Grisebach:2,Grenfell:2,keyboarding:8,Shrugged:17,builders:4,Nobuya:2,"commercial-banking":22,septa:4,cartons:4,oxen:4,subdue:39,Cemetery:11,sales:365,Tijd:2,reassumed:17,"flat-to-lower":1,storage:22,thither:6,hobbyists:4,gambling:21,"seven-week-old":1,surest:51,Vicki:2,Iwatare:2,eromonga:64,Renaults:28,"technologies\\":1,flattened:45,"nerve-racking":1,Pissarro:2,Surrealists:4,Whitefish:2,Stuffing:8,chords:4,adsorbed:17,Workshops:4,"pectoral-front":1,Ovitz:2,Pablo:2,hateful:1,pointing:55,Griesa:2,splitting:27,slimming:8,Alcarria:2,bequeath:39,Schmidt:2,Astwood:2,dimesize:1,Brown:40,compatiblizers:4,FORCE:33,"interior-decorating":1,Ralston:2,Syms:113,Parallel:1,sprains:4,Recovering:8,very:218,indubitable:1,"officials-cum-drug-traffickers":4,"based-CAE":309,mph:22,minded:32,morphemic:1,Beethoven:2,Khalifa:2,guileless:1,Midnight:2,Kruger:2,Ancel:2,Electrostatic:1,"cash-rich":1,"Wyo.":2,Reiss:2,Henrich:2,Genuine:2,TSH:2,TSB:2,"self-contained":3,Glaxo:2,ELECTRONICS:2,Valens:2,Circles:4,papering:8,apologizes:20,Widened:16,bituminous:1,"three-game":1,Ronnie:2,Harmful:1,Feeney:2,apologized:32,Probing:8,Tammany:2,repugnant:1,Violeta:2,Alexei:2,entailing:8,recruits:18,rudimentary:1,answers:18,Grindlay:2,sardines:4,yummy:3,"consumer-oriented":1,Borden:11,interposed:17,Phamaceutical:2,ahead:218,disclaimers:4,"dream-ridden":1,whoppers:4,Woessner:2,Border:11,Victor:2,sidearms:4,Independents:28,Exactly:6,"T-1600":2,"capacity-expansion":3,agonized:187,"order-entry":3,Molesworth:2,Compulsions:2,"original-issue":1,"income-producing":1,Clarks:4,Tredyffrin:2,"easy-to-use":1,Creating:8,Elf:2,injure:42,microeconomics:4,reserving:8,Lapham:2,CLUBS:4,ROME:2,girds:20,doubtlessly:6,"wide-winged":1,"stand-up":1,erode:42,Policemen:57,Chickens:4,Colson:2,powerhouses:4,Oral:2,Oran:2,Sheila:2,aspirational:1,Yoshitoki:2,AFDC:2,"metal-cutting":1,Hartlib:2,sweeps:18,peals:4,reshaping:55,Kerkorian:2,Staining:8,stampede:44,Chubb:2,Bronislava:2,exclude:42,"grey-skied":1,"sci-fi":3,Wergeland:2,lithographic:1,cloying:366,Ganis:2,Heightened:1,Fitzpatrick:2,Pass:59,germinal:1,Yilin:2,roadblocks:4,gasp:25,inconceivable:1,"INC.":2,Milcote:2,Adamec:2,prerequisites:4,"lava-rocks":4,"mortgage-backed-securities":4,overnight:34,buns:4,renewing:8,Fila:2,Ubermenschen:28,File:25,Film:2,Fill:42,chicks:4,Fishery:2,uncensored:1,Floresville:2,Africans:111,dine:39,"space-station":22,tousled:14,"non-negative":1,"then-owner":1,Cardinals:74,painstaking:1,fines:91,"post-war":3,fool:70,"drunk-and-disorderlies":4,"spear-throwing":1,Syndicates:4,awarding:55,prenatal:97,grandfathers:4,Syndicated:2,Sunward:2,foot:205,"sixth-grade":1,Stillwell:2,Lewisohn:2,desperately:6,SFX:2,Suns:65,Ekwanok:2,heavyweights:4,"D&H":2,Bueno:64,SFD:2,SFE:2,Sung:2,Toland:2,"in-grown":1,unachieved:17,savored:32,inspirational:1,fees:4,wacky:1,irreconcilable:1,cemented:17,bulking:8,Minella:2,Kessler:2,Starve:59,Zemlya:2,Bloomingdales:2,presumptuous:1,since:206,temporary:1,InterNorth:2,ultrasonics:4,laxatives:4,"M\\/A-Com":2,"Bent-Arm":2,dunk:25,flaunt:42,ast:1,"forty-niners":4,"production-sharing":3,ask:42,"spread-out":1,Palladio:2,Investments:41,heroic:1,ketorolac:2,Sohmer:2,perceptual:1,fugures:4,tenets:4,"six-fold":6,tortoises:4,cheering:8,Selma:2,liquefies:20,DAYTON:2,"penny-ante":1,reflected:85,"Badura-Skoda-Vienna":2,Hubbell:2,tektites:4,alliterative:1,Gorce:2,herbicides:4,Jeremiah:2,Plekhanov:2,"ballot-burning":1,"Mortgage-backed":1,Lipchitz:2,Brinkley:2,shifted:32,hardbound:1,Modell:2,Ventura:2,"anti-Western":1,Venture:11,McGraw:2,western:1,Gianicolo:2,Calais:2,Searle:2,squeaky:97,inducted:17,collaborations:4,prejudged:17,squeaks:20,photographing:55,Leninskoye:2,"Figs.":367,Quotidien:2,Extinction:2,rationalizations:4,Saudis:368,substantiated:1,Conduct:59,Father:11,juicy:1,unthematic:1,Stenhach:2,ecstatically:6,bridled:17,"income-oriented":1,sensual:1,GTE:2,Gruene:2,outbound:1,retracted:45,"Band-Aid":2,Arger:2,flaming:13,cargoes:4,Ryrie:2,Puccini:2,Pissocra:2,repossesed:1,Thy:369,frauds:4,Companies:92,Kakutani:2,Foxmoor:2,Stronach:2,hothouse:1,Aviva:2,The:370,Mulligan:2,gregarious:1,Bolstering:8,Mommy:2,outbidding:8,Postscript:2,Momma:2,"bridge-financing":1,Fishing:11,"World-wide":1,Mahagonny:2,giggles:4,acerbic:1,fiercest:51,Croonen:2,flounders:20,hefted:16,"top-notch":1,giggled:32,"church-owned":1,begets:20,Nishiki:2,copyright:22,Norberto:2,"government-plus":1,CHARLES:2,"no-good-bums":4,darted:16,"pre-history":3,"long-familiar":1,"world-weary":1,pretty:218,Bolger:2,NatWest:2,"low-interest":1,"seven-session":1,custodial:1,trees:4,Dupuy:2,Crystal:11,spackle:39,tossing:55,gloved:14,sacrificed:17,MICROSYSTEMS:2,"full-bodied":1,sacrifices:18,CHARITABLE:1,Unitarians:111,gloves:4,battlegrounds:4,Pritchett:2,crams:20,"re-rated":17,"W.N.":2,Decent:1,outboard:1,YEEEEEECH:106,manning:8,horoscopes:4,"Knife-grinder":2,Babin:2,Liddle:2,patties:4,horrid:1,Lectec:2,dramatics:4,Tikopia:2,VIDEO:47,Kissinger:2,NHTSA:2,gynecologists:4,Zacks:2,Haro:2,Harm:2,Hark:2,unknowing:1,Fisk:2,Fish:11,Hard:294,Briscoe:2,Hara:2,Rhoads:2,watchtowers:4,crackpots:4,Allingham:2,Argiento:2,searchlights:4,"government-held":1,batters:18,likee:39,ridiculing:8,"trans-Canadian":1,assortments:4,strenghtening:8,ideologues:4,Maidens:28,likes:132,"private-line":1,Mose:2,"neck-deep":1,described:54,Mosk:2,Batangas:2,resellers:4,Most:371,describes:20,preventable:1,Astrid:2,"SX-21":2,Tomoshige:2,Honecker:2,budgeted:54,"three-foot-wide":1,lodgings:4,wet:372,append:39,else:277,Westvaco:2,transacting:8,"second-quarter":3,referrals:4,utmost:3,"all-paper":3,Memotec:2,Verdi:2,Mallinckrodt:2,eateries:4,erupting:8,straggling:8,voters:4,Furthermore:6,Spuyten:2,Cassandras:28,Meistersinger:2,shuttered:103,Ryerson:2,shag:1,Meir:2,sham:22,Huff:2,"Pollution-control":1,receptions:4,curators:4,Transmission:11,Alliant:2,overweight:3,feds:4,priceless:1,"takeover-proof":1,plugs:18,Telerama:2,"much-beloved":1,unrolls:20,wedged:54,grind:256,segmented:1,"center-stage":1,stubbed:17,Vaezi:2,grins:4,Girl:11,Dennis:113,mislaid:17,authoritatively:6,distances:18,Chugai:2,MOVED:16,escorted:32,atrophy:78,unhedged:17,inlets:4,hemolytic:1,praying:55,Killpath:2,"$":84,moist:1,Football:11,guaranteed:81,Finished:17,havin:8,Spiegelman:2,Germany:2,guarantees:18,Maclean:2,Tivoli:2,march:24,"fast-acting":1,Stallkamp:2,"thousand-person":1,culturally:6,Owego:2,Biehl:2,"well-equipped":1,Waited:17,overriding:30,Shukri:2,Scanner:2,UBS:2,interestingly:6,Smallwood:2,"Pepto-Bismol":2,Learning:116,"Shu-tt":39,"art-nouveau":1,brakes:18,philandering:8,Salomonovich:2,"trade-union":22,Verbatim:1,"higher-octane":1,Pittsburgh:2,exceeding:30,slash:182,phasing:8,Hokan:2,variances:4,chargin:8,ruh:64,run:373,rub:44,"first-time":1,Pymm:2,"macro-instructions":4,ochre:3,Grannell:2,integers:4,Girozentrale:2,Showdown:2,Lior:2,sourdough:3,Lion:2,"Courier-Journal":2,"F.O.O.D.":2,nonequivalent:1,Diagnosis:2,Eclectic:1,gambits:4,Racing:116,rolls:18,Racine:2,Caddy:2,"marble-encased":1,Northamptonshire:2,Kuster:2,Noll:2,sizzle:25,lowprofile:1,syndicators:4,Individuals:4,warlike:1,"fiber-end":1,Bostic:2,Kazis:2,lacheln:64,Lilac:2,"physical-chemical":1,"U.N.-sponsored":1,Bostik:2,Tyszkiewicz:2,Murray:11,"origin...":102,gymnastics:4,stragglers:4,"Wis.-based":1,Haarlem:2,Uchida:2,"Shaw-Crier":2,fleshpots:4,Sizova:2,tormenters:4,pattered:16,Kyodo:2,"rough-tough":1,Lugar:2,ECUs:4,Kazan:2,Leather:2,preachers:4,Speaking:217,vagabonds:4,"lap-top":1,spectators:4,"re-election":22,visits:18,Thought:374,Teague:2,Emmett:2,Mexicanos:2,required:45,humiliated:14,factually:6,humiliates:20,requires:20,evenly:6,eradicated:54,nuns:4,Pell:11,unalloyed:1,"Wright-style":1,go:375,Integrated:2,"Af-fold":1,Cuisinart:2,earthbound:1,transacted:17,chinos:4,"government-owned":1,attired:7,"brass-bound":1,Bet:2,Goriot:2,Pulley:2,"self-diagnostic":1,Pullen:2,Bisi:2,SpA:2,defamatory:1,Hindelong:2,Teerlink:2,Spy:2,tonal:1,"non-food":3,cyclosporine:22,Schuylkill:11,"insurance-premium-finance":1,Spa:2,innately:6,Solebury:2,"five-count":1,oddball:1,Thynne:2,punishing:30,"digest-size":1,Farentino:2,"Same-store":1,clotting:8,predispositions:4,Soothing:8,"limited-edition":1,Poirot:2,Rohatyn:2,auspices:4,Briefly:6,sophists:4,Boyd:2,opaque:1,Boym:2,Boys:41,rotten:1,Kirkland:2,Aulnay:2,schoolboys:4,Quatre:2,newcasts:4,vodkas:4,"burnt-red":1,"A.D.L.":2,Houghton:2,brokering:55,stanch:83,BANKERS:57,"woolly-headed":1,growing:5,Crimean:2,affidavits:4,Hedding:2,likened:32,Colder:12,PATTON:2,Aho:2,Billheimer:2,repel:42,products:4,cataloging:8,"fellow-men":4,Wonder:376,examining:55,"half-time":168,"Portuguese-language":1,Lipson:2,Waldheim:2,anomalies:4,horticultural:1,"Dai-Tokyo":2,manipulate:42,strapped:45,aspirants:4,swanlike:1,arsines:4,Birkhead:2,"vine-crisscrossed":1,indefensible:1,Appropriations:46,statutes:4,benchmark:22,Editorial:3,"Anti-Ballistic":2,shrieked:16,"burr-headed":1,SNET:2,RADIO:47,nurture:63,Englanders:28,anthropological:1,Similarities:4,Almighty:2,documenting:8,Aoki:2,hesitate:42,reoriented:17,Rothschilds:28,digested:17,Furey:2,YOUR:377,compiled:54,ideologically:6,pink:3,fostered:54,entree:80,Alleghenies:28,Ltee:2,foment:39,"Ambassador-at-Large":2,"sky-high":1,pansies:4,buoying:8,adjectival:1,Farewell:2,agenda:19,unsolved:1,unbreakable:1,Hongkong:2,offences:4,bogeymen:4,Schantz:2,Patchen:2,Bangles:28,"PWA-owned":1,"still-to-be-named":1,"stock-index-futures":152,Volunteer:2,Philibert:2,sterios:4,pure:1,unflaky:1,Salsich:2,Repeating:8,Coolest:51,Supreme:2,Yamane:2,fundraisers:4,McNear:2,foiling:8,McNeal:2,pools:18,"lead-exposure":1,indolently:6,Displaying:8,denuclearized:17,Albertson:2,SURVEYS:4,prognosticators:4,aggravates:20,Hoxan:2,"index-linked":1,aggravated:54,seesaw:22,sands:4,Narbonne:2,sandy:1,lukewarm:1,EGYPT:2,Season:47,McVities:2,repositioning:21,fathom:39,Juliette:2,Towering:30,amendatory:1,spacesuits:4,Engle:2,Brumidi:2,Aptitude:2,terminated:54,Gershen:2,Fundamental:66,conservatives:4,alchemists:4,"Judd-Boston":2,befriended:32,Steiger:2,"post-hearing":1,McLendon:2,Guimet:2,childless:1,standbys:4,"mono-iodotyrosine":3,"original-equipment":3,Sondheim:2,Newburger:2,Hybritech:2,Managing:321,Burdett:2,Gunner:2,introspective:1,Pantasaph:2,NORTHEAST:47,fella:235,ASP:2,AST:2,guys:4,WORK:33,adjoins:20,"AS\\":11,chintz:33,attach:42,attack:24,buckaroos:4,Odom:2,Klan:2,Rinehart:2,Roquemore:2,Teixeira:2,Bini:2,DUN:2,"Rev.":2,Bing:2,clanging:21,formalities:4,Bride:2,R:47,Dutton:2,"World-Telegram":2,overwhelming:13,updating:55,Grossman:2,choreographed:14,Channing:2,Bognato:2,distinguishes:20,beg:149,bed:44,"RENT-A-CAR":2,snazzy:1,distinguished:81,bet:378,exhibit:24,rhythmic:1,Baris:2,"Curtiss-Wright":2,"R-stage":1,Gillette:11,Swiggett:2,carrots:4,"photographic-products":1,sardonic:1,battlegroups:4,torment:25,"all-options":1,constrained:14,batwings:4,"rice-processing":1,Isabel:2,mainstays:4,"square-built":1,INVESTORS:4,Retton:2,"no-frills":1,Dillinger:2,romances:4,dimming:8,"option-related":1,floundered:54,hoodlums:4,Urals:65,Worlders:28,Norths:28,nuisance:22,Northy:2,bloodthirsty:1,Somersaults:4,consequences:4,"WSJ\\/NBC":11,"semi-retired":1,Growth:47,"conventional-arms":152,Brendel:2,"six-ton":1,reprehensible:1,anyway:6,"contour-obliterating":1,farfetched:1,"coal-mining":1,parked:81,unenvied:1,Manske:2,counterterror:1,boutiques:4,remunerated:17,Bonaccolta:2,fiberglass:91,"ever-lovin":1,millennia:19,"Creditanstalt-Bankverein":2,attained:32,"stocks-index":1,Leszek:2,Medici:28,quantified:17,Eats:4,bodybuilders:4,assimilable:1,"User-friendly":1,Politically:6,Ilva:2,ascended:16,"heart-wrenching":1,shy:162,pricetags:4,uprisings:4,she:53,mixologists:4,Incrementally:6,solicitous:1,flogged:16,"Two-year":1,Stroking:8,sho:106,"home-building":3,accuses:20,halving:8,WEFA:2,typhoons:4,differs:20,Williamstown:2,accused:271,Tartary:2,"configuration-data":1,"add-ons":4,Hergesheimer:2,Chiriqui:2,Dimaggio:2,horribly:6,arraigned:32,horrible:3,neither:379,INCREASING:8,kidneys:4,Wipe:39,"BellSouth-LIN":40,McAlinden:2,spares:18,Campo:2,Recall:42,extolling:8,seemed:32,spared:54,Remain:39,Race:11,"middle-level":1,ailerons:4,mujahideen:64,Tunnard:2,undetermined:1,Poling:2,meritless:1,Revlon:11,"at-risk":1,anchormen:4,Masson:2,"year-before":1,Headlines:4,"High-grade":1,Chabrier:2,franchise:25,Tabuchi:2,"quantity-based":1,feeblest:51,Regalia:2,"Middle-Eastern":1,"new-mown":1,Immigration:2,conjoined:17,chimiques:64,MOTOR:2,"do-nothing":1,Raider:2,isolating:30,banshees:4,"well-paid":1,Pretend:39,"SEC.":2,ghoulish:1,Repayment:2,Lutsenko:2,capering:8,Logistics:2,owne:1,Tired:7,contexts:4,supervened:17,ripen:33,Avocado:2,chanceries:4,Tires:57,"disaster-subsidy":1,Rusty:2,"non-surgical":1,inaccurately:6,owns:20,cornering:8,"bi-modal":1,Cyprus:2,TAKING:8,ArgoSystems:28,Troops:123,Laverty:2,interrogate:39,plundered:17,"channel-zapping":1,disclosures:18,orbital:3,Dresdner:2,calamitous:1,incumbent:3,Machelle:2,Viareggio:2,"post-reapportionment":1,Repairing:8,rightfully:6,Lucassen:2,compared:54,Sabo:2,wrongly:6,Saba:2,Grimes:2,Norsk:2,"freight-transport":3,Throwing:8,Meinckian:2,Damonne:2,HEUBLEIN:2,Superman:2,She:251,taller:136,"non-communists":4,schnooks:4,"tell...":102,Blaber:2,Perasso:2,centralizing:30,"incentive-spurred":1,spells:72,Waldenbooks:2,"stock-picking":3,"fine-tune":39,deposits:18,deuterated:16,Broner:2,"drug-supply":1,Yasser:2,sonic:1,wooed:54,definitive:1,whims:4,swami:4,fats:4,historic:1,Autolatina:2,Attributes:4,"dental-products":4,Inspectors:4,"break-the-rules":1,sizes:18,worthwile:39,Burchuladze:2,sized:85,tablespoons:4,pinging:8,hydrolyzed:17,lends:20,Hoaps:2,Albrecht:2,Gerbig:2,rims:4,Teipel:2,goats:4,Babylon:2,Seizes:20,"price-and-seasonally":6,Institutio:2,retirements:4,Rhythms:28,medieval:3,Practically:6,Leavenworth:2,expansion:22,Strobel:2,imperfectly:6,choked:32,Aslanian:2,Pyrometer:2,eatables:4,U:11,celebrations:4,"Ford-Kissinger":2,citron:1,mushrooms:4,Foxx:2,brusquely:6,secretive:1,winging:8,Nakamura:2,agin:206,Rameau:2,Dunlop:2,Dayton:2,Lorca:2,CGE:2,figuratively:6,inner:1,CGP:2,TEDs:4,"R.F.":2,Perin:2,FED:2,prophetic:1,Campitelli:2,"government-encouraged":1,administrators:4,Daschle:2,fraternities:4,Hesse:2,Harrows:28,Industrial:40,apiece:218,annuities:4,millstones:4,projecting:8,Seashore:2,gagged:54,Cacao:2,Industrias:2,mechanics:4,Semel:2,Alla:2,boulevards:4,Tasaki:2,Fellows:4,"impulse-related":1,"build-ups":4,Ally:33,torrid:1,savagely:6,Appell:2,Telecommuncations:28,"Mexico-watchers":4,indiscretions:4,"deficit-reduction":22,Depicted:17,bronchi:4,Allday:2,Date:47,Healey:2,tightest:380,unsteadily:6,Chambers:130,retirees:4,Savage:40,Engraph:2,"Bernstein-Macaulay":2,"coal-preparation":1,protest:44,Toledo:11,intermingle:33,IJAL:2,"up.":6,fronts:4,Liverpool:2,Klein:2,Lunge:2,onstage:163,"high-coupon":1,Grocery:11,"pro-environmental":1,Auschwitz:2,"clear-channel":3,"dealer-managers":4,advocating:8,Queks:28,snowflakes:4,"well-structured":1,nursery:22,greenish:1,fortiori:64,"closed-circuit":1,swoons:4,bimonthly:1,Strasbourg:2,concise:1,Negative:1,Hounds:28,evaluated:54,twiddled:16,Affected:17,desirous:1,"hang-tough":1,"now-ousted":1,unskilled:1,Anselmo:2,evolving:8,centric:1,"baby-food":1,Items:4,never:381,Artisans:4,"S.I.":2,"second-hand":1,cardboard:22,Georgano:2,Fragile:2,buckled:112,groveling:55,piercing:30,Soering:2,tolerating:30,golds:4,"weapons-grade":1,Lilley:2,astute:1,Archangel:2,hunch:25,elaborated:17,"second-deadliest":1,dehumanize:39,elaborates:20,"near-monopoly":22,Telemundo:2,Binning:2,drowned:81,"college-educated":1,Armies:2,Corresponding:8,Heuvelmans:2,exited:32,Loire:2,misfiring:8,Insisting:8,Removed:17,tell:42,"slam-dunk":25,expose:182,Yuen:2,Hibbard:2,loony:1,"A.D.":382,shelters:4,"counter-trade":1,Esrey:2,inhabited:45,directorial:1,Vittorio:2,rights:4,Cornwallis:2,Vittoria:2,"Japan-made":1,frantic:1,endow:42,"Short-term":66,summarizes:20,barbers:4,"U.s":2,Ricken:2,squirting:8,CALLS:28,give:182,TransAtlantic:2,Humphries:2,gleefully:6,artifically:6,crystallized:32,"U.S":383,Phoenix:2,Gaisman:2,braids:4,Jack:2,Mokaba:2,butting:8,"U.K":2,"U.N":2,Hashing:47,peopled:17,Neesen:2,Connolly:2,Prickly:1,Quinton:2,"do-gooder":3,Shlomo:2,summarize:39,muddling:8,ambivalent:1,suppressants:4,DEFERRED:1,"U.S.A.":11,"electronic-test":1,"under-50":1,gulling:8,"anti-miscarriage":1,"cold-cuts":4,"L.B.":2,cofactors:4,Sharps:2,amplifying:8,overstepping:8,elucidations:4,Sharpe:2,panthers:4,partisans:4,indispensible:1,"private-label":3,"three-week-old":1,soaking:384,DIASONICS:2,"anti-lobbying":1,Bobby:2,decions:4,Detail:2,underscore:256,Frederik:2,Weakens:20,"Capitol-EMI":2,"quarter-century":22,calibrating:8,Sapanski:2,Goose:2,Fortescue:2,Milan:2,"less-cyclical":1,Tacker:2,motoring:8,enthusiasts:4,Dressed:17,Wow:106,RNAs:4,Charts:4,Waleson:2,Woo:2,taught:54,Bogner:2,Dresses:4,Dresser:2,conjectures:18,COOPER:2,"pig-infested":1,freelancers:4,anesthetically:6,ranted:16,HMS:2,conjectured:17,Tractarians:4,appraisers:4,HMA:2,Warners:4,"primitive-eclogue":1,Emeryville:2,Ricans:56,Weigand:2,Crowder:2,"over-emphasize":1,"tax-rate":3,greasy:1,logging:27,childishly:6,ist:64,prodigal:1,perforated:1,cellars:4,loud:97,"skilled-nursing":1,grownups:4,Dorothee:2,Sovereign:2,hoot:78,hook:25,Villanova:2,Folks:4,Attali:2,goblins:4,ECA:2,"financial-futures":4,"Hanover-Pebble":2,"non-realistic":1,ECI:2,"business-like":1,ECU:2,Wittgreen:2,Dainippon:2,ECP:2,"non-duck":1,"twenty-first-century":1,steamily:6,mutate:39,"bed-and-breakfast":1,nondefense:3,Boonton:2,Geroge:2,swells:18,"mid-thirties":4,Purchases:57,"M.A.":2,cruelly:6,depraved:7,Galina:2,normalizing:8,matter:24,Colin:2,childlike:1,espouse:33,"clerical-lay":1,"Louisiana-Pacific":2,Floor:11,pistons:4,rivers:4,Flood:31,expeditions:4,Poets:4,"power-hungry":1,boaters:4,"it...":102,demoralizing:8,subcontracts:4,Khin:2,Instructions:123,Dirks:113,wrists:4,psychologically:6,replenished:54,Ludlow:28,repatriate:42,Adelia:2,"government-set":17,Trenton:2,Dynasts:28,greased:32,Dynasty:11,SHOPPERS:4,greases:4,moviemakers:4,"half-implemented":1,Marketers:57,Karsner:2,calculable:1,"Bay-front":1,Alvan:2,"evil-but-cute":1,resisting:8,unleashes:20,paralleling:8,Amana:2,MicroGeneSys:2,folded:45,Wight:2,Wolverton:2,integrate:42,"slender-waisted":1,Unitours:28,somnambulates:20,Comics:28,stop:182,Cawley:2,libellos:4,cracks:18,"HEWLETT-PACKARD":2,coating:21,thermoforming:1,comply:42,Gloucester:2,briefer:12,POUNDED:16,Sally:11,thrusts:18,"weed-killing":1,briefed:54,consanguineously:6,Straniera:2,Clapping:8,"Joint-research":1,ethical:1,Roark:2,Kempinski:2,Juanita:2,Viag:2,Wangemans:28,revenuers:4,"auto-strop":1,tantamount:1,unbanning:55,Bucknell:2,Yards:2,Eurofighter:2,juxtapose:33,deflecting:8,Podolsky:2,were:385,pickins:4,richest:51,modeling:122,picking:55,"white-clad":1,mucky:1,horsemen:4,prudential:1,subverting:8,Abnormal:1,Refcorps:4,Reasoning:47,Devoted:17,appeared:32,Jouvet:2,Snow:11,administrations:4,Wentworth:2,Constantin:2,turnouts:4,dusting:55,unsloped:1,particulars:4,recognised:16,Cagayan:2,ethers:4,obtained:386,Stout:2,quantities:4,sunshiny:1,Marines:65,individualists:4,misquoted:17,Huskers:28,Boothby:2,profitably:6,Sellars:2,near:387,apocryphal:1,neat:1,DESPITE:127,Tigard:2,Enel:2,anchor:24,"power-starved":1,"automotive-emissions-testing":1,traditionalistic:1,is:388,it:53,Dante:11,strivers:4,Ruder:2,in:389,textiles:4,sanitized:17,"two-product":1,convulsively:6,overstated:54,bottles:18,Fergeson:2,anoint:39,"insulin-dependent":1,bottled:103,Berettas:4,overstates:20,Chilblains:4,phobias:4,Pencils:4,astringent:1,"no-man":1,declaring:8,redevelop:39,Neihart:2,Bramwell:2,lonesome:1,"Hard-Hearted":2,Truck:11,"quarter-inch":1,potentials:4,Craftsmen:111,Air:11,stiffened:32,"pari-mutuel":1,Pelican:2,practiced:45,BeechNut:2,timeouts:4,Pucik:2,Sakaguchi:2,Sonja:2,Vasvani:2,squamous:1,practices:18,Minicar:1,"Packaged-goods":4,Thornburg:2,facto:390,Sulaiman:2,sporting:5,identify:42,Drivon:2,supernormal:1,facts:4,Shenzhen:2,"bed-type":1,Mattone:2,regarded:81,Rotunda:2,defray:39,moody:1,beholds:20,Holch:2,Freya:2,darlings:4,converged:16,Albania:2,vapors:4,Lucca:2,reconsidering:8,"low-down":22,Alvise:2,Targo:1,esthetics:4,"svelte-looking":1,signposts:4,unexplored:1,anodes:4,"package-delivery":1,"Crude-goods":4,Klauber:2,"first-three":1,Denverite:2,Lifeco:2,Maddry:2,"red-turbaned":1,Covering:2,Triandos:2,daytime:3,"RNA-based":1,"motor-control":1,societyonly:6,JMB:2,unmagnified:1,nonpoisonous:1,Basse:2,"friend-of-the-court":1,"bank-backed":1,"car-safety":3,Baileefe:2,Swedes:41,Sweden:2,firemen:4,bury:42,unendurable:1,BECHTEL:2,zur:64,"B.F.":2,Conceptually:6,untenured:17,gabbing:8,"sleep-disorder":1,unwillingly:6,Technicians:65,"incentive-maximizing":1,Lappenberg:2,Idal:2,Rindos:2,correspondents:4,Tomash:2,"RJR-style":1,Tomaso:2,formerly:6,"pilot-training":3,"gut-Democratic":1,Hymowitz:2,intellectual:3,Krutchensky:2,Playback:2,Cosmetics:56,frightened:81,"Behind-the-scenes":1,snorts:20,magnetisms:4,catlike:1,"per-share":3,pitons:4,Cantoni:2,lurid:1,placeless:1,unknowable:1,"drought-stricken":1,garments:4,Convenience:129,powerfully:6,Survey:11,Bauer:2,massacred:32,obsequies:4,Melzi:2,tryin:21,"Semi-Tech":2,hikers:4,bellwether:22,unvarying:8,Ratners:2,Gaithersburg:2,Rayon:2,separated:391,sticks:18,sidestep:42,"all-woman":1,sticky:1,Conner:2,fashioned:54,stirrings:4,gowned:1,nonpareil:1,Jeffersonian:1,alerts:72,"half-witted":1,breakwaters:4,"co-insurance":3,ribbons:4,dies:72,diet:25,diem:147,Colloton:2,died:32,derail:42,Roxy:2,pessimists:4,Vattern:2,"Giants-Houston":2,Mitterrand:2,sobering:30,Changeable:1,mobilized:54,gunslingers:4,skip:42,jingling:8,"low-temperature":3,"option-based":1,"tourist-delivery":1,skim:392,Sneed:2,skid:393,Evening:11,deceitful:1,"paper-goods":4,Sylphide:2,Hopley:2,Broadcast:2,answered:32,phonemes:4,"better-than-average":1,string:25,PriMerit:2,"mass-reproduced":1,HUD:2,Explicit:1,geometrical:1,"pay-in-kind":3,Wildwood:2,Where:394,LANDOR:2,Recess:25,LAWYERS:123,staples:4,banished:54,"Health-care":1,miniaturized:17,Lesbian:2,banishes:20,humanistic:1,"two-timed":17,Lorlyn:2,Venn:2,recooned:16,extenuating:8,pregnancies:4,"frequent-flier":1,"trading-related":1,"less-liquid":12,Loesser:2,NESB:2,Grads:4,Macassar:2,ere:127,"overcoming...":102,photosensitive:1,leatherbound:3,Masterpiece:2,"half-forgotten":1,unrestricted:1,Quack:395,Damian:2,Sensenbrenner:2,Coward:2,Variations:65,Seaton:2,Uniondale:2,snagging:8,Leath:2,Brendle:2,"Theatre-by-the-Sea":2,"bids...":102,Ikegai:2,souring:21,crusading:8,Matrix:2,OBrion:2,Hammarskjold:2,professorships:4,Alkylate:2,Viss:2,pollute:39,"Bridgestone\\/Firestone":2,SunCor:2,Visx:2,scenarios:4,Guadalupes:28,Visa:11,balks:20,armchairs:4,brashest:51,"grow-or-die":1,Inhalation:2,McGonagle:2,"airline-acquisition":1,satirizes:20,Grisoni:2,subsistent:1,Leinonen:2,"performance-sharing":1,Brae:2,Brad:2,calorimetric:1,Bran:2,antismoking:1,Benelli:2,"balk.":33,veterinarians:4,Pallo:2,repressing:8,Children:56,deceased:338,Oatnut:2,Caring:8,"cost-saving":1,proscriptive:1,Baruch:2,Lamma:2,FOOTNOTE:2,pawning:8,coincident:1,Dutch:396,dimwits:4,"sell-order":1,normalize:39,strainin:8,rays:4,Dahmane:2,"slim-waisted":1,tilt:70,necklaces:4,ping:25,pine:78,chemical:22,till:397,HUH:2,skates:4,pins:18,Hubba:106,thermometric:1,Oher:2,whodunnit:106,designed:54,scalloped:1,"millionths-of-a-second":1,Hippophagique:2,Furs:2,Hendl:2,"twice-around":1,Fury:11,maybe:6,unobvious:1,carriers:4,Gaussian:1,fluent:1,provide:42,thorny:1,pickets:4,thorns:4,Feared:17,cute:1,"daily-wear":1,"free-buying":1,"Item-Categories":28,"Medicaid-covered":1,Walzer:2,cuts:208,CAHNERS:2,Utahans:28,"Merrill-Lynch":2,Budieshein:2,"Jean-Rene":2,Kozak:2,plagiarized:17,salves:4,"Iranian-backed":1,serenaded:54,"Wage-settlement":1,extirpated:17,alluvial:1,nouveau:1,finance:24,captivated:45,shatter:39,sooner:398,Usines:2,"state-sector":1,misinterpreters:4,"budget-sensitive":1,aspirations:4,Kestner:2,killed:54,ornraier:68,Bonniers:2,Stores:41,Storer:2,Wakeman:2,unwashed:1,"Hispanic-market":1,peasant:22,Southwestern:40,"stock-quote":1,"thin-margin":1,Amstel:2,"Borrioboola-Gha":2,Lux:64,Luz:2,Misconceptions:4,Luc:2,gurgling:8,aloof:97,Touted:17,Steamship:2,socialized:54,flintless:1,undulate:42,socializes:20,Ehrman:2,papers:4,Maureen:2,Mastering:8,nudes:4,unless:127,Siamese:2,gagging:8,democracies:4,"cholesterol-lowering":1,Whelen:2,"follow-on":1,Farrar:2,Deciding:8,Already:6,bared:16,widths:4,drizzling:30,listings:4,proffered:32,Haden:2,"foreign-entry-limit":1,rewrites:20,Windex:2,exotic:1,"water-borne":1,Braye:2,scandalized:32,Didion:2,"test-like":1,ISI:2,XIII:2,ISO:2,Anthong:2,ISC:2,Rotorex:2,"restaurant-industry":1,scandalizes:20,rivets:72,incompetently:6,vermeil:1,Pringle:2,plains:4,fellowships:4,Botts:2,helpings:4,Midsized:1,"less-than-alarming":1,massaged:17,accurately:6,SEMICONDUCTOR:2,videodisks:4,cartels:4,Maclaine:2,framers:4,gotta:399,LifeSpan:2,venture:205,commends:20,Autobiography:2,Jockey:2,stoicaly:6,"fifth-consecutive":1,"E.E.":2,plunge:24,"France-Germany":2,Arnolphe:2,backwoods:152,"Tollman-Hundley":2,"Dworkin-Cosell":2,personalized:14,pranks:4,"present-time":1,Ballhaus:2,Articles:65,Ravenscroft:2,"non-prescription":3,investigations:4,weakwilled:1,"anarchist-adventurers":4,Strawberry:2,indwelling:30,contrasts:18,conspicuous:1,Magarity:2,Teich:2,beachfront:22,refunds:4,fills:20,wreathed:17,Arrayed:17,"sixteen-year-old":1,Kasavubu:2,fille:64,massacres:4,Galena:2,Monastery:2,Blohm:2,trotted:32,obstructive:1,"Ltd.":11,Hoyvald:2,filed:54,contemporary:3,Graduate:129,Gato:2,Gati:2,Gate:11,lieder:3,"pluri-party":1,Payless:2,Stapleton:2,histories:4,Cafferarelli:2,nickels:4,Saltzburg:2,"anti-program-trading":1,savoring:8,underage:1,Leaves:4,spraying:21,framing:21,Toodle:2,Midway:305,"third-straight":1,reading:21,snorted:16,Yuli:2,Wycombe:2,ruddy:97,Malmesbury:2,Soeren:2,monarchists:4,"anti-conservation":1,innovative:1,Exhibits:28,Sigourney:2,unsecured:1,Hopefully:150,"cost-benefit":1,steadfast:97,Stena:2,Forgive:39,"performance-oriented":1,whereabouts:19,metabolites:4,rads:4,Ferrier:2,"Houston-Montgomery":2,checks:18,oversized:7,deletions:4,Barkley:2,killing:5,Competitors:4,Froelich:2,pillared:7,"top-rated":1,"pre-World-War":1,"Thirty-eighth":2,"cents-per-hour":1,indelicate:1,Tours:28,holders:4,decimals:4,forecasting:122,Elizabethan:66,Kuse:2,Whitlock:2,possessive:1,Zellerbach:2,Tigue:2,perpetuating:8,Corash:2,Sotnikov:2,quadrupling:55,arts:4,caricature:25,"all-too-familiar":1,localisms:4,shortening:55,constituencies:4,"trading-oriented":1,"business-communications":4,Allstates:2,Taxpayers:56,Picus:2,spills:18,Selwyn:2,those:246,Minoru:2,Minors:4,disconnected:14,Discounts:4,Malmo:2,Fixture:2,"aircraft-engine":3,"client-service":3,Fallick:2,deformities:4,awakened:54,endothelial:1,Basketball:11,"corn-buying":1,Florian:2,endowed:45,rubbing:55,undertones:4,"camp-made":1,kindnesses:4,middle:22,Koyo:2,ferns:4,Puffing:8,"family-run":1,wimping:8,Hoyt:2,insofar:400,same:1,intermediary:22,autonomously:6,Peabody:2,gaspingly:6,Leroy:2,Message:47,devours:20,munch:39,disincentives:4,Canticle:2,Defaults:4,Smeal:2,Mortars:4,exluding:8,discernable:1,intermittent:1,Tamerlane:2,DOONESBURY:2,Phibro:2,Rubega:2,imprint:63,Hiss:2,adrenal:3,Chavis:2,dipped:32,Genelabs:28,Rattner:2,Carmody:2,vivify:39,"Jeep\\/Eagle":2,Ethics:401,Banquet:11,liken:33,presentable:1,Carat:2,"Concert-Disc":2,admitting:8,dimensioning:13,"F.S.L.I.C":2,Moosilauke:2,blankets:18,noncompetitively:6,nosy:1,CPTs:4,Artfully:6,nose:25,neuronal:1,Pathology:2,Enron:2,Dress:59,specifies:20,Democracy:11,alternated:32,Ned:2,Neb:2,Nec:64,specified:81,Nev:2,New:272,Net:117,"car-dealers":4,gross:104,Intermoda:2,Lempesis:2,"PS\\/2":2,Gogo:2,Valspar:2,Artie:2,Gogh:2,Barokocy:2,buttressed:17,Lycidas:2,Doritos:4,underwriters:402,cliques:4,thefts:4,broken:14,Kyne:2,buttresses:18,"highest-priced":51,squarely:6,Husky:40,roaming:55,pettinesses:4,"California-bashing":1,tease:182,othe:1,Kalin:2,arty:1,MANY:1,organizers:4,"check-processing":3,Dimensions:130,Functions:28,Contacts:28,"not-strictly-practical":1,"then-current":1,Xydis:2,Kwasha:2,"theories...":102,Baring:2,"state-private":1,Larsson:2,Conductor:47,daubed:16,Nest:2,Greiner:2,brute:22,fates:4,Suffering:8,Nesi:2,Luth:2,"two-tiered":1,Counsel:11,mornings:4,countersuing:8,proportionately:6,Transition:47,"DIAL-A-PIANO-LESSON":2,"anti-infectives":4,wiping:8,collosal:1,staircases:4,Walker:2,Gutfreund:2,Castle:11,"municipally-sponsored":1,belated:1,"bomb-proof":1,"Cigarette-vending":1,"HUD-supervised":1,"co-chief":3,anemated:17,Nouvelle:2,"sudden-end":1,SHOULD:190,solvents:4,Commissioning:8,undereducated:1,Blues:41,Allgemeine:2,COFFEE:47,TuHulHulZote:2,leaked:54,croons:20,VISX:2,VISA:2,lifetime:22,"go-betweens":4,Nieman:2,PKbanken:2,Miringoff:2,bragging:55,unaccustomed:1,Drilling:11,"definition-specialization":3,students:4,Vadehra:2,Balanchine:2,deriving:8,obsesses:20,Houten:2,elastomers:4,tackle:95,revolve:42,remote:1,Restructure:33,Intangible:1,"Secretary-designate":2,"home-health-care":1,"high-balance":1,nutrient:1,"counter-trend":1,starting:5,bottoming:8,growling:8,Trish:2,Gallitano:2,Voute:2,suburban:1,alerting:8,Wayne:2,"half-owned":1,"b-reflects":20,Euler:2,reluctant:1,Transcaucasian:1,Fremont:2,investigational:1,Bologna:11,Fulghum:2,selloffs:4,Beame:2,shifters:4,rambunctious:1,Vehicles:65,overdone:17,Holliston:2,scour:149,Ventured:2,extractors:4,benevolent:1,Course:2,Rector:2,mistaking:55,incompatibles:4,Surety:2,Buds:28,fauteuil:64,titled:81,MacGregor:2,"JSP-supported":1,Benzell:2,knitted:45,titles:4,Budd:2,Unam:2,Wycoff:2,CHECKUPS:4,Liberties:111,"high-profit-margin":1,Ellington:2,sociologically:6,Grievances:74,Eskandarian:2,unreported:1,HENRI:2,pupated:17,K:403,venerated:17,HENRY:2,biweekly:3,drubbed:17,fatter:12,search:44,"feminine-care":1,Pumwani:2,"emergency-claims":4,Nissei:2,fatten:42,pathological:1,Devin:2,Devil:11,Scriptures:41,bathe:39,Warriors:74,transit:22,seceded:17,debugged:17,Yaddo:2,establish:42,barked:16,"issues-such":1,Conoco:2,"Hard-surface":1,rotogravures:4,"water-holding":1,Transfer:47,OUR:404,achieving:8,OUT:324,BOTH:246,Glamorous:1,Boeing:116,"career-bound":1,FEDERAL:40,brisk:1,dammit:405,Chukchi:2,Racal:2,maharajahs:4,Schwartau:2,"income-paying":1,intercepted:32,Comany:2,clergy:19,Tagalog:2,"ex-jazz":1,compare:95,buttress:39,ionizing:8,socal:1,AHSC:2,"gray-looking":1,wisely:6,"Ex-Presidents":4,Carpenter:2,Stacy:2,Cabanne:2,Balkanize:39,Stack:2,heartwarmingly:6,galactic:1,charms:18,petite:1,servicers:4,"capital-intensive":1,"slangy-confidential":1,bouffant:3,petits:145,Jepson:2,Sophie:2,Cadbury:2,bloom:24,Sophia:2,"coffin-sized":1,coax:39,unreservedly:6,coat:25,cemeteries:4,Prawiro:2,What:406,finalized:54,"U.K.":129,Pearlman:2,Intermark:2,"M\\/I":2,clumsily:6,Wham:106,Whah:293,Ranking:21,Pinola:2,Morehouse:2,render:42,Leyland:2,Marietta:2,clamor:174,bereft:7,infantrymen:4,"time-temperature":3,Gullah:2,minting:8,Dorcas:2,walls:4,Hansmann:2,Seelenfreund:2,detach:39,Mogadishu:2,Afrique:2,Dist:2,Chung:2,token:3,Kronish:2,"under-owned":1,Dish:2,McDonnell:11,"upper-echelon":1,clamp:63,"paper-company":3,clams:4,"low-pass":1,"securities-laws":4,dullish:1,implicated:17,Granville:2,Pattenden:2,allusions:4,"sub-minimum":1,ides:4,initiatives:18,reinstating:8,Lawyers:56,HOLDINGS:28,Popkin:2,numbingly:6,Outlet:2,avenge:39,Rocketdyne:2,Ukraine:2,Rosalynn:2,stridently:6,Parsons:2,Anytime:6,Inacio:2,"Chin-Use":39,Fenerty:2,Magoon:2,Capwell:2,Squeezed:17,Pelham:2,Yankees:46,"junk-bond-financed":1,Raines:2,Rainer:2,"Tasaki-Riger":2,settlers:4,omit:42,Nazzella:2,Gettleman:2,Homeowner:2,Inna:2,Kieslowski:2,McKinley:2,Pullman:2,CONVICTS:20,"soot-stained":1,bullies:72,Officers:407,smaller:136,Salerno:2,Gilbert:2,unfunnily:6,Lipton:2,"Saltis-McErlane":2,"energy-hungry":1,Slight:1,totally:6,entreated:16,Pediatric:2,beardown:1,"matching-fund":1,Oberreit:2,ravings:4,madmen:4,"three-fifths":1,pickups:4,"Philco-sponsored":1,workbenches:4,interactive:1,Jurong:2,Waterville:2,plead:42,Schmetterer:2,Somerset:2,collateralized:7,Kozloff:2,schizoid:1,Virginia:2,extracted:54,Joffrey:2,listeria:64,RPM:2,Beefsteak:2,Hanwa:2,equipping:55,"medium-sized":1,depths:4,Communications:41,"self-correcting":1,Anatomically:6,pocketing:8,squelched:17,handscrolls:4,loners:4,Encouraging:8,squelch:33,ASDIC:2,Armageddon:47,Regime:2,lumping:8,Helms:2,antisubmarine:1,Bixby:2,"tax-backed":1,Fiechter:2,persuasively:6,"mother-naked":1,Sensor:2,"goose-stepping":8,gangs:4,philanthropists:4,Takihyo:2,"J.T.":2,anachronisms:4,freedoms:4,generators:4,Whitlow:2,cysts:4,Marry:2,"Barre-Montpelier":2,Marra:2,promptings:4,Reich:2,Kingdome:2,slingers:4,cumulate:39,"real-life":1,"twiggy-looking":1,Smartt:2,Hebrews:28,reputable:1,"Op.":11,McGurk:2,tended:112,Wright:2,individual:3,tender:205,Tuchman:2,enveloped:17,Collaborative:2,multiparty:22,manumitted:17,TCU:2,TCR:2,halves:18,Plunking:8,envelopes:4,TCI:2,TCF:2,Isaiah:2,"technical-ladder":1,interfaces:4,"constitutional-law":3,analogues:4,overvalued:212,trespassed:54,"cleaned-up":1,Belshazzar:2,Preambles:4,"understand\\/adopt":39,combustibles:4,"mid-February":2,Grieco:2,"PW4060":2,Rossi:2,"Krauss-Maffei":2,Jenner:2,Sidney:2,Counselors:28,Ladehoff:2,Payline:2,suppressing:8,"seven-inning":1,create:42,TROUBLES:4,"Ever-more":6,Lousie:2,"fast-frozen":1,Senora:2,Lubbock:2,Ritchie:2,hopefuls:4,Servant:2,flavorful:1,Casino:11,"pre-1933":1,understand:42,realms:4,Dycom:2,Pozen:2,"Sino-British":1,Ding:2,unify:39,enchanted:14,Dino:2,bill:24,bilk:39,Salpetriere:2,Dinh:2,prolusions:4,Defending:8,"non-Dow":2,Incorrect:1,vaults:4,shoddy:1,cadge:33,tribesmen:4,arenas:4,Monarque:64,saline:22,headless:1,Zimmer:2,leafed:16,Carrying:8,copying:21,Martinique:2,dishonouring:8,"F.D.":2,"less-hurried":1,Barksdale:2,Motor:11,itch:63,praising:8,"Sinhalese-dominated":1,"most-obvious":1,citadels:4,"Bermuda-based":1,"information-display":3,sandals:4,Coffin:2,knowed:17,"grown-up":3,Figura:2,Langbo:2,Figure:169,percentages:4,"high-tech-sounding":1,y:11,revising:8,absolving:8,Considering:8,echoing:8,makeshifts:4,Bremen:2,Cycads:4,Chojnowski:2,Sheckley:2,zodiacal:1,diversions:4,Overstreet:2,excites:20,shouting:55,bridal:1,Alida:2,Scholars:65,"co-managed":81,matters:18,Enhance:2,Sigoloff:2,Reedy:2,Orthodoxy:2,"gut-flattening":1,friezes:4,Rawlins:2,"protein-restricted":1,Chosen:2,peddlers:4,examples:4,"quarter-point":22,"fee-shifting":1,ferroelectric:1,Bretz:2,aerobic:1,Brett:2,per:408,pen:25,Simplex:1,"best-performing":186,peg:256,anarchic:1,"F18s":4,chartists:4,Roulac:2,"all-night":1,"I.N.D.":2,Bledsoe:2,chanting:55,Elsie:2,chargeable:1,defrayed:17,engorged:17,Banfield:2,Lovingood:2,robbers:4,conciliatory:1,beans:4,Privately:150,"industrial-gas":1,"C.A.I.P.":2,Datsun:2,reckonings:4,Helps:20,STUDIES:4,uncaused:1,"meet...":102,Tbilisi:2,Sleepwalkers:4,forward:173,Punjab:2,doctored:17,Mikulski:2,weaker:136,interagency:22,nodular:1,"re-enacting":8,juxtaposed:17,dueled:16,juxtaposes:20,"brain-damaged":1,"pre-sale":1,Debban:2,Doing:116,Soon:6,"floppy-tie":1,Kuhlke:2,Ohio:2,unequally:6,MVP:2,Accident:11,"life-like":1,Jenco:2,spoonfuls:4,omens:4,"revenue-law":3,"semi-catatonic":1,Versailles:2,TXO:2,fogged:1,Sumarlin:2,swamp:25,Rieke:2,plugged:54,bronchioles:4,Fiberglas:10,excrete:39,Andrews:2,Ebaugh:2,transferors:4,Cardenas:2,"seventh-biggest":1,Tonkin:2,Intercede:39,aggregates:4,fished:17,fervently:6,Branagan:2,oceanthermal:1,retranslated:17,Zapfel:2,amused:81,Scots:56,Scott:2,Worldly:150,boathouses:4,Nordine:2,"out-of-bounds":1,Haldeman:2,Intrepid:2,dogged:81,Meagher:2,"front-page":3,dioxins:4,Saint:2,Isle:2,Islander:2,Someone:47,waterflows:4,Weir:2,Orly:2,granular:1,Wein:2,Weil:2,Ernesto:2,Hempel:2,inject:42,Bridewell:2,confounding:8,Berets:28,Telesis:2,Dirion:2,resonant:1,subservient:1,samovar:147,Brumbaugh:2,burlesques:4,Abbot:2,mobilize:39,Cesar:2,Select:59,unpublishable:1,Turkey:11,ovens:4,hardening:8,educators:4,tinny:3,Smalling:2,bloodshot:1,agricolas:64,"high-sulfur":1,WHAT:409,WHAS:2,campuses:4,"Machinist-union":2,Johnnie:2,Supplemental:129,Weakest:51,raccoons:4,Seize:59,Biscuit:2,Backstage:6,nonexistent:1,intercept:24,"puffed-up":1,Cheil:2,Unida:2,jockeys:4,"Jeep-brand":1,Unocal:40,Petrone:2,Storeria:2,DISAPPOINTMENTS:4,resurrect:42,compellingly:6,Papandreou:2,"four-family":1,Conmel:2,"fourth-quarter":3,Kapadia:2,Chancellorsville:2,Blossom:2,SMU:2,"Interstate\\/Johnson":2,facades:4,Manila:2,"ups-and-downs":4,oval:3,resolutions:4,SMD:2,"name-dropping":47,Status:47,"Barcelona-based":1,Statue:2,Declaration:11,McCaughey:2,Galway:2,Vasady:2,"Single-subject":1,Kattus:2,ashamed:1,informally:6,Bulletin:11,"misty-eyed":1,grandmotherly:1,RIGHTS:4,Period:47,nullified:54,"do-everything":1,celiac:1,Inconsistent:1,Impressions:4,"steel-related":1,Shining:116,"pool-care":1,CONSULTING:2,whitehaired:1,Comroe:2,Goldenthal:2,"flour-milling":3,"second-year":1,effectively:6,Galata:2,Starks:2,spruce:25,"debt-heavy":1,regions:4,druther:39,fete:39,Graciela:2,Ridgway:2,Fryar:2,aft:34,carvers:4,Cliff:2,Technical:40,annexed:16,"market-research":22,"frenzy-free":1,UKRAINIANS:4,"Japanese-South":2,"cost-finding":1,Gazing:8,Freightways:74,primers:4,italics:4,Livestock:47,Healy:2,MacDowell:2,Resist:39,cuvees:4,"retail-banking":3,fallback:22,Hausman:2,HUGO:2,deliberative:1,Dunbar:2,"in-house":34,Pherwani:2,hugged:16,lands:18,"Shangri-La":2,"bow-tied":1,Hermann:2,"American-trained":1,Hindle:2,"band-wagon":1,sic:410,Schedule:2,lampposts:4,acres:4,resorting:8,"farm-trade":1,"Presbyterian-St":309,Pembridge:2,unnerved:187,Stricken:2,phagocytes:4,repassed:17,"Hard-hitting":1,GMAC:2,institutionally:6,doffing:8,Churpek:2,Adobe:2,Unemployment:47,ahdawam:106,"Baltimore-Washington":2,Uyl:2,slipping:8,vivified:17,LaRosa:2,reintroducing:8,Previous:1,Ghost:47,Whaley:2,thwart:411,transported:54,Whaler:2,programmed:14,"Sino-Soviet":1,Mercers:28,programmes:4,"most-valuable":1,Rotterdam:2,Westland:2,defend:42,Sussex:2,Tut:2,"magic-practicing":1,opining:8,electronics:91,red:3,Magwitch:2,Aitken:2,retrieved:54,consortiums:4,soreheads:4,Theodor:2,chattily:6,EXPECT:33,trends:4,Buffalo:11,cured:54,"Multi-employer":1,cures:18,"taxable-fund":1,Operators:113,strippers:4,STEEL:2,plastics:4,"dusty-green":1,embarrassed:45,hurdle:25,Birdwood:2,rusticated:17,afield:6,"Hans-Ulrich":2,splotched:1,"data-processing":22,"non-Christians":111,ripples:4,realistically:6,rippled:16,wistfully:6,"less-traveled":1,Warhol:2,Kilty:2,Deacon:2,environmental:1,sporadically:6,"absent-minded":1,"Battle-tested":1,Pesaro:2,"non-executive":1,slack:412,Sabha:2,"Low-flying":1,splotches:4,MATTEL:2,boyish:1,Engineer:2,Moiseyeva:2,Lech:2,"two-year-long":1,patting:8,discussions:4,Rudnick:2,thyroidal:1,handsets:4,"X-linked":1,Nugent:2,lawmkers:4,"safety-related":1,"debt-reduction":22,KnowledgeWare:2,Airways:111,Goldman:2,Hitching:8,Flem:2,"program-related":1,Flea:2,Flee:33,Nikes:28,"HOME-SALE":1,hazel:1,Cheri:2,"tartan-patterned":1,WACS:28,Matteson:2,"tax-writing":1,"W.E.":2,heartening:1,Illustrated:2,Mohamad:2,discursive:1,absurd:1,trobles:4,planks:4,Sansui:2,Irrawaddy:2,overhangs:4,Straighten:39,rusted:1,Unconscionable:1,debacles:4,hydroelectric:1,Yoshimoto:2,anthropic:1,Complaints:4,SOUTHERN:2,"Sgt.":2,chairmanships:4,Reversal:2,"bat-roost":1,thrived:32,Matsui:2,"can..":190,SAVINGS:74,gardenettes:4,timing:21,thrives:20,areas:413,crabs:4,"Back-of-the-envelope":1,"king-sized":1,excreted:17,"Pistol-whipping":127,Oriental:66,dissolves:20,"Ca.":2,farthest:380,heightens:20,subsidizing:8,Symes:2,yearning:21,scholastic:3,refrained:32,Talmadge:2,Boil:39,kinesthetically:6,Dnieper:2,exploited:54,"respiration...":102,cheaters:4,"ex-reporters":4,purses:4,pursed:16,July:2,Avedisian:2,grumble:149,Sabinson:2,jeopardizing:8,propulsions:4,Axa:2,Axe:2,Gagarin:2,"professional-design":1,optional:1,Crary:2,Juergen:2,instant:22,robberies:4,provincial:1,Olshan:2,predispose:42,dBase:2,conquered:54,passing:5,glorious:1,UMW:2,alphabetically:6,unventilated:17,Savannakhet:2,Magpie:2,seashores:4,laugh:24,"Run-down":1,Weird:66,instigators:4,piecewise:6,Lithuanian:1,Salmon:2,"Electro-Optical":2,Corot:2,perennially:6,asymmetrically:6,arises:20,perplexed:7,"America\\/International":2,arisen:17,atmospheric:1,censuses:4,contradicted:32,Appignanesi:2,Blockbuster:2,"Chicago-centric":1,Jacobs:2,likable:1,prosy:1,Jacoby:2,"paper-manufacturing":1,"CD-type":1,Bellcore:2,Wrongs:4,haunches:4,portray:42,Cristiani:2,untoward:1,progressing:8,indistinguishable:1,Car:11,shuttle:22,Herzfeld:2,Orden:2,Lombarde:2,material:22,Lombardo:2,Dusseldorf:2,Lombardi:2,bullying:8,assessing:8,flew:16,"ante-bellum":390,Order:11,besmirch:39,uncombable:1,center:414,"around-the-clock":1,roughhewn:1,overshadowed:54,Globally:6,retiring:30,supercharged:1,oops:106,publicize:39,restuarant:1,fixated:17,reupholstering:8,Ragsdale:2,Sirot:2,"super-absorbent":1,Seaman:305,"Abscam-indicted":1,books:415,surpass:42,seats:18,Scraps:4,anye:1,raves:20,field:139,"area-wide":1,Kamehameha:2,bluebonnets:4,bench:25,adminstrative:1,"foreign-policy":22,raved:16,"Comparable-store":1,Aqazadeh:2,Greenwood:2,tests:18,haltingly:6,worlds:4,testy:1,repulsions:4,condescending:13,Mennen:2,Tarantino:2,incompletely:6,"newly-appointed":1,porous:1,commencements:4,"Darvocet-N":2,corporativists:4,Laundered:17,BVI:2,works:18,lucidly:6,imprints:4,"graphic-arts":4,mushroomed:54,Mineola:2,majeure:80,deviants:4,Editor:11,legislated:54,Mukherjee:2,"job-hunters":4,whined:16,Hardball:2,Mike:2,est:64,encouraging:30,obsessed:14,dunes:4,"biotechnology-based":1,"cents-off":1,Wenger:2,kidnappers:4,panes:4,"lumpen-intellectual":1,manifesting:8,"electrical-safety":1,Glenham:2,Newarker:2,Lousy:1,snapped:112,ORDERED:17,"well-informed":1,InterVoice:2,"E.M.":2,"radio-controlled":1,distilling:55,smartly:6,"sea-transport":1,"comet-like":1,Rucellai:2,Financially:6,"large-deposit":1,Questions:283,Bessie:2,baseless:1,"Law-enforcement":3,rendered:54,varitinted:1,"State-Local":2,"public-health":3,rhythmical:1,billions:4,lacked:32,weekends:4,eine:64,"calorie-heavy":1,"earnings-driven":1,enticed:16,"Owens-Corning":2,"growth-controlling":1,AGAIN:6,buy:416,"co-anchored":17,Der:2,Losses:123,Paperboard:11,but:417,shute:39,Dei:87,Del:2,Den:2,Deo:2,"first-floor":3,Deb:2,Dec:2,Dee:2,Def:2,embargo:25,misty:1,princes:4,Salant:2,frugally:6,breweries:4,Albertine:2,Salang:2,minutes:4,moralizing:30,windless:1,airmen:4,Meantime:150,"wide-eyed":1,Hofstad:2,Dunkirk:2,Euromarket:2,Marches:28,Shvets:2,virtual:1,shearing:21,Worker:2,Altogether:6,Phase:47,"I...":102,Aca:2,"greater-fool":200,Annihilate:39,Ace:11,brainlessly:6,Jerebohms:2,"glacier-like":1,Act:11,Zhitkov:2,McFall:2,Scotchgard:2,"solution-type":1,contraceptive:3,deluxe:1,Ashurst:2,"test-preparation":1,winders:4,AYER:2,Scandal:47,augmented:81,"low-load":1,Pacemakers:28,"state-supported":1,represent:42,"twice-extended":1,revoking:8,Uhl:2,poorest:51,Grumman:2,Additionally:6,"non-consolidated":1,pride:78,Merabank:2,placated:17,Unpopular:1,nonresident:1,Pilgrim:11,Pilgrin:2,Industry:47,Metzler:2,every:246,softened:112,upstream:218,Durenberger:2,Industri:2,Steak:2,Presence:2,Archipelago:2,"Hanover-Misty":2,Hemphill:2,"make-work":3,MacNamara:2,joggers:4,Batchelor:2,Shareholders:123,picketed:32,cooperative:3,"Arab-Israeli":1,"Express-Buick":2,Sokolov:2,weddings:4,estimates:18,Rash:2,crocketed:1,persuade:42,Cosgrove:2,freehand:97,estimated:81,Burroughs:2,Obsolescence:2,allowances:4,"third-class":1,Continuous:1,sheeted:1,"morbid-minded":1,Hachuel:2,smidgins:4,conduct:24,streetcars:4,injections:4,pats:4,Indonesia:11,bearishly:6,Holiness:47,stared:32,"market-oriented":1,transmits:20,Ferraro:2,Ferrari:2,contentions:4,bulks:20,stares:4,Ferrara:2,reversals:4,Herwig:2,Coddington:2,auction:25,Hoof:2,proportioned:1,Pieces:113,Engaging:8,characterizing:8,monogamous:1,"pay-back":1,vacations:4,Idrissa:2,"tie-in":22,touchdowns:4,visibly:6,visible:1,Kids:130,Leech:2,Minority:11,Housed:17,discrepancies:4,Houses:4,"government-mandated":1,Interfunding:2,Grimesby:2,acceded:32,microwavable:1,corporis:64,casualties:4,Stanger:2,mg:22,ma:147,Alternatives:2,"WBBM-TV":2,Bramalea:2,my:418,quarrel:25,mnemonic:1,Sark:2,"high-sounding":1,"then-Treasury":66,Gutfreunds:28,Motel:2,Sara:2,Sidewalks:28,DJS:2,Sary:2,Mardis:2,"predicting-machines":4,end:419,Fundamentals:57,idosyncratic:1,frescos:4,Jeep:47,Kreisler:2,"that...":102,"six-thirty":1,charging:55,Handelsbanken:2,Essentially:6,VCRs:4,unanimously:6,"unit-making":8,SMART:1,Maxwell:2,arbitrate:39,Praver:2,enervating:8,scout:25,Cattle:123,Seidler:2,Wintour:2,imbued:17,Selected:420,"non-identity":1,"half-brothers":4,reformers:4,fads:4,Dahl:2,Leonid:2,canto:147,stingrays:4,expectations:4,Keats:2,Keath:2,"egotist...":102,fade:95,Lauber:2,"tall-oil":1,KRAFT:2,"Bristol-Myers":2,"cost-containment":22,Sturdy:1,Gotta:216,"carrier-based":1,roost:63,disparaged:32,Geffen:2,Injun:2,Odysseus:2,"Russian-dominated":1,DBL:2,Laguerre:2,DBC:2,mothers:4,chuck:25,Sting:2,Moritz:2,filling:55,yakking:8,Morita:2,skeletal:1,DBS:2,woolgather:39,lasting:30,Lanese:2,signing:55,"Messerschmitt-Boelkow":2,Hodge:2,fussing:8,magnets:4,Hippocrates:113,Katonah:2,vade:64,"market-opening":1,"co-produce":39,"two-hour":1,"metal-processing":1,Imprimis:2,"Telephone-operations":4,got:421,Telecussed:16,scopes:4,Rugged:1,"Circus-Circus":2,hand:422,AFP:2,glisten:44,periodontal:1,inexpensive:1,Mountain:11,priorities:4,labored:112,Embassy:11,Sisulu:2,cooperating:8,Pharmics:2,Nicolas:2,already:6,Working:423,Leverett:2,Incredulous:1,selfless:1,sober:1,categorize:39,Overlords:28,Flaherty:2,solicitations:4,"shareholder-owned":1,"physician-reimbursement":1,euphoric:1,"six-time":1,ballistic:1,Wolstenholme:2,analgesic:3,ASSOCIATION:11,Fur:11,servo:22,Seldom:6,abates:20,took:16,Londontowne:2,Patterns:4,Sunset:2,dBASE:2,Fun:2,abated:54,nonpartisan:1,whereby:293,Features:28,"near-Communists":4,"foul-smelling":1,unsentimental:1,"more-attractive":1,cowhands:4,"steady-Eddies":4,Pocasset:2,Adele:2,lifesize:1,Dimly:6,fashion:25,Dying:116,overleveraging:8,"Hanover-Lucy":2,talking:424,staggeringly:6,"conditioning...":102,Etsuro:2,"paid-in":1,doughty:1,Jasmine:2,balling:8,"R.V.":2,localities:4,"mid-twentieth":1,"hot-dog":1,Absent:425,"near-identical":1,CWP:2,Collective:2,humbly:6,Priestess:2,rumble:78,Communistic:1,centering:55,tabling:5,prostitute:25,peers:18,romantick:1,epistolatory:1,"anti-leak":1,Anaconda:47,silencing:8,Collateralized:2,"special-purpose":1,reorganize:39,arrayed:17,McDonough:2,EDISON:2,"all-lesbian":1,studiously:6,snickers:4,satiric:1,Furniture:11,rinsing:21,Soifer:2,Manute:2,novelists:4,blinking:426,baffle:39,Gingl:2,Weymouth:2,demagogues:4,Armco:2,intersperses:20,"Watson-Watt":2,"spice-laden":1,Raimer:2,Disabled:427,interspersed:17,Rodrigo:2,Guterman:2,Burritt:2,thwarting:8,strainers:4,"lay-sisters":4,demented:7,Galax:2,taxied:16,Braitman:2,discriminating:30,Herron:2,amalgamated:17,postride:1,interviewing:55,luminescent:1,loopaholics:4,Clarke:2,Statistique:2,Shuxian:2,Roderick:2,volumetric:1,Unificationism:2,Impco:2,Unificationist:1,byways:4,flowering:21,improve:42,Danco:2,"slow-spending":1,Dance:11,"make...":102,layered:17,Kaye:2,"Supra-Expressionism":2,towels:4,BSPP:2,"double-breasted":1,Destler:2,unfurled:17,Malacca:2,stirringly:6,foully:6,Chance:47,trampled:45,diskettes:4,fantasies:4,Hucksters:2,"metal-coil":1,snips:4,"automotive-lighting":3,usurped:17,"oil-spill":22,Budlong:2,"auto-industry":22,dissatisfactions:4,Mahone:2,lessen:39,Medibank:2,lesser:136,Domingos:2,teachers:4,"office-furniture":1,inexplicit:1,Gross:40,Eurodebentures:4,nightgowns:4,usable:1,Simms:2,Attridge:2,"operator-services":4,Cramer:2,"four-page-a-minute":1,Stahl:2,wound:428,yahoos:4,BOGGS:2,RECORD:2,complex:3,Vieux:2,"CBS-owned":1,"Fla.-based":1,Investors:92,Minkow:2,pampering:8,twiddling:8,Spectra:123,constricting:8,"laissez-faire":390,Pedestrian:2,Hilton:2,vilifies:20,Ethyl:2,"highway-construction":1,feuded:16,Williamsburg:2,APPLIANCES:28,uncooperative:1,Herder:2,Intercepting:8,Raghib:2,Wing:2,Wind:11,hairless:1,interprets:20,"Guttman-type":1,actresses:4,"quake-hit":1,D:429,Tichy:2,Gabriel:2,"timber-dependent":1,Content:1,reapportion:33,Rudolf:2,apart:430,"anti-Newtonian":1,intertwined:14,clearheaded:1,remanding:8,Lichtenstein:2,"M.I.M.":2,anciently:6,"all-Negro":1,Educate:39,overnighters:4,reunifed:17,sanction:24,gangbusters:4,Hillsborough:2,Nippon:2,untried:1,meters:91,precautions:4,Harrigan:2,embodied:54,"non-commissioned":1,Xanax:2,RATTLED:16,reinvest:42,Looming:8,prejudicial:1,cooped:338,Repeatedly:6,Brezhnev:2,Implores:20,"cash-laden":1,ironclad:1,erodes:20,Tegal:2,"multi-agency":3,"Oakland-Alameda":2,CJS:2,"lookee-loos":4,landowners:4,nontransferable:1,"agriculture-chemicals":4,Leobardo:2,shards:4,Kafka:2,catkins:4,Lucretia:2,cooled:81,"self-splicing":1,Foss:2,Novacor:2,"scandal-plagued":1,paddies:4,primitive:1,Guthrie:2,froze:32,preambles:4,Lebans:2,tapings:4,taffy:1,Survive:39,jeunes:64,Dodger:11,interlopers:4,lags:72,Baldy:2,unpretentious:1,"grain-trading":1,"anti-racketeering":1,"full-clad":1,head:414,medium:22,Sundays:41,preschoolers:4,heal:39,"world-leading":1,Suckow:2,Liffe:2,heat:44,hear:42,Ewe:2,"free-spirited":1,nodded:32,counsel:44,Uruguay:2,compositional:1,"high-powered":1,bargain:25,danseur:64,adore:149,"advertising-conscious":1,"co-opted":17,mustering:8,Electronic:40,southernmost:1,adorn:42,sinful:1,"one-thousand-zloty":1,"non-diva-like":1,simulations:4,pigpens:4,"M8.7sp":2,Nauman:2,Chiefs:111,willingly:6,Poo:2,Monteath:2,isomers:4,"futures-related":1,incestuous:1,EST:431,"new-loan":1,ESP:2,Heebner:2,CyCare:2,ESB:2,reassuringly:6,Unconscious:2,withhold:42,Denlea:2,oeufs:64,backward:218,Contributions:4,Suvorov:2,forgeries:4,counseling:21,Choral:2,brokerages:4,MasterCards:4,Iacocca:2,fusing:55,Buddy:2,Cilluffo:2,"S.D.":2,contemplating:8,flowered:103,trustees:4,Waverly:2,sceptical:1,Rosoff:2,Kafaroff:2,Haole:64,"formed-tooth":1,broadly:6,Countries:41,thawed:17,hattes:4,Hargrave:2,"drug-abuse":3,roving:8,"eighteen-year-old":1,Indebted:1,denounced:32,Muratore:2,Wollman:2,denounces:20,"money-market":3,Hsieh:2,Rederi:2,inland:218,"off-off-Broadway":40,"nonresidential-contracting":1,Diebold:2,Durakon:2,bake:82,Jana:2,allout:1,Theatre:2,"El-Abed":2,manikins:4,"up-market":1,Reeves:113,Mirek:2,retroviral:1,Maneret:2,eliminations:4,Trackdown:2,Annuity:2,"plant-location":1,Khomeini:2,dissipates:20,meteorites:4,Liechtenstein:2,"Jan.":128,groups:4,dissipated:54,"lonely-hearts":4,"Rocket-powered":1,unidentified:1,pearly:1,PEOPLE:4,pearls:4,culpa:64,ratable:1,"aircraft-engine-maintenance":1,kerygma:64,abounded:16,Talmud:2,Raikin:2,"patronage-free":1,morals:4,Catholicism:2,Interlake:2,AuCoin:2,"Trend-following":1,Brissette:2,Vasso:2,Hungarian:66,Radzymin:2,criteria:4,Gillett:2,Affidavits:4,"blacked-out":1,Gintel:2,Vivacious:1,chocolate:22,Gesualdo:2,Groundwater:2,Push:44,Carsten:2,Crystallographic:66,"trick...":102,districts:4,predominating:8,slightest:51,Gerolamo:2,corrupted:17,parings:4,amazons:4,newsletters:4,"sky-tapping":1,stroke:25,Lenwood:2,Manderbach:2,requirements:4,Marketing:432,Cartoonists:2,minivans:4,innumerable:1,Considered:17,Flyer:2,Gallagher:2,"Wage-price":1,speaks:20,Elkhorn:2,irrational:1,rites:4,motorists:4,Dinosaur:2,outlandish:1,tipped:32,evoke:42,nannies:4,Powers:2,Hashimoto:2,reposition:39,"flat-bottomed":1,misbegotten:1,compressing:8,"fire-control":1,persons:4,Asleep:6,glancing:30,refund:25,Feiner:2,undervalued:45,fangs:4,accolades:4,"in-store":1,worship:44,blocked:81,segregationists:4,rebalancing:8,Qualls:2,Sierras:28,"bead-like":1,Falco:2,coordinated:45,Factories:57,"quick-tempered":1,sparing:30,Highness:2,Turtles:28,"M.T.":2,appraised:17,HRT:2,radicals:4,gourmet:22,warranted:81,HRH:2,HRE:2,feathered:7,HRB:2,Clams:4,Josephus:2,Bolduc:2,Mentum:2,belts:18,slumps:72,Gotterdammerung:2,"fourth-level":1,"fair-trade-related":1,"lower-paid":1,Campaigning:8,Gilroy:2,Heathrow:2,Airbus:2,weighted:103,nettlesome:1,"weight-control":1,pillaged:16,blacked:17,"Britain-U.S.":1,Forks:4,reckons:20,"quake-torn":1,sustains:20,obfuscations:4,Shakespearian:1,Grabbing:8,disposables:4,someplace:43,Ciporkin:2,Bodner:2,"more-natural":1,Coudersport:2,ENG:2,Keilin:2,ENI:2,Deppy:2,obituaries:4,"light-headed":1,"half-moons":4,explorers:4,Leuffer:2,Julian:2,Delray:2,"Glass-Steagall":2,teammates:4,deprogrammings:4,Industrialistes:2,FDA:2,Expenditures:57,"mind-altering":1,Slobodin:2,Nairne:2,sovereign:202,soaring:30,Scripp:2,Forrestal:2,Geographical:1,disinterested:1,surveys:18,Johan:2,"R-Bergen":2,Espagnol:2,Parkways:74,circa:6,Dove:47,Biosite:2,"interest-rate-sensitive":1,hug:44,Whitten:2,tempers:4,greatcoated:1,huh:106,inexpressible:1,inexpressibly:6,Cortex:2,"ill-advised":1,circulates:20,Cortes:2,petrified:7,DeLay:2,demythologizing:8,tawdry:1,Tryon:2,diplomatic:1,DOWNEY:2,Lawful:1,Gagne:2,"EX-OFFICIALS":4,"broken-nosed":1,armored:7,Hirsch:2,underprepared:1,"right-to-work":1,PolyGram:2,stolid:1,Vollard:2,overjoyed:1,exploratory:1,Sadie:2,Schuller:2,Capitalizing:8,Watercolor:2,dining:122,Strouds:2,Maltese:40,hyperemic:1,Selve:2,"stock-basket":22,sterns:4,Munro:2,Mickie:2,precluded:112,Sheiner:2,visitors:4,Gandhi:2,bioengineers:4,encasing:8,Carpentier:2,"tax-cut":3,considered:45,Morin:2,Tensile:1,Protectionism:11,"Post-Serialism":2,Habla:2,vetted:17,Comecon:2,revamping:55,"once-proud":1,"yen-bond":1,southwestern:1,Triland:2,Syrdarya:2,SOUTH:2,woolen:1,interessant:64,Veraldi:2,"half-full":1,Rauch:2,crimp:63,"low-lying":1,hooting:1,Pune:2,narrows:20,Piazza:87,Puna:2,Piazzo:2,boilers:4,"seventeen-inch":1,"art-dealing":1,substitutionary:1,indulgences:4,tailor:63,"food-shop":1,primates:4,LXi:2,"a-Discounted":433,Laurentiis:2,mewed:16,Shantung:2,Officielle:2,Mirage:2,Foulds:2,"non-writers":4,Loggia:2,BELL:2,Fontana:2,ancestral:1,violated:32,sleepily:6,simmering:8,violates:20,Voyager:2,fails:72,Frayne:2,charters:18,seers:4,Trunk:47,Bangalore:2,sackes:4,Loopholes:4,receivers:4,"best-run":51,"self-serving":1,disdainful:1,floundering:30,"bang-sashes":4,"package-sort":1,dutiful:1,Ga:2,Songs:65,Falegnami:2,"discussions..":4,poivre:147,successes:4,darin:1,Phamaceuticals:28,energies:4,Imbrium:2,Replies:4,Smiling:8,bunks:4,authoring:8,Ransom:77,Flaws:4,"physician-patient":1,"after-effects":4,robotics:4,Leatherneck:2,sampling:21,Luftfahrt:2,Sciences:111,initialing:8,unleaded:1,poll:70,Events:123,runaway:344,squaring:8,lifes:4,Kroczek:2,Bacillus:80,"high-profit":1,withstanding:8,Downgrades:4,filmmakers:4,gaited:1,"Fall-in":2,carryforwards:4,hardly:6,Downgraded:17,WAO:2,Kortunov:2,WAC:2,Wedged:17,stupendously:6,Shevack:2,virutally:6,WAZ:2,cresting:8,WAS:16,WAR:11,paying:30,libelous:1,McLeod:2,amend:42,"two-income":3,Reservists:28,straitjacketed:1,Someday:43,shrieks:4,Preseault:2,trackless:1,"SS-24s":28,heelers:4,snaking:8,Shingles:4,clutter:25,"buy\\":1,ETHICS:4,Ozick:2,Alyce:2,resentful:1,"Generic-Drug":1,"Cen-Tennial":2,unrolled:1,coarsely:6,shifts:18,Brotherhood:2,Beaverton:2,"less-popular":1,Silver:213,Konowitch:2,Kevlar:2,booths:4,Pullmans:4,ninefold:97,producers:4,Idle:1,"half-staff":1,weaknesses:4,CANDIDATES:4,threaded:17,Struthers:2,"insurgents.":4,"Asset-management":1,Amazonia:2,Tigrean:1,"C.O.G.":2,"seventy-two":1,Byting:8,guided:45,Krapp:2,"laser-read":1,guides:18,Cowan:2,overlapped:54,assemblages:4,Tropicana:2,Dome:2,wall:24,Scores:57,"anti-profiteering":1,scheduled:45,POTABLES:4,loaned:54,Tale:47,heterozygous:1,coaxial:1,Crafts:28,JVC:2,Tall:1,"left-hand":1,sheared:7,unnerving:30,Sonatas:123,"Asset-backed":1,Revised:157,Finally:6,Datatronic:2,arrays:4,"junk-LBO":1,Something:47,surgicenters:4,recalls:72,Boasts:20,outpaces:20,"mileage-based":1,Studds:2,Army:11,fluttered:16,Roslev:2,Arms:46,"Brierley-controlled":1,Capote:2,outpaced:434,sociologists:4,tonally:6,"top-secret":1,adjuncts:4,floured:17,tintable:1,incidentals:4,Sacrifice:47,"already-tense":1,fusty:1,Ceil:2,nutty:1,Disc:2,quitting:8,calmed:32,Orchard:2,Wilmington:11,communicate:42,nudist:1,Venetian:40,Roch:2,calmer:12,Rock:2,flattest:51,Ramillies:2,"writer\\/producers":4,on:435,"tear-filled":1,ol:436,oh:106,of:221,reinforcing:8,Inverness:2,subdues:20,Souvanna:2,op:11,amber:3,Jordon:2,Gebhard:2,Backers:4,garner:42,"accountants...":102,abrogate:39,Aronson:2,Bowen:2,strictly:6,Tailors:2,hazards:4,strict:1,racist:3,"Export-Import":2,"flaunt-your-wealth":1,extolled:16,"Hospital-Cornell":2,condone:39,equated:54,Verses:57,jua:64,ABCs:4,soprano:22,strenuous:1,subcontractors:4,applying:8,"street-corner":1,"pork-barrel":3,gherkins:4,Joanna:2,"bulb-making":1,"anti-alcohol":1,"five-hundred-year-old":1,Enemies:4,castles:4,"south-of-the-border":1,Imelda:2,Armenians:28,"x-There":437,revamps:20,lightly:6,drawin:8,politics:91,unteach:39,beds:4,Pentagonese:2,Doman:2,Physicist:2,Slides:4,Slider:2,unneeded:1,dismayed:14,"auto-parts":176,ICI:2,Suffers:20,ICN:2,ICM:2,ICC:2,ICA:2,ICG:2,ICE:2,fetid:1,polyisocyanates:4,Franyo:2,Cromwellian:1,ICS:2,Cliffs:74,unconstitutionally:6,illusive:1,Caplan:2,Azlant:2,Surplus:40,Eminonu:2,Nurses:4,multimegaton:1,odds:4,unscathed:1,GATT:2,Likely:97,rimmed:249,Primarily:6,Fame:11,Theoretically:6,underutilized:17,migrated:54,Edison:11,"Japan-U.S":2,sluggers:4,Faint:1,Toto:2,Tots:74,surgical:1,migrates:20,unmoved:1,"long-run":1,Hondius:2,longstrained:17,defaulters:4,"Neo-Romanticism":2,Custodian:2,assuage:39,participants:4,diluting:8,Mirsky:2,program:24,depending:8,"fill-in":1,positivists:4,woman:25,equivocal:1,sparkplugs:4,"thin-lipped":1,induce:39,Raeder:2,Classes:91,Morvillo:2,soles:4,rebounds:72,NPL:2,"writing-instruments":1,"wave-travel":1,unlike:438,Penang:2,sanctify:39,grandfather:25,Aiding:2,Kolsrud:2,vibes:4,Motorcycle:2,Pearlstine:2,conflicted:32,coxcombs:4,Digate:2,"chimera-chasing":1,"Oce-Van":2,rats:4,Thieme:2,Proudfoot:2,rate:24,"anti-contamination":1,rata:390,CALLIOPE:2,"surprise-filled":1,sutures:4,Headly:2,ophthalmologists:4,Betty:2,Eveready:2,barbecue:25,interlaced:14,guns:18,prosaic:1,KISSINGER:2,LOAN:11,Walitzee:2,overactive:1,Redeemer:2,retraining:21,bullishly:6,"vice-presidents":4,Ogonyok:2,misinterpret:42,caravans:4,ornithological:1,reincorporating:8,Accomplishments:4,sculptural:1,drunkards:4,Grayson:2,reshufflings:4,"timber-state":1,thankfully:6,Wendel:2,"still-raging":8,"should-be":1,controversialists:4,Wendee:2,Acres:2,screens:18,impolitic:1,"major-league":1,feedings:4,Aspenstrom:2,Arctic:40,viscoelastic:1,forisque:64,piggyback:25,Pardus:2,Katangans:28,converters:4,Intek:2,Intel:2,CNCA:2,golly:106,drips:20,draughts:19,Inns:28,Aden:2,Inter:2,draughty:1,"end-of-school":1,debates:18,bystanders:4,Expanding:8,policemen:4,recast:39,debated:54,Wade:2,ROUGH:1,bugaboos:4,Wada:2,evangelicals:4,"Baa-2":66,"Baa-3":117,cosmological:1,"Baa-1":117,Intergraph:2,Rainey:2,arise:42,cultivate:39,"anti-monopoly":1,offspring:19,Arps:2,"packaged-goods":152,HomeCare:2,Bonus:2,"highest-rated":1,cleansing:21,motels:4,nitwits:4,Tufts:2,cytokine:439,"record-high":1,emulate:39,Pointers:4,Atkisson:2,Laue:2,Laux:2,indomitable:1,Perluss:2,capitalize:39,rotund:1,WTVJ:2,Davises:28,Everyone:47,Whittenburg:2,automobiles:4,"export-bound":1,strutting:30,specifying:8,agnostics:4,"State-financed":1,rentals:4,Linus:2,unhip:1,Siepi:2,schillings:4,McN:2,Interesting:1,anachronistically:6,Brazos:2,underwhelmed:17,"Anglo-Jewish":1,paunchy:1,concentric:1,Arias:2,Smithfield:2,Zhaoxing:2,utilizes:20,Lindner:2,"sky-reaching":1,Ohira:2,Fitzhugh:2,glide:42,environmentalist:22,Carnegie:2,nonproductive:1,"deficit-ridden":1,muddied:14,"khaki-bound":1,"fully-diluted":1,Bandar:2,speechless:1,units:4,evaded:54,Tualatin:2,playthings:4,Karos:2,bigger:136,"Amadou-Mahtar":2,CORNFELD:2,"non-automotive":1,Masons:41,utilized:54,Scottish:40,"short-sellers":4,nab:39,aspens:4,Display:25,Lobar:2,Militant:1,modernized:81,"knock-out":1,Rhea:2,seditious:1,"Chaplin-like":1,marketplaces:4,Third:440,disbelieved:16,"at-market":1,insignificances:4,Samuel:2,"pasted-in":1,puckering:8,Nightly:2,PHONE:2,Wazir:2,postponements:4,"base-stealing":1,Deane:2,hailing:8,Malt:2,gut:25,experimenting:8,Doolittle:2,"Year-round":6,Deans:113,Mali:2,attendant:22,Male:10,Bloch:2,Block:11,Addicts:4,coaches:4,Rachelle:2,"soil-bearing":1,THIEVES:4,"high-horsepower":1,turne:39,solidly:6,unhealthy:1,"four-sided":1,Mendoza:2,rankles:20,SUSPECT:1,defects:4,Refsum:2,pedal:63,Drugstore:11,overrode:16,moan:39,rails:18,collar:25,prescient:1,Cummings:2,Newer:12,unchecked:1,"frustrated...":102,Viewers:4,Cinzano:2,Crabs:2,pains:4,SINCE:127,"public-opinion":3,Ottawa:11,Arcilla:2,rustlings:4,Crabb:2,Plumbing:2,punters:4,Nut:2,NOVA:2,Delvin:2,gangling:1,undiplomatic:1,populating:8,mismanaged:16,Oliver:2,asham:1,Olivet:2,outstanding:1,Longhorns:2,"second-look":1,delisted:54,Beryl:2,"flight-to-quality":3,Quiney:2,hexagonal:1,semiliterate:1,Masillon:2,Cayman:2,interferes:20,DiIulio:2,lackadaisical:1,"four-person":1,empirically:6,Drexel:11,Parsifal:40,interfered:32,Helpline:2,Internaional:2,reckon:149,pillage:63,measures:18,reunited:17,"eight-and-a-half-foot":1,SOFTWARE:2,Paddock:2,measured:45,Pieta:2,queasily:6,grams:4,"time-hotels":4,Zen:2,Zel:2,dissolved:54,aquifers:4,Gloversville:2,Zey:53,Perfect:66,"link-ups":4,asphalt:22,Knill:2,"Walters-Donaldson":2,Majority:2,Genome:2,costing:55,Alexeyeva:2,aggravate:149,nevertheless:6,Instructors:4,Troyes:2,Conaway:2,Whitby:2,Kandinsky:2,Courcy:2,ILA:2,furnaces:4,revered:14,Epicurean:1,compliments:4,"Kaddurah-Daouk":2,oaks:4,"non-edible":1,"crime-busting":1,PHH:2,keenest:51,imponderables:4,PHS:2,paradoxical:1,consciously:6,SHORT:66,Parkersburg:2,"X-rated":1,Urielites:28,Homemakers:2,Derails:4,Boniface:2,efficacious:1,"move-up":1,nailed:54,Cutrer:2,slapped:32,Codevilla:2,Jubal:2,"incentive-reduced":1,Colmer:2,Hyannis:2,orbiting:8,"C.D.":2,cancelling:8,"Principal-only":1,Ednie:2,"days.":91,Janus:2,succeed:42,venturers:4,ciliates:4,Willetts:2,orchardists:4,license:24,Oxley:2,MHz:4,Christianson:2,Priscilla:2,"Non-Smokers":2,sojourners:4,breastworks:4,"vehicle-production":1,ARMs:91,"off-balance":1,slots:4,"Mountain-Hi":2,Snook:2,bolster:95,Filippo:2,"Co-op":47,Zomax:2,illumined:16,apprehensively:6,pinpoints:4,Revson:2,illumines:20,"yielding-Mediterranian-woman":1,sending:55,Blanton:2,vaguely:6,Pioneers:65,Suitors:4,"R.L.":2,"obsessive-compulsive":1,corrode:149,"employer-provided":1,Reily:2,parachutes:4,tweaking:55,Kobe:2,Shannon:2,welding:21,QUOTABLE:1,Sumitomo:2,"Jones-Imboden":2,interlacing:8,leans:20,vacuumed:16,Izaak:2,"computer-driven":1,inspirationally:6,Jellinek:2,OKC:2,"Idaho-based":1,"India-born":1,tradedistorting:1,arrives:20,Southmark:2,wallops:20,Hanford:2,Manzoni:2,"world-commerce":1,Prokofieff:2,domains:4,arrived:32,Generalissimo:2,"government-bond":22,Bookies:4,robust:1,lower:441,Backe:2,equalled:17,persuasive:1,bounces:72,Rubeli:2,deliverable:1,Starkey:2,Terrace:2,bounced:32,Broxodent:2,Semmes:2,Handmade:2,competitive:1,inactive:1,Poindexter:2,Scripture:11,"export-boosting":1,"pin-curl":1,Freida:2,advisers:4,rowed:16,exclusively:6,rocklike:1,Filed:17,Estancieros:4,Visker:2,civilizational:1,Criminologists:4,Baranovichi:2,Daihatsu:2,Definitely:6,unwomanly:6,Carrie:2,jots:20,Kenny:2,Salida:2,"citizen-sparked":1,flabbergasted:7,Stellar:2,Bertelsmann:2,Aventine:2,McMaster:2,"anti-smokers":4,"social-issue":1,"less-than-successful":1,folders:4,tiefes:64,streaming:8,BRNF:2,grenades:4,"snake-rail":1,"bushy-tailed":1,capos:4,tampers:4,"Raoul-Duval":2,Lawsuit:2,Tarnopol:2,Guar:1,jumpy:1,beleaguered:7,jumps:18,Harriton:2,Arragon:2,Altimari:2,Payton:2,powerplants:4,Procedural:1,Decries:20,volunteering:55,Kimsong:2,Bovine:2,Essex:2,huffed:16,Subsystems:4,Skopas:2,Bears:41,mustached:1,mustaches:4,Hillsdown:2,Beare:2,Beard:2,"hope...":102,introverted:14,tumble:25,creaked:16,Every:246,oddities:4,mountains:4,Gainesville:2,Gautier:2,"Boy-Marquita":2,"taxpayer-related":1,Grenada:2,deployed:54,McNabb:2,Perdido:2,"higher-profit":335,drinkers:4,Harrity:2,Loan:11,geneticists:4,stalking:442,"N.R.":2,ingrates:4,Elan:2,dazzlingly:6,"more-conventional":12,sunnier:12,LBOs:92,beguiling:1,saturate:39,associated:45,Calenda:2,"Management\\":1,Underground:1,associates:18,Singh:2,Bagatelles:28,"laser-type":1,Amstrad:2,inequities:4,"AIDS-prevention":1,Recently:6,Laguna:2,Elected:17,jackboots:4,develops:20,Laughing:2,weigh:42,Making:229,Letterman:2,Andean:66,potters:4,"non-enforcement":1,"bills-measures":1,weights:18,carved:81,proximate:1,Natrona:2,Cranes:65,Panamanian:66,"high-blood-pressure":1,"computer-service":1,"whiskeys``":133,"J.D.":2,"long-bodied":1,Launching:8,Dodge:2,Shere:2,Hazlett:2,deterministic:1,Duclos:2,Jovian:1,Sarason:2,stable:3,Buyer:2,Odyssey:11,Mort:2,Brassnose:2,overlaps:20,Superintendents:4,talons:4,"much-publicized":1,reinterpret:39,bounding:8,drinking:122,incoherent:1,"off-price":1,"cloud-flecked":1,reappearing:8,"three-judge":1,"synthetic-leather":1,Silbert:2,Waymouth:2,Newgate:2,State:443,Atorino:2,Fung:2,Maryland:11,"Two-Stem":1,checkers:4,frankfurters:4,"radar-eluding":444,outlasted:16,Simmon:2,Henderson:2,"mutual-aid":1,Airports:113,gaily:6,Shantz:2,Light:99,pushing:5,slated:54,swirled:16,MAINTENANCE:2,"Stat.":11,confiscating:8,"Job-Bias":1,Maddalena:2,"low-sugar":1,Yalagaloo:106,ELDERLY:1,Ismaili:2,warnings:4,nervous:1,Eckhardt:2,Amicable:2,payoffs:4,reds:4,examinations:4,slinging:8,"preferred-stock":3,Treat:63,redo:39,Jergens:2,Rafales:28,rackety:1,Ernie:2,"Treasury-bond":1,"No-Tobacco":2,rackets:4,Erling:2,Pyrrhic:1,Andreotti:2,Sunda:2,Intervenes:20,Count:445,"by-passed":17,Rodriquez:2,Chuck:59,"pale-blue":1,Exclaimed:16,Trains:4,distractedly:6,"by-passes":20,Taiwanese:446,Balcor:2,amethystine:1,lumber:78,Ptolemaists:4,purports:20,befits:20,Mollica:2,spying:55,Feature:2,"mega-problems":4,hemlines:4,summers:4,"one-branch":1,decaying:30,Pilgrm:2,Aldermen:4,buoyant:1,lamechians:4,unites:20,Shows:18,Patriarchy:2,Assn:2,Snellville:2,Philo:2,Bairnco:2,masks:4,"Gummi-Werke":2,Complying:8,cheaper:136,Bouchard:2,Moonan:2,straps:4,ferret:63,Stubblefield:2,batter:25,spreads:72,saturated:81,Manzi:2,unfortunates:4,Moslem:40,"Time-Mynah":2,mathematicians:4,Wachtell:2,Warwick:2,Gargan:2,Gildersleeve:2,takings:4,frailties:4,Shell:11,gadflies:4,sackings:4,"anti-nuclear":1,nostalgic:1,estimating:55,Factorex:2,permanent:1,inspecting:8,shores:4,orange:3,Queens:74,eastward:6,bumbling:13,Hawks:41,christianizing:8,makings:4,Strukturbericht:2,adversely:6,Carnarvon:2,satellites:4,impaired:14,unpublicized:1,Greenland:2,Swaggart:2,transitional:1,profound:1,Pro:87,retorted:16,"Jose-Maria":2,"this.``":133,Subject:22,mitral:1,studios:4,psychopharmacological:1,Octet:2,mothered:17,"iron-willed":1,Octel:11,Angevine:2,Which:447,clinching:8,Moreau:2,Flustered:1,"studio\\":1,Hawke:2,"exotic-Hawaiian-locale":1,hollering:30,whitening:8,Historians:57,Buying:210,apses:4,Raimu:2,Neptune:2,Wilsonian:1,promptly:6,Fairy:11,usual:97,"broker-dealer":448,Bulgaria:2,manicures:20,"age-old":1,enlargements:4,Wegener:2,illicit:1,manicured:17,Chayet:2,"inky-brown":1,DOGS:4,"computer-reservation":3,"bolt-action":1,vases:4,McCullough:2,"G.O.":2,listless:1,Lemme:39,proposing:8,Shoemaker:2,steams:20,Rausch:2,Potlatches:28,"investment-management":22,Tyner:2,uniting:8,Voss:2,"flip-flop":449,Marge:2,ticklish:1,rigs:4,Vose:2,Margo:2,"x-rays":19,Rousseauan:1,postgraduate:1,shallow:3,Bolotin:2,Toronado:2,Wheels:2,"O.E.":2,LIBOR:2,Shin:2,Belth:2,ricocheted:16,"simple-seeming":1,hearings:4,"Ziminska-Sygietynska":2,boring:450,Hopkinsian:2,infectious:1,screeching:30,chattered:16,Sheena:2,Nazionale:2,Suhler:2,"human-based":1,Folded:2,westward:277,"Ritz-Carlton":2,Metromedia:2,Compounding:8,intersecting:8,Bernardin:2,"over-pretended":1,matchmakers:4,"double-crossed":16,alienating:30,willful:1,trivia:91,"=":451,"God-given":1,comest:33,Dragoslav:2,"pomp-filled":1,harmful:1,Detroit:2,Gregory:2,"Hanover-Sally":2,thespians:4,Wollo:2,halved:81,"clipboard-size":1,appallingly:6,LEVINE:2,Mitchel:2,KICKING:8,lumpier:12,diagnostics:4,Appleseed:2,Lessons:4,EFPs:4,burners:4,tidings:4,Devens:2,serving:55,democrats:4,Innovation:2,Wilkinson:2,filmed:45,clutching:8,Jay:11,interclass:1,sunflowers:4,Sharply:6,myriad:3,"counter-balanced":1,"off-the-cuff":1,threateningly:6,overeating:21,"formidable-appearing":1,wrestlings:4,Persuading:8,Ulisse:2,SPENT:16,trims:72,"non-Jewish":1,Bowser:2,THF:2,THE:89,Sulgrave:2,THC:2,bellies:4,Grobstein:2,enlisting:8,ended:452,Penny:11,plopped:16,ministered:16,disparities:4,sparrows:4,"pre-Easter":1,Uneven:1,expel:39,Engaged:17,fantastically:6,nonferrous:1,Unity:2,Rales:2,Units:46,Harapiak:2,unlimited:1,junks:20,arguably:6,wagers:4,scathingly:6,freckled:1,Rothenberg:2,statehooders:4,Wrangler:2,Irises:130,weighing:55,"world-wide":97,Torchmark:2,Catatonia:2,probing:5,"radiation-produced":1,sonorous:1,commands:18,"month-end":3,Strait:2,budgeting:21,Confused:14,Sungene:2,Unlikely:6,illiquid:1,Veracruz:2,Canneries:2,tinning:8,unconvincing:1,Timothy:2,Worthless:1,"cheap-shot":1,Dromey:2,unfolding:30,"wholesale-sized":1,narrower:12,"litter-strewn":1,packaging:21,"Bristol-Meyers":2,misapplied:17,respect:24,narrowed:32,RD:2,cavities:4,"ton-mile":1,fishers:4,hunters:4,"Herald-Examiner":2,Forecasts:41,Bonneville:2,literal:1,sidesteps:20,catechize:39,floats:20,Aderholds:28,ghettos:4,Exxon:11,Ababa:2,sufficient:1,jaded:7,Credit:453,"billion-asset":1,hightechnologies:4,Acknowledges:20,XYLOGICS:2,interstices:4,"once-absolute":1,Quilt:11,"riflemen-rangers":4,Trumped:17,Kleinaitis:2,"made-for-TV":1,"not-so-subtly":6,Taiwan:2,"buy-stop":1,Quill:2,intercity:3,potions:4,Lassie:2,Reinvestment:2,palely:6,DJIA:2,dual:1,snuck:16,Strom:2,Intelligent:40,Stroh:2,"coal-fired":1,"kitty-cornered":1,Halliburton:11,unwired:16,"non-dischargable":1,Reinhold:2,Sandburgs:28,Sperling:2,sincerest:51,"Wal-Mart":2,"OTC-market":1,"fixed-repayment":1,Pivot:2,courant:64,Gilda:2,aftuh:6,Rosso:2,Savonarola:2,Stated:17,Staten:2,tithes:4,States:41,Stater:2,demonize:39,Welch:2,Fawcett:2,Shearson:2,bending:8,"beer-bellied":1,routinely:6,dockworkers:4,Schnader:2,Bonham:2,gyrations:4,Bonfiglio:2,wealthy:176,Yass:2,fishing:27,"active-matrix":3,Microscopically:6,NAHB:2,reconsidered:54,Marin:2,"well-turned-out":1,"satellite-linked":1,supply:24,"upper-medium":1,nos:4,enact:39,captivating:13,layering:55,toured:16,"seventh-inning":1,Meager:1,Droll:2,Below:206,aeternitatis:64,Dvorak:2,Maumee:2,helpful:1,tryouts:4,piasters:4,"Camaro-Firebird":2,"multibillion-yen":1,loser:22,loses:72,Honey:11,Skip:216,Maria:2,herons:4,"Saab-Scania":2,retractable:1,elevators:4,mattresses:4,growth:70,Bonanza:2,throughout:206,Formally:6,Promoters:113,mines:4,markers:4,blenders:4,earrings:4,mined:54,patiently:6,trout:19,truckers:4,obey:42,analysed:17,"over-night":1,"Gram-negative":1,Umkhonto:2,Longmont:2,"re-creations":4,Warburg:2,saddle:25,sectarian:3,gulping:8,Nogay:2,Stagecoach:2,"multi-disciplinary":1,taxpaying:1,"Wander-Years":2,additives:4,own:454,Cornell:2,Marseilles:2,Stockard:2,Takao:2,"kilowatt-hours":91,"Soviet-controlled":1,Ribeiro:2,"J.F.":2,policed:17,"soft-looking":1,Diversity:47,Milberg:2,blanketed:16,smoothing:8,"package-holiday":1,"Israeli\\/Palestinian":1,Rowley:2,breeding:55,"inter-company":1,bitches:4,fixers:4,decisis:64,Sonoma:2,Tel:2,Jenny:2,Tea:11,"Anti-A":2,Ted:2,Tee:183,Tex:2,Sheehy:2,Cetron:2,Jenni:2,demonstrate:42,rickety:1,recork:39,"here-for":1,Embittered:1,Pagones:2,Instinctively:6,"soft-shell":1,hymns:4,conspired:32,Lander:2,"hard-to-fit":1,"needle-like":1,Haun:2,Stetsons:28,Bartlesville:2,Tempering:8,Dustin:2,Yeni:2,triphosphopyridine:1,volumes:4,apportioned:17,Payson:2,Converts:4,Musical:40,Baltimore:11,quicker:455,"capability...":102,McInroy:2,Fights:4,pricey:1,intentionally:6,"whole-egg":1,Lyster:2,CANADA:2,Steelton:2,raining:8,sitters:4,"Thorn-EMI":2,hordes:4,"quota-breakers":4,Hasting:2,"mark-denominated":1,foul:456,revelers:4,prices:18,"BROWN-FORMAN":2,Until:124,Antar:2,crooned:16,Kushkin:2,Manufacturers:41,Michaelcheck:2,quadruple:83,outwit:39,Belgians:111,demoted:54,Climbing:8,sinking:9,callin:8,"SP1":1,"financial-planning":1,"laser-resistant":1,pierce:39,tantalizing:30,lignite:3,Redding:2,Heights:74,uttering:8,Hannifin:2,Less:457,brutish:1,"cross-top":1,Vast:1,Quist:2,disunited:17,Jerez:2,"anti-Galileo":1,commented:32,Lesk:2,Conventional:66,tolerate:42,Summerspace:2,"na/TO":2,Hecla:2,"non-ICO":1,resignations:4,DiVarco:2,Huai:2,relieving:8,thunder:44,Perinetti:2,Earthmen:41,Companion:47,Guerrillas:57,bonuses:18,grovels:20,Pudwell:2,legations:4,PROSECUTORS:4,"top-flight":1,sobs:4,fissured:17,Resins:28,Forgotten:2,fissures:4,Botulinal:1,Dominique:2,Zita:2,flatlands:4,Petite:1,Xiao:2,"newspaper-publishing":1,unwanted:1,indulging:8,Mutton:2,"labor-saving":1,Towsley:2,Skates:2,Pompeii:2,zoning:21,opponents:4,derivatives:4,"good-hearted":1,reticulate:1,"anti-deer":1,Rabin:2,females:4,standardized:7,"high-wage":1,pointedly:6,taffycolored:17,smelts:4,zipped:16,"foul-mouthed":1,tastefully:6,Merz:2,Nuell:2,grimed:17,plunged:32,Merv:2,Ropes:28,anticompetitive:1,plunges:18,municipally:6,"marketing-and-distribution":1,Cyoctol:2,overextend:33,"slimmed-down":1,Amoskeag:2,Energie:2,Loudon:2,Dempsey:2,unmasked:17,comedians:4,imperishable:1,"child-safety":1,Zimet:2,Cabbage:11,Mullins:2,tripling:8,"latest-quarter":1,thermodynamic:1,survivable:1,despondent:1,Players:41,McInerney:2,constants:4,Erie:2,Knowledgeable:1,drinks:18,deutsche:80,"first-mortgage":3,"pet-rabbit-raising":1,trellises:4,Fabulous:40,timers:4,communistic:1,"Drug-industry":1,Renowned:17,Criminals:4,MONTHLY:1,Recruiter:2,"side-conclusions":4,Recruited:17,wrought:45,deregulating:8,superregional:1,unforeseen:1,auditors:4,survivors:4,Karangelen:2,insubstantial:1,Stainless:40,Khost:2,easier:458,Implements:4,Wilcox:2,thrones:4,slate:22,Presumably:6,blini:4,aspersions:4,constructional:1,schools:4,Pechiney:2,slats:4,lenient:1,Prudent:2,"CODE-NAMED":17,renditions:4,"fiscal-first":1,Hobbes:2,"Pitney-Bowes":2,loyalties:4,unwary:1,pliant:1,series:19,"slow-building":1,Yeres:2,Recognizing:8,Okada:2,depositing:8,substantially:6,emulsified:17,TRADE:47,Hahn:2,"high-temperature":3,"ten-concert":1,"less-self-confident":1,"single-market":3,redundancies:4,"heavy-duty":3,"H.K.":2,Culvers:28,Super:40,Chaikoff:2,written:14,Abortion:11,"safe-cracking":1,Pension:47,Lapin:64,mobsters:4,desks:4,Frankfurt:77,withered:7,"Princeton\\/Newport-like":1,exposing:30,Rosenberg:2,Mingo:2,Chan:2,Chao:2,shipped:81,speedy:1,coeds:4,Cadam:2,repealed:54,Anjelica:2,caught:54,speeds:18,Universities:92,bowl:78,Dun:2,"most-likely":1,dailies:4,celebrators:4,Due:459,sallies:4,channels:4,"second-degree":3,infused:17,abutments:4,Trabants:28,elms:4,Messelt:2,betrothed:16,prepurchase:1,"Italian-led":1,Chorale:2,"over-arching":1,hypothetical:1,SoundView:2,"external-trade":1,bethought:39,Encyclopaedia:2,"Gallon-Loren":2,immensities:4,lunges:20,expunged:17,Summit:11,scholastically:6,"unfair-trade":1,crawl:63,lunged:16,Serkin:2,showed:32,elegant:1,hyenas:4,project:44,Frequency:2,involutorial:1,blasphemed:16,Wessels:2,Furies:4,Sulya:2,Woodyard:2,untrained:1,antagonistic:1,shrubs:4,Memorex:2,ANSA:2,gripe:256,nigs:4,asymmetric:1,recommended:112,doors:4,Ask:216,grips:4,Ash:2,Iain:2,Jones:2,Sardina:2,Catherall:2,debonair:1,reverberated:54,Althea:2,Warrick:2,"stock-price":3,cams:4,camp:25,Schwada:2,rotary:1,"consumer-product":3,CREATIVE:1,memberships:4,Brideshead:2,howl:25,"Baden-Wuerttemberg":2,Lisbon:2,circulations:4,"Chicago-Warsaw":2,came:16,Anglicans:4,Symonds:2,Abdul:2,"shark-infested":1,reschedule:39,Marcella:2,participate:42,falsehoods:4,unmanaged:1,Marcello:2,"convenient-type":1,Reaching:8,quaint:1,"Tripod-Laing":2,Ranked:17,salvos:4,Wealthy:2,ballyhooed:17,"On-Site":2,organizes:20,"D.C.":129,"pre-empt":83,denounce:149,psychiatric:1,foremost:97,Encompassing:8,tenaciously:6,"worth-waiting-for":1,Xiaobo:2,dipping:8,Mackenzie:2,prayerful:1,Seventies:28,"sludge-covered":1,twinkling:55,Bennington:2,freewheelers:4,Neurenschatz:2,Winners:4,cloning:55,Subverts:2,McPherson:2,resigned:112,pricking:8,"no-lose":1,pressured:460,rings:18,"top-drawer":22,pressures:4,Wednesdays:57,oedipal:1,Lockies:28,"Pooh-like":1,apples:152,Bebe:2,wanted:85,"J/NNP.G.L.":2,"employment-services":1,fullscale:1,Porkapolis:2,TANDEM:2,reconstitute:39,Quemoy:2,attendents:4,disdain:24,Sovran:2,Weybosset:2,Blessed:157,planned:81,Menshikov:2,alternate:279,"ramrod-straight":1,BCD:2,fudged:16,Caton:2,"liberal-conservative":1,BCA:2,munches:20,trickiest:51,smithereens:4,hers:227,gleaming:8,munched:16,Sorry:461,grazing:5,BCS:2,Pomton:2,parley:25,Orrin:2,Malay:2,dynamically:6,deportations:4,dots:4,"face-to-face":97,Algiers:2,"FDA-regulated":1,"sewer-repair":1,gavottes:4,gloats:20,"low-ceilinged":1,Schulz:2,Nominations:4,doth:20,expansionists:4,Gatward:2,gritty:1,scowled:16,NSBU:2,Kuiper:2,excited:81,"light-rail":1,betas:4,MAGURNO:2,Campbell:11,"Pitt-Rivers":2,"Southmark-supported":1,Painters:4,taunts:4,overpowers:20,Teferi:2,upscale:34,Gazette:2,churchmen:4,damaged:81,allegoric:1,Naw:106,DILLARD:2,verify:42,"by-gone":1,"drop-out":1,damages:18,Roine:2,Wratten:2,emphatic:1,voyages:4,"Scripps-Howard":2,Roskind:2,Retrovirus:2,seamen:4,Hinsdale:2,haggard:1,simulates:20,Spalding:116,Zielinski:2,Beset:17,fanatically:6,simulated:14,quantitative:1,pairings:4,dissects:20,veils:4,Thank:42,Thanh:2,THAT:462,Subsequent:1,"Baden-Baden":2,DRI:2,Bien:2,Position:25,Thant:2,THAN:127,DRG:2,Pumpkin:2,"self-assured":1,magically:6,Soweto:2,"old-fashioned":1,Sulamith:2,palmtops:4,innocent:1,botanists:4,SystemOne:2,"knock-down":1,Cathleen:2,shabbily:6,Chrysler:2,ratcheting:463,Geier:2,"Campbell-brand":1,brought:54,specie:147,Claudio:11,bulked:16,Graziano:2,headwalls:4,sailorly:6,ballooned:54,Yoshizawa:2,consultants:4,Bismark:2,"Philadelphia-area":1,Norton:11,"newly-created":1,enemies:4,Messing:8,iniquities:4,Cudkowicz:2,polluted:103,birdlike:1,disheartened:17,Hatching:2,Convertible:66,theological:1,McElroy:2,Remy:2,shakes:72,secularists:4,REJECTS:20,Admittedly:6,Valedictorian:2,Dooley:2,Marocaine:2,Westpheldt:2,Characters:4,defensive:3,poppies:4,pliers:4,officiating:8,Gurkhas:2,AVX:2,Valentino:2,Valentina:2,fabrications:4,entrants:4,Valentine:11,annualized:45,Scrapings:4,AVC:2,hulking:13,Use:362,Blacks:92,Greeks:65,Few:66,raises:72,sow:256,Latino:1,"Ont.":2,Fey:2,Checkit:2,authorizes:20,waits:20,"La-la-landers":4,support:44,constantly:6,Labeling:8,Schrager:2,Yoshio:2,Expressionism:2,Hinkle:2,"fellow-employees":4,remarking:8,Nickelson:2,Akers:2,"well-cemented":1,Servicios:2,"Jens-Uwe":2,inside:464,devices:4,"faster-working":12,"Hungary-Suez":2,glaringly:6,Weatherford:2,Buoyed:17,communize:39,Intourist:2,Kurlander:2,Trooper:2,guideposts:4,"pig-drunk":1,centrifuged:17,Observations:4,"death-row":22,negotiations:4,Unused:1,Francisco:2,"AP-Dow":2,Trace:2,Track:11,ambrosial:1,Hernando:2,Tract:2,Tracy:2,superfluous:1,models:4,Amos:2,"Journal\\/NBC":2,Charley:2,Vadstena:2,Person:11,vestiges:4,Charles:2,Charlet:2,Bayanihan:2,pet:465,conferred:54,Willam:2,renegotiating:8,hangovers:4,pep:25,"hay-shakers":4,skate:39,asymptomatic:1,bribes:4,Wee:2,Falmouth:2,obsessively:6,reverting:8,bicycles:4,bribed:32,atavistic:1,persevere:42,Everytime:6,Yield:11,Carvain:2,roundups:4,Stratforde:2,fretting:8,"Kai-shek":2,Rand:2,amoral:1,Rank:11,Peterpaul:2,Jansenist:2,Nicaraguans:28,aviators:4,"rate-increase":1,Maquilas:2,sigh:78,sign:24,Aganbegyan:2,Slemrod:2,parachuting:8,Associations:130,Westphalia:2,hamstringing:8,Epilady:2,irresolvable:1,Veselich:2,Equality:2,leaped:32,AFRICA:2,"over-simple":1,understanding:27,Woman:11,Hoboken:2,"language-housekeeper":1,Emmy:47,BLOW:2,"Rush-Presbyterian-St":2,nonelectrical:1,Memorials:2,"One-armed":1,Alaouite:1,ineffective:1,"automated-teller-machine":1,Doaty:2,Wixom:2,spurts:18,Zealander:2,"cheek-to-jowl":6,Morover:12,convenes:20,logical:1,DOE:2,fake:466,Atonement:47,DOS:2,flagging:13,DOW:2,DOT:2,PLANTS:4,crammed:54,Dershowitz:2,voices:18,Sarasota:2,angry:1,Delayed:1,Sigler:2,"large-city":3,"broken-down":1,enriched:17,wicked:1,scratched:32,Poetics:2,Mortar:11,pollsters:4,Yocam:2,transoms:4,Marchese:2,Jimmy:2,scratches:4,Valhi:2,sieben:64,Sintered:17,sanctified:1,Saga:11,pretend:83,Sage:2,Kegler:2,inflamed:249,flannels:4,Prudhoe:2,Squier:2,Newsweek:11,Slotnick:2,awesome:1,virgins:4,validly:6,Broadview:2,allowed:467,stole:16,Medtronic:2,"no-trade":1,savor:39,dysgenic:1,Evenflo:2,"tax-free.":1,undertook:16,"field-officials":4,"federal-funds":1,misjudgments:4,wardens:4,"ex-aides":4,Peripherals:111,Hooch:2,revealed:85,golfers:4,Ozarks:28,Literaturnaya:2,consequently:6,nomadic:1,Probe:2,ordinarily:6,opinionated:1,so:468,sl:106,snowed:16,tutoring:55,se:469,drunken:1,augurs:20,wrappin:8,"status-roles":4,flips:72,Magarrell:2,flagships:4,experiments:4,Perth:2,omitting:8,frequents:20,razors:4,Paray:2,bulldoze:39,drunker:12,lovelies:4,Swifts:28,sacrosanct:1,tore:32,constituted:32,avid:1,tellingly:6,internationally:6,how:293,torn:14,Greylag:2,sylvan:1,"April-June":2,Pandick:2,"foreign-aid":22,Arguably:6,Stabbert:2,Asilomar:2,TCMP:2,hop:25,Choices:57,Mideastern:1,"dance-theatre":1,"equipment-packed":1,Rockettes:28,reckoning:21,shouted:32,Simulator:2,Lazzeri:2,roasts:4,Macbeth:2,"now-shuttered":1,cropping:8,Preti:2,Pretl:2,suffixes:4,Vitzhum:2,"Department-sponsored":1,Shared:2,Learned:172,suhthuhn:1,"accordion-folding":1,rioters:4,Sauce:2,"I.P.":2,squared:103,abide:42,navels:4,Ghostbusters:123,Article:47,squares:4,dilemmas:19,recalculating:8,Enichem:2,Meynell:2,cooperatively:6,palatial:1,Provigo:2,recordings:4,McCaw:11,bumpy:1,poems:4,Westfield:2,scarred:7,Whampoa:2,gilts:4,Ballon:2,Pritzker:141,Deficiency:2,Ballou:2,err:149,Ortiz:2,Balts:28,"shareholder-payout":1,open:470,"second-level":1,ripping:8,partook:33,Hmpf:106,Hmm:235,Daremblum:2,shiver:25,deglycerolized:17,convene:42,begotten:17,infected:471,Paluck:2,"pre-Christmas":1,Goodbody:2,homemade:1,preprepared:17,Moineau:2,"raccoon-skin":1,fooled:17,favors:72,Lester:2,"once-exploding":1,coats:4,Suiza:2,individualized:7,"top-ranked":1,favore:64,addressing:8,unadited:7,shipowners:4,Baullari:2,Creme:2,Nichias:2,JAGRY:2,Idaho:2,Rehnquist:2,Simmonsville:2,Nyunt:2,Congregation:2,"management-information":3,blinding:13,adjusting:55,ironically:6,Quinn:2,backyards:4,staffed:17,TIMES:2,Anker:2,crochet:39,Prescott:2,winters:4,Auditorium:2,Erasing:8,photochemical:1,"Well-educated":1,Beghin:2,Vallecas:2,nonlethal:1,Scattered:17,"adult-training":1,"conservatively-cravated":1,versa:472,"three-mile":1,"cancer-causing":1,"low-base-price":1,laws:4,Jacki:2,lexical:1,murmurs:20,"CF6-6":11,babbled:16,Balladur:2,merit:44,Roland:2,Comvik:2,Magten:2,Trelleborg:2,"re-emphasizing":8,Indirectly:6,debunk:39,unplagued:17,"state-centered":1,Edith:2,rephrase:39,"management-pilots":1,assistant:22,freezing:5,Listeners:4,Bunker:2,"complex-valued":1,"reserve-draining":1,Pontiff:2,"Euro-cards":4,hinges:18,parasitic:1,Hound:2,hinged:17,orchids:4,Patricio:2,nouveaux:64,artistically:6,Optek:2,Patricia:2,redcoats:4,Batallion:2,"R.,Vitro":2,anyways:106,Ashtabula:47,heifers:4,Hendricks:2,Egalitarianism:2,"Kan.":2,misappropriated:32,Gulbuddin:2,That:473,ostensibly:6,sites:4,Elmhurst:2,Twentieth:2,Thad:2,Thai:40,Than:127,molds:4,Thal:2,vertical:3,Securities:474,capitalistic:1,concentrate:95,Tjokorda:2,Kann:2,Kano:2,mans:20,raddled:17,Kane:2,unamortized:1,Kant:2,Barberton:2,Whatman:2,Preferably:6,Timberlake:2,hurts:20,"very-highly":1,Morbid:1,Ivern:2,FSX:2,Rivoli:64,"H.M.S.S.":2,caring:5,swashbuckling:1,"sorely-needed":1,Stowey:2,Medieval:40,recaptured:17,bereavements:4,concede:149,damping:30,prototype:22,reflex:22,enable:42,"half-a-million":1,Analysts:123,antiquarian:1,nonqualified:17,diffuse:82,sharpshooters:4,Spiritual:1,profane:1,polls:18,"end-use":1,Supplementary:2,Wyeth:2,spotlight:25,aerosolized:17,Album:47,"grown-ups":4,Cooking:2,"gritty-eyed":1,Takanori:2,pinks:4,Rolodexes:28,binary:1,expenditures:18,missiles:4,"Latest-quarter":1,prevail:42,wiring:21,Rafferty:2,Cerus:2,mouldering:8,Tobruk:2,"non-contact":1,licit:1,"black-robed":1,barbed:7,Seto:2,boosted:32,Escape:128,Risparmio:2,"much-copied":1,Commonly:6,recapture:63,LIVESTOCK:11,Buser:2,customized:14,clobber:39,quixotic:1,Milwaukee:2,"earthquake-trained":1,"petroleum-products":4,"Gramm-Rudman":2,HBO:2,"Minneapolis-St":2,HBJ:2,safeguards:4,fateful:1,Smuzynski:2,"ex-President":40,jarred:32,Shugart:2,Tattingers:28,Regnery:2,unviable:1,"family-planning":3,Altama:2,starving:30,HOFI:2,around:475,delinquencies:4,scurrying:8,Baltic:66,Pricor:2,"MGM\\":2,"cuff-like":1,inexplicably:6,Neiman:2,"direct-mail":3,Notwithstanding:127,inter:476,Recognition:11,Matsushita:2,RALLIED:16,explaining:442,conditional:3,"blood-specked":1,perpetrators:4,Komleva:2,"revenue-neutral":1,MacLeishes:28,composers:4,"moon-round":1,memories:4,"grand-looking":1,Danubian:1,corrosive:1,Huricane:2,"M.D.":11,brats:4,Totten:2,UnionFed:2,"computer-aided-design":1,transformers:4,Freudenberger:2,Embryos:4,Expanded:17,Aswara:2,undercuts:20,Rosewood:2,Serge:2,cozy:97,"fifth-highest":1,origins:4,swarms:4,Mozambique:2,Terminator:2,slights:4,"starry-eyed":1,Stimson:2,shied:32,"less-visible":1,Magnus:2,headsets:4,Away:477,legged:1,screws:4,fishes:18,homeless:3,shies:20,Magnum:47,"Plain-vanilla":1,Estonians:28,dawned:16,hev:39,her:478,"ever-increasing":1,bristles:72,Heiwado:2,hey:106,Iliad:2,Veille:2,"over-broad":1,bristled:16,Englewood:2,verbatim:218,Mahfouz:2,Fosterite:2,"U.S.Japan":1,handsome:1,underdressed:1,rescuing:8,House:129,browbeaten:17,"mid-engine":1,"Soares-Kemp":2,telepathic:1,invigorating:8,"trend-followers":4,Thursday:2,Estee:2,lairs:4,"low-profile":1,Estep:2,appalling:1,"water-filled":1,"Glazer-Fine":2,Segalas:2,querulous:1,solaced:17,deterrant:1,misplace:39,Employees:56,"crack-induced":1,Thurow:2,midsize:1,Aspen:2,"paint-recycling":1,resell:392,Coolidges:111,"Soviet-Finnish":1,Leighfield:2,mask:24,mash:25,mass:479,"inter-exchange":1,Zeitung:2,sin:24,Hinzack:2,axles:4,bosoms:4,recapturing:8,"anti-rejection":1,Vincent:2,evicted:17,"Jean-Honore":2,Rickel:2,Hafetz:2,Harper:2,chewing:5,asterisks:4,Entries:4,uncounted:1,Rickey:2,overpowered:54,Honotassa:2,wavers:4,documentaries:4,Mitofsky:2,showings:4,CHILDREN:4,"often-repeated":1,Vivaldi:2,HOUSE:2,EXPRESS:2,dodged:32,"no-inflation":3,harry:39,Woodin:2,Heinemann:2,Candu:2,discriminates:18,"bond-holders":4,discriminated:480,Kangyo:2,Sylvio:2,Ifint:2,"product-design":1,Sylvia:2,crests:4,"F-20s":28,Rossilini:2,hormonal:1,misrouted:17,Restraint:2,Weichern:2,whirled:16,"lower-than-expected":1,Karolinska:2,immiserated:1,sentient:3,"prestige-sentitive":1,Herald:2,Luthringshausen:2,Latvian:66,Nonmagical:2,Feathertop:2,welded:17,transposed:17,Cone:2,Cong:2,reactors:4,Conn:2,"somewhat-ambiguous":1,"non-police":1,Licks:2,reacquired:17,"software-industry":1,"non-flight":1,homilies:4,expends:20,spooned:16,Cardinal:40,beheld:16,pulls:72,Varnessa:2,Medmenham:2,Fragin:2,"less-intrusive":1,Ovalle:2,Varese:2,amassing:21,"one-for-one":1,"check-ups":4,"still-daylighted":1,"sports-oriented":1,foundations:4,"meat-packing":3,Neumann:2,Nessel:2,Nessen:2,railroading:8,unvaryingly:6,Schlitz:2,merveilleux:64,prompt:347,"soak-the-rich":1,"off-the-books":1,Cautious:1,"cross-licensing":22,implausibly:6,Jackals:4,Marschalk:2,Dhabi:2,burgs:4,Basses:28,frivolously:6,att:127,glowing:481,Measures:4,relinquished:32,"half-century":22,sq:1,perversely:6,"second-tier":1,Baslot:2,"three-men-and-a-helper":1,blotted:32,Flags:123,waver:256,waves:4,ethics:91,Helpless:40,SKIES:4,decontaminated:17,refuse:95,rustlers:4,Conditions:4,ADMITTED:16,Elfner:2,inquire:39,"Mid-America":2,"M-m-m":106,Sophoclean:2,functionaries:4,Confutatis:64,Kronenberger:2,grasshoppers:4,JFK:2,Atwood:2,"mud-sweat-and-tears":1,furthering:8,Sotela:2,implausible:1,Dixon:2,stealin:8,laced:45,termed:32,"telegraphic-transfer":1,Oberstar:2,"anti-European":1,laces:4,lacey:3,tentatively:6,Grammar:2,Theirs:482,transbay:1,"anti-hooligan":1,Michael:2,Quadrant:2,speculate:42,"professional-level":1,homogenize:39,"trans-Atlantic":66,hereafter:6,Eagleburger:2,nauseous:1,Resistance:11,unsprayed:17,REGULATIONS:4,Petroles:2,found:345,shambling:8,dosed:54,safaris:4,Rose:2,reduce:42,Rosa:2,"Forest-products":4,jellies:4,Rosy:2,doses:4,Rost:2,"leadership-sanctioned":1,KangaROOS:2,Ross:2,embattled:7,Publicly:6,Rimes:2,Gander:2,Durlach:2,"tele-processing":1,Launches:20,"nuclear-power":3,meteorological:1,salute:25,Eskimos:28,demure:1,sublimed:17,belies:20,qualify:42,conditioning:21,housebound:1,WESTWOOD:2,owners:4,Younis:2,"spike-haired":1,"Oopsie-Cola":2,Years:56,"reorganization-plan":1,sensations:4,longneck:1,warheads:4,Imhoff:2,Verplanck:2,rooted:14,belligerent:1,Reverend:2,IFIL:2,sacrificial:1,DREXEL:2,Chesterton:2,unpleased:17,Hopei:2,guest:22,Rude:40,Rudi:2,"month-old":1,Brigantine:2,omnipresent:1,Elmsford:2,Plantations:92,crow:25,Hopes:4,Rudy:2,"intra-state":1,warmly:6,Clarkson:2,lavished:32,Straightened:17,satirical:1,crop:483,Dumont:2,endlessly:6,thawing:8,"non-democratic":1,polarized:17,Mantle:11,layouts:4,"runners-up":4,MetWest:2,TUCSON:2,Floats:20,shellfish:19,teensy:1,suffocating:30,canceling:8,beforehand:6,pedestrian:3,"George-Creque":2,Overnite:2,freakishly:6,"hand-sized":1,Comique:2,Dobbins:2,Micronic:2,knobs:4,"three-part":1,"thyroid-stimulating":3,"eagle-eyed":1,yearbooks:4,Underscoring:8,"under-three-years":1,"securities-law":22,darts:19,Yaklin:2,Harpo:2,"women-owned":1,"Counsel/NNP...":102,"Roussel-Uclaf":2,lessons:4,majoritarian:1,actionable:1,Cost:47,herniated:17,Honduran:1,dragged:54,Prapas:2,Braque:2,cruises:4,Drenched:1,Freon:47,secretaries:4,lengthwise:218,Wedel:2,freight:25,"Man-Made":1,Fatal:2,Fatah:11,"pre-existent":1,Exports:57,Southerner:129,"Cie.":2,dwindled:32,Istel:2,competently:6,Pitfalls:4,Arundel:2,Travellers:4,Confederate:129,"hush-hush":1,Defense:11,Danube:2,banned:54,"January-March":2,Slocum:2,Tarkington:2,Code:2,"Atomics\\/Combustion":2,quizzed:16,deductive:1,Gruller:2,"radiation-protection":1,Suzman:2,Coda:2,carbines:4,Haynes:2,Cananea:2,"Arizona-related":1,"Plasti-Bars":2,McCormack:2,unqualifiedly:6,largesse:25,eradicating:8,"re-edited":17,startup:22,potent:1,backfire:42,"gas-turbine":1,baritone:22,"sliding-rate":1,demons:4,"weapons-control":1,Ilona:2,Idris:2,prodigally:6,"black-haired":1,Viva:64,screeched:16,Vive:64,enclosures:4,Mezzanine:2,Browning:2,Martinsek:2,Kobacker:2,respondents:4,screeches:18,Weickerian:1,Leona:2,Leong:2,Leone:2,preponderantly:6,Jason:2,Carena:2,Pittenger:2,Brawer:2,Declines:4,Merighi:2,Todd:2,"farm-supply":1,Irelands:2,"Stocks\\/Mutual":2,Nobel:2,Duriron:2,frosty:1,"U.S.-Mexican":66,Reuling:2,Harwood:2,Plews:2,Rousseau:2,"four-minute":1,KVDA:2,adornments:4,Weirton:2,Tagg:2,Watt:2,raced:16,champion:139,paddles:4,races:18,representative:22,systematic:1,packers:4,doctorates:4,"two-party":1,Journeys:4,Orem:2,"far-sighted":1,Northbrook:2,medically:6,"public-spirited":1,Oncogenes:4,leaning:8,Englishwoman:2,Stelco:11,occlusive:1,ContiTrade:2,clucked:16,Dairymen:2,pacemakers:4,Telzrow:2,Kanska:2,AWAY:484,Kulani:2,actuaries:4,"recently-announced":1,Sinfonica:2,involutions:4,stung:54,Harnessing:8,knitting:55,Leatherman:2,understating:8,Lines:41,Liner:2,Nisshin:2,nouns:4,"Italian-made":1,selfdamaging:1,Limited:71,"then-president":1,flagpoles:4,alleging:8,italicized:17,normals:4,theatres:4,equilibrated:17,"airline-related":1,Villages:4,befuddled:32,jerkings:4,stunt:25,befuddles:20,mistresses:4,Kogyo:2,Orens:2,Krisher:2,"pro-abortion":1,"one-square-mile":1,"A.O.":2,Breaux:2,jutting:8,Palomar:2,skateboards:4,suffering:5,baskets:4,entrenched:45,Kucharski:2,"blue-collar-mail":3,Boneh:2,d:485,"anti-liquor":1,squandered:54,Methodist:40,Yardeni:2,Highly:150,"played-out":1,continue:42,yields:18,Methodism:2,Kochitov:2,Bones:4,Cason:2,NRDC:2,partying:8,spring:44,Retrovir:2,Fahrenheit:11,attics:4,Scot:11,thermostats:4,curious:1,Collischon:2,"gun-running":3,Bittker:2,Schwalbe:2,"heavy-armed":1,"on-the-job":1,transactions:4,Aloft:1,Railbikers:4,BS:2,convulsions:4,"three-dimentional":1,slopping:8,Assimilation:2,"rural-care":1,Brady:2,overallotments:4,Rianta:2,Lagrange:2,sanguineous:1,departures:4,digitizes:20,Wenham:2,shadings:4,IVF:2,MERRILL:2,PCBs:4,Deaconess:2,"won-lost":1,weatherbeaten:1,Ottoman:2,forearms:4,Aussedat:2,Narrowly:2,"junkbond-financed":1,NEG:2,NED:2,Gujarat:47,NEC:2,Styron:2,"blue-carpeted":1,NEW:117,Scarborough:2,depositors:4,striven:17,"retail-brokerage":1,strived:16,Tokai:2,"anti-program":1,suit:486,Smoking:321,Yuan:2,strives:20,Should:487,Baptist:488,"hoo-pig":106,inches:170,graciously:6,slump:24,"well-regarded":1,slums:4,inched:32,"highest-yielding":1,Sergei:2,refinancing:21,Minnesotan:2,yeller:1,burrows:4,up:489,us:53,um:490,un:147,uh:106,"last-minute":3,ascertainable:1,"short-dated":1,yelled:32,storing:55,parses:20,consigned:32,"pollution-causing":1,hangups:4,thugs:4,Durcan:2,fixing:55,"post-crash":1,"specialty-printing":1,Kalyagin:2,deviate:39,Bagley:2,ferried:32,Espectador:2,lucid:1,"garbage-in":1,cranking:8,Zug:2,ferries:4,"anti-Fascist":1,leaflets:4,Timbers:2,Revolutionibus:64,duopoly:6,"walk-through":1,holes:4,Webber:2,KGB:2,KGF:2,fresh:491,holed:54,having:8,Rotan:2,melts:20,knotted:103,tattered:7,Kennington:2,soften:39,"ex-investment":1,softer:154,Summarizing:8,coverts:4,Gerstenblatt:2,"Del.-based":1,longstanding:1,edgewise:6,Miserables:64,"Volvo-Renault":2,Designed:17,Bottoms:4,glees:4,"On-Line":40,treasures:4,pestilent:1,stocked:54,Noffsinger:2,creeps:20,panting:5,Schechter:2,"semi-city":1,"anti-fraud":1,wipe:42,Medford:2,"FFr1":2,Forellen:2,Maurice:2,"Y-MP":2,Dennison:2,racy:1,"huh-uh":1,Hoagy:2,discounting:308,Mervyn:2,"near-completed":1,Telaction:2,Agence:2,Buente:2,licensed:45,"two-button":1,imply:42,Graedel:2,licenses:18,Parodis:4,graduating:55,Bonavia:2,Janes:28,Janet:2,aboveboard:1,Yontz:2,Waukegan:2,Achieving:8,consistently:6,Cuddeford:2,polluting:30,sixth:97,Ferencik:2,Rumscheidt:2,Campagnoli:2,Prior:6,Giamatti:2,Kuhn:2,technical:1,Odors:2,inoperable:1,Immortal:2,resulting:492,buffered:54,Starke:2,outcomes:4,unmasculine:1,"now-dismembered":1,"million-mark":1,Pripet:2,causal:1,Younkers:113,Korn:2,exciting:13,Kori:2,"ivy-covered":1,DRUGS:28,Millburn:2,McCollum:2,pedagogical:1,Drag:39,irrepressible:1,"Sony-Columbia":66,humorless:1,forefathers:4,midday:163,Kors:2,Himont:2,cathodophoretic:1,Eastland:2,ESTATE:47,Beadleston:2,"Smith\\/Greenland":2,Koppel:2,DEVICES:2,unplug:39,"first-section":1,rubbish:22,Yokogawa:2,Hironaka:2,Oxnard:2,Donics:2,prompts:20,Marjorie:2,Scandinavians:28,Spirituals:4,emphatically:6,nonliterary:1,slid:493,perfecting:8,pelvic:3,slim:82,Liberation:2,slit:25,tantrums:4,slip:182,Brelin:2,Duties:113,mullets:4,Phelps:2,delay:44,"non-propagating":1,"second-story":1,"higher-fat":12,paternally:6,palates:4,manacles:4,McGowan:2,Keansburg:2,Reprisals:4,eminences:4,Hive:2,graveyards:4,fits:72,hawk:24,Cleva:2,"non-Greek":1,Centers:494,commodities:4,Lybrand:2,"pollution-free":1,antelope:19,"cross-dressing":1,Tennenbaum:2,"future-day":1,Barnumville:2,deducing:8,chosen:14,snouts:4,"non-farm":1,blistered:17,diluents:4,winners:4,"quite-comfortable":1,"bakery-mix":1,mitigates:20,Wholesale:66,outlined:45,"SKr225":4,innermost:1,launder:39,Cardiac:2,Aliber:2,legendary:1,Social:495,"golfers...":102,outlines:18,presidential:1,regionalism:1,minimalist:3,wallowing:8,Titans:4,Haumd:2,WestLB:2,expectantly:6,Willard:2,Poodle:2,Steiner:2,stepmothers:4,castigate:39,Grips:4,Zubin:2,benefiting:8,Chebrikov:2,"community-oriented":1,antimissile:1,motifs:4,hilarious:1,Photographic:1,"eye-filling":1,Qintex:2,delineate:39,Sukuma:2,subsiding:8,uncontrollably:6,"pre-publication":1,"spill-related":1,graze:149,tresses:4,"cutting-edge":3,Cathodic:2,shortest:51,Lesser:2,reposed:32,"top-of-the-line":1,Point:129,Cravath:2,Ackerly:2,put:496,qualifying:8,Ulbricht:2,ultramodern:1,Shearing:2,staggered:85,yells:20,Blomdahl:2,Hasse:2,Calgon:2,"quasi-mechanistic":1,Kempner:2,"self-help":326,suppositions:4,Grigsby:2,"over-spent":1,"pre-Reagan":1,"instruction-set":3,inalienable:1,"institute-sponsored":1,fouling:21,Actual:1,"Half-time":1,difficult:1,disengage:39,Housman:2,Hastily:6,meanin:55,"exposure...":102,bother:42,reacted:32,extravaganzas:4,"animal-based":1,rollercoaster:22,Afrika:2,collecting:55,trusting:13,gently:6,reassuring:30,gentle:82,Eidsmo:2,defending:30,fourteenth:1,"C.S.":2,affinities:4,Mutants:4,Pockmanster:2,hungrily:6,Compiled:17,Rickenbaugh:2,awed:14,waffles:4,"public-service":3,astride:127,waffled:32,"flash-bulbs":4,awes:20,Borrowers:4,Conservatory:2,unobtrusively:6,pitches:18,"Journal\\/Europe":2,Moudy:2,"old-age":1,Godunov:2,gussets:4,midmonth:6,ratifying:8,Lindemanns:28,philosophers:4,MCI:2,tramps:20,ambitions:4,MCA:2,"five-point":1,Aquinas:2,mechanical:1,recoil:78,painting:21,incarcerate:39,Shawnee:2,Heyden:11,"public-transit":1,Whitmore:2,Cablevision:2,"net-capital":1,briny:1,Daley:2,Rangers:28,Manoplax:2,Waste:128,pitched:85,principal:202,"anti-gay":1,burnished:17,noir:64,timpani:4,Experimenting:8,should:190,buttons:4,"reading-rooms":4,"ever-changing":1,bomblets:4,meant:32,capsules:4,means:132,Telesystems:113,impinging:8,McBee:2,Salaries:4,Wankui:2,Nightingale:47,shaping:55,Sinner:2,Fleury:2,Because:206,Jacobite:2,unexecuted:17,"extra-sensory":1,glossed:32,default:25,"neo-fascist":1,unfeasible:1,favoring:8,Hock:2,"low-rated":1,"international-leasing":1,indecisive:1,correlations:4,meted:54,packed:81,"Human-rights":4,Ariane:2,"fill-or-kill":1,Terminals:4,Meatheads:4,taunting:55,cloudless:1,"score-wise":1,"fire-colored":1,ends:18,"court-approved":1,drachmas:91,butts:18,hogging:8,rejoins:20,reappears:20,"covert-operations":4,mooing:8,observable:1,"non-striking":1,Devotees:4,invited:54,PERSUADING:39,"Sky-god":2,Holyoke:2,Lindsey:2,"cents-a-share":1,trumps:4,"government-sanctioned":1,"Four-fifths":4,Scribe:216,invites:20,Inspiring:30,"half-cocked":1,Pietermartizburg:2,stranding:8,Sartre:2,Girls:113,distil:39,"nine-to-five":1,subsedies:4,whispering:55,"higher-density":1,"specialist-firm":1,keying:8,pulsated:16,Monmouth:2,Bruccoli:2,"music-loving":1,Pensive:1,Phone:47,hawking:55,transporters:4,chastised:32,"Harlan-Hickory":2,Tremblay:2,"high-positive":1,Stadt:2,hindquarters:4,chastises:20,Knights:46,toasting:8,Pledge:2,affirmative:3,"Innis-Maggiore-Olson":2,"Push-Pull":2,Ciriaco:2,"Index-linked":1,Bingaman:2,discoveries:4,"iron-shod":1,globalizing:8,concerted:7,whitewashed:17,"reverse-surface":1,appalls:20,"ice-free":1,"loosely-taped":1,"rhinovirus-receptors":4,Fitting:8,askew:6,"Gre.":2,upmarket:1,"publicly-held":1,"organ-transplant":3,concealed:81,Asch:2,lengthening:8,Safer:2,"now...":102,Podolia:2,Carmer:2,Tribunal:2,Grew:16,drink:24,Prendergast:2,cafeterias:4,Greg:2,Midas:2,Carmen:2,Carmel:2,pleasantly:6,"labor-intensive":1,fascinate:42,fully:6,shacks:4,"do-good":1,"fuel-neutral":1,Need:497,Sapporo:2,renegotiated:54,Closer:68,reprographic:1,immortalized:17,Fuming:8,"fine-point":1,Cave:2,"actress\\":1,Negroes:41,"Herrin-Murphysboro-West":2,Deltacorp:11,outleaped:16,Corcoran:2,clipped:54,exempt:82,memorandums:4,Heroic:2,"multi-media":4,"know...":102,Clemente:2,Logsdon:2,checking:55,Capacitors:2,Clements:2,humors:4,supervise:42,whopping:1,airports:4,passable:1,evildoers:4,"willow-lined":1,redound:39,Ruys:2,shuddered:16,philanthropies:4,nerves:4,Ambroise:2,inexperienced:1,Arrowhead:2,Ansco:2,hypersonic:1,uncharacteristic:1,algebraically:6,habits:4,pacifistic:1,treks:20,crudely:6,Eugene:2,Cutrere:2,cruelest:51,Marcus:2,"random-access":1,Sundor:2,blowing:498,Solon:2,"out-compete":39,Aziza:2,staccatos:4,"dollars...":102,Solow:2,Proefrock:2,Alsatians:28,Unveiling:8,Foreclosure:2,"left-justified":1,gazing:8,whistled:32,accusers:4,Dependent:40,Uh:499,Dukakises:2,Broader:12,Erburu:2,Harlingen:2,Sommer:2,stockynges:4,centrist:1,Speakers:4,rectify:39,delenda:64,longings:4,assess:42,Labour:2,protozoa:4,"withholding-tax":1,larvae:4,Frauds:28,Omnibank:2,Contrarian:1,larval:1,Wiener:2,impeding:8,pool:24,proliferating:8,Berbera:2,insanely:6,FE:2,Mondrian:2,Artistes:2,"savings-and-loans":1,Hutchinson:2,shamanistic:1,lowered:112,Reggie:11,Chelsea:2,compute:39,multinational:1,gravitational:1,imbalances:4,"J.Y.":2,"one-family":1,Leverkuhn:2,tertian:1,appraise:39,undecideds:4,Karen:2,contribute:42,availabilities:4,unsavory:1,Scrapiron:2,"r-Revised":342,readjustments:4,Bearden:2,Utah:2,Yesterday:500,scholarly:1,"proto-Yokuts":4,Janachowski:2,"test-practice":1,predominant:1,Pompadour:2,reckless:1,jumbos:4,Geraghtys:28,Acquiring:8,Vitus:2,Shokubai:2,"Middle-class":1,townsmen:4,"six-year-old":1,draperies:4,"OCN-PPL":2,SRS:2,amahs:4,"influenza-pneumonia":1,hedges:4,Isuzu:2,ticketed:17,Constantinos:2,"Barber-Greene":2,domponents:4,"mid-size":1,"By-the-Sea":2,controversial:1,superefficient:1,defraud:39,Madelon:2,Vince:2,obsoleting:8,Shirley:2,Ovcharenko:2,Patriarca:2,Rakestraw:2,Patriarch:2,begrudge:39,expectable:1,"used-car":22,tagging:8,manes:4,Hefter:2,pique:104,"semi-nude":1,"pro-Europe":1,"HIV\\":2,"chest-back-shoulder":1,Kinsey:2,triumph:25,fliers:4,monotonous:1,bubbling:55,"ice-filled":1,"long-standing":1,Available:1,meekly:6,Culture:11,"P.L.":11,"Kawasaki-Rikuso":2,revolutionize:39,"no-tax-increase":1,Sonata:11,frank:3,Downstairs:163,Bourgeois:2,festive:1,revels:4,Stinnett:2,kindred:1,conglomerate:22,Hassenfeld:2,"flower-inscribed":1,watchers:4,Constellation:2,"plain-spoken":1,unhelpful:1,"F.A.":2,Unveiled:17,browsing:55,Novalta:2,Winch:2,envious:1,"stripped-down":1,Connery:2,"one-shot":1,"pre-nuptial":1,Reporter:11,motivate:42,negative:3,"voice-altering":1,mightiest:51,Pflaum:2,toneless:1,memoranda:4,Pezza:2,Hamiltonian:1,GOODY:2,award:24,Teams:4,Golenbock:2,"ever-swelling":1,Geldermann:2,characterize:42,Molard:2,theories:4,"custom-design":1,Walsh:2,Chorrillos:2,workstations:4,BEARS:2,Bruns:2,Sealey:2,grandees:4,Brunk:2,Bruno:2,Sealed:2,"Dollar-Britten":2,hatted:17,Passat:2,validated:17,"substance-abusing":1,acrobatic:1,Welsh:40,Leger:2,"one-liners":4,"Pru-Bache":2,interview:25,types:4,Gilts:4,cherubs:4,Aliah:2,Nikkhah:2,"melt-textured":1,"castle-like":1,Grgich:2,"Place-names":4,midlands:4,strategists:4,witching:3,Lifestyles:111,"IV-drug-free":1,hasty:1,"government-managed":1,retort:44,"red-blood":1,extirpating:8,arterial:1,infested:14,decide:42,Walbrecher:2,Colonial:40,Vons:28,Regatta:2,Meister:2,Tips:2,bombing:21,highlights:72,"ex-smokers":4,Velasquez:2,workable:1,bespeak:33,Fairview:2,versus:501,stabilities:4,woken:17,"mid-50s":4,exhaled:16,"fresh-ground":1,affianced:17,rocky:1,tampering:55,Librarians:4,"five-days-a-week":1,absolve:33,rocks:18,artifical:1,"four-fold":97,"Af-inch":1,lifted:32,schemes:4,kneels:20,"pro-NATO":1,Confess:39,Stelzer:2,Antoine:2,tultul:64,accompnaying:8,Konikow:2,ratepayers:4,transcends:20,motorized:14,Crucians:28,prohibitions:4,jiving:8,"non-liquid":1,attested:54,Tredici:2,"market-stabilizing":1,dishwashers:4,veto:25,Tomkins:2,Sirowitz:2,Havisham:2,mourning:55,campaigns:4,LIES:20,"V-1":2,"pro-democracy":1,"no-valued":1,Yasuo:2,Kageyama:2,"fishing\\":1,volatile:1,buys:72,created:45,September:2,Torah:2,creates:20,regress:39,Contrary:1,Oji:2,Bridges:130,Padovan:2,vulgar:1,daunting:13,Gamecock:2,Bridget:2,pots:4,Ackerman:2,"Bauer-Ecsy":2,sparse:1,"Gen.":2,guzzle:39,thick:34,"mid-19th":1,"four-engined":1,Uncle:11,observations:4,snags:4,Selena:2,lunatics:4,filibuster:25,pinpointing:8,Ajit:2,happily:6,besuboru:64,haflis:4,Chattanooga:2,Geno:2,"factory-outlet":1,Koyata:2,tabloids:4,"random-storage":1,Gene:2,Kurnit:2,Penal:2,scenes:4,TUC:2,minus:502,Sayre:2,"freight-cost":1,effectuate:39,Kisen:2,"dog-eat-dog":1,constellations:4,Hauser:2,dabbed:16,"high-minded":1,Isao:2,quieter:12,MacIsaacs:2,laden:322,"American-Jewish":1,hamper:63,quieted:32,Library:11,"fruit-flavored":1,Reinisch:2,transmit:42,correlating:8,writhe:25,Frozen:17,Computers:41,"Bessie\\/Harper":2,Ryder:2,exercised:45,Korea:2,Wenz:2,Sieckman:2,exercises:18,Andrus:2,Went:16,Atsushi:2,alumni:4,Scene:11,voulez:64,missed:112,Skaggs:2,Egnuss:2,theatrically:6,Tombigbee:2,"pre-trading":1,Monitor:2,Opaque:1,doped:1,damed:32,"number-crunchers":4,"Ralston-Purina":2,Ganges:2,"cherry-flavored":1,steadying:1,Anna:2,European:10,"coup-makers":4,"pant-legs":4,Judsons:28,"easy-to-reach":1,"Security-Connecticut":2,deepest:51,firebombs:4,Fiscal:10,cardinals:4,"going-private":1,gored:17,Quick:503,Bahia:2,monologues:4,Concertante:2,Fife:2,winos:4,covering:55,idioms:4,Clinic:2,pointers:4,Functionally:6,"half-percent":1,Luxurious:1,uninhabited:1,"w.":1,Rivals:4,Foster:2,cattle:91,Longhorn:2,Hardly:6,Indonesian:66,Comprehensive:40,Water:11,"Ben-hadad":2,counterattacked:16,"payout-bylaws":4,failings:4,"warmed-over":127,ocular:1,terms:18,Inevitably:6,wo:190,Gignac:2,"patty-cake":1,"sleek-headed":1,McFee:2,Danilow:2,admirals:4,"Gumbel\\/Walt":2,convertible:3,overestimated:32,electing:8,foes:4,"Chicago-Paris":2,Guidelines:4,didactic:1,Boliou:2,brag:95,brah:64,Cokes:4,kronor:504,"year-end":168,"fresh-perked":1,dawdled:16,headlights:4,condemned:81,Kean:2,Seemingly:6,Divertimento:2,Cleaning:55,"co-anchor":22,droplets:4,"sequence-tagged":1,"Dream-Torkin":2,fest:318,"scaled-backed":1,XYVISION:2,deterred:54,vaccinating:8,Percussion:2,launches:72,stubs:4,air:505,aim:24,trumpeted:32,aid:44,inspired:81,launched:506,paeans:4,plateful:1,Baltasar:2,"V.O.":2,VWR:2,electromechanical:1,uplift:25,slighting:8,Roseanne:2,Willcox:2,Petitio:2,Pratt:2,Gerlinger:2,"air-freight-forwarding":1,hierarchies:4,Amaral:2,palpably:6,noncommercial:1,palpable:1,"de-emphasize":39,"commodity-price":1,prescribed:81,Addressing:8,diagramming:8,episodic:1,peacocks:4,Charlestonians:65,"television-related":1,Wartzman:2,contact:70,prescribes:20,droppers:4,analyzable:1,"white-coated":1,Swank:2,Picchi:2,Parkland:2,kali:64,"anti-social":1,Editors:4,nondrying:1,bandied:17,"new-spilled":1,eying:8,tyrannize:39,"re-activate":39,board:275,marginal:1,Thornburgh:2,expelled:54,progressed:32,KODAK:2,Try:42,"Thomson-CSF":2,vies:20,cosmical:1,progresses:20,"non-employee":1,Lizt:2,Arpege:2,bogeys:4,"super-regional":1,Liza:2,"self-portraits":4,reinterpreting:8,augur:33,"hard-hitting":1,Naperville:2,"non-party":1,honored:81,lashes:4,Cirona:2,Sunbird:2,eyeing:8,lashed:32,Sheraton:2,treasurers:4,somersaulting:3,"Ear-Muffs":28,Boltz:2,"/":22,mulls:20,nuzzled:16,"Jupiter-bound":1,Judea:2,beating:55,haberdasheries:4,JYJ:507,Medgyessy:2,Micronics:2,"cash-strapped":1,"home-grown":1,Ebasco:2,"third-tier":1,"GM-10s":2,"budget$":84,constructive:1,flinching:8,Baxter:2,callable:1,Strickland:2,goldbanded:17,"Chinese-Soviet":2,"three-meter-high":1,Simba:2,hazes:4,Popoff:2,Dauphine:2,FEARS:4,bound:508,Hopi:2,Tipperary:2,Insider:129,"non-controlling":1,crags:4,capped:112,Judging:210,croaks:4,Sarandon:2,mutates:20,divertimento:1,Reptilian:2,mutated:17,Oakhurst:2,herdsmen:4,tints:4,converse:63,"Minn.-based":1,"less-established":1,Novello:2,PRESIDENT:47,restive:1,true:1,Left:509,nationwide:97,absent:82,Menuhin:2,undefeated:1,liens:4,"Alar-style":1,anew:6,inquiring:13,lowering:55,Purvis:2,lumped:54,"warm-red":1,Fieldcrest:2,write:42,"fast-food":22,topped:32,Jolliffe:2,frolic:25,quickening:8,"growth-suppressing":1,EXXON:2,declassifying:8,Isoda:2,"Daisy-Cadnetix":2,Koran:2,concurrent:1,"vacuum-formed":1,Krohn:2,"five-and-twenty":1,Macksey:2,governed:81,outlive:39,collared:17,WBAI:2,loyal:1,rainier:12,"telephone-network":1,erased:54,deigned:16,Goetz:2,"quality-conscious":1,margined:17,unmixed:17,Bowenized:17,Marsha:2,Britches:4,adamantly:6,Cassiopeia:2,Yamabe:2,Palme:2,killings:4,Bold:2,sacked:32,Beregovoy:2,Finis:2,Boll:2,"co-presidents":4,Fritzie:2,decking:21,pondered:32,Gentile:2,"Eighty-Eight":2,"non-accrual":1,Kodiak:2,entries:4,"non-metallic":1,perceived:45,Parker:2,PUTS:28,Just:510,Kiddie:2,"womb-to-tomb":1,shuttering:8,perceives:20,SR:2,woven:14,unsubsidized:1,"three-dimensional":1,WoodMac:2,Berche:2,Bert:2,purchasers:4,curse:25,appear:42,Surlyn:2,Georgian:66,pleasingly:6,Berg:2,consortia:91,Imaging:2,pulsating:8,Imagine:216,appeal:24,consolidations:4,Conspicuous:1,Momoyama:2,vocalists:4,oscillating:8,"fast-grossing":1,fractious:1,Jittery:1,suckers:4,Jerral:2,Sells:511,"pesticides.``":133,Alvear:2,incoming:13,Reservoir:2,impatiently:6,SF:2,depositions:4,pictorial:1,Staggeringly:6,"tax-revision":1,"Flav-O-Rich":2,penalizes:20,"mild-winter":1,Murrow:2,Amonasro:2,outfly:39,jolts:4,stings:4,penalized:54,stingy:1,prove:42,Legent:2,territories:4,BSN:11,"non-Big":1,"ca.":325,cuter:12,BSB:2,anemias:4,Pity:59,hesitates:20,Pitz:2,symptomatic:1,absorptions:4,commissioned:54,hesitated:32,containing:8,fingered:32,"Air-raid":1,Fyodor:2,unsung:1,"rapidly-diminishing":1,Lieb:2,organizations:4,Klute:2,Lied:2,indescribable:1,Magnetic:1,cap:24,abacuses:4,undiversified:7,hardest:512,renders:20,can:513,"pepper-coated":1,"room-rate":1,Hirschfeld:2,"book-to-bill":3,nonpaying:1,o:514,repackaged:17,Varigrad:2,"Actor-Crooner":2,McNichols:2,haulers:4,unwavering:8,Backer:2,Bitter:1,freezes:72,Firemen:4,Marshes:2,Eaters:4,Pericles:2,"pinch-hitters":4,deviated:32,Matsuo:2,backlots:4,deviates:20,Ablard:2,Whitfield:2,Metropolitan:2,"Grishaw-Mueller":2,priestly:1,"electrolysis-of-water":1,Heeding:8,Celnicker:2,hightops:4,deactivated:17,Aichi:113,"Dream-Miss":2,"WNBC-TV":2,deactivates:20,restructurings:4,Compress:39,quibs:4,"medical-test":1,Rogers:2,Fall:128,Peralta:2,Panzhihua:2,tails:4,woodchucks:4,denominational:1,Interfering:8,Phalanx:2,Milt:2,intrigues:4,chuckled:16,scarcer:515,"still-commanding":1,Bressler:2,chuckles:18,Redford:2,intrigued:14,Mile:2,Mill:2,skirmishers:4,Milk:47,"back-issue":1,sobbingly:6,Pere:2,Perk:2,directing:55,hurried:112,"T.H.":2,Suzuka:2,Peru:11,hurries:20,happen:42,Suzuki:2,Mythical:1,irons:18,Assess:39,shadowing:21,antiwar:1,communicating:55,worshiped:17,Mimieux:2,increase:44,Threads:4,rational:1,"side-by-side":6,ruinous:1,Conte:2,"Af.":11,punky:1,cars:4,carp:174,punks:4,INTENSIVE:1,intruding:8,caro:64,counteracted:54,ominous:1,Belmonts:28,care:44,Gulick:2,beautify:33,McCurry:2,Linker:2,"billion-a-year":1,entrusted:17,Partisans:4,Linked:17,diocs:4,"low-end":3,"high-power":1,Bois:2,Titche:2,indecent:1,untrue:1,Templeman:2,drove:250,truthfully:6,checked:45,waned:32,crossings:4,"mortgage-insurance":3,undergrads:4,"triple-checked":16,national:34,Garratt:2,wanes:72,dismembered:16,Segura:2,"needed...":102,asides:4,quam:64,Hobart:2,Nairobi:2,DataPlan:2,"model-year":1,bastions:4,monopolies:4,Starling:2,unimpeachable:1,"profit-oriented":1,incepted:16,Yasumichi:2,"sea-damp":1,troublesome:1,contentious:1,"consolidated-pretax":1,Locking:8,punctually:6,comfy:1,distorted:45,"fetal-protection":1,Trash:59,USIA:2,Okinawa:2,USIS:2,deux:64,Hadson:2,Aggie:2,uncousinly:1,Hillyer:2,Mijbil:2,price:24,affirmations:4,KSAN:2,successive:1,"]":167,Childhood:11,SSMC:2,forever:6,Scrabble:2,unamended:1,underestimates:20,"well-rounded":1,thefin:8,rambling:22,operagoers:4,mains:4,"U.S.-made":1,Alquist:2,Hoopla:2,Ruhollah:2,"low-acid":1,REITs:4,Southwest:180,Chautauqua:2,Hisao:2,saints:4,Kiang:2,Jacoboski:2,deployments:4,"computer-unit":1,inventions:4,misquoting:8,Banerian:2,overwritten:1,"Angeles-Pasadena":2,shepherding:8,grossing:8,Barring:8,peritoneal:1,Sidak:2,Burnand:2,denting:8,Haydon:2,Capitoline:2,unsaleable:1,"ad-hoc":1,"long-dominant":1,shareholdings:4,indeterminable:1,crotchety:1,effectual:1,quickie:22,gleamed:16,nonspecifically:6,physically:6,Bankcard:2,Hofstra:2,asleep:218,CBC:2,"char-grilled":1,Catalonians:28,exterminating:8,decidely:6,incite:42,Tons:4,Wetter:2,Leeds:2,Rostagno:2,Coordinating:2,Heffer:2,Golly:106,"sun-burned":1,Scenic:1,blame:182,sinecures:4,Delaunay:2,Thaxter:2,pertain:149,"Oh-the-pain-of-it":106,Through:124,newfound:1,evict:39,mites:4,Jeremy:2,diachronic:1,Jose:2,Pictures:41,deviating:8,"Flite-King":1,ASSOCIATES:74,"Chinese-inspired":1,evangelists:4,"eight-team":1,"upper-house":22,Sportscasters:4,McWilliams:2,Tylan:2,Stick:59,Tanks:4,prurient:1,linguistic:1,jerky:3,marrowbones:4,Harpener:2,confectionary:1,Portsmouth:2,rubs:18,Ravine:2,Pasley:2,"P-E":11,"purse-snatchings":4,regurgitating:8,Schnitz:2,"pistol-packing":1,freely:6,thrillers:4,Manuela:2,ein:64,Herdman:2,alcoholic:3,AIW:2,"health-care":22,AIR:11,AIM:2,Hammacks:74,pleads:20,attributed:32,AID:2,AIG:2,Silberberg:2,AIA:2,"de-iodinating":30,farmwives:4,"quarter-to-quarter":1,Sturgess:2,halogenated:16,Dorrances:28,Conquete:2,"image-making":22,followers:4,"Co-cola":2,"mouth-watering":1,"n-dimensional":1,petted:17,adipic:1,Rowswell:2,bigoted:1,anecdotal:1,Beaver:2,smelt:32,alligators:4,Prosopopoeia:2,enchanting:1,Bogota:2,Dass:64,constitutional:1,Dash:11,"Rep.":2,Heliopolis:2,"well-fleshed":1,"calculator-toting":1,"emergency-medical":1,comment:95,GIMMEE:106,Barco:2,valuable:1,fleeced:17,unstaring:8,WAFA:2,Niepce:2,"temblor-prone":1,geographically:6,Lewinton:2,"young-skewing":1,fussily:6,warms:20,zany:1,Exporters:28,unfold:42,"non-clients":4,Pietruski:2,rules:18,"counter-successes":4,calendars:4,briefest:51,listening:55,unaccounted:1,culprits:4,Toney:2,"snail-like":1,commend:42,conversing:8,dislodged:32,Palmer:2,"everyone...":102,greeting:27,Interpore:2,Nuveen:2,Seniors:123,Thea:2,Alfred:2,bespectacled:1,immovable:1,Daytona:2,fairs:4,"post-mortal":1,"U.S.-China":40,Vowing:8,Customs:41,fullyear:1,cleansed:32,Earl:2,pylons:4,JUST:6,Crunch:63,radial:1,Schumpeter:2,uneasy:1,Undugu:2,"reader-friendly":1,Earp:2,throw:95,Ears:4,supervises:20,trekked:16,previsions:4,Guadalcanal:2,supervised:85,wold:190,"rate-tightening":1,Knowlton:2,flashbacks:4,"Parichy-Hamm":2,"inflation-created":1,numerically:6,skunks:4,Jesperson:2,"law-school":22,"male-headed":1,Gutenberghus:2,removing:8,Stabenau:2,backbench:1,"school-research":1,"nerve-ends":4,greying:8,Sewing:116,indicators:4,Carlin:2,Lancia:2,Naster:2,Strapless:2,Cagliari:2,Commitment:2,quantitatively:6,Highways:516,postures:4,"two-disc":1,naysayers:4,SEEQ:2,"stiff-backed":1,"mid-January":2,Fleming:2,SEEK:39,statuses:4,Prometrix:2,NLRB:2,"Data-destroying":1,Reach:2,Palladian:2,snuffed:54,CompuServe:2,suites:4,esthetic:1,Fernando:2,computerized:517,Outsville:2,suited:54,Cashways:28,CityFed:2,redecorating:55,airheads:4,Paragould:2,"Pedigree-contemplating":8,Fromm:2,"hard-working":1,Fancy:40,untidy:1,Feders:2,"judgment-proof":1,outlining:8,skeleton:22,ESPN:2,Fernand:2,"neutrino-sized":1,Brandhorst:2,contortionists:4,Chadroe:2,refocus:39,federalize:39,equate:42,"interior-furnishings":4,ESPs:65,Salk:2,Sala:2,Compassionately:6,Sale:11,maladjusted:1,Salt:128,Tortoises:28,concurring:8,isms:4,louis:4,unfailingly:6,"state-level":1,mutterings:4,ogling:8,"Triple-A":40,Gulag:11,Stoecklin:2,CAMPAIGN:2,colossal:1,Grandmother:2,Jessey:2,overturns:20,Generalized:2,keening:21,"gentler-sloping":1,Giurleo:2,ecclesiastical:1,Singles:18,boardrooms:4,"line-item-veto":1,proselytizing:55,"heavier-than-usual":1,Lyneses:2,Namib:2,Prosecutors:4,"computer-data-storage":1,Staged:17,loose:518,modify:42,mendacious:1,Sniffing:8,selective:1,"Diamond-Star":2,Newburyport:2,Bendjedid:2,unproven:1,"REAL-ESTATE":3,Plouf:2,Cougars:28,Korngold:2,disassociate:39,"C-minus":1,Shimbun:2,Aeroflot:40,limos:4,Ziari:2,grindings:4,fatsos:4,thatches:4,straightened:32,Alvarez:2,toys:18,Nicol:2,"read-only":1,Explorer:2,probabilities:4,Cadillac:11,Agrippa:2,Handyman:2,Ghoreyeb:2,Australites:4,FCC:2,Undoubtedly:150,entails:20,Torsten:2,stylistic:1,"studio-quality":3,Kalipharma:2,Yukihiro:2,captors:4,instrumental:3,impulse:22,mounted:81,Yerevan:2,Gerstacker:2,breezes:4,pawns:4,offended:81,"hand-made":1,adjudging:8,fronted:16,Boston:2,propounded:16,Normalize:39,ions:4,decapitalized:1,"Chinese-American":66,Martinsburg:2,northernmost:1,BACKED:16,bloodless:1,CAE:2,firmly:6,"tandem-seat":1,"E.T.C":2,menus:4,"multi-gear":1,Clerks:123,Aldridge:2,Renault:2,Malvenius:2,sneak:182,Nickless:2,Dogumenti:64,Dreams:92,gardeners:4,telephoned:32,"custom-make":39,preferential:1,negligibly:6,Southland:2,MAKE:39,spectra:4,inundations:4,Peron:2,negligible:1,telephones:4,crafts:4,wreaking:8,Laurie:2,crafty:1,orientations:4,"Jansz.":2,help:182,sooo:6,soon:6,"IL-2":2,held:45,drooling:8,kinetic:1,Michilimackinac:2,fanning:55,skirmishing:21,"startled-horse":1,Sweanor:2,Marlborough:2,teeming:8,watchdogs:4,"single-class":1,Silvershoe:2,acculturated:17,"Frito-Lay":2,nondollar:1,indefatigable:1,ye:519,"re-declared":16,anticipated:81,vomit:33,anticipates:20,ys:20,"drought-shriveled":1,"Abdul-Raheem":2,Solchaga:2,Sandia:2,ifs:4,Culmone:2,Ierulli:2,malfeasant:1,lexicostatistics:4,Lippi:2,stopped:32,Council:11,Sandip:2,minstrels:4,Battalion:2,"give-away":1,End:169,Kennelly:2,Eng:2,positioned:45,Acid:1,kidnapping:21,Grenoble:2,Cozen:2,Swavely:2,dominates:20,"Antwerp-based":1,surrounded:291,Hawthorne:11,"price-corroding":1,trusts:18,flattening:55,"Israeli-Palestinian":66,intransigents:4,preparers:4,"earnings-per-share":1,issue:24,"like-minded":1,"WSJ\\":2,dictatorial:1,Clarendon:2,Washingtons:28,labs:4,Taittinger:2,reason:44,"fortress-like":1,launch:63,"good-for-you":1,persuading:55,platter:3,blossom:520,beggars:4,Codifying:8,Elsevier:2,"product-liability":3,consultations:4,presumptions:4,Sybase:2,"space-weapons":4,dominating:30,croissants:4,prohibitively:6,maple:22,"stress-related":1,Kaulentis:2,bum:449,transcendent:1,"Money-fund":22,"Twenty-seven":1,signaling:55,sulfuric:1,norms:4,ulcerated:1,Guevara:2,uncolored:1,Schuyler:2,Seiler:2,alluding:8,Jeopardize:39,merciless:1,battering:55,"S.C.":2,ousted:45,Deficit:2,Parliamentary:1,overstaying:8,Gon:8,Goh:2,God:183,Gog:2,Goa:2,Got:521,Kalonji:2,"once-devoted":1,sidewise:218,Approvals:4,Demographics:4,officers:4,"cross-purchase":1,faultlines:4,applauded:32,Sandler:2,experienced:81,"English-Scottish-French":2,"Long-debated":1,Magnet:2,Slipping:8,Massacres:4,experiences:18,Aboveground:1,"C.C.B.":2,Placements:2,Warman:2,Sticks:2,loopholes:4,unreasonable:1,unreasonably:6,latest:138,hips:4,Lennox:2,Gauleiter:2,languid:1,bespeaks:20,"ex-Attorney":2,scorched:249,Ministers:41,"flood-control":1,"social-class":1,Lennon:2,Mengistu:2,"debt-ceiling":3,HILLS:2,"psychically-blind":1,paranoid:1,"vibration-control":1,doodads:4,hardened:81,Duffy:2,Phineas:2,legible:1,Sorrell:2,trimesters:4,outlast:39,Sangallo:2,Hayasaka:2,docile:1,Feldman:2,"soft-drink":22,"event-risk":3,enlargers:4,molten:1,"cyanide-laced":1,"snake-oil":3,"L.H.":2,Powerful:1,"insurance-company":22,"state-owned":1,Councilman:2,miseries:4,"jury-rigged":16,Bricom:2,poisoned:54,courteous:1,adjudicators:4,Varlaam:2,Ackerley:2,Tahoe:2,disapproving:1,linkups:4,CHANGED:32,pithiest:51,purposeless:1,protecting:8,Receptech:2,"big-game":1,Disgruntled:1,"sixth-biggest":1,bifurcate:39,Haestier:2,Boltzmann:2,Quips:20,Soloviev:2,Tehran:2,"day-long":1,"opening-hour":1,"as-yet":6,Coupal:2,invisibly:6,Veronis:2,rudiments:4,"pseudo-symmetric":1,invisible:1,Hohlbein:2,lookalike:1,secrets:4,Infantry:2,Superconductors:4,Schaack:2,woke:16,"class-warfare":3,weatherstrip:39,procedural:1,Graham:2,"inflation-wary":1,Wan:2,passively:6,Productivity:47,"home-run":3,hackers:4,hewn:17,Ltd:11,complies:20,"cross-sectional":3,Traditionally:6,spotting:442,Way:47,hews:20,complied:54,Was:16,War:129,Alexandrine:1,"Capt.":2,psychotherapists:4,Cedar:2,"f.o.b":1,"reduced-fat":1,Saabye:2,Poppenberg:2,Allies:41,overstate:42,"Chesebrough-Pond":2,permeating:8,Fluent:66,Mayfield:2,Allied:40,recalled:32,coalitions:4,bidding:27,reenact:39,"egg-on-the-face":1,randomly:6,loom:256,soiled:81,look:182,"well-written":1,assertedly:6,Aldomet:2,mainframe:22,"lightning-occurrence":1,endanger:42,loot:25,"non-junkies":4,LOWER:12,Pena:2,Directive:2,"out-of-touch":1,clientslose:1,Fingers:2,confound:39,reads:20,Dictator:2,Roloff:2,"three-hour":1,Foley:2,Born:231,repudiated:54,discredit:63,terram:64,"personal-care":3,Ariadne:2,TAMPA:2,Gerome:2,Reactionaries:4,arbitrators:4,Prick:39,skyrocketing:8,ALUMINUM:2,"half-baked":1,Sosnoff:2,pricks:4,"Dunn-Atherton":2,Rowlands:2,grossly:6,"mid-range":1,extortionate:1,migratory:1,Faneuil:2,festivus:64,Anabel:2,Internet:11,startups:4,"buttoned-down":1,Casting:8,"German-Italian":1,decayed:103,"brand-new":1,Saalfeld:2,"Bradford-White":2,"specially-trained":1,Ludlum:2,insert:95,"long-acting":1,"price-depressing":1,"Bank\\/IMF":2,sharers:4,"re-invested":7,outright:97,Alexandria:2,Previously:6,Ensign:2,Boxell:2,Windels:2,swooped:16,resold:522,mathematical:1,Haughey:2,Carols:28,Guitarist:2,"left-field":1,Plains:130,Caroli:2,Carole:2,Economy:11,savage:3,paginated:17,Citrus:2,Zhijie:2,venturesome:1,Gasset:2,conditionally:6,"great-uncles":4,Sangyo:2,Andriessen:2,forgets:20,minimal:1,berated:54,stem:182,"DOC-IN-A-BOX":2,step:24,outlanders:4,stew:25,lasts:20,plots:18,"space-systems":4,toppled:54,shine:24,"Jin-Shung":2,entailed:32,"talks-including":1,rumbled:16,shins:4,messaging:21,pullouts:4,classics:4,shiny:1,dietary:1,channeling:8,junkholders:4,paltry:1,computes:20,legislates:20,nonsense:22,Waltch:2,"quake-prone":1,Stalled:17,unbeknownst:1,Nogaret:2,Ruth:2,Villagers:4,Papermils:2,Gassman:2,Victims:123,Salvatore:2,Shylock:2,"Turkey.":2,disallowed:32,manufacture:182,dips:4,inept:1,specialty:22,bolsters:20,Blois:2,fishy:1,"gold-convertible":1,Unitarian:129,persisting:30,Brookmont:2,calligraphers:4,"patient-care":1,"Euro-jogging":1,accustomed:523,Lonrho:2,Moffitt:2,"Stone-Consolidated":2,Pagemaker:2,Ich:64,"Chalon-sur-Saone":2,chafed:17,Hampshire:2,INTERMARK:2,Kitchin:2,asters:4,chafes:20,"dammed-up":17,Abstractionists:4,liberalize:42,sullen:1,"All-weather":1,rewriting:8,"bottom-line":1,fuzzier:12,seduzione:64,Sisters:130,"battery-operated":3,McKesson:2,regulations:4,sluicing:8,"price-stabilizing":1,Coca:2,shorelines:4,thundered:16,overlong:1,Showtime:2,Intermec:2,sounder:12,"pink-petticoated":1,repatriations:4,berries:4,sounded:32,"sales-of":127,Erdman:2,Brophy:2,"non-life":1,"fair-market":1,"chicken-mutilating":1,"bell-ringers":4,"Canada-U.S.":2,"post-1979":1,"Lower-than-expected":1,Kuhns:2,Righteous:1,WLF:2,shackles:4,"best-sellers":4,Ballroom:2,Silas:2,Stone:2,Award:11,Aware:1,"wage-rates":4,backflips:20,shackled:17,Xiangyang:2,Swanson:2,upstarts:4,suite:80,Weider:2,virtuous:1,"eight-foot":1,Canadian:117,miners:4,quelling:21,Vermes:2,Jaime:2,cellular:1,crowed:32,facilitate:42,"non-existant":1,"ever-dying":1,exasperatingly:6,Partner:2,hairier:12,"panic-stricken":1,defiling:8,compensated:54,Nazario:2,teasers:4,among:127,decreed:32,compensates:20,"should...":102,Giorgetta:2,intraocular:1,decrees:18,"Seventy-fourth":2,banquetings:4,climes:4,poke:25,Locks:2,Environmentalists:57,marketed:54,TAMMY:2,referees:4,America:2,Dynabook:2,combative:1,accomplices:4,meandering:8,"four-door":1,"consumer-telephone":1,Cossacks:28,commercial:3,Heating:268,"case...":102,quell:39,Baird:2,ponytails:4,canals:4,Kostelanetz:2,Orgotein:2,Lying:8,Kernel:2,chant:25,overseen:160,"stone-still":1,whisking:8,COMMUTERS:4,oversees:20,Kerner:2,Gertrude:2,Waikiki:2,Ritz:2,unhitched:32,win:182,Yin:2,litigators:4,"muddy-tasting":1,Rito:2,redefining:8,Rite:2,Rita:2,"space-based":1,Bylot:2,"chemical-arms":152,remains:72,"one-stroke":1,Papa:11,Newfoundland:2,Matters:524,JSP:2,Papp:2,"Bhd.":2,nickeling:8,started:525,vivid:1,REAGAN:2,"rough-sanded":1,Roxboro:2,"one-plane":1,"Afro-Cuban":1,Seagoville:2,starter:22,Monterey:2,crosses:72,mythical:1,irreparably:6,UtiliCorp:2,irreparable:1,depravities:4,Traveler:2,Rostenkowski:2,"NP-27":2,"customs-cleared":1,"four-for-one":6,ushers:72,cheapens:20,ferrets:20,intimations:4,Halpern:2,Vistoso:2,serviceable:1,wonderful:1,skirt:44,"truth-revealing":1,intraparty:1,Mohlere:2,tubers:4,Blumenthal:2,romancing:55,NIAGARA:2,Heffner:2,BECOME:39,Winton:2,pantaloons:4,unserviceable:1,Cepeda:2,rations:4,fatigue:78,belongings:4,Weighted:2,advocated:54,Unimin:2,catty:1,feels:72,Emptied:16,Middle:272,advocates:18,"chain...":102,bakers:4,quotations:4,astronomical:1,Hoppe:2,combinations:4,Doonesbury:2,smarts:20,Representative:11,imitating:8,advisable:1,"sub-underwriters":4,Dwor:2,MOTORISTS:4,filets:4,Sink:2,STSN:2,manifestos:4,Steppenwolf:2,Sing:31,LBO:11,Harvester:2,affectations:4,placid:1,"mini-fiestas":4,grumbling:55,Pabor:2,divides:20,"Falwell-Robertson":2,Carmichael:2,shaking:55,legions:4,"front-end":1,conceiving:8,tumbrels:4,ills:4,Benedictine:1,"York-mind":526,IFA:2,IFC:2,"self-enforced":1,Piszczalski:2,IFO:2,deprivations:4,IFI:2,longhorns:4,confess:42,Prizms:28,Burzon:2,Contrasts:4,Gartner:141,withering:30,Upset:17,Surge:2,Ives:2,completely:6,Whiteford:2,Ivey:2,Anita:2,Hostaria:2,reeled:32,Mastergate:11,"pound-foolish":1,Carvalho:2,stride:24,shred:25,Gothic:66,derivations:4,"more-sophisticated":1,protagonists:4,soldered:17,Cycly:2,"Nasdaq-traded":1,Vinson:2,Rochester:11,Atlee:2,precisely:6,Boris:2,Conduit:2,stringently:6,Conradies:74,"non-partisan":1,Funds:92,NUS:2,Argos:2,NUM:2,MacAllister:2,Borie:2,"post-mortem":3,"best-looking":1,picturesquely:6,hitching:21,reallocate:39,Hugely:6,Silberman:2,varieties:4,"One-inch":1,Biopure:2,underperforms:20,bevor:64,unprovable:1,breezy:1,Ismet:2,REPLIGEN:2,Leleiohaku:2,dourly:6,Cornfeld:2,mediators:4,"follow-through":94,"b-Based":14,Gentlemen:123,EQUIPMENT:2,ultrasonic:1,close:527,wristwatches:4,Tadzhikistan:2,"post-Inaugural":1,roiling:30,Melott:2,cranes:4,Tuberculosis:2,Rollins:2,ecumenical:1,KWU:2,Vacations:57,Rolling:2,truck:44,Des:87,deploy:42,passionately:6,Torell:2,expires:20,camped:32,Weissmuller:2,expired:112,Godiva:2,simplicities:4,SAMURAI:2,"hot-colored":1,granddaddies:4,breeze:25,"Secretary-General":2,databases:4,Boskin:2,"radio-pharmaceutical":1,qualms:4,Tara:2,hammerless:1,Waal:2,Barney:2,Pushup:2,passe:1,MUST:190,soothsayers:4,based:54,tire:24,miniseries:91,"(":528,transplants:4,Mervin:2,rash:22,bug:78,Beacon:2,bases:18,suckered:17,bud:25,Barnes:113,Wald:2,"Jew-haters":4,Stella:2,Gorham:2,Popular:40,"C-SPAN":2,sowing:21,course:163,"outward-projecting":1,gust:163,Scientech:2,watershed:22,gush:149,fasteners:4,trodding:8,counterprogram:39,spotted:112,Staiger:2,mists:4,consulates:4,Lapp:2,Question:169,freeze:44,Pollin:2,desperate:1,reattached:17,Indicators:130,"XR-7":2,irrefutable:1,Bessarabia:2,reconfirm:39,unionists:4,missing:5,Toppers:2,"Demus-Schubert":2,supernatural:3,Greenbelt:2,Kenyans:28,Threepenny:47,outsiders:4,comparable:1,rinses:4,DeVries:2,demur:33,Chiat:2,Stonewall:2,Mulhouse:2,lamechian:1,melds:20,comparably:6,Gable:2,Titled:17,diligent:1,Ruvolo:2,"year-round":97,Pontissara:2,ranked:112,Lawyer:2,"RJR-Macdonald":2,"non-methanol":1,Vachell:2,christen:39,"Hydro-Quebec":2,budgetary:1,Picoult:2,Lok:2,Patton:2,Rosenthal:2,"Al-Seyassah":2,Los:40,Music:11,Low:40,Lot:47,instituting:8,hoverin:8,kings:4,Musil:2,Esnard:2,willy:6,"barrel-per-day":1,Sisk:2,Gregg:2,wills:4,"larger-than-expected":1,cowards:4,slowly:6,Consob:2,"Six-year-old":1,Stoltz:2,microtonal:1,"bi-regional":1,Bluefield:2,smokescreens:4,Sizzling:1,hytt:53,oversize:1,"anti-defense":1,"Babin-Festival":2,outspread:14,"spur-of-the-moment":1,Elvira:2,"re-thinking":8,underclass:4,Cohens:28,Rally:128,Risley:2,coincidental:1,Sergeant:11,Terrence:2,Nomisma:2,Stallard:2,inhabits:20,swinging:30,"Ariz.":2,bucks:18,municipals:4,trooping:8,overrendered:17,Metamucil:11,strange:1,tabbed:16,Virnich:2,fanatics:4,fide:145,wranglers:4,unconventional:1,plaids:4,promoters:4,nightly:97,Tulip:2,dammed:16,fierce:1,extendible:1,"Galveston-Houston":2,weld:63,"corn-based":1,Spofford:2,well:529,Fantasy:2,Sovietized:1,stirrups:4,Skill:3,spherical:1,Novick:2,Bathyran:2,attractively:6,insinuating:8,Spenglerian:1,Technological:2,"wild-eyed":1,Porter:2,Camilo:2,imparts:20,vide:64,Vignola:2,Coffield:2,swellings:4,Sultanov:2,accomodate:39,Esso:11,Hassey:2,Jacques:2,Doorne:2,Shampoo:2,recharging:8,cashed:32,Executed:16,Reid:2,Glorious:1,Gephardtian:1,Kita:2,"two-parent":1,dictionaries:4,Azerbaijan:2,Echelon:2,Cologne:2,nonfunctional:1,GAF:2,"M&Ms":4,drizzly:1,"Herald-Tribune":2,Oprah:2,Groupement:2,"anti-diabetes":1,phenomena:4,Mason:2,Optique:2,vociferous:1,KAL:2,Christensen:2,Homozygous:1,communes:4,Seventh:40,injects:20,consultative:1,appreciative:1,Bystrzyca:2,Wishes:4,sponsoring:8,"Slash-B":2,Polymerix:2,Seurat:2,Cabrini:2,lecturers:4,carats:4,"Australia-based":1,"buy-out-related":1,unfleshed:17,Canfor:2,interlinked:17,Tigreans:28,Konrad:2,beige:1,puppies:4,Insuring:8,Dialogues:2,PMs:4,townships:4,attains:20,AirCal:2,panoramas:4,Thousands:123,reconstituting:8,PMR:2,synthesized:17,"seat-sale":1,imperial:1,synthesizes:20,Jeannie:2,drownings:4,Shedding:8,neutral:1,"f-As":530,"one-act":1,kegs:4,threaten:42,Spicer:2,bridgeheads:4,presuppositions:4,storied:1,"seven-concert":1,Increasingly:6,Kuriles:2,instructing:8,accommodative:1,turnings:4,stories:4,empty:162,"systematically-simple":1,"mass-media":19,Hispano:2,Blankenship:2,Cargo:2,Schwarzer:2,Headley:2,Banknote:2,MSX:2,MSU:2,Lake:11,MSP:2,crystals:4,"Mediterranean-inspired":1,Bohart:2,Slightam:2,rumors:18,"three-row":1,Superstores:65,tailoring:55,Sunshine:2,Merrimac:2,sidechairs:4,Richstone:2,Mouth:2,stumps:4,Endgame:2,stumpy:1,Hachiyas:28,Hees:2,experimenters:4,"C.C.":2,MOST:51,Heed:39,empowers:20,Heem:2,"nine-state":1,Killion:2,persistent:3,Viscera:28,unopposable:1,PGH:2,uneducated:1,lives:18,"desert-bound":1,Strangely:6,sunburnt:1,Shardlow:2,Davidge:2,Overseeing:8,plenary:1,Thruston:2,encores:4,Rylie:2,"two-dimensional":1,whose:306,Hose:2,Purgatory:2,calculate:42,Exceptional:40,syndciated:17,Rosalind:2,Host:11,"four-square-block":1,"land-owning":1,Beecher:2,Waterloo:47,Sidoti:2,rosiest:51,Turbinen:2,"low-budget":1,embroider:149,Sticking:2,Sukio:2,hath:20,"horse-blanket":6,graced:32,"high-flying":1,Brubaker:2,Nepalese:531,Buenas:2,graces:4,Dozen:2,"seven-word":1,winded:7,plummetted:16,Stifter:2,justices:4,Torrijos:2,"fuel-efficiency":1,"state-approved":1,preferences:4,wreck:25,complexities:4,Hacienda:2,hazy:1,liberated:81,Imboden:2,sidled:16,"missile-launch":1,descendents:4,perquisites:4,abstractly:6,Professionally:6,flailed:16,Krutch:2,Leagues:28,Smaedt:2,rests:72,economics:91,credit:44,sombre:1,exacting:1,Wonderland:2,demagogic:1,Serial:66,gaucheries:4,menial:1,"management-controlled":1,grandkids:4,"ice-cubes":4,Afraid:1,decries:20,"ozone-cancer":1,Rather:150,Fittingly:6,"sports-apparel":1,"double-married":1,Vandringsar:2,specifics:4,decried:16,Wyman:2,overworking:8,criminals:4,Jewry:2,Includes:72,leaks:4,"five-seventeen":1,Stoltenberg:2,negociants:4,Photographer:2,Included:14,Uhr:2,leaky:1,"six-packs":4,Sorting:8,Sanctam:2,"heart-to-heart":1,Bilbao:2,"ring-labeled":1,adult:22,protozoan:3,aligned:14,"chi-chi":145,Pinion:2,"Better-educated":1,verdant:1,Supply:11,Fraser:2,somber:1,Realtors:92,akin:532,divergent:1,reindicting:8,sinusoidal:1,"nicotine-free":1,"litigation-support":1,Charterhouse:2,Baldor:2,magnitudes:4,"beef-feeding":1,Eurocracy:47,"multiple-state":1,Junge:2,masterly:1,gumming:8,Lure:33,predictors:4,Lakewood:2,Neue:2,Kai:2,Massacre:2,Kao:2,Irving:2,boroughs:4,Kas:2,twitching:8,"dual-channel":1,estimable:1,Kay:2,Reintroducing:8,Surcliffes:28,construe:42,commencing:8,minority:448,Fragonard:2,Skeoch:2,Castro:11,"bottom-down":1,president:47,"higher-paid":1,"bark-nibbling":1,Jeanette:2,overtaken:17,Tranquility:47,fungi:4,Kheel:2,Aldrin:2,plied:32,Sporadic:1,"rider-fashion":1,foresaw:16,"larger-than-normal":1,"co-operating":8,"High-definition":1,banged:32,mystics:4,shipbuilders:4,McNair:2,PRA:2,PRC:2,PRO:64,PRI:2,"drug-smuggling":1,encounter:44,decaffeinated:17,Equities:41,reinstituting:8,Hartung:2,Melvyn:2,"well-adjusted":1,Lifeboat:2,pianists:4,Generale:2,Generali:2,Telepictures:111,bony:1,bono:64,"Straight-Arm":2,bona:145,mean:50,"triple-sealed":1,improvise:39,reinsurers:4,Mauritania:2,Widmark:2,Investigation:11,Tunick:2,awry:533,navy:22,rebuts:20,Discovery:11,quantify:39,Winsor:2,Muse:2,"F.B.I.":47,Deepak:2,Romer:2,novelistic:1,Karnak:2,bluntest:534,Muss:2,democratizing:8,Must:190,rehearsed:17,relics:4,"non-residential":1,"anti-recession":1,Miyagi:2,Xiaoqing:2,frenziedly:6,"earned-run":1,backlit:1,Hollister:2,Allso:6,"specialty-chemicals":4,Trichrome:1,"ankle-deep":1,Tygartis:2,"anti-science":1,religionists:4,appreciations:4,"Petipa-Tschaikowsky":2,"C-Span":2,Cafe:11,bioengineer:39,"half-cup":1,wronged:14,features:18,thereon:6,Buddhist:10,"University-EPA":2,comforted:17,Essar:2,Sociological:1,RULE:33,semiempirical:1,Sonambula:2,torpid:1,leaders:4,RMS:2,annotated:17,Conder:2,Introduce:39,Festival:2,twenties:4,Vindication:2,RMI:2,"Wagner-Peyser":2,"Body-building":1,solemnly:6,"Symbol:HRB":2,Malden:2,Schmalensee:2,Humphrey:2,Safely:6,coverages:4,distance:25,Consider:216,Stillerman:2,"college-oriented":1,enabled:32,"Louis-Dreyfus":2,pleadingly:6,Guerin:2,stratified:7,"ex-Communist":3,Sajak:2,anatomically:6,realestate:25,extracting:8,"far-fetched":1,unthinking:1,"low-priced":1,Shelly:2,Designing:116,obviously:6,Buster:2,"J.I.":2,Schneier:2,sharecroppers:4,Overseers:28,Albers:2,Albert:2,divulge:39,Devol:2,Devon:2,Superslims:28,Alberg:2,Directed:231,caricatures:4,"single-firm":1,Knight:31,"psychological-intellectual":1,impurities:4,regular:1,caricatured:17,VecTrol:2,Cutler:2,Stendhal:2,"Coca-Cola":2,"long-planned":1,mitigate:39,Hovnanian:2,Yumiko:2,mushy:1,Wiederaufbau:2,"shade-darkened":1,"save-the-universe":1,consumes:20,Thiot:2,"second-echelon":1,Spiotto:2,chilblains:4,Lafe:2,Rebuilding:8,carbons:4,explain:42,Detention:2,Free:294,Fred:2,Frey:2,ebbing:8,stabbing:8,clobbered:54,mischievous:1,Fret:39,waylaid:17,consumables:4,patted:16,Carlile:2,technicians:4,meteors:4,Philinte:2,Hillis:2,Leaders:57,Washington:2,Searching:8,Prufrock:2,"birth-control":22,cower:149,grilled:7,Schwerdt:2,Completion:47,decides:20,Sprenger:2,Tracys:113,crewmen:4,"pooling-of-interest":1,Schumer:2,decided:112,"well-documented":1,"stress-temperature":1,UPJOHN:2,Boost:319,voyage:80,reprinting:8,Greenwald:2,smacks:20,Controller:2,"day-old":1,pets:4,Overt:1,shoemaking:8,unconstitutional:1,Serrana:2,Dusty:2,Wilms:2,Peyrelongue:2,Counter:2,staves:20,Wickham:2,Toast:2,Hospitality:2,Wilma:2,Ehlers:2,disorderly:1,cutglass:1,regattas:4,pollinated:17,against:127,Abboud:2,"per-game":1,Basile:2,peddling:5,Metier:2,gushed:16,portant:64,"low-paid":1,gushes:20,loaded:81,Cezanne:2,Elkan:2,Ulysses:11,Kingan:2,riled:17,Macfarlane:2,Tineo:2,Beardsley:2,erect:392,Beardslee:2,Bitting:2,riles:20,Mohawk:2,suppress:42,Negas:2,Prolonged:14,decrepit:1,generals:4,regretted:32,censored:17,Rocket:2,picketing:21,Athletic:40,Intl:2,Into:124,Dollar:47,say:535,"all-stock":1,melted:81,exiling:8,Elinsky:2,mousy:1,Ignacio:2,"American-Negro":2,"strait-laced":1,defeated:54,Uniconer:2,Liberals:65,Sejm:2,faked:54,extraditions:4,Georgetown:2,Epson:2,rovings:4,"counter-attacked":16,Epsom:2,entitles:20,belle:147,jotting:8,Lemont:2,"N.D.":2,belly:163,contaminate:39,mixtures:4,Haruyuki:2,showing:55,"Franco-Japanese":2,bells:4,Hisham:2,Residence:2,differing:30,kin:536,supposing:8,guilders:4,kid:25,drowsily:6,unconcerned:1,"ALQ-178":2,virile:1,"high-stepped":1,Wesson:2,"lease-funded":1,Kobayashi:2,Bilzerian:2,Errors:123,"poised...":102,Bureaucrats:4,Overfall:2,RVs:4,personages:4,Branch:11,Heavenly:40,Lagerlof:2,Branca:2,inconclusively:6,quarrelsome:1,ascents:4,"completely-restored":1,"one-kiloton":1,auspicious:1,blanching:55,Scorsese:2,erected:54,Djemaa:2,Aikawa:2,"triple-Crated":1,performing:5,unnecessary:1,ridicules:20,Wattley:2,Agnellis:28,"never-to-be-forgotten":1,"belly-up":97,Marching:2,Kowalski:2,Milpitas:2,Helga:2,Droz:2,Broad:294,Garrett:2,bombarded:32,"eight-month":1,Yeargin:2,intern:25,Jotaro:2,Moslems:41,Arvind:2,eked:32,plaintively:6,contrarieties:4,Mikulich:2,theatrical:3,"HIV\\/AIDS":1,conquering:8,Drinking:8,Marla:2,prairies:4,Whitley:2,humanists:4,unorganized:1,"Georgia-Pacific":2,compleated:17,"information-gathering":1,flourished:32,"sector...":102,ribs:4,"first-home":1,Charlene:2,outboards:4,outrage:25,warrent:1,"Allis-Chalmers":2,marshal:44,"dim-witted":1,"palm-lined":1,tastier:12,birdied:32,"PW4000":2,Coupe:2,carving:8,Frustrated:7,birdies:4,TEK:2,inductions:4,Riepe:2,TEA:2,"maximum-security":1,"flu-like":1,TEP:2,Safavids:28,polyols:91,gentrified:17,idealized:14,"largest-ever":1,CORP:11,bevels:4,McCone:2,mouthed:16,lilies:4,Archimedes:2,punnished:32,milligrams:4,bounds:18,conformists:4,Grateful:2,plaintiffs:4,Interhome:2,breathe:42,frowzy:1,"bachelor-type":1,Oakwood:2,Franciscan:66,"graft-riddled":1,discounters:4,"single-handedly":218,"non-brand":1,cushioned:54,audition:25,aunts:4,authoritative:1,skirted:54,Andrew:2,actuators:4,Andrei:2,Hasbrouk:2,shows:72,Andree:2,optically:6,TREATING:8,"cash-short":1,Armbro:2,"clear-cut":1,sensuous:1,hollered:16,"on-the-spot":1,shatters:18,Koshare:2,Berean:2,Falvey:2,Ottoni:2,"pension-insurance":1,Medicis:111,Okobank:2,"non-competition":1,prepupal:1,Orient:11,Woodcock:2,decelerate:39,"million-franc":1,customary:1,"teary-eyed":1,"go-along":1,downplays:20,Micropolis:2,assailants:4,Erasmus:2,proletarian:1,resourceful:1,Phenolic:1,Shortages:4,fancies:20,breathy:1,Monde:2,skirting:8,suffered:32,simmer:42,DiNardo:2,shoot:182,deltoids:4,Nutting:2,Moskovskaya:2,estranging:1,piggybacking:8,Eichmann:2,"Spanish-born":1,Roybal:2,mashing:8,Liquidation:2,trended:17,futurists:4,Eldest:51,Propylaea:2,excellence:80,Gardini:2,capitalgains:4,"non-answer":3,Pedde:2,Transkei:2,nineties:4,"House.":2,zooms:20,inconsequential:1,Antiques:28,Accademia:2,Burlington:2,Shakespeare:11,semifinals:4,adds:20,negotatiators:4,"micro-organisms":4,Appreciation:2,sweaters:4,McClintock:2,"big-borrowing":1,Economics:113,Tuscany:2,Presidency:11,NetFrame:2,mussels:4,Haddad:2,availed:16,dwelled:17,Neidl:2,airfields:4,tangent:3,kilometers:4,Cementing:8,tuxedoed:1,"nine-digit":1,bruises:4,"torso-defining":1,somatic:1,simultaneous:1,historical:1,conveniently:6,swipes:20,Technology:11,bruised:14,elect:42,undepicted:7,withal:127,patriots:4,"teen-agers":4,Aim:260,surmount:39,Spinney:2,Plaintiffs:4,hotels:4,Komsomol:2,aye:6,pluses:4,joyous:1,complaisant:1,"month-earlier":1,grandmasters:4,Cedric:2,Clemens:2,Clement:2,vous:64,Venetoen:2,Cimflex:2,Struggles:2,Geely:2,diversionary:1,"Microsoft-Apple":2,"facet-planes":4,Adventists:2,Gastineau:2,demolish:39,Garea:2,unimproved:1,reviews:18,"check-kiting":1,"anti-government":3,lobbying:5,confused:81,Whitemarsh:2,Score:63,Prado:2,confuses:20,Issue:269,"Bronzavia-Air":2,Boeotian:2,thumbing:8,ballards:4,"nine-game":1,Grupo:2,Ermanno:2,"textile-related":1,loaves:4,map:24,effortful:1,mar:39,swayed:32,hydrogens:4,strokes:18,Healthier:12,Sagami:2,mad:1,Yale:11,mai:190,mah:404,Platter:2,"mud-caked":1,EuroBelge:2,scrambling:8,"non-investment":1,regurgitated:32,"Yankees-Brooklyn":2,"long-range":1,Cavanagh:2,cascade:25,"financial-report":1,deposit:44,deceive:39,unleash:42,tall:1,talk:95,"orchard...":102,Hymn:47,Mississippi:2,Uncas:2,distributors:4,"government-controlled":1,Mayfair:2,shaky:1,wishing:55,Dicke:2,introductions:4,recoup:39,pitch:139,Dicks:2,Waxman:2,"gold-plated":1,adhesive:3,"F-18s":4,Greiff:2,Comes:20,Pettersson:2,consequential:1,World:11,"Public-works":4,recipes:4,fuels:18,"less-perfectly":68,Tremendae:2,Laboratories:111,"field-sequential":1,bestselling:1,"home-equity":3,attorneys:4,Simple:3,Lovelace:2,settings:4,arrows:4,Teamsters:111,Simply:6,rock:139,scolded:17,Homma:2,Detectives:2,Shorted:1,"air-water":1,sweepings:4,Swears:20,Shorter:195,Startled:17,whirlwinds:4,Frazier:2,fazed:16,hemmed:17,Springing:8,Therese:2,Davids:2,Feigen:2,Theresa:2,Renovo:2,Savoca:2,Tragedy:47,Wemmick:2,Attakapas:2,Tepper:2,Citibank:2,sideways:218,juxtapositions:4,"Corp.s":2,sparkled:16,cough:25,infuriating:13,advance:139,sphynxes:4,Lowndes:2,"one-for-two":1,where:293,Normal:66,"bowling-related":1,Vortex:11,thine:1,"economic-forecasting":1,"hands-off":1,think:90,Adelaide:2,Neusteters:2,Translocations:4,Farney:2,Compumat:11,crib:22,WABC:2,"Carnegie-Mellon":2,Krebs:2,"Martin-type":1,"non-residents":4,sounds:72,cheesy:1,"Sea-Land":2,Levy:2,Weighing:8,murky:1,Hoffman:2,Problems:4,Ecological:2,"sound\\":1,"pastry-lined":1,Comeback:2,eyes:4,Sweazey:2,Fortune:11,subpoenas:4,eyed:16,Tough:1,interred:16,cleanse:39,Comfed:2,Thomases:2,Serenade:2,trenches:4,sailing:21,"self-employed":1,notches:4,midtown:3,Magma:2,reacquire:39,"high-growth":3,notched:54,stubby:1,SWC:2,"destroyers...":102,monochrome:1,Puppy:2,glibly:6,"x-Year-to-date":1,speakers:4,Enjoying:8,hopples:4,"Center-punch":39,Kimbrough:2,Photographers:2,switching:537,chromosomes:4,enter:538,"earthquake-resistant":1,Abolition:2,"semi-gelatinous":1,bowels:4,coveted:14,festooning:8,Ringer:2,Sextuor:2,"swift-striding":1,Ringel:2,Savers:2,Hessische:2,shop:44,rating:21,shot:310,Keng:2,show:44,Clearing:2,Demons:4,elevate:42,Goffstein:2,Kent:2,corner:70,fend:39,Rubenesquely:1,Reproduced:17,"quality-control":22,plumb:218,Dundeen:2,Flores:2,McClatchy:2,fens:4,germs:4,Translation:11,plump:1,"non-invasive":1,Bumpers:2,replaying:8,"opto-electronic":1,pricings:4,"eight-foot-high":1,Gide:2,nearly:6,pharaohs:4,denials:4,Opinions:57,flyways:4,"short-staffed":1,Sturley:2,worrying:30,NOTES:4,cocktails:4,Lucifer:2,teething:8,"Money-saving":1,"federal-corporate":1,Fares:4,Iowa:2,registering:8,limber:1,"sandwich-type":1,malted:17,diamonds:4,straighteners:4,Hopwood:2,FirstSouth:2,atrophic:1,parental:1,Atheist:2,crucified:32,Mahoney:2,enthralling:13,Bailiffs:4,SOARS:20,innoculating:8,"animal-like":1,Northrop:128,amateurs:4,"fat-substitute":1,profs:4,Continues:20,cornered:45,"mobile-telecommunications":4,slain:17,"U.S.-Japanese":1,condemning:8,Here:67,"Heel-Terka":2,specializing:8,sensible:3,intrude:42,umber:3,"Third-party":1,feeders:4,dependable:1,Kenmare:2,"flight-attendants":4,sensibly:6,"hand-holding":22,Originals:4,Broderick:2,"David-Weill":2,Galtier:2,whips:18,refractories:4,Herr:87,memorialized:17,reopening:8,"million-asset":1,JURORS:4,"post-production":22,Somehow:6,"well-cared-for":1,ongoing:1,Sleepily:6,Avenue:11,"major-party":1,orginate:39,planar:1,nonresidential:1,"investor-relations":152,Rahn:2,Supplementing:8,Bester:2,malformed:1,"bargain-hunting":22,Montevideo:2,siphoned:32,recalculated:32,Alstyne:2,censorial:1,semesters:4,arguments:4,Lanka:2,"five-round":1,"Sept.1":2,Hicks:2,cauterize:39,ancestors:4,Nesbitt:2,climbing:55,flexed:16,"one-man":1,Voorhes:2,Hurtado:2,largely:539,amounts:18,"Eagleton-Newark":2,easing:263,bumping:8,parody:25,Surveys:123,gaining:8,crossbars:4,multipled:16,Frelinghuysen:2,Maynor:2,lobules:4,Lions:2,monei:19,baptismal:1,"Archer-Daniels-Midland":2,worryin:8,feedlots:4,Engines:41,TO:540,pups:4,Duchy:2,shingles:4,Weeds:4,Perchdale:2,grip:78,slanted:45,grit:25,Saratoga:2,reddened:385,Denny:2,inglorious:1,unheroic:1,"washed-out":1,grim:1,grin:25,Childs:2,"diamond-shaped":1,Bloomfield:2,Kemble:2,absentia:64,facing:30,Childe:2,Hack:2,Refrigeration:47,"counter-arguments":4,thirsted:17,niceties:4,Threats:4,Gerald:2,ascend:39,eyelets:4,Amazing:66,"Dr.":2,Selectmen:4,Hamiltonians:28,Douglass:2,ADDED:16,jonron:64,colonial:3,"drug-addled":1,extensively:6,Conde:2,pioneer:25,Fidis:2,highbrow:1,windbreaks:4,intravenous:1,grafting:8,Dry:40,Dinsmore:2,Coping:8,Dru:2,dictators:4,Wesker:2,Goodbye:183,arithmetical:1,Litvinchuk:2,Rambo:2,fringe:22,Kyong:2,"water-soluble":1,CREAM:2,Bagging:8,memorials:4,bricklayers:4,Bowl:2,blessed:81,references:4,dreaming:55,Flagler:2,annoys:20,"T-shirts":4,Unwarranted:1,"McLendon-Ebony":2,Politan:2,"co-ordinating":8,totalitarian:1,Visits:4,cardmembers:4,"Av.":2,redlining:8,caterpillars:4,relocations:4,Yahwe:2,indorsed:16,stressors:4,strikes:18,sophisticated:1,nonacid:1,sophisticates:4,Beneath:127,downstairs:163,romantic:3,Integrator:2,"investment-linked":1,Avi:2,jabbing:8,electrifying:1,Cushing:2,Ava:2,Bureaucratic:1,USG:2,Margret:2,USC:2,USA:2,"rail-traffic":1,USN:2,Azerbaijani:2,deer:19,deep:97,resultant:3,USW:2,"IBM-remarketer":1,USS:2,grasped:54,USP:2,carps:20,USX:2,selfish:1,"Harlan-Marcia":2,"sports-functions":4,sufferings:4,drivers:4,ceaselessly:6,narcotics:91,Cisneros:2,Bogdanor:2,Tooling:8,Dahlen:2,fruitless:1,Omaha:11,stilted:1,Urraca:2,"square-foot":1,gon:541,Bachlund:2,decorated:45,"smaller-size":1,prewar:1,resembled:16,"US$":84,"profit-eating":1,sewed:32,HOMEOWNERS:4,Gunther:2,inhibited:32,"well-brushed":1,burdening:8,Processors:28,wormy:1,duplicates:20,rascals:4,Dazed:1,worms:4,Financieros:2,Robeson:2,revellers:4,prolongs:20,duplicated:17,Protogeometric:66,Meditations:65,inexhaustible:1,fairways:4,prodding:55,hideous:1,instigating:8,"petro-dollar":1,Scouting:8,Referrals:4,Sonic:1,"child-oriented":1,Svensk:2,"twice-monthly":1,Abyssinians:28,haggling:55,unsuspected:1,overtakin:8,grubs:4,bankrolled:32,chandelle:39,portable:3,Kochanek:2,eloped:16,"chairman-designate":2,preposterous:1,Planitzer:2,Chargers:28,"hard-to-fault":1,MUNICIPALS:4,Fergusson:2,subscripts:4,Malato:2,Berliners:2,Cultural:40,"paper-pushing":1,everlasting:3,steelmaking:21,Gericault:2,BLS:2,Petrus:2,disinflationary:1,Leeza:2,Czestochwa:2,Quatsch:64,expiating:8,Pundits:4,summate:25,temperately:6,Southam:11,CLEARED:16,Canal:11,Canam:2,Darkness:47,extrapolations:4,Anctil:2,Kruk:2,emptied:54,hunching:8,unseating:8,"solid-gold":1,empties:20,emptier:136,soliticitations:4,readily:6,eyd:17,"general-appeal":1,Frito:2,Niles:2,Pasha:2,comparing:8,Fritz:2,amenities:4,dunks:20,Frits:2,Stage:11,"Bio-Response":2,Tennis:2,"one-story":1,suffused:32,Louise:2,retrogradations:4,forfeitable:1,"Masaki-Schatz":2,"globe-spanning":1,Mouvement:2,"Park-affiliated":1,Babelists:4,Daugherty:2,frustratingly:6,Atone:39,Pyhrric:1,slovenly:1,superstitions:4,pioneered:32,prefaced:32,fryers:4,"University-based":1,bravely:6,Polystyrene:11,Richwhite:2,gravely:6,traduced:17,"drug-trafficking":450,Oder:2,attain:42,Stained:17,Correggio:2,"!":542,Patentees:4,pyrometers:4,Serex:2,Arrington:2,"co-heads":4,"long-arranged":1,Doi:2,Don:2,Doo:2,Dom:2,Doc:2,Compton:2,Thais:28,Dog:2,Doe:2,Sybron:2,Dor:2,Dos:2,Dov:2,Dow:2,Neinas:2,hypnotized:17,interpolated:16,Hunsucker:2,VITRO:2,misplaced:17,doused:32,"T.E.":2,Confucianism:2,Alphonse:2,Rockaways:28,Telephones:113,rifles:4,played:32,winged:112,hifalutin:1,"U.S.-endorsed":1,deploring:8,"producer-consumer":1,rifled:1,predisposed:17,filters:18,noncommissioned:1,suffer:42,Trinity:11,thrilling:1,"self-designated":1,Ifni:2,gaslights:4,Kovacic:2,noticing:8,Youth:443,"home-bred":1,complain:149,"Medicaid-paid":1,sweatshops:4,conic:3,Perestroika:64,"rip-roaring":1,positions:18,Laima:2,Tamara:2,exquisite:1,"suitcase-sized":1,stakebuilding:55,identifying:8,watered:54,Plaskett:2,"muscle-flexing":1,"non-pregnant":1,Ephesians:28,throes:4,crowing:55,Cepheus:2,schemers:4,Deering:2,print:44,ironed:17,"EC-wide":1,Leaving:8,Hardart:2,"Ameri-Cable":2,members:4,beneficient:1,Uno:2,Manned:157,Eurotunnel:2,Gribbin:2,unlacing:8,conducted:54,Patman:2,rogues:4,"anti-slavery":1,dons:72,IOWA:2,BMIRs:28,Revzin:2,"then-52":1,mishandled:85,done:543,rerouted:17,Genesis:11,Nonresident:1,Medco:2,Zachau:2,revive:42,"single-owner":1,thickets:4,militant:1,regulation:22,Gamma:2,amplifiers:4,Raul:2,Matthews:2,conspirators:4,Rauh:2,muggers:4,pare:39,Linguists:4,drapes:4,USFL:2,draped:85,rockin:1,part:479,pars:4,Says:20,Tockman:2,Killelea:2,recording:308,chartaceos:4,Goyette:2,declare:42,Affairs:74,idled:54,Revelation:11,"fact-bound":1,Turbin:2,Custom:40,trifled:17,inholdings:4,Galle:2,"test-marketed":112,Galli:2,"often-heard":1,Dozens:4,Gallo:2,insufferably:6,Shinbun:2,majority:22,nullifiers:4,insufferable:1,Gustafson:2,easygoing:1,sweatshirts:4,serve:42,salmon:19,cosy:1,extremely:6,"fuel-cost":1,branching:55,giggling:8,interceded:16,Waldholz:2,"Accord-fighter":1,Hapoalim:2,Yastrzemski:2,Stringfellow:2,Pimlott:2,nonrefundable:1,Wonjerika:2,defiles:20,fungible:1,Edmiston:2,Bengt:2,Wheatley:2,ruin:24,cataclysms:4,massing:8,affiliations:4,Ravich:2,Yakov:2,devastate:39,"cool-headed":1,Ballantine:2,slithered:16,Fewer:154,Paxton:2,contagious:1,Fujis:28,testifying:8,Anyway:6,dissociating:8,Fujii:2,Permut:2,common:3,allocations:4,"Heel-Holiday":2,severing:55,"builder-dealer":1,Kuwaiti:1,"import-incentive":1,summed:32,"bank-fraud":22,irregularly:6,amorphously:6,gravest:51,Boulle:2,changeable:1,Hildy:2,Customarily:6,resolute:1,electoral:1,Selectol:2,fans:18,Toobin:2,"anti-lock":1,distraught:1,Blackfeet:111,"instrument-jammed":1,"center-punch":39,DDR:2,DDT:2,DDI:2,scuttle:39,Populaire:2,Dang:2,DDB:2,Dane:2,Refugees:123,Dana:2,"half-hour":22,Arafat:2,"bank-sponsored":1,Antisubmarine:1,Morino:2,"large-screen":1,dreamlike:1,kitchens:4,"big-selling":1,Cuyler:2,geniuses:4,"Parke-Davis":2,cakes:4,Voltaire:2,FEWER:12,dances:18,caked:54,Onni:113,Munsell:2,Onno:2,"FK-506":2,Advises:20,Adviser:2,ensures:20,snaring:8,Mobilfunk:2,"old-growth":1,vertebrate:1,kidnapped:54,"stock-specialist":1,dropping:55,ensured:16,intrusive:1,"first-year":1,Stake:39,Inpex:2,gay:1,"performance-based":1,chatted:16,gas:25,gal:22,millionaires:4,gai:64,chatter:44,replaces:20,Ordered:32,outperforms:20,PILING:8,College:11,consular:1,Angie:2,clubrooms:4,mystic:3,"down-to-earth":1,Goodfellow:2,Heiser:2,Watrous:2,Receiving:8,shunning:8,aches:18,Dialogue:2,Londoner:47,engrossed:7,airbags:4,wherein:544,benign:1,discourse:25,ached:16,Pecorone:2,Monocite:2,Staley:2,husbands:4,absolved:16,Parisians:28,obeisant:1,Pardo:2,ADRs:56,motionless:1,Biomedicals:2,craved:54,redesigned:45,craven:1,Magnums:57,craves:20,toil:256,hardwoods:4,Colorocs:2,EITC:2,"new-money":1,vindictive:1,Sendler:2,"All-Star":40,Armin:2,circling:8,Bekkai:2,Wigs:4,"tear-soaked":1,discipline:44,"R.P.":2,Strumwasser:2,Nipsco:2,"Euro-enthusiasts":4,vague:1,Raboy:2,wags:4,administrative:1,unloading:55,Airfone:11,valueless:1,chalking:8,squashing:8,displace:39,Harley:2,"Matsushita-made":1,subparts:4,Campaneris:2,droped:16,Harlem:40,competitively:6,Coupled:17,Fond:40,Erbamont:11,Couples:123,surging:30,propitious:1,Embryogen:2,"your...":102,channelled:17,"fourth-class":1,Danis:2,gardening:21,Gulf:2,Eskenazi:2,obliged:48,predisposing:8,pricing:21,mirror:24,scuttled:112,obliges:20,Holden:2,Roessler:2,collapses:72,fivefold:97,metamorphosed:17,"pill-factory":1,burgeoned:32,connecting:30,verbally:6,"automobile-tire":1,Alarm:11,visionary:1,rapping:21,wayward:1,anemics:4,windowpanes:4,offenders:4,unenthusiastic:1,"Heng-Shan":2,Policies:4,"scandal-ridden":1,optimize:39,shrilling:8,Chieti:2,"mid-market":1,"anti-competitive":1,Alfa:11,Glenn:2,Choctaws:28,"nature-conquering":1,gratings:4,peccadilloes:4,extensions:4,"double-A\\":40,bluster:25,wilted:7,Chrisanthopoulos:2,harassed:32,"higher-yielding":1,"hard-boiled":1,framed:45,CWA:2,moderating:30,"Advertising\\/San":2,"custom-designed":1,"gains-tax":3,"top-yielding":1,kaffeeklatsch:64,"Non-Dissonant":2,Nichido:2,"rape-and-incest":1,butlers:4,subjectively:6,"another...":102,discomfit:39,particulates:4,"sheep-like":1,Riedel:2,de:545,"parts-suppliers":4,Fools:4,"rear-looking":1,Bigelow:2,"research-heavy":1,cubbyholes:4,Siebern:2,"corn-producing":1,Perhaps:6,notarized:17,Westinghouse:2,Zeidner:2,Occident:2,Fiberall:2,Siebert:2,brethren:4,Murder:47,adjudicate:39,Danehy:2,pennants:4,Kass:2,pails:4,priori:64,"semi-private":1,cesspools:4,Nicholas:113,yodeling:8,conventionally:6,spurns:20,patsies:4,itemizing:8,luxurious:1,depicting:8,"work-weary":1,"pro-Trujillo":1,"power-tool":3,Roussel:2,romantics:4,ascertained:54,"arm-twisting":2,Alferon:2,Strangfeld:2,"quick-to-prepare":1,Cinematografica:2,Balcolm:2,Nedlloyd:2,classic:3,beckons:20,Whosever:79,"sometimes-necessary":1,integral:22,corroding:8,factoring:21,Mellal:2,Payne:2,"record-breaking":1,Saatchis:28,Crippled:2,diagnosticians:4,countenances:4,stupefying:1,Prudential:40,automotive:1,"non-subscription":1,"postage-prepaid":1,"past-oriented":1,Takeovers:57,Woolard:2,Overtones:4,sulked:16,molal:1,McCraw:2,DKNY:2,bandoleers:4,"luxury-goods":4,Shortening:8,Lottie:2,"government-certified":1,cassocked:1,"quick-handling":1,Norway:2,Guthman:2,earmarking:8,pipes:4,inconveniences:4,revisionist:1,"Iran-Contra":40,piped:32,Milos:2,Boheme:87,"narrow-bodied":1,spacing:22,demoniac:1,FTC:2,Marriage:11,Paracchini:2,Equestrian:2,"lower-income":200,Cried:16,Intelligence:11,"franks-in-buns":4,neater:68,Crier:2,Wieden:2,"three-minute":1,opticians:4,"race...":102,"Tack-solder":39,decrease:44,Nachman:2,Brazilian:66,HOME:11,Yoran:2,"male-only":1,asteroid:3,Katherine:2,Kobrand:2,venal:1,"Porta-Potti":2,silted:17,trail:24,train:44,normalized:17,swooping:8,"beetle-browed":1,Estonia:2,embarked:32,Encourage:42,Breene:2,pedaled:17,obvious:1,unwitting:1,inviolate:1,"hormone-treated":1,Savath:2,snacks:4,"Protestant-dominated":1,sought:32,"four-point":1,HOLDING:2,"food-fish":4,Rosenfield:2,lame:1,solitudes:4,psyches:4,hedgers:4,nips:4,flanking:8,Stirling:2,factored:14,Yoshiharu:2,bushwhackin:1,billings:4,nary:546,Georgeson:2,deliriously:6,defective:1,"Fixed-rate":1,picturesque:3,Brenmor:2,sidelong:1,Weather:2,Champ:2,Kwan:2,lingua:64,Ateliers:2,Transportek:2,charting:21,Oistrakh:2,burning:5,Raccoons:4,koan:64,Neubauer:2,Quartet:11,Fortier:2,Forties:74,"well-respected":1,waggling:8,Stronghold:1,tickled:32,spell:182,Wacker:2,Loves:109,Mother:11,Exchnage:2,Woodworth:2,Tamiris:2,Jinshajiang:2,stormier:12,meterological:1,Cheveralls:2,Gunny:2,"computer-activated":1,virulent:1,Lichtblau:2,Fed:98,Richterian:1,Avelar:2,Korobytsins:4,"half-well":1,Klatsky:2,winked:32,McRae:2,burdened:54,Monets:28,"Exxon-Valdez":1,Bruch:2,Increasing:547,mats:4,Wyche:2,plods:20,"common-stock":3,repress:39,stub:25,mate:548,SICK:2,peeling:55,Tasmania:2,heretics:4,"P.-T.A.":2,affilates:4,meaningfully:6,Appalachians:28,Tanker:2,"Manitoba-based":1,"pocket-size":1,Sparling:2,Morinaga:2,"university-wide":1,"still-outstanding":1,Burgesses:4,Pantheon:2,Floey:2,fouled:85,"pre-May":1,grieving:8,Endowment:2,unspent:1,Oxfordshire:2,Japs:28,NAIRO:2,Dickinson:2,Toshiba:2,Weinberg:2,swept:85,Adverbial:1,"fiber-related":1,"gas-station":1,Bauser:2,sixteenth:1,"veto-proof":1,eavesdrop:39,smolder:33,completed:81,picnicked:16,dreary:1,perforce:6,Ryutaro:2,"Land-Rover":2,"capital-raising":3,discretionary:1,"non-intellectual":1,"anti-socialist":1,jocks:4,"O.K":106,Caleb:2,"Born-again":1,circumspect:1,Flush:1,visited:32,morticians:4,"plutonium-based":1,transitory:1,Fought:17,Pirelli:2,unlikely:97,Peg:2,Dilenschneider:2,Couple:3,Pushing:8,prays:20,parks:4,Xinhua:2,Sante:2,Santa:2,"rubber-stamp":39,savages:4,closeups:4,Trac:2,"early-morning":3,Gillers:2,Eagleton:2,Trap:2,savaged:16,trendier:12,"communications-network":1,"Inter-American":2,Tray:2,gurus:4,afresh:6,"U.S.-Philippine":1,wherewith:39,stranded:54,reconcilable:1,"silver-gray":1,"anti-American":1,normally:6,Saturday:2,Fei:2,galvanizing:55,appliques:4,"big-hearted":1,"off-hours":176,"medical-products":4,festooned:17,underappreciated:1,BEST:51,inspiring:13,"debt-payment":3,Neibart:2,couponing:308,neighbhorhoods:4,INTERVOICE:2,"Va.-based":1,Amitai:2,Accacia:2,Imrene:2,Belzberg:2,Tadahiko:2,littlest:51,Cemal:2,Selden:2,cycled:17,dripped:16,shelling:55,Seldes:2,including:8,cycles:18,filched:32,Interlochen:2,Baiba:2,adventuresome:1,"Special-interest":1,Spokesmen:123,"co-payment":1,Passion:2,"seventy-five-foot":1,injunctive:1,vicars:4,imaginatively:6,"fine-feathered":1,Noriega:11,"microcomputer-systems":1,"deep-discount":1,Ophthalmic:2,Charnock:2,smilingly:6,BARKER:2,emitted:54,deliver:42,handpicked:54,"three-axis":1,Anchor:2,festering:8,nightmares:4,asunder:6,thence:6,"hundred-and-eighty-degree":1,Design:11,Knecht:2,swallow:182,Mafia:2,"neon-lighted":1,cornices:4,relevant:1,Luxembourg:2,ushering:8,"Journal-American":2,"North-Rhine":2,Hoe:39,"Christian-Moslem":1,unearthed:54,flourishing:30,"securities-investment":1,salable:1,"quasi-public":1,Pietro:2,attends:20,certain:97,sticklike:1,"Asia\\/Pacific":1,phosphorescent:1,DeMar:2,overwhelmingly:6,protect:42,Dent:2,bulk:22,"business-as-usual":1,tenderly:6,Honestly:6,Kuala:2,bull:25,Professional:40,Deng:2,divisions:4,Virsaladze:2,"wrap-up":1,entrepreneurial:1,Production:47,extracts:18,inherits:20,penalizing:8,chaotic:1,PONT:2,Trimedyne:2,walks:72,shanties:4,LIBERTY:2,commending:8,"nine-month":1,unretouched:1,SUPERIOR:2,"pro-market":1,oink:106,"cypress-like":1,GAS:11,GAR:2,GAP:2,GAO:2,"agency-dealing":1,slammed:32,Dorado:2,frontal:1,GAG:2,Earthlings:4,eugenic:1,Handsome:66,disseminating:8,neolithic:1,JCP:2,Benesi:2,AUTO:2,Ride:216,corkers:4,binoculars:4,ghazal:64,Unruly:1,Tait:2,Cadillacs:65,PERIPATETIC:1,Cammack:2,"president-engineering":549,pampered:1,promulgating:8,Finkelstein:2,Sichuan:2,Langsdorf:2,knotty:1,confidences:4,deltas:4,necessitate:149,Excels:57,Pilgrimage:2,"P*/NNP&G":25,Resourcesrose:2,spectrophotometric:1,"Davis\\/Zweig":2,"well-worn":1,Excell:2,nastiest:51,Grandparents:113,squandering:8,Deeply:6,Amax:2,Perham:2,Flanked:17,Olney:2,"sympathy...":102,Woods:74,reconverting:8,oratorical:1,"green-scaled":1,"half-speed":1,crazily:6,Aunts:4,Wide:40,Bordeau:2,ideals:4,Offers:20,Zitin:2,Jerebohm:2,Terrorism:2,Banbury:2,shrug:182,"port-side":1,unfunny:1,Danssesse:2,BMEWS:2,panzers:4,Herrera:2,"Czechoslovak-made":1,"elementary-grade":1,Cote:2,"Boehringer-Ingleheim":2,Shostakovich:2,Afterward:6,thinly:6,Tail:2,accosted:54,oiled:1,meminisse:64,Cirillo:2,although:127,Zaffius:2,"half-horse":1,Cawthorn:2,raiding:55,"copper-rich":1,actual:1,Rubbermaid:2,ribbed:1,Mesirov:2,Comprised:17,cockroaches:4,socked:16,prevailing:30,"rule``":133,Wogan:2,faltering:55,"Montreal-Toronto":1,Wiligis:2,obliterated:17,ankles:4,imbibed:54,Laserscope:2,Woodstream:2,Ideally:6,Terranomics:4,Mountains:111,Raymondville:2,Hostetter:2,Reckon:42,"self-explanatory":1,"Ex-Wells":2,"fourth-century":1,reigned:16,Porcaro:2,biggest:380,"life-and-death":1,glib:1,Minnett:2,preparations:4,Tschoegl:2,contemptuously:6,Adopting:8,"Vietnamese-backed":1,Multiplying:8,snagged:54,Proposed:17,"image-processing":22,heatedly:6,Uninhibited:40,levis:4,Discussions:4,Serological:1,Ivy:40,"palm-studded":1,acids:4,doomsayers:4,"Would-be":1,recounts:20,Drobnick:2,separating:8,"inflation-fighting":3,"developing-nation":1,undiluted:1,antiviral:1,propects:4,bloodletting:55,"standing-room-only":1,Noriegan:1,"high-ceilinged":1,"Ardito-Barletta":2,Know:319,Noriegas:4,EQUITY:2,Knox:2,Ostlandske:2,Schrunk:2,dictatorships:4,"pilot-union":1,"dack-rihs":4,DiLeo:2,uncommon:97,previous:1,"double-helix":1,Orchesis:2,Janson:2,musclemen:4,Benita:2,Benito:2,"co-develop":39,microelectronics:91,Sleep:550,limited:103,neige:64,"many-times":6,Stardent:2,Scasi:2,wigmakers:4,Hammers:20,Carters:28,CMOS:2,poorly:6,AMONG:127,replacements:4,"anti-army":1,snipe:39,Naive:1,Sudol:2,Corder:2,hampered:54,Tashjian:2,CHASE:2,Henri:74,"co-lead":1,maximized:17,Doulgas:2,"sanitation-control":1,Henry:2,Fudo:2,"Syrian-backed":66,Biotech:2,pooled:14,greenbacks:4,Reference:11,Premier:2,"management-labor":1,phase:25,Melody:2,Leschly:2,parted:112,"reflectance-measuring":1,fabulous:1,Soya:2,parapets:4,undated:1,friendships:4,tweezers:4,chests:4,Motoren:2,fattening:55,redistributed:17,mutational:1,organisms:4,worsen:39,insinuate:39,redistributes:20,Diest:2,endorse:42,"speeded-up":1,Abandoning:8,"paper-making":1,Balking:8,Lymington:2,"American-made":1,Vilas:2,Critics:123,shills:4,feisty:1,delegates:4,Urged:17,Follow:39,represented:54,finders:4,"potato-like":1,"wait-and-see":1,Tabs:4,stipulates:20,Surprisingly:6,Owned:2,disclaims:20,Pinel:2,Owner:47,Tabb:2,stipulated:32,MBAs:4,politic:3,swearing:21,Thomasini:2,Jossy:2,Collectibles:123,Studying:8,Siemaszko:2,Sick:40,LAWMAKERS:4,Gostomski:2,Express:129,Rivkin:2,Northwood:2,mediate:39,noting:8,incautious:1,juiciest:51,"Ark.":2,barbarous:1,interpenetrate:33,"A.J.":2,correspondingly:6,Cece:2,Sugarman:2,Dilthey:2,"film-making":1,Cech:2,Ceco:2,Write:39,Ear:11,wintering:8,Poppins:2,Eat:59,prearranged:14,Rousell:2,Mister:2,Movats:2,Popping:8,unilateral:1,IIs:28,"cooling-off":3,Clyfford:2,Unpleasant:1,"non-NMS":1,Hillman:2,pluralistic:1,Wheel:11,IIT:2,sneers:72,scolding:8,infecting:8,Admissions:74,lesions:4,Jordan:2,aching:30,Michelangelos:28,Carmon:2,confrontations:4,moisten:39,Cogeneration:2,"price-jolting":1,Marlin:2,bylines:4,Kawasaki:2,"best-pitcher":1,heavers:4,snarling:8,"eye-to-eye":97,Salinas:2,"turn-ons":4,decreasing:8,aloud:6,"civil-service":3,oysters:4,nouvelle:1,Nostalgic:1,outshine:39,"Cup-Tote":2,SeaEscape:2,clapped:16,automating:8,glances:18,"Third-Period":1,entrances:4,utilitarian:1,polluters:4,supervoting:1,"first-level":1,McCall:2,entranced:17,compelling:13,glanced:16,Aspencades:28,Observatory:2,"out-of-favor":1,"pseudo-lobbyists":4,churchgoers:4,waffling:5,potentates:4,Kidd:2,Bonfire:47,Kajima:2,Fawn:2,several:97,enmities:4,potatoes:4,PACS:4,Bolshoi:2,"RICO-forfeiture":1,frantically:6,affiliate:25,Wilber:2,each:246,Chapel:11,correctional:1,imponderable:3,Neon:2,stockbrokers:4,onleh:6,"first-refusal":1,Dynamite:2,ghosts:4,"double-decker":1,footfalls:4,Paladin:2,fraught:1,Chancellor:2,counselors:4,adjust:42,splashed:32,LaserTripter:2,chisels:4,eternal:1,"Novo\\":2,Soldiers:57,"non-fat":1,Shank:2,Kotobuki:2,Insects:4,grasses:4,AmBase:2,Sancho:2,Kilhour:2,encephalographic:1,aspire:42,onto:127,tinkering:21,grassed:17,rand:19,rang:16,appeals:18,"fighter-bombers":4,bandages:4,rank:205,hearing:21,bombard:39,"now-dominant":1,Volare:2,caloric:1,triable:1,"four-cylinder":1,lulled:17,Kulturbund:2,"London-bred":1,geered:17,rewritten:17,reappraised:32,indeterminate:1,Hacksaw:2,antiques:4,Volkswagen:11,"putty-like":1,"pre-selling":55,wedge:25,Tuohy:2,"bomb-plant":1,insightful:1,"long-term-oriented":1,urban:1,overdraw:39,airwaves:4,"vertical-takeoff-and-landing":1,Carolyne:2,"non-job-connected":1,negotiating:5,wrapped:54,Benefit:59,Joannie:2,Yitzhak:2,divisible:1,bloated:7,"O.T.":2,ABA:2,interrelated:14,flame:24,Gang:11,Spirrison:2,Renshaw:2,"swift-footed":1,Pershare:1,arbs:4,commercializing:8,Menilmontant:2,advising:55,"public-address":1,slithering:8,Czechoslovakia:2,Conceived:17,predominantly:6,Picop:2,clunky:1,"wide-awake":1,"easier-to-read":1,Vowel:2,Jelly:2,complexes:4,Pikaia:2,Leland:2,Relentless:1,Attermann:2,Wang:2,Whitelock:2,gravitas:4,Shield:2,Want:42,"stock-related":1,Tetley:2,yank:63,kerchiefs:4,sage:22,"two-season":1,solutions:4,polemics:4,Pickin:8,sags:4,chewed:32,Salespeople:4,Mercantile:2,delays:18,boies:4,"takeover-stock":3,"pearl-gray":1,"eleventh-hour":1,"non-figurative":1,excitedly:6,Surrender:216,Whittier:2,Pacheco:2,imperceptibly:6,criticizes:20,fluid:22,criticized:54,congruent:1,Eurasian:2,report:24,Magdalene:2,"older-skewing":12,Magdalena:2,Sucrerie:2,translating:55,Telecharge:2,Jupiter:11,Conradically:6,"health-services":1,fragrant:1,thrashing:21,electrodes:4,wrest:39,Eckenfelder:2,proclaims:20,"price-competitive":1,"red-necked":1,corrupt:82,noodles:4,Klatman:2,overborrowing:8,Dodgers:209,Desegregation:47,Ditlow:2,"hundred-thousand-share":1,modulate:149,Kingfisher:2,brushbacks:4,Costantine:2,unconscionable:1,Dak:2,Budgeting:47,leaping:547,Lumber:11,Bangs:2,wear:551,"low-back-pain":1,"franc-denominated":1,Karet:2,beeps:4,politically:6,amortized:17,WNBC:2,Karel:2,Kowa:2,Zink:2,"infection-fighting":1,Lidex:2,"Maj.":2,GIVE:33,"beer-runners":4,"anti-discrimination":3,Runways:4,Pharmaceuticals:130,Brittan:2,Intimations:4,majestic:1,Plaster:11,"less-educated":1,banisters:4,hysterically:6,"wide-open":1,Marlboro:2,becalmed:1,subverts:20,"Pittsburgh-based":1,Kibbutzniks:4,"single-barrel":1,Mogan:2,Pennsylvania:2,Medicines:2,glided:16,"well-run":1,gasolines:4,Skoal:2,patronizing:30,Arlauskas:2,"foster-care":1,"non-Western":1,Helmerich:2,"Plug-in":1,delle:2,Spreading:2,hangars:4,confreres:552,Compaore:2,Ellis:2,provocative:1,"Boise-Cascade":2,Ellie:2,experts:4,subspecies:4,PATH:2,interacts:20,Nathaniel:2,circumventing:8,"B.U.":2,"low-income":3,"colour-prints":4,Copersucar:2,bands:4,Franchise:2,harming:8,uncharged:1,lusty:1,satellite:22,settle:42,Maguire:2,lusts:4,deflect:39,Coatedboard:2,Monsanto:2,Ashland:31,insisted:32,Bernadine:2,Ottaway:2,FUNDS:56,poked:32,savings:91,incapable:3,Trendy:1,appease:39,Lots:4,"luxury-car":22,diesels:4,mending:55,unimpeachably:6,Lott:2,DeMoulin:2,bugged:54,breaching:8,Churches:130,strenuously:6,"ever-higher":1,Georgians:28,Ought:190,dearer:12,meanly:6,"co-defendants":4,vie:149,Loyola:2,roughish:1,"image-provoking":1,overemphasize:39,"entropy-increasing":1,Giroux:2,trashed:17,Piero:2,groundbreakers:4,spanned:54,Piers:2,appearing:8,"employer-sponsored":1,hunt:44,zoom:39,offices:4,overrated:17,hung:85,superlative:1,proudly:6,Dalldorf:2,Wildenstein:2,Muck:2,Much:197,smarmy:1,"recently-passed":1,wrenching:13,Sisley:2,"self-effacing":1,companions:4,totals:72,Shoney:2,"small-appearing":1,MNB:2,MNC:2,hastens:20,PBS:2,PBX:2,disappeared:32,"two-colored":1,idolized:1,Summcorp:2,interjected:16,"By-the-Book":1,Disarmament:2,Gomel:2,Melanto:2,plus:553,improvidently:6,glowering:8,conformations:4,Hone:2,Hong:40,MANAGERS:4,"over-stress":39,credited:54,Schaffner:2,Valente:2,trafficked:16,fruitful:1,deferents:4,existed:32,sidings:4,attainments:4,sneezing:8,MiniSport:2,Illustration:2,Mammograms:4,Fellini:2,crews:4,astrophysics:4,Bonjour:64,questionable:1,Rangoon:2,calving:55,"Hon.":2,"Tax-free":1,heinous:1,satisfactorily:6,questionably:6,Maddie:2,"helicopter-borne":1,Bainbridge:2,sickliest:51,"plant-sciences":1,PERMANENTE:2,Vista:2,Granada:2,Pensacola:2,advancements:4,Abigail:2,Tuborg:2,indirect:1,buzzwords:4,propagandists:4,Lehne:2,overbid:385,emeriti:64,unbalanced:7,Effective:1,Relishes:4,"Dain-sponsored":1,miscellaneous:1,Harman:2,blokes:4,ridges:4,"catastrophic-healthcare":1,discharge:25,Kodak:11,Emile:2,Chateaubriand:2,Kohi:64,Kohl:2,Dumas:2,"well-designed":1,reappraising:8,Emily:2,pistils:4,regulars:4,"below-market":1,focus:24,leads:72,Hardings:28,ice:22,Frum:2,"crack-using":1,empathize:39,McElyee:2,reinsuring:8,pompously:6,icy:1,Jeroboams:28,charge:24,quash:39,discovering:8,Robots:113,Ferre:2,Quattlebaum:2,Ferro:2,sours:20,"hard-disk":22,cook:44,Ferry:11,little:97,stonewalled:16,"federal-systems":1,Laswick:2,"three-inning":1,"cold-weather":1,invidious:1,encroach:39,"phosphorus-bridged":1,rehashed:16,Naftalis:2,"better-than-expected":3,dries:18,drier:554,obsolete:1,Damages:57,ZDF:2,"pre-Communist":1,Abbenhaus:2,deluded:249,Sheffield:2,"Cullen\\/Frost":2,transcontinental:1,Haggard:2,Accor:2,prescriptions:4,Barrister:2,skyjackers:4,"still-limited":1,Mustang:11,"city\\/regional":1,Matrimonial:2,male:252,shove:63,healthy:1,ravaging:8,busybodies:4,Sibly:2,Maximilian:2,Hornung:2,Floating:30,"Ruanda-Urundi":2,SIDES:4,emerge:42,Kayabashi:2,inducing:8,Member:47,"trousers-pockets":4,preconceptions:4,Communion:2,"Ind.":2,Siegfried:2,hoppled:17,inflections:4,podiatric:1,brighter:12,"off-base":1,Strenger:2,"doctor-oriented":1,binational:1,Carbones:28,Wendells:28,negroes:28,Barneys:2,reorder:39,lawns:4,ayes:4,Gerardo:2,sheds:72,Fredrikshall:2,Lebanon:2,"part-timers":4,"Swallow-Barn":2,Homeless:40,placements:4,Mij:2,Beaming:8,Mio:2,Mia:2,"seven-month-old":1,geeks:4,Eighteenth:40,"five-pfennig":1,Mix:2,Gasse:2,"terrain-marring":1,IMSAI:2,intelligible:3,painkillers:4,"price-fixing":22,Jeri:2,undulated:16,cardinal:3,lucked:16,Strategists:4,begs:20,Boehm:2,etched:32,leavin:8,crashes:18,fascist:1,scoff:174,Ramirez:2,depriving:8,Rawls:2,celluloids:4,muggy:1,Ellesmere:2,liquid:3,drumsticks:4,Damas:2,Jeans:28,noncriminal:1,Breakers:74,Elks:2,Muscatine:2,Janesville:2,invests:20,Jeane:2,Trenchard:2,Monorail:2,Kwango:2,Otero:2,subsections:4,furnished:45,understandingly:6,paternalist:1,"creativity-oriented":1,"local-service":1,SOUVENIRS:4,furnishes:20,Maturities:4,White:129,"Christ-like":1,foldable:1,supplemented:54,skinfolds:4,Stung:17,abhorred:16,tangos:4,Using:8,Jordonelle:2,"investment-oriented":1,Cable:11,unhurriedly:6,underneath:325,cowering:8,Gottesfeld:2,lustful:1,Loyalties:4,Pontchartrain:2,Klauser:2,name:555,coaxes:20,sensibilities:4,laborers:4,substitutes:18,synchronize:149,"trussed-up":1,recognitions:4,"loss-recovery":1,populated:81,hiccups:4,expansions:4,uninhibited:1,Semiramis:2,Distributing:8,inopportune:1,tuned:81,plans:219,"once-downtrodden":1,Woodman:2,"low-pitched":1,issuances:4,Engineered:2,Woodmac:2,"Pennsylvania-based":1,"de-iodinated":17,antiphonal:1,"variable-speed":1,Record:128,"broker-sold":1,Security:11,"liberal-arts":4,Lamalie:2,overmedicated:17,calories:4,Accelerated:17,unpaid:1,butterflies:4,swine:4,Stark:2,Start:556,"Hartford\\/Springfield":2,Stars:239,Starr:2,hairdressers:4,"less-dramatic":1,peddles:20,Bundesnachrichtendienst:2,"intra-governmental":1,Wharton:2,terrifying:13,peddled:17,seduced:17,"Geneva-based":1,greenly:6,cope:63,Pasternak:2,"Turnpike-widening":1,Seng:2,Naked:1,cops:4,Send:216,seduces:20,immigrant:22,Mobutu:2,specify:42,Katanga:2,possiblities:4,unfortunately:6,oats:91,"capital-gain":1,"fourth-flight":1,"Time-Warner":2,mindful:1,schooled:17,Alpers:2,Alpert:2,rend:39,Topkapi:2,"Did-":2,rent:505,Unglazed:17,"hunter-killer":22,Glavin:2,sashayed:16,marathon:22,"right-to-privacy":1,"narrow-minded":1,Fazio:2,ideas:4,"great-grandchildren":4,ideal:3,Sent:17,blunt:83,DISNEY:2,luckiest:51,hooves:4,Basics:74,inks:4,barflies:4,Erodes:20,stormed:32,Waldbaum:2,Yegor:2,WHITMAN:2,CITY:2,Wagoneer:11,Taoism:2,"Type-O":1,coproductions:4,RIAA:2,Erensel:2,"Gold\\/Minerals":2,sculpted:17,"terror-stricken":1,Dassault:11,permeable:1,"F.N.":2,hustled:32,Whittaker:2,Fellowship:11,Authentication:2,Gilbertie:2,"tailpipe-emissions":152,adhere:42,hustles:20,unshaven:1,principled:1,"one-million-plus":1,"B-2":129,"B-3":66,"open-skies":1,"B-1":40,"unheard-of":1,"B-4":2,transfusions:4,"MSD-200":2,Progressive:40,H:403,Twigs:4,Arthritis:2,"non-viral":1,multimillion:3,strafing:8,Shops:557,reveal:42,Radcliffe:2,driers:4,kickbacks:4,Suburban:40,RATIOS:4,bids:18,abler:12,Wildly:6,apologies:4,determinative:1,cadets:4,kitschy:1,Edelman:2,reproducibly:6,federal:1,"Mont.":2,definite:1,Alarcon:2,"fun-in-the-sun":1,nooks:4,reproducible:1,Trevino:2,cantered:16,corridors:4,communicators:4,"pine-knot":1,jurisprudentially:6,"now-shaky":1,FUND:2,disinfectants:4,diners:4,volubly:6,interfere:42,Leitz:2,Monte:87,wanders:20,subskills:4,recumbent:1,Millay:2,Month:2,leftists:4,"Dream-Lusty":2,Monty:2,Halcion:11,Geraldo:2,Shortstop:2,armchair:22,pot:25,pontificates:20,hunched:45,Denali:2,pop:139,swum:17,hunches:4,MAKES:20,Electric:40,rhinestones:4,bequeathed:54,"cash-squeezed":1,Bisson:2,"Y.M.H.A.":2,billionaires:4,dairymen:4,Leominster:2,blessing:21,Spokeswomen:4,ADVANCEMENT:2,Stavropoulos:2,Geissinger:2,minister:47,Barmore:2,eaters:4,careful:1,irrelevant:1,sniff:39,mount:182,Vary:33,premature:1,"pre-date":39,Sega:2,Yachtsman:2,enriches:20,vest:25,Silvers:2,coupled:54,Edwin:74,Oak:11,couples:4,Oat:2,Shoppers:4,decisively:6,Cashman:2,erroneously:6,Schwarzkopf:2,dithering:8,chuckling:8,"no-profit":1,persona:80,Commodity:11,Soul:2,decently:6,Sour:2,unqualified:1,illicitly:6,Buckhead:2,Drunken:1,Appelbaum:2,synthesised:17,shroud:33,Physical:129,"LBO-related":1,Herod:2,Vikings:111,Heron:2,risking:8,Nikolais:2,halfway:218,"lower-cut":1,Propane:2,rose:558,Getty:2,Laboratorium:2,disrupt:42,Tsur:2,Marmara:2,Ricco:2,Adair:2,confines:4,"saber-rattling":22,confined:81,Beiderbecke:2,Wynn:2,Producer:47,exquisitely:6,reduces:20,snort:63,"four-in-hand":1,Israelites:28,substandard:1,"stony-meteorite":1,reduced:45,Antoinette:2,Bookwalter:2,Vevay:2,"inflation-hedge":1,West:559,"better-capitalized":1,Cracklin:2,"semi-local":1,Employee:11,Cahners:2,Bartleby:2,Berens:2,boatsmen:4,Basler:2,resonate:39,DeMoss:2,preceding:30,"loose-knit":1,Rutherford:2,Kolstad:2,"launch-pad":1,Olin:2,Neuberger:2,TRT:2,TRW:2,TRV:2,"roly-poly":1,Extensor:2,Cabernets:28,Jackie:2,informing:8,creepers:4,Coleco:2,"relative-performance":1,equalize:39,tariffs:57,Bexar:2,ladies:4,Fritze:2,Commisioner:2,"pick-up":3,Fabbri:2,Tumbling:1,Otto:2,Otte:2,theoretically:6,"Wolters-Kluwer":2,ESL:2,boatloads:4,Nabisco:2,Hurwitz:2,Vikulov:2,"expiration-related":1,liberals:4,Infiniti:2,Ashamed:1,unfertile:1,Infinite:3,Mansfield:2,"Lesley-Anne":2,"multi-millionaire":3,Errol:2,Stoneridge:2,"over-50s":4,amongst:127,Wurm:2,Sloves:2,Melies:2,Inscribed:17,pygmies:4,Kisha:64,demilitarize:39,"Arbitrage-related":1,"hard-sell":1,Saito:2,cloisters:4,"dimly-outlined":1,"muscle-bound":1,Gienow:2,Space:11,Nucor:2,shoulders:4,McKenzie:2,encompass:39,"pre-season":1,discerned:17,Hirey:2,puttable:1,narrowing:55,Hired:7,"radio-TV":3,heathen:3,SGC:2,analystics:4,Johnstown:2,Farnum:2,McCormick:2,collaborative:1,Wellington:2,concoctions:4,Zoete:2,Deafening:8,Perier:2,accruals:4,unanswerable:1,Marilee:2,conceptualizing:8,Brewer:2,Runner:2,quavering:8,internalized:17,lamentations:4,hitless:1,tanned:7,AMUSEMENT:1,Breen:2,all:560,quizzical:1,ZZZZ:2,Delphi:2,Frederick:2,swerving:8,Ayatollah:2,systemic:1,Messrs:28,deportees:4,hmmm:106,wanton:1,"kick-offs":4,"all-natural":1,"now-historic":1,Strut:39,"High-ranking":1,Strum:2,Strub:2,"problem-the":1,"al.":4,Beachfront:2,Dior:2,CHICAGO:2,sundials:4,facetious:1,chicly:6,oxides:4,Fowler:2,awful:97,quadriceps:4,sentimental:1,Nursing:116,proscribed:17,Vail:2,proscribes:20,walkouts:4,Ushuaia:2,Wellesley:2,underperformers:4,immanent:1,Durant:2,"collar-to-collar":1,Pharma:2,gleened:17,monodisperse:1,reins:4,Ewen:2,BDDP:2,Interest:47,"pound-of-flesh":1,Circle:11,Oppen:2,"Trans-Pecos":2,displaying:8,Frustrate:33,crush:25,faltered:32,"Absent-minded":1,"more-than-terrible":1,Iranians:28,Brauchli:2,condensed:7,tags:18,Exaggerated:17,unwaveringly:6,unprofessional:1,raked:32,CoAdvil:2,"Two-Year":1,"nerd-and-geek":1,"under-35":1,piquant:1,outposts:4,gamesmen:4,Toy:11,Top:117,"Italian-cut":1,bathers:4,Tok:2,Toi:2,Too:150,Lahan:2,Toa:2,senders:4,Toe:2,obscurely:6,Lived:16,jurors:4,Shiftan:2,denominated:17,Overall:510,Lives:283,toughs:4,markets:18,minor:3,"front-running":1,"Late-night":1,"which...":102,spacers:4,lopsidedly:6,pinheaded:1,Wyatt:2,basically:6,lapels:4,nitpicking:1,Silbermann:2,confessionals:4,Holewinski:2,Particularly:6,Figurines:4,wizards:4,Vasilenko:2,Kiran:2,McNerney:2,"souped-up":1,Phantom:2,spenders:4,"box-sized":1,Grahamstown:2,Nora:2,Savona:2,Nord:2,Nori:2,"mother-of-pearl":3,meandered:16,influenced:54,court:24,"half-year":3,Rockhall:2,"gin-and-tonics":4,Detachment:2,Amira:2,influences:18,"non-Korean":1,bawdy:1,Structural:40,superpremiums:4,unsurprising:30,mountings:4,Debonnie:2,profited:32,rationalize:42,prefers:20,interpolations:4,stash:63,surfeit:78,"Nasdaq\\/National":2,shade:25,"coals-to-Newcastle":1,Nikka:2,outrages:4,Vescos:28,"then-moribund":1,outraged:81,"market-makers":4,reconnect:39,"operations...":102,inquiries:4,disagreed:32,Hash:11,"yet-another":1,pray:42,Stefan:2,SAAMI:2,"Code-Alarm":2,disagrees:20,prai:33,Estimate:59,flexural:1,"W.O.":2,thoroughbred:3,mimetic:1,sucking:55,Enfield:2,Goodwill:11,imitators:4,Asean:1,"but-bulls":127,"pint-sized":1,wafting:8,stroked:32,sedimentary:1,Lambeth:2,Mory:2,electrogalvanizing:8,inflates:20,buffetted:17,Untch:2,Mori:2,expect:561,Mischa:2,inflated:103,More:562,reverent:1,wondered:32,poachers:4,convicting:8,clandestine:1,impeccably:6,induces:20,diaphragms:4,induced:54,remodeling:55,Gurus:4,Cosmo:2,Schraffts:2,"Kingdom-based":1,loused:16,bushes:4,Olechowski:2,"e.g":80,Igbo:2,progressives:4,feed:563,Huge:1,hydrides:4,feel:95,Hugo:11,Hugh:2,aseptic:1,feet:91,Buzzell:2,Autobiographies:4,soaps:4,impeccable:1,Eating:268,"majority-owned":1,Models:4,brisker:12,hangs:20,Cytel:2,Iard:2,grimy:3,Gulch:2,kilobytes:4,recovered:32,pipelines:4,Vineland:2,"property\\":1,Volokh:2,optical:1,"Suisse-First":2,Nevsky:2,"second-biggest":1,KOREAN:1,lavishing:8,"rate-sensitive":1,Korff:2,aims:72,ATMs:4,outrageous:1,Kromy:2,chousin:8,journalistic:1,risks:18,insulted:54,risky:1,Gilded:2,dropoffs:4,suspicious:1,"hour-long":1,Jane:11,cognizant:1,Gilder:2,Becton:2,rife:1,"down-and-outers":4,nights:4,Bellarosa:2,imitations:4,DRUG:47,Chimerine:2,"still-new":1,UCC:2,Seeks:20,Chodorow:2,"semi-abstractions":4,contractual:1,"free-wheeling":1,Perimeter:2,intervened:32,"Miami-Madrid":2,Orbis:2,seances:4,Waldorf:2,"steady-state":1,choral:1,boycotting:8,prestige:22,transcending:8,Finds:20,intervenes:20,Mehl:2,Augustine:2,Yaobang:2,Yoshihisa:2,"Houston-Dallas":1,Boga:2,Quebequois:2,Kimmell:2,"left-of-center":1,notch:25,Euripides:2,journeys:4,Cerebral:2,Rothko:2,"share-holders":4,Skinny:2,Entrekin:2,relive:149,stubble:3,Amateur:129,unrealistic:1,grotesque:1,GENERAL:2,rubles:4,Wilfred:172,unsuited:17,QFC:2,Pyne:2,Liberia:111,"land-rich":1,spurious:1,TIP:47,Funded:17,fastest:380,"steam-baths":4,"non-voting":3,Aldus:2,compiles:20,Protests:18,Sleight:2,timeless:1,Restudy:39,"all-federal":1,submariners:4,wheeling:21,retaliated:16,repulsed:17,Machiguengas:57,Sorge:2,declines:18,Summaryof:2,Nomi:2,Nomo:2,Eisenstat:2,declined:32,Pamplin:2,Jurgen:2,COASTAL:2,FundTrust:2,numerous:1,hairs:4,"ethanol-based":1,Cavarretta:2,leavings:4,desegregated:17,Dabbling:8,outfit:44,"counter-productive":1,"small-denomination":22,Highfield:2,radiopharmaceutical:1,Touchstone:2,Kazuhiko:2,Werter:2,hesitant:1,hermetic:1,Amando:2,Collectively:6,Sununu:2,Farmboy:2,Cannavino:2,cynic:22,Moloch:2,gussied:17,"knee-deep":1,"S-Cargo":2,Conservancy:2,marveling:8,"Vietnam-veteran":1,crispy:1,scented:7,Hebraic:1,"re-explore":39,"fifteen-minute":1,heterogamous:1,HOTELS:28,Takeover:47,Travancore:2,skyward:6,"horticultural-products":4,"Paul-Minneapolis":2,tangents:4,Ratajczak:2,kilograms:4,firefighters:4,transferring:8,"R.I.-based":1,Academic:2,Tactical:2,"well-mannered":1,"budget-making":1,plants:18,"feather-like":1,"Estonian-language":1,stagewhispers:20,Ganado:2,Winston:2,Sales:56,Rudner:2,mythologies:4,Salem:2,barricade:25,Saleh:2,evaluates:20,Hokkaido:2,"non-forthcoming":1,Italy:2,canvassed:17,Madaripur:2,Equity:11,weirs:4,Italo:2,pavilions:4,distrusts:20,Ruggiero:2,electriques:64,examiners:4,Thrombinar:2,Dederick:2,"us...":102,"more-level":1,stimulates:20,Hemel:2,Penney:11,assuaged:17,CURBING:8,stimulated:54,Rahman:2,tellers:4,"drought-seared":1,Vermont:2,"mid-century":1,"bureau-sponsored":1,"aflatoxin-free":1,"fitness-promoting":1,holidays:18,doers:4,anhydrous:1,"Ferranti-led":1,resuscitated:17,cheer:44,vulnerabilities:4,stating:8,throwaway:1,lowers:72,Anzilotti:2,scrupulous:1,canted:1,"Long-haul":1,"all-star":1,"Ai-":2,exonerating:8,Orioles:74,Territory:2,profitable:1,Overture:2,Knapek:2,observant:1,"development...":102,"topsy-turvy":97,governmental:1,Acadia:2,"price\\/earnings":4,Palfrey:2,reinstate:39,barbarisms:4,complains:20,stews:4,Youths:2,deflators:4,Anxious:1,Clemensen:2,Mityukh:2,entangled:103,Aid:128,rotate:39,"Life-preservers":4,polymers:4,"mini-vans":4,Upgrades:4,READY:40,Centralizing:8,sprinklers:4,"Gentile-Jewish":2,"many-sided":1,stagnating:8,Northview:2,Cambodians:28,Jannequin:2,HAPPY:1,Ainsley:2,braweling:8,"double-wall":1,"ill-mannered":1,adoptive:1,Coopersmith:2,Fooled:17,Bahcall:2,Frenchman:11,"under-reported":1,baited:17,Command:11,upraised:17,Tridex:2,telegraphed:16,Russia:11,Antori:2,ICAO:2,substances:4,wherefores:4,forbears:4,surfers:4,Barbakow:2,Fishkill:2,zorrillas:4,"asset-based":1,wanna:42,gamma:22,conserving:8,blouses:4,"eight-year-old":3,Elmer:2,Ponce:2,Stranahan:2,"mergers-advisory":1,"figs.":91,drifted:32,gouge:42,Zubkovskaya:2,featureless:1,"slimmer-than-expected":1,ache:44,"B-2s":65,Anthony:74,analyze:42,contrite:1,tutored:17,clots:4,LoSpam:2,enhancing:8,"near-panic":3,"smaller-than-average":1,Belk:2,Belo:2,Aparicio:2,consist:42,Bell:2,characteristic:3,Bela:2,barring:8,"full-blown":3,Belz:2,shooed:17,highlight:95,Aggressive:2,chapels:4,Belt:11,editorially:6,airdrops:4,sublet:196,Luisa:2,Luise:2,"thin-walled":1,Coolers:4,"Commander-in-Chief":2,unjustifiably:6,evils:4,Babcock:2,Hangman:2,defrauding:8,shallower:12,unjustifiable:1,artistic:1,mustard:70,Metro:11,proration:22,problems:4,"three-dice":1,helping:55,insect:22,telexes:4,garbed:17,"tear-jerking":1,rightful:1,Bankhead:2,Delius:2,sapping:8,forming:55,Hiroshi:2,"near-record":3,Furze:2,Migrant:2,"non-hydrogen-bonded":1,attaining:55,narrative:22,"six-point":1,intentional:1,Scowcroft:2,McAlester:2,wrestle:39,uninspected:1,hooks:18,"anti-Castro":1,Veterinary:40,"U.B.U.":2,grinding:55,Symington:2,fancifully:6,unstapled:1,Rohrer:2,Geneticist:2,Agree:33,Norio:2,Belvedere:2,interpenetrates:20,dramatically:6,polyethers:4,midocean:1,Esber:2,bibles:4,Calvin:2,"Soviet-German":2,posture:78,bistros:4,"still-secret":1,"super-imposed":17,Halas:2,Baltensweiler:2,"black-and-orange":1,Strand:2,"nine-day":1,"half-industrial":1,stratify:39,Subcontractors:4,DTH:2,Brien:2,flashlights:4,Maggart:2,datelined:54,Brief:129,Ellmann:2,abominable:1,Panic:47,superceded:32,"ex-bandits":4,reaching:55,Cujo:2,concisely:6,gubernatorial:1,Maryanne:2,toenails:4,Koreans:41,Highlands:46,categorically:6,"New-York":2,Obviously:6,"Mussolini-like":1,"less-than-half-time":1,"controversy-prone":1,"post-graduate":3,"one-issue":1,Piloting:8,Cuddleback:2,Immoderate:2,communicational:1,unenviable:1,"January-to-August":2,brachii:4,Danchin:2,Tanny:2,unconditional:1,definitively:6,disowned:32,"once-bustling":1,Binary:1,"strategic-weapons":1,Operational:1,"dark-blue":1,columnists:4,Input:47,"Lebanese-controlled":1,galloped:17,lamming:8,"long-delayed":1,devotional:1,garbled:17,uniramous:1,Oyajima:2,Career:11,rarest:51,"Chinese-British":1,steadfastly:6,recount:63,detects:20,"F.S.C.":2,ALL:564,Igaras:2,strategically:6,dusted:54,napkins:4,Onondaga:2,"Rhone-Poulenc":2,Amboy:2,ALT:2,ALU:2,"picture-images":4,bittersweet:1,STAGED:16,Parts:56,Suspension:2,"soil-nutrients":4,Party:11,Shipments:4,sir:235,Flames:28,sit:565,Ruxpin:2,embarrassingly:6,outclass:149,"Baby-dear":2,Edgerton:2,privatize:39,ruffians:4,Engraving:2,maternal:1,immersed:54,"beer-tax":1,impulsive:1,Ghose:2,"pseudo-scientific":1,polarities:4,reassurances:4,Nashua:2,Rifkinesque:1,sanest:51,CreditWatch:2,reauthorized:17,Wockenfuss:2,pulsed:17,demobilized:17,statutory:1,beguile:33,pistols:4,pulses:4,"cross-market":1,hankered:17,Boucherie:2,Vermeersch:2,frightening:13,McInnes:2,Liberian:1,clusters:18,edging:55,"fewer-than-expected":1,Cay:2,pecans:4,gasses:4,Cap:59,Cav:2,invitations:4,Can:487,Cam:2,Cal:2,Cab:2,Caa:40,Murders:4,PRINCE:2,gassed:17,Devonshire:2,Puget:2,railbikes:4,Autry:2,Restrict:39,BankWatch:2,beveled:17,"E.":2,disregarding:8,beavered:16,McClintick:2,lilac:1,tepid:1,indulges:20,unbelievable:1,misperceptions:4,"lesser-known":1,Wendy:11,stewardesses:4,preying:8,indulged:16,Pressburger:2,tabulate:39,Claremont:2,unencumbered:1,"dock-siders":4,"party-line":3,exporting:8,Brewery:11,supports:72,Sacrifices:4,Alva:2,LaGrange:2,molecularly:6,MacAndrews:2,weaves:18,"computer-system-design":1,"cranberry-and-gray":1,latitudes:4,Charlton:2,Landscape:2,plainly:6,"anti-seizure":1,flocked:32,echo:24,engenders:20,Accordingly:6,lovering:8,Heyford:2,Saab:2,laughingly:6,North:566,Norte:2,"Rent-A-Lease":2,Bonaventure:2,Miriam:2,"wood-paneled":1,Segur:2,fermions:4,canvassers:4,misinformed:17,Leumi:2,"high-sudsing":1,Success:47,Meredith:11,Alderson:2,musings:4,docketed:17,Directions:130,reflecting:30,overreaches:20,BLUE:1,Sniffle:2,SELLING:116,Deutsch:2,Galan:2,Leery:1,nonsurgical:1,blip:24,faux:145,Basho:2,academically:6,Michelangelo:2,angle:25,rearranged:16,Winnebago:2,rearranges:20,madstones:4,"woven-root":1,HEALTH:47,Severna:2,"re-opening":8,Barrette:1,"tough-minded":1,alarmed:14,insidiously:6,neighboring:30,Song:11,exhorting:8,IMEDE:2,Chabrol:2,"two-line":1,Millers:111,Pryce:2,Venti:2,Vento:2,bulging:30,ANNUITY:2,"wide-sweeping":1,Jyoti:2,Genevieve:2,TOPAZ:2,Lassila:2,Riiiing:106,Blueger:2,neurotoxic:1,darkest:51,"U.S.S.R":383,subtracting:8,bottling:21,squirms:20,Promptly:6,verbs:4,bogged:32,Strongin:2,"warm-ups":4,"stock-holding":1,Transco:2,broncs:4,Octobers:28,urethanes:4,Tarrant:2,deceives:20,"Know-nothings":4,allocate:42,clubbers:4,"competitive-analysis":1,liquidators:4,deceived:54,Burnham:2,FDC:2,horticulturally:6,oligarchs:4,FDR:2,geometrically:6,FRANKENBERRY:2,Ballad:2,televised:14,coveting:8,Rittlemann:2,frustrates:20,Lawless:2,Newells:28,Rudoff:2,frustrated:81,"data-service":1,publishers:4,Aviion:2,Gazettes:2,"Dallas-headquartered":1,rescuers:4,Doxiadis:2,succesful:1,Maggie:2,"anti-generic":1,"non-junk":1,Indies:111,underscores:20,auctions:18,Rolls:11,"up...":102,Axis:2,sequenced:17,carbonates:4,Ellerman:2,"R.E.":2,walk:95,Gamper:2,interface:25,phonologic:1,fledging:8,coordinates:18,sequences:4,"desk-top":1,trays:4,"i.e.":567,subsurface:1,Grzesiak:2,Brahmaputra:2,Discount:40,"pullet-roofed":1,Sandra:2,Sandro:2,counterculture:1,nickel:22,inbound:1,interrupts:20,nicked:17,injustices:4,walloping:3,"help-me-make-it-through-the-fiscal-nigh":1,CDs:92,cavorting:55,overturn:39,Innopac:2,CDA:2,CDC:2,CDK:2,CDT:2,CDU:2,Fatalities:4,Fitch:2,loosest:51,mutant:1,"ten-month":1,"mid-afternoon":34,"eight-hour":1,outspend:33,"water-reactor":1,Loving:2,kissed:32,unveiling:55,"market-moving":1,"clear-headed":1,"H.N.":2,improves:20,refinancings:4,conversations:4,Waveland:2,fantasized:17,gets:20,UST:2,tomatoes:4,sops:18,raisers:4,Alma:2,"Hanover-Bertie":2,Manuel:2,"D.L.":2,"semi-finalists":4,extramural:1,"re-paid":16,gutted:54,dismounts:20,riveted:54,Fawell:2,obtain:42,Hasidic:1,batteries:4,propositioned:16,Crews:2,Taikisha:2,toilets:4,Neveh:2,Teddy:2,Publication:47,Diagnostic:2,Downing:2,attractive:1,"c-Yields":568,stowed:54,rescind:39,Institution:2,Bloopers:4,Jaffe:2,masquerade:78,Lazar:2,Camels:4,Saledo:2,Felsenthal:2,Garonzik:2,"T\\/A":2,Guam:2,DeScenza:2,Iverson:2,incendiary:1,Ueberroth:2,Foods:41,"machine-gun-toting":1,Boylan:2,Fulson:2,"razor-sharp":1,Bouygues:113,"auto-loaders":4,sultry:1,Shiflett:2,Informed:17,Bahar:2,"pre-legislative":1,platforms:4,Kahn:2,export:205,proprietorships:4,Sherren:2,NORAD:2,Warmly:6,severance:22,Shamir:2,Sihanouk:2,Alzheimer:2,debuts:20,"soft-currency":1,"blood-flecked":1,Range:47,Sutz:2,hypoactive:1,fluorescent:1,motive:22,"half-empty":1,"death-like":1,linger:42,"shrub-covered":1,Kaifu:2,SPCA:2,"track-signal":1,monthly:34,Moehn:2,Oct:2,"blot-like":1,inaugurating:8,cocked:32,dulcet:1,travelers:4,scarecrowish:1,Chadha:2,Adjusters:4,Clashes:4,whiplashes:4,Widely:163,"well-regulated":1,Pedigrees:4,Enforcement:11,Ivory:11,van:11,Corneilus:2,incipient:1,kidding:8,divisional:1,quadratic:1,desolations:4,Commands:4,Shipman:2,Poole:2,"black-clad":1,asocial:1,"good-bye":569,"well-positioned":1,squeeze:24,untraditional:1,made:45,tactics:4,whether:570,Barabolak:2,Appleyard:2,atheist:3,Uerkesh:2,interchanges:4,Bovard:2,"wedge-nosed":1,Hamrick:2,"nine-story":1,inadequate:1,Writes:511,Writer:2,plaques:4,SEPARATED:17,APPEARS:20,mutual:1,diplomas:4,"Uto-Aztecan":2,Freinkel:2,Decathlon:2,reinvigorating:8,cutthroat:1,overtones:4,"L.E.":2,Banner:11,Strident:1,"laundry-type":1,Lehder:2,Ottermole:2,Nonbuilding:1,"Jean-Paul":2,"household-products":4,metabolized:17,"income-tax":22,Creditbank:2,twangy:1,extort:39,Garbage:2,Competitive:66,coincidentally:6,Keizai:2,"ex-employees":4,Bacteria:4,"medium-distance":1,Mortimer:2,Procardia:2,"Germany-based":1,treading:8,granting:55,"four-month-old":1,aggregations:4,Ronald:2,Visitors:56,Nagamo:2,portentous:1,shaving:21,Frankly:150,Electrosurgery:2,reconstructions:4,"second-stage":1,Ducking:8,elevations:4,Ole:66,Sande:2,internally:6,slyly:6,Chippendale:2,Dalgety:2,Rojas:2,Coupon:47,SoftLetter:2,Sands:74,"citizen-plaintiffs":4,Sandy:2,cloves:4,"small-game":3,tired:81,pulse:25,tires:18,consists:20,rusty:1,inheritors:4,"foreign-owned":1,"ten-foot":1,Weart:2,Colo:2,Supports:20,Unemployed:66,contributed:32,fingers:4,Weary:66,pathogenic:1,Wrong:66,"set-asides":4,redelivered:17,contributes:20,exclamations:4,Kassan:2,specialist:22,misjudged:32,brocaded:1,splinter:449,here:6,herd:25,reported:571,"[":528,Cold:129,"whipping-boys":4,conversational:1,"road-shy":1,Fernberger:2,Catastrophic:2,Settlements:113,HLR:2,tremors:4,symmetrical:1,Cola:2,"no-more-nonsense":1,Basir:2,MEXICO:2,fireworks:4,MERGING:8,Pomerantz:2,Scottsdale:2,"computer-security":1,Basil:2,Syrians:28,"SKr20":4,Messina:2,Merle:2,"rise-perhaps":6,Plugging:8,bays:4,Chahar:2,Humility:2,sweltering:1,Quek:2,Charity:47,expiring:8,Holds:2,holy:1,detracts:20,gashes:4,ruminations:4,Emerson:11,menaced:17,hole:24,hold:572,Pardon:25,irksome:1,porcupines:4,EDA:2,Wilderness:47,Geeks:65,"budget-altering":1,EDS:2,cristata:64,EDT:2,Hobday:2,postponable:1,Frosts:28,Positive:66,"FCB\\":2,"Ex-smokers":4,malign:1,Antonovich:2,Travelling:8,hog:19,fuzzed:32,hoc:64,drying:55,Gardner:2,"then-dress":1,hot:1,Wedgwood:2,"casualty-loss":1,classify:42,A:573,renounced:16,McKinnon:2,minimums:4,Michelman:2,infrastructural:1,Yields:4,Schober:2,overexploited:1,Manafort:2,headquarters:19,presiding:8,Lalauries:28,TASTY:1,"debt-laden":1,Grigoriy:2,democratic:1,Maruwa:2,Edita:2,schoolmates:4,Pavese:2,"home-delivered":1,dreamed:32,Mindanao:2,Jules:2,"Micro-Economics":28,murals:4,Charlottesville:2,Broadbent:2,"term-end":1,admirably:6,Howdy:106,Munching:8,Smarter:381,McKinsey:2,intelligentsia:19,"goal-oriented":1,distinguishing:30,nobler:12,nobles:4,admirable:1,grievous:1,Eubie:2,"aftershock-damping":1,SpellRight:2,Gossiping:2,awfully:6,SWITCHING:8,Gottlieb:2,pleasantries:4,"across-the-board-cuts":4,spotless:1,Dutchman:2,McCluskey:2,"Three-quarters":4,Undersecretary:2,Superior:40,Falklands:2,"chest-high":1,"jet-setters":4,"near-limit":1,contracting:21,whiz:235,"c-Translated":231,Trunkline:2,whip:25,borne:17,shutdowns:4,"balanced-budget":3,Gustav:2,trending:8,whoosh:174,Gustaf:2,"Sin\\/Your":2,Curiosity:47,Purepac:2,"pre-Anglo-Saxon":1,"intervention-speeded":1,managerial:1,"hero-worshippers":4,Hiatt:2,SES:2,Scrivener:2,"post-sale":1,piecemeal:43,reprimanded:17,Bramante:2,"greenhouse-produced":1,Votes:4,Voter:47,clinical:1,McCaughan:2,"exit-visa":1,eyeglasses:4,spinning:30,Waterford:2,Steelers:2,bitten:17,"even-tempered":1,Sonia:2,Puche:2,Mitzel:2,beguiled:17,numerological:1,Recordings:2,Simmons:113,chugging:8,bitter:1,rummaged:16,Anku:2,"electronic-data":574,cushions:4,gothic:1,Victory:11,"pulse-timing":1,Kaina:2,"Chrysler-brand":1,"ever-tightening":1,Carroll:2,Maxim:2,nations:4,Eades:2,Cody:2,Bucchino:2,fevered:1,Tatsunori:2,broody:1,corny:1,"easy-to-film":1,"on-again":1,Holly:2,corns:4,diversifications:4,Schrier:2,herdin:21,"three-foot":1,Kansallis:2,circulated:32,object:24,Pavane:2,backpedal:39,Paychex:2,known:14,"large-diameter":1,Nunzio:2,Bulloch:2,FALTERS:2,Bullock:2,pirogues:4,consummate:1,place:486,Mayumi:2,incomplete:1,marvel:63,Klansmen:28,chirpy:1,Basra:2,McGuane:2,Situation:2,heckled:17,reinvented:32,Congressional:40,touches:18,busy:1,Premium:2,skirmishes:4,typewriters:4,Whitbread:2,bust:575,skirmished:32,druggies:4,Hirschey:2,"Romanee-Conti":2,"tire-kickers":4,"non-regulated":1,Californian:213,cubic:1,Francaise:2,Vases:4,Chapters:4,Delors:2,Quicker:12,cushion:25,Stadtmauer:2,"by-wheelchair":1,Colorado:2,Ringing:268,Schwemer:2,decoys:4,Ripplemeyer:2,"three-year":1,Transporting:8,release:24,particulate:1,Sharpest:51,"stand-still":1,"sheet-metal":3,Biedermeier:280,Gruppe:2,"Famous-Barr":2,Stikeman:2,Olympian:1,result:24,internationalize:39,hammer:24,Dogs:92,peptizing:8,Cocteau:2,"Waist-High":1,Risk:47,Szold:2,overbillings:4,Rise:576,"just-revised":1,Credietbank:2,occupational:1,Terrier:2,Devans:2,parallels:18,disposable:3,"international-operations":4,inextricable:1,SUGAR:47,inextricably:6,Tomonggong:2,downgrade:25,pity:78,patented:45,Trammell:2,"Simonds-Gooding":2,Poehl:2,pits:18,mew:39,demanded:32,recoilless:1,Dreyfus:2,"colo-rectal":1,asked:577,Tallahoosa:2,lockers:4,"media-buying":10,"near-manic":1,Petfoods:28,agglomerate:25,"self-professed":1,"caffeine-free":1,Unquestionably:6,blending:55,"stock-swap":1,Columns:578,postmasters:4,Marron:2,"stop-limit":1,Clarence:2,"quake-displaced":1,Confucius:2,Worksheets:4,Tomato:2,Guralnick:2,"tax-reducing":8,skiis:4,Zoladex:2,estuaries:4,Almaden:2,Holmes:2,Hapsburg:2,Devils:28,Superdome:2,"two-fold":1,mates:4,Anselm:2,starstruck:1,levies:4,LOC:2,Mitsuo:2,Mitsui:113,"Double-Jointed":2,Responsible:1,Vacation:47,"ill-equipped":1,LOW:6,LOT:2,levied:54,crusaders:4,Marlys:2,"Co-Chief":2,marshlands:4,"computer-room":1,things:4,any:579,Newman:2,Plaines:2,Sippl:2,toasted:32,outsell:39,"bacteria-free":1,DeVos:2,DeVon:2,Rune:2,preachy:1,DeVoe:2,Naturalization:2,tune:44,"Dalzell-Cousin":2,"desert-battle":1,"before-tax":1,Nutritional:2,echoed:32,cannibalize:39,burgers:4,dewatering:8,echoes:18,rancorous:1,spurred:54,"Over-the-counter":1,Elkind:2,allgedly:6,sovereigns:4,"sub-tests":4,Whitaker:2,Elkins:2,"short-covering":22,"bond-insurance":1,Metroplex:2,enters:20,dialogues:4,Russians:41,ENVIRONMENTAL:1,ease:182,slices:18,"slick-talking":1,topical:1,terrestrially:6,"Samengo-Turner":2,easy:97,falter:42,east:34,Wilbur:2,posed:54,Kelton:2,"well-wedged":1,"MX-6s":28,poses:20,bushy:1,occurring:8,harmoniously:6,Oncology:2,Nederlander:2,bobby:22,Lowry:2,Ezekiel:2,"eight-by-ten":1,"Mts.":2,Shrove:2,"Follow-up":1,"without,``":133,Aquidneck:2,"finely-spun":1,Desrosiers:2,"N.M":2,"N.J":2,"N.H":2,midyear:22,"N.D":2,"N.C":2,"N.A":47,Suspect:1,"N.Y":2,"N.V":11,"lend-lease":1,Palms:28,"W\\/O":2,Motley:2,rehearse:39,Hasseltine:2,"speed-up":1,creative:1,imposes:20,Palma:2,"Cholet-Dupont":2,"attorney-client":1,Gandalf:2,Hippie:2,nubbins:4,Wertheim:2,terraces:4,Barcalounger:2,terraced:17,manufacturing:21,Gorby:2,"ham-like":1,intellectus:64,"Factor-VIII":2,coexistent:1,Dyson:2,"pseudo-glamorous":1,Lullwater:2,Gitanes:2,cohesively:6,leverage:25,disqualified:54,slightly:6,meddle:39,Fiero:2,consulting:122,Fenway:2,"well-cared":1,Starpointe:2,"cell-free":1,Marketed:17,Fiery:1,"consumer-products":152,journeying:8,Fuss:39,precludes:20,"chalk-white":1,Tchaikovsky:2,knowing:5,GOP:2,uncluttered:1,alphabetized:32,"Civilian-groups":28,underestimated:54,insurrection:22,"non-contract":1,offer:44,understandably:6,notifications:4,talents:4,Dalloway:2,"heavy-tracked":1,squalid:1,unchlorinated:17,"anti-dilutive":1,Seeing:229,Tong:2,Toni:2,myopic:1,Hatteras:2,"highest-grossing":51,histochemical:1,Tony:2,Andy:2,Szeto:2,fiefdoms:4,Differ:33,nectareous:1,Ruffel:2,Scurlock:2,Crush:2,Virgin:40,Virgil:2,Coburg:2,LOGIC:2,pretrial:1,Coburn:2,OLYMPIA:2,"Sunday-Tuesday":2,uttered:32,grammatical:1,ambitious:1,lenses:4,Ibos:2,smell:44,Tirpak:2,rehearsing:8,"Western-style":1,"semi-professionally":6,Luthuli:2,"non-cumulative":1,grinders:4,rolling:5,annointed:17,congested:7,denationalized:17,Kemchenjunga:2,mateless:1,serialized:17,lowdown:1,"IMF-World":2,packets:4,Quaker:2,Samara:2,unquenched:17,banners:4,Lamle:2,restaurateurs:4,perch:25,Riney:2,reviewers:4,Nicklaus:2,Desktop:2,"throw-away":1,doted:17,fawned:17,FIRMS:4,Sluggish:1,Stinson:2,Siemienas:2,Tupperware:2,Songau:2,Santayana:2,plainclothes:152,Sizable:1,KETV:2,debtholders:4,"leaving...":102,WEEI:2,Prize:11,Debussy:2,"two-door":3,Cosmic:2,Conquering:2,VAX:2,Smilin:2,fullest:51,Hannibal:2,VAT:2,thermoformed:17,"Off-Broadway":2,kneading:8,vans:4,muscat:1,Aldrich:2,reclusive:1,Dubin:2,"Stock-index":22,"post-Watergate":1,rents:18,"Coche-Dury":2,phosphates:4,leering:30,"Lt.":2,ordo:64,psychosocial:1,"retirement-system":1,axes:4,"A.E.":2,Timmy:2,proprieties:4,ACCOUNTANTS:4,Jannsen:2,creepiest:51,"steel-toothed":1,grandparents:4,funeral:22,"tight-lipped":1,Undismayed:1,alone:218,along:475,anchoring:8,"Power-generation":1,"anti-reformers":4,Packer:2,saws:4,vectors:4,Ziegler:2,Casals:2,Joshi:2,pinkly:6,Paradoxically:6,melodious:1,Delahanty:2,prefer:149,coinciding:30,unabsorbed:1,"typically...":102,Tilghman:2,Nikko:2,Donizetti:2,traders:4,unmarked:1,Crouch:2,huskily:6,homesick:1,shortfalls:4,filmy:1,films:4,unwounded:1,sonnets:4,climax:25,"carved-out-of-solid":1,marbles:4,Barely:6,tailing:8,Retail:66,"Ambassador-designate":2,logos:91,Analytrol:2,"celebrity-driven":1,foods:4,coexist:42,"dual-purpose":1,disking:8,Tylenol:2,"Greenwich-Potowomut":2,Monkey:2,evidently:6,silos:4,poking:8,Guzzi:2,CLUBBING:8,"self-critical":1,"electronicmedical-equipment":1,explores:20,transients:4,Hamer:2,explored:54,Flottl:2,"Brokerage-firm":1,such:580,suck:182,Flotte:2,Dipylon:2,titular:1,NCR:2,Borgeson:2,NCI:2,darkened:112,furiouser:68,"black-tipped":1,NCB:2,"post-trial":1,colonic:1,Protitch:2,unsolicited:1,Grimm:11,Maurier:2,noteworthy:1,"sell-off":19,heraldic:1,reaffirms:20,blustered:16,dyspeptic:1,"legal-ethics":4,Onidi:2,Widget:2,yawning:30,thumb:25,"court-reporting":1,Singin:8,"public-works":152,Kissing:8,thump:25,deviant:1,downsizing:55,conveying:8,executors:4,Returns:4,thyroids:4,chromatic:1,retrain:39,Tullock:2,Viggo:2,Tittabawassee:2,Torresi:2,Birgfeld:2,maintaining:8,firming:55,"look-alike":3,McAllen:2,wallpapers:4,"Lucky-Goldstar":2,olivefaced:1,Lotte:2,Forfeiture:2,Tristars:28,repaid:54,Governali:2,Loudermilk:2,sexually:6,regionally:6,Knife:11,"small-scale":1,Shepherd:2,Undeterred:1,"ever-optimistic":1,Minoso:2,Remembering:8,Welcome:581,Leopard:2,"non-inflationary":1,protections:4,"D.J.":2,inconspicuously:6,Saturn:2,chemically:6,Tropworld:2,superiors:4,willya:190,mapped:54,seventh:1,vicious:1,plea:25,quarterbacks:4,Fenton:2,longrange:1,monogrammed:1,silhouetted:14,undisguised:1,programming:21,routed:54,"trial-book":1,"X-marked":1,silhouettes:4,Philippians:4,LXI:2,routes:18,jumbled:17,"number-one":1,Hayeses:28,recapitalizing:8,"plea-bargain":1,bluish:1,teaches:20,speculatively:6,Horwath:2,forfeiting:8,"well-tailored":1,"ink-jetting":1,"MacNeil\\":40,rodders:4,judgements:4,dissipate:39,separatists:4,"out-moded":1,Sharpshooters:28,silvas:64,Attilio:2,Patrice:2,Josephthal:2,Patrick:2,Kurd:2,proving:55,betray:42,ridiculous:1,Install:39,"jury-tampering":1,Laff:2,Kurt:2,"nine-year":1,vocabularies:4,"Poynting-Robertson":2,"anti-authoritarian":1,scrumptious:1,Seerey:2,unprecedented:1,Athenians:28,"once-bloated":1,"WTPI-FM":2,Dissenting:1,cowed:17,obliging:1,Elemer:2,descends:20,Couturier:2,"dusty-slippered":1,foiled:81,preservative:1,nott:6,AUTOMOBILES:28,unsuitable:1,cent:80,note:582,unsuitably:6,Monoclonal:1,hedonistic:1,indebted:1,handing:8,Drop:583,"mid-twentieth-century":1,invoked:32,"East-West":40,remarks:18,prodigies:4,metaphysicals:4,"weather-royal":1,hugely:6,"market...":102,salt:22,"mega-resorts":4,twinned:17,Broncos:113,Merola:2,Mobs:4,weapons:4,slow:274,slop:25,tears:18,slog:39,"four-letter":1,wilfully:6,"suggestions...":102,"long-settled":1,godlike:1,Meadowland:2,"oil-and-gas":1,touch:584,Presto:64,"tree-clumps":4,Roling:2,"over-stored":1,"Cowessett-East":2,Starkov:2,"iron-poor":1,infringes:20,Conneaut:2,borrow:42,absurdly:6,"non-sales":1,Tripartite:2,Manchester:2,wheare:293,Frankenberry:2,marred:81,Granath:2,Edmondson:2,Juniors:585,subatomic:1,"Communist-type":1,Armory:2,"no-one":1,purest:51,Hempstead:2,diddle:106,temporized:16,mops:4,Baja:11,Allergan:2,scooting:8,jobs:4,ANNUITIES:4,Jervis:2,suppresses:20,gratefully:6,spare:586,spark:182,suppressed:81,quack:235,deliciously:6,Czechoslovak:1,jokers:4,Phipps:2,inclusions:4,"now-defunct":66,"work-rule":3,Mortgage:11,Delaware:2,Comparing:8,amphobiles:4,boar:4,aerial:1,extinct:1,"fungus-produced":1,fitful:1,sprays:4,submerging:8,stretch:205,mounting:5,locally:6,mutinous:1,Sardinia:2,"twin-line":1,Replied:16,"Pacific-listed":1,Hebert:2,Varnell:2,Whenever:293,"non-exclusive":1,Play:128,chatty:1,unclouded:1,eschews:20,pacers:4,dressy:1,"re-energized":1,moorings:4,Londonderry:2,"less-creditworthy":1,"NT&SA":2,Prettier:12,Airy:1,"minimum-fee":1,undiversifiable:1,compatriots:4,DuVol:2,Towards:587,threatens:20,scientifically:6,Freddie:2,Borglum:2,underestimate:39,ARISE:33,"pre-introduction":1,glutting:8,reverts:20,snarls:4,births:4,domineering:30,Bathyrans:28,"near-unmatched":1,culled:17,"tumor-necrosis":1,Jiaqi:2,"blind-pool":1,hubba:106,Colorful:1,Holies:28,Holien:2,"Sonet-based":1,"color-field":1,PWA:2,"wraith-like":1,Lucerne:2,exacerbations:4,distills:20,sprayed:54,"white-shoe":1,Sokolev:2,amalgamate:39,slimy:1,propfan:70,pols:4,omissions:4,inaudible:1,TEXAS:2,Louchheim:2,briefings:4,unprovocative:1,color:139,Morfey:2,antagonisms:4,Takamori:2,Artemisia:2,Nicastro:2,TBWA:2,Secondly:6,Tripe:2,Nile:11,Richert:2,transcended:16,boycotted:17,Sherwood:2,"cash-draw":1,partaking:8,"Beirut-on-Hudson":2,expunge:39,nutrients:4,Dubois:2,Augustus:2,discarded:54,tsunami:19,Beall:2,Fourtou:2,pundits:4,HOMESTEAD:2,Beale:2,Soukhouma:2,bankruptcies:4,"most-used":1,Stockgrowers:28,Delaney:2,Rubinfien:2,"sweetest-tasting":1,conscionable:1,JACKPOT:2,Ruidoso:2,searing:30,abusable:1,Orthopedic:2,exit:25,forecasted:17,dissociates:20,"hand-written":1,DeTomaso:2,Daimler:2,scientific:1,power:24,intimate:104,Carrot:2,Meisenheimer:2,Glenda:2,travelin:8,treatable:1,favorite:3,Kysor:2,slender:200,Riunite:2,"J.N.":2,stipulations:4,"lower-status":3,"independent-minded":1,Losers:4,lofty:1,irreversibly:6,Beaten:17,"T-bond":3,accumulates:20,Branman:2,Acting:258,certifying:8,"bargain-basement":3,accumulated:81,Guadeloupe:2,simulcasting:8,Wilcock:2,Queenan:2,Benched:59,stylishly:6,"bulk-buying":1,"semi-ambiguous":1,Feinstein:2,percussive:1,mollify:39,viscous:1,innovated:16,BUILDING:2,complete:586,"fifth-century":1,Bum:2,Steuben:2,"made-for-television":1,mice:4,cords:4,darken:33,"pajama-clad":1,microphoning:8,couching:8,Bug:47,stonily:6,"self-perceived":1,darker:12,Anglia:2,brotherly:1,exhausted:54,"savers\\/investors":4,accents:18,washings:4,Criterion:11,McRaney:2,clauses:4,Barbary:66,subjugating:8,"nuclear-tipped":1,Acorns:4,abolish:39,Stensrud:2,Preussag:2,predestined:17,grammarians:4,pollutants:4,Bullshit:106,standardize:39,forgettable:1,"non-Japanese":1,bombed:54,Visscher:2,Practical:66,Cardiff:2,Glove:2,Nonspecific:1,Pease:2,Greentree:2,principally:6,disdained:17,Fordham:2,"Sparrow-size":2,mocking:30,Ascent:2,wag:78,fraudulent:1,Rychard:2,Artur:2,oppressors:4,splicing:8,consider:42,Knowledgeware:2,Physiological:40,"worker-years":4,"Usinor-Sacilor":2,Boutflower:2,tours:18,"aflatoxin-producing":1,GROWS:20,"Y-cell":47,"Earthquake-related":1,Rooker:2,fjords:4,Barbara:2,Evil:129,"state-plan":1,Kingsley:2,smile:44,wad:25,Colby:2,Ollie:2,BREAKERS:2,encroaching:8,blebs:4,Fassbinder:2,laying:588,Lycra:2,swirling:8,"wind-and-water":1,"blue-blooded":1,Gasich:2,tricolor:1,Nolen:2,destitute:1,"cabin-crew":4,"near-blind":1,"antibody-producing":1,"million-square-foot":1,Bourn:2,dispassionately:6,disruptions:4,resume:182,Capo:2,succinct:1,"consumer-driven":1,Cape:11,"high-purity":3,Jiang:2,trampling:55,"N.A.":11,Newhouse:2,concluding:30,outdone:17,reshaped:54,showrooms:4,Korbin:2,roadways:4,reshapes:20,infrequently:6,healthier:136,social:3,underrate:39,Circuit:11,Marne:2,"mortgaged-backed":1,apprised:17,regiment:25,whimsically:6,compensations:4,"old-model":1,Nutritionists:4,"Md.":2,fetuses:4,"catch-all":1,"twister-coners":4,objectives:4,Romano:2,maltreat:33,Romans:41,Stehlin:2,"Newport-based":1,waterways:4,Janssen:2,Quebeckers:28,Leason:2,Yeung:2,normative:1,"Then-Navy":2,Tiffany:2,classificatory:1,Perelman:2,abundant:1,Manly:2,toughened:32,punched:32,Bayreuth:2,"safe-deposit":1,libertines:4,CARIPLO:2,salty:1,"profit-maximizing":1,Saville:2,dress:24,"Castro-led":1,salts:4,condemn:42,Pagurian:2,Mountaineer:2,trebled:54,emancipated:14,ungoverned:1,functioning:55,metalworkers:4,BanPonce:2,Instantaneously:6,appealed:32,snotty:1,Taoist:2,"Market-If-Touched":2,childbearing:8,manipulated:54,"earnings-growth":22,impermissible:1,Hathcock:2,"re-enforces":20,Lyman:2,"pear-shaped":1,incessantly:6,"yellow-green":1,Bluebonnet:2,"guaranteed-neutral":1,"Serv-Air":2,bulldozers:4,Thorndike:2,Zweig:2,"ruble\\/gold":1,Copperweld:11,behahn:6,Fixed:45,rapidly:6,laddered:1,"face-amount":3,ruining:8,Sischy:2,snobs:4,tyrants:4,secondarily:6,"O.B.":2,Nozze:64,snowball:25,renegotiations:4,outlawing:8,Dwellers:4,reticent:1,reassured:54,"defense-appropriations":1,shifty:1,Loman:2,war:269,"double-A-1":3,coping:55,"Universal-Morning":2,labeling:55,Ricca:2,Connections:123,Bolshevistic:1,Lomax:2,floors:4,cratered:17,Seltzer:2,Lomas:2,Quinlan:2,marry:42,execs:4,airconditioner:12,incinerators:4,prophesying:8,Oldham:2,grandmothers:4,Inmate:2,blues:152,"office-systems":4,terrify:39,really:6,midcontinent:1,Dion:2,"once-high-flying":1,norske:2,Flaming:2,NewsEdge:2,Ostro:2,Toyota:2,"blue-draped":1,"shop-till-you-drop":1,Peacekeeper:2,"P.J.":2,"figures-order":589,reared:32,retained:81,TBS:2,misusing:8,afflictions:4,Lausanne:2,unmanned:1,"company-sponsored":1,exhibited:54,"two-letter":1,Alwin:2,"A\\/S":2,Combs:2,Garrick:2,"sit-down":1,adduce:39,Combo:2,Topper:2,ironing:55,Combe:2,Iglehart:2,Ghettos:28,franked:7,exertions:4,Transportation:11,lengthiest:51,Cosma:2,Enterprises:41,flings:4,franker:12,Nonfat:2,degassed:17,Tracor:2,Underwriter:2,depressingly:6,philantropists:4,"two-bedroom":1,Catherwood:2,Mesa:2,Reinforced:2,"B&B":2,Clausen:2,Kramer:2,"B&H":2,"less-indomitable":1,defends:20,"Vivaldi-at-brunch":1,"B&W":2,Freind:2,Nowadays:6,"Rican-American":2,Connell:2,Yigal:2,hams:4,precipitating:8,pranksters:4,Sesit:2,Rockwell:11,pajamas:4,"carbon-impregnated":1,"craft-industrial":1,directives:4,Leopold:2,Erection:2,flatnesses:4,firsthand:277,swiftly:6,Wards:113,"anti-takeover":3,offensively:6,Zaishuo:2,Lumped:17,Munroe:2,donkeys:4,"Securities-trading":1,Amerace:2,"have-not":1,clog:39,frocks:4,"Post-tragedy":6,friable:1,Ahmanson:2,"alcohol-powered":1,Noonday:2,Kingdom:11,spineless:1,Muslim:2,misplacements:4,ELECTED:16,younguh:12,Revivals:4,"financial-services":93,occuring:8,beams:18,"ever-worsening":1,adheres:20,"anti-Somoza":1,devising:8,adhered:54,"steel-casting":1,untreated:1,Shietz:2,"Richmond-Petersburg":2,riven:17,tabby:3,Athlone:2,proclaim:42,IBEW:2,mineralogical:1,Grattan:2,nibble:63,picketers:4,Correspondents:28,"snow-white":1,avowedly:6,sacred:1,puncturing:8,"shorter-tenure":1,Saskatchewan:2,currently:218,"triple-B-minus":40,Sons:130,futile:1,Sony:2,"all-too-sincere":1,buoys:18,Bridgeport:2,"self-centered":1,OUTLOOK:2,"Prime-1":3,"Prime-3":1,"Prime-2":1,mitigating:30,Lipner:2,Honor:11,Sikorski:2,rehashing:8,prospects:4,dauntless:1,influential:1,Worldscope:2,offending:8,Donaghy:2,unMcGuanean:1,Calaveras:4,approve:42,Legislative:2,soundings:4,except:397,Greatness:2,churns:20,"joint-production":1,backsides:4,"trade-distorting":1,publishing:122,Nestled:17,MARCOS:2,lizards:4,Tickell:2,convicted:54,calculi:4,Scout:2,"incentive-backed":1,Queensland:2,Infotechnology:2,sweetheart:22,silenced:54,Seaga:2,bitchy:1,silences:4,sleeves:4,Saudi:40,"long-depressed":1,handling:21,reinstalled:17,nonmaterial:1,micrographics:4,Kassar:2,"single-sponsor":1,CAREER:2,Yair:2,Turnkey:2,Kassal:2,kissing:8,"heart-pounding":1,hoping:8,folksy:1,Detractors:4,Galapagos:2,"bank-baiting":1,ducks:18,"all-automatic":1,centennial:22,triple:590,beautifully:6,"carry-forwards":4,Doerig:2,shorted:54,fibers:4,shorten:42,tells:20,shorter:12,Ichiro:2,"x-Includes":20,virtually:591,Fiats:28,Quint:2,foments:20,Gehl:2,commune:315,servitors:4,gringos:4,Skeletal:1,unsatisfied:1,"ill-defined":1,nondeductible:1,jealously:6,"marine-products":4,Rainier:2,imcomplete:1,"long-suspected":1,stack:25,crosscurrents:4,"institution-wide":1,rosters:4,"immediate-response":1,Lanston:2,"Ill-considered":1,Lottery:2,Landon:2,"commercial-satellite-launching":1,schedules:4,Survivors:4,arrests:4,Aeronauticas:2,LaWarre:2,Landor:2,wits:4,assaying:8,overbroad:1,surprises:18,"night-time":1,signals:18,Sulcer:2,grapefruit:19,Talk:269,Rodeph:2,submissions:4,surprised:45,"add-on":3,Daniels:2,BRACED:2,Ohara:2,"Dow-Jones":2,depreciable:1,"hurricane-hit":1,aerospace:22,indelibly:6,Maytag:2,projects:18,Epplers:2,worsening:5,forcibly:6,Bedridden:1,communications:91,Leben:2,confinements:4,Professor:2,stylish:1,cronies:4,Mondonville:2,buddies:4,Andi:2,Alterman:2,sponsorships:4,"federal-question":1,FEAR:174,Insam:2,"full-dress":1,Daniele:2,linkages:4,Meech:2,Foreigners:4,"prior-day":1,Bohmerwald:64,waiving:8,Transwestern:2,major:466,Pollution:2,"Michigan-based":1,exaggerated:81,captious:1,coureurs:64,Radioing:8,Katie:2,"Kans.":2,repair:44,Carthage:64,recreate:42,Carthago:64,collapsible:1,Gian:2,careerists:4,Findlay:2,sneaky:1,spending:592,"poison-pill":3,sneaks:20,submit:42,custom:168,Foamy:2,bridesmaids:4,"fund-raisers":4,":":102,torquers:4,Regarding:8,Strongheart:2,atop:127,Kanegafuchi:2,Yank:47,Moby:2,SJO:2,coldest:51,McLelland:2,FreudToy:2,inducements:4,bumpers:4,Africa:2,slander:25,behavioral:1,continuously:6,cachexia:64,Excerpts:4,"operating-cost":1,"single-country":1,discolored:14,"corporate-owned":1,cowboys:4,"eye-catching":1,Outside:464,Babe:2,subtypes:4,"billion-dollar":1,"re-established":16,Pawcatuck:2,sunken:1,invalid:593,occasional:1,"wildlife-related":1,"defense-products":4,tenterhooks:4,tart:3,elements:4,scrub:520,beginnings:4,provided:54,"fixed-dollar":1,Derby:2,unpunctured:1,bedeviled:17,articulations:4,ago:400,furthest:380,Nineties:28,reasoned:85,scotch:25,age:78,mailgrams:4,carrying:5,Huwa:2,teachings:4,"military-style":1,Mercury:2,partial:3,"Ever-confident":1,Betsy:2,"non-propagandistic":1,dainty:1,churned:16,detoured:32,"what-will-T":594,Alden:2,curds:4,Yaniv:2,oceanfront:3,primly:6,postings:4,probe:24,"end-of-the-year":1,torture:24,Dain:2,continues:20,Femina:2,Classics:57,continued:85,timely:97,Ambassador:11,Grabowiec:2,Patriots:28,Hieber:2,Lentjes:2,visuals:4,"Petipa-Minkus":2,"venerable-but-much-derided":1,Nurse:2,odd:1,Labovitz:2,Stonehenge:2,Bodleian:2,toughens:20,"life-size":1,Mondale:2,slabs:4,counterbalancing:8,lappets:4,respectively:6,gathered:32,delivering:8,octave:1,medallions:4,"price-driven":1,gazes:20,Giorgio:2,great:97,coops:4,Kantorei:2,receive:42,titanic:1,Maalox:2,overcommitted:17,Lips:4,defeat:44,bookkeeping:21,"quarter-century-old":1,"double-B":1,Helfman:2,slogging:8,Excludes:72,disobey:39,terrified:81,Triptych:2,extricate:39,"anti-tax-shelter":1,Danieli:2,"foreign-exchange":3,"quick-drying":1,Counters:20,unphysical:1,"drawing-rooms":4,figurative:1,"open-minded":1,duplicate:83,Chetta:2,Chok:2,purposes:4,subdued:81,Chou:2,Chow:2,gladly:6,delegating:8,Lanny:2,Mergers:41,"ill-trained":1,animals:4,this:595,"two-part":1,"run-scoring":1,thin:121,feistier:12,overcooled:1,Inmac:2,reeds:4,Hemus:2,"off-color":1,reedy:1,Copies:4,Inman:2,"disease-resistant":1,intramural:1,hereinafter:6,interdenominational:1,weaken:42,"W.B.":2,mutually:6,wares:4,courtiers:4,Shcherbitsky:2,"Rim-Fire":1,scammed:16,singular:3,"successors-in-spirit":4,Disease:11,nailing:8,"Frost-Debby":2,preferring:8,"little-town":1,bellboys:4,Clarita:2,Apple:11,CRAY:2,or:596,Denis:2,RACIST:1,Buffeted:17,MLPI:2,Leahy:2,Catholic:129,"point-spread":1,produces:20,Microbiology:2,produced:54,Pfau:2,"year-earlier":3,Serene:2,Caters:2,Friedman:2,Cracking:8,silken:1,elites:4,bolting:8,Qizhen:2,popularized:54,"gun-slinging":1,detergents:4,bothering:8,Costner:2,Cowley:2,orphaned:14,"left-right":1,Arlen:2,hallmarks:4,San:597,Sam:2,Sal:2,undertaking:21,traced:54,Sag:2,accompanies:20,Sad:1,Kooning:2,Yetnikoff:2,vibrations:4,Conan:2,accompanied:54,Inspections:2,Saw:598,Sat:16,Platinum:47,overextended:45,exacerbated:54,Dentsu:2,yellowish:1,doing:442,Underage:1,upholders:4,static:3,snippy:1,"half-jokingly":6,hitches:18,Evergreen:2,Lourie:2,susceptors:4,traversed:54,Nerio:2,"O&Y":11,Alpine:40,Solitudinem:64,Spikes:2,"NT&SA-run":1,Meek:2,"J.X.":2,temps:4,Miguel:2,tied:81,tempt:42,shun:42,Meet:188,steering:122,assiduously:6,defining:8,scary:1,Rullo:2,scars:4,vineyards:4,Naderites:4,Jump:25,pigs:18,Fredric:2,CHEVRON:2,Fredrik:2,scare:182,equates:20,Nary:2,Popish:2,touring:5,autographed:14,"three-way":1,Nara:2,"mid-Victorian":2,Suites:111,Placentia:2,PROCEEDINGS:4,imitate:42,detectable:1,AMERICANS:4,"hand-crafted":7,belligerently:6,travelled:103,Reproach:39,Nylev:2,Bowes:2,Trophy:11,UNR:2,suburbanite:3,"red-tipped":1,rearmed:1,fizzes:20,Gwyn:2,beatings:4,UNA:2,UNC:2,"tacked-down":1,Assad:2,Beermann:2,Lawton:2,Bolton:2,inscriptions:4,"dead-end":1,Pohs:2,Handsomest:51,Corne:2,Willson:2,Disciplined:17,disband:39,Pohl:2,"terror-filled":1,Teter:2,"belly-flopped":16,Aging:116,Fosback:2,poisons:18,Westminster:2,Bachtold:2,Correctly:6,Elianti:2,viewed:54,Pacholik:2,Petermann:2,"health-related":1,Midlantic:2,BIG:40,BID:2,jurisdictions:4,"five-coordinate":1,Hodges:2,"Yugoslav-born":1,Colinas:2,injunctions:4,BIP:2,toughest:51,embroiled:17,Hendry:2,"conservative-liberal":1,noblesse:1,Polycast:2,"better-known":1,Advertising:258,vultures:4,Asked:54,Descartes:2,manuevering:21,"checking-account":1,Acquired:231,Gyllensten:2,"U.S.-Czech":1,Relative:1,"double-A-rated":1,Brieff:2,wounded:14,CONGRESS:2,monasteries:4,hawing:8,terminate:42,centralized:103,Took:16,Shrine:2,mismanaging:8,unconnected:1,"medication-dispensing":1,Bissell:2,"Soviet-Western":2,"H-2":2,Jill:2,Gatsby:2,printers:4,Younger:195,Unwinding:8,Kaufmann:2,"H-P":2,Malknecht:2,doubtful:1,moneymakers:4,"B-I-G":2,"once-scandalous":1,Vigier:2,"T-Max":2,"Supt.":2,"anti-programmers":4,"four-megabit":1,"six-person":1,furs:4,withstand:42,Amneris:2,Rubel:2,Donner:2,primarly:6,exerted:54,Chalidale:2,"state-administered":1,Joanne:2,"dust-settling":1,Arimathea:2,Restoration:11,unravel:42,Lockerbie:2,legitimize:39,sevices:4,harsher:136,Republican:129,browbeat:39,retentive:1,Kalentiev:2,Andrzej:2,Developing:229,"single-A-3":10,"single-A-2":10,"single-A-1":3,"second-order":1,Vedrine:2,weary:1,Stalling:8,"stake-building":8,"more-volatile":12,drillers:4,recorders:4,Mossoviet:2,etc:147,puff:25,Buskirk:2,Sunman:2,strongly:6,epigrams:4,apportionments:4,Would:190,Godkin:2,"editing\\/electronic":1,unsanctioned:1,Turin:2,Marantz:2,Crouched:17,powered:14,Outputs:4,mathematics:91,poured:32,Westborough:2,"pro-Castro":1,totaling:8,Expand:2,"high-toned":1,Financiers:4,crisscross:33,pixies:4,"emigration-related":1,Financiere:2,Naxos:2,Shaking:8,freewheeling:1,"consumer-led":1,"median-nerve":1,apparitions:4,Farragut:2,memorizing:21,AIChE:2,"cameo-like":1,aesthetics:4,"silver-haired":1,Vesuvio:2,"odd-year":1,orchards:4,optimistic:1,raison:147,Mathematics:11,Toxic:1,conserve:39,terrorist:3,"market-inspired":1,dilate:39,earthmoving:3,tempestuous:1,digging:55,repercussions:4,Rafale:2,"Three-day":1,restating:8,Benedek:2,assuaging:8,Medical:40,wisest:51,siphoning:8,Garrard:2,"six-week-old":1,Superfund:2,Cowles:2,Soignee:64,"well-illustrated":1,Violin:11,"turned-up":1,strategicarms:4,Influenced:2,inconsistently:6,Polian:2,"corporate-pension":1,dachshounds:4,Hayden:2,PROSECUTOR:11,Tyre:2,"day-to-day":1,"hand-operated":1,Proxmire:2,nonsegregated:1,Theodosius:2,"developing-country":1,Nilsson:2,pompous:1,Brigadier:2,Reason:11,Divesting:8,noblemen:4,harshened:16,Norall:2,increased:599,Launch:25,Heartland:2,fairies:4,Shipping:11,WayMar:2,increases:18,Cellular:2,Sao:2,incessant:1,Casablanca:2,"tablet-shattering":1,Raydiola:2,CITIZENS:4,purling:8,pries:20,garage:78,"post-June":1,JUDGE:47,THOSE:246,sinewy:1,Brougham:2,Vladivostok:2,sinews:4,almonds:4,downside:22,"seed-bearing":1,oneself:53,LeBoutillier:2,Vladimir:2,jalapeno:1,Luerssen:2,literally:6,Karamazov:2,Say:188,"non-option":1,does:20,blurry:1,Desarrollo:2,cadaverous:1,Inside:600,"no-loads":4,"behind-schedule":1,yuh:53,residences:4,Egil:2,beneath:206,slackjawed:17,asks:20,traces:18,Rapp:2,Tammen:2,laboring:8,courtly:1,"on-stage":1,encamp:39,"Spice-Nice":2,Rape:2,executives:4,enigmatic:1,ACCOUNT:47,contractions:4,"title-insurance":3,Desai:2,iodinating:8,"combat-ready":1,roads:4,negotiable:1,Network:11,peccavi:64,"Jeep-Eagle":2,Micronyx:2,Hulbert:2,trigger:182,troubling:13,"inter-tribal":1,bd:4,Cogefar:2,Ambler:2,Verrone:2,Finnair:2,Isosceles:2,teleological:1,DIET:2,Portillo:2,"water-treatment":22,"Chatter-Proofed":1,dextrous:1,be:538,headrests:4,DIED:16,arsenals:4,"six-inch-square":1,Gettysburg:2,Gourlay:2,"non-casino":1,nominations:4,"custom-tailored":1,fold:182,menstruation:1,kowtow:39,Portage:2,gasconade:39,cosponsored:17,"sixth-largest":186,Yamaichi:2,endeared:32,DAF:2,Kohler:2,Brain:47,"gold-backed":1,DAT:2,nosedive:22,Naktong:2,"state-dominated":1,Hayward:2,DAX:2,DAY:2,"Bathar-on-Walli":2,woodlots:4,colonized:32,bailing:55,Aslacton:2,Karatz:2,Karate:47,Beringer:2,Testament:2,Mainstream:47,tidelands:4,Findings:4,Pyrex:2,hoots:4,"Thirty-one":1,rule:24,soporific:1,"computer-magazine":1,"delicate-beyond-description":1,abhor:39,Epstein:2,InterMedia:2,AGI:2,Missail:2,crunchier:12,AGF:2,AGE:2,Stuart:2,AGA:2,Messenger:11,AGS:2,relationships:4,votes:18,"anti-cartel":1,"J-2":2,endings:4,voted:32,Vere:2,Rocking:2,Toth:2,Iranian:66,gobbles:20,Volio:2,Centerior:2,egrets:4,exporters:4,Automatic:40,gobbled:32,tickets:4,Daim:2,furrowed:7,Helton:2,Longinotti:28,scalar:1,casinos:18,delegate:25,"war-dirty":1,quaking:8,nondescript:1,Harbridge:2,"Cowboys-owned":1,Wah:2,phoney:1,pragmatic:1,Matuschka:2,"two-note":1,phones:18,shut:601,skillfully:6,resubmitted:16,Strange:66,follow:42,MacGregors:28,spontaneously:6,sorriest:51,phoned:32,perish:39,Minnetonka:2,Trivia:2,"seven-thirty":6,Deluged:17,incompatible:1,Ones:2,toll:25,Onex:2,tole:602,told:32,unmotivated:1,simultaneously:6,Padre:2,WASHINGTON:2,"week-ends":4,kindled:17,Simulated:1,Addicted:2,"Ft.":2,kudos:4,Merrill:11,walkin:8,struck:32,Santucci:2,CTS:2,Stratus:11,angrily:6,charred:7,Health:11,ESystems:2,CTB:2,embarrass:39,Ouija:2,Akros:2,Bernhardt:2,substitutions:4,"prices...":102,Foil:2,whinnied:16,Akron:2,Unwanted:1,PaineWebber:128,Squadrons:2,Masterson:2,tumultuous:1,Introduces:20,Feeds:4,Introduced:17,"self-involved":1,handkerchiefs:4,Challenging:8,"full-throated":1,work:44,worn:14,resents:20,mammalian:1,macroscopically:6,criticizing:8,exhorts:20,Swan:11,Hurricane:11,Pennock:2,hyphenated:7,Frontiers:4,"dry-eyed":1,Parkos:2,Journal:11,hosannas:4,disappear:42,"completed-contract":1,disappoint:39,Arguing:8,Rilly:2,FORCES:4,subbing:8,Will:603,Wilm:2,interlibrary:1,Wilk:2,Wild:40,Wile:2,"blonde-haired":1,meaningful:1,nipped:16,shimmering:30,foolhardy:1,thickens:20,Afanasyeva:2,Sexual:2,order:604,Moultons:28,Eye:11,Longman:2,"five-blade":1,Indeterminate:2,proportionate:1,Absorbed:17,debuted:16,upholding:8,bugless:1,extraterritorial:1,Monetary:129,clanged:16,pricier:12,stippled:1,"securities-price":1,Burns:2,Burnt:2,Raising:229,willling:8,"three-cornered":1,Pros:4,Mitropoulos:2,Reama:2,"friction-free":1,Travels:113,Suggests:4,Foote:2,shameful:1,Gumport:2,Rathbones:28,Rubicam:2,bolted:54,weasling:8,doles:20,NPD:2,GFSA:2,doled:32,Gallant:2,Groton:2,Rhine:2,Choking:8,Feminist:2,SOME:246,Galland:2,Montbrial:2,disappointing:1,recognizable:1,Tournier:2,reformists:4,Novak:2,Presbyterian:2,cameras:4,"baby-products":1,unproblematic:1,Napoleon:11,Bugatti:2,"deep-sounding":1,arpeggios:4,Assemblies:2,"atom-like":1,admits:72,"anti-Soviet":1,"Griffith-Jones":2,condicions:4,theoriticians:4,"entry-limiting":1,Norell:2,"Zend-Avesta":2,undaunted:1,Australasian:1,louse:63,"myth-making":55,lousy:1,cannisters:4,"Baker-Shevardnadze":40,SWAO:2,Palestinian:117,"split-level":1,overaggressive:1,Going:229,"Aegis-class":1,comin:55,comic:3,Symbion:2,Hustle:39,Garish:1,Tests:56,hedging:605,Repository:11,Testy:1,Kolber:2,Fawzy:2,Testa:2,compromise:70,"horn-rimmed":1,Psychotherapy:2,Fawzi:2,Disneyland:2,"S*/NN&L":40,decorations:4,fanatical:1,provisioned:17,radars:4,"Care-Unit":2,rejected:32,Preparation:47,Ahmet:2,weakly:6,southernisms:4,"Y&R":2,Berman:2,dissociated:17,Selkirk:2,"face-saving":3,disproportionally:6,Mitofksy:2,hike:25,"non-freezing":1,programs:4,Wrecks:20,songwriters:4,"high-cost":1,Prose:2,Madonna:2,hacking:3,haves:4,"much-abused":1,Ticor:2,rewrite:63,Cordier:2,maniclike:1,"Rig-Veda":2,"Msec.":4,"super-regionals":4,lull:25,"Reagan-era":326,accompany:42,Knupp:2,Quasimodo:2,"beef-fat":1,ponder:42,genuine:1,"small-lot":1,"retail-sized":1,Amory:2,Fleetwood:2,Stroud:2,gnomelike:1,overtook:16,"virus-free":1,Stroup:2,circles:18,Aristide:2,Metropolian:2,SYSCO:2,Quayle:2,solidified:32,HEXX:2,Demanded:16,circled:16,tally:24,corded:17,solidifies:20,Vieth:2,Aidan:2,Ardmore:2,Telegraaf:2,newcomers:4,"Self-contained":1,Election:11,deeply:6,Institutes:41,Native:40,decidedly:6,teetering:30,knightly:1,Dimitriadis:2,Powell:2,Monteith:2,sharks:4,sewn:17,Fasken:2,Facetious:2,elucidated:17,thermodynamically:6,"fast-opening":3,pursuing:55,"so-far":1,Orkney:2,sews:20,"higher-capacity":1,Leven:2,Level:11,transfixing:8,unsteady:82,preferred:606,Vieira:2,Oranjemund:2,MTCR:2,Lever:2,Francona:2,savory:1,Menagerie:2,speared:16,"R.J.":2,Peres:2,nuper:64,Brownlow:2,humanist:3,radiators:4,Dobbs:2,analytical:1,Perez:2,steal:42,Christendom:11,observes:20,"H.C.":2,Semmel:2,observed:81,"building-materials":4,Cetus:2,scrutinizing:8,gesticulated:16,chiding:8,Pricey:1,chortling:8,seeping:8,"yen-support":1,mincing:8,Nasser:2,detracting:8,Issuers:4,negatively:6,"straight-talking":1,received:112,combating:8,ill:607,paralyzing:30,DaiIchi:2,receives:20,Mickelberry:2,groans:20,Honors:113,"department-store":22,"Feb.":11,ETR:2,Klemperer:2,spear:25,Cheeses:28,ETA:2,urgencies:4,wider:136,speak:42,engines:4,Modrall:2,exhume:39,Vague:1,leech:25,Quotation:2,hiders:4,Takushoku:2,Electoral:2,concerning:8,catering:21,Guenter:2,quailing:8,Pieter:2,Klees:2,rasps:4,Perlman:2,"clean-shaven":1,Workshop:11,"half-breed":22,lahk:127,Bales:2,Agins:2,stink:78,Ithacan:2,undemocratic:1,Matsuura:2,sting:25,"money-minded":1,brake:25,Lenny:2,Insecures:28,Shields:2,Missions:2,wooing:55,"MiG-29":2,Dolce:2,Shlaes:2,veining:21,Parrino:2,"sometimes-exhausting":1,Placid:2,Burmans:28,avoids:20,"summer-long":1,pastels:4,"foot-high":1,outperformed:32,"fastest-growing":608,Skokie:2,insulating:5,alkylbenzenesulfonates:4,counterbidders:4,Distillers:41,operands:4,immaterial:1,Physically:6,Monitors:2,Tribuna:2,haircuts:4,discreet:1,Tribune:2,impertinent:1,"buy-out":22,messieurs:64,querulously:6,sticking:267,unities:4,Mubarak:2,Conclusions:4,Zeron:2,dignify:39,supervisory:1,goggles:4,Zeros:4,physiochemical:1,"still-continuing":1,Pittman:2,"Ballantine\\/Del":2,Wesco:2,Gay:40,Trident:2,Gas:11,fared:32,"six-game":1,Gal:2,surtaxes:4,CASTLE:2,photographed:54,maye:190,maya:64,"required.":17,"lead-zinc":1,injuring:8,commandments:4,draftsmen:4,seductive:1,flavoring:21,texts:4,bucolic:1,"Ga.":2,"pains-taking":1,invaluable:1,"one-step":1,nude:3,"force-fear":1,"profit-seeking":1,Skinnerish:1,lineages:4,Unwholesome:1,Distilled:2,"shipboard-weapons":4,overdriving:8,"rhubarb-like":1,"global-warming":1,"WCRS-Eurocom":40,Stoll:2,antirealistic:1,Lankford:2,outlays:4,"U.N.F.P./NNP.":1,Farrells:28,Property:11,"hydra-headed":1,banked:85,lightheaded:1,"Nazi-occupied":1,Mennonite:66,hostilities:4,"multi-valve":1,constituting:8,speedier:335,croak:78,"SP1-plus":1,Siciliana:2,Hoijer:2,squander:39,Faulding:2,deal:44,"Kellogg-Briand":2,slowdowns:4,editions:4,Mechanized:14,"anti-convulsive":1,"recession-plagued":1,Sanyo:2,"super-majority":3,"shopping-mall":439,Holcomb:2,dead:609,Psychiatry:2,Bfree:2,Fenster:2,Bellamy:2,wellrun:1,shuttled:32,Czech:66,"Studio-City":2,Beadle:2,"pension-minded":1,foreknown:39,dovetails:20,"Xomen-E5":2,"back-up":22,cancers:4,fingering:55,"foreign-country":1,vacationers:4,fulfills:20,stronger:136,"public-audit":1,Broome:2,"stock-investing":1,"university-based":1,Bagcraft:2,revetments:4,spongy:1,dying:5,"historical-claims":4,Supermarket:47,Lurcat:2,orate:39,disbursesments:4,Eurodynamics:28,Windows:130,Bruwer:2,Nakayasu:2,WWRL:2,Estate:11,reasoning:21,Osis:2,Crescent:2,Encyclopedia:2,"statistics-keepers":4,EOG:2,Nadir:2,dance:44,Bushnell:2,desegregate:39,Aliksanian:2,fabricated:45,"No-Name":2,sponge:24,"automated-teller":3,Serve:39,Academics:4,infinitesimally:6,underworked:1,Present:610,volunteers:4,Acquisitions:57,brown:104,Lynnwood:2,Deerstalker:47,upriver:1,cochannel:3,emergencies:4,trouble:611,brows:4,Georgette:2,toxins:4,Cubans:111,Superlative:2,Hallbauer:2,Sincere:2,"wire-haired":1,WILL:190,Georgi:2,introjected:17,George:2,governing:5,"cease-and-desist":3,imprecisely:6,legalized:17,regret:256,"Equity-Income":2,"stop-work":1,regained:32,Entergy:2,DD:2,Akerfeldt:2,"Laverne\\":1,Slowly:6,Rick:2,Rich:40,Rice:11,Cahill:2,"spleen-crushing":1,Cushman:2,ComputerLand:2,Moravian:2,commensurate:1,unescorted:1,Spinoffs:4,peeled:54,Youngstown:2,Kozinski:2,"medico-military":22,Deak:2,Dean:2,Deal:11,cantonal:1,Deaf:66,Dead:303,Maynard:2,Sobey:2,"computer-related":1,SOCIAL:1,Dear:612,shootouts:4,"R/NNP.H.S.":2,"E-Systems":74,Lawmaking:1,idlings:4,"dewy-eyed":1,"C-5B":47,Evenings:6,embarrassing:13,GLS:2,"credit-rating":613,Adley:2,sighted:54,Fierce:1,"fourth-ranked":1,Adler:2,wept:32,Hahnemann:2,Latowski:2,Zebek:2,BOZELL:2,Westboro:2,slinky:1,Unflattering:1,"catastrophic-care":22,instructional:1,bemoaning:8,Wyvern:2,Compulsory:1,Down:614,bowled:17,Cherokees:28,Poems:28,Vietnamese:198,playbacks:4,sidemen:4,paused:32,refine:39,Brockville:2,Lipper:2,Walter:2,Sheindlin:2,fortunately:6,"non-business":1,Munich:2,Industrywide:97,gaping:30,superintend:39,cranky:1,ponies:4,southern:1,unobtrusive:1,jousting:8,nondurables:4,prowlers:4,castling:8,ponied:16,lifting:5,Parti:2,vomited:16,Stoics:4,surreys:4,wiggle:139,"Danish-American":2,Sithe:2,automatically:6,"individual-type":1,McKinney:2,typical:1,novelized:1,albicans:4,Unlisted:2,"nice-looking":1,MOTORS:74,genteel:1,"SKr1.5":4,tranche:80,subs:4,fumed:16,appearin:8,Delhi:2,wracking:8,titers:4,Dictaphone:11,according:8,dreadfully:6,showered:54,hackles:4,overreacted:17,Wasson:2,"first-families":4,scaling:55,"pain-bringing":1,Specially:6,"first-rate":1,contemptible:1,residentially:6,"hard-to-spot":1,Thursdays:28,Santo:2,lawmen:4,Bulseco:2,"Italian-American":1,Eliot:2,sugary:1,WFC:2,sugars:4,Peregrine:2,snapshots:4,ELWOOD:2,"one-quarter-cent":1,prosecutorial:1,Reflects:20,Freed:615,Rolfes:2,digressions:4,"non-thermal":1,Vulcan:2,Jartran:2,"airline-crash":1,happenings:4,Phyfe:2,communists:4,"high-performing":1,"photon-counting":1,virtuosi:4,"film-makers":4,virtuoso:3,lugging:8,RoadRailer:2,Vihon:2,Reprints:4,marine:22,McGroarty:2,Videos:28,Sherlund:2,fonder:12,Compensation:11,Ninth:40,stillbirths:4,disable:39,Freeport:2,Rumors:123,mayst:190,There:616,survivalists:4,angular:1,Hollings:2,impetuous:1,corinthian:1,Traynor:2,tusks:4,"free-lance":1,Hourly:1,Scholar:2,thieving:5,"least-cost":1,eliminates:20,acquirers:4,disabuse:39,unstinting:30,skimmers:4,Beverly:2,Flats:46,eliminated:54,handicaps:4,semantics:4,Nutley:2,hurl:42,accesses:4,Glassworks:2,"high-income":3,retracing:8,transcendant:1,accessed:17,starve:39,Gunter:2,premier:617,Kittredge:2,invalidated:54,"investment-grade":3,Pappy:2,"well-read":1,wallowed:32,recover:42,"intellectual-property":1,"infection-screening":1,online:1,motivated:45,accustoms:20,Borja:2,underserved:1,oppressive:1,"SS-25s":28,"T-bill":47,"anti-rightist":1,algebraic:1,Threlkeld:2,peaceful:1,unnavigable:1,"circuit-breaker":22,Fuck:39,"Dividend-related":1,"five-hour":1,intrusions:4,"Peterson-Kroll":2,slaves:4,Triborough:2,Telsmith:2,professional:3,restaging:8,Sidley:2,"Lawson-Walters":2,"state-sponsored":1,Advest:2,Political:66,"right-handed":1,Intercontinental:2,Reuters:113,Rolf:2,gratified:14,Drunkard:2,Roll:128,crashing:8,busily:6,handlebars:4,Ludcke:2,Kansas:2,overbilled:16,skits:4,"semi-controlled":1,"buy-sell":1,threefold:97,Kansan:2,"week-old":1,Wirthlin:2,"growth-minded":1,reauthorize:39,"mini-component":1,"building-society":1,"oil-covered":1,Sturbridge:2,differentiating:8,Ville:2,Villa:2,Champs:113,recharged:17,"true-false":1,Fiorina:2,Fiorini:2,pituitary:3,Santiveri:2,administratively:6,whisked:17,protestations:4,tranquil:1,namely:6,Janissaries:4,Millstein:2,OncoScint:2,explosive:3,reputed:14,LDC:2,hypocrisies:4,Breaks:2,Attempts:4,"preferred-share":3,LDS:2,LDP:2,"free-trade":3,"road-construction":3,"squeaky-clean":1,fascinates:20,notice:44,Johnson:2,prettiest:51,ACRES:2,"school-improvement":3,Kreuter:2,Arne:2,"African-safari":1,impromptu:3,"institutional-type":1,onetime:1,cleave:39,discernible:1,Metals:130,Stepson:2,Metall:2,Lehigh:2,customarily:6,"long-distance":3,"tax-anticipation":3,Death:47,"half-mincing":1,binuclear:1,UniFirst:2,wreaths:4,renewals:4,pimples:4,Alcott:2,resurging:8,Healthsource:2,skew:39,"government-run":1,Reddington:2,"dust-swirling":1,abating:8,upshots:4,subjecting:8,"drop-in":1,Bicyclists:28,external:1,Osborn:2,"single-cell":1,Kenneth:2,slogans:4,humans:4,Weevil:2,Ganes:2,handicapped:618,Coiffet:2,Kennett:2,"well-made":1,coolest:51,mandating:8,Spiro:2,ramp:25,Cleave:2,interviewers:4,laggard:3,habitants:4,absorbedthe:39,donating:8,Hismanal:2,stickers:4,northward:6,Aeronautical:2,NSM:2,NSA:2,NSC:2,"ex-House":1,"personally-owned":1,"dangerous...":102,gentlemen:4,officered:17,angered:81,Supposing:8,gorging:8,Pachelbel:2,investigated:54,prefuh:39,Homeroom:2,imprecations:4,"non-publishers":4,bumpin:8,Marsico:2,Defectors:4,investigates:20,Candle:2,Proprietorship:2,"hundred-leaf":1,Klawitter:2,Telecom:2,Tibet:2,Lerach:2,Philosophical:2,laboratories:4,Knickerbocker:2,"hit-making":1,"laboratory-services":176,heaps:4,knowledgeable:1,belittle:149,EXPRESSED:16,Indigenes:2,Reduction:11,madrigals:4,ribosomal:1,Spruill:2,terrains:4,Christ:395,answerable:1,staging:55,"newly-weds":4,"anti-LDP":1,senseless:1,refurbish:39,smugglers:4,supercomputers:4,"non-artistic":1,Palmdale:2,Nuremberg:2,"epoch-making":1,discontinue:39,early:619,Tour:11,communiques:4,throwed:16,endorses:20,"one-month":1,External:66,nubile:1,Contant:2,endorsed:54,ceremonial:1,"cause...":102,Valenti:2,"Houston-Galveston":2,abetted:54,Government:11,"capital-goods":4,Zehnder:2,Dewhurst:2,"asbestos-abatement":3,premonitory:1,Wake:216,"non-profit":1,Vaughn:2,Wako:2,Thiele:2,business:47,Duren:2,strained:85,"fast-cut":1,inherent:1,emasculate:39,MANUALS:4,gums:4,boldly:6,"parrot-like":1,Arhats:28,"bright-green":1,Stennett:2,"four-thirty":6,rediscovering:8,Ostrowsky:2,Pils:2,Maffei:2,platoons:4,resuscitate:39,your:620,"Mon-Khmer":2,Rotha:2,Rego:2,assumed:45,unmodified:1,Priam:2,drank:16,"low-cholesterol":1,Denials:4,"melon-like":1,assumes:20,Manufacturer:2,reassume:39,Experience:47,Kondo:2,McGregor:2,Johnston:2,Sports:41,happening:55,autobiographical:1,unrecognized:1,Stifel:2,Robinsonville:2,stapling:21,porcelains:4,Jefferson:11,"high-volume":1,Dietetic:2,Crisis:11,"design...":102,Condoms:4,bamboozled:17,scratching:55,scanned:32,Strike:260,"human-leukocyte-derived":1,Banjo:2,Karns:2,Lal:2,innings:19,unwelcome:1,Lao:40,hurtled:16,chandeliers:4,"on-time":1,Bertussi:2,Lab:11,Lac:2,valid:1,Lay:621,yow:300,Patten:2,Law:11,Lap:2,Las:2,Maack:2,Great:40,"two-digit":1,Foresman:2,Pickle:2,building:21,"La.":2,loutish:1,"Moscow-allied":1,marionettes:4,Shirwen:2,vines:4,"Croom-Helm":2,linens:4,signalling:8,Melvin:2,tractors:4,"seven-million-ton":1,jockeying:55,exhibitions:4,lopped:32,Thortec:2,"benefits-consulting":1,Movieline:2,"Inter-City":2,Bonhoeffer:2,disbelieves:20,blueberries:4,hable:1,Braud:2,Braun:2,expounded:32,stomping:55,Genson:2,spruced:17,cinematic:1,reneging:8,relieve:39,reusing:8,"futures-investment":1,PCST:2,Malott:2,balancing:21,firebreaks:4,Seasonal:66,Gwen:2,Geoffrion:2,Lully:2,"last-mentioned":1,GREAT:40,riverbanks:4,"saga-like":1,"Low-Income":2,Helliesen:2,"race-drivers":4,Intair:2,casual:97,snippets:4,Martinez:2,Jonesborough:2,consumers:4,Boorse:2,Motorists:4,emotions:4,Zamora:2,"cost-cutters":4,litters:4,unsharpened:17,"gift-products":4,Homerists:4,"Gov.":2,SAID:16,nonmembers:4,partaker:39,partakes:20,Mall:11,Spinrad:2,drawers:4,outsells:20,Glorioso:2,"B.J.":2,uniquely:6,biodegradable:1,Cartesian:1,Chargeurs:2,Iodinated:17,"four-month":1,cosmetic:3,malapropisms:4,globes:4,"Papua-New":2,Specimens:4,teach:42,Ehrhardt:2,"metal-forming":1,flaws:4,Maser:2,"country-life":1,ShowBiz:2,TOOLWORKS:2,Yarchoan:2,"home-bound":1,countercultural:1,Birdie:2,Bless:59,stabilizing:8,"car-parking":1,Hedrick:2,Kozuo:2,Atkinson:2,People:622,CHIMPS:4,Doubtful:1,Guttman:2,"Pre-inaugural":1,Donnybrook:2,transcend:33,Amharas:28,Claeys:2,boycott:44,Vizcaya:2,climates:4,"less-expensive":200,"boat-building":1,unjacketed:1,Interstate:129,processors:4,"cafeteria-style":1,PGM:2,stayed:85,incisions:4,"non-convertible":1,Habomai:2,Reinsurance:11,wigs:4,deja:623,Impatiently:6,derived:54,triumphs:18,tries:72,Wollaeger:2,derives:20,Sensing:8,a:624,enzymes:4,Sweet:40,minicars:4,Kamens:2,bashing:450,Sween:2,grizzled:1,committes:4,Accomplishing:8,preponderating:1,chalked:54,"show-piece":1,"ex-chief":3,gainful:1,committed:625,crossborder:1,MIT:2,Wacklin:2,cardiovascular:1,discloses:20,tempering:8,Corroon:2,"IMF-guided":1,gosaimasu:64,brigands:4,overexcited:17,Strikes:4,actually:6,unheated:1,Weitz:2,Putting:8,disclosed:81,lira:19,Tamil:2,tenfold:218,"trail-worn":1,stiffen:39,Evolution:11,"seventy-foot":1,"pre-empted":54,"second-to-die":1,Worried:14,Victorian:66,abberations:4,forefingers:4,Worries:4,nothin:21,Cavour:2,BILLS:57,lightens:20,RANSOM:2,"Pro-Am":2,decimal:22,Episodes:4,Whitcomb:2,messed:32,"C.E.":2,Commentaries:28,Earnings:4,"international-capital":1,Hitachi:2,beyond:206,basements:4,Everett:2,meditating:8,Chatset:2,fielded:32,sustain:42,Diaper:11,sympathized:16,"R&M":2,Arnhem:2,upon:245,ponderous:1,nationally:6,Ignore:39,litigate:39,diffused:17,"retrial...":102,Takagi:2,terrible:1,terribly:6,expecting:8,businessmen:4,Darwinian:1,undergo:42,"skin-care":3,sacrifice:25,Frost:2,COURT:11,"welfare-state":1,"ever-growing":1,"re-moralizing":8,Billmeyer:2,Kakumaru:2,miss:95,"D*":2,"SO-CALLED":1,"inter-industry":1,inure:42,Sakellariadises:4,"tax-and-spend":1,interwoven:54,"monetary-stroke-military":1,pinned:54,Altman:2,Bumblebees:57,dealing:55,"realign...":102,Montmartre:2,bowed:112,Improved:14,"Check-List":2,"Times-Mirror":2,outgrown:17,Improves:20,monosyllables:4,inventing:8,Nellie:11,Croydon:2,Treadwell:2,Rosenfeld:2,Spaced:2,grocers:4,Jukes:2,Sextet:2,Spaces:28,intensities:4,"long-sought":1,leafing:8,Peach:2,Baar:2,alongside:206,SMYRNA:2,Elemental:1,emperors:4,Sykes:2,Bilbrey:2,"more-informed":1,Enholme:2,lie:95,Dingle:2,jour:64,Users:57,Ilkka:2,speculative:1,empowered:54,sordid:1,lit:626,Covas:2,lip:22,"glass-container":22,aggravating:30,Datacomputer:2,Kenan:2,"eight-partner":1,"Baa1":1,"Baa2":1,"Baa3":1,Sharpshooter:2,"supply-driven":1,sponsored:54,diametrically:6,Massimo:2,Roomberg:2,Massimi:2,Rhys:2,"anti-switching":1,clear:627,broadened:54,Baskets:4,CHANGES:4,clean:274,pickiest:51,Braden:2,nondoctrinaire:1,lest:127,hyper:1,Junid:2,hyped:250,"Ten-thousand-dollar":1,backdated:16,Savaiko:2,"basic-cable":1,"Loan-loss":1,"mid-1948":1,Chelmsford:2,surveyed:54,circle:25,Grow:59,Nederlandsche:2,"far-lower":12,"take-away":1,reinvesting:8,Medicare:2,interminable:1,exhibiting:8,querying:8,Tramp:2,Randol:2,ohmic:1,Warmongering:8,"suspender-clad":1,"end-of-the-quarter":1,"new-business":22,"mega-mergers":4,filled:81,DOCTORS:4,Winiarski:2,redefine:39,Wealth:2,Pluses:4,bakes:20,Cotillion:2,Isfahan:2,"ready-to-wear":1,photo:22,Morrison:2,"triple-A-rated":7,Norddeutsche:2,circumscriptions:4,Adoptions:4,timeworn:1,Costco:2,Southampton:2,Lyttleton:2,Leopoldville:11,"plutonium-recovery":1,invisibles:4,timidly:6,propulsive:1,craters:4,"WINSTON-SALEM":2,McGillicuddy:2,"next-generation":22,Biodegradable:1,rasped:16,mega:1,Curran:2,gaunt:1,"campaign-finance":1,sensitive:3,phonies:4,Provincie:2,headed:54,him:53,Panama:2,manners:4,Anhwei:2,Broker:11,Vicksburg:2,"Mt.":2,REMIC:2,Dotzler:2,Cabin:2,Deemed:17,Solel:2,arrest:24,Trigg:2,"off-budget":3,Dunlaevy:2,uncritically:6,reciprocate:39,coarse:1,"fiber-optic":1,Soler:2,Pilgrims:28,delights:72,compromises:18,Especially:6,Diocesan:1,compromised:54,wrings:20,"save-the-wildlife":1,hobnob:39,honest:1,yards:4,smolderingly:6,cannibalizing:8,Konitz:2,"once-sporadic":1,"pseudo-profundities":4,while:628,Valvoline:2,Anschluss:280,Allie:2,Hotels:41,uncompromising:1,nightingales:4,"well-played":1,deworm:39,tendered:81,"rubber-like":1,"first-place":1,streaking:8,"cedar-roofed":1,RCA:11,"marble-columned":1,baseline:22,Kellaway:2,"brutal-and":629,overdoses:4,Unum:2,reselling:8,Beazer:2,Declining:30,"Mr.":11,boo:39,stashed:54,"stereo-sound":1,"J.C.":2,revitalization:22,Shane:2,"pre-1950s":1,"asset-liability":3,Matos:2,Agin:2,haul:25,Agip:2,appalled:14,scouring:55,coup:80,lobsters:4,Hemmed:17,ignoble:1,Hemmer:2,"cent-a-bushel":1,restlessly:6,planetoids:4,OAS:2,Secretariate:2,Fulwood:2,"cross-currents":4,Shansi:2,conjured:54,Predictably:150,Otsego:2,indigestible:1,Refsnes:2,Dever:2,"stock-market":22,Prevention:11,fractionated:54,harmonize:39,Devey:2,"single-issue":3,Zaffarano:2,"pre-empting":1,determinedly:6,Deparment:2,"short-changing":3,populous:1,Bittania:2,"four-stroke":1,CFTC:2,translates:20,Recoup:39,translated:54,Skadden:2,perked:32,Lumsden:2,mauve:1,Fears:18,Chubu:2,urgent:1,Breckenridge:2,Choose:39,Attendants:65,Sibra:2,Foreclosed:17,Cottle:2,eating:5,Kerstin:2,Bruises:4,jazzy:1,Pennzoil:2,Raccoon:2,Schang:2,subtract:42,paperwads:4,bureaus:19,Legalizing:8,blocs:4,samplers:4,hinge:63,sake:80,Yemeni:66,"I.E.P.":2,Redstone:11,block:205,"long-neck":1,SLHD:2,decertify:39,Cauffman:2,parables:4,"nine-page":1,wonderingly:6,Republics:111,douse:39,rivalries:4,hemming:8,Lerner:2,governs:20,"self-starters":4,Adrian:2,"AC&R\\/CCL":2,amateurish:1,Pallavicini:2,skulk:39,"Bar-Shavit":2,bewilders:20,Ahern:2,Perspective:2,buglike:1,Guerbet:2,corrective:1,elitist:1,iodotyrosines:4,gushy:1,Oakmont:2,spousal:1,Polar:2,Harding:2,nap:78,Designers:41,electrical:1,Werke:2,kills:72,Teach:33,nay:6,"out-smart":39,Alienated:2,reportedly:6,fewest:51,luminaries:4,resign:42,lunging:8,averting:8,rested:32,Scaring:8,"orange-flavored":1,Documentary:2,Yalies:4,cryptographic:1,Empresa:2,sputniks:4,Rilwanu:2,fragmentarily:6,bleached:7,Stubbs:2,tactile:1,hallways:4,Yes:630,ribbies:4,Sell:216,"left-leaning":1,"cabinet-level":1,Self:11,Rails:28,salaries:4,Selz:2,"sales-moving":1,Reenact:39,"cement-and-glass":1,Painful:1,outperforming:8,Gaynor:2,Sabine:2,Sabina:2,Quadra:2,"JVC\\/Victor":2,blobby:1,expelling:8,Perignon:2,wracked:54,pinnacles:4,Borromini:2,Manya:2,Titus:2,"Mrs.":2,Irimajiri:2,salaried:1,fictionalized:17,retold:16,Weisfield:2,exits:18,Veneto:2,Tombrello:2,defocusing:8,prosodic:1,Sentences:4,"Karcher-Everly":2,configurations:4,Conger:2,Orson:2,arbitragers:4,Reclamation:2,stoned:17,Erroll:2,Equipment:11,graying:55,Schleiermacher:2,ardent:1,ferreting:8,cheapening:8,evokes:20,Abner:2,dactyls:4,exacerbate:42,evoked:54,Dannehower:2,tournaments:4,Barlow:2,"apple-flavored":1,Created:17,"D.C.-based":1,Wheelock:2,prescribe:42,Creates:20,acoustics:4,likening:8,"super-string":1,Remingtons:28,"G.L.":2,Strother:2,"Long-lived":1,Hanch:2,morsels:4,veered:32,preferentially:6,Arabia:2,Arabic:40,Suncor:2,Rolexes:28,Legends:28,shake:182,OGDEN:2,Miyazaki:2,apprehensive:1,Construct:39,danged:17,"wrong-way":1,Lucian:2,Hare:2,comers:4,singing:5,Photographing:2,subsidizes:20,snoop:39,"current-coupon":1,"child-care":22,Bookin:2,hightailing:8,Dreyer:2,"debt-financing":1,subsidized:7,Varying:13,exhaustive:1,"placard-carrying":1,Memphis:113,pleated:1,biblical:1,becomes:20,lacerate:39,temblors:4,"spare-parts":176,blindsided:14,disrobe:39,becomed:17,sample:139,LIKE:127,corporates:4,sanctions:18,ride:182,Kuser:2,Video:11,Vote:25,Tift:2,painless:1,TOP:2,Balletto:2,Figlewski:2,Dunham:2,"Pro-rated":1,Kentfield:2,"college-completion":1,Compassion:2,vesicular:1,Thoreau:2,"one-party":1,Bowater:11,"prime-time":3,Sikkim:2,cottages:4,Alexis:2,insufficient:1,Alexia:2,"X-ray-proof":1,Planar:2,crazes:4,Brocklin:2,Cayne:2,crazee:1,crazed:249,revise:39,rove:39,craggy:1,"round-the-clock":1,unlawful:1,superimposing:8,Iturup:2,"big-bucks":1,"October-March":2,facilitated:17,advertorial:1,"Dallas-based":1,Buksbaum:2,Seger:2,mentioned:54,converting:8,facilitates:20,helicopters:4,"Air-to-ground":1,stuggles:20,Toynbee:2,Croasdale:2,"two-wheel":1,Beginners:4,Jennie:2,excoriating:8,Arbel:2,Hammerton:2,sweets:4,fallible:1,Zeiss:2,Jenning:2,masters:4,swamping:8,consensual:1,Puny:1,registrations:4,Shipbuilding:11,Nordson:2,"turn-of-the-century":1,"blue-sky":1,junkets:4,unsurprised:1,Fifties:28,measure:24,"twenty-first":1,Smyth:2,gallant:1,"entry-price":1,Blakey:2,Xoma:2,"sub-segments":4,ASME:2,thriving:30,Zuratas:2,consigns:20,statist:1,dissented:32,"A.J.C.":2,intruded:54,"high-performance":3,wines:4,Spinco:2,Draw:216,interplanetary:1,caregivers:4,Afghanistan:2,attending:8,intrudes:20,Eisenberg:2,Khaju:2,PHP:2,Bestimmung:64,pilfering:8,pedimented:17,Comin:8,Seiki:2,Comic:2,Seiko:2,indisposed:1,"self-judging":1,rectifying:8,"four-hour":1,Hart:2,signify:39,"Neo-Jazz":2,"Perot-EDS":1,Animated:1,"jump-start":39,bears:72,squinting:8,durable:1,adopted:45,Gaafer:2,final:1,Valu:2,exactly:6,Alumni:28,Boogaard:2,Rivlin:2,frowningly:6,swindled:54,Norodom:2,photogenic:1,Meese:2,Formby:2,"rough-and-ready-sounding":1,cravings:4,"go-it-alone":1,Anta:2,berths:4,"re-entered":16,Span:47,thwarted:54,Spam:2,tabs:4,"three-sentence":1,Sock:39,"market-making":22,Writers:130,Spar:2,dromozootic:1,"Dream-Next":2,"doubleA-2":1,sings:20,Starzl:2,"union-owned":1,able:1,ably:6,pronouncing:13,unsmiling:1,Graphics:130,seasonings:4,Appleton:2,medals:4,Delmore:2,dubs:20,Coopers:74,overlapping:5,"lay-up":1,Ultimately:6,prickly:97,forlorn:1,Kwaishinsha:2,emerging:8,indoor:1,"thirteen-year-old":1,Leesona:2,Pedroli:2,molest:39,allaying:8,ostinatos:4,Tegucigalpa:2,Ilford:2,untimely:1,earned:85,Floodlights:2,grata:64,employes:18,employed:54,dodge:256,Yard:2,"up-pp":484,overall:34,NAIR:2,Schell:2,"once-sacred":1,leases:18,Italian:66,Levert:2,footlights:4,prossed:64,Vigdor:2,contain:42,proponents:4,"brand-loyal":1,NEA:2,orphan:3,Reub:2,"under-50s":4,Salvagni:2,anastomoses:18,Gaining:229,statu:64,stats:4,unilateralists:4,"hit-and-run":1,state:139,surmises:4,Gaillard:2,ciliated:17,"anti-inflationary":1,insomma:64,setbacks:4,boatels:4,sorely:6,Assemblywoman:2,Colonna:2,"C.C.B":2,Nekoosa:11,"semi-annual":1,reallocated:17,gynecological:1,Aegean:2,retrievable:1,pileups:4,Pestered:17,"once-stodgy":1,roil:39,manifestations:4,Tsou:2,"semi-abstract":1,flocking:8,"Over-achievers":4,"passers-by":4,harmonic:1,amounted:32,waved:32,"rat-a-tat-tatty":1,tread:63,Relax:39,"revenue-generating":1,Zuni:2,Tonawanda:2,Elvekrog:2,senses:18,adjourns:20,"nine-bedroom":1,Chandra:2,Regie:2,pharmacuetical:1,piqued:17,kava:64,"doctor-patient":1,Olszewskiof:2,Early:510,reapportioned:17,CELEBRATIONS:2,"Ter-Stepanova":2,"free-market-oriented":1,"W.R.":2,Saveth:2,blasphemous:1,balloon:24,begat:16,sideboards:4,rattled:81,eclectic:3,tapped:32,Apolo:2,Mirante:2,Coastal:40,reactionary:3,effect:139,trembles:20,Kurds:28,discouraged:45,supernatant:1,intercede:39,"cent-per-barrel":1,universalize:33,"no-nonsense":1,steoreotyped:1,Have:631,draconian:1,BE:39,BG:11,"working-day":1,BA:2,Tecumseh:2,"ocean-going":1,Nickerson:2,BK:2,BT:2,BV:2,marauding:8,Collections:4,Germanized:17,Reinker:2,purified:17,sputtering:1,Be:216,Bo:2,logged:54,Kandu:2,luncheons:4,By:632,Bershad:2,ample:1,Lackey:2,devised:54,burden:44,"side-looking":1,Mottus:2,devises:20,PhacoFlex:2,"strategic-arms":135,glazing:8,England:2,"B.":633,"al-Faisal":2,"B2":22,setups:4,"less-rigorous":12,"ill-understood":1,glycosides:4,shed:373,Bombieri:2,repositories:4,belonged:32,grizzlies:4,sleighs:4,"non-newtonian":1,redress:63,midwestern:1,MacFarlanes:2,Draper:2,Landonne:2,"Detroit-to-Tokyo":1,Overfunding:8,Voell:2,"heir-apparent":3,Gaylor:2,commawnded:16,"co-produced":112,Crosse:2,prohibited:54,chancy:1,torsos:4,Ukropina:2,crystallizing:8,Jugend:2,Secord:2,"co-authors":20,staked:54,Tadeusz:2,delicacies:4,toppings:4,Novosibirsk:2,"semi-inflated":1,arrogantly:6,Flesher:2,Bonomo:2,stakes:18,primal:1,Seydoux:2,Jacquette:2,bridging:30,due:634,"infer...":102,"Netherlands-based":1,endeavours:4,utility:22,sopranos:4,Generic:2,Vegas:2,"new-job":1,divulging:8,Arrange:39,Successive:1,evacuate:39,uncurled:16,Teschner:2,Cinnamon:2,Highland:2,Sicilian:66,Kamloops:2,cells:4,hosting:8,Michaelson:2,cruel:1,Sponsor:2,steepest:51,"good-driver":1,Probes:28,"broader-based":200,slugfest:318,Centocor:2,devise:42,"Pfc.":2,"Left-stream":1,magnates:4,resented:32,Proleukin:2,ideational:1,Willens:2,Mining:11,scowls:20,hazelnuts:4,foreseeing:8,palletized:17,paratroopers:4,"policy-making":261,misconceptions:4,Depicting:8,Like:206,ecstatic:3,Ken:2,"charge-offs":4,refreshments:4,Mathews:2,"owner-bred":1,Neglect:174,"So-Ho":2,using:8,Discover:2,Melcher:2,"ill-gotten":1,"theory-teaching":8,secondly:6,Appear:33,Improvement:11,Bolet:2,nigh:6,scheming:13,colloquies:4,captain:78,minuscule:1,"clearing-firm":1,offenses:4,Eizenstat:2,presente:1,sweetest:51,bimbos:4,presents:72,nominal:3,trousers:4,"slow-moving":1,saves:20,cruising:55,Cabletron:2,connects:20,compacts:4,Django:2,"vice-regent":1,Becht:2,ADOPTED:16,Farge:2,"EG&G":11,courageous:1,Physiologically:6,Littleton:2,laurels:4,"coin-operated":1,Golar:2,"nerve-cell":1,Somoza:2,Frisch:2,warns:20,pyramid:25,shoveled:32,helluva:1,qualitatively:6,even:635,betraying:8,saved:54,malleable:1,Traub:2,untenanted:1,maverick:22,Fardulli:2,plunked:16,anteaters:4,Sometimes:6,Pesqueira:2,Flip:2,Systran:2,Wonda:11,"cross-blending":1,Labaton:2,"by-roads":4,Smokies:28,Haig:2,jams:4,Carmelite:1,Hail:2,expedited:45,ornamental:1,superstitious:1,permit:95,aikido:64,fathered:16,"high-wire":1,"shrubbery-lined":1,"pray-for-growth-later":1,Fargo:2,"business-interruption":1,"Senate-backed":1,schooling:21,"cost-control":1,Giffen:2,Eggers:2,circumvent:39,overhear:39,overheat:39,"Computer-generated":1,Mankowski:2,barks:20,Overvalued:1,overhead:34,calm:104,"name-drops":20,"prior-year":1,"self-regulatory":1,twirled:1,Prentiss:2,Miniver:2,Cliburn:2,Existentialists:4,composite:3,Ravenspurn:2,"week-long":1,spiraled:16,plaintive:1,"reality-based":1,Lauchli:2,gossiping:8,Advertisers:56,audiophiles:4,"Drexel-managed":1,laughs:72,honed:14,involve:42,Relatives:4,"French-Canadian":2,Waldensian:1,savers:4,Biofeedback:2,funky:1,Veblen:2,salivate:39,bathrobes:4,quok:64,cavernous:1,Nineveh:2,Starbird:2,"high-loss":1,"two-syllable":1,Budweisers:4,Dyncorp:2,purchase:44,All:636,parading:8,Civic:40,Civil:40,"stand-alone":1,Telerate:11,assuredly:6,"bout-de-souffle":64,"square-mile":1,waited:32,uninsured:1,Alt:2,operations:4,unfolds:20,deck:25,"steel-making":1,idiotypes:4,Humphreys:2,Opportunities:56,eyewear:3,unmalicious:1,fortify:39,"down.":484,responsive:1,"high-paid":1,Ventres:2,Virgilio:2,"just-say-no":1,",":637,blackened:14,Beck:2,Cutting:210,carve:42,"Mexican-food":1,imperturbable:1,repairmen:4,donors:4,"sermons\\/From":1,Ruckert:2,downs:4,nightclubs:4,BALANCES:4,Steps:638,WOODSTOCK:2,rhapsodize:33,musically:6,leaner:136,doubtingly:6,mistrust:25,Goebel:2,"Stop-close-only":1,victories:4,sullying:8,inserts:4,"pay-per-view":1,clarets:4,ministering:8,Factor:11,optimistically:6,extract:182,"safe-sounding":1,scoreless:1,airmailed:16,Piddington:2,hushed:1,Weisman:2,Njust:2,advancers:4,Pier:2,assaults:4,voltages:4,pityingly:6,Jalaalwalikraam:2,LeMay:2,Nixon:2,rinds:4,saggy:1,shaggy:1,Gulliver:2,starts:639,cackled:16,Noblesville:2,Panda:11,deems:20,Computation:2,Mirror:2,"junk-holders":4,Cod:2,Swahili:2,Yoneda:2,Besset:2,McGrevin:2,Wootton:2,Grigory:2,Borrowing:8,disappearing:8,Sattig:2,snubbing:55,Halls:2,Grigori:2,MUTUAL:1,Wanna:188,recruiting:55,kolkhozes:4,"union-represented":1,zeros:4,"industrial-services":1,"sometimes-tawdry":1,curtails:20,Petrobras:2,BBN:2,malls:4,BBC:2,BBB:2,"ten-by-ten-mile":1,Telos:113,Troop:2,Waterhouse:2,peculiar:3,congratulatory:1,Canberra:2,"Soviet-finished":1,"full-service":1,purifiers:4,"untrue...":102,"on-the-go":1,Rudder:2,Downey:2,"hitting-pitching":1,Kloeckner:2,churn:42,Grooms:2,Norwest:2,Dismantle:39,"much-criticized":1,Tripod:2,Pianists:4,"light-truck":3,streaked:32,hoods:4,"automotive-parts":1,"waist-length":1,Hixson:2,bye:39,Pennell:2,Cannell:2,Traviata:2,"eight-thirty":1,"three-inch":1,Rosemary:2,unknowingly:6,offersey:4,Hillcrest:2,Skandia:2,Commercants:2,clocked:17,reprinted:54,fungal:1,Alper:2,retire:42,"tradition-bound":1,"top-priority":1,deftly:6,treaties:4,upfield:6,discourteous:1,stepping:30,Dalrymple:2,Beigel:2,marvelously:6,"Bake-off":2,Roadway:2,Gioconda:2,cripple:182,AWE:2,hoard:44,pigeons:4,AWA:2,colorful:1,Days:46,Sifton:2,"bric-a-brac":19,Nodding:8,yachtels:4,"home-improvement":22,"built-from-kit":1,UNIFIED:1,bat:25,bar:44,Segall:2,Remphan:2,"high-yield":3,illegitimate:1,bag:25,Yoshi:2,"seat-for-the-secretary":1,puffers:4,Dargene:2,bam:106,"Old-timers":4,Corinthian:66,"open-top":1,unworthy:3,Heusen:2,emergent:1,Sydney:11,Sleeper:2,spattered:17,mournfully:6,prototypical:1,fastballs:4,inappropriate:1,Choice:47,Mezzogiorno:2,"longed-for":1,disprove:39,Evaluations:4,Argent:2,lethargic:1,"Massey-Ferguson":2,stiffening:22,"G-R-H":2,wrapping:55,Rudyard:2,vacuuming:55,Schall:2,"stout-hearted":1,Yours:53,"House-floor":1,bronzed:1,Gunnar:2,restarting:8,monopolize:39,bronzes:4,Given:17,motioning:8,exemplary:1,Fullerton:2,Investcorp:2,modems:4,inquisitive:1,Withuhn:2,Forest:11,Dating:2,"hoi-polloi":64,Avco:2,"co-workers":4,commonplaces:4,Earle:2,Gladys:2,Utley:2,Earls:2,Spillane:2,Citicorp:640,threw:16,Divisions:4,Morningstar:2,Bertram:2,Farberware:2,Meehan:2,ADIA:2,Utt:2,Aggrieved:1,Edmar:2,Winawer:2,sly:1,remakes:4,originate:42,suppose:149,murders:18,Hovercraft:2,"well-balanced":1,paradises:4,sushi:80,Conceptions:4,Caltech:2,homozygous:1,redecorated:17,expirations:4,vindicate:39,Fiesta:2,LaMothe:2,who:641,Seagate:2,Scholastic:2,potentially:6,miswritten:1,Eisenhower:141,transvestites:4,"beef-import":1,governors:4,Raos:2,pharmacological:1,Miltonic:1,"plastic-pipe":1,bailed:32,RLLY:2,lightheartedly:6,stimuli:4,Shantytowns:4,smokes:20,Rauscher:2,qualities:4,claims:18,smoked:85,unfair:1,stimulations:4,Clorox:2,"Campeau-related":1,Wildman:2,"steel-reinforced":1,wafers:4,Bellinger:2,infinitely:6,agile:1,nonchlorinated:1,Begging:8,youngsters:4,servicemen:4,"co-payments":4,"tax-collecting":1,"cost-of-living":3,"Playboy-Show-Biz":2,"solar-power":1,interior:3,whichever:447,natal:1,Richco:11,"counter-moves":4,Kamin:2,Gersony:2,fined:54,Casualties:4,manual:3,autocracies:4,Giguiere:2,Provost:2,Lingus:2,Weitzen:2,CTA:2,sparred:16,Hajak:2,romantically:6,Hilary:2,Weapons:74,revel:182,readmitted:17,Yankus:2,Infrared:1,Onlookers:4,dense:1,"vaccine-vendor":1,Hiring:8,unnameable:1,outspoken:1,"Soviet-bloc":1,orbited:16,tycoons:4,loudspeakers:4,"grit-impregnated":1,translators:4,novelties:4,blackmail:25,Forand:2,squeamish:1,sift:42,McDonalds:2,super:642,Heatherington:2,impersonates:20,Retired:71,commie:1,alignments:4,Abstract:129,beta:22,Hearing:116,Filofaxes:28,impersonated:17,Cameron:2,commit:347,Lovers:111,sheets:4,parsing:55,canny:1,Vault:2,cascades:20,"Tee-wah":2,Stay:216,"fifty-dollar":1,"non-auto":1,Nutrition:2,Bostian:2,Cultor:2,effaces:20,amazingly:6,Castros:28,Mocking:2,"anti-freeze":3,Sutermeister:2,mortgagebacked:1,"S.D":2,faring:8,DNA:11,"S.C":2,offering:21,forks:4,Dade:2,ulcers:4,Dada:2,"I.C.H.":11,Z:11,atrocities:4,Dads:2,builds:20,emboldened:54,staged:32,"Anti-Ballistic-Missile":1,AFTERSHOCKS:4,Privatize:39,Wister:2,Melrose:2,stages:18,diagnose:42,unenlightened:1,toss:182,dites:64,Gerber:2,megatons:4,floating:30,Mertle:2,Pirie:2,"wonder-working":1,generally:6,handed:32,Bodily:2,oppose:643,Advisor:2,tardy:1,"vitamin-and-iron":1,"ba-a-a":106,"futures-trading":1,"MacArthur-Helen":2,Tietmeyer:2,Arnold:2,insurrections:4,DeBeauvoir:2,stoke:39,pizzas:4,Institutue:2,"plus-one":97,Constant:3,luckier:12,"more-favored":1,TROs:4,parcels:4,"Anglo-French":66,themed:17,themes:4,yapping:8,Louisiane:2,parasympathetic:1,Milbank:2,Louisiana:2,Czar:2,"semiconductor-depreciation":1,hidebound:1,praises:72,Philharmonic:11,polyunsaturated:1,scribble:39,bordered:17,finally:6,praised:85,Kerschner:2,Barry:2,DEPARTMENT:2,"Temple-Inland":2,daintily:6,Nomura:11,Saouma:2,Bruser:2,FIT:2,Ironpants:2,bogeyed:16,sappy:1,FIG:2,uneventful:1,suppressors:4,Playskool:2,Affirmed:2,wore:16,dim:1,Statements:4,did:16,die:644,dig:645,specials:4,moistening:8,dip:24,"drug-pushing":1,Stoeckel:2,eclipse:182,Lawsuits:646,"seven-inch":1,"debt-futures":4,Buffton:2,bacterial:1,Weyerhaeuser:141,"pen-and-ink":1,Donofrio:2,"high-tailed":16,"Liberal-Radical":2,takin:8,vandalized:32,"well-fed":1,incidents:4,dishonestly:6,proclaiming:8,extemporize:39,wail:25,involuntarily:6,Freeberg:2,Rabat:2,monied:1,signalizes:20,Stalin:2,decipher:39,monies:4,Indosuez:2,"leather-men":4,badgered:16,institute:25,Tellier:2,dominantly:6,thrashed:32,convoys:4,CLOROX:2,finer:12,"Luxembourg-based":1,"all-out":1,hither:6,Buren:2,careworn:1,Marcius:2,Purchasing:321,Donato:2,subverted:17,"spring-early":1,Farming:8,Ratto:2,ungainly:1,"five-years":4,sharper:136,"commutator-like":1,Lunch:47,touched:32,Awards:2,flaunting:8,"craftsman-in-residence":1,sharpen:39,unconfirmed:1,cited:32,Freres:2,Parsippany:2,"fast-moving":66,ageless:1,Blackstock:2,downtown:168,downing:8,"fund-selling":1,reinvestigating:8,Duke:2,Nordyke:2,noninterest:1,avoiding:8,Pacific:40,soup:25,sour:647,Cathcart:2,Ailing:8,arrive:42,"small-time":1,predict:149,Digital:129,Backhaus:2,Westmore:2,shorting:55,Biedermann:2,Heylin:2,"hand-me-down":1,yokels:4,harking:8,"self-perpetuating":1,get:42,"kraft-pulp":1,Bleckley:2,Eppel:2,strikingly:6,appraisingly:6,nighters:4,"government-assisted":1,SOFT:1,Muldoon:2,rivaled:16,inputs:4,"sheet-rolling":8,critics:4,Performing:8,"Tri-Star":2,vivacious:1,Benedetti:2,Benedetto:2,pressuring:8,weeding:8,isothermally:6,Ede:2,borrowing:648,avant:64,Leslie:2,Edw:2,"flat-out":97,halos:4,Euclid:2,unconsciously:6,Litta:2,straightening:55,gradual:97,argues:20,"male-dominated":1,Morgart:2,argued:32,uninominal:1,"single-level":1,"trend-following":3,thank:42,mais:64,"prisoner-made":1,Moniuszko:2,Cluett:2,Kamm:2,coaching:21,Kamp:2,Esopus:2,mail:44,main:3,"Nouvelle-Heloise":2,Hodgson:2,truest:51,machikin:64,views:18,impulses:4,"society-measured":17,"Huntley-Brinkley":2,"cooling-heating":1,Closing:21,Marconi:2,possess:149,outweigh:149,battlefields:4,directories:4,proteins:18,"yet-unnamed":1,Anheuser:2,olim:64,pharmacies:4,redraw:39,Energies:74,Dinerstein:2,abnormal:1,inhomogeneous:1,gird:39,sifted:32,giveth:358,living:5,VICTIMS:4,"mid-1940s":4,Pederson:2,lak:127,tidbits:4,"Tokyo-based":66,Theater:11,pumping:8,spies:18,BONUSES:4,miscreants:4,fuller:12,spied:32,"spend-now":1,Sigma:2,Options:41,"weather-resistant":1,boastfully:6,pepperoni:4,desultory:1,Chemische:2,substrates:4,"p.m.-midnight":11,Viyella:2,"trading-account":1,Probable:66,discharges:18,Sayegh:2,"all-America":1,unthreatening:1,Probably:150,Pirate:2,discharged:54,thoughtless:1,lap:78,slept:32,seas:4,CalTech:2,Carlos:2,daunt:39,Janney:2,Bundy:2,Thurman:2,Bhojani:2,"inflation-free":1,Subscribers:4,FRE:2,TUMBLE:1,Servifilm:2,neutralists:4,blacklist:39,Loughlin:2,Miles:2,Eslinger:2,emigrating:8,"bio-analytical":1,lugs:4,"live-hauled":16,dissenters:4,Braeuer:2,Canyon:2,protected:81,fluoresces:20,Walsifer:2,DO:39,Urbanski:2,DJ:2,"anti-prostitution":1,mundane:1,DG:2,DE:2,Chace:2,winding:5,Regulation:47,"north-bound":1,DX:2,voiced:85,DU:2,guidewheels:4,Do:317,"pre-assault":1,"jammed-together":1,Di:2,unheeding:8,insoluble:3,Rhett:2,answering:55,wetly:6,Da:2,Undaunted:1,Kokubu:2,callously:6,"current-generation":3,Du:2,Dr:2,Ds:4,channel:44,Legislature:11,subtilis:4,trace:70,permeates:20,Healthy:1,succumbed:54,Tanabe:2,Gaunt:1,Spirited:1,satisfying:13,Ferranti:113,"PRISON-SHOP":2,Panamanians:57,"D.":11,Frankie:2,surprising:13,"Ms.":2,Palmingiano:2,gracefully:6,Suffolk:2,Certs:2,matryoshka:64,reassessing:8,"non-patent":1,Ingo:2,sectorial:1,Province:2,BioVentures:2,"standard-setting":3,Biologique:2,Rozelle:2,Rozella:2,disconcerting:13,"M.Ed":2,Holliger:2,ranking:450,Kappa:2,muni:649,Menton:2,designated:45,uninvolved:1,Krane:2,relyriced:16,Mentor:2,distinctly:6,designates:20,Filipinos:65,beseech:33,Methods:57,keyboards:4,Helionetics:2,busiest:51,median:3,Shintoism:2,diversities:4,"M.E.":2,threading:8,stupid:1,"employer-offered":1,"home-and-home":1,Subgroups:4,"able-bodied":1,crushes:20,Storage:11,derailments:4,"anti-secrecy":1,Inventory:169,Montrachet:2,"Ky.-based":1,COMMUNISTS:4,gratifying:13,trijets:4,Jindo:2,Fascist:40,"wing-tip":1,forecast:181,Hours:4,Fascism:11,"international-payments":4,Selective:1,geometric:1,dried:45,"run-ups":4,Sans:87,Northrup:2,tacit:1,signaled:32,condensing:8,Unitarianism:2,Grounds:111,ternational:1,TriStar:2,remake:39,Michelson:2,contractually:6,stretches:18,SEATO:2,despaired:16,refocused:32,Poore:2,Calor:2,innovations:4,clambered:16,stretched:85,disliking:8,westwards:4,refocuses:358,laudable:1,anyplace:6,unusual:1,"Calif.":2,Ochsenschlager:2,mark:24,mart:11,Blasphemous:1,mars:20,Modeling:2,shopping:122,Reversing:8,SECOND:1,Jungle:2,Colcord:2,Yugoslavs:4,"bar-code":1,profiles:18,Yardumian:2,"McCann-Erikson":2,bemoaned:16,profiled:17,philosophies:4,Venice:2,"interest-bearing":1,Toshio:2,unpolitical:1,"Sung-Shan":2,rammed:16,Ostriches:4,"H.F.":2,"third-floor":1,"poll-takers":4,movements:4,bags:18,different:1,absences:4,harsh:1,doctor:25,Stieglitz:2,Asman:2,skiddy:1,"spot-market":1,Gethsemane:47,"smoke-stained":1,struggling:30,exhaling:8,transitions:4,exhaust:44,GANNETT:2,"third-party":1,Tallahatchie:2,Expo:11,scorned:54,Moulton:2,Apparel:47,lemon:22,DaPuzzo:2,suffuse:39,emigrated:32,"CCK-related":1,"third-ranking":1,"cardiac-drug":1,"self-consciously":218,"low-volume":1,Metrocorp:2,Columbiana:2,DONORS:4,Niggertown:2,"orchid-strewn":1,adulterated:14,Treasurers:57,Margaret:2,Steinhardt:2,Coin:2,Sperry:2,adverbial:1,Tackles:20,grandstanding:55,SHELTERS:4,disadvantageous:1,implicate:39,Friars:4,Moleculon:2,Troy:2,London:40,retailers:4,Rosabeth:2,Trop:2,amortizing:13,Enid:2,transmittable:1,Savoy:2,climactic:1,spans:72,Croma:2,galvanic:1,"trillion-dollar":1,Wachsman:2,"Cost-effective":1,"eighteenth-century":1,Swansea:2,"error-prone":1,"baseball-card":1,Atherton:2,livres:552,RESEARCH:2,critical:1,Canellos:2,claustrophobic:1,moderate:240,"Pan-American":1,measuring:650,forfeitures:4,"no-men":4,buckling:55,airways:4,nonoperating:5,shellshocked:14,strangles:20,"consumer-paint":1,"hara-kiri":64,Solved:16,despicable:1,recraft:39,Efforts:4,strangled:14,finicky:1,Stacey:2,tuning:55,conducting:55,"anti-business":1,Revenue:47,troupes:4,ARRESTED:16,"asset-sale":1,"non-banking":1,practical:3,Erotic:2,INVESTIGATION:2,Supportive:1,"program-selling":1,imitated:54,Heads:57,"straight-armed":16,Sunken:2,Magi:2,Fendrick:2,Wansley:2,Heady:40,Soothsayer:2,Newmark:2,exploiting:8,Countered:16,imitates:20,ISSUES:4,Harold:2,Rectifier:2,Harkinson:2,gravid:1,slurped:16,sipping:55,recognizably:6,decode:39,"greenhouse-gas":1,braiding:8,"moth-like":1,Whipsnade:2,bettering:8,deepened:32,Freud:242,chambered:17,Phosphate:2,Canterbury:2,shortterm:1,billowed:16,Fuentes:2,geriatric:1,evaporate:42,Delays:4,retrained:17,"fountain-falls":4,discs:4,Oriani:2,doctrinal:1,departs:20,Poeme:2,Grigorss:2,"executive-branch":3,"high-priority":1,overtime:168,"million-a-year":1,Keehn:2,syngeries:4,awkwardly:6,clamored:16,pitifully:6,"beer-guzzling":1,unload:42,Reasons:4,Colnaghi:2,Bochniarz:2,unsee:17,dramatic:1,weighty:1,drugging:8,spectral:1,upperclassmen:4,"drug-sales":4,Ramesh:2,Van:2,Winter:144,Val:2,Perle:2,"plain-clothesmen":4,"ever-narrowing":1,"million-dollar":1,Vax:2,undisrupted:1,children:4,Bechtel:2,Mecklenberg:2,Zapala:2,POPs:4,"Cookie-Crisp":2,wants:72,premium:651,distorting:8,straightforward:1,"Japanese-financed":1,Chartres:2,JIM:2,Microelectronics:111,"blood-chilling":1,aware:1,forwarders:4,subterranean:1,Messinesi:2,"fuel-services":4,veined:1,conjugating:8,dampen:39,unstilted:1,hym:53,Giubbonari:2,"six-foot-four":1,hys:404,Rink:2,nucleated:17,"LS400":11,Needs:4,Needy:113,"F.D.R.":2,"corrosion-resistant":1,"Hanover-Ceyway":2,Salzgitter:2,putting:8,Clearasil:2,dial:25,opted:32,WARNED:16,portions:4,ratchet:39,"White-shirted":1,selfeffacing:8,violently:6,cohorts:4,Amon:2,"morale-enhancing":1,ranged:32,promising:13,Cedergren:2,ranges:18,Arthur:11,disastrous:1,"H.M.S.S":2,Neuhaus:2,Analytical:40,Amor:64,sunning:8,Whole:1,Gachinger:2,publishes:20,"sub-zero":1,unconvinced:1,Kitamura:2,"hard-earned":1,stretching:55,scurry:24,published:81,Neglecting:8,skids:4,cystic:1,authorize:39,buses:4,clapping:55,Everlys:4,bused:17,"Bazy-Sire":2,memos:4,Core:40,phonemic:1,Gimenez:2,Corn:47,Multiflow:2,Cort:2,congratulated:54,Corp:2,Corr:2,Brunner:2,Petitions:4,obstinate:1,LTV:2,pads:4,Kennedy:2,sniffers:4,"thrift-like":1,leavened:112,Pantasote:2,LTD:2,"straight-haired":1,willfully:6,"alcohol-related":1,ladling:8,Aikman:2,sarcasms:4,sudden:1,discotheques:4,Kissick:2,Rezneck:2,lingered:32,Wallenstein:2,Argas:2,barbequed:1,deplores:20,Transcendentalism:2,Borge:2,"church-state":22,Abrahams:2,deplored:16,aphorisms:4,rededicating:8,subminimum:3,enforcers:4,"DRI\\/McGraw":2,Hordern:2,Mavis:2,"pay-down":1,Battat:2,CONTROL:2,lakes:4,Bombers:4,frilly:1,"long-view":1,inflationary:1,Effjohn:2,kegful:1,frills:4,savvier:12,bleak:3,"securities-based":1,Branum:2,Prater:2,eats:20,"Siemens-GEC-Plessey":2,"re-enacted":17,Lett:2,nonagricultural:1,Anouilh:2,sacadolares:64,egregiously:6,infant:22,formulations:4,rounded:81,Haislmaier:2,swamped:54,"half-crazy":1,oblique:1,rounder:12,lewdly:6,"rat-a-tat-tat":1,Extensive:1,Illusion:2,CSFB:2,manhunts:4,Vanous:2,Specialty:11,"Ciba-Geigy":2,Lederle:2,detected:54,Viscount:2,Zoning:2,fireproofing:21,"five-minute":1,scandalizing:1,redistribute:42,neophyte:3,Pavillion:2,grubby:1,sprang:16,FARGO:2,fuer:2,bestirred:17,Globo:2,exiles:4,Telli:2,Globe:2,holiest:51,Pollnow:2,Schoenholtz:2,exiled:45,"Association-College":2,Olenegorsk:2,"order-to-ship":1,Scalia:2,biscuits:4,"Euro-products":4,"once-unthinkable":1,mental:1,interweaving:8,house:24,chomping:8,"foreign-bank":1,countrymen:4,connect:42,ripple:652,backpacks:4,simplify:42,flower:78,Viktor:2,undervaluing:8,DeBat:2,"ex-National":1,acting:5,flowed:32,MacWeek:2,tiresome:1,Ramathan:2,Northwestern:2,squished:17,commits:20,geared:54,Paging:2,cuckoos:4,giveaway:22,"several-year":1,companion:22,superconductors:4,throwers:4,Helper:2,Basques:28,"cheap-wine":1,pilote:64,Helped:17,Kaiparowits:2,"much-heralded":1,"free-drink":1,Subscribing:8,pilots:4,"cash-management":1,INSURANCE:11,CompuChem:2,Montgoris:2,mistakenly:6,Brighetti:2,instances:4,Rancher:2,cups:4,"ivory-tower":3,Lanesville:2,killin:8,indulgent:1,smoother:653,COAST:2,Cheers:2,redistributing:8,reflexly:6,smoothed:32,mutterers:4,bumble:42,"pest-control":1,Language:47,favorably:6,acorns:4,"service-type":1,excels:20,sangiovanni:4,sizable:1,favorable:1,DIFFERENCE:2,"last-round":1,peaked:85,involvements:4,quickwitted:1,"d-Limited":2,Brambles:2,Objects:654,Pinky:2,biracial:1,contrary:3,treated:54,ambitiously:6,"pre-existing":1,"million-member":1,Swire:2,Pageant:11,Outlooks:4,cometary:1,unafraid:1,fading:5,built:81,Connall:2,Arab:40,boardinghouses:4,Walmart:2,Davao:2,Guildford:2,Aran:2,Meals:2,Aral:2,"hub-and-spoke":1,"HDTV-screen":1,Hawaii:113,HAS:20,misstating:8,Savings:46,Whelan:2,Manassas:2,"non-interventionist":1,financiers:4,Buckenham:2,"big-business":3,diphosphopyridine:1,Zemlinsky:2,"crisis-to-crisis":1,bustin:8,ATHLONE:2,"anti-submarine":1,pilferers:4,"anti-market":1,joining:55,weavers:4,Xia:2,particularly:6,disturbances:4,prepackaged:17,fins:4,hugging:55,Bridgers:2,Hilo:2,repels:20,fine:590,find:95,backtracking:21,Tucker:2,Tulsa:11,relent:149,dicate:33,frothier:68,marathons:4,Morgantown:2,Emigrant:2,Desperately:6,Apartheid:2,Stumbling:1,Verdes:2,Sukhoi:2,resolve:63,Cataracts:4,racially:6,Suddenly:6,coughs:4,"self-described":1,"Co.``":133,WNYW:2,instrumentals:4,forensic:1,"already-known":1,"ball-hawking":1,overeat:33,Impressive:1,"unit-labor":1,antihistorical:1,superseded:54,please:336,"fourth-period":1,smallest:51,"blood-sport":1,Egyptians:655,Charta:2,supersedes:20,King:11,Kind:47,vindicated:54,"home-team":1,responses:4,aircraft:19,encapsulate:39,"SELL-OFFS":4,breakups:4,Babatunde:2,"full-time":97,"assisted-living":1,brunches:4,powers:18,"pizzas-with-everything":4,gamblers:4,upgraded:45,complacently:6,ngandlu:64,scairt:17,prosecuting:537,asymptotically:6,Hoffer:2,Koehler:2,Stromeyer:2,"twenty-five-year-old":1,Denied:17,McKenna:2,"feeding-pain":1,raise:95,frets:20,Sprung:2,choruses:4,"un-aided":1,"anti-human":1,Planners:92,chorused:16,Margulies:2,"weapons-modernization":1,Liquid:129,Princeton:2,Months:4,mountaineers:4,Marsicano:2,Presenting:8,Drill:63,Newts:2,"one-reel":1,Conveniently:6,Donnelley:2,"post-secondary":1,"near-unanimous":1,Classic:129,solid:34,puissant:1,missteps:4,Eustis:2,Hulse:2,Toklas:2,Benelux:2,impracticable:1,Speedup:47,"arms-sales":1,Confirming:8,finalists:4,Instead:400,seduce:39,textile:22,"passenger-tire":1,Muscovites:57,keys:4,appreciably:6,flitting:8,"Bel-Air":2,"agreed-on":1,supersede:39,dystopian:1,forfeited:17,flags:18,Masur:2,DAYAC:2,"ill-fitting":1,dystopias:4,pfennig:80,alluring:1,Hoeve:2,"re-order":1,ludicrous:1,budgeteers:4,nowbankrupt:1,profoundly:6,"three-run":1,Carlsson:2,ad:80,"S.W.":2,solvable:1,overhanging:8,"drama-filled":1,Riemann:2,Lotos:2,Bickwit:2,MRCA:2,Cruel:1,Bachmann:2,Weslock:2,upgradings:4,unite:42,"fast-approaching":1,Samoa:2,cognitive:1,profferred:17,follows:20,miffed:45,Bradlee:2,Sunbelt:2,Bradley:11,ai:656,jolted:32,"metal-tasting":1,rheumatoid:1,"more-generic":1,unilateralist:1,Lidov:2,vicelike:1,"grass-roots":1,unpatronizing:8,strongest:51,cabinets:4,pronounced:45,Seoul:11,contacts:18,affects:72,Greve:2,Zhejiang:2,pronounces:20,mailers:4,"Hartley-Leonard":2,JUDICIAL:1,augmenting:8,YWCA:2,Medellin:2,Norbert:2,remembered:85,peculiarly:6,Infectious:1,Lazybones:113,David:74,restrictive:1,Norberg:2,hostages:4,Davis:2,Leucadia:2,Typically:6,tripping:8,Caraiba:2,piles:170,piled:112,"Grev.":2,crass:1,Precisely:6,tenants:4,waltz:25,al:504,aliens:4,invading:8,"semi-heights":4,afflict:39,denominationally:6,"professional\\/executive":1,Warwickshire:2,famines:4,Lehmans:28,errant:1,"well-bound":1,splenetic:1,Schieffelin:2,Saunder:2,cloud:44,"copy-cat":1,multilevel:1,hopes:72,Marriott:11,directed:45,Westerner:2,detachable:1,"error-free":1,Lewis:2,KQED:2,ropers:4,Mauldin:2,"hardest-hit":1,Narrowing:8,Panglossian:1,markdowns:4,Nye:2,Pathans:28,"gunmetal-gray":1,"self-tender":1,Hillel:2,"state-chartered":1,semiautomatic:1,MACMILLAN:2,teemed:16,Rhin:2,Hiller:2,dungarees:4,irreplaceable:1,ponying:8,Tanner:2,Babylonian:66,Recherche:2,Macel:2,"audio\\/visual":1,accidental:1,lend:42,Mullendore:2,Bodin:2,liners:4,polynomials:4,Depictions:4,Lujan:2,lent:32,genetics:4,hansom:1,desert:139,Liberating:8,boyfriends:4,"Macmillan\\":2,downcast:1,rotational:1,Paperhouse:2,Spectrum:2,loafed:16,failures:4,Interviu:2,restraining:5,Foresters:4,grays:4,SLIPS:20,Seeking:8,"stockholders...":102,enjoined:54,Kellogg:11,"habit-forming":1,Gerbrandt:2,redemptive:1,fatal:1,rejiggering:8,Pacitti:2,"rubber-necking":8,Constitutional:40,Walkin:2,ECONOMIC:1,"vehicle-making":1,contribs:4,"first-preferred":1,wires:4,Alisky:2,arrange:42,disappointingly:6,shock:25,Shayol:2,tenuously:6,Osake:2,Aqualon:2,rearing:55,Abelson:2,bleeding:55,Lone:2,Long:294,Despising:8,Streeter:2,Witnessing:8,"price-growth":1,retracting:8,Susitna:2,Kinsell:2,chicago:2,"single-store":1,"stockholder-owned":1,Pornographer:2,PRODUCTS:123,Goldstar:2,Datafleet:2,"double-A-plus":3,Dysan:2,bods:4,Cacophonist:2,frontiersmen:4,Bursts:20,remissions:4,extrema:4,bode:42,extreme:3,"inter-town":1,dastardly:1,"cash-deferred":1,crystallize:39,Deportees:4,Steichen:2,Valhalla:2,FORMER:1,Brothers:41,limp:3,sacrilegious:1,Nico:2,Industrie:2,FM:129,FN:2,Nice:301,Fu:11,Sirrine:2,Canepa:2,MDC:2,TEACHERS:113,harrowing:13,MDT:2,collonaded:17,Tortillas:28,"C.P.":2,"cost-efficient":1,"asset-quality":1,"lung-tissue":1,Kloske:2,Urben:2,commandeering:8,tearing:8,subscription:22,"Frequent-flier":1,Clov:2,Clow:2,UPHELD:17,indignities:4,Buckeye:2,"telephone-marketing":1,Whitehouse:2,"uh-uh":106,impeded:54,immoderate:1,Condos:4,Condor:2,IATA:2,Speeches:4,Orvis:2,boned:17,Orvil:2,employs:20,bones:4,patinas:4,"slow-growing":1,overtly:6,native:3,Kabel:2,"California-based":1,demonic:1,responsibilities:4,reeking:8,Ginner:2,Stafford:2,watery:1,Nissan:11,Malapi:2,forswore:16,Guards:28,SCORE:2,trapdoors:4,Icelandic:2,lines:18,Shamrock:2,linen:22,chief:3,Marshalls:2,Tahiti:2,chien:64,"stock-trading":22,Schenectady:2,furnish:42,unforethought:1,eerily:6,Minnesota:2,Cavazos:2,duffers:4,Takanashi:2,Csathy:2,"worse-than-expected":1,Herzenberg:2,gestational:1,industrious:1,Northerners:65,LaGuardia:2,taboos:4,"quill-pen":1,Ebbetts:2,stances:4,Catania:2,Achilles:2,Inspectorate:2,Terpers:28,noncommittal:1,lushes:4,"non-retail":1,Lorain:2,mention:182,cutting:9,Seasons:28,"Merritt-Chapman":2,inoculations:4,Roaming:8,"capital-gains":93,stunts:4,estranged:45,jiggling:8,identified:81,Toujours:64,Bancroft:2,"ABC-TV":2,disregard:25,identifies:20,uninteresting:1,Tetrameron:2,"three-room":1,tetrahalides:4,"black-white":1,sergeants:4,Dickens:2,"non-wireline":1,Wacoal:2,empires:4,Gloeilampenfabrieken:2,"short-dollar":3,Electress:2,Signature:2,trickier:12,Sombrotto:2,oriental:1,"four-week":1,lecture:24,thereupon:6,"capital-to-asset":22,Reliable:2,unluckily:6,"one-house":1,hazard:25,"non-virulent":1,"French-modeled":1,Divisional:2,"sun-tanned":1,Interim:1,barriers:4,"plant-and-equipment":1,Petrovich:2,south:277,predominate:33,Taming:8,franks:4,erroneous:1,instill:39,"Canadian-dollar":1,humblest:51,Phils:28,thirties:4,Laude:2,deafened:17,Eurocrooks:28,dehumidified:14,"Wilson-to-Jim":1,maidens:4,Adnan:2,chivying:8,agonies:4,Pueri:64,"Railroad-rate":1,"Madrid-based":1,Trinova:2,overpayments:4,Reserved:157,reaffirm:42,Rolland:2,Weisbord:2,Pullings:2,prune:25,hospices:4,"probe-based":1,"ninth-circuit":1,"much-talked-about":1,inversely:6,References:4,Merrell:2,Thiep:2,Kunkel:2,Thieu:2,finetuning:8,Par:2,Pas:64,Pat:2,"poverty-stricken":1,inundating:8,Pax:2,Pay:657,Paz:2,Plastow:2,curves:4,Pac:2,pitiable:1,dictate:42,curved:7,Pak:2,Pal:2,Pam:11,Pan:2,Pao:2,"Mac-Laren":2,"double-A\\/single-A-plus":1,"maggot-covered":1,rejects:72,fictive:1,Sposato:2,"Uh-uh":106,Distorts:2,nabbing:8,starches:4,Sesame:11,masts:4,preliminary:3,Rural:40,Stibel:2,starched:14,quilted:1,downbeat:3,Calloway:2,"Carnegie-Illinois":2,Inju:2,Wellsville:2,"road-building":3,"pork-barrelers":4,Bishop:2,"mortgage-based":1,nags:4,absorbing:30,"near-certain":1,Civilization:47,hemlocks:4,STREET:2,rebuke:63,afferent:1,heighborhoods:4,incorruptible:3,restyled:14,Teeter:2,excrutiatingly:6,overgrown:14,Manic:40,Mon:2,Mom:47,Manin:2,cockpits:4,Shepherds:28,beat:658,bear:182,yelps:4,Prices:123,bean:659,"pre-split":1,"bulk-chemical":660,Wessel:2,Technologies:74,annihilate:39,unauthorized:1,"ANIMAL-RIGHTS":4,Bright:40,Camden:2,tightening:5,stinkpotters:4,splendidly:6,Jerome:2,Letch:2,"mystery-story":1,amply:6,Jurors:113,exists:20,abstruse:1,"Soviet-style":1,medicinalis:64,Various:66,audits:19,maximums:4,"hottest-selling":51,"missile-range":1,Hunkerish:1,"forest-products":152,progress:25,contaminated:45,"Soviet-backed":1,minimills:4,Datastream:2,anonymously:6,Study:128,S:661,Moreno:2,Lorimar:2,Hawley:2,upcountry:1,tenebrous:1,antipodes:4,Kanebo:47,"under-serviced":1,"wholesale-store":1,fluoropolymers:4,"at-home":1,photographs:18,vent:25,Inlet:2,Solving:8,"legal-lending":1,Gershwins:2,Ormsby:2,OLE:2,copies:4,armadillos:4,Leinberger:2,neutralized:17,Brooklyn:11,stentorian:1,contemplative:1,copied:54,"tell-all":1,CFCs:56,Fairchild:2,censor:149,Zworykin:2,Boyce:2,ridden:17,nosedived:16,angles:4,Stratton:2,PRECIOUS:66,payrolls:4,Heading:8,blackouts:4,homer:25,homes:4,marches:18,microcircuits:4,homey:1,Yoneyama:2,"bond-trading":3,Mozambiquans:4,"Shin-Daiwa":2,Crooked:1,UTILITIES:2,decamped:16,Baskerville:2,"S.p.A.":2,Product:11,Garden:2,Christi:2,landmarks:4,impressionistic:1,Bedbugs:4,Cleanth:2,prognostications:4,Produce:39,Dismal:1,Pendant:2,Christy:2,Sunoco:2,neutralizes:20,twelfth:1,frivolous:1,Natwest:2,slickly:6,caters:20,novels:4,shames:4,hospitals:4,Chevaline:2,fucken:1,Yokel:2,scholars:4,shamed:17,"bi-monthly":1,insure:42,untouchable:1,"low-rate":1,"forty-fold":1,thought:662,"pre-trial":3,feudalistic:1,Bookings:4,Fairless:2,"good-quality":1,peacefully:6,barking:55,"red-tile":1,Harsco:2,Darth:2,profiteering:55,domestic:3,ETV:2,Osnos:2,CDL:2,conjugates:4,"network-wide":1,"world-ignoring":1,affections:4,"fast-shrinking":1,arbitraging:8,conjugated:14,"good-will":3,scrimp:39,Bushes:65,Sawyer:2,"pit-run":1,admonished:16,rumpled:1,oilworkers:4,Takuma:2,Watterson:2,"Employee-benefit":1,"now-discontinued":1,epoxy:1,Luxuries:2,awash:97,Documents:123,"nine-months":4,alive:97,unpredictably:6,Rosett:2,convey:42,convex:1,"resulted...":102,"dollar-profits":1,Coffee:11,Naclerio:2,bifurcated:1,marched:32,Tenderly:6,economical:1,Sanitary:2,MANUFACTURING:2,ironies:4,Coffey:2,Killeen:2,Schlossberg:2,"executive-legislative":1,buttoned:17,Howick:2,Brancato:2,preventative:1,noisy:1,Fyffes:2,December:2,"Vice-President":2,"over-allotment":3,Noticias:2,"work-a-day":1,engineless:1,"one-dimensional":1,discard:42,"J/NNP.I.":1,"Medicare-eligible":1,projectors:4,childrens:4,perspiring:1,chemists:4,guard:139,Twilight:2,"capital-reserve":1,"well-baby":1,Stadium:11,Scientists:123,Immunetech:2,micrograms:4,adolescent:22,Suzy:2,brides:4,Vanourek:2,impassively:6,stimulative:1,McFarland:2,Varmus:2,earsplitting:1,"self-righteous":1,"anti-French":1,Jeffersonians:28,Protracted:1,Syndic:2,artillerists:4,"cut-throat":1,plague:44,"commodities-related":1,strident:1,assets:4,THIDIU:2,"free-travel":1,Camelot:2,"French-born":1,Outwardly:6,aristocratically:6,Intervention:47,durn:1,supreme:22,pin:24,Rye:11,Ryc:2,"SS-24":2,"SS-25":2,Appellate:2,"SS-20":2,pip:175,"central-bank":22,pit:24,Wimbledon:2,rakish:1,claiming:8,"case-to-case":1,ellipses:4,motored:16,Jacksonville:2,"Ry.":2,ecological:1,"three-panel":1,"That-a-way":6,Stewart:2,Dragons:2,Private:66,Ritterman:2,"ironic...":102,vehement:1,"right-to-counsel":1,tanking:8,"enzyme-like":1,maquilas:4,bunkmates:4,"sun-baked":1,heliocentric:1,hating:8,"nuclear-propulsion":1,Earthquakes:4,patches:4,whereever:293,Buccaneers:4,bureaucrats:4,Oka:2,patched:14,"public-affairs":4,"already-developed":1,excused:54,dales:4,regrets:72,merchant:22,risk:24,"Angeles-area":1,oxaloacetic:1,nodules:4,"voice-over":1,Poquet:2,leggings:4,Lorillard:11,funneled:32,Antique:2,"market-by-market":1,"Harte-Hanks":2,Regiment:2,verie:6,flashy:1,shockproof:1,"hostile-bid":1,Elburn:2,"non-service-connected":1,surrounding:5,electricians:4,louder:299,Harlequins:28,Heraclitus:2,expressive:1,tethers:4,Revulsion:2,Carpenters:65,"engine...":102,bronchiolar:1,plodding:55,coasters:4,Strafaci:2,despoilers:4,Andress:2,mints:4,Plants:4,kicked:32,orgies:4,"law-making":4,Blasingame:2,"McCarran-Ferguson":2,Exportkredit:2,ramps:18,Scandinavian:40,socialize:39,"B.C":47,Utrecht:2,"non-taxable":1,overprotective:1,singled:32,"West-End":2,Pseudomonas:4,outpace:42,analysts:4,mistake:25,Bennis:2,hydrophobic:1,Petty:129,Tenn:2,"bad-expectations":1,perpetuated:17,Tend:149,Tens:4,perpetuates:20,Rundfunkchor:2,Cleveland:11,codewords:4,Engelhard:2,compositions:4,Everyman:2,preserved:81,Rheingold:2,Parisian:40,Olga:2,Bombus:2,bellringers:4,phony:3,phone:44,Rounding:8,"five-day":1,Eisenhhower:2,enjoying:8,"left-centerfield":1,"cleaner-burning":1,campers:4,Abalkin:2,Gottingen:2,daft:1,phrases:4,"Perth-based":1,"auto-loan":1,decorative:1,thankless:1,Ecolab:2,walkways:4,Jerry:2,Renoirs:28,"British-owned":1,guarantee:44,Fleckenstein:2,Giraud:2,Lortie:2,Miranda:2,"once-private":1,"SbCs-type":1,kebabs:4,pokes:20,Laurent:2,mouths:4,KRON:2,pokey:1,campgrounds:4,FORD:2,Emanuel:2,Seife:2,"still-uncalculated":1,Laurene:2,arthritic:1,Around:124,"Fig.":47,acknowledged:112,ultimately:6,unpunished:1,deepens:20,acknowledges:20,"standard-issue":1,executed:81,Salvadoran:66,Valdese:2,sprout:149,over:663,"off-the-record":1,pound:44,sickle:1,"net-benefit":1,sickly:1,obligational:1,executes:20,"Bible-emancipated":1,Tutunik:2,Mogg:2,outsized:1,"hands-off-all-sweets":4,flagrante:64,SAC:2,SAB:2,Barges:4,Cruelty:2,destroyed:45,Bargen:2,compensatory:1,Armenian:66,Tanaka:2,"once-unprofitable":1,adventurously:6,SAT:2,However:664,Midwesco:2,"Anglo-Argentine":2,payouts:4,"uranium-waste":1,Martinsville:2,Curtain:2,bouts:4,Annualized:14,merchandisers:4,Antithyroid:1,stinking:30,fonts:4,"incentive-pay":1,capricious:1,TALKS:20,Diffring:2,prohibit:42,Elton:2,independent:3,"stern-to":6,"banana-exporting":1,Quickview:2,Derel:2,Derek:2,hanged:54,Adolphus:2,truant:1,clothe:39,Styles:123,Idrocarburi:2,Ginn:2,ammoniac:1,transplantable:1,Radetzky:2,integrative:1,bucking:8,Hurt:157,William:2,Blumenkrantz:2,Ozanne:2,Hurd:2,Sounder:2,"re-created":7,Cooler:2,"then-market":1,"effort...":102,Folonari:2,"re-creates":20,"time-limited":1,Tien:2,Percival:2,BIGGER:12,Valparaiso:2,"poetry-writing":1,recite:42,Impact:11,Cannistraro:2,Sojourner:2,"corrosion-protection":3,megalopolises:4,PORTING:8,"Etienne-Emile":2,Calisto:2,Espre:2,sharpest:51,nip:25,Shaving:116,"Fitzpatrick-Davis":2,Thefts:4,"After-the-fact":1,Berkowitz:2,"F.C":2,wildly:6,abstentions:4,sidelining:8,acidified:17,Receipts:111,Search:39,Burgsteinfurt:2,esoteric:1,downsize:39,Ties:65,collectives:4,abandoning:8,"re-acquire":39,classed:17,strung:54,precipitously:6,Romaniuk:2,headlands:4,classes:4,wisps:4,Silences:4,Gerd:2,ran:16,Disposables:4,ram:63,Gero:2,raw:1,Spelman:2,"temporary-help":3,rap:78,Hengst:2,nipples:4,Kaolin:2,Bibles:111,"Lehman\\/American":2,degenerates:20,Slaughter:2,"short-of-war":1,Ridiculous:1,nonmusical:1,glimpsed:54,glands:4,Ogden:2,Blimp:2,gerundial:1,Bikini:2,glimpses:4,Faulk:2,"half-acre":1,philosophic:1,Biking:116,parting:21,TRUST:158,Sundome:2,yearearlier:1,swerved:16,shooing:8,inaccuracies:4,ORACLE:2,levying:8,"high-intensity":1,currants:4,contacted:54,"hunched-up":1,labels:18,"mutual-fund":3,distillates:4,och:64,Korowin:2,faddish:1,Thereby:6,Big:129,Bid:2,Bib:2,Bic:2,whiteface:3,Bix:2,Feodor:2,parlayed:16,Mayans:4,"blue-collar":1,Dornier:2,Berger:2,Lopukhov:2,airstrips:4,Catalina:2,reconstruct:42,Ricardo:2,fabrics:4,Batista:2,"price-conscious":1,"yellow-dwarf":3,idiotic:1,"easy-to-operate":1,gages:4,mergers:4,"adjustable-rate":1,pummel:39,Lego:2,Radhakrishnan:2,swears:20,Morozov:2,upturned:1,Performance:47,Metzenbaum:2,"Kennedy-Waxman":2,Hanks:2,tersely:6,Wachtler:2,Arianists:4,"HIV-1":2,paralinguistic:1,Breger:2,pocketbooks:4,Hays:2,Documentation:2,listlessly:6,Advani:2,Torres:2,Chevy:11,outages:4,Gumbel:2,devout:1,Giustiniani:2,sipped:16,rhythms:4,Datuk:2,ventricular:1,"W.I.":2,HCA:2,unheeded:1,"re-creactions":4,Bergson:2,Mohamed:2,Zooey:2,suggest:149,Kanin:2,Torrey:2,vexed:14,reconstructs:20,Zulu:2,"Aristotelean-Thomistic":1,occupants:4,vexes:20,Hmong:665,Prentice:2,Seynes:2,bureaucratic:1,aback:6,incomparable:1,Lambert:2,rebounded:666,Kimihide:2,"general-practice":1,"post-chemotherapy":1,incomparably:6,containers:4,Unitil:2,fleeting:1,Staples:46,Birnbaum:2,Dey:2,evidenced:17,craft:25,Gerosa:2,benefits:18,budged:32,"high-altitude":1,"pre-market":1,Secretary:11,deliberations:4,unelected:1,hyperactive:1,Bengalis:28,"mine-safety":1,thousandth:1,penultimate:1,Darkhorse:2,beepers:4,"last-season":1,Owning:8,uninterruptible:1,Naphta:2,Menu:2,"System-specific":1,brewed:17,Candidates:4,"moderate-income":3,Refinery:47,bonanzas:4,Abrams:2,Rapping:8,furled:16,Rochford:2,ingested:32,Worlds:111,passbooks:4,"scientifically-trained":1,"New-issue":1,AIEE:2,Nestle:2,CanadianImmigration:2,characters:4,mentions:72,workings:4,dozing:8,"common-sense":3,mentioning:55,Twinkies:28,incredulously:6,"Watergate-beleaguered":1,woodworms:4,"kibbutz-made":1,"property-related":1,"anti-Noriega":1,medics:4,uncoached:1,Corault:2,"die-hards":4,"year-to-date":3,laptop:22,transporting:55,Methodists:28,resigning:55,Oleanders:4,"for...":102,functionally:6,vices:4,Protestants:41,UIC:2,"cholesterol-free":1,monitored:45,"three-night":1,furry:1,groused:16,explanatory:1,Corso:2,Flint:2,Corsi:2,Philip:2,breakfasted:16,grouses:20,erratically:6,reorganizations:4,Hekhmatyar:2,Marrakesh:2,rubicund:1,inescapable:1,Corona:2,prominant:1,cruzados:4,Invalid:2,incontrovertible:1,officals:4,Nerds:57,"Belo-Universal":2,atmospheres:4,Crimea:2,Bomb:39,"headline-grabbing":1,Tears:4,Finns:28,Aguais:2,willowy:1,Milkaukee:2,crudest:51,incumbents:4,utmosts:4,HP:2,Pius:2,HK:2,HI:2,HN:2,HM:2,advertise:42,HF:2,perfected:17,HD:2,HE:53,securities:4,fingerprinting:21,"time-poor":1,Hu:2,Hi:125,Ho:183,marauders:4,Begbick:2,booking:21,He:38,plights:4,"weasel-worded":1,searchingly:6,Sandner:2,erotica:4,Deductible:1,homewards:6,Commodities:56,Gaston:2,Tassinari:2,hutments:4,plunging:55,"H.":11,Venneboerger:2,Duverger:2,steadily:6,Bess:2,efforts:4,twitch:25,curry:63,Best:667,Provided:17,Touches:20,SERVICE:47,"lunatic-fringe":1,shaken:14,"bucket-shop":1,Pattison:2,UNRESOLVED:1,"free-market":3,Puts:20,outmatched:16,"much-anticipated":1,indispensable:3,aquisitions:4,"anti-war-related":1,tacks:4,Mennis:2,Rocky:2,abysmal:1,differences:4,removes:20,Zurkuhlen:2,Peasant:2,outfox:39,tacky:1,sustained:45,removed:81,Bascom:2,Fired:17,muster:63,prowl:449,"higher-salaried":335,"coconut-lime":1,Fires:511,BRK:2,flappers:4,precious:97,LaMantia:2,CAROLG:2,starchy:1,penal:1,trim:520,believably:6,Resnik:2,"nineteen-year-old":1,Hudson:11,Dissidents:4,escutcheons:4,"panic-driven":1,believable:1,boodleoo:106,check:24,tris:4,constructed:54,"Rd.":2,detriments:4,tip:44,Steinkuhler:2,stagnant:1,tie:24,MARYLAND:2,Kincannon:2,Jewishness:47,dissonances:4,"loan-loss":22,uniformly:6,Windflower:2,wisecracked:16,Boase:2,dullest:51,magpies:4,"multi-phase":1,hashing:21,Salon:2,portends:20,longer:668,"fill-in-your-favorite-epithet":1,Pollitt:2,landed:32,longed:32,"great-nieces":4,grisly:1,effluents:4,premeditated:1,unimpeded:1,Loftier:12,"tongue-in-cheek":97,Newsstands:4,"business-minded":1,Sherry:11,"swollen-looking":1,Today:669,Dad:11,Dae:2,Dag:2,essentials:4,"helio-copters":4,Dan:2,Dai:2,Standard:129,Das:2,Insurers:123,Day:11,"non-black":1,furrows:18,MEASUREX:2,Micelles:4,Rheumatics:670,Chirac:2,bluffs:4,headquarter:1,Atari:2,"pseudo-anthropological":1,Bronfmans:113,penises:4,Secure:39,Canoe:2,Kron:2,firmwide:6,registered:45,culminating:8,planning:21,symposiums:4,quick:34,eroding:8,Talleyrand:2,Antenne:2,delineaments:4,"two-week":1,Katsanos:2,sucks:20,"public-interest":3,steelmakers:4,Colossians:28,stands:132,Heorot:2,nationalized:112,unripe:1,contracted:32,scads:4,Federico:2,Karches:2,Karcher:2,Podger:2,reply:44,outlandishly:6,Groom:2,"custom-chip":1,"once-spare":1,alkaline:1,Age:11,dazed:103,Aga:2,"long-termers":4,water:465,Miyata:2,Gauged:17,"refuse-littered":1,supplying:8,avenging:13,sleepwalk:25,bygone:1,expressly:6,grounded:45,restructuring:671,Lemans:2,potable:1,"world-renowned":1,mimicked:17,Unione:2,unbidden:1,Justice:129,"Cover-Up":2,Unions:4,"bad-risk":1,"conventional-type":1,transferrable:1,swallowed:54,wrecking:8,Townley:2,"third-quarter":202,"fifty-pound":1,unsheathe:39,Zeisler:2,frothy:1,certiorari:296,smeared:14,smudged:1,October:2,sessions:4,clicking:55,outputs:4,mainline:3,drown:42,"first-hand":97,insights:4,"Fourth-quarter":3,dialed:32,reprimanding:8,flagship:22,nonunion:1,Safford:2,Antilles:28,streak:78,stream:25,Media:239,expectant:1,Wonham:2,Borscht:2,Ushikubo:2,"major-frauds":1,quacks:18,conversely:6,Thoroughbred:2,Terms:123,"front-back":1,Mihalek:2,protectionists:4,secured:45,unwire:39,Fruit:11,Shvartzer:2,unappreciated:1,Traps:4,Horizons:2,"red-white-and-blue":1,clone:25,Mazzone:2,soyaburgers:4,THR:2,floral:1,gorges:18,XCEL:2,"radar-threat":1,summoning:8,amuse:42,needy:176,Buttrick:2,Premark:2,"out-migrants":4,"Sidley-Ashurst":2,Leblanc:2,"nine-member":1,Suntory:2,Leblang:2,acts:18,Upton:2,Wozniak:2,yuppies:4,Breaking:229,midnight:163,dinkiest:51,ducklings:4,Premarin:2,"pre-eminent":1,swank:1,atCrcial:2,MinHa:2,microcomputer:215,decontrol:25,Communese:2,Moving:8,swans:4,Greifswald:2,thaws:4,eccentricities:4,Linger:59,buffetings:4,McDade:2,Edwardsville:11,endeavored:32,remolding:8,Triggering:8,"not-so-pale":1,"non-smoking":1,guffawing:8,Motorized:2,"smog-ridden":1,Contest:11,"self-screening":1,Geological:2,Marder:2,Burford:11,Save:672,"set-aside":3,factors:18,factory:22,extrapolate:39,hacked:32,misallocating:8,Palumbo:2,maneuver:25,attended:32,bolts:4,blizzards:4,hobble:39,eject:39,"motional-modified":1,earning:55,"asphalt-hard":1,"blood-thirsty":1,Collinsville:2,gusts:4,retreating:8,"heavy-weight":1,gusty:1,"high-resolution":1,suspend:42,fetched:32,rafts:4,undercapitalized:1,Kelly:2,fetches:20,commissioners:4,Panoz:2,Miyoshi:2,Lasmo:2,molded:81,"J&L":11,"J&C":2,"J&B":2,haggle:63,plastic:22,Margarito:2,Hoylake:2,Conable:2,Cult:11,Leonel:2,Culp:2,exploring:8,amines:4,unobtainable:1,"Co-authors":4,"T.T.":2,Saull:2,Jerell:2,lengthier:68,quirky:1,traditionnel:64,distantly:6,Kedzie:2,toughening:8,"public-policy":22,Runners:4,chugs:4,marines:4,Yankee:129,unprecedentedly:6,legalizing:8,whiskies:4,Gastronomes:4,nominating:8,Jemela:2,kimchi:64,Premont:2,Funeral:11,mourners:4,Multifoods:74,Merrick:2,Bastards:4,"in-home":1,paraphrase:78,Aktiebolaget:2,"optical-disk":1,agilely:6,malpractices:4,"social-services":1,sightings:4,Olayan:2,"Depression-era":1,pencils:18,Kuomintang:2,"AC&R":2,Pflugerville:2,Audrey:2,trafficking:21,"inter-Arab":1,senior:3,Humana:2,"P\\/E":2,"above-ground":1,supraventricular:1,diverge:42,"end-of-model-year":1,woos:20,evaluative:1,Continuing:229,Parry:2,CERTIFICATES:57,dreaded:45,Stettin:2,reoffered:81,"payment-in-kind":1,dye:25,Baroque:66,Discoveries:4,verdicts:4,braver:12,orphans:4,fainted:32,"state-registered":1,clowns:4,fainter:12,Jozef:2,Corporal:2,poling:8,Physicians:130,"silver-bearded":1,"art-historical":1,beasties:4,Keeler:2,Spread:39,Gehrig:2,Volk:2,Seminole:2,parking:122,Sniper:2,"fenced-in":1,inhibitory:1,mortgage:25,crystal:22,ways:4,review:44,Univision:2,inhibitors:4,Tarzan:2,"region-by-region":1,Mazeroski:2,rebuilds:20,toying:8,Harlow:2,sirens:4,multiplied:54,shivered:16,"medium-size":1,"fellow-craftsmen":4,"U.S.":673,"fast-talking":1,inseparable:1,multiplies:20,recentralized:17,missions:4,gimmicky:1,gimmicks:4,Broadstar:2,prompted:32,"government-securities":152,Turbine:2,Sarrebourg:2,"skull-bashings":4,Zumbrunn:2,"key-financial":1,hereunto:6,destabilizes:20,assertions:4,misapplying:8,Herculean:1,skeletons:4,raring:1,bums:4,Beauty:11,disappearances:4,eyewitnesses:4,"self-sustaining":1,microscopic:1,Deets:2,followup:1,messes:4,"long-keeping":1,reimburse:42,Breve:2,implored:54,"sea-horses":4,foreclosed:674,implores:20,attentive:1,excelled:32,rhymes:72,refractory:3,Colors:57,jonquils:4,Cotran:2,spritzers:4,rhymed:16,Crystallography:2,Contend:33,"WFXT-TV":2,"double-B-plus":3,"generation-skipping":1,Sake:64,telephone:25,dissident:3,Ticketron:2,"Euro-TV":2,Amomng:1,Speakership:2,Saks:113,Wardair:2,Kirchberger:2,distributions:4,"now-famous":1,supra:6,Burdines:28,macaroni:91,distilled:14,barefoot:218,disadvantages:4,smothering:8,drives:18,driven:14,submarines:4,Waxworks:2,Eta:2,vacanices:4,"Bennigsen-Foerder":2,Perozo:2,Haaek:2,Bondholders:4,pints:4,flakes:4,components:4,"a-Monthly":1,soapsuds:4,disloyal:1,Stimulates:20,agriculturals:4,Provo:2,Teijin:2,lavish:1,Eisenach:2,Diodati:2,LVMH:2,sampled:54,blot:25,"metal-working":1,hint:24,Louella:2,embezzled:16,Shealy:2,Applications:57,bloodhounds:4,falsely:6,samples:18,Simca:2,outwardly:675,nattily:6,Woolworth:11,replaced:54,hermetically:6,Vedder:2,undergraduates:4,Shelton:2,divested:81,kilowatts:4,squirreling:8,Sultane:2,Tootal:2,Newbold:2,aqueous:1,oddly:6,sternly:6,"quid-pro-quo":1,Sultans:4,"civil-rights":93,"mass-marketers":4,"profit-making":3,"six-week-long":1,Sidorenko:2,"non-OPEC":1,"two-nosed":1,Ricostruzioni:2,Wray:2,deduce:39,viselike:1,table:25,International:40,"low-density":3,intact:1,McEnroe:2,Paddy:2,Knowing:8,Parthenon:2,Brentwood:2,renounce:39,stops:72,reallocating:8,"A-1":3,unfunded:1,severed:54,"English-Danish":2,Later:676,populists:4,convincing:450,warlords:4,"squashed-looking":1,fantasize:149,pastors:4,Albright:2,Montagu:2,Mabon:2,"one-act-play":1,Bundestag:11,Croix:2,beavers:4,Transit:11,"small-fry":1,Erected:17,Blanche:2,Prevented:17,spaghetti:91,cripples:4,concentrations:4,Goebbels:2,McCracken:2,"Soviet-built":1,scofflaws:4,spinal:3,Equate:39,"top-tang":3,lastly:6,Kaufhaus:2,feudal:1,lawmaking:3,"interest-only":1,Beatles:111,Opposite:677,Brannon:2,DELAYS:20,Amenitskii:2,TECO:2,thereabouts:6,deteriorating:30,Mlangeni:2,Marver:2,Orejuela:2,baronial:1,Kummerfeld:2,caraway:3,garnered:32,Circulations:2,sentimentalists:4,greeted:32,Drogoul:2,avec:87,Twin:2,Radical:2,Tawes:2,sleazy:1,"risk-averse":1,russet:1,frighten:42,"business-class":1,cringed:16,Principles:57,Spievack:2,slosh:39,LeCave:2,"special-edition":1,incorrect:1,"B-cells":4,rubbed:32,Woodbury:2,"junk-financed":1,dramatizations:4,"just-picked":1,erecting:8,Nuf:6,arbitrageurs:4,redial:39,"sweet-tongued":1,"eight-mile":1,trash:25,stalwart:3,requested:32,Berard:2,Basham:2,separate:240,stocky:1,grotesques:4,CNA:2,CNN:2,stocks:678,"sun-inflamed":1,Knots:2,stackers:4,refinanced:54,Ornstein:2,Mean:39,Guidi:2,Dubovskoi:2,Suttle:2,Stretch:40,lack:44,executing:8,lacy:1,Words:57,"blood-forming":1,piazzas:4,synthetic:3,Ecole:2,Christiane:2,lining:55,switched:112,Christiana:2,dejectedly:6,siblings:4,defuse:39,Christians:41,Usha:2,fax:22,"low-duty":1,"multiple-year":1,far:591,ticked:112,perseveres:20,shavings:4,Behrens:2,sons:4,fan:24,hems:4,Capellan:2,"upper-middle":1,shipboard:22,Litton:2,Ideologues:4,lesbians:4,booting:8,Endeavor:216,Galbraith:2,Macao:2,align:42,Chase:2,Scarpia:2,Hattori:2,Discourse:2,Welling:2,NOVEMBER:2,fabricates:20,"over-emphasized":14,interaxial:1,imported:471,Definitive:1,advantageous:1,whimper:25,"serve-the-world":1,attitudes:4,fathoms:4,"ultra-pasteurized":1,scowling:21,whitecollar:1,Clouds:2,Susan:2,totalistic:1,Rachmaninoff:2,researchable:1,Mohammed:2,Gundy:2,"red-light":1,Leonore:2,Danza:2,Communication:11,"price-wise":1,weaning:8,schoolgirlish:1,miniature:3,supplements:18,spaceborn:1,gleeful:1,Forrest:2,Metter:2,Chores:4,UNDEFINED:1,Things:123,"less-serious":1,appliances:4,Reader:2,inorganic:1,Luray:2,aberrant:1,pervades:20,Maurer:2,punts:4,"kidney-shaped":1,forcefully:6,conspiring:8,pervaded:32,"new-home":1,branded:14,Zipper:2,waxen:1,amalgamations:4,grabbing:55,crested:1,operators:4,Sidekick:2,"something...":102,Figaro:87,stick:95,Hegel:2,"big-time":1,portended:16,Confronted:17,Zela:2,"battle-shattered":1,Thunderbirds:28,protons:4,Kwon:2,arbitrating:8,Zell:2,"Free-marketeers":4,originations:4,psychoanalytic:1,challenging:30,"drug-making":1,Thurday:2,Bonito:2,univalent:1,protects:20,"closet-sized":1,Grohl:2,meditate:39,"cold-storage":1,recursive:1,sleeplessly:6,"Know-Nothing":1,Friendly:2,wither:42,gullies:4,speeding:5,"light-headedness":1,Glo:2,Influential:1,"commodity-chemical":1,oddballs:4,Shippin:39,Careless:2,mismeasurements:4,Raucher:2,cults:4,retrofitted:17,Played:17,LeMasters:2,cudgels:4,Player:11,culte:64,retaliate:39,Tech:2,"half-dozen":22,Herschel:2,microsomal:1,"Gestapo-style":1,gauges:72,"non-sentimental":1,eludes:20,Raikes:2,disabled:338,gauged:54,Jamiesson:2,"tuxedo-rental":1,Vranian:2,Pickens:2,dithers:20,eluded:32,"read-my-lips":1,Threatened:16,excutives:4,conformist:3,filberts:4,Guyon:2,Dominican:40,aggressively:6,L:11,"sub-station":3,"screw-loose":1,accumulate:42,"meat-processing":1,"ozone-depleting":1,Trustcorp:2,subtler:515,refresh:33,irreducible:1,Nutrasweet:2,succulent:1,used:45,"Tiger-Heli":2,Daywatch:2,inflict:39,JAUNTS:4,Oculon:2,twists:18,"democracy-free":1,"out-of-mind":1,Mulcahy:2,Frankenstein:2,congenial:1,"one-sentence":1,Eliezer:2,"electrical-products":4,docters:4,soulless:1,combed:32,forgive:42,Stauffer:2,hearths:4,lag:679,"honey-in-the-sun":1,Nonrecurring:1,"non-academic":1,"States-Yugoslav":2,cremated:17,"Seger-Elvekrog":2,glottochronological:1,"Helmsley-Spear":2,Barakat:2,Booming:1,"patrons...":102,"municipal-bond":3,fancy:104,brave:82,"once-grumpy":1,"lower-quality":215,passes:72,breathless:1,"Co-sponsoring":2,Giroldi:113,inhibitions:4,polybutenes:4,passed:54,penetrates:20,"single-shot":1,"court...":102,Paolo:2,treasured:14,option:78,"state-supervised":1,Pericle:2,relieved:45,Dijon:2,rawboned:1,"semi-serious":1,nullifying:8,REALTY:2,Beefeater:2,Nishimura:2,relieves:20,"fence-sit":39,Marina:2,sinless:1,Rico:2,"F.A.O.":2,whiskered:1,brushlike:1,WPA:2,doubly:6,"West...":102,Crittenden:2,"recently-filed":1,Anglo:2,Devices:41,Wakui:2,gilt:613,Kombo:2,booklets:4,"Dept.":2,Bamberger:2,Forge:2,Abercrombie:2,perpetrate:39,sandwiched:54,Nuzhet:2,Supporters:4,archaized:16,Viewing:55,Refractories:111,sandwiches:4,Galvin:2,hurling:8,puffing:8,"human-resource":1,buff:22,wheedled:17,Boehlert:2,Coventry:2,reach:95,"self-deluded":1,miserly:1,Lafayette:11,"Sears-McDonald":2,revivals:4,Giuseppe:2,soared:32,equatorial:1,windows:4,coincides:20,Switzer:2,locales:4,ingots:4,coincided:32,Juliet:2,"say...":102,Forrester:2,rationalized:7,reassembled:17,JP:2,Ebert:2,allocable:1,Erath:2,flexers:4,restarters:4,JH:2,laments:72,Forward:2,JA:2,tussled:16,ragging:8,Seattlites:4,Nationwide:294,Jr:2,Blaming:8,starters:4,Nature:11,Jo:2,Taruffi:2,unopposed:1,unilaterally:6,feminists:4,hip:22,Bedford:2,hir:404,his:680,"mono-unsaturated":1,ceremoniously:6,Cokely:2,amici:64,explosively:6,Bierce:2,longest:51,commiserate:39,JOINT:1,"J.":2,dossiers:4,outstrips:20,bars:18,Partnership:2,Shirt:2,Rospatch:2,yassuhs:106,Shira:2,bare:82,bark:25,Cluff:2,compacted:7,"entry-limited":1,learns:20,glistening:8,Libya:2,distinctive:1,Oregon:11,libraries:4,ENDED:16,Menelaus:2,use:44,consecutive:1,"Thursday-night":1,SALT:2,initially:6,Ingbar:2,"one-company":1,"general-purpose":1,rapid:1,admirers:4,African:66,Japanese:681,Spurred:17,Fracturing:2,sluiced:32,Morrissey:2,"small-business":22,Unitholders:4,Morey:2,"four-nation":1,sluices:4,blazed:16,became:16,redemptions:4,upturns:4,Morel:2,arbitrarily:6,"network-affiliated":1,"three-point":1,"carpet-cleaning":1,unleveled:17,improper:1,Cobb:2,Cobo:2,pesatas:4,"pro-Reagan":1,"Latter-day":1,"Hewlett-Woodmere":2,jugglers:4,steeples:4,Guitar:2,whom:79,ditches:18,whoe:79,Elite:2,Finkel:2,buck:24,passably:6,"single-party":1,Maitland:2,TRIAD:2,"Afghan-Pakistan":1,"left-handed":1,stolen:14,Succeeding:8,bailouts:4,sportiest:51,fingerings:4,Heidrick:2,wireline:1,underperformed:17,Springerville:2,engineers:4,City:11,lodges:4,Middlesex:2,blurted:32,Edwards:2,Edwardh:2,lodged:54,"Fleet\\/Norstar":2,"Write-offs":4,anguish:78,Cite:33,"gallus-snapping":1,openended:17,predigested:17,twofold:97,retroactively:6,Skydome:2,"Rolls-Royce":2,widely:6,itchy:1,"pro-reform":3,parvenus:4,Ila:2,negotiate:42,Sober:2,Fabian:2,"post-1987":1,"executive-level":1,"precedent-setting":1,verboten:64,"new-car":22,refute:39,Seizing:8,edgy:1,unnourished:1,edge:25,Augustines:28,dares:20,bleaching:8,reliant:1,GLI:2,aftermaths:4,salutaris:64,intervals:4,pyramiding:8,autumnal:1,Semenov:2,Sixteenth:40,illusions:296,corroborated:32,"mile-long":1,"half-melted":1,tamer:12,"single-digit":3,MedChem:2,unscheduled:1,Farwell:2,Glory:47,conscript:22,REJECTED:17,Defends:18,rafters:4,"specialized-engineering":1,WMB:2,antiseptic:3,sharpened:54,"Kass-Pedone":2,modifications:4,Cucamonga:2,capitals:4,drooled:16,ignore:42,"one-week":1,unstable:1,Teeley:2,"pro-student":1,Pharmaceutical:40,hinted:32,"time-cast":1,Backs:20,Leighton:2,"highest-pitched":1,litter:78,"co-developers":4,modernize:39,"insurance-cost":1,Clubs:41,Fund:11,Motorola:2,ticking:8,Funk:2,Aguilar:2,"non-beer":1,Barton:2,Bartol:2,Taoists:2,cannons:4,palmed:16,Fulfills:20,Singleton:2,tauntingly:6,Koreagate:2,Okrent:2,overgenerous:1,entrepreneurs:4,completing:8,"I.R.S.":2,grazin:8,"Nathan-Bond":2,unnoticed:1,stitched:17,operational:1,OPPENHEIMER:2,shawls:4,"Greene\\/Worldwide":2,Sonnett:2,intraday:3,stitches:4,amidst:127,"Batallion-2000":2,"ABG-Semca":2,Fuzzy:1,skouting:8,"audio-visual":3,Beccaria:2,Verit:2,Maoist:1,"higher-than-retail":1,Sylvan:2,Ziebarth:2,repeatedly:6,Zedmark:2,Means:682,"non-Russian":1,Wickcliffe:2,licensees:4,feasting:8,"majority-party":1,unsealed:14,Westerners:28,Ansel:2,worthwhile:1,shortcuts:4,Hungerfords:2,divisive:1,missionaries:4,"wall-flowers":4,forestalled:17,malicious:1,Specifics:4,Embarcadero:2,grouped:17,ornamented:17,mammoth:1,interpretable:1,disrupting:8,Felsher:2,"least-developed-nation":1,"then-prevailing":1,"half-filled":1,Foiles:2,liquefy:42,Reformation:11,Foiled:17,KOFY:2,emoted:16,Oakland:11,reseachers:4,Kimmel:2,underachievers:4,instantaneous:1,Stands:2,prospectively:6,Bowan:2,Viewpoint:11,"special-interest":3,Endara:2,"A.P.":2,squeezing:8,sweathruna:64,Commanding:8,Dailey:2,"property-rich":1,"manufactured...":102,Systemwide:66,Sobel:2,Porgy:2,engineered:45,headlined:54,BANCORPORATION:2,NRM:2,warships:4,Sims:2,LAN:2,"Tarot-like":1,violinists:4,"prepayment-protected":1,LAC:2,deals:18,Projections:4,Kuraray:11,dealt:54,manifestly:6,businesses:4,LAW:47,"all-married":1,"stainless-steel":1,Haynie:2,"civic-lunch":1,Neanderthal:1,narcotizes:20,reinsure:39,Interviews:4,surefire:1,"pre-French":1,Hutton:2,"Raw-steel":22,Durwood:2,"open-bank":1,beanballs:4,buffeted:17,universities:4,hourly:1,Zygmunt:2,Narita:2,"non-familial":1,Zakes:2,Randall:2,"post-colonial":1,"twice-a-year":1,vistas:4,"re-exports":4,noncontract:1,Belafonte:2,sinuses:4,"end-tailed":17,"bottom-fishers":4,Technomic:2,Benediction:2,scrapped:54,Alois:2,Dowd:2,Clapper:2,rationalistic:1,oversold:683,"U.S.-Korean":1,Hardy:2,"permanent-insurance":1,Materials:41,helpers:4,Spade:2,Carlsbad:2,feverishly:6,gossiped:17,scales:18,forbid:684,chipped:45,"black-and-white":1,shoved:32,Threatening:8,subsidary:1,"quake-inflicted":1,scaled:54,adsorbs:20,"thirteenth-century":1,"decade-long":1,Toho:2,shoves:20,analyses:18,grassy:1,pauses:72,Births:4,Jacksons:28,"deer-are-long-legged-rats-with-big-ears":1,organismic:1,Murguia:2,"exchange-listed":1,Dolphins:28,particularistic:1,Selections:4,Gossips:4,inclined:14,symbolizing:8,"Oct.13":2,Copaken:2,Sighting:8,entwined:14,thuringiensis:64,Giannini:2,women:4,Trompe:64,"parent-company":3,"ANF-Industrie":2,restaged:17,extralegal:1,Solloway:2,abort:39,merged:81,NTC:2,NTG:2,"Fox-Pitt":2,Northern:40,flaring:30,rapt:1,heaving:8,Skipping:55,Magic:40,rape:44,Cutbacks:2,Frisbee:2,patronize:39,HUTTON:2,Hubie:2,fidgeting:8,Duchossois:2,"extra-curricular":1,undersized:14,modulations:4,segmenting:8,exemplify:149,hurdles:4,bestsellers:4,"anti-management":1,salvaging:55,Vassiliades:2,hurdled:16,Qualities:111,ethnic:1,Hence:6,hymens:4,Dostoevski:2,Knightfall:2,sculptures:4,Aermacchi:2,interrupted:81,"Far-reaching":1,Fairmont:2,sculptured:14,"high-rises":4,"Rundfunk-Sinfonie-Orchester":2,Convulsively:6,heavyweight:22,"Toronto-based":66,"half-bottles":4,"heebie-jeebies":4,dearest:51,"primary-color":1,outsold:16,Inwood:2,Billard:2,complicate:42,Hoemke:2,choosy:1,apologetically:6,owe:149,"money-wise":1,choose:42,Roizen:2,inconsistencies:4,covered:81,pending:199,Yoder:2,Task:2,Scandinavia:2,"multi-purpose":1,Gabor:2,flout:39,lionized:17,catchwords:4,Gabon:2,Adam:2,microeconomic:1,Writing:217,service:44,mollified:54,decommissioned:17,drummers:4,HMOs:2,Considerable:1,Emulex:2,"worst-case":1,unavailing:1,"job-boosters":4,"higher-toned":1,FiberWorld:2,Arts:46,masterworks:4,completions:4,HATS:4,"U.S.-built":1,Witnesses:57,whitish:1,Spangenberg:2,lobbied:32,sectional:1,Shuttle:11,Michelob:2,respects:18,effloresce:39,unabated:1,impart:39,McCafferty:2,dive:24,Vantage:2,witches:4,sunbaked:1,Deno:2,"service-industry":3,supercritical:1,halfheartedly:6,yori:64,conflicts:18,Snedaker:2,"Ed.":2,yore:685,conscripted:17,feasible:1,"round-eyed":1,reweave:39,"slow-firing":1,keyless:1,nonrecurring:30,"experience-oriented":1,Maloof:2,"much-delayed":1,Flushing:2,"management-services":152,endemic:1,tolerant:1,salient:1,Uprising:2,galled:17,tootles:20,"minority-internship":1,earthshaking:1,pimplike:1,doomed:45,powdered:7,simulate:42,"heat-processing":1,Heymeyer:2,males:4,Bellow:2,Moldavian:2,riches:504,abetting:8,frugal:1,Fletcher:11,Corrupt:2,Ailey:2,"creek-filled":1,Milling:2,"quality-adjusted":1,Ailes:2,Empire:11,fissionable:1,Potash:2,"quasi-xenophobic":1,Kremlin:2,Independent:40,arraigning:8,"shareholder-rights":176,Pabst:2,"ham-handed":1,"pre-game":1,Braking:2,ghazals:64,Twaron:2,Elizabeth:2,supplanted:17,Kiss:39,Mattox:2,Yquem:2,Howie:2,Middlefield:2,"wind-blown":1,firecrackers:4,Daniil:2,Laying:229,siphon:39,vouching:8,"European-made":1,biologic:1,Mercedes:130,delve:39,Profits:57,amulets:4,"terra-cotta-colored":1,"much-lauded":1,Coeur:2,CI:2,Assicurazioni:2,High:294,Salter:2,Adjoining:8,Blvd:2,Silly:2,REQUESTS:4,smirked:16,Bantam:2,intragovernment:1,nolens:64,superimposes:20,purely:6,"b-As":686,superimposed:14,seal:44,debate:44,Lingering:1,painted:45,Pyramids:28,Faget:2,Unpublished:1,"Rey-controlled":1,Craft:47,tinges:4,"re-echo":39,Measured:17,"lighter-than-air":1,Kollmorgen:2,sued:32,"UV-B":213,Spinley:2,Quelch:2,canyons:4,flirting:8,"Galophone-Kimberly":2,ones:4,sues:20,daydreamed:16,Flugdienst:2,NIH:2,homosexuals:4,HCFCs:4,memorabilia:4,Sullivan:2,Maury:2,vied:32,Promotional:1,NORC:2,Maura:2,"grassroots-fueled":1,WIN:2,Bertorelli:2,Gosh:106,truer:12,conversions:4,Siniscal:2,turbulent:1,"Gold-backed":1,LMEYER:2,Lawrence:2,merits:18,recoiled:16,unfairly:6,Amman:2,"bright-red":1,Bernardine:2,Gutfeld:2,"ever-quieter":1,record:139,"phase-one":1,Ramtron:2,superb:1,"eight-cent":1,chairmen:4,oldsters:4,trifle:479,Ellsaesser:2,reexamining:8,Zivley:2,Shunted:17,huts:4,neonatal:1,spoil:42,"limited-time":1,fervors:4,"Safety-Kleen":2,"Berlin-West":2,Tet:2,Daignault:2,Suemeg:2,Parkinson:74,Kirby:2,"Shotgun-type":1,clogged:81,demurs:20,"DC-9":10,torments:72,comestibles:4,"out-of-school":1,wonder:687,kinesics:4,"retailer-sales":1,worldly:1,"fourth-grade":1,"no-layoff":1,adulterers:4,hypothalamically:6,Margolin:2,Fujisankei:2,"non-professional":1,lettermen:4,intimidates:20,CF:2,Langendorf:2,enlarging:55,"Strong-earnings":4,Benson:2,divinely:6,"Home-made":1,thrusting:55,STATE:11,uncanny:1,Navigation:2,wily:1,wilt:513,"intra-Community":1,"disabled-workers":4,choices:4,will:688,hovering:8,Poetrie:2,unaccommodating:1,riche:1,PLO:2,Potentially:6,Bollinger:2,Braques:28,boite:2,unflappable:1,"far-out":1,Plantation:11,richissimos:4,lobular:1,Bretton:2,Tactics:4,Hope:115,Cambrex:2,Gaubert:2,Colman:2,privileges:18,"program-dominated":1,limply:6,"horse-playing":1,retailing:21,Pasta:2,Londe:2,privileged:1,elbows:4,Janis:2,Sosnick:2,premiere:205,takeoffs:4,MTV:2,Voyagers:28,"first-amendment":1,proprietors:4,glared:16,marketwide:1,Bust:2,MTM:2,proprietory:1,suffragettes:4,"already-expensive":1,"asset-stripping":1,Looked:16,"back-ups":4,Kutz:2,Muir:2,"government-provided":1,unpacked:1,"Lond.":2,theses:4,Minuses:4,sensing:55,Haut:2,Annapolis:2,Quentin:2,Schmalma:106,Conyers:2,identically:6,melanderi:28,Ayers:2,patria:64,downturns:4,dooming:8,miniscule:3,"Records\\/SONY":2,beauticians:4,Tower:2,Wolfsburg:2,avidly:6,"two-page":1,point:486,Prohibition:11,Fujisawa:2,"Milwaukee-based":1,crannies:4,Mattsson:2,earthquakes:4,Solodar:2,identical:1,Reared:17,Drum:2,"permanent-looking":1,republics:4,Bante:2,"name-droppers":4,idyllic:1,Norimasa:2,Bobettes:4,Bantu:2,fervente:2,ahem:106,Dealing:8,"Federal-court":1,Barcus:2,repressed:14,Desc:2,"stain-resistant":1,Bunting:2,Milken:2,Fuller:2,"credit...":102,faithfully:6,IAFP:2,searching:55,Bronces:2,darkhaired:1,"self-content":1,Jonathan:2,neglecting:8,"M.D.C":2,"regular-featured":1,lead:689,"mass-circulation":1,obscurities:4,lean:240,"M.D.s":4,leap:24,nonfinancial:1,glacial:1,refolded:16,locate:42,"all-in-all":6,"Japanese\\/Chinese":1,Chimicles:2,murdered:45,hoofmarks:4,Chester:2,Maui:2,tempered:54,slug:25,CONGRESSIONAL:1,Elios:2,stereotypically:6,spilled:32,"ethics-related":1,shipping:55,surge:25,Fundamentalists:57,Furiouser:68,Buick:2,Fosset:2,fatally:6,Really:690,Ecclesiastical:2,warrants:18,brambles:4,Predictions:4,druggers:4,brush:139,inpenetrable:1,"North-Central":1,Liebenow:2,Ball:11,resistors:4,Bali:2,Bald:2,"province-wide":1,Bala:2,Sailor:2,Baly:2,Vern:2,NetWare:2,appointing:8,Kenji:2,funds:18,bombardments:4,corneal:1,"missile-defense":1,Suggestion:2,Charmer:2,kibbutzniks:4,"triple-digit":1,Bucharest:2,Gathering:21,Golf:11,Gold:11,Redbook:2,Goddamn:106,insipid:1,recede:149,"flood-prone":1,AFTERMATH:2,Hemingway:2,Strasny:2,"network-owned":1,Tamales:28,buffs:4,domesticates:20,Mrads:4,bombarding:8,Vancouver:2,Temporary:66,ususal:1,"more-or-less":6,Adamski:2,book:25,boom:25,boon:22,Chinaman:2,Procedures:41,honorary:1,withstood:32,junk:25,"Jovanovich\\/Bruccoli":2,moguls:4,ideological:1,medications:4,dollarette:1,Dover:2,Geingob:2,NFIB:2,Calmly:6,rotting:8,"tax-reform":3,"well-entrenched":1,"extended-range":1,Lust:2,northerly:1,hardboiled:1,"mid-week":3,Debts:2,BUSINESSLAND:2,Larsen:2,"five-nation":1,Schuster:2,"waste-management":3,advantage:25,Moreira:2,fractioning:8,Adjusting:8,scold:39,"all-county":1,halfways:6,mutinies:4,alphabetic:1,Duhagon:2,Elec:2,Apicella:2,"button-down":1,citrus:3,millages:4,Fridman:2,Kearney:2,Goshen:2,liaisons:4,ASSETS:46,Loen:2,Cairenes:28,Loeb:2,"J/NNP.A.W.":2,broiled:17,deferments:4,"ultra-violet":3,"non-compete":1,Loew:2,"non-violent":1,sooty:1,punning:8,miniatures:4,Dissident:40,sustaining:8,Cruger:2,Pampa:2,Charade:2,Burrill:2,Bosis:2,tiered:1,cooking:27,Blackwill:2,BLOEDEL:2,Dylex:2,"store-brand":1,"AT&T":11,Agfa:2,hallucinating:8,Maldutis:2,shocks:18,chins:4,Foundation:11,jubilantly:6,zlotys:4,nawt:6,"non-``":133,Octopus:2,doldrums:91,"One-year":40,Rundlett:2,climbed:32,Nibble:2,"compressor-manufacturing":1,Dubose:2,Jewell:2,Farther:6,natures:4,"over-leveraged":1,Shicoff:2,Isler:2,Isles:74,"mortgage-lending":3,appropriately:6,Dexter:2,lengthen:42,"now-smaller":1,forbore:16,Vitulli:2,"pro-rata":1,Warburgs:28,ARTY:2,abbreviations:4,Gemeinschaft:64,"share-repurchase":1,Laodicean:66,therefore:691,Randell:2,Diabetes:2,Glenne:2,LOUIS:2,Clients:4,"Red-blooded":1,primeval:1,Mattress:2,unpack:39,Buoy:2,"J.H.":2,Proprietary:2,archaeological:1,CHEMICAL:2,leadings:4,Colombia:11,"sky-carving":1,"six-mile":1,unreconstructed:1,"cable-programming":1,Le:87,La:87,Lo:183,Li:2,"American-style":1,Lu:2,cookers:4,"automobile-parts":1,Biafra:2,absolute:3,LA:2,Malapai:2,Easter:11,LM:2,Navin:2,LS:2,LP:11,dared:32,Falcon:11,LX:2,"junior-grade":1,Guste:2,"L.":2,stingier:12,"operator-assisted":1,emphysematous:1,Centerre:2,Hoping:8,"down-payments":4,romped:16,Matunuck:2,sickening:1,Sarum:2,farmlands:4,nonsensical:1,"point-of-sale":1,"investment-counseling":1,Ehrlichman:2,Willy:2,"already-shaky":1,Wills:2,whizzing:8,partnered:17,Dussa:2,"Forty-one":1,CONTAIN:39,Willa:2,"multi-windowed":1,rewarded:54,Boxford:2,Qinghua:2,Abbott:2,occupations:4,secede:39,Progressivism:2,anticipations:4,"HIV-related":1,wales:4,"per-ton":1,Decisionline:2,variables:4,Prence:2,Libera:64,Hickory:2,riggers:4,HIGH:40,recollections:4,Lodowick:2,multidimensional:1,undeveloped:1,glutted:14,Mechanics:2,Shamu:2,"five-percentage-point":1,Shame:59,diatoms:4,Hovdingar:64,Authenticated:17,telescope:25,sandbars:4,Tiburon:2,outgeneraled:17,PENSION:47,Jamestown:2,allay:39,WEDTECH:2,esoterica:4,touts:20,Underseas:2,smirk:25,encourage:42,zap:42,Correcting:8,misrepresentations:4,stamping:498,resinlike:1,Blessings:4,Osric:2,"air-conditioners":4,universally:6,"single-day":1,Pilsudski:2,competes:20,commissaries:4,"UH-60A":2,"Crawford-Browne":2,ministries:4,Mooney:2,competed:32,dentures:4,Walbancke:2,Krampe:2,Delfim:2,Mao:11,disfigured:112,maladies:4,"Tshombe-Gizenga-Goa-Ghana":2,clamorous:1,reintroduces:20,seizures:4,Itch:39,Fearless:40,ruins:4,"mind-boggling":1,"pan-tribal":1,"Kerr-McGee":2,exulted:16,nigras:4,Gosbank:2,"middle-Gaelic":1,"large-size":1,Oracle:2,"non-interstate":1,Colleges:113,Alongside:206,Diceon:2,idly:6,idle:82,valiant:1,"bath-supplies":4,Preludes:28,Generally:150,"media-spending":1,Phuong:2,dozed:16,arousal:1,CORPORATE:1,Studach:2,Fontaine:2,Kennard:2,racers:4,moralizers:4,Pascual:2,"anti-epileptic":1,Missionary:10,concedes:20,committing:8,limitless:1,vexing:13,retroviruses:4,metrics:4,Seib:2,diagnosable:1,Dispensing:8,conceded:32,Mahler:2,"non-EC":1,Paragon:2,"confidence-shattering":1,scream:95,Zanzibar:1,Curly:1,"sons-in-law":4,"ex-partners":4,TAXPAYERS:4,Marks:113,cheaply:6,Resources:41,Mylan:2,Extend:39,"longer-established":1,Reiser:2,Tiao:2,midshipmen:4,Octave:2,Coliseum:11,Mylar:2,remotest:51,Dalkon:2,Tricks:65,bruddah:147,"dope-ridden":1,acrobats:4,conquerors:4,Harburg:2,Guesstimates:4,Rip:2,Craig:40,Rio:11,eyelids:4,Rim:2,"Higher-income":12,"twice-daily":1,boarded:112,Composers:28,pioneering:30,housewarming:1,clarified:54,"three-bedroom":1,overexercised:17,eschewing:8,sweetpeas:4,Narberth:2,"mass-produce":39,Occupational:40,clarifies:20,deadpan:1,Advances:57,Dartboard:47,droves:4,"ex-Mrs":309,Sinhalese:1,"third-story":1,timber:25,croakin:8,Advanced:40,"Coast-based":1,"marketing-communications":4,Truesdell:2,unseemly:1,Bronx:2,flathead:1,Spectradyne:2,Elaborating:8,veer:39,"leisure-oriented":1,Otis:2,heating:21,Laura:11,"high-yielding":1,Wohlstetter:2,multimillions:4,Lauri:2,Lauro:2,eradicate:39,gypsies:4,Mendell:2,Biovest:2,blonde:3,truthful:1,CICS:2,relearns:20,Hinman:2,Sitting:8,union:22,Tamm:2,flipped:16,Brassica:2,Hoosier:2,Weerasinghe:2,tallest:51,Remington:2,Tama:2,allotting:8,Royaux:2,Consensus:2,"low-water":22,sycophants:4,"business-related":1,Indemnity:2,Hieronymus:2,TDK:2,Elgin:2,participatory:1,"data-communications":4,Talley:2,Beware:39,ugly:1,employ:182,"disk-drive":22,Vlasi:2,Kaneb:40,Zurcher:2,Prozac:2,"Michel-Etienne":2,RODE:16,Evzone:2,Clarksburg:2,Potomac:2,"London-based":66,Sword:11,noncompetitive:1,womanly:1,verged:16,Phouma:2,JYM:507,malefactors:4,jolting:8,Elders:130,"hot-honey":1,split:692,Peden:2,Clardy:2,Wussler:2,KIPPUR:2,boiled:45,effortlessly:6,inadvertently:6,qualifications:4,"intellectual-literary":1,consents:18,Liquidating:116,Bentsen:11,Persia:2,Traces:4,Tracer:2,midsized:7,"Malay-based":1,"anti-Bork":1,Martyn:2,"Miami-based":1,Gavin:2,Belton:2,goofing:8,discrepencies:4,Weaken:39,Shaffer:2,outlived:54,Rapid:40,Muscolina:2,Retracing:8,"out-of-doors":91,"gun-shy":1,snickered:16,Neversink:2,portrayed:54,Happy:40,Ewing:2,espouses:20,Baghdad:2,beloved:344,espoused:32,"Bake-Off":2,"grilled-chicken":1,"warn-your-enemy":1,confidentially:6,"Jewish-Gentile":2,otherworldly:1,unprotected:1,"off-white":1,clustered:54,shadow:25,Muscovy:2,Mongi:2,Maniago:2,"Schleswig-Holstein":2,retake:39,festivities:4,Steven:2,Growers:28,Agricoles:2,Literally:6,discordantly:6,begin:42,proportionally:6,defeatists:4,"Book-of-the-Month":2,prospectuses:4,Between:127,stealthily:6,Goodyear:31,Asiatic:1,"Merriam-Webster":2,Redwood:2,Passaic:2,plucked:32,Ingleside:2,slivers:4,alligatored:17,"IBC\\":2,"low-yielding":1,Jakes:2,fish:693,"personal-computer":22,"anti-scientific":1,disdains:20,IBCA:2,Franchising:2,bicentennial:22,browse:39,"property-poor":1,stoked:17,oversaw:385,beinge:8,RECRUITS:20,administer:42,Aaron:2,Management:11,Seelig:2,Rheinstein:2,collectors:4,"fast-vanishing":1,tame:82,Testicular:2,NALU:2,Device:47,"single-room-occupancy":1,tamp:39,contusions:4,DyDee:2,grooms:4,"miles-per-hour":1,"quota-cheaters":4,nonvoting:1,"hot-tempered":1,Boudreau:2,Soda:2,safeguard:63,"High-technologies":4,masquerading:8,"Gene-Princess":2,Pleasanton:2,auditioning:8,pesos:4,smashed:85,Brest:2,Lolita:2,refillable:1,prudentially:6,Deleage:2,whorls:4,Pittsboro:2,tooth:163,triangles:4,Tashi:2,microwaving:8,flaps:4,Apollo:2,eventual:1,Lefferts:2,"market-affecting":1,OHIO:2,vegetative:1,Ferruzzi:2,"all-consuming":1,E:694,Operation:11,Gardena:2,comely:1,intent:22,"class-conscious":1,Horticultural:2,variable:3,Gardens:41,rephrased:17,Inform:2,filing:21,Sudanese:2,overturned:54,Heerden:2,Blackwells:28,Wunderman:2,Shigezo:2,"non-arbitrage":1,bandits:4,Wabash:2,Bye:106,Proudhon:2,osf:127,Millstone:2,airframes:4,Tourist:11,timbered:1,photocopiers:4,crates:4,Beckwith:2,Tourism:11,Glendora:2,"anti-Yankee":1,"who...":102,Agnos:2,choice:22,Lyle:2,Halprin:2,Selkirkers:4,stays:72,Olszewski:2,"plaid-floored":1,Lasker:2,Dimitri:2,Tau:2,cooks:4,Tap:63,Tar:113,"Monday-Friday":2,Organized:2,Sojuzpushnina:2,Tae:2,Inexplicably:6,defaults:18,CLAIMS:20,Tan:40,Tao:2,Tai:2,Taj:2,Copernicus:2,"crash-scarred":1,intial:1,trails:18,"Small-company":1,Dryja:2,lengthened:45,thrumming:8,"long-suffering":1,shirts:4,costlier:12,"not-so-lonely":1,"Stop-Limit":2,Rolm:2,Landau:2,Loper:2,Magna:2,"Fault-tolerant":1,"scandal-wracked":1,boost:182,Lopez:2,"Bio-Products":2,"Porsche-like":1,Latham:2,"egg-processing":1,Webb:2,Hallmark:2,accomplishes:20,mafiosi:4,dusty:1,Displayed:17,LME:2,accomplished:81,irregulars:4,Bofors:2,REAL:66,Shattered:1,Giulio:2,Thornton:11,Enough:301,Jong:2,Joni:2,REAP:33,Heimers:2,nitrates:4,working:695,Kansai:2,Hayter:2,Lazzaroni:2,Royalty:2,Inmates:57,Jaclyn:2,"High-gain":1,Sahjunt:2,Finnerty:2,"Bush-Gorbachev":2,"mid-continent":1,Vicolo:2,Doubled:16,Rapatee:2,"non-family":1,tines:4,arable:1,Doubles:2,Opelika:2,riders:4,Joffre:2,originally:6,harmonious:1,Showers:2,Comparative:1,stupidities:4,zippers:4,unraveled:81,Protestantism:2,admired:112,Mexicali:2,"tree-shaded":1,mirrors:72,Hump:2,Hecht:2,Shilling:2,Matamoros:2,locks:18,incremental:1,admires:20,Bore:39,Hume:2,septic:3,Plimpton:2,dooms:4,vainly:6,foreshortening:8,slams:20,Skinner:2,Knauer:2,Printemps:2,minicomputers:4,Drain:63,"moon-washed":1,"dinosaur...":102,STC:2,"power-buying":1,paleontologists:4,LecTec:2,Kissin:2,STS:2,Corporate:66,Korps:2,egotistical:1,temperate:1,finanicial:1,Needless:66,regressive:1,Moll:2,COCAINE:2,wolves:4,Astaires:28,Mole:2,Encouraged:14,Spurgeon:2,"seven-bedroom":1,Peterborough:2,SEPARATE:1,"touch-tone":1,Prudence:11,years:4,episodes:4,yeard:17,Fjelstad:2,"close-in":1,Lakeshore:2,"dust-thick":1,"once-fashionable":1,Cypress:11,Assist:2,Escanaba:2,Legislatures:4,troubled:103,relapsed:16,augen:64,recipients:4,civilian:3,Kemm:2,Deutsche:164,"Minoan-Mycenaean":2,indigenous:1,secularized:17,drilling:122,Kemp:2,Webster:2,"U.S.backed":1,"ki-yi-ing":8,materialized:32,"twenty-nine-foot-wide":1,Cafritz:2,Holcombe:2,Certified:2,materializes:20,quarrymen:4,retrieve:42,Entitlements:4,Live:696,sponsor:24,prudently:6,workdays:4,Mongan:2,interned:17,paroxysmal:1,Zawia:2,Treasonable:1,Barbour:2,Drums:4,typed:81,Transfers:4,complicates:20,curbs:4,FUTURES:4,Roughly:6,complicated:81,Veritrac:2,"pro-tem":1,GRANTING:8,Libertines:4,Avmark:2,"fortune-happy":1,"large-firm":1,initiate:182,aboard:245,"oil-futures":4,Owens:2,"managed-care":1,saving:5,"XA2000":2,Aloud:6,Vasilievitch:2,Funding:11,exaggerations:4,stifles:20,"sway-backed":1,Sabhavasu:2,Amici:64,stifled:32,oversimplified:14,decommissoned:1,plugugly:3,Mullaney:2,tombstones:4,Stileman:2,Herger:2,Meils:2,herds:4,specialists:4,adoptable:1,"Pentagon-related":1,nonsocialist:1,Economidis:2,unfit:3,Hubert:2,tortures:18,sockdologizing:8,"flat-footed":97,Procepe:2,Suggest:39,locations:4,Easterners:57,"gene-splicing":22,"cold-rolled":1,"wood-products":4,Rawleigh:2,SOARED:16,invite:95,Hastert:2,BREWS:20,Evadna:2,warriors:4,Alicia:2,Salzman:2,intends:20,portents:4,Hale:40,Kenworthy:2,Half:697,evened:17,Hall:11,Halo:2,creditably:6,imperatives:4,"High-end":1,Gilleland:2,Newcomers:4,Concessionaires:4,Allison:2,printed:45,knowingly:6,prayerfully:6,creditable:1,Mohasco:2,Chet:2,Lands:65,Cher:2,Ches:2,twirlingly:6,Ishida:2,Chez:2,Chex:2,Chef:2,Landa:2,phis:4,Granin:2,"summer-winter":1,Chen:2,redirected:54,Chem:2,Schilling:2,fascinated:81,"coupon-equivalent":1,Rheumatism:2,infuriate:39,APMS:2,Sky:11,Electronics:698,fecal:1,"sales-tax":22,Seigel:2,Piwen:2,aggressive:1,Ski:11,Meanings:4,equidistantly:6,Chips:111,betrothal:1,Leadership:47,Frenzy:2,Housing:11,Bianco:2,"gas-derived":1,hindmost:1,guarded:81,Assets:56,suitcases:4,tilting:8,"fraud-related":1,"two-round":1,simplistic:1,Nagymaros:2,"college-sports":152,awaiting:8,Machinist:2,"Plaintiffs``":133,Ryosuke:2,"Public-health":3,Asquith:2,whipped:112,Dismounting:8,multifiber:12,Cashion:2,morose:1,"cost-billing":1,"One-day":1,Toll:47,"hurricane-wracked":1,Juge:2,impressions:4,hastened:32,Clintonville:2,Weithas:2,intoxicating:1,"stock-appreciation-based":1,"agriculture-based":1,alarming:13,"low-speed":1,Jonas:2,"consumer-electronics":152,refreshed:103,Mitsubishi:113,Boondael:2,"business-services":1,planes:4,Conasupo:2,"bankruptcy-court":22,Gettinger:2,"pro-Iranian":1,"publicity-shy":1,McCauley:2,Vitarine:2,concentrated:81,busting:8,Automax:2,Bancario:2,"stop-and-start":1,Luxco:2,recitations:4,s:251,concentrates:72,loveliest:51,UMNO:2,Unsettling:1,"Sweet-sour":1,compels:20,"dark-skinned":1,Leavitt:2,Giordano:2,"Twenty-First":2,radicalized:17,Horton:2,Pepper:11,RESIGNED:16,"extra-high":1,"post-independence":1,stripped:81,ultracentrifugally:6,Berber:66,Briefer:2,relations:4,Sundarji:2,combatted:17,"no-trading":1,formed:45,Baykal:2,geothermal:1,"Industries-developed":2,Entertaining:2,former:3,runnin:8,outflows:4,"rock-like":1,Annandale:2,Commander:2,straighter:136,huckstering:8,Revamps:2,Copland:2,Flugleasing:2,parboiled:16,"non-vested":1,"U.S.-led":1,"all-round":1,Diaghileff:2,reviled:14,Nagoya:2,dubious:1,obtuse:1,electrogalvanized:7,Eliminate:39,serological:1,engages:699,debilitating:1,Govette:2,Replacing:8,theorized:16,"mean-square":1,legalistic:1,Lovejoy:2,Megdal:2,Landover:2,Whipple:2,UTA:2,"chain-store":1,deft:1,defy:42,Commissioner:2,UTL:1,edges:4,wired:54,bluntly:6,"healthy-looking":1,brasses:4,Spherical:1,Appropriately:6,Pork:11,tracking:55,Haupts:2,"Zero-Based":2,Otros:2,Primark:2,Port:2,"I.M.F.":2,steamed:54,recycles:20,disconcert:39,Crossfire:2,Conservative:129,divestitures:4,BOJ:2,Concerns:4,BOC:2,INVESTMENTS:28,"serious-minded":1,Boylston:2,uncap:39,Males:28,Bardagy:2,counterproposals:4,Malek:2,Lewala:2,overthrow:63,Malec:2,"Duke-EPA":1,Debates:4,gestured:16,"mosaic-like":1,Decreasing:8,world:163,colluded:16,apprehending:8,tremulous:1,SETTING:8,Nacht:64,unrepentant:1,"out-of-step":1,shutter:25,militate:39,Sludge:2,goosey:1,learning:55,Burchette:2,Engel:2,unshielded:17,demeaning:1,diving:5,divine:3,Brazilians:65,Prabang:2,refundable:1,semantically:6,"well-planned":1,restoring:55,SQUARE:2,"holiday-season":3,retains:20,"Tax-exempts":4,Lukens:2,Cawdron:2,"E.D.":2,majoring:8,"Private-sector":1,retraced:16,Tibbs:2,Magnatek:2,Puzzled:17,"local-exchange":1,Inisel:2,"five-cent":1,rabbinical:1,Paine:2,shapely:1,No:700,McMullin:2,Paini:2,Ne:2,unethically:6,Ng:2,Endangered:2,ineffable:1,Pains:4,conceptually:6,Sansone:2,Finley:2,"Gordon\\/Pick":2,NH:2,Tewfik:2,Bielas:2,Hultberg:2,NL:2,DnC:2,NO:701,lacquered:17,NB:2,NC:2,NE:2,deCordova:2,lounging:55,rumbles:72,mindless:1,Windahall:2,Maeterlinck:2,NS:2,NU:2,NV:2,NW:2,Hannover:2,Firebird:2,"N.":40,worsted:3,"Nations-monitored":1,Alternately:6,Tandy:59,foreheads:4,"Group\\/Business":2,Arkhipov:2,"jewelery-related":1,"liquid-drug":1,pull:95,rush:44,rehabilitations:4,hairpieces:4,Rodriguez:2,"Property\\":1,Beheading:8,"eight-count":1,Caution:25,Berndt:2,OGURA:2,rust:25,Porche:2,gratuitous:1,"DPX\\":2,Pathe:2,Sultanate:2,AZT:2,Humanity:11,Real:459,Sarawak:2,ideally:6,Taff:2,Read:445,"half-completed":1,COMPLETED:16,"T.D.":2,Rear:1,Theran:2,hydraulics:91,"anti-idiotypes":4,environing:8,Kildare:2,Khivrich:2,Rempsberger:2,"electronic-measuring":1,"Conn.-based":1,Comeau:2,Correlations:4,dyed:17,Hardware:11,Cardillo:2,Bias:2,Pitch:169,dyes:4,valves:4,"added-value":1,Fit:1,"population-control":1,Fix:39,landlocked:1,Fio:2,Fil:2,Schaefer:2,whitely:6,Rendell:2,Waterbury:2,"domestic-made":1,midwest:51,Zwiren:2,Capricorn:2,tombs:4,checkin:8,Mignott:2,Ancistrodon:2,"problem-solving":3,Nagin:2,"mind-numbing":1,rootless:1,"quasi-governmental":1,Maxtor:2,shenanigans:4,Anabaptists:65,"sixty-five-mile":1,small:1,USED:16,Peace:11,healed:54,past:702,Terminating:8,displays:18,pass:95,Reyes:2,McCarty:2,investment:22,quicken:39,fertilizations:4,clock:78,corked:1,colonists:4,subspaces:4,full:97,Critically:6,Bourses:2,Charlie:2,diapers:4,Digby:2,"a-Includes":20,Roeck:2,civilians:4,ventilated:112,"elementary-school":1,Justino:2,Justine:2,solvating:8,experience:24,anthropologists:4,"single-lot":1,countin:21,Mannesmann:11,faculties:4,"tax-free":1,followed:703,Richmond:11,Annisberg:2,Gigenza:2,literary:3,Conlow:2,enliven:33,Alsagoray:2,Wexler:2,Friedrichs:2,unrecognizable:1,Conlon:2,"tissue-transplant":1,Meana:2,Teknowledge:2,door:163,Flannagans:111,"anti-choice":1,"one-sided":1,tested:45,jealousies:4,Celica:2,nonviolent:1,doom:25,Agitato:2,Chad:2,anxieties:4,applelike:1,centrifugal:1,Bondi:2,Newitt:2,wimp:25,diabetic:3,generalists:4,memoirs:4,Varga:2,"Seventy-nine":1,concordant:1,sequins:4,respective:1,ANDERSEN:2,Vining:2,cosily:6,enlargd:17,enlarge:39,ONEIDA:2,Succeed:2,creeks:4,implicitly:6,sprinkle:182,lanky:1,Emil:2,"Closed-end":1,sympathize:149,"Bio-Trends":2,Medfield:2,mended:17,CATFISH:4,GOULD:2,Maccaquano:2,"low-margin":1,Silently:6,Statistically:6,waked:32,abrasives:4,Dobson:2,Senorita:2,Woonsocket:2,RTRSY:2,"expense-reducing":1,overcooked:17,Trailing:8,Bridgetown:2,replied:32,rocketed:32,Pinpoint:2,Nervous:1,Nishizuka:2,"wide-ranging":1,resorts:18,DKB:2,Fagenson:2,replies:72,"Chem-Con":2,smiling:5,roots:4,"state-run":1,Plenitude:2,Lizzie:2,revalued:17,Pualani:2,hounds:4,symptoms:4,plotters:4,shuddering:30,"one-color":1,"in-jokes":4,wined:16,Menfolk:4,focussed:54,unstated:1,dull:1,Elektronik:2,busied:16,Medlin:2,Banker:2,weeds:4,"Kennedy-wordsmith":2,"self-insured":7,Duy:2,Alastair:2,directionless:1,Benda:2,reactions:4,brunette:3,"Phoenix-based":66,scotched:16,advertisers:4,inquired:32,Nitto:2,Weldon:2,Mazzorana:2,denotes:20,Wackers:28,"slowly-mending":1,Stjernsward:2,denoted:54,mineworkers:4,"Prof.":2,warm:82,Builder:11,Brookland:2,abnormally:6,Cartoons:4,ATARI:2,Serious:66,McCain:2,bodyworkers:4,plowing:55,pairs:4,Panza:2,Fleischman:2,verandas:4,multihulled:17,existential:1,Economist:11,Reluctant:1,Fra:2,purport:33,Fri:2,despatched:16,brutally:6,Curtiss:2,Pareo:2,Fry:39,wardrobes:4,Personality:2,Byrne:2,Abramowitz:2,cradles:4,moderately:6,hallowed:1,"formula-based":1,bedridden:1,Clericis:2,cradled:17,justly:6,Illeman:2,Rolette:2,interviewed:54,gaiters:4,repurchases:4,FRANKFURT:2,Puette:2,Mademoiselle:2,Recounting:8,Kleiner:2,condolences:4,Eubanks:2,"fertility-control":1,charges:18,"family-oriented":1,navigators:4,Rosenblum:2,surrealist:1,Interwoven:1,waft:39,Achenbaum:2,Snuggle:2,Food:11,Brace:128,Orchester:2,Blackmun:2,Krogers:28,also:675,Haavelmo:2,Foot:11,"Chiat\\/Day\\/Mojo":2,CALLED:32,"counter-measures":4,departmental:1,Grais:2,PLUNGED:16,Lilly:305,balkanized:1,Eurofima:2,Grain:11,Grail:2,Friede:2,trills:4,ticketing:8,Haliburton:2,deviations:4,Capitol:11,"Anne-Marie":2,sometimes:6,barred:54,"self-financed":1,barren:1,Portfolio:11,barrel:25,Relatively:6,Nagorski:2,bulletin:25,"Anhalt-Bernburg":2,"American-built":1,Hal:2,Ham:2,Han:2,"H.T.":2,Had:493,bookings:4,Hay:11,Merciful:1,Hap:2,baneful:1,Has:109,Hat:2,"Pa.-based":1,Haw:106,access:25,Bulgarian:66,Cellar:2,Dunn:2,neophytes:4,Dauster:2,Dung:2,snobbish:1,calibers:4,"broker-dealers":4,atheistic:1,McLemore:2,Viande:2,Cowbird:2,sunny:1,trek:44,BACK:6,"non-insurance":3,plasters:4,Dimes:2,devoured:54,adapts:20,bytes:4,INCOME:47,approximations:4,Amalgamated:2,delicately:6,Glacier:2,Grolier:2,Fiori:2,overboard:6,Fiore:2,shower:44,"free-falling":1,unrealized:1,sulfurous:1,Cuomo:2,"Perkin-Elmer":2,AGREED:16,"Panama-incorporated":1,"Thatcher-style":1,Erikson:2,Hostile:1,AZTR:2,"bull-like":1,Tustin:2,untouched:1,Hollinger:2,Sewer:2,Shionogi:2,Non:64,last:162,"R-5th":1,"door-fronted":17,"eight-month-old":1,lash:95,McEnaney:2,acted:32,Oresteia:2,aforethought:3,sinuous:1,Greeniaus:2,"S.P.":2,Woonasquatucket:2,"Wyeth-Ayerst":2,Appointment:47,originators:4,lucrative:1,Automobile:11,"decades-old":1,patrolled:54,combatants:4,periwinkles:4,"ozone-safe":1,infect:39,Siecles:28,diffusely:6,Prompt:40,Michel:2,Icahns:2,exponential:1,Meinders:2,caged:17,Neste:2,expanded:45,empirical:1,Reverdy:2,presentational:1,cagey:1,Margins:123,cages:4,trinkets:4,Vizeversa:2,von:2,waivered:17,motors:4,"tell-tale":3,vos:64,"savings-and-loan":3,"tight-fisted":1,Disgusted:17,Keffer:2,"eventshah-leh":6,Wisner:2,"Gen-Probe":2,flooded:54,Entrepreneurs:4,"first-order":1,Pakistanis:28,Chorus:2,Heinze:2,Benetton:2,ringsiders:4,"guerrilla-held":1,Minns:2,Karp:2,Kary:2,delisting:21,honor:24,Kara:2,Names:57,Kare:2,Karo:2,Karl:40,dieting:21,Neodata:2,Unimpressed:1,crackled:16,Amtran:2,Milne:2,crackles:20,cuffs:4,"Non-cosmetic":1,"anti-intellectual":1,overcurious:1,resemblances:4,Lockman:2,Marino:2,Tackle:2,Marine:129,cordon:147,PROSPECTS:4,Multimedia:2,"poor-white-trash":1,emergency:22,McAlpine:2,Bellingham:2,abound:149,Lerman:2,Margery:2,Petrolane:2,marques:4,individuals:4,Wiesbaden:2,tribes:4,ExPe:2,velocities:4,methods:4,goddamn:704,necessaries:4,Bourse:87,methode:2,Norristown:2,Confidential:2,measurements:4,benefit:44,Nyack:2,Ravenswood:2,Heublein:2,SIERRA:2,"Deloitte-Touche":2,Antigone:2,inserting:8,chrysanthemums:4,obscures:20,"LATE-BREAKING":1,Congressmen:57,obscured:81,Havilland:2,Sugary:1,"bad-smelling":1,deserved:32,epochal:1,Quivar:2,Sugars:28,wrinkles:4,Levki:2,Prescience:2,excised:32,wrinkled:103,"torch-lit":1,"eight-person":1,"Globe-Democrat":2,Keizaikai:2,"Debt-Burdened":1,Zola:2,readable:1,Shay:2,prodigious:1,"Well-wishers":4,Altair:2,Balch:2,Shad:2,HFC:2,Shan:2,enthusiasms:4,Used:14,span:44,harnessed:17,"specialty-retail":1,Brunsdon:2,sock:25,Feds:28,prowling:8,spas:4,Sabras:4,Counties:111,considerably:6,"hot-cereals":4,Congresswoman:2,"data-storage":3,deductions:4,Keynotes:4,hyping:55,"Sha.":2,considerable:1,nonrecourse:1,fades:18,Afanasyev:2,inhumane:1,Dolphin:2,Elegant:2,preemptive:1,Yemelyanenko:2,"mortgage-securities":1,positivism:22,WWOR:2,Iguana:2,introjects:4,Sofia:2,Malkovich:2,unsafe:1,char:39,diverse:1,chat:24,surveying:537,Sierra:2,shiningly:6,Nast:2,Phillies:74,conceptions:4,hove:16,Arthurian:1,Gurion:2,Skelton:2,Smokey:2,Julius:2,Rutstein:2,"long-lasting":1,Nakasone:2,"BIA-COR":2,"Indiana-Ohio":2,land:24,lana:64,Gawdamighty:106,electroplated:17,Leipzig:11,Rheinstahl:2,Winnipesaukee:2,Radar:2,"Chicago-Helsinki":2,Secaucus:2,Jif:2,modernizing:55,dawning:55,toted:17,Jin:2,railbirds:4,broaden:42,Jim:2,broader:12,amiss:1,Pesticides:4,Biogen:2,Notice:169,Garson:2,Symptomatic:1,Youngest:705,rejoined:32,contours:4,expeditious:1,resources:4,"pinkish-white":1,quadruples:20,dissents:4,petitions:18,quadrupled:54,Wakes:2,harbor:44,ICCO:2,whooping:13,funneling:8,Sabbath:2,damning:8,JACUZZI:2,"world-class":1,"twice-yearly":1,Spending:21,Richelieu:2,Mathematically:6,Broadcasts:4,croon:39,Wellsley:2,"drought-related":1,Campaigne:2,Schmedel:2,Tauke:2,"industry-standard":1,henceforth:6,advantageously:6,"much-coveted":1,Freedom:11,Dupont:2,Dierker:2,Orfeo:2,TECHNOLOGY:11,"Greek-Americans":28,keddah:64,Trumbull:2,unwittingly:6,Zaporogian:2,KV:11,survey:44,thatt:127,NRLDA:2,"A.G.":2,steamers:4,Greenwich:2,INSTITUTE:2,Feuchtwanger:2,lymphocytic:1,dumbest:51,Paster:2,Kleinman:2,Maiorana:2,"virus-boosting":1,Lamberth:2,Mandresh:2,Cadwell:2,"L.T.":2,Wedding:47,binges:4,Suspected:14,nonpolitical:1,"By-Products":2,baby:235,Reactors:2,housebreakers:4,enzymatic:1,"attention...":102,"twenty-dollar":1,clients:4,Hideaki:2,"five-month":1,"back-dating":8,Offenses:4,hauls:18,FRAUDS:4,process:24,lock:50,loco:64,Hetman:2,Lender:2,"bond-underwriting":1,nears:72,uncompensated:1,engagingly:6,Agricole:2,"all-American":1,educational:1,Agricola:2,paled:706,Eldred:2,Millicent:2,procured:54,Nuggets:28,bilingual:1,hormones:4,Friends:92,pales:72,Nathan:2,"recorders.":4,summonses:4,"a-gracious":1,terrors:4,Retardation:2,"Brest-Silevniov":2,Gospel:2,Tinsman:2,"Owens-Ilinois":2,Marlowe:2,realized:85,regains:20,Sitco:2,Sanwa:2,"Oct.":11,"Moet-Hennessy":2,realizes:20,pungently:6,presuppose:33,"Good-by":106,"thrift-holding":1,holds:72,folksongs:4,mute:82,"roll-call":3,Committeeman:2,directs:20,"Campbell-Mithun":2,Ads:4,perfect:1,broiling:8,Scientific:40,Kodaks:28,varies:20,Brooks:2,Cabinet:11,meantime:163,thieves:4,Brooke:2,hijackers:4,morgen:64,vicariously:6,"Courter...":102,Hungry:1,astronomically:6,caucuses:4,realize:42,Purnick:2,"blown-up":17,autistic:1,ruefully:6,Caronia:2,Emmanuel:2,sneezed:32,electrically:6,"All-You-Can-Eat":2,Talmo:2,glasses:4,Friedmann:2,suitors:4,RIVALRIES:4,Organisation:2,bump:182,Aniseikonic:1,Chehel:2,Carbondale:2,Vermonters:28,Viren:2,fundamentally:6,Welborn:2,Bassis:28,"M.S.":2,bicameral:1,"anti-AIDS":1,Dirvin:2,unprepared:1,highs:4,Karene:2,"news-weeklies":4,Emery:2,Expecting:8,disintegrating:8,Dives:4,Passing:541,"once-a-month":1,dejeuners:64,mainland:22,transferable:1,Jesus:395,chilly:1,Manufactured:1,chills:18,"Aubr.":2,untested:1,whiners:4,Gosheim:2,"Fourth-of-July":2,Forecast:11,Coombs:2,Krispies:28,starker:12,NZI:2,Ries:2,Iraj:2,Iran:2,"cinder-block":1,Lengwin:2,Doosan:2,backdoor:1,SHAKE:39,Iraq:2,denominators:4,pervasive:1,Firearms:74,burglarized:17,laymen:4,pressurized:17,Barletta:2,recurrences:4,Waycross:2,Veryfine:2,Hastings:2,"seed-capital":1,egregious:1,"big-fee":1,gentile:22,Goupil:2,Parella:2,"student-test":1,"U.S.-supplied":1,"one-country":1,Bolingbroke:2,seethes:20,Finsbury:2,Jeeps:4,Rowe:2,ponders:20,dishes:18,prevayle:39,uncalled:1,Fluor:2,Gazinosu:2,"Bay-area":1,"Jeep\\":2,worldwide:97,Pierce:59,khan:64,Gumkowski:2,"essential...":102,Samaritan:2,"Ob-Irtysh":2,Fritzsche:2,petals:4,scabrous:1,Feliciano:2,"Clinico-pathologic":2,Gaskin:2,Reserve:2,"Bio-Dynamic":2,bleaker:12,Balsbaugh:2,"program-trading":3,perceiving:8,bartenders:4,woolworkers:4,Tender:47,Tussle:2,rainbows:4,woolly:1,"employee-benefit":3,"titian-haired":1,nominally:6,Pennington:2,Chromspun:2,Walton:2,bombings:4,Ultramar:2,jai:64,untellable:1,Nightline:11,Okies:2,Dryden:2,"WARNER-LAMBERT":2,"sports-related":1,Bonhoffer:2,symbols:4,determinants:4,wynne:39,BLAME:39,"lower-middle":1,rapped:32,exude:33,Brochures:4,strengthened:81,Heller:2,"tax-shelter":3,Pt:2,faier:6,differentials:4,Pa:2,Adoption:47,Pe:2,"glass-bottom":1,Pi:47,Po:2,PR:11,Consitutional:1,Rheims:2,insulting:13,Iwo:2,"self-taught":1,PX:2,Aloys:2,thermonuclear:1,"P\\":2,PC:47,PA:2,PF:2,Dyna:2,truncheons:4,Jackman:2,Vastly:6,perennials:4,"high-topped":1,Kitchen:11,Harty:2,Hartz:2,Hartt:2,Domesday:2,Kimbolton:2,FACES:20,"P.":11,"factory-jobs":4,Widowers:4,Istiqlal:2,perfidious:1,Clearwater:2,Cows:4,unearthing:8,Barbie:2,roughed:16,Gooding:2,Featherston:2,Bayou:2,Moderate:1,undergraduate:117,rougher:12,"CR103":2,"door-to-door":3,debs:4,Sophisticated:1,"DJS\\/Inverness":11,Istat:2,">":287,sheepish:1,valuations:4,swarmed:32,Tohmatsu:2,McKeown:2,Gossnab:2,Epiphany:2,shiftless:1,Sturges:2,purposively:6,BELEAGUERED:1,lecherous:1,"eraser-fitted":1,Number:47,Quiksilver:2,"U.S.-developed":1,Battle:11,deductible:1,fielding:21,Schopenhauer:2,stuffing:55,Likening:8,playgrounds:4,bioequivalent:1,Pipes:2,Piper:2,"until...":102,agonizes:20,Fuel:11,Adequate:1,merest:51,"H&M":2,"Nineteen-sixty":2,Donbas:2,complemented:16,Diplomatic:1,unsympathetic:1,sunshades:4,colts:4,Lai:2,audit:25,Joking:8,shotgun:22,patterns:4,Colombo:2,Artists:41,diversify:39,audio:3,"north-south":1,"bankruptcy-proceedings":4,"corporate-wide":1,Kekisheva:2,"well-financed":1,slitters:4,zotls:4,clocks:18,floes:4,BCI:2,web:22,Specthrie:2,wee:482,hauntingly:6,Contacted:17,wei:4,GTI:2,undulating:1,"fly-dotted":1,Taco:2,villagers:4,"PC9801LX5C":2,Garn:2,Ninomiya:2,Nipponese:1,biologists:4,archeological:1,Stalone:2,Spendthrift:2,tick:63,peeked:16,pies:4,DesRosiers:2,Sopsaisana:2,Pirates:74,"Ethel-Jane":2,DuPont:2,vistors:4,undid:16,flickering:8,"now-notorious":1,teratologies:4,FIRM:47,breakables:4,Ladenburg:2,actuarial:1,Rojo:2,immortal:1,"VO5":2,scatters:20,choosing:55,flush:162,Hutchison:2,Meridian:2,"Christmas-time":1,contested:81,"B.C.":707,"just-in-time":1,Recurring:8,mementos:4,sayonara:64,Elshtain:2,"e-Estimated":17,Gruntal:2,nonsmokers:4,"freeze-out":3,Hemweg:2,pressure:44,wields:20,SABLE:2,"Christian-Democratic":2,infiltrating:8,SPECIALIZED:1,coldly:6,illegalities:4,VOA:2,outshines:20,Viruses:4,Trinkaus:2,Diery:2,documentary:22,Margeotes:113,Glazier:2,Greenville:2,Schreyer:2,Sofitel:2,Mood:2,Sacremento:2,riflemen:4,indoctrinated:17,boites:4,bagged:187,Balafrej:2,yarns:4,stonelike:1,Contract:11,Winzer:2,Cooke:2,"one-week-old":1,"nation-wide":1,places:18,"Marxist-leaning":2,placed:54,gloated:16,"Bank-Texas":2,Executive:11,Berkshire:2,nurses:4,"is...":102,Cassa:2,hearers:4,reciprocates:20,Darwin:2,nursed:16,effected:54,"CFM56-56s":4,Fate:11,deadly:97,Critic:2,lately:6,Fats:113,compares:72,behold:39,"Well-intentioned":1,February:2,repeat:551,Inheriting:8,Ineffective:1,multinationals:4,repeal:25,turboprops:4,searches:18,"Odd-year":1,misconstructions:4,perpendicularly:6,searched:32,gardens:18,"c-Excludes":39,Deauville:2,Ericson:2,Lippmann:2,NYU:2,McClure:2,BOTTLED:17,Berkshires:113,rekindle:39,nervously:6,Mondry:2,Ruhnau:2,"stomach-churning":1,Babbitt:2,Sanraku:2,Tokyu:2,manhandled:17,sexualized:1,STRIP:39,Guerneville:2,militantly:6,Dignity:11,amorous:1,"two-inches":4,Enterprise:144,Musique:2,Military:40,"money-fed":1,succumbing:8,"three-month-old":1,Yearly:40,Stringing:8,exaggerate:42,compassionately:6,"Mutual-fund":3,harrowed:17,"Merleau-Ponty":2,notifying:8,miuchi:64,abolishing:8,MANEUVERS:4,Whoopee:235,Killory:2,ATLANTIC:2,Schachter:2,"Dodd-type":2,Moos:2,"Y-MP8-232":2,Avery:2,"beer-cooling":8,Game:47,unfelt:1,personifies:20,Chairperson:2,multifamily:97,Gorman:2,residual:3,redeploy:39,personified:54,"cold-cereal":1,Nonresidential:1,KKR:2,"issues...":102,KKK:2,Spruce:2,postponed:81,Riklis:2,shrimpers:4,cloistered:1,inflicting:8,Lampoon:2,"now-scuttled":1,socioeconomic:1,Crisco:2,plot:44,Seymour:2,coins:4,bundles:4,"value-orientations":4,plod:39,"week-one":1,galbula:64,bundled:17,abusing:8,Breeden:2,toppling:8,wavy:1,Directorate:11,Chronicles:113,separates:20,Breeder:2,blocking:5,Swept:17,Headed:17,"U.S.-German":1,"still...":102,"total-cost":1,Substantial:1,Initiative:2,Madrid:2,Afield:2,Sammi:2,"one-arm":1,Montenegrin:2,indicated:85,flunk:33,flung:32,Ralph:2,agriculturally:6,impair:63,indicates:20,wholesaling:55,Honeywell:2,befuddling:30,"university-funded":1,"six-figure":1,inhabitants:4,"US-Travel":2,vehicular:1,"isolation...":102,recovers:20,"co-wrote":16,Hindemith:47,"hundred-yen":1,evolutionists:4,Cryptic:1,arcs:4,pollinating:8,customs:4,"run-of-the-mine":1,arch:78,foundering:30,complacent:1,elusive:1,alienate:39,appreciate:42,Delegation:2,rogue:1,Fannie:2,Globocnik:2,derided:32,"droopy-eyed":1,Hackel:2,priming:55,FARMERS:4,Eward:2,Drew:708,Dioxins:4,Orthodontic:1,Argentinian:1,Banda:2,Dred:2,"well-connected":1,choicest:51,Consequences:4,jerking:8,safe:3,squadrons:4,sack:25,"coal-like":1,lifelong:1,Candela:2,"Sunday-school":1,"Twenty-six":1,eventualities:4,Saunders:2,Beairsto:2,l:19,"store-name":1,dingy:1,Lapides:2,flyers:4,Substituting:8,"soon-to-be-sold":1,"financial-crimes":4,Budapest:192,"publishing-group":1,"I-5":2,maniacs:4,"contracted-for":1,Clerk:2,"living-benefits":1,Oneok:2,Downtown:47,Cereal:47,engrave:39,Meyer:2,Trivest:2,commerical:1,colorless:1,Galloway:2,leftovers:4,Ahah:106,Sardanapalus:2,dashing:30,detecting:55,Hirudo:64,"bobbin-to-cone":1,"either-or":1,Correctional:2,"I-E":2,"Big-bucks":1,Metric:2,Perken:2,AMERICAN:2,footsteps:4,"newly-plowed":1,"high-interestrate":1,champs:4,"once-faltering":1,Bobbsey:2,synonymous:1,doling:8,disembark:33,electronic:1,Suchocki:2,Portia:2,pardonable:1,explosives:4,approximately:218,"Exchange-sponsored":1,Kenzo:2,chanted:32,Markham:2,Dodington:2,wastes:18,Mankiewicz:2,"hard-currency":22,fluently:6,wasted:45,Rosenstein:2,Backup:1,Masahiko:2,policymaking:1,ColoradoUte:2,askance:6,CENTRUST:2,Arteries:19,"Un-American":2,temporize:39,portraits:4,Cray:2,Crab:2,Maestro:11,Mazowiecki:2,Oshkosh:2,Kadonada:2,Eurocrats:123,fraternized:16,Victorians:57,"off-shore":1,Gallery:11,Flashdance:11,maquiladoras:296,culminated:32,disembarking:8,unsurmountable:1,Artist:11,germane:1,Lucy:2,assesses:20,Luce:2,Columnist:2,culminates:20,scripts:4,assessed:54,Luci:2,grave:3,Luck:11,topple:39,conjures:20,Arshinkoff:2,"heartstring-plucking":1,Elanco:2,"non-gasoline":1,PAP:2,Ridge:2,PAY:25,Ripples:4,PAC:11,disturbs:20,Katsuya:2,papillary:1,spuds:4,intergovernmental:1,PAN:2,Santiago:2,panned:54,Stravinsky:2,throttling:8,gutsy:1,Englishmen:123,marketings:4,Ostrander:2,Ranney:2,rotated:54,Herzlinger:2,"Board-listed":1,Gauchos:4,vividly:6,Loud:66,Ageny:2,stalwarts:4,tartly:6,overrule:39,Observing:8,Marckesano:2,Agent:2,LaSalle:2,Maurits:2,scrubbed:54,Gorbachev:2,Atwells:2,electrostatic:1,Lascar:2,optimum:3,Malawi:2,techniques:4,"BVI-based":1,"intermediate-term":1,away:709,Bricker:2,Repeated:14,bracing:55,arcane:1,"increase-results":4,Decide:39,Schweizerische:2,Philosophic:1,superstores:4,shields:4,disavowed:16,Pfiefer:2,Rede:2,Shaped:1,Shapes:4,travellers:4,Slutsky:2,Cupertino:2,abstracts:4,Offer:95,"red-blooded":1,fermentation:3,MOB:2,Abie:2,disappears:20,"publicity-seeking":1,McCammon:2,Odell:2,"Drive-in":2,whistles:4,unchangedat:1,Katangan:1,mutations:4,TransmancheLink:2,Ireland:2,Universe:11,telecommunications:710,alia:64,Kerry:2,noes:4,"German-built":1,Heinzes:28,Dedication:47,Surely:6,oleanders:4,Schweppes:2,Raphaels:4,innoculated:17,superpowers:4,Kneale:2,attacked:54,"disaster-assistance":1,Eschewing:8,Casbah:2,collects:20,clairvoyant:1,Broward:2,Rufus:2,gracious:1,Heinz:2,"ex-presidents":4,orthorhombic:1,Lvovna:2,Hoot:2,Hook:2,"over-the-air":1,Ascii:2,Saloojee:2,Hood:11,cons:4,cont:17,Athens:2,"Snug-Grip":2,Convention:11,diagnostic:3,Athena:2,canvases:4,Bacardi:2,"one-room":1,Stop:260,adjectives:4,PAYMENTS:4,"family-entertainment":1,synce:127,Dines:2,Cedvet:2,hang:711,counterparts:4,Cadesi:2,liberties:4,Machiavelli:2,Salvation:11,Cirrus:2,Lepercq:2,Broiled:17,Bricklayers:28,Subcommittee:11,musical:3,pronouncements:4,"ultra-liberal":1,"four-member":1,traditions:4,Konopnicki:2,Cambodia:2,Enquirer:2,Ballistic:2,Negmegan:2,Albacore:2,Koito:2,electronically:6,"single-lane":1,Paata:2,tramples:20,Taxing:8,shout:95,righteous:1,"Odd-lot":1,insensitive:1,Restaurant:11,unmolested:1,unfounded:1,cantilevers:4,Fresno:11,cooler:515,Certain:66,immunosuppressive:1,homing:13,"computer-chip":22,Clerfayt:2,swingin:21,songful:1,Pinick:2,flatter:39,Inez:2,born:17,couture:64,hassle:25,flatten:39,pugnacious:1,bore:712,confusing:13,congratulate:149,matriculate:39,Booby:1,"deep-space":1,"house-painting":1,Cullinet:2,"Ohio-based":1,Karacan:2,asking:5,adorable:1,Gray:2,"field-crop-seeds":1,Meetings:4,peel:39,"earlier-than-expected":1,Medicale:2,Gras:2,Neal:2,peed:17,procure:39,Mementoes:4,Near:713,Neas:2,Mescalero:2,Gram:66,Asserts:20,peer:714,Grab:63,Grad:2,Graf:2,Junkholders:4,secretively:6,breaded:17,zooming:8,shared:81,vats:4,crouch:25,mailroom:22,Abdullah:2,Caja:2,Enemy:47,versions:4,Negroid:1,stumble:95,Pendergast:2,familiarize:39,connote:42,Managerial:1,Matanky:2,malformations:4,Schlang:2,"Money-making":1,needled:16,Halda:2,ceded:32,disembarked:16,observances:4,needles:4,Romanesque:1,Greville:2,Distinguished:2,"Catholic-Jewish":1,"bottom-living":1,Pritikin:2,maximum:3,apostles:4,coverings:4,faking:8,"all-Copland":1,prayed:32,hotlines:4,guesses:18,Manners:113,"boutique-lined":1,Cabot:2,guessed:32,Hillsboro:2,commences:20,Stuecker:2,"pressure...":102,Kabalevsky:2,Namely:6,senatorial:1,Falls:715,"Eighty-Four":2,Competent:1,Falla:2,enthuses:20,mulling:55,"labor-based":1,update:95,Trial:47,Stolzman:2,Triad:2,Harpers:2,Montgolfier:2,"mid-to-high":1,"snob-clannish":1,alertly:6,"paper-littered":1,Jess:2,Bertha:2,Blasphemers:4,grokked:32,tribunals:4,"Moines-based":1,"long-cruise":1,"million-dollar-plus":1,supplement:24,synapses:4,"p.m.":163,"Non-money":1,layers:4,contributing:30,Burl:2,visualizes:20,Buri:2,Auberge:2,Burk:2,Burt:11,dissatisfied:7,Burr:2,Bury:59,"So-called":66,Princes:65,Bekaa:2,Elaine:2,Artistic:1,airing:55,Cyrus:2,Christrian:2,unformed:1,visualized:32,Mencius:2,flammable:1,Bumbry:2,Mateo:2,Episcopal:40,Mater:2,Onleh:6,evades:20,biscotti:4,Kelman:2,plutocrats:4,verifiable:1,Feinman:2,Mevacor:2,agitate:33,cost:181,Maxhuette:2,Instant:66,Pretax:117,Salish:2,Lucite:2,"OK.":106,typesetters:4,thicker:299,fastigheter:64,"non-earning":1,Representing:8,cynically:6,"Five-Year":2,housebroken:1,"foreign-debt":22,socioeconomically:6,CUNA:2,"Near-Term":6,lolling:8,Corroborating:8,Breakey:2,"crash-wary":1,lustrous:1,Distribution:11,Corvette:2,"Israeli-occupied":1,"military-medical":1,bangs:18,Quakers:57,OKI:2,"York-SF":2,Dowager:2,"perhaps-decisive":1,CALFED:2,Bizerte:2,"Atlanta-Chicago":2,losing:5,"oil-services":1,"steam-generation":1,Lawmakers:57,"most-actives":51,Scopes:2,Customers:123,"higher-education":716,Dies:511,Diet:2,Dieu:64,wonderfully:6,"T.M.B.":2,Diem:2,symbolized:32,Died:717,intently:6,Amber:2,Watchers:111,"union-sponsored":1,Canelo:2,UFOs:4,"twenty-fifth":1,Sneaker:2,decked:17,fortified:45,purge:25,Awakening:2,HDTVs:4,Rondanini:2,totalled:32,Throughout:127,"mild-mannered":1,Sweeneys:111,fracturing:8,Showa:2,Pizzo:2,"word-processing":19,MEDUSA:2,"Warner-Lambert":2,occur:42,Pizza:2,Bishun:2,Brightman:2,giveaways:4,lounge:25,unrealistically:6,etymological:1,Burden:2,"jiu-jitsu":64,ROTC:2,Ensrud:2,strays:4,sedately:6,dampened:32,Heineken:2,ornery:1,disgusted:14,Skopbank:2,produce:95,Martin:2,Model:47,epaulets:4,"pre-festival":1,noses:4,wanderings:4,Isselbacher:2,nosed:16,Synar:2,"half-reformed":1,Manley:2,Sheep:443,Sheer:40,Industrials:130,Sheet:2,Biochemistry:2,freckles:4,raised:45,Tanin:64,Re:11,Pergolesi:2,Cassell:2,Industriale:2,affirms:20,Industriali:2,ENTERED:16,Bolivia:2,Rh:2,Sheen:2,RU:2,Enserch:2,incendiaries:4,"top-10":1,DELIGHT:33,resettling:8,supernaturalism:22,RA:2,"a.k.a":1,factual:1,emigrants:4,non:145,nod:44,Faber:2,introduce:42,Eureka:2,unplanned:1,not:6,"R.":2,now:718,nor:119,Stakes:113,Flygplanet:2,thankful:1,Geoffrie:2,"concerned``":133,cannibalistic:1,Skim:1,fishmongers:4,Agricultural:40,Skid:376,unloaded:81,consummated:54,Raiff:2,Ordinance:2,Engisch:2,Legal:40,wrap:182,polices:4,VIETNAM:2,Passed:17,Garth:2,Expected:231,naming:55,tried:85,Janlori:2,rude:1,bullish:1,parceled:17,furthermore:6,Vasa:2,Ephesus:11,"spaniel-like":1,Dearly:6,Vass:2,moldings:4,Constants:4,Arrested:17,Yen:2,"gum-chewing":1,Hemant:2,Constitutions:4,Macomber:2,"right-to-life":1,Jeffery:2,Kroger:2,Leyva:2,Harbour:2,"Fifty-ninth":2,blind:719,Verret:2,"light-water":1,Sprague:2,Soto:2,Simmel:2,Pandelli:2,blink:63,Till:127,Simmer:39,Expressing:8,ring:44,"six-hour":1,"national-service":3,Freston:2,"stock-pickers":4,Trygve:2,remotely:6,Lieutenant:11,suvivors:4,"gloom-and-doom":1,Response:11,authorized:212,larks:4,Feuer:2,sores:4,appreciates:20,repossess:39,Refining:11,Sovietskaya:2,"vocal\\":1,heretical:1,appreciated:45,titans:4,underwritten:185,relocating:8,Creator:11,Fegersheim:2,recruit:95,Scientifique:2,aerials:4,vocals:4,impinge:42,profuse:1,Saigon:11,overdosing:8,Accumaster:2,APPROVES:20,Chantilly:2,Shanken:2,"minivans.":4,Shanker:2,CALIFORNIA:2,Danville:2,Numeral:2,Faulkner:2,APPROVED:16,Commune:2,Giolito:2,"lesser-developed-country":1,Delegates:41,Wimsatt:2,Broun:2,"Time-Olivette":2,mendicant:1,polygynous:1,"Salerno-Sonnenberg":2,Unconfirmed:1,"spring-back":1,Off:720,Unlike:127,Nagel:2,neatly:6,"sports-and-entertainment":1,Kauffeld:2,Reprinted:17,"customer-service":3,attempting:8,steady:97,unconquerable:1,"Asian-owned":1,Cossack:2,Scrum:2,podiums:4,"book-lined":1,Horse:11,discovered:81,Chandross:2,"rate-watchers":4,Oversight:2,Sophocles:2,Dasher:2,Worse:721,Wichterle:2,"soup-to-nuts":1,ALCEE:2,staid:7,Worst:380,Solidarityled:2,stain:25,"cash-starved":1,shrill:1,interstate:3,Luther:2,"Pepsi-Cola":2,"dervish-like":1,vocalic:1,Hartsfield:2,REQUIRED:2,reprints:18,Gottschalk:2,"Ba-1":3,"Ba-2":10,Hambric:2,"Hall-Mills":2,"color-coding":8,Benzedrine:2,actively:6,charcoaled:17,recalcitrant:1,Byler:2,reproduced:54,suspects:72,"January-June":1,glaze:44,rollicking:1,"cotton-growing":1,Christiev:2,Renoir:40,overcerebral:1,Productions:111,Christies:2,import:44,"all-cargo":1,therapies:4,orchestrate:39,Wert:2,ENGRAPH:2,Hollingsworth:2,exhortations:4,"App.":2,"regulation-writing":1,"non-white":1,Team:11,moans:20,Konishi:2,duces:64,resides:20,resided:32,Scripps:2,impediments:4,sulky:3,Krishnaswami:2,jeans:4,Sachs:2,sulks:4,Interested:14,merriest:51,muttered:16,scrimping:8,hillsides:4,Personal:66,Doctors:57,Matsuda:2,impugn:39,disclosing:8,substations:4,Purification:47,suspected:45,Mangano:2,Pertamina:2,scarfing:8,Stimulating:8,myofibrillae:4,reimburseable:1,DeHaviland:2,Sportsman:2,blinkers:4,lire:504,Volzhsky:2,"fume-filled":1,"near-monopolies":4,implacable:1,Garin:2,"bid-to-cover":3,Cumberland:2,contrarians:4,sawdust:22,Dietzer:2,Hirano:2,raptures:4,"May\\":2,Mailer:2,"eight-page-a-minute":1,"ONE-DAY":1,"O.E.C.D.":2,pillowcases:4,Illick:2,"week-to-week":1,aground:6,Funari:2,foam:44,"boom-and-bust":1,Wragge:2,Businessmen:4,"CBS-Turner":2,Launched:17,Budweiser:2,"in-group":3,"space-defense":1,DeSoto:11,congressmen:4,alleviate:42,uninjured:1,"music-hall":3,SDI:2,"co-conspirators":4,Swaine:2,glitterati:4,SwedBank:2,Framatome:2,Might:190,cliffhanging:8,renewed:45,Solano:2,Showing:8,overruling:8,swim:95,psi:4,laundering:21,stunk:16,onscreen:6,Herter:2,Starts:72,gonne:17,Oersted:2,gonna:8,ramshackle:1,Mutchin:2,Soybeans:57,"rat-holes":4,"Near-term":1,Executions:4,feckless:1,BioSciences:74,Interruptions:4,apartments:4,envoys:4,semiannual:1,nucleic:1,Lederberg:2,"iron-casting":1,unlocked:112,Earlier:286,"Right-wing":1,Grippo:2,"passive-loss":1,indestructible:1,assemble:42,sadder:12,"iron-rod":1,creaking:55,casuals:4,closedowns:4,Lancret:2,conceals:20,LTCB:2,freeing:55,Kamemura:2,stare:644,Khustndinov:2,shags:20,Horwitz:2,stark:97,start:722,"public-school":3,stars:18,Zaffuto:2,allergic:1,"F-14s":4,smuggling:55,delayed:81,"Nineteenth-century":1,intermissions:4,manipulative:1,"two-thirds":723,machinelike:1,Dees:2,Original:40,traveled:85,"lock-outs":4,Xidex:2,"big-league":1,Secilia:2,Lightweight:1,"world-shattering":1,intents:4,Judah:2,"coral-colored":1,Granite:2,Ferdinand:2,Judas:2,evens:20,"Nos.":4,Cutter:2,Lante:2,Annex:2,Chun:2,appraising:8,trample:39,terminating:8,"general-staff":3,"Swedish-Swiss":66,Madeira:2,Lantz:2,forcing:8,ineligible:1,Entre:2,Minsk:2,Nations:724,"re-thought":1,dabble:39,Amish:40,Caliphobia:2,roasters:4,"plastic-bodied":1,moonlight:25,stockpile:25,"York-Moscow":2,prying:13,Letting:8,Nerien:2,semantic:1,Compression:47,"W.L.":2,bookers:4,Renaissance:11,"ultra-high-speed":1,pledged:32,"first-run":1,uncollaborated:1,insulate:42,pledges:18,Hillyard:2,resounding:1,Steidtmann:2,Crabtree:2,Buffets:4,DeBakey:2,STOPPED:17,"information-systems":152,begot:16,antagonised:17,"just-ended":1,ceaseless:1,Canary:2,Canard:2,throbbing:55,Lipowa:2,Krapels:2,Boatyards:4,"gut-wrenching":1,"dual-ladder":1,Simonson:2,Nuns:28,Readerman:2,enjoin:39,befriends:20,"foreign-stock":1,envisions:20,chuckle:44,ails:18,Kroll:2,investing:695,"sun-bleached":1,Paribas:46,Affirmatively:6,learned:626,Bartholf:2,Craving:8,Bioline:2,ferocious:1,Ifo:2,gridlocked:14,tracks:72,"fourth-generation":1,Nahas:2,eventful:1,carpetbaggers:4,losses:4,dykes:4,Interprovincial:2,TransNet:2,Gurtz:2,sealing:21,Joan:2,Joao:2,inflected:14,Castaneda:2,"SP-44002":725,requiring:8,"SP-44001":725,"SP-44006":725,Emmies:28,"SP-44005":725,"revenue-losing":1,"tender-offer":1,Jingsheng:2,Fines:2,Prothro:2,implanted:54,conventional:1,heartened:17,Chenoweth:2,Entenmann:2,Warden:2,Houk:2,"Neo-Classicism":2,lineups:4,conformational:1,Limits:111,fusses:20,grimly:6,outpatient:22,"two-time-losers":1,Perritt:2,"Three-month":1,"Technical-chart":1,DiLoreto:2,grill:44,Afterwards:6,drearier:68,"high-net-worth":1,"Hardwicke-Etter":2,Martian:40,"twenty-year":1,"defense-industry":3,"brain-wave":1,Publick:2,Tierney:2,Caspar:2,Coolidge:2,rejuvenate:39,Pileggi:2,"well-behaved":1,"spectator-type":1,Opening:55,utilize:42,unlucky:1,shrouds:20,"Pre-College":2,Bevo:2,Gabelman:2,Thielsch:2,diffuses:20,Darkling:2,Television:11,Reciprocal:2,Boehmer:2,maladjustments:4,CoreStates:74,Emirates:111,"non-romantic":1,Viacom:2,horizontal:3,misnamed:17,Ameron:2,MBI:2,"wind-swept":1,Flies:4,Mexico:2,UDC:2,Poster:2,Myrtle:2,McCaskill:2,remnants:4,Serenissimus:2,Midler:2,thermal:1,Weedon:2,"gray-haired":1,Petrochemical:2,wishful:1,Platonica:64,Phelan:11,territorial:3,Hypothesizing:8,systems:4,founders:4,Chong:2,Inada:2,"food-safety":3,Fearful:1,tumbles:72,electives:4,Siberian:1,Doron:2,permissible:3,Makato:2,watchdog:22,predators:4,purpling:8,lifestyles:4,predatory:1,barrels:4,ATTORNEY:2,Afghans:28,"Yuk-sui":2,Stockhausen:2,jaws:4,exasperated:1,Lapps:28,ALLWASTE:2,punitive:1,deride:33,Guillaume:2,nonvirulent:1,TESTS:4,Farina:2,splattered:17,Nikons:28,testify:42,Ainslie:2,coincidences:4,safety:25,inactivated:32,"Prudential-Bache":2,mittens:4,counterrevolutionary:3,None:47,"spelling-only":1,housed:54,favored:45,PROPOSALS:4,preventatives:4,houses:18,unsightly:1,brightest:51,overshadowing:8,unresolved:1,BL:2,"Fill-Or-Kill":2,millenarians:4,"racial-preference":22,ACTING:1,uncertainly:6,"Uniroyal-Goodrich":2,"pro-Socialist":1,Handel:2,decapitalize:33,"E.T.":2,Mennonites:28,incubated:17,warty:1,Bharat:2,warts:4,Autos:4,Brailsford:2,Youngsters:4,Ponoluu:2,Zombie:2,seafaring:1,Cynewulf:2,Emancipation:2,"South-Asian":2,APPB:2,quivered:16,Molotov:2,Fries:2,Purloined:2,consonant:3,Fried:2,tapestries:4,classifiers:4,Buffetts:111,gret:1,grew:32,Valleyfair:2,"Korn\\/Ferry":2,grey:3,"non-newspaper":1,Krystallographie:2,Cecil:2,Cecin:2,Bowker:2,Poulenc:2,LINCOLN:2,Peng:2,perestroika:147,Fortney:2,Penn:2,blissful:1,null:3,Penh:2,Fleeting:1,cave:25,Sheboygan:2,AjA:2,AjB:2,"options-related":1,"six-story":1,Lightfoot:2,aired:54,hires:72,Sewickley:2,multilingual:1,Anthropologists:4,bettered:16,Kisscorni:2,hired:81,reawaken:39,"Aj.":2,Iosola:2,Adamson:2,Crum:2,Satis:2,"direct-investment":1,raving:30,sturdy:1,Viewer:11,bedfast:1,Sayles:2,tongs:4,"part-time":97,electrons:4,Callahan:2,unwed:1,tubes:4,naively:6,Viewed:17,"one-eighth":22,Pythagoreans:28,"seven-hit":1,velvety:1,ringers:4,albums:4,distressing:1,Dorens:2,Redmond:2,Multiphastic:2,"get...":102,Dorena:2,Caravaggio:2,Norment:2,financing:122,Intercollegiate:2,Tillotson:2,"Gas-cooled":1,Eaton:2,"tear-jerkers":4,pretending:8,caseloads:4,remarketings:4,Maxima:2,"Nev.":2,"co-operate":25,Auntie:2,adhering:8,stored:54,Stott:2,"after-hours":726,buyings:4,Guides:56,andrenas:28,"management-consulting":1,Centronics:2,Schillinger:2,"hell-bound":1,Emma:2,termites:4,colonialists:4,"life-supporting":1,Messinger:2,pictures:18,Depletions:4,"round-bottom":1,pictured:54,perversities:4,Isabella:11,Butterworth:2,Isabelle:2,lange:64,Ohioan:2,spray:25,Zamiatin:2,"half-hearted":1,Tuskegee:2,"B.C.-based":1,Anchisi:2,kneeled:16,commoditize:39,Kochis:2,cashing:8,Disciplinary:2,Steve:2,Merits:4,forgotten:14,vault:25,experimental:1,Spacenet:2,"Irish-made":1,expendable:1,unfolded:32,recommending:8,Educator:2,"mist-like":1,"employee-ownership":3,"Grand-Clement":2,Bethel:2,Bethea:2,wifely:1,Coble:2,"ever-faster":1,Gingrich:2,Czechoslovaks:28,lived:345,Ballard:2,Angenics:2,Flashed:17,Broadcasting:321,Buchbinder:2,Pick:216,"safety-sensitive":1,Sumner:2,lutihaw:64,intriguing:13,Sotun:2,Garner:2,Agency:11,pace:44,smart:34,Lemanowicz:2,Renfro:2,comrades:4,mailrooms:4,guide:24,pack:44,smacked:16,costly:97,funded:45,wagering:21,Racism:47,"ground-glass":1,Slash:39,Eagles:74,payers:4,Esther:2,mulitiplier:1,Murdoch:2,Extraordinary:1,fabulations:4,energizing:8,Phyllis:2,Gaulle:2,impious:1,superfast:1,ratings:4,Scenes:4,Movies:113,"computer-controlled":1,Lagnado:2,multisided:1,Berlaymont:2,Oswego:2,NewsHour:2,"double-stage":1,"canned-mushroom":1,Grafton:2,romanticize:39,Living:727,exploits:18,powering:8,Cavallo:2,shivering:55,Cavalli:2,Tyler:2,Usery:2,RoadRailers:28,disseminate:39,Benzinger:2,excavators:4,Commodore:2,Krys:2,Visigoths:28,useless:1,brushed:112,Rimmer:2,Graphic:2,Dowty:2,Demodocus:2,"well-populated":1,wonderbars:4,"notched-stick":1,Hockaday:2,"M.B.A.s":41,Madeleine:2,diuretics:4,"debt-induced":1,vests:4,excluding:8,envisioned:32,Keynesian:1,Auxiliaries:111,Cogan:2,popular:1,Dunaway:2,Sarpsis:2,cones:4,Hyman:2,Unitrode:2,economic:1,Midwestern:10,Jesuits:28,AMs:4,Difficult:1,AMI:2,Grossinger:2,Dooling:2,SPRUCING:8,AMA:2,spouting:8,AMC:2,AMF:2,Tennessean:2,AMP:2,AMR:2,AMT:2,MassMutual:2,Epistles:28,Bila:2,anecdotes:4,Bill:11,equipotent:1,MacMillan:2,negatives:4,Homeric:40,Decliners:4,smothered:112,SCANDALS:4,Nouveaux:2,turret:22,Distant:1,Looks:20,"high-heeled":1,geosciences:4,Looky:39,Baron:2,hounding:8,Beauchamps:28,alpha:3,Discovering:8,RoadRailing:8,Gershwin:2,Boulder:2,supplicating:8,Diversey:2,approved:112,Nadine:2,spawning:8,eons:4,Tonal:1,"done-and":119,janitors:4,Tosca:2,Littell:2,shouldered:32,Tosco:2,Metatrace:2,Woodward:305,vacancies:4,Schnuck:2,Saadi:2,preparative:1,"Buber-think":728,Wylie:2,Blackmer:2,"reverse-reverse":1,Tu:2,Aviv:2,To:729,Barshop:2,Avis:2,Ti:2,"three-to-five-year":1,evocative:1,surmise:39,Cardizem:2,"Spanish-language":10,goddamit:106,TV:47,TW:2,TR:2,Default:2,TI:2,Versicherung:2,TD:2,TC:2,TA:2,Customer:47,venerable:3,"laboratory-supply":1,"T8":2,Pounds:4,Median:1,Crippling:66,"T.":144,Woodcliff:2,"labels.":4,Amazonian:1,Minutemen:28,Sparrows:2,earphones:4,e:47,Uzi:2,complicating:8,"animal-rights":93,Donations:4,underrated:17,imprecise:1,Yalobusha:2,Westburne:2,Boccone:2,OST:2,Barsuki:2,bioTechnology:2,"wall-paneling":1,Clasping:8,Scheduled:17,Biddle:2,commas:4,"sales-conscious":1,"J/NNP.A.":25,"optical-scanning":1,"re-establishing":30,Rekindled:17,Schedules:4,Sulphur:47,friendly:1,Stress:47,Penrose:2,wave:44,Risks:4,rattling:55,Deukmejian:2,Camry:2,Korbich:2,Acquisition:11,Risky:2,Charlotte:2,Hewett:2,Sago:2,compassionate:1,"near-synonyms":4,"self-starting":1,Tyco:2,Tuesdays:28,rationalizing:8,Index:11,Laughlin:2,Magnificent:1,SEAQ:2,Cameras:4,SEAT:2,redone:3,"pre-literate":1,Camera:11,muffs:4,parimutuels:4,sultans:4,Ishiguro:2,Raton:2,Disadvantages:4,pitilessly:6,Disadvantaged:2,Kristin:2,"Coors-Stroh":2,Copiague:2,"long-handled":1,Publisher:11,Locked:17,Airman:2,Blanched:17,Popes:28,Locker:2,Published:17,enterprising:1,Rosalco:2,"AZT-treated":1,convert:95,fAs:2,villages:4,Tells:20,Theodore:2,Greenleaf:2,comminge:8,Soapy:1,"diaper-changing":1,frictional:1,Grunfeld:2,Blake:2,Doctor:11,rakishly:6,Contributing:8,Enskilda:2,infest:39,"well-polished":1,handfuls:4,enterprisingly:6,Fields:46,Rapanelli:2,traditionalized:17,Disputes:2,devotedly:6,historically:6,"CARTER-WALLACE":2,formally:6,balsams:4,Roffman:2,charming:1,Kirkwood:2,Squibb:2,appointed:81,blithely:6,wearin:8,lapse:44,postmarked:17,ensconced:54,transmitted:81,Birmingham:2,Mapplethorpe:2,Circumstances:4,unveiled:85,"double-valued":1,"Brooklyn-born":1,Qantas:2,Lovell:2,Friedberg:2,Shipyards:74,"high-VAT":1,Lovely:2,corruptions:4,"Sinhalese.":1,Merchant:11,"Times-Picayune":2,Breeders:113,despairs:20,Quyne:2,asinine:1,unseated:249,"service-oriented":1,GRiD:2,Happened:32,Lionel:2,fare:24,Assisting:8,Tymnet:2,farm:25,Euroshuttle:2,aborigines:4,dalliances:4,aliquots:4,Micelli:2,alibis:4,Detroiters:4,indemnifying:8,computations:4,yrs:4,Nyberg:2,Ploys:4,Arrangements:4,"Inter-Canadian":2,Rothmans:2,Lusaka:2,PENCILS:4,Resisting:8,"Ruiz-Mateos":2,backbends:4,costume:22,temporal:3,Kayne:2,IOC:2,Torstar:2,Labouisse:2,Formica:2,instrumented:1,stout:1,Hettie:2,Venus:11,Hemenway:2,Respond:33,overcharges:4,miniwelfare:1,"pre-war":3,"spoon-feed":39,"ever-successful":1,Deslonde:2,brassieres:4,overcharged:54,"freedom-loving":1,Specter:11,chided:54,MERCHANTS:28,Random:40,Salins:2,vacuolated:17,citric:1,pursuits:4,collegial:1,investigative:1,refight:39,Breeding:2,Wick:2,Santry:2,maximizes:20,Loral:40,Microbilt:2,Loran:2,CEO:11,terming:8,"single-copy":1,"back-alley":1,cause:730,Troutman:2,abolitionists:4,contemporize:39,Involving:8,Syncor:2,galaxies:4,"R.D.":2,Fistoulari:2,cleansers:4,Darak:2,Corrections:46,evidential:1,Prevost:2,Rodgers:2,Noxema:2,"re-emphasise":39,Yurochka:2,Nicandra:2,Murasawa:2,galling:1,Eurovision:2,Recklessly:6,powerful:1,Fete:2,Liliputian:2,Snelling:2,Theoretical:66,Enzytech:2,"cash-and-stock":1,inasmuch:6,"three-digit":1,Favorable:1,Lydia:2,Dawkins:2,Vidunas:2,lists:18,chemicals:4,Rosenbach:2,liste:64,characterizations:4,"well-established":1,submitted:54,Auburn:47,succinctly:6,Zing:2,Mihaly:2,"R.T.":2,Benham:2,Oval:40,"acrylic-fiber":1,"eight-times":1,globalists:4,sweeteners:4,Abilene:2,horrors:4,Other:66,Editions:28,Sarasate:2,"similar-sized":1,Bastianini:2,interstates:4,Batman:2,relatives:4,"auto-emissions":4,"red-bellied":1,plowshares:4,Pueblo:2,duels:4,Photonics:2,"France-Presse":2,discos:4,imperilled:17,counterbalance:63,corrects:20,Centrex:2,Equalizer:2,Bertolotti:2,"food-processing":22,overhearing:8,Kanner:2,astonishing:1,"ear-splitting":1,constrain:39,Randi:2,redheads:4,underpins:20,telepathically:6,Rande:2,Randy:2,Gavrilov:2,Bonenfant:2,"marine-related":1,obsequious:1,lowlands:4,Hough:2,MacPhail:2,receptors:4,patristic:1,Czarina:2,achieve:42,"back-slapping":1,Nevermind:39,Schwemm:2,"popular-priced":1,plunking:8,"second-half":3,offsaddled:16,Allegra:2,Masterworks:28,trucks:18,Garamendi:2,Barnicle:2,directrices:4,Hwan:2,Allegro:87,FAILED:16,Palisades:74,golfs:4,Gravely:2,tunes:18,slimed:17,Kacy:2,embryonic:1,Nathanael:2,torts:4,Levina:2,Levine:2,Tesco:2,shrouded:54,Dieppe:2,operates:20,officials:4,reinforcements:4,operated:731,"all-employee":1,Wisconsin:11,MAPCO:2,intending:8,Alabamas:28,tend:149,Kingsbridge:2,tens:4,unshaved:1,"Full-time":1,Magnin:2,remitting:8,limbs:4,"laid-off":7,Telex:47,merry:1,"one-stop":1,unfired:17,Juras:2,Remarque:2,unstoppable:1,hits:18,sediments:4,Burgee:2,Arlene:2,Formosan:1,Burger:2,revitalized:32,Quebec:11,nontoxic:1,scabbed:17,autocrats:4,Delawares:4,Amoco:2,Pauleys:28,"U.S.C.":11,Avoids:20,Bockris:2,Jaap:2,ENTERS:20,thanked:32,Leukemia:2,Frills:2,outlaws:4,Groep:2,erases:20,Hephzibah:2,battlements:4,constitutes:20,"anti-pocketbook":1,Fulbright:2,"five-speed":1,exploiters:4,guerrillas:4,Courses:123,Whitrow:2,impress:182,smoking:21,reclassified:32,Blandon:2,Lifeguards:4,Bricks:4,queuing:8,Belasco:2,Kamchatka:2,Kaisha:2,mused:16,ratiocinating:1,"Shochiku-Fuji":2,"two-month":1,"Cortizone-5":2,Ashman:2,BENEFITS:4,shotshells:4,McShane:2,Cottrell:2,Flusser:2,tweezed:17,parts:4,wheel:78,"wrong-headed":1,divvying:8,Aluminum:129,"employee-stock":1,Failing:8,abounds:20,Rossides:2,"Non-God":106,scarcely:6,MacReady:2,Taizo:2,placating:8,Invacare:2,Durkin:2,drowns:20,Threshold:2,Androfski:2,Newsnight:2,advertises:20,Gaydon:2,Flower:2,Dionie:2,TOOK:2,Canadians:65,detail:25,Brookhaven:2,femme:64,"run-down":1,"pin-pointed":17,"MC88200":2,Yoichi:2,FACING:8,balloons:18,Nicolson:2,Hibben:2,"half-murmured":1,Limit:362,Nelson:2,bottoms:4,"HK$":84,Cookies:4,necessary:1,lost:112,Lights:92,Corrado:2,Penelope:2,gangsters:4,tipple:33,"Wilkes-Barre":2,Jasper:2,Shrewsbury:2,lose:42,"broad-scale":1,Milton:2,"CITIES\\/ABC":2,Garryowen:2,Asahipen:2,"going-home":1,Thunder:47,Mayan:1,home:486,EEG:2,leery:1,chroniclers:4,Bohemia:2,"anti-trust":1,pinpoint:182,overlay:78,steaming:8,broad:1,overlap:44,"non-dual":1,"Toronto-area":1,Bryant:2,octogenarian:1,Nureyev:2,Quilted:2,"real-world":1,hurls:20,Vereinsbank:2,Shakes:20,"non-lethal":1,naps:4,"Hastings-on-Hudson":2,Archaeology:2,cataracts:4,tonics:4,"M.C.":2,Cernuda:2,Mental:40,Boadicea:2,greening:261,Jorda:2,Conspiracy:2,Crosfield:2,"Medical-instrument":1,"KLUC-FM":2,Garibaldi:2,Communists:41,contending:8,fettered:17,previously:6,Papetti:2,Quickly:6,Internal:40,Conseil:2,Secular:1,PRATT:2,multivalve:1,"slow-motion":1,Daphne:2,Veraguas:2,north:277,"state-trading":1,rioted:16,triangular:1,fountains:4,blaming:8,Chamber:11,strawberries:4,oxygens:4,Oops:106,"lowest-rated":1,sprinkling:21,ordinances:4,minutely:6,Pagnol:2,Khrushchevs:28,"skill-dilution":1,Cheyennes:28,dismounting:8,display:24,urging:55,"I.Q.":11,diligently:6,universal:1,Nghe:2,Hatakeyama:2,Mustafa:2,functions:18,Northridge:2,Geneva:2,"Jr.":74,Aoyama:2,Never:690,Neveu:2,"Acid-washed":1,publicists:4,Peller:2,BEGAN:16,discorporated:17,star:70,Dual:1,Congregationalism:2,"half-mile":3,stay:95,stag:22,Braggadocio:2,additionally:6,"less-than-altruistic":1,"Ungermann-Bass":2,Embraer:2,Neilson:2,watercolors:4,"Hanover-Mauri":2,Refined:2,foreshadowing:8,sniveling:8,Corsica:2,aided:54,forgone:1,whoops:20,knelt:32,"single-step":1,"clean-up":3,perverted:81,aides:4,Kwong:2,Sabena:2,"SKr29":4,Cluck:2,DeFazio:2,Preferred:40,Kristallstrukturen:64,"car-buff":1,Chucas:2,Kinji:2,Thurgood:2,Authors:4,Merlo:2,Dougherty:2,fists:4,"light-wave":3,Identifying:8,"Harley-Davidson":2,Anglican:40,Pressed:17,Kuperberg:2,Shapiro:2,Shitts:2,epidemiologists:4,crops:18,Tepid:2,Almonds:4,irrationally:6,Colosseum:2,Raiders:41,McIntosh:2,likely:97,arrangers:4,subordinate:104,bureacratic:1,Tolek:2,"low-moisture":1,Arizona:2,polyelectrolytes:4,Culkin:2,Manzella:2,IgG:2,Parkhurst:2,"mutual-funds":4,Pomona:2,foodstuffs:4,Toler:2,upward:218,"low-ball":1,snared:17,Cuts:4,Irwin:2,Pennview:2,songbirds:4,provisioning:55,inheritable:1,reshuffle:25,Rizzuto:2,Engh:2,Rounded:1,Knudsen:2,bumps:18,Packaging:11,oozed:16,creasingly:6,Inorganic:1,Persico:2,intrigue:25,Either:732,Industries:41,fantastic:1,Gutwein:2,kinesthetic:1,McCay:2,EasyLink:2,guests:4,"god-like":1,tertiary:1,"head-on":277,"non-Humana":1,"high-velocity":1,Gramm:2,"Pro-choice":1,WHO:79,"Honolulu-based":1,"hand-screened":17,survive:42,WHX:2,WHY:293,"non-high":1,Catcher:11,highfalutin:1,Blasts:4,"Times-Stock":2,"female-dominated":1,Greasies:4,ostracized:17,Bienville:2,exploitative:1,"laid-back":1,Shipston:2,ELECTRIC:2,Kingsford:2,Hettinger:2,Corporation:11,Whereas:733,stressing:8,Globalization:11,isothermal:1,Watching:8,colds:4,Hawesville:2,amazing:1,adventurist:1,colde:190,undesirable:3,blanks:4,Lucas:2,Spinelli:2,vibratory:1,believers:4,arrearages:4,"Bargain-hunters":4,"single-engine":1,"Bank\\/Tidewater":2,egos:4,schoolchildren:237,Hargitay:2,Trianon:2,octogenaraians:4,Became:16,Kalinowski:2,goodbye:235,operate:42,athletes:4,wus:6,unnamed:1,Wrongdoers:4,Hetty:2,Newark:2,captions:4,Ordinary:66,wuh:33,before:245,Halstead:2,Hosaka:2,chatte:64,rescheduled:32,Chorney:2,Pate:2,Pati:64,Path:11,Exeter:2,Oyster:11,gunning:55,Computations:4,"ninth-largest":1,runny:1,downright:218,Hartnett:2,Kymberly:2,Syntex:2,soddenly:6,Semiconductors:111,arrested:54,Derr:2,enterteyned:16,lofts:4,"non-comparable":1,hawkers:4,"long-shelf-life":1,pepping:8,calmly:6,Shabbat:2,skins:4,Moulin:2,untrustworthy:1,FmHA:2,Shelagh:2,imperiling:8,Thereupon:6,"chart-room":1,redressed:17,Luncheon:2,Rue:164,lurks:20,Producers:92,"E-II":2,languish:39,housings:4,Econoclast:2,Anspach:2,Dodd:2,ascending:8,Dods:2,Brenham:2,Minpeco:2,Costaggini:2,Ripa:11,bioinsecticides:4,Ripe:2,Guideposts:111,Angrily:6,"or...":102,punctuated:17,Burlingame:2,"major-market":1,"triple-crown":1,chinked:17,"mass-produced":1,fictions:4,Handled:17,"non-lawyers":4,"fee-for-service":1,"once-mighty":1,"economy...":102,Handler:11,Handley:2,immensely:6,Gortonists:57,"crime-fighting":1,yuan:19,Haislip:2,hawks:18,Beech:2,Hanson:2,tufts:4,Desert:11,Checci:2,Cerf:2,Strongly:6,"urban-fringe":1,Scotian:2,foreclose:39,digs:72,Cerv:2,Pacify:39,"sober-faced":1,"space-age":1,requisite:1,unscented:17,Anterior:2,"data-gathering":1,Shepard:2,Bentham:2,evaporates:20,"non-alcoholic":1,knights:4,girlishly:6,evaporated:32,AUSTIN:2,Fads:4,abstracting:8,Alors:64,Glaze:39,reassert:39,"two-burner":1,floodlit:1,OPTIONS:4,"Anheuser-Busch":2,TEMPORARY:1,Nesbit:2,Holderlin:2,communicative:1,collectivizers:4,Cochran:2,fitting:261,Mugabe:2,tunnels:4,salubrious:1,"Medical-supply":1,"show-stoppers":4,Ivan:2,"two-lane":1,Hammerschmidt:2,overloud:1,breathes:20,"self-destructive":1,unadjusted:1,hamming:55,Ballets:113,Durrell:2,Nazism:2,Laszlo:2,annoyed:45,Bowne:2,Opponents:4,aquatic:1,brutalities:4,"food-packaging":1,"Hwa-Shan":2,Carmine:2,northeast:168,flatulent:1,"price-earnings":593,jailed:45,palliative:1,Havana:2,Campenhout:2,Mnouchkine:2,Leave:39,Satellites:4,"asset-allocation":3,MicroAge:2,earn:42,Honored:17,dicendi:64,Fokker:2,"metric-ton-per-year":1,stooges:4,monumental:1,winced:32,enchant:39,"pug-nosed":1,ears:4,humanly:6,Billboarding:2,diminutive:1,Stickney:2,roasted:81,alterations:4,unmurmuring:1,nontraditional:1,"inter-city":1,incorporating:13,unflatteringly:6,Bettner:2,Tool:11,woozy:1,artificial:3,Maronites:28,Toot:183,"Back-to-back":1,bloodstains:4,adjudged:17,Boettcher:2,"medium-grade":1,insinuated:16,wears:20,Lipshie:2,Usurpations:4,"search-and-examination":1,"hundreds-of-billions-of-yen":1,arrogating:8,insinuates:20,cuirassiers:4,suggested:112,Saturated:1,civilised:1,McDonald:128,wounding:8,jotted:1,"nothing-down":1,sweepers:4,Stevenses:28,Cassim:2,Gemina:2,presumably:6,Patagonians:28,Soldado:2,"air-charter":1,eulogized:16,Papal:1,Lorraine:2,lanterns:18,WCRS:2,Legally:6,Shinpan:2,tint:174,tins:4,Vocabulary:2,Ryne:2,Waters:2,yaks:4,patrolling:55,Lamos:2,tiny:1,Lamon:2,commission:25,"mid-Atlantic":1,detrimental:1,interest:24,basic:3,"Marxist-Leninist":66,Hibor:2,deeper:458,Saddle:2,dismiss:42,yellowing:8,shattering:30,tolled:17,MISUSE:2,deepen:39,downplay:39,stockpickers:4,Ohga:2,"commercial-switch":1,Centrale:2,affirm:42,"all-knowing":1,"toll-rate":1,courageously:6,"GM-Jaguar":66,unshed:1,pessimistic:1,settles:20,parastatals:4,"tax-haven":3,track:24,mauling:8,Chastened:17,Grevyles:2,ABBIE:2,lasses:4,museums:4,waging:8,"level-headed":1,"non-refundable":1,"V.":734,stickier:12,maryed:17,Dixieland:11,Catalyst:2,shoveling:8,"Bare-Faced":2,VA:2,bearded:103,Valued:17,VF:2,"tax-give-away":1,renaissance:47,VS:2,Values:41,VW:2,Va:2,"black-majority":1,inherit:42,Howorth:2,Coniston:11,Vt:2,Vu:2,TVwhich:2,"pro-independence":1,flops:72,investments:4,McMullan:2,Politburo:2,"well-diversified":1,yen:91,Muses:2,"year-old":1,yes:341,"five-and-dime":3,yet:691,Musee:2,nudge:63,"decade-old":1,Demetrius:2,royal:3,bantered:17,Giving:8,inefficiencies:4,translucent:1,save:735,trimming:55,Brinson:2,sapped:54,roosting:8,sailors:4,BAKER:2,Schulze:2,Farrow:2,Hatton:2,nationalists:4,KPMG:2,Overseas:294,coincide:42,Pollen:2,Discrepancies:4,"A.F.":2,"career-risking":1,chuffing:8,"game-winning":1,Orinoco:2,zombies:4,Immunex:2,Witness:216,"fur-lined":1,theorists:4,shuttles:18,somehow:736,elderly:3,platters:4,vaulted:16,"blacked-in":1,Noufou:2,Stalingr:2,uncoated:1,Kyzyl:2,noncumulative:1,Siege:2,"seized-property":1,runing:8,offcourse:1,Moliere:2,Rising:8,Vadim:2,epigenetic:1,Odilo:2,"four-color":1,"two-component":1,"end-of-season":1,"fire-crackers":4,digestible:1,inedible:1,"non-scientist":1,Simsbury:2,"near-maddened":1,barbarians:4,submarine:22,Pressing:8,Including:229,Swinging:8,nonstrikers:4,"double-bogeyed":16,Marley:2,Haskins:2,ores:4,thinner:515,anointing:8,Urien:2,Lehman:2,jetting:8,fumes:18,slurs:4,scalded:17,thinned:54,"non-cash":1,murderers:4,slipshod:1,Unless:124,NBS:2,flying:737,"voice-processing":1,"old-line":3,"Chinese-style":1,NBI:2,Backed:231,vacated:54,NBA:2,factions:4,"most-favored-nation":1,expectancies:4,"Pressure-happy":1,Konzerthaus:2,Gazdag:2,January:2,spike:25,GenCorp:2,avions:64,educations:4,unpadded:1,Masuda:2,assented:32,"B.D.":2,titters:4,Franke:2,prevents:20,caution:24,energize:39,Franks:28,Unilever:2,tollways:6,horrifying:1,average:255,"optical-storage":1,Sybert:2,spotlighted:17,"D-Mass.":2,Nuclear:40,erupts:20,"beautifully-tapered":1,wriggling:8,Masse:2,pimpled:1,Massa:2,tarnished:81,Gaza:2,muffins:4,unallocable:1,Highway:11,graft:25,bruinish:1,marking:55,bruising:13,"cents-a-unit":1,fosters:20,Klerk:2,Bimini:2,Tagliabue:2,"Sanger-Harris":2,pouted:16,roomier:12,braking:55,Drive:128,"cement-truck":1,journey:25,NEARLY:97,budded:16,"Mass.":2,Iroquois:2,Rothe:2,jacked:32,Lithell:2,Echoing:8,"cut-and-paste":39,Mendelson:2,Decisions:4,trembled:16,stripping:55,profits:18,Apalachicola:2,vermilion:3,Systeme:2,"five-game":1,Desmond:2,cattlemen:4,commentaries:4,Armisteads:28,disorders:4,unrelieved:1,Hosogane:2,"Atlas-Centaur":2,blasphemies:4,Danzig:2,advises:20,Grill:2,"trouble-free":1,defying:8,advised:45,unworn:1,Donaldson:2,Riben:2,swapping:55,"hang-ups":4,Smythe:2,Cortese:2,Distally:6,Potemkin:2,noiseless:1,round:738,Ribes:2,surgically:6,rhapsodizing:8,unexpected:1,Jacchia:2,Beefing:8,Jardine:2,"Ath.":2,Lags:20,Opus:2,Issuing:55,Niva:2,ravenous:1,circulars:4,Head:11,filles:64,Orion:2,"pound-DM":1,Wrote:16,Heat:47,deficiencies:4,Hear:39,Defensive:1,international:3,Piller:2,Forever:305,shutters:4,dwarf:24,Cooperman:2,Fingerprints:4,"high-protein":1,JCKC:2,Goodwills:28,wearily:6,exemplified:17,Lotus:11,fleetest:51,Railroads:41,jungles:4,exemplifies:20,redoubling:8,Glison:2,"two-foot":1,slackened:85,recounting:8,insolent:1,statewide:97,merely:6,Ossad:2,sweating:55,spiffing:1,"mid-1960s":4,Thrush:2,Beecham:2,lieutenants:4,visit:44,disaffiliated:1,Pietism:2,Novell:2,Endless:1,Comment:47,preserving:8,Solid:117,unequaled:1,"cancer-suppressors":4,Hayes:2,"lovelier-than-life":1,Hayek:2,Rebels:4,"real-estate-related":1,reelected:17,Cuatrecasas:2,premarital:1,Kappil:2,Improvements:113,making:55,Archive:2,nearest:739,Fundamentally:6,frescoes:4,flouting:21,greenest:51,Gulfstream:2,Yemens:28,frescoed:1,burgeoning:30,Tristan:164,overreacting:8,Arpanet:2,"two-dozen":1,"equipment-leasing":1,Row:11,Shoppsers:4,"bond-price":1,Raymon:2,Kreditanstalt:2,Milenoff:2,COOKE:2,Sexton:47,Succession:47,CERA:2,basked:16,Series:239,purify:42,Magazine:11,Carliner:2,"spray-dried":1,Kerby:2,HOPE:33,abuzz:1,nous:64,"non-call":1,"Medicare-catastrophic-care":1,shoes:4,backs:18,Nutcracker:11,COMPUTERS:123,Leshem:2,Mutual:40,underpriced:740,Olvey:2,Asra:2,petrochemicals:4,equip:42,observational:1,Balkanizing:8,group:44,monitor:182,interesting:1,Pancoast:2,Uniroyal:2,FADA:2,Muslims:111,FADE:33,Listerine:2,Hanlon:2,"Japanese-type":1,"INGERSOLL-RAND":2,Fanny:2,repriced:17,resignedly:6,"Washington-area":1,Kyle:2,"-ing":1,Jellyby:2,Vocational:40,"MIG-2":1,leopards:4,Appalled:1,rattles:20,handbills:4,withholdings:4,feverish:1,Bertoli:2,"thunder-purple":1,Purse:2,"AIB.PR":2,"wide-cut":1,Minimum:2,careless:1,Bertolt:2,Turnbull:2,Byzas:2,brews:72,Oczakov:2,Eritrea:2,Holdings:46,treacherous:1,"some...":102,conventions:4,Saviour:2,speculators:4,fingertips:4,worried:45,Keo:2,Pomham:2,Upham:2,Kel:2,Keg:2,Gauloises:74,"earlier-announced":1,condemns:20,Formation:2,Aires:2,Key:129,Luvs:28,Cefiro:2,brimming:8,Bloomingdale:2,"Pro-life":1,Commerce:11,"earthquake-triggered":1,furtively:6,"semi-autonomous":1,bringing:55,Baudelaire:2,Gorshin:2,Afternoon:106,intendants:4,attarcks:4,Baku:2,Installed:17,Gesell:2,funks:4,Huntington:2,Bake:59,Sherwin:2,remorseful:1,Epes:2,Humanities:2,tidying:8,nutritional:1,Inflationary:1,methodological:1,Demands:4,Jalalabad:2,Posey:2,PVC:2,"health-and-benefits":1,lambaste:42,fiery:1,"A[fj]":451,"Teen-agers":4,"foreign-led":1,meme:64,gaudy:1,Oberweis:2,Sauerteig:2,adjourned:32,allegedly:6,"lean-to":3,Deposits:57,LOOKING:8,Samurai:2,"straw-colored":1,remora:4,scraping:55,Hendersonville:2,centigrade:1,"Right-hander":1,strolls:20,Subsistencias:2,lick:39,Container:2,lice:4,entombed:17,Tight:1,Karnes:2,"pro-forma":64,initiatiors:4,recreated:17,"Pierre-Karl":2,vestments:4,Visitation:2,Murphy:2,Langley:2,recreates:20,Francophone:1,"store-front":1,bets:4,formulas:4,Thule:2,Dellwood:2,comings:4,Hatchet:2,Tristano:11,assault:78,bete:1,formulae:4,complaints:4,Dworkin:2,Hatched:17,proxies:4,spaced:14,queens:4,Beyond:124,radioactive:1,Littlepage:2,"multi-product":1,Favored:7,scowl:33,Dominguez:2,Coogan:2,"down-down":1,"watered-down":1,playoffs:4,newer:12,kwon:64,Delloye:2,Gabriela:2,Stephen:2,Condit:2,"Health-Chem":2,Fosdick:2,Across:124,reek:174,despairingly:6,stormy:1,reel:24,RIT:2,storms:4,"non-dramas":4,analytic:3,McKinzie:2,"Israeli-born":1,"ice-baggers":4,ostensible:1,RID:39,McGwire:11,sensitivities:4,Organizations:46,geocentric:1,Large:66,unimportant:1,"a.k.a.":1,Largo:2,blends:4,Triton:2,Gillian:2,biosynthesized:17,Striking:30,moodily:6,"supply-demand":3,rotationally:6,Straits:41,"long-bubbling":1,Education:11,audited:81,Shotwell:2,Visualize:39,Connoisseur:2,sensitives:4,Vital:3,eliminating:8,contains:20,Acrylic:2,"penny-stock":3,radiates:20,Itching:8,Socinianism:2,RECORDS:4,enough:277,radiated:112,"J.M.":741,approvals:4,Rescued:17,ascribed:54,"quarter-by-quarter":1,pharmacists:4,Havens:2,coupons:4,Equally:6,"self-confessed":1,guardians:4,Anfia:2,"half-conscious":1,pacified:16,Lantos:2,"Class-D":2,Pearl:2,pacifies:20,"Kohnstamm-negative":1,"specialty-material":1,ascribes:20,"gear-sets":4,Anthropology:2,euphemisms:4,Southwood:2,"Medicare-approved":1,tilts:20,Constance:2,attaching:8,"computer-oriented":1,judging:55,oxyhydroxides:4,Getulio:2,fiftieth:1,Millbrae:2,Romulo:2,Rothmeier:2,Pointe:2,oust:39,squash:163,laptops:4,Ackroyd:2,Points:28,Action:11,COME:17,Bamsi:2,sound:742,Ambulances:4,Allegretti:2,inadequacies:4,troopships:4,"abortion-funding":1,many:743,cancelled:17,slapping:5,nonlinguistic:1,Factors:123,Sudan:2,Lutz:2,"Antonio-based":1,Factory:47,dynamos:4,sleeping:537,strain:44,Chappaqua:2,releases:18,Monticciolo:2,primitives:4,Ovens:4,creaks:4,"job-destroying":1,Grumble:2,belie:149,"CD-4":2,Guignol:2,compiling:8,aerobics:19,clammy:1,unperceived:17,Hardwick:2,"hypothalamic-cortical":1,pickoffs:4,Embedded:17,patrician:3,assist:182,Waldman:2,"nacho-crunching":1,"CD-I":2,"rough-hewn":1,"more-open":1,"gas-producing":3,Tribes:4,shortwings:4,businesslike:1,"Miller-Studds":2,biwa:64,Motors:111,"coming-of-age":1,Sweezey:2,"A.K.C.":2,uncomplicated:1,cameramen:4,handouts:4,outdoor:1,sputters:20,"asset-backed":1,sights:4,"French-made":1,Plastic:66,unofficial:1,Zaharah:2,thudding:8,despoiling:8,Git:39,"England-based":1,Rowland:2,Ramada:2,Taurus:2,Cezannes:28,Soleil:2,Ulric:2,GROVE:2,PROSPER:33,Quadrille:2,nonconvertible:1,gnarled:1,credentials:4,Dolley:2,Operations:744,Raised:17,hydrated:1,"newly-married":1,epicycles:4,Warrants:4,twittered:16,Biden:2,reimbursing:8,gratifyingly:6,Heinrich:2,bewitched:17,worries:18,"market-based":1,"turtle-neck":1,Pressured:17,Entertainment:11,"nurture...":102,imaged:17,Pressures:4,AB:2,"Kimberly-Clark":2,images:4,"AIDS-infected":1,Assurance:2,AD:47,HOUSTON:2,Meg:11,outs:4,"food-importing":1,princely:1,Augustin:2,Kolberg:2,Mel:2,Men:745,"mini-series":19,charlatans:4,Met:746,Sponsored:17,schoolteachers:4,"rough-cut":1,millidegrees:4,Chisholm:2,Gorski:2,"worst-hit":1,"good-by":341,Bendectin:2,Seabrook:2,Settle:39,"budget-priced":1,Leigh:2,AP:2,Scared:14,AS:587,Czeslaw:2,Sparcstation:2,ORTEGA:2,MacInnis:2,pockets:18,consolidate:42,Fanning:2,unused:1,skilled:7,actuate:39,harness:24,Banstar:2,acquiesced:32,"Rhine-Westphalia":2,paraphernalia:91,restrained:45,disfavored:1,railcars:4,Lynch:2,oxidised:17,fanatic:22,Guilin:2,motherly:1,Autocracies:28,Stopped:17,hurricanes:4,"Mac-Reynolds":2,arranged:54,Significantly:6,"lesson...":102,practically:6,"Soviet-Israeli":1,relabeling:8,Gesangverein:2,arranges:20,peeking:8,eschew:39,Satoshi:2,Wickes:113,"single-adjudicator":1,Broeg:2,Frail:1,Secutities:28,Wicked:2,again:6,Accardo:2,goddam:1,"J.R.":2,"mother-only":1,"earth-shattering":1,revisions:4,"crew-pairing":1,At:124,unthinkingly:6,withdraw:42,demobilize:39,academies:4,Dorothy:2,Bull:11,marshes:4,Mojave:2,Schafer:2,"P-7A":2,collegiate:1,"Song-sam":2,"Kahler-Craft":2,Warsaw:2,colleges:4,lapped:32,founder:25,Workers:41,founded:54,commute:174,THANKS:4,expressions:4,briefcases:4,shattered:81,preserves:72,Byzantine:66,Kazushige:2,Davenport:2,Bayonne:2,Fleischmann:2,Devout:1,crimson:3,Arenula:2,Training:11,unabashed:1,sitting:747,authentications:4,Trikojus:2,Poussins:4,purrs:20,Sebastian:2,elated:7,washing:55,"whiskey-baritoned":1,drugged:14,Beaumont:2,blares:20,Primaxin:2,"big-money":1,bypassed:54,blared:16,tribal:1,Abiomed:2,McGlade:2,"anti-abortionists":4,Mineralogies:28,Westcom:2,perspective:22,MIPS:113,affable:1,Andris:2,creatures:4,swampy:1,sweetly:6,brackets:4,swamps:4,"industry-wide":1,typifying:8,Demisch:2,leafhopper:12,"PR-wise":1,Isaly:2,MIPs:113,"railway-based":1,Manalapan:2,Ahead:150,Classified:66,"anti-union":1,threads:4,furlongs:4,Apologie:2,frangipani:4,Returning:229,sofar:6,sofas:4,uncharted:1,Ardent:40,Bizarre:1,Dehmelt:2,"African-Americans":28,"shareholder\\":1,"America.":2,Charging:8,"FHA-backed":1,Walla:2,shareholders:4,Walle:2,"long-held":1,Kristiansen:2,Metschan:2,plastered:14,"Sonet-compatible":1,squires:4,subsumed:17,Wally:2,restraints:4,"money-management":22,Transtar:2,Alysia:2,landes:4,Sotheby:2,handsomely:6,FOMC:2,constructs:20,Americas:74,necromantic:1,American:180,Roger:2,McKeon:2,Chiang:2,Woburn:2,Innocenti:2,"commercial-bank":3,specializes:20,Hamlet:2,guards:18,patrols:4,Harnack:2,Razors:4,specialized:103,hovels:4,"half-straightened":16,"deficit-cutting":3,Retirement:11,junked:17,salesmen:4,Welty:2,Mfume:2,"current-account":3,ensnarled:17,numbers:18,"P.M.":748,Cause:59,Seso:2,narrowly:6,Autorapido:2,TIRED:1,TIRES:4,Sparc:2,Declarative:1,Spare:1,"worst-performing":1,Spark:2,hamburgers:4,slackening:8,"Producer-Price":2,Schneider:2,Artemis:2,questioning:9,tangere:1,"fast-growing":1,Continue:42,spectacularly:6,coming:5,Furious:2,Residents:4,Chair:2,Porretti:2,Counting:8,"Japanese-made":1,Aristotelian:66,toiletries:4,upholstered:17,"retail-sales":176,Perito:2,skilful:1,"cancer-ridden":1,Mazzera:2,Afrikaner:66,Forced:17,Nashville:2,Imported:2,ANCHORAGE:2,through:105,Forces:749,"engineering-management":3,Wolcyrz:2,Pagans:4,golfing:21,Tomas:2,pests:4,Notte:2,Elijah:2,forints:4,misunderstandings:4,researches:72,recollected:16,Toman:2,Tatzel:2,Jerrold:2,Schwengel:2,postwar:1,socially:6,prejudices:4,Capitalism:47,frigid:1,Capitalist:2,motioned:16,prejudiced:14,vacationed:16,Canastels:2,Taipei:2,"church-goers":4,Interspec:2,hails:20,supersensitive:1,Commoner:2,"home-nursing":1,saloons:18,wrappers:4,Fiddles:4,Fiddler:2,Reverently:6,winnow:39,"mm.":19,marshaling:8,uninvited:1,Contel:11,Atkissons:28,Collyer:2,pubescent:1,DiCara:2,"burned-out":1,Sweeping:8,"glass-like":1,"intra-party":1,Mario:2,Ogilvyspeak:2,Weaning:2,enforcing:8,"pre-recorded":1,gobblers:4,impeached:17,reparations:4,beginning:5,Deerfield:2,Badin:2,Jawaharlal:2,needing:8,"hatchet-faced":1,Biggs:2,withes:4,NASA:2,NASD:2,Soir:2,Prodigy:2,raptors:4,embraces:72,stabs:18,jabbed:16,embraced:54,"three-and-a-half":1,unacquainted:17,"X.":2,"straight-out":1,bloodied:7,Laventhol:2,"anti-clotting":1,hollows:4,Littleboy:2,Germont:2,Scholastica:2,XL:2,Frenzel:2,Tsai:2,"sales-loss":1,"one-acters":4,Tsao:2,Tsar:2,obstructed:54,trolls:4,dippy:1,CLAUSTROPHOBIC:1,Sooraji:2,"Left-Wing":2,GEnie:2,Favor:39,Physiology:2,EXAMINE:39,substracting:8,orginally:6,"patient-interview":1,Xu:2,trudged:32,lilting:750,Lagonda:2,Esprit:2,"Son-of-DAT":2,Busey:2,showers:4,"POST-TRIAL":2,Troopers:4,Doubleday:2,Power:11,recondite:1,cholorfluorocarbons:4,Futter:2,Congel:2,Equitable:2,wows:20,millenniums:4,programmers:4,underpinnings:4,unceremoniously:6,loosens:20,esse:147,officiated:16,"off-key":1,Elecktra:2,inarticulate:1,"MD-80":47,drifts:72,reflections:4,Pisces:2,Shrinking:8,Popolare:2,Seiren:2,commissions:208,Langevin:2,noblest:51,converge:42,Krenz:2,unmeritorious:1,Bonilla:2,Hanoverian:40,Kathy:11,chimes:72,Messiaen:2,merges:72,Lessing:2,"lawn-feeding":1,"self-deprecating":1,idiots:4,chimed:16,"night-coach":1,lathes:4,Kathe:2,Solidarity:11,"venture-capital":3,Fiat:2,intractable:1,Unify:39,internists:4,express:50,"analytical-instruments":1,zapped:16,autobiographic:1,Assiniboia:2,Pitcoff:2,STARTING:2,Tootsie:2,doubled:32,Unilab:2,logistic:1,doubles:18,"July-September":1,Larkins:2,Portland:2,"natural-resources":152,threehour:1,Dismissing:8,Spreads:4,biannual:1,nerly:6,Citing:229,SKF:2,manly:1,Volkenstein:2,Phoenixville:2,DeCicco:2,"government-agency":3,expert:22,embalmers:4,shatterproof:1,Punch:39,vascular:1,Bushby:2,Cleopatra:2,Cipher:2,beetling:1,intimidated:17,"seventeenth-century":1,"Off-price":1,INPS:2,Ionic:1,acidulous:1,substitute:139,symbolical:1,Dancers:113,tempos:4,Windham:2,"sharp-focus":1,zilch:439,"re-run":17,esprit:64,elaborating:8,Derck:2,tubules:4,profligate:1,ravages:4,"DFS\\/Pacific":2,asserted:32,ravaged:17,civilize:39,furthers:20,weaving:55,Chinooks:4,Dineen:2,rivals:18,omniscient:1,Floral:2,"fly-by-nighters":4,chiseled:14,"less-obvious":1,enchantingly:6,Rajiv:2,strictest:51,grains:4,grainy:1,elections:4,Schimmel:2,reopens:20,denominations:4,coyly:6,Robins:2,whimpers:4,ganging:8,unearned:1,Bluntly:6,astound:39,"boat-rocker...":102,"Fuji-apple":1,Prison:11,aspects:4,Bonett:2,disillusioning:1,Glaris:2,Towle:2,"antibody-based":1,"quick-frozen":17,shortchanged:17,Intertrade:2,traditionally:6,Banawan:2,Provisional:2,Zionists:28,"pre-refunded":1,task:25,"Al-Rowas":2,ExploiTech:2,purtiest:51,coachmen:4,"express...":102,Quacks:4,"Die-hard":1,"year-on-year":1,Platonist:47,irritably:6,shape:24,irritable:1,Yorkers:111,alternative:22,Kenyan:66,Forster:2,rundown:22,cut:751,Crovitz:2,cup:25,marrying:8,Pae:2,undistinguished:1,waxed:85,habeas:296,Opositora:2,Bette:2,Exploration:11,"be....":102,reliable:1,hallucinations:4,Christian:752,Betts:2,maples:4,recycled:81,irretrievably:6,unhindered:1,"one-inch":1,"half-standard":1,absolutely:6,"commercial-free":1,presences:4,Riverview:2,"over-allotments":4,"divestiture-related":1,Tieck:2,proficient:1,Modular:2,Illuminating:2,epic:22,Shultis:2,Box:2,Boy:753,"Auto-Europe":2,Stempel:2,Bow:2,Bol:2,Bon:87,Bob:2,Frontieres:64,Romania:2,Loyal:1,"lower-than-planned":1,"S.Grove":2,"sweet-sour":1,Enhanced:2,delist:39,Captain:11,"XL\\/Datacomp":2,systematizing:8,fantods:4,depose:39,"Vt.-based":1,Strauss:2,Otterlo:2,"Wash.-based":1,Accuracy:47,"single-foot":1,Oppressive:1,openers:4,Longest:2,Coverage:11,Rexene:2,Mips:2,translate:42,JROE:2,Professionals:113,"motel-keepers":4,Hage:2,Splendide:2,Promises:20,delighting:8,subsidiary:22,planed:17,"W.C.":2,driveways:4,Salty:2,Pasterns:28,Wildcat:2,"learning-curve":1,Babel:2,Secured:1,Nymark:2,deprive:39,rarities:4,consulted:54,revelatory:1,appetizing:1,organizational:1,CAMPEAU:2,overfeed:39,"Red-Greens":28,"not-quite-perfect":1,Sailing:11,Fidel:2,Chrissake:106,adoring:8,composing:8,intensifying:30,Dallasites:28,POINTS:28,Israelis:65,Student:11,emanated:32,Evangelista:2,"Wade-Evans":2,"Heel-Lotus":2,"St-Laurent":2,admen:4,antiquities:4,"reserve...":102,intensified:45,TELESIS:2,"co-occurring":1,entertaining:5,Garzarelli:2,scouting:8,Boulroud:2,overlooking:8,monic:1,wards:4,bankers:4,Pah:2,Sahara:2,presenting:8,"in-room":1,"ready-made":1,caribou:19,magnetically:6,"time-zone":1,amplifies:20,Baumgarten:2,Assuming:229,amplified:17,compose:42,"boom-or-bust":1,Jujo:2,suave:1,"water-washed":17,tradesmen:4,"be...":102,bottomed:54,"Democratic-style":1,unhurt:1,Vollrath:2,Rearding:8,"spider-leg":1,RIVER:2,refusers:4,companywide:97,Alcoholic:2,Murai:2,Ty:11,Eldon:2,Murat:2,Hersly:2,Caligula:2,McCloy:2,"charter-type":1,Roemer:2,mysticisms:4,Term:47,Contra:40,Annaud:2,Criteria:2,Tropic:2,Avocados:4,fros:4,"penalty-free":1,"commercial-goods":4,Ogunjobi:2,dowdy:1,Pornsen:2,assisted:54,pleading:5,Dahlia:2,phonemics:4,Schoder:2,"non-linear":1,"VacSYN\\":2,plunkers:4,beasts:4,Hasbro:2,AGREES:20,"D.H.":2,warless:1,Burkina:2,MCorp:2,premiering:55,Menas:2,climb:95,Proceeds:123,Tareytown:2,composed:45,decentralized:103,Amtrak:2,Munster:2,Pisa:2,Emporium:2,Finger:2,composes:20,corpuscular:1,belittling:8,Driver:11,Driven:17,classically:6,Congregational:40,"Gramm-Rudman-Hollings":2,"penny-wise":1,Propper:2,Rennell:2,"co-inventors":4,Lukassen:2,"Pty.":2,engender:39,Wilfrid:2,Flakes:111,"Radio-Television":2,Nash:2,Ultra:2,minions:4,Inspire:2,transmissible:1,"anti-Nazi":1,Etruscan:1,gruff:1,ontologically:6,syrupy:1,Cultures:4,Apogee:2,syrups:4,noises:4,midsts:4,unseasonable:1,formations:4,Farthing:2,"Three-year-old":1,Daewoo:2,Durocher:2,"once-desirable":1,Superconcentrates:4,Petrie:2,"Mainliner-Highland":2,"delicately-textured":1,prostate:22,"necklace-like":1,Southey:2,"state-subsidized":1,HIV:2,Maplecrest:2,Tennessee:2,supranational:1,chambermaids:4,BHP:2,eggplants:4,"Dollar-yen":1,Kriz:2,contriving:8,Beside:127,Creations:65,circumscribed:1,knocks:72,Krim:2,transborder:1,iguana:1,edematous:1,tsk:106,"most-hazardous":1,undressed:16,itemize:39,godless:1,pugh:1,"European-based":1,couplers:4,"black-owned":1,"steel-hulled":1,Slack:2,pangs:4,"Yin-Yang":2,beads:4,denigrate:39,Architect:2,squabbling:21,preschool:1,applicants:4,straddling:8,Hollingshead:2,greenhouses:4,masterminding:55,Wurtzel:2,hisself:53,preclude:42,Dillard:2,oversubscribed:14,"E.O.":2,beady:1,Downside:1,McLish:2,tacticians:4,monumentally:6,crackdowns:4,Jima:2,"pastel-like":1,"Dai-Ichi\\/Nippon":2,averred:16,Awad:2,"barrel-vaulted":1,incensed:14,popping:8,Unisys:113,eking:8,enforceable:1,"crazy-wonderful":1,"Plee-Zing":2,scriptural:1,flushing:21,Mandle:2,Ural:2,Countering:8,peonies:4,vibrionic:1,"Anti-Swapo":1,grunting:8,contrarian:3,IRSAC:2,qua:64,clarify:42,approaches:18,que:64,British:198,qui:64,Sanger:11,quo:754,"super-empirical":1,pokerfaced:1,backwards:755,allies:4,"battlefield-electronic":1,"open-necked":1,Acey:2,allied:81,mortal:3,Aces:4,"flat-rolled":1,"less-effective":1,warys:4,domiciled:17,"grandfather-father-to-son":1,elegiac:1,Sievers:2,Rubber:40,lagging:5,Sventek:2,Kooks:28,Durgin:2,"tax-and-spending":1,Muncke:2,owning:55,Playboy:2,"dextrous-fingered":1,"Circuit-breaker":1,nebular:1,scant:1,Stocks:57,bargained:32,scans:18,Fliers:28,acquire:182,foamy:1,Burnett:2,Bordeaux:2,foams:4,Nearby:197,Reds:41,Accountemps:2,Ozagen:2,landholdings:4,bewilderedly:6,Reda:2,"off-field":1,assays:4,impersonations:4,Lastly:6,Sutherland:2,Ragan:2,Hueglin:2,Lachica:2,"Follow-through":1,Parmer:2,Dilworth:2,Defuse:39,Mueller:2,catapults:20,"attention-grabbing":1,Jacuzzis:4,incentive:22,Ziraldo:2,concerns:18,Ticker:2,Glad:1,WARS:123,deathless:1,Kiarti:2,Eritreans:28,"New-England":2,"M-CSF":2,interning:8,Protege:2,Russes:2,Sankei:2,Inadequate:1,"line-drying":1,McNamara:2,Joyce:2,Tartarughe:2,Afrikanerdom:2,Russel:2,thicken:39,fascists:4,rotating:8,Religion:47,Stumbles:20,"one-million-letter":1,unreliable:1,Regal:2,Regan:2,"communication-cluttered":1,Denison:2,sparks:72,Aycock:2,Superslim:2,Oei:2,"no-nos":4,mothballs:4,prancing:21,Jacob:2,communist:3,shouldering:8,regularly:6,pave:39,"associate-label":1,Stories:113,rebellious:1,overinsistent:1,pashas:4,Endicott:2,"Well-to-Do":1,Carlson:2,resultants:4,fixes:4,dispell:39,Desheng:2,fixed:756,Guarantee:47,Fungible:1,"well-guarded":1,turkeys:4,racked:54,groggy:1,"non-repetitious":1,reiterate:42,Orbiting:2,Ochoa:2,"easy-to-turn":1,Scrub:39,reform:25,vignettes:4,criminalizing:8,canons:4,unscrewed:16,difficulties:4,Heston:2,"inflation-fuels-growth":1,Concerto:2,"BE&K":2,"months-long":1,"GM-CSF":2,"operations\\":2,Mantegna:2,jewelled:1,Creedon:2,Gaelic:1,reproduces:20,"Well-Seasoned":1,"book-flogging":1,Entirely:6,Concerts:41,Macintosh:2,commenting:8,Soldier:2,burnishing:8,metered:17,kosher:1,Lippens:2,Spinners:28,wringing:8,"property-tax-cutting":1,Champassak:2,Mardon:2,"two-tier":1,ambushed:32,"See-through":1,Squire:2,Ahsan:2,Bench:2,reborn:14,deflected:32,uninitiated:1,Sapp:2,Pending:229,"long-necked":1,"short-wave":1,migrate:42,seasoned:7,drowsy:1,rump:22,"other-nation":1,iodinate:39,"drift-net":22,Carriages:4,Moonies:65,Overbuilding:55,Norex:2,"S-10":11,tense:3,assessments:4,locomotives:4,Roeser:2,distilleries:4,exhumations:4,Nalick:2,venomous:1,commmon:1,Centering:8,fumbling:30,Cineplex:2,LONDON:11,Estes:2,"Anti-Americanism":2,espousing:8,Yaqui:2,")":167,coronary:1,Accountants:28,shoehorned:17,Panel:2,Avoiding:229,"code-related":1,sigue:64,Surrendering:8,discredited:14,sisters:4,drafts:4,neural:1,Resident:2,Spring:11,"NOT-GUILTY":1,Sprint:2,Total:66,Seventeenth:1,reintroduce:149,excise:70,nicknames:4,drafty:1,inveigle:39,nicknamed:54,vocational:1,Fourth:294,streptokinase:2,"Y.J.":2,Lutheran:2,Gundle:2,Shogun:2,"one-sixth":3,Victoria:2,delegations:4,jackets:4,Dirksen:2,ought:190,Pulkova:2,Toxics:2,elapsed:17,Krasnoyarsk:2,"satin-covered":1,elapses:20,Bromagen:2,"ward-heelers":4,"ad-free":1,displaced:54,courtrooms:4,Isaacson:2,Durham:2,displaces:20,ghosted:16,livelier:12,straightway:6,classical:1,Signs:4,Olle:2,Grohowski:2,happens:20,Option:11,"best-hearted":1,screwed:54,"clean-top":1,Devcon:2,Heaven:395,Applying:8,refurbishing:55,pedaling:8,topiary:1,unchangeable:1,"U.N.C.L.E":2,urbanized:14,Jetway:2,"class-biased":1,Lascivious:2,Rabaul:2,Guardino:2,"central-district":1,Guardini:2,crudes:4,backpackers:4,planners:4,cancerous:1,Shinagawa:2,unfashionable:1,knuckles:18,PROSECUTIONS:4,Equipement:2,"Quattro.":2,condense:39,Twomey:2,hankerin:8,avowed:1,Therapy:11,knuckled:16,crucially:6,"Fair-priced":1,November:2,Arbuckle:2,Tyne:2,Philanthropic:2,"media-stock":1,crawled:32,"Source:New":2,Protons:4,unpartisan:1,"fuddy-duddy":1,Harlan:2,versatile:1,Sekel:2,Guiseppe:2,"HUD-backed":1,Graff:2,Crosby:2,Capetronic:2,Gauguin:2,Glaciology:2,indiscriminating:1,exceeded:32,Surgeons:65,transfused:17,periods:4,"AFL-CIO":11,"tumor-suppressors":4,Tempe:2,overpurchase:39,Tempo:2,duplications:4,Mcdonald:2,Centrum:2,Sylmar:2,Gitter:2,Blakes:4,conveys:20,Interlocking:8,floppies:4,"hard-liquor":3,Sabella:2,Deere:2,"F-20":2,Elcotel:2,Alba:2,Expenses:4,deregulated:81,Exterior:2,condiments:4,propsed:17,"food-services":4,Pryor:2,Behringwerke:2,elegances:4,Juilliard:11,reprocess:39,"white-suited":1,Quackenbush:2,GROWING:8,Handzlik:2,"Re-creating":8,rendezvoused:16,undisputed:1,"computer-matching":1,Obey:2,Vinnicum:2,Minnelli:2,metamorphic:1,LeFrere:2,Mnemosyne:2,whipsaw:104,acoustically:6,whatsoever:757,"Pride-Venus":2,Redland:2,Nasty:1,Prescribed:17,arboreal:1,dispense:42,Prieur:2,vastly:6,caliphs:4,Richter:141,anemic:1,gluey:1,school:25,Murtaugh:2,Ousley:2,conceive:42,glues:4,"cocoa-trading":1,MALAISE:2,Schweiker:2,Cowboys:41,delightfully:6,glued:54,Haake:2,veritable:1,Ruffled:17,disciplines:4,Satoko:2,construed:54,guidelines:4,disciplined:45,Palazzo:2,"take-up":1,"Saint-Saens":2,blue:3,"Z.":2,hide:95,cosmologists:4,supplied:54,blur:44,supplies:18,Behrendt:2,"non-violence":22,democratized:17,Niebuhr:2,Strehler:2,"state-appointed":1,Crispin:2,McAvity:2,MIDLANTIC:2,Wedgeworth:2,hideously:6,Gradual:1,ridicule:25,culminate:42,poshest:51,depreciated:16,"proposition...":102,Bayezit:2,murkily:6,natives:4,settled:758,Panting:8,Group:11,Destec:2,Yehhh:106,grumbled:32,Pedersen:2,Madagascar:2,Orville:2,Werdell:2,offi:4,Cat:2,grumbles:20,would:190,Laotians:4,tenders:4,Messiah:2,distributing:55,Whichever:447,quipping:8,Donuts:46,Ezra:2,Beauregard:2,Gradison:2,excommunicated:17,"black-body":3,tenors:4,ferrying:8,poultices:4,Ramparts:4,Stronger:195,"cheek-to-cheek":1,Crowd:11,Crowe:2,arterioles:4,Crown:11,Crows:28,warmish:1,Spotlight:2,"employee-management":3,hobos:4,MAKING:8,"guitar-twanging":1,"financial-support":1,defile:39,receivables:19,"gasoline-powered":1,riskiest:51,Bunny:2,returned:32,"non-verbal":1,legislate:39,Cordova:2,"stand-off":1,"non-elderly":1,toxic:3,Darla:2,Modzelewski:2,Yuzek:2,Commonweal:2,Mariam:2,Marian:2,pantomimic:1,imaginable:1,lump:78,airless:1,understandable:1,lances:4,girders:4,splendid:1,Siegal:2,capacitors:4,"quasi-monopolistic":1,ATTRACTS:20,preventive:3,"name-plating":1,Unanimously:6,Nonetheless:6,Gabriele:2,Arlington:2,fiendish:1,"non-staple":1,margining:8,"two-term":1,Nitsuko:2,"R.I.":2,howsomever:6,signatory:3,Gajda:2,mistreat:39,HASTINGS:2,Goldin:2,litigious:1,Mobile:40,ripens:20,Goldie:2,CHW:2,rental:3,Dwight:2,"tootley-toot-tootled":17,swaying:55,gluttons:4,Lureen:2,Foul:40,herald:42,Newsreel:2,minutiae:4,"occupation-as":759,junkloads:4,Frankfort:2,Carrel:2,"two-weeks":1,juggling:55,Frankford:2,Derivative:1,"mega-issues":4,lugged:32,pounce:39,large:97,psychic:3,"crisis-oriented":1,sighing:8,laid:54,DeGregorio:2,lain:17,"decision-making":22,gimcracks:4,aforesaid:97,worse:760,"disk-read":1,W:11,boosting:8,peaky:1,immigrated:32,Minnesotans:28,sods:4,Argonauts:28,longterm:3,conceding:8,filter:25,"city-wide":1,heck:235,smokers:4,Carefully:6,Antarctic:2,Saucony:2,separable:1,Hoyte:2,marriageables:4,"trade-magazine":1,"seldom-stolen":1,officious:1,attractions:4,primary:3,"pre-paid":16,Jinny:2,inharmonious:1,Welby:2,"Sainte-Chapelle":2,Kwek:2,Wimpy:2,researched:54,rechristening:8,Congress:11,"long-awaited":1,heights:4,confirming:8,corpus:80,Chevenement:2,frailest:51,illiterate:1,leaking:30,Flanagan:2,kindest:51,"Borg-Warner":2,"SH-11":2,Tanzman:2,Managed:17,unsaid:1,Wilcher:2,immigrants:4,tourists:4,"X-MP":2,Apprehensively:6,"pre-tested":17,MacSharry:2,Seveso:2,"market-corporate":1,Escort:2,Guillermin:2,Farmington:2,"most-influential":1,"Tampa-based":1,"net-like":1,"Off-season":1,puritanical:1,Linwood:2,Erle:2,overallotment:439,Sylvie:2,rodents:4,hatch:24,geographers:4,Gibbons:2,Meigher:2,Lenygon:2,Shafer:2,ProBody:2,"energy-adjusted":1,Grasslands:65,Shooter:2,SPWL:2,diversifying:8,Ceilings:4,structively:6,feint:25,Paced:17,Warrens:4,promotions:4,Saved:2,Bourbons:111,Voices:4,Burdened:17,"Mexico-United":2,Declares:20,Giovanni:2,phenomenally:6,registrants:4,Loomis:2,"output-restricting":1,bait:25,"Pro-Family":2,alight:82,confabulations:4,wedging:8,"insurance-claims":4,Martinelli:2,colors:18,Heyward:2,Lunday:2,"self-indulgent":1,bail:63,graded:17,Edict:2,spite:25,orienting:8,spits:20,knuckle:25,Racketeering:2,"Inter-american":2,"Bengals-Browns":1,Finals:4,leasable:1,Anxiety:11,pillorying:8,unhurried:1,"twentieth-century":3,despite:127,botanical:1,Matilda:2,Clanahan:2,Kagakushi:2,Moore:2,Kaldahl:2,anxiously:6,Schoenfeld:2,"pro-choice":1,Moors:28,NagyAntal:2,"C13532":2,Lamson:2,"inter-agency":1,Guilherme:2,BPCA:2,Vineyard:2,Textile:11,Excuses:28,Ants:4,Pitching:8,disturbing:13,UniHealth:2,Mathilde:2,"Jean-Marie":2,feline:1,Utilities:130,continually:6,discovers:20,Anti:2,empower:33,Roundup:2,Trek:2,Colored:40,"wide-grip":1,Tree:11,however:664,Sambuca:2,cashiers:4,absorbent:1,Among:127,Cruiser:2,Bucay:2,Tennant:2,mildly:6,Roads:113,behaviors:4,smuggled:54,"gay-rights":4,"single-A-minus":3,agitators:4,wretched:1,"mild-voiced":1,Hengesbach:2,dissipating:8,padlocked:16,subscribing:8,Literature:11,"financial-data":1,seein:8,"credit-ratings":4,moneymaking:3,captives:4,Amway:2,Sakowitz:2,stepladders:4,Stallings:2,anchors:18,Revitalization:2,"Zingggg-O":106,Javanese:1,Alexandra:2,Alexandre:2,"touch-starved":1,Sartoris:2,combos:4,Analytic:2,Grinten:2,"multi-million":1,legislating:55,NAREB:2,BLACK:66,Constructions:2,"Corp.:8.50":2,Spokesman:2,sidestepped:32,Horses:4,Nazar:2,usurping:8,Nazal:2,Development:11,screw:25,Paglieri:2,numerical:1,buyback:3,"capital-market":3,Junkers:28,Beckworth:2,HPB:2,gemsbok:4,possessed:32,endorsements:4,SAMOS:11,admiringly:6,Clothing:47,possesses:20,leagues:4,rubies:4,departed:85,proposed:761,Thevenot:2,Thevenow:2,bruise:25,Credito:2,Forms:65,proposes:20,Hegelian:2,leagued:17,rivulets:4,scattering:8,Nicosia:2,enlighten:39,"bargain-priced":1,cherry:3,Conspicuously:6,"sub-human":1,Keefe:2,Debt:47,flavorings:4,farmsteads:4,DeMeo:2,"low-VAT":1,skeptics:4,metaphorical:1,Nadja:2,burne:39,flattish:1,"first-base":1,"go-getters":4,burns:18,burnt:14,Munsters:28,Heart:11,Relevant:1,peeved:17,mansions:4,contradict:42,Probhat:2,Topic:2,Heard:157,peeves:18,pursues:20,uninterruptable:1,"Nelson-Atkins":2,reams:4,Hearn:2,"nuclear-weapons":152,Fitzwilliams:2,Again:150,Merchants:130,Topix:2,stringing:8,"left-front":1,"freer-spending":1,LaBella:2,clucks:72,Piovra:64,usher:24,Waertsilae:2,Plates:4,contests:4,Luksik:2,Strokes:4,Biscayne:2,Mankind:11,kayoed:17,Burnside:2,Accepted:420,Stroked:16,deleted:54,Brodsky:2,Deposit:11,Mello:2,oversaturating:8,"Hewlett-Packard":2,Hershhenson:2,choke:95,ensure:42,inveigh:33,ownself:53,Bolinder:2,Planters:2,dials:18,Meryl:2,Diamanti:2,lavishly:6,"long-cherished":1,obscene:1,bats:18,Steinbergs:2,"aircraft-test":1,Gencor:2,pampers:20,Confidently:6,INDUSTRIES:111,Stotler:2,foisted:32,Amen:762,"fuel-injected":1,destabilize:39,Amee:2,timelier:12,Amex:2,striding:8,JUMPING:2,Centoxin:2,Mantua:2,Ames:2,Amer:2,Infamous:2,amateur:22,GMC:2,GMA:2,bottlenecks:4,Lemuel:2,payable:1,Hardest:380,liveliest:51,Outhwaite:2,"animosity...":102,Brevet:2,Observer:2,Vom:2,Von:87,Tensing:2,Mikeen:2,loitering:21,encumber:39,Swissmade:1,Westcoast:2,panicky:1,"flame-throwers":4,Deseret:2,Maxus:2,"Adios-Rena":2,"no-new-taxes":1,pledging:8,"innovators...":102,"anti-foreign":1,when:763,oratio:64,Blaise:2,"suitably-loaded":1,Lamentation:2,soundly:6,plumbed:16,"government-backed":1,undeniably:6,Blueprints:20,Buber:2,tasteful:1,suppers:4,liquidate:39,"Part-time":1,Contrasted:17,"top...":102,"mark-yen":1,"after-run":1,sacks:4,Boorstyn:2,Barrah:2,"domestic-demand":1,Sergiusz:2,forgoes:20,Crowntuft:2,Peoria:2,Welles:2,Weller:2,epicyclically:6,trickle:44,"resource-wasting":1,rooters:4,tripartite:1,Nazarova:2,Schwarzenberger:2,contraventions:4,"British-born":1,Fatima:2,Truly:305,sequestered:17,Regrettably:6,"durable-goods":4,Flavell:2,"MK-Ferguson":2,Bowdoin:2,widthwise:6,unfamiliar:1,Sonet:2,Keyes:2,"Swiss-born":1,ritzy:1,Delia:2,Methuselahs:28,"well-experienced":1,clouds:18,impressive:1,level:205,Vrilium:2,posts:18,likens:20,Delio:2,"Inspectorate-Adia":2,Purely:6,domestically:6,Debate:78,tenths:4,Enthusiast:2,Flaum:2,tougher:136,industrialists:4,deflating:8,Carolinian:2,Ledyard:2,catapulted:32,"twin-engine":1,toughen:39,bales:4,port:22,"card-activated":1,Kunashir:2,Fathi:2,"high-level":66,stately:1,HEXCEL:2,"self-pitying":1,Merigan:2,Aprile:2,"per-store":1,Apology:2,Senesac:2,EMPLOYEES:4,entertain:39,"three-round":1,WGP:2,mockups:4,Abbett:2,demolishing:8,"upward-mobile":1,Hatfield:2,exams:4,Francesco:2,Francesca:2,"hand-delivered":1,Trafficking:47,videocameras:4,CROWDED:1,sympathique:64,Languages:74,Therefore:691,bribers:4,Sanders:74,"life-threatening":1,neuropsychiatric:1,Hoffa:2,Aktiengesellschaft:2,undersea:1,diagrams:4,roared:16,Hunterdon:2,diurnal:1,Opera:11,Opere:2,"turbine-generators":4,NKK:2,Charter:11,Ahrens:2,edible:1,Dakin:2,Ameaux:2,Harford:2,Bannister:2,"IBM-oriented":1,Wrap:2,druncke:187,Nonfinancial:1,Ground:11,"pent-up":1,nursing:21,Integration:47,Topton:2,Plainfield:2,Felske:2,Noble:2,Acropolis:2,Grassley:2,"co-market":39,"all-new":1,"interference-like":1,vital:1,Blair:2,Aljian:2,Tank:2,Macklin:2,"big-stakes":1,Valeri:2,Valero:2,Tana:2,flattens:20,Beesemyers:2,Carlucci:2,PRICES:91,Bromfield:2,Olerichs:28,Pinar:2,Gelbart:2,syndicates:4,reaped:54,Burning:217,"value-investing":1,"quarter-of-a-century":1,inform:42,syndicated:45,"Operating-system":1,"Yankee-come-lately":1,lamented:16,hassled:17,Aros:2,"chicken-and-egg":1,retools:20,CONTINENTAL:2,imitative:1,donates:20,Klejna:2,Lopid:2,Higher:195,Selig:2,demeans:20,intervenors:4,Hazardous:1,extremis:64,barristers:4,Augusto:2,qualifies:20,Cyclades:4,turtlebacks:4,Augusta:2,Supermarkets:56,Rome:11,rivaling:8,refrigerated:14,Roma:2,"A.V.":2,Romm:2,porters:4,gushing:8,escorting:8,Infant:1,stabilize:42,Lindemann:2,debating:30,donated:54,eighties:4,"wanting-to-be-alone":1,cornerstones:4,Flagg:2,dishing:8,busts:18,lambastes:20,dissenting:13,tidily:6,"third-selling":1,lambasted:32,Devine:2,Valais:2,unrestrictedly:6,Finder:2,"long-stemmed":1,Wheat:129,Gandy:2,uncannily:6,"Barbier-Mueller":2,Jager:2,landfilling:55,committeemen:4,"Five-O":2,Snedeker:2,Samsung:2,unsolder:39,dispatched:32,LaBoon:2,Babson:2,Felipe:2,Vocabularianism:2,dispatches:4,Widen:39,"live-in":1,Spear:59,Franconia:2,Sign:11,turn:764,handicrafts:4,Anticipating:8,cafes:4,Wider:12,turf:22,Gordan:2,Ferrero:2,Speak:260,"market-driven":1,spiralled:16,accruing:8,"toughest-ever":51,Eubank:2,Horowitz:2,"zinc-strip":1,"Mon-Columbia":2,cheerfully:6,Break:169,Leach:2,"action-packed":1,Bombeck:2,Commercial:765,insulins:4,"charge-offs...":102,fortuitous:1,"high-legged":1,Gauntley:2,Phoenician:1,HIGHER:12,IMA:2,Airpark:2,Upchurch:2,IMF:2,Brendan:2,IMO:2,Dowling:2,IMS:2,Minister:2,affiliating:8,"Five-Elements":2,Runtagh:2,reinforce:42,"branch-by-branch":6,Sears:113,Brake:2,unsatisfactorily:6,Jaross:2,Pottawatomie:2,"technology-licensing":1,Fails:18,Tora:2,Toro:11,Bolanos:2,Tort:2,Fishman:2,Clurman:2,EMPIRE:2,Tory:40,astonishingly:6,Drift:2,Bravado:2,Cattrall:2,wandered:16,"X-Tru-Coat":2,Spaulding:2,resembling:8,improvisations:4,surf:78,sure:766,Dealers:56,adversities:4,indelible:1,Hebrew:2,Montfaucon:2,Francoisette:2,COVERAGE:2,surmised:32,"autonomic-somatic":1,"tax-overhaul":3,Antioquia:2,NRL:2,NRC:2,NRA:2,later:767,Ventilation:47,beaded:17,Prodded:17,Bolinas:2,Schick:2,Sportswear:2,uninterested:1,urge:95,"often-ignored":1,"bulked-up":1,reinvigorate:39,pursuant:1,"Vermont-based":1,"semi-literate":1,Anthropic:2,Cornish:2,Gaylord:2,Saddam:2,Convincing:30,crimps:20,glandular:1,"Non-``":133,"Mass\\/Amherst":2,Gaja:2,wistful:1,Preliminary:1,Edythe:2,Techcorps:2,Acclaim:2,"closed-end":1,outperform:347,"African-controlled":1,Denise:2,barbaric:1,Nell:2,"commercial-loan":3,Clueless:2,artworks:4,slashing:8,Taschereau:2,"ball-carriers":4,"back-end":1,Vigorous:1,voluntary:1,Tsitouris:2,illusionary:1,Portico:2,"remote-controlled":1,Kenney:2,"Smith-Hughes":2,barging:8,Himalayas:28,Vos:2,Yff:127,Zosen:2,Himalayan:1,acquiring:8,Irma:2,contract:44,Pantages:4,Rudman:2,designations:4,filtering:55,Michelin:2,"billion-yen":1,HARD:1,Buechel:2,Widespread:1,opines:20,"two-story":1,enunciated:16,Foodmaker:2,consumptive:1,escalated:54,Negotiating:8,tonsils:4,"salt-edged":1,featuring:8,squatters:4,Lawn:2,fishin:8,Madama:2,downwind:218,Madame:11,repond:39,coherently:6,ophthalmic:1,Lidgerwood:2,ashtrays:4,protocols:4,pilot:70,"Jean-Michel":2,"Stern-faced":1,chromatographic:1,obligating:8,entractes:4,career:47,defunded:17,Open:768,Kuan:2,Opel:2,fisted:16,AMEX:2,Politicians:4,minds:4,AMES:2,Salton:2,Mirella:2,granted:81,eggshell:1,Workforce:2,jazzmen:4,careen:39,huzzahs:4,silliest:51,vintners:4,studentled:17,"slow-acting":1,Walkmen:2,Karan:2,weed:25,Dread:2,Banks:46,Sidewalk:11,weep:63,Dream:128,Insurrecto:64,quantitive:1,"Generic-industry":1,sinned:17,maltreated:17,"once-balkanized":1,without:127,deflated:85,Romances:2,coaxing:13,ninth:1,"twenty-page":1,DeBartolo:2,Belgian:66,headhunters:4,wher:293,liters:4,"surprise...":102,emulsifiers:4,lets:20,setting:55,bleats:4,flashing:55,sucked:32,"\\*":769,"men-of-war":4,Deliberations:2,Tamarijn:2,Manu:2,Many:770,inordinate:1,Ortega:2,Mana:2,"J.D.H.":2,Mann:2,Brave:2,"iron-handed":1,"out-of-court":1,Hallett:2,Consul:2,gyms:4,Blaustein:2,Switches:4,AmeriTrust:2,"run-ins":93,donations:4,"wholly-owned":1,"scientist\\/traders":4,Majestic:2,curriculums:4,"just-concluded":1,picture:44,Immanuel:2,LEVERAGED:17,Aschenbach:2,Reuben:2,Luft:2,Located:17,Kum:2,Ellen:2,lentils:4,developmental:1,"Pechora-class":1,Sherrill:2,frees:20,freer:12,"West-German":1,rooming:8,"half-off":1,imputed:14,"debt-to-assets":1,freed:81,Schley:2,KUHN:2,unpegged:1,beached:1,stereotyped:7,Schlek:2,parishioners:4,Billerica:2,Blush:2,stereotypes:4,Playing:8,beaches:4,Regaard:2,Goya:2,reprisals:4,"mega-deals":4,discussed:54,decelerated:17,Quattro:2,discusses:20,"A300-600R":2,Nunes:2,curses:4,instruments:4,Jidge:2,Rostagnos:28,"Sandinistas...":102,cursed:32,Trivelpiece:2,"flea-infested":1,SUES:20,Rorer:2,Lubars:2,"propeller-driven":1,Obelisk:2,there:771,alleged:81,junctures:4,"knee-socked":1,Proclamation:2,"nuclear-armed":1,alleges:72,treat:95,Utsunomiya:2,Singer:11,Compute:39,Ordinarily:6,staunchest:51,"Water-soluble":1,rouse:39,"well-modulated":1,Narragansett:2,offical:1,wholesale:3,artisans:4,Abell:2,whupped:16,Billboard:2,flats:4,creeping:30,Lancaster:2,accentuated:54,Bhutan:2,taste:44,"tri-colored":1,cockeyed:1,accentuates:20,tasty:1,uncovered:45,onerous:1,roses:4,"off-year":1,"c-reflects":20,"lemon-lime":1,proliferate:33,"super-exciting":1,"fuel-efficient":1,pillows:4,Modestly:6,Carden:2,cordless:1,START:2,Faight:2,STARS:113,Holguin:2,inroads:4,PFC:2,blacks:57,Majesty:2,Quotrons:28,Deegan:2,Darlene:2,platted:17,"executive-model":1,Cleo:2,"Hungarian-born":40,Esnards:28,roi:64,ShareData:2,scrappy:1,"off-road":1,logarithms:4,"no-fuss":1,Avnet:2,Avner:2,"re-rescue":39,SHOPS:4,titter:78,facelifts:4,extraneous:1,Dramatic:1,dairy:448,Gardelin:2,Arakawa:2,lawmakers:4,"blood-soaked":1,Axioms:4,tethered:45,uptick:772,Alaska:2,Baulieu:2,snapdragons:4,vacationing:55,beefore:127,Translink:2,"Field-Fisher":2,"Boom-city":2,Testing:47,Fenner:2,Vendors:4,"butterfat-rich":1,Carla:2,Marrie:2,liars:4,Carli:2,Carlo:2,lise:4,familiarly:6,dessier:39,Pepcid:2,abstracted:249,Kravis:2,slavered:16,breakers:4,Naganawa:2,chalk:24,risen:17,Quitslund:2,musts:4,wrongdoers:4,belied:16,brief:104,Milunovich:2,"Drs.":74,Nowhere:6,CEOs:123,Compound:3,Cinq:2,"pre-penicillin":1,unquestioned:1,compresses:18,ruffle:39,"Daimler-Benz":2,mayoral:1,compressed:54,Kaltschmitt:2,Dumez:2,"rocket-bombs":4,Winthrop:2,Absolutely:6,pizzerias:4,bungled:32,switchers:4,Kolb:2,horrified:14,"Japanese-American":1,gyrated:32,tragedians:4,binders:4,Thoroughly:305,Smithsonian:2,Gisele:2,Artzt:2,"Chien-Min":2,apprentices:4,Circumstance:2,Beatty:2,"Mayor-elect":2,Supper:11,Immediately:6,courthouses:4,Hammersmith:2,flat:34,Erich:2,flay:39,mutely:6,Morocco:2,flag:25,Mass:129,Fresenius:2,Nacchio:2,Lightly:6,Gymnasium:2,besides:206,Greaney:2,Finalists:4,yanked:32,salted:45,Nepal:2,"quota-trained":1,libertarian:1,Fortin:2,"pro-union":1,Quebecois:2,Defections:4,"independent-contractor":1,"toxic-waste-dump":1,Ahmiri:2,exalted:249,"once-loyal":1,Shadow:11,rebalance:39,aahs:4,guttural:3,okay:456,abdicate:149,"estate...":102,orbits:4,"never-ending":1,sponsors:18,Epps:2,Interhash:2,lighting:21,FAKE:1,holored:17,proclaimed:85,short:590,Aiken:2,wallets:4,marching:55,climaxed:32,Logan:2,Playgirl:2,Democrats:474,climaxes:4,shorn:39,"pre-maquila":1,began:16,Yukon:2,lifeguards:4,tanks:4,unimaginative:1,Koffman:2,Tarmac:2,Bianchi:2,chansons:64,Confindustria:2,"fourth-hand":1,clashed:54,Clinics:2,Monticello:11,clashes:18,Binder:2,ebulliently:6,bout:773,dimly:6,oftentimes:6,Safra:2,Oxford:2,hunted:45,Spain:2,Seward:2,adventurous:1,Halperin:2,Racquet:2,policyholders:4,Consultants:130,mastered:54,Midwood:2,Hospitals:56,"Christian-dominated":1,Larson:2,bolstering:8,Castroism:2,weight:25,Saints:74,Lothson:2,Debra:2,Mud:2,Cleota:2,transistors:4,cloudy:1,SuperDot:2,standards:4,"English-Dutch":1,Equifax:2,foolproof:1,frittering:8,commemorative:3,"said.``":133,"see-lective":1,"half-grown":1,guess:256,Caprice:2,czars:4,Corvettes:4,Brestowe:2,echelons:4,jet:78,Molding:47,Polyphosphates:4,Eloy:2,"clipboard-sized":1,fallen:14,Eloi:2,Ostpolitik:2,enlarges:20,Oklahoma:2,Keeps:20,Territories:74,enlarged:81,"mine-hunting":1,illustrating:8,Sinan:2,Shaver:2,Tintoretto:2,rookies:4,Geman:2,interviews:18,Fayette:2,Pleasant:40,trend:25,Larry:2,"transparent...":102,fought:32,Abroad:150,mainstay:22,unmentioned:17,insolvencies:4,Elementary:40,scanners:4,McAuley:2,amass:42,"pre-emption":1,Borland:2,exert:42,Zionist:1,Swisher:2,Zionism:2,Keio:2,"J.B.":2,hopelessly:6,Iceland:2,Romagnosi:2,Eppler:2,foamed:103,Hamey:2,"Cities-ABC":2,electric:3,populate:42,Sternenberg:2,RBS:2,Arkhangelsk:2,"Six-month":66,Zhao:2,Bohemian:2,storefronts:4,defensible:1,RBC:2,"Reeves-type":1,Marsam:2,diversifed:17,"order-processing":1,traditional:1,obediently:6,liberate:39,Colfax:2,restore:42,Profit:47,Shack:2,Efficiencies:4,fining:8,Haruki:2,Brumby:2,grazed:16,witty:1,axial:1,Hampster:2,"pink-sheet":1,Sorecom:2,northerners:4,Homebuilders:28,Specialties:2,"levi-clad":1,Tavoy:2,grievances:4,BW:2,Kandahar:2,Meselson:2,BP:2,cringe:149,Christopoulos:2,overhauling:55,Households:4,unflagging:1,"six-cent-a-share":1,chambers:4,Reformed:40,"more-stringent":200,threats:18,Hinchliff:2,Miniscribe:2,Trego:2,"upper-deck":1,Mottram:2,tactically:6,Buttacavoli:2,climbable:1,Blackburn:2,Could:190,Khouja:2,baleful:1,bibs:4,Dhuu:2,Bonnor:2,Teenage:2,paradigms:4,Meadow:2,sheaths:4,renegotiable:1,unincorporated:1,Counseling:47,Spurdle:2,Trujillo:2,"economy-lodging":1,Cheddi:2,Cotton:11,reside:149,"limp-looking":1,regulates:20,Maserati:2,previewing:8,sweet:1,sweep:25,"F.J.":2,regulated:81,"Post-Graduate":2,banditos:4,tepees:4,startling:13,Saftey:2,Reforms:4,Properties:46,flinty:1,softest:51,cinch:25,demand:44,Memoirs:2,Irian:2,frozen:14,Boots:113,Solemnis:2,Booth:2,Eckerd:2,insistently:6,concurrently:6,napped:16,Vicenza:2,Shrewd:1,Semiconductor:11,Dominated:17,Harbors:28,chestnuts:4,"spell-binding":1,"Pp.":19,"anti-cancer":1,"cross-marketing":13,Adventure:11,Leyse:2,absentees:4,monolithic:1,"Mo.-based":1,Itel:2,essences:4,peacemaking:22,impede:42,contractors:4,"bronzy-green-gold":1,"third-period":1,bourgeois:3,deflects:20,overemphasized:17,Hoechst:2,Treasurys:41,Miller:2,awaye:6,Druin:2,Socialists:57,Geology:2,Millen:2,"Cos.":74,dulling:8,spindled:16,unseen:1,Seems:72,"Sec.":47,Madre:2,Bohlen:2,shootings:4,arrowed:1,Rainman:2,Arnell:2,"F16s":4,"U.N.-supervised":1,grottoes:4,Matsu:2,Krumpp:2,tormented:14,acrobatics:4,Handy:2,Banoun:2,Performances:28,Raghavan:2,Smedes:2,Seco:2,Fashion:128,Landmark:2,Martoche:2,Penthouse:2,"and\\":119,systematically:6,admittedly:6,Candace:2,collect:347,Dearie:2,"Bifutek-san":64,Rinascimento:2,AirTran:2,Mulvoy:2,engravings:4,Lemon:2,Sixties:65,Dhofaris:28,sauces:4,"documentary-type":1,Murfreesboro:2,retry:39,Mareb:2,inoculate:39,shamrocks:4,"bankruptcy-law":22,retro:1,Marer:2,contrasting:30,meretricious:1,Tennyson:2,Dreieich:2,Prejudice:2,Lavelle:2,"Govs.":2,GUIDE:2,Roh:2,cautious:1,Unleaded:1,runes:4,Ron:2,Rob:2,Rod:2,Roe:2,associaitons:4,Roy:2,"double-glazed":1,quashed:32,complimentary:1,fluttering:8,"Commission-controlled":1,fleets:18,Urbano:2,Senium:64,purporting:8,Pavel:2,"no-tax":1,"Lee-based":1,Paved:17,burials:4,rows:4,entitlement:22,Hildebrandt:2,PARTNERSHIP:2,Brut:2,upheld:32,"Lao-tse":2,"Launder-Ometer":2,Arianespace:2,Kanoff:2,Hrothgar:2,"goods-producing":1,"pumped-up":1,raftered:17,Ashton:2,Franchisees:4,supinely:6,Austin:2,Petipa:2,Cassatt:2,remunerative:1,"city-like":1,Commemorative:2,Lawrenceville:2,landscaped:14,capitalized:81,Mignon:2,capitalizes:20,"clear-eyed":1,landscapes:4,Pitney:2,Talyzin:2,steeped:17,sepia:1,Attracted:17,Arguments:4,teased:54,"higher-quality":3,Orbe:2,Indicating:8,steeper:515,boatyards:4,disappoints:20,Fuster:2,Heberto:2,"High-tension":1,These:246,Gottesman:2,Fielder:2,Kolff:2,TNT:11,"Mallet-Prevost":2,users:4,Walford:2,"eighty-fifth":1,breasts:4,fertilized:14,TNF:2,Ranyard:2,posters:4,TNN:2,"California-backed":1,happier:12,Longstreet:2,Stansbery:2,curvaceously:6,"semi-rigid":1,"fat-tired":1,Deller:2,impatient:3,"private-banking":1,"non-social":1,impatiens:4,vocally:6,reined:32,"F.W.":2,Europeanish:1,vue:147,"clinical-products":4,Politizdat:2,Finsilver:2,Cooling:47,gang:25,Department:11,cases:18,"cat-like":1,Monagan:2,Lithox:2,Lille:2,fortresses:4,"high-mileage":1,Paquin:2,breach:25,unsettling:13,Arroyo:2,"re-animated":1,mainstream:168,Amidst:127,Rhodes:2,Zenaida:2,P:47,Allende:2,"re-animates":20,Jarmusch:2,downgradings:4,"volume-wine":1,Tedi:2,Congdon:2,bonds:4,Coletta:2,workouts:4,Vevey:2,Cygne:2,"copper-based":1,Arseneault:2,Allentown:2,Skywalker:2,Novaya:2,thynke:33,"life-time":1,folk:19,Mekong:2,showcase:22,concessions:4,Formed:17,investable:1,Former:66,LENSES:4,Billock:2,voluntarily:6,"re-arguing":8,monetary:1,youngest:51,gloat:63,Enimont:2,adjoined:16,Chantal:2,Begley:2,INVESTMENT:11,distressed:7,Haverfield:2,Insight:2,shades:4,leaving:55,"bond-futures":4,Moross:2,submerged:14,pitchmen:4,lighthearted:1,writes:20,distresses:18,"up-to-date":1,improbably:6,apt:1,improbable:1,walruses:4,Appraisers:28,hypothetically:6,"six-foot":1,constitutionally:6,Arranging:8,eagles:4,freezers:4,grandest:51,clever:1,homopolymers:4,opiates:4,antennae:4,"clean-burning":1,Murmann:2,capitulated:32,antennas:4,fraternize:39,disingenuous:1,Nucci:2,Hemming:2,mounded:32,"liquid-crystal":3,profitting:8,cubists:4,Hemispheric:2,Vamp:2,palpitations:4,Varner:2,dissolve:95,Dwyer:2,persuades:20,Science:11,"G.P.":2,Rimstalker:2,inaccessible:1,Forests:41,Alistair:2,clomped:16,lessers:4,Buttavacoli:2,Guandong:2,Laidig:2,"well-founded":1,"mid-term":1,hinders:20,justifiable:1,struggles:18,Afnasjev:2,"fiscal-first-quarter":1,justifiably:6,struggled:32,Montero:2,Campobello:2,Dorfman:2,Reading:258,Soba:64,Noranda:2,monthlong:1,tack:44,restructures:20,Orchestration:2,Dronk:2,Cognos:2,Vickery:2,majorities:4,Vickers:2,Anac:2,arduous:1,Demme:2,Pamasu:2,"six-year":1,Norgle:2,"broad-scaled":1,colognes:4,beauties:4,Shellpot:2,"goof-offs":4,reporters:4,meager:1,Sophomores:4,Shaevitz:2,bolognaise:64,Cecilia:2,Elyria:2,GENENTECH:2,Poszgay:2,TransAmerican:2,campaigned:32,"pan-national":1,idiomatic:1,latermaturing:1,interstellar:1,Eddies:2,"land-based":1,Nederlandse:2,Estherson:2,crystallographers:4,Turnover:47,landings:4,articles:4,"E-2C":47,"Stanford-Idec":2,trimmer:12,Nogol:2,Slowing:30,trimmed:774,"strike-bound":1,Calderon:2,hosses:4,dogmatic:1,oui:64,Moiseyev:2,"car-happy":1,Oryx:2,Chaucer:2,our:404,Structures:92,additions:4,out:775,Borrowed:17,Genigraphics:2,southerly:1,hagglings:4,Warrenton:2,cerebral:1,Fabi:2,telemarketers:4,plaguing:8,Goldwyn:2,IDA:2,"fourth-consecutive":1,disclose:42,Fists:4,insecurities:4,Dianne:2,BURBANK:2,Unconcerned:1,Azioni:2,Verification:47,miscellanies:4,Agnew:2,Agnes:113,informs:20,Durante:2,"grass-green":1,"York-born":201,Hyde:2,Diving:47,Hallucigenia:2,Divine:129,"recession-wary":1,Wadsworth:2,Bartholow:2,realtors:4,"little-noticed":1,galvanized:103,Gyp:2,outstate:1,umbrellas:4,Valery:2,"M.D.-speak":1,Dickensian:1,wagging:8,Fitz:2,Brokers:56,Duston:2,Hawk:2,Moscone:2,Hawn:2,Trader:2,Trades:28,disheartening:1,Kirschner:2,Hauptman:2,mules:4,diminish:42,Koopman:2,Traded:157,Reactions:4,"U.S.-U.K.":1,succeeded:54,objectionable:1,Vessel:2,"Lyme-disease":1,Peter:2,"M&A":11,tracts:4,clip:25,"M&H":2,Anton:2,recyclable:1,coalesces:20,Norborne:2,Jody:2,linked:45,ringed:7,Cheryl:2,pupils:4,Orlowski:2,Bayerische:2,Airfones:4,unbearably:6,Dewey:2,"energy-services":152,leakers:4,bellwethers:4,accountants:4,digestive:1,Klass:2,Panels:4,Cyprian:2,spirits:4,subjective:1,Shoppes:113,whipsawing:21,Slim:40,trounced:16,Actions:4,"Atty.":2,"open-handed":1,VeloBind:2,Huck:2,"post-Revolutionary":1,agreed:112,"large-denomination":22,artfully:6,docilely:6,Terral:2,weekly:776,fear:44,Genossenschafts:2,postulates:4,nearer:777,Sekisui:2,postulated:14,studded:17,local:3,"not-yet-married":1,plazas:4,"agree.":39,"symptom-free":1,monuments:4,Platzer:2,massacre:25,Champagnes:4,burglars:4,misbranded:1,"post-attack":1,Providing:8,manye:1,differential:3,nonracial:1,ITEL:2,leviathan:3,avoidable:1,ascertain:39,Sevigli:2,Draco:2,Kueneke:2,Einhorn:2,predictive:1,Philco:2,"State-controlled":1,Branching:2,Friedenwald:2,"longer-lived":1,"pigeon-holed":1,Bowls:2,buzzed:16,"non-cyclical":1,luminous:1,Orben:2,Galatians:28,drawling:8,droughts:4,favor:24,boughs:4,Affect:39,yellerish:1,bought:32,Foerster:2,Conception:2,opening:27,"Smith-Kline":2,Hokey:1,Vector:2,"fast-firing":1,Jury:11,Pretoria:11,Retrieval:2,Kemper:2,Mets:74,Peladeau:2,Metz:2,theoreticians:4,"natural-foods":4,Meta:2,"non-British":1,tactical:1,unclear:1,Lila:2,Harriman:2,environments:4,Thieves:4,Lonsdale:2,connotes:20,Lily:2,unclean:1,Shoettle:2,occured:16,Mendes:2,choosier:12,Mendez:2,reservations:4,"No-Cal":2,"symbolic-sounding":1,Guild:2,bedded:17,Pothier:2,dressers:4,pageants:4,tangible:1,Ennis:2,Porsches:28,verbenas:4,admonishments:4,"management-led":3,fearful:1,Concludes:20,Preyss:2,"black-crowned":1,ringing:55,Miner:2,Abernathys:28,Sunlight:2,thum:53,"co-edited":1,Troup:2,gyroscopes:4,"weak-kneed":1,Trout:2,pilgrimages:4,"twin-engined":1,PROPOSED:16,"eight-week":1,subcontract:520,waitresses:4,Wishing:8,geographical:1,largest:380,"Communist-inspired":1,Insights:28,clamors:20,Billikens:2,"hunting-gear":1,Purdue:2,conceived:45,"Axa-Midi":2,throngs:4,laborious:1,conceives:20,"PLO-backed":1,Janizsewski:2,undertakes:20,Kopcke:2,DuCharme:2,banging:55,catastrophically:6,"medium-duty":1,StatesWest:192,undertaken:17,decliners:4,excessive:1,Deliver:39,"once-vast":1,reincorporated:17,Romo:2,Engrg:2,underperforming:492,Weeks:113,envisaged:32,"z-Not":6,"post-Vietnam":1,uncommonly:6,arresting:30,arylesterases:4,Sacrestia:2,Genel:2,jars:4,"more-powerful":12,astrological:1,MacWhorter:2,"high-leverage":1,Lubkin:2,"Adios-On":2,blueprints:18,frighteningly:6,envisages:20,facial:1,Schumacher:2,press:24,Ethernet:2,countervailing:13,Zurn:2,"truck-parts":4,Tangible:1,Paranormal:2,Kenyon:2,wonders:18,Sue:2,Amdec:2,"spot-news":4,Sun:11,Sum:2,flagrant:1,expositions:4,Saicheua:2,Suu:2,Sut:2,Sur:280,vicarious:1,synchotron:1,"Nike-Zeus":2,"text-ordered":1,breakthroughs:4,Sponsors:4,staccato:80,dipoles:4,vesting:8,Energized:17,Andee:2,"Penna.":64,Jewel:2,Andel:2,Andes:111,Darlow:2,Remove:39,"item-veto":82,ECPA:2,Ellamae:2,"non-Hispanic":1,inboards:4,Americana:646,Americano:2,"Sheller-Globe":2,Stigmata:4,"dial-a-banker":1,Hepker:2,Portrait:22,Pointer:2,Pointes:2,converging:8,Morgan:11,"previous-month":1,Juan:2,"corporate-bond":1,"F-series":778,weather:44,promise:44,evoking:8,unrifled:1,"iron-clad":1,Lightstone:2,fawning:13,"CH-47D":2,egalitarian:1,transfer:44,Invitations:4,Amy:2,Brinsley:2,Stoic:40,resists:20,Amp:2,Amt:64,Prominent:1,chalky:1,hilar:1,Gunton:2,Turandot:2,assail:39,Bangladesh:2,Fantasia:2,Consumer:11,JoAnn:2,distract:39,catching:55,infusions:4,sympathizing:8,"government-ordered":1,carborundum:1,Horten:2,sheered:16,"Shanghai-born":1,Soichiro:2,duplicative:1,Corby:2,Cortland:2,Wines:2,Brundtland:2,curtained:1,Lufthansa:11,COPE:39,Merion:2,incredibly:6,"hot-pink":1,shredded:249,"Torrid-Mighty":2,Future:129,"agrarian-reform":1,perfectionists:4,exchangers:4,"pre-Punic":1,coupling:55,Omni:2,Lavaughn:2,seceding:8,Orders:57,Bogart:2,"smoke-filled":1,HIGHEST:51,Assurances:74,"life-death":1,YORK:2,unscientific:1,writings:4,finessed:32,Killers:28,Leaping:8,Abbas:2,rocketing:8,Sundance:2,ornate:1,conjuring:8,Woodwards:2,conjure:42,Tiles:4,herpetologists:4,"bank-holding":450,homemakers:4,"corporate-tax":1,swivel:104,Riegger:2,deli:4,"test-fired":17,preceeded:17,Mayberry:2,synthesizers:4,"seven-eighths":152,uncertain:97,differentiated:81,prize:779,Publique:2,"Tele-Communications":74,Piccolino:2,"tax-exempt":1,implanting:8,specialties:4,coolers:4,Desperate:1,"green-brown":1,"eye-popping":1,Evidently:6,Screw:2,charter:22,BEI:2,Lubberlanders:4,BEA:2,"Kelly\\/David":2,stiffens:20,"pro-Communist":66,icebergs:4,charted:17,shrugging:8,sterile:1,BET:2,hilariously:6,"country...":102,Appeal:376,ruthless:1,Boley:2,"dollar-cost":3,decry:42,OmniBank:2,Poltava:2,Hooper:2,"Bedford-Stuyvesant...":102,Presidential:66,Goverman:2,"off-again":1,intentioned:1,Church:11,interdependent:1,Varviso:2,strewn:17,shareowners:4,sloshed:16,"Gas-reactor":1,Elman:2,"sale-purchases":4,Choosing:8,Rognoni:2,Alternative:66,Goliath:2,Compared:17,divide:182,Frist:64,warrantless:1,Gatlinburg:2,Reznichenko:2,Skeptics:123,cheating:21,"best-selling":186,Slate:2,Varity:11,"non-Tories":4,"five-person":1,highflying:1,CarCool:2,Stepanovich:2,Calves:4,"snap-on":1,relay:182,relax:42,Softsoap:2,Halma:2,tying:8,pontifical:1,epicyclical:1,unaffiliated:1,orney:1,famed:7,afar:6,Pursewarden:2,Enchaine:2,Richardot:2,fames:4,Golub:2,Cardiovascular:2,DPW:2,vanities:4,DPT:2,DPS:2,newsweekly:6,"co-pilot":19,organized:45,Briar:2,dragons:4,Brian:2,Bike:2,DPC:2,Daze:2,McClelland:2,McCurdy:2,Lloyds:2,Benoit:2,"nitrogen-mustard":1,"Eagle-Picher":2,cheetal:1,shored:17,envied:16,"fiber-coupled":1,Rattigan:2,quips:72,destined:17,chums:4,Petersen:2,obscuring:8,Ormat:2,effective:344,Rensselaerwyck:2,"well-ruled":1,luring:8,snowballs:18,specks:4,Another:89,"always-present":1,repatriated:17,Kenilworth:2,squint:33,evocations:4,Monterrey:2,Cuisinarts:28,Sigurd:2,USAir:11,CHALLENGED:17,OFFERED:780,CBOE:2,vary:149,Brew:2,Ruffians:4,CBOT:2,Decades:4,"bread-and-butter":1,"well-received":1,PARTNERS:56,"all-exclusive":1,lovingly:6,McDougall:2,directional:1,Offered:157,bewteen:127,matured:32,hidden:14,glorify:42,Volvo:2,slicing:8,wholesalers:4,DuComb:2,"non-absorbent":1,"hyped-up":1,structural:1,APS:2,APV:2,APT:2,LaLonde:2,API:2,APM:2,"Thirty-three":2,interfering:8,Seidel:2,distillers:4,Labothe:2,Balogh:2,blinded:17,Byrum:2,Alastor:2,Dexatrim:2,Lefebvre:2,waive:39,Godfrey:2,phenolic:22,Almagest:2,Garanti:2,University:11,Secesh:2,Frisco:2,Notarius:2,alert:279,knit:781,Erdolversorgungs:2,"tie-ins":91,enlist:39,"his\\/her":12,Carolingian:1,bated:1,Delbert:2,Yamaguchi:2,waists:4,"mid-priced":1,Ponzi:2,"selection-rejection":1,Gurria:2,adepts:4,Yoknapatawpha:2,"loss-making":1,Postelle:2,wash:205,instruct:42,Rall:2,Cullowhee:2,"Hesse-Darmstadt":2,POLITICS:4,Stringer:2,Proctor:2,Vauxhill:2,Muggeridge:2,"two-bits":4,"R-6th":2,touting:8,listed:45,blossoms:4,underlie:149,"mid-fifties":4,listen:42,predictably:6,predictable:1,hayfields:4,"MIPS-based":1,Beautiful:66,Give:39,outlaw:63,halogens:4,"one-twentieth":3,Feess:2,seminars:4,Poussin:2,Attitudes:4,"Irish-Soviet":1,Jarrodsville:2,Angelo:2,PENCIL:2,Gradually:6,Angell:2,Bilanz:2,entail:42,privvy:1,Sumter:2,Angela:2,"Wis.":2,"side-stepping":1,"non-AMT":1,Mnuchin:2,Goloven:2,Angels:41,Williams:2,Flexural:1,"ex-Gov":2,concrete:3,Conlin:2,nagged:16,Schrage:2,"Angel\\":2,agressive:1,Russo:2,"Selway-Swift":2,Guglielmo:2,Wise:40,miscalculated:32,Stevric:2,doin:8,"Direct-mail":1,ipso:64,trapping:55,Dyer:2,undamaged:1,infidel:1,regulative:1,Ragavan:2,rollickingly:6,Meshulam:2,"kingdom-wide":1,departing:8,magisterially:6,Astrodome:2,Cockerel:2,SCHWAB:2,soluble:1,Confessions:41,Battenkill:2,shuffling:55,cousins:4,wasting:5,unreassuringly:6,Scandalios:2,stropping:8,Scrambling:8,Millicom:2,"Woman\\/McCall":2,Sweating:8,sniping:21,ELSINORE:2,kittenish:1,Taviani:2,Labor:11,Teletrac:2,"on-board":1,Completions:4,"off-farm":1,altruistically:6,Galen:2,flanked:32,Aricaras:28,Bottling:2,blew:16,Adrar:2,mandatory:3,fair:34,Hustead:2,Crawfordsville:2,exhanges:4,Daer:2,bled:16,faim:64,essayists:4,Craddock:2,Shelter:47,hunker:39,Convocation:47,Cusa:2,unalterable:1,Peugeot:2,ooze:25,invigorated:17,Clarion:2,Hessians:57,lefthanders:4,Reproduction:2,Horsham:2,angling:55,Capello:2,conclusions:4,Patients:57,Stratford:59,"up-front":1,dents:4,Leche:2,federalism:22,Aberdeen:2,vain:97,Pelto:2,Axelrod:2,Telegraph:2,Peltz:2,Holidays:4,EXPANDS:20,BPD:2,penalize:42,contestants:4,Kindertotenlieder:64,provincially:6,breathlessly:6,startled:45,Deadwood:2,Hewlett:2,Flowers:41,Pipeline:2,Vida:2,"Stuart-James":2,Confederations:28,harangues:18,Mothers:41,Waban:2,"Spanish-speaking":1,"fast-forward":1,moneys:4,harangued:16,pandering:8,paralegals:4,Boulet:2,Boulez:2,diverted:54,"phobic-like":1,ferreted:32,Peterhouse:2,"gray-beard":1,harvesting:21,skirts:18,biotech:3,Gainers:113,McGovern:2,"gas-gathering":13,FHA:2,Ealy:2,obeying:8,Domokous:2,Capitan:2,Capital:11,aqueducts:4,FHP:2,trusted:45,Topping:8,Killingsworth:2,Ulyate:2,Understandably:6,cumulative:1,Uncommon:1,haphazard:1,washouts:4,fairly:6,Intech:2,Mandhata:2,tops:18,hackneyed:1,Matsing:2,Khomeni:2,Acala:2,"H2Owner":2,SENIOR:1,"different-color":1,rescinded:54,Dorgen:2,Brazelton:2,"off-exchange":3,opinions:4,Russell:2,givin:8,"already-identified":1,Notebooks:113,disguise:95,financially:6,uncombed:14,Rebates:4,"market-style":1,Discours:2,campaign:25,bijouterie:64,Lautenberg:2,"middle-of-the-road":1,gooshey:1,"St.":11,DAMAGES:4,Apart:150,abashed:1,casually:6,Trinitarian:2,possible:97,firmer:299,Alamo:11,barnacles:4,Emilio:2,Byrd:2,firmed:32,Grass:2,Lords:41,Sheremetyevo:2,"new-found":1,seaside:3,prepositioning:1,steps:18,Lorde:2,bruited:17,bonkers:1,Mmes:28,macabre:1,broadcasters:4,"specially-designated":1,equestrian:1,Ihor:2,attendees:4,for:782,Dunton:2,fog:25,Tapley:2,Armenia:2,"H.R.":2,foh:127,colles:64,Lifestyle:2,"dollar\\":1,Garbutt:2,"By-word":1,unfixed:249,Burrillville:2,Czarship:2,Macon:2,insets:4,boycotts:4,dollars:4,citizens:4,turbinates:4,"Slo-Flo":2,makersa:4,AG:2,homesteads:4,rebut:39,"extra-literary":1,shopkeepers:4,Airgas:2,Fairfield:2,presenters:4,problematical:1,AF:2,spores:4,Cress:2,Crest:2,uneventfully:6,Silent:2,unambiguous:1,"Governor-General":2,Approached:17,Sabaneta:2,Elvis:2,Itsuo:2,"stock-purchase":1,"one-time":1,Sauter:2,"late-payment":22,Approaches:4,"ill-starred":1,physicists:4,"step-by-step":1,call:551,"benefits-services":1,halls:4,"million-unit":1,therefrom:6,manufacturers:4,Column:47,Tillery:2,demographically:6,shrilly:6,Bullion:2,udon:64,Lyubov:2,"once-promising":1,Tallarico:2,circumstantial:1,Lundy:2,ceteras:64,"cut-down":1,Whoever:76,"Waldorf-Astoria":2,Engineering:11,Prab:2,Honiss:2,lays:72,palm:25,Enrique:2,"Amsterdam-Rotterdam":2,looms:72,proved:85,"S.J.":2,Informal:1,drovers:4,fattened:54,proven:14,crumble:39,soothe:39,proves:20,Bakker:2,"Ab1,040":2,Knoll:2,McDaniel:2,protested:32,Leichtman:2,curiae:64,"school-leaving":1,conferring:8,Ojibwa:2,developers:4,"Pork-barrel":1,directionally:6,McNamar:2,maimed:1,"anti-wrinkling":1,"toned-down":1,Ranke:2,Englander:2,"asbestos-removal":22,Yemenis:28,Brought:17,Datapoint:2,"thyroxine-binding":1,Reporting:2,STORES:74,Stressed:17,Yusen:2,jarring:30,forage:22,Edisto:2,"RCA-Victor":2,"Market-if-touched":1,"core-jacket":1,suspending:8,"de-facto":1,Patricof:2,Jumping:783,shouldda:784,Iken:2,platitudes:4,Yusaku:2,Appointed:17,Mitsukoshi:2,cheap:34,"two-way":1,"merchandise-trade":1,ergotropic:1,"cornflake-size":1,Bosley:2,"pressure-sensing":1,trod:17,Bosler:2,Overwhelming:1,tear:95,Kali:33,unscripted:1,"Lamy-Lutti":2,team:44,inscribed:45,outdrew:16,prevent:42,"no-win":1,"side-stepped":32,"soft-spoken":1,"U.M.C.I.A.":2,educate:39,trop:64,Poppea:64,Afford:39,"three-door":1,Haverhill:2,reminiscent:3,necrotic:1,freaks:4,"L.A.":2,True:785,Trud:2,"pre-reform":1,reread:786,palindromes:4,cribbing:8,"memory-expansion":1,Warned:16,Traditionalists:28,Selectives:28,muskets:4,Namibian:1,assassinating:8,crumbles:20,bunkered:17,vitiates:20,thereunder:6,"four-inch":1,crumbled:112,"Prize-winning":1,love:787,bloods:4,Lie:128,"D.D.S.":2,bloody:1,Friedrich:2,qualified:48,consderations:4,"once-indomitable":1,traversing:8,Ranging:8,Limbo:2,cherishes:20,positive:3,"marketing-data":4,tightly:6,imaginations:4,cherished:81,wondering:55,"German-French":1,Balmy:1,introducing:8,"``":133,Syferd:2,Knogo:2,"half-digested":1,odious:1,visual:1,degrade:39,LDI:2,Blackwell:2,honey:788,DISTRICT:1,Conreid:2,"Istel-type":1,nether:789,values:18,"toll-free":1,"write-downs":91,Federal:40,catheters:4,"currency-market":1,Galahad:2,"Drug-Treatment":1,Wha:79,"A\\":1,fatherly:1,grosses:20,Liz:2,fps:4,grossed:16,"pro-growth":1,"four-to-one":6,Why:790,"five-year":1,"rubber-stamped":1,Sausalito:2,Herrington:2,mortally:6,spot:139,Pyzhyanov:2,applications:4,misshapen:1,Chiller:2,"Greek-born":1,Magadan:2,acceptances:4,filthy:1,shockingly:6,disagreeable:1,supersonic:1,"News\\/Retrieval":2,freestylers:4,"razor-edged":1,"Ciba-Geigy\\":1,Teleport:2,Wrath:47,FICOs:4,hiring:55,maneuvered:32,Inflate:39,"multi-million-dollar":1,spewings:4,"mini-post":1,Direction:11,solace:78,protoplasmic:1,cleanest:51,Forney:2,"value-boosting":1,Hispanics:65,Whitney:2,clothiers:4,Pitchers:4,Cahoon:2,embezzling:8,subordinates:18,Folly:11,Maximum:40,Farouk:2,epithets:4,Raceway:11,subordinated:81,Gadwani:2,joked:16,"foreign-trade":3,crushers:4,Pecos:2,"magnetic-tape":3,Bermuda:129,Heresy:2,compulsives:4,NET:1,Vanguardia:2,Jos:2,brags:72,reveled:16,Joy:11,Copie:2,collisions:4,contained:112,Joe:2,"better-than-thou":1,Detecting:8,Ivies:28,Jon:2,Places:57,Placer:2,"near-perfect":1,Mixed:98,Skippy:2,Averages:113,liberally:6,disguised:45,jetliners:4,Consent:2,collapsing:8,acutely:6,disguises:72,bothersome:1,Declinations:4,misused:54,Heath:2,Synthetic:66,Wordsworth:2,"walk-in":1,Lately:150,tooted:16,chubby:1,potted:7,"on-budget":1,sayed:16,Gains:4,Jamieson:2,indicate:42,microscopical:1,typing:21,"full-banded":1,Repeal:25,Pascale:2,Orangeburg:2,Katzenstein:2,blazon:39,Litchfield:2,tuneful:1,meddling:55,Torrid:2,Appeals:41,simmered:54,Torrio:2,Isadora:2,photographic:1,Isadore:2,storehouses:4,"quake-relief":1,"Integra-A":2,Zalles:2,Alf:2,Cavett:2,HOMESTAKE:2,"too-rapid":1,Oratory:2,nicer:12,"Congregational-Baptist":2,SALES:123,Ala:2,"L.A":2,Unsecured:1,Balinese:2,MacArthur:2,Jewish:66,Servive:2,"peace-keeping":22,Kleenex:2,WORKERS:57,Smurfit:2,McGinty:2,Daytonas:2,pagers:4,Ungrateful:1,maneuvering:27,Defoe:2,Montserrat:2,microwaves:4,indentured:17,Separately:150,"direct-line":1,microwaved:17,myne:404,Trainer:2,bads:4,stilts:4,Ormstedt:2,Merit:2,crooked:1,bade:16,Trained:17,"rim-fires":91,forecasters:4,"mini-supercomputers":4,walking:9,Nines:28,Lateran:2,Lateral:2,synchronous:1,Ferenc:2,lettered:16,Gelman:2,Huntsman:2,"Heel-Betty":2,Krishnaists:4,Balkanized:1,entreaties:4,posted:112,Bluebird:2,Westview:2,Juarez:2,surfaced:32,infallible:3,Geraghty:2,intermixed:16,LeCompte:2,maniacal:1,Cohn:2,Linsey:2,bombs:4,"COLGATE-PALMOLIVE":2,masseuses:4,WXRK:2,Dashwood:2,"All-American":2,Biggest:705,Cumbancheros:2,Olivetti:2,"cash-raising":3,enlightening:30,wielding:8,bootleg:3,"broadcast-and-cable":1,testimonials:4,Quad:2,teens:91,presage:42,Debora:2,inappropriately:6,McLean:2,unpremeditated:1,Directors:56,reigns:20,Tolentino:2,Directory:2,undermine:42,Gisors:2,Kalison:2,twotiered:1,Schnacke:2,nomias:57,"bare-armed":1,WWL:2,walkers:4,Virgilia:2,guesstimates:4,Sudier:2,Deus:64,throttled:17,Reames:2,vacation:78,"seven-year-old":1,needlessly:6,"Caravaggio.":2,daylong:1,"start-up":719,Depew:2,mischarges:4,"Matra-Harris":2,Birth:2,Ellwood:2,rooftops:4,"pass-through":1,Greatest:705,felling:8,ALII:2,"Chicago-Montreal":2,Grains:57,Quantum:2,perpetuate:42,"MX-6":2,Jihong:2,"O-B":2,"hard-edged":1,reliefs:4,"RISC-based":1,Machado:2,graceful:1,"Istiqlal-sponsored":1,Rios:2,Cedars:28,Macrophages:4,Thaxters:28,coconuts:4,Granther:2,"war-like":1,decertified:17,askin:8,oceanographic:1,Spoon:2,Eakle:2,bulletproof:1,Iron:11,"Test-preparation":1,"McCann-Erickson":2,psychiatrists:4,Fleisher:216,veering:8,vacant:1,pacing:5,dancelike:1,retrace:39,Cuddihy:2,Abolitionists:4,Incarnation:2,truculent:1,exaggerating:8,"pay-cable":3,Abend:2,snarled:16,Proceeding:8,Markets:41,underline:39,"much-smaller":1,Intertan:2,prominently:6,SKIDDED:16,Harvest:2,Decision:11,skies:4,Dammit:405,"Shak.":2,DeForest:2,retract:39,Peck:2,fringed:14,fossils:4,"action-oriented":1,Synergistics:2,GLITTERS:20,Artillery:47,souvenirs:4,undergirded:16,"four-games-to-one":1,slings:4,grouping:21,Zur:64,picnickers:4,thinke:358,Sloan:2,playin:8,racial:1,thinks:20,belched:16,"pollen-producing":8,authenticate:33,dimensions:4,Flannagan:2,"last-place":1,"two-year":1,"pre-18th-century":1,Gershman:2,stroking:21,"First-half":1,Planning:11,Valladolid:2,"ink-jet":1,"retail-based":1,Ruby:2,"Saint-Geours":2,"armored-vehicle":1,leaned:32,destroys:20,"home-buying":3,Neece:2,Thatcherism:2,Albertville:2,Sammye:2,spotlights:20,Stunned:17,"off-beat":1,realignments:4,dibs:4,Radius:2,practicable:1,"ASSOCIATION-COLLEGE":2,gesturing:8,"stressed-out":1,infielders:4,fundraising:55,flawed:7,image:25,woodcutters:4,dour:1,Least:51,"new-share":1,freaked:17,Feralloys:2,fritters:4,SHOPPE:2,"tie-breaking":1,"Ait-Laoussine":2,Empty:66,Lease:11,reinvigorated:17,bookcases:4,"Hans-Peter":2,worshippers:4,Demler:2,Reunification:47,Gompachi:2,hookers:4,Harro:106,EUROP:2,mandates:18,Mahal:2,Mahan:2,Vosges:111,Harry:2,antiquated:1,Caufield:2,oversoft:3,"VAX\\":2,"design-side":1,"sang-froid":64,flatteringly:6,unwaivering:8,Seminar:2,sackless:1,ignorant:1,"well-molded":1,hobbies:4,Outfielder:11,"fifty-fifty":1,Sapio:2,Scoring:2,beaming:30,Payroll:2,Bancaire:2,Tandem:2,Linsley:2,administers:20,MacDougall:2,"near-luxury":1,Kurdish:1,Wickersham:2,lendable:1,enrolled:45,"near-by":677,"Sino-U.S.":66,Sandberg:2,restorers:4,"Short-sellers":113,gastric:1,Cici:2,Chengdu:2,"Korean-U.S.":2,"Party.":2,gravitates:20,BRING:39,restricted:81,original:3,Lefty:2,Caesar:2,"index-futures":176,"bran-processing":1,Transamerica:2,improperly:6,content:70,Ayob:2,Bietnar:2,Laws:123,endogenous:1,undeserved:1,puzzled:81,Rhona:2,crestfallen:1,candid:1,"Twenty-year-old":1,scapegoats:4,predominately:6,"price-supporting":1,cunningly:6,Piet:2,ceding:8,Durney:2,LOOM:20,"gold-mining":3,confederates:4,nonsystematic:1,Ismail:2,facsimile:22,Vita:2,Claridge:2,penalties:4,Acoustical:1,canvass:25,turning:5,situated:17,"two-and-a-half":1,Ballestre:2,"semi-skilled":1,Caesarean:1,TransCanada:2,excitatory:1,"Toronto-Dominion":2,Callaway:2,semifinalists:4,microchip:22,contrast:44,Tracing:8,Compromises:4,Crescott:2,hours:18,smartest:51,Calvary:2,irrespective:6,Bickford:2,yellowed:17,phrasings:4,"still-mammoth":1,Lyons:2,reactionaries:4,iuvabit:64,"Palestine-General":2,skyrocket:39,pick:95,undersize:1,smuggle:39,"multiple-use":1,"Marne-la-Vallee":2,unaggressive:1,rattlesnakes:4,marriages:4,excellently:6,indoors:163,Servatius:2,Lacey:2,Introducing:8,ridding:8,Marushita:2,"one-half-point":3,Balkan:40,implore:39,freest:51,pitching:55,recouping:8,sanitaire:64,reminiscing:8,inferential:1,Cruickshank:2,"no-good":1,tightfisted:1,nonbanking:1,Eisler:2,"casino-hotel":791,"super-charged":1,Ladbroke:2,cunning:3,Cheese:2,keeping:55,apportion:39,science:22,Fathers:41,Bornholm:2,gesticulating:8,Omnicom:2,betties:4,professions:4,Conference:11,Dardalla:2,Hassenberg:2,gallop:25,poetizing:8,"anti-fungal":1,STET:2,sense:24,Mutsch:2,Shintaro:2,dazzle:39,interconnect:25,Misunderstanding:55,Tacit:2,monopolistic:1,"A.A.":11,Caisse:2,unattended:1,wiles:4,aplenty:97,Snead:2,Tacloban:2,Soundview:2,Swiss:198,evaluations:4,purled:32,Bottega:2,Bongo:2,Arbs:4,Zacharias:2,premonitions:4,Steinkrauss:2,Arby:11,Gaechinger:2,wrench:63,deafening:30,reshape:39,Bastin:2,"Okla.":2,geographic:1,Multiples:28,crouchin:1,radios:4,"Torrid-Adios":2,Castparts:2,"network-services":1,TRIPS:4,Benjamin:2,Hiltons:28,unimposing:1,Kims:111,polarizing:8,grade:25,Brookline:2,Nichols:2,Anyhow:150,"pool...":102,propose:42,"big-budget":1,Overly:6,Alsthom:2,skipper:25,misuse:44,Hime:2,nighted:1,stewed:249,"Christmas-like":1,always:6,IPO:11,IPM:2,Aftershocks:4,experiencing:8,Sounds:20,errata:4,"thimble-sized":1,Destinations:4,status:80,Bryn:2,"m&a":1,NGL:2,throwin:55,"high-living":1,"Watkins-Johnson":2,bouquets:4,twitched:16,repressive:1,silky:1,tipsy:1,Manning:2,sparingly:6,SunGard:2,"single-A2":1,holstered:112,Movie:11,misses:72,race:25,Filtertek:2,Astronomy:47,"hard-pressed":1,attentions:4,"stock-margin":1,"single-A\\":47,reformulated:14,trite:1,premediated:1,Dugdale:2,Maude:2,"pro-sealed-records":1,"well-nigh":6,Inspection:2,prefab:1,bumped:32,Wanger:2,rack:44,Cathay:2,w:127,bumper:617,volumetrically:6,delicate:1,"pay-hike":1,gazed:16,Winery:2,emblazoned:17,shantytowns:4,number:44,twisted:81,murmured:16,guar:1,ethereal:1,"Revenue-short":1,numbed:17,Corruption:47,"black-figured":1,Sprinkle:39,"R.A.F.":2,heads:18,Paperweight:2,boating:21,threatening:30,heady:1,Auger:2,fruitfully:6,"Rayburn-Johnson":2,relies:20,"sun-kissed":1,Milano:2,Allegany:2,"Jane\\":2,Stannard:2,Nightshade:2,conjunctions:4,Gambit:2,grace:44,Grabski:2,Hercule:2,critically:6,Shortcuts:4,freighters:4,Toyo:2,"Warner-Chilcott":2,tablespoonfuls:4,determined:45,Atomic:40,KEY:1,Toys:557,IndoSuez:2,Kasriel:2,remembers:20,"hi-graders":4,livers:4,Redfield:2,Projected:17,vitally:6,Crude:10,Stoneware:1,mawkish:1,Suggestions:4,basics:4,Aboff:2,Club:11,Pramual:2,Poltawa:2,commemorates:20,bovines:4,Murville:2,commemorated:54,play:182,Mokae:2,relied:118,yaws:4,Caere:2,yawn:25,Octavia:2,plan:505,Jervase:2,defections:4,"foreign-affairs":4,"Cheerios-brand":1,Redhook:2,tensioning:8,Laidlaw:2,researchers:4,"self-managing":1,smocks:4,strutted:16,Carolinas:41,Explain:39,interceptors:4,Ralphs:2,"C.J.":2,"aluminum-makers":4,hipper:12,impact:25,Conferees:4,Labe:2,Decimus:2,stockholders:4,Rhyme:39,"cut-glass":1,Harrah:2,failed:112,fugual:1,Jelinski:2,"medical-benefits":4,"conservative-communist":1,"five-star":1,Patriot:2,Pascagoula:2,Kunz:2,Frazee:2,Primo:2,impregnable:1,Rectangular:1,Niobe:39,Cilcorp:11,closely:6,Vale:2,Hearts:111,AUDITS:4,Frazer:2,COTTON:47,Kahan:2,Rabbits:4,Help:63,Chapelles:28,stirling:1,Held:54,"lower-volume":1,tottering:13,inductees:4,Helm:2,Hell:792,overdrawn:1,Graves:2,Adrienne:2,Cyber:2,booklists:4,geologic:1,backstitch:25,Zeitgeist:2,Akita:2,muted:45,Advocate:2,hatcheries:4,Lauderdale:2,Drell:2,Florido:2,Cambria:2,Enzymatic:1,intolerant:1,Florida:2,Against:124,selectively:6,Scholarship:47,Bostonians:28,Hayne:2,agriculteurs:64,"no-walls-no-doors":1,phosphorous:1,Kapnek:2,Vigreux:2,"floor-to-ceiling":1,"multi-colored":1,soddies:4,Nina:2,shortsighted:1,"Most-recommended":1,Wrestlemania:2,Alokut:2,smashing:261,corresponds:20,Lounge:11,bayed:32,"all-around":1,Gibson:11,Robbins:2,Macy:2,Dwarfing:8,Mace:2,Hartmarx:2,Jennison:2,Hintz:2,assassinated:54,Mack:2,Quezon:2,Hints:4,firm:70,Otradovec:2,"high-pitched":1,fire:25,equestrians:4,Concert:2,"all-time":1,"next-to-last":1,roustabouts:4,"Debt-free":1,Reinaldo:2,"un-advertisers":4,dotting:55,Strategy:47,Armond:2,mots:64,Sunflowers:4,Pertschuk:2,vanish:149,Armonk:2,funny:1,choking:5,SESCO:2,elevated:45,"market-sensitive":1,"pressure-measuring":1,Morimoto:2,ledgers:4,Bluff:2,"longer-run":1,Segnar:2,elevates:20,Bierbower:2,smokable:1,Salive:2,expediting:8,"Kimbell-Diamond":2,leapt:16,leaps:18,Ishihara:2,focal:1,recent:1,canned:7,whaddya:79,visualizations:4,Ibsen:2,cognoscenti:4,DARPA:2,Petroliam:2,plagues:20,"open-year":1,moonlike:1,"small-capitalization":1,Coulson:2,"anti-drug":3,"co-ordinated":1,pillars:4,hues:4,Yuzuru:2,outcasts:4,Numb:1,clutches:18,demands:18,Impasse:2,teleconferences:4,"Executive-branch":1,clutched:32,Probus:2,pouncing:8,Daily:294,pertinent:1,parliamentarians:4,"empty-shelved":1,underway:218,shimmered:16,CRIMINAL:1,"late-day":1,Motoyuki:2,Burmah:2,irresistibly:6,Burman:2,Coyotes:4,unfazed:14,Hydraulic:40,Hawksley:2,indigent:1,irresistible:1,abandon:182,soirees:4,Sufficient:1,"sub-Christian":1,jokingly:6,prosecuted:54,Vacuum:11,"jumping-off":1,Lubriderm:2,Loon:2,Antonia:2,Szuros:2,Loom:2,Look:793,Rosalie:2,STUDENTS:4,interpreters:4,Colossus:2,Antonin:2,Antonio:2,Cervantes:2,Pinellas:2,tidal:1,by:475,Loop:11,glorying:8,discontented:1,"data\\":1,Espenhain:2,Papasan:2,"sub-markets":4,"stock-selection":1,forgave:16,"book-breaking":1,hatched:54,"non-swimmers":4,Hertz:2,fitfully:6,glumly:6,dubiously:6,plainest:51,Pickard:2,doubters:4,"bare-footed":1,Pollock:2,primarily:6,Bosco:2,Bosch:2,Shantou:2,chide:42,shillings:4,"life-bettering":1,"knee-jerk":97,Bernie:2,Giacometti:2,byzantine:1,polytonal:1,relaxed:81,buttery:1,"construction-related":1,archaic:1,link:44,Trite:1,Turnpike:2,line:486,Seasonally:6,Caryl:2,relaxes:20,gizmos:4,Bhutto:2,Jeff:2,thickeners:4,Buena:2,MEN:91,MEI:2,horned:1,"below-investment":1,MET:16,skis:4,seekingly:6,NonProfit:2,"industry-supported":1,Birdwhistell:2,Kellner:2,nationalist:3,defined:81,"more-than-$":84,"anti-pesticide":1,Crop:2,"non-pathogenic":1,"rate-slashing":1,Manhattan:2,defines:20,phantom:794,Comair:2,"electronic-trading":3,Mulford:2,ILLINOIS:2,"Litman\\/Gregory":2,Ownership:11,conditioners:4,swirl:25,sails:18,"European-American":2,"all-weather":1,"Abbe-Direct":2,Mambo:2,robots:4,proclamations:4,mealy:1,bodily:97,meals:4,hells:4,tailored:14,Hoak:2,Xuanping:2,metabolize:39,reconditioning:8,Hoag:2,Aegis:2,"Dong-A":2,hello:175,"Leninism-Marxism":2,Guardia:2,code:25,guzzles:20,sorrier:12,Contemplating:229,Nissans:28,renown:25,Construcciones:2,mercenaries:4,guzzled:16,Giuffrida:2,"Civil-rights":152,grandly:6,"non-monopolistic":1,Cares:20,McAllister:2,Step:269,Sanatorium:2,dislike:44,"Beaux-Arts":2,moot:1,Racketeer:2,Truckee:2,Noonan:2,Glucksman:2,jist:6,Varani:2,Lagoon:2,BANKS:57,Regardless:6,"second-round":1,atonally:6,recit:64,Hagen:2,"Ste.":2,Hager:2,Directly:6,Extreme:66,logistics:4,disordered:7,besieging:8,Scully:2,"Boy/NNP...":102,Dreadnought:2,munitions:4,incidentally:6,umpteenth:1,vintages:4,"price-reform":1,Provenza:2,inpatients:4,"B\\/T":2,twins:4,proffer:39,Bodenheim:2,Verbindungstechnik:2,unmask:39,led:506,eminently:6,les:64,let:373,lex:64,Nofzinger:2,Commonwealth:11,"right-to-lifers":4,"dried-out":1,"non-strategic":1,Himmler:2,impressionist:22,residents:4,Elbaz:2,Fiddlesticks:4,"Anglo-Saxon":40,Britannic:1,Britannia:2,complying:8,Distributed:17,Propertius:2,boxy:1,sensitize:39,"Year-ago":1,Falconry:2,Bretherick:2,standing:5,"half-aloud":6,pawn:25,Seagram:2,recalling:55,Borneo:2,Vanderbilt:2,doubt:486,Pignatelli:2,"hot-buttons":4,Merchandise:2,confiscate:39,Westin:2,Noskova:2,queerer:12,occurred:32,approached:32,deregulate:63,Rogues:28,winches:4,Interfinancial:2,CAC:2,Rifles:4,DISTRESSFUL:1,Heartburn:2,endearments:4,reproduce:39,Midco:2,Linsenberg:2,drill:25,"whodunnit-style":1,Haberle:2,wearing:8,streamed:32,bent:626,DOLLARS:28,Banawans:28,transpired:54,Cato:2,Cats:2,Catt:2,bend:63,Catz:2,"five-hundred-dollar":1,Korneyeva:2,"tune-in":1,Claytor:2,Clayton:2,Nationalcar:2,McGill:11,Prieska:2,"good-living":1,Rental:40,"value-problems":4,aspiring:13,Araskog:2,await:42,tactually:6,"Ximenez-Vargas":2,"WCRS\\/Boston":2,intraepithelial:1,weevils:4,prawns:4,Community:11,acquitted:54,allot:39,allow:42,Raisa:2,Regina:2,Raise:216,Regine:2,"Toulouse-Lautrec":2,Vientiane:2,"fine-tooth":1,snafus:4,Flumenophobe:2,Match:11,"once-distinct":1,Secretariat:11,cycads:4,Slenczynka:2,Liberace:2,"heart-rending":1,Traficant:2,Blamed:17,"co-sponsor":25,designs:18,Coudert:2,Feverishly:6,Senshukai:2,"yen-denominated":1,Soliz:2,earthlings:4,Melanesian:2,mysteries:4,Cristo:2,irks:20,draftees:4,sufficiently:6,delightful:1,Arkansas:113,hoodwinked:17,scants:20,"models-on-the-way-up":1,Paperin:2,habitually:6,"broad-appeal":1,Macneff:2,decays:20,Marum:2,banal:1,Multnomah:2,bad:34,Genentech:11,mafias:4,subdivisions:4,Giuliani:2,bunches:4,"money-saving":3,reformist:22,oblong:1,APPLIED:2,Statesman:2,Grunnfeu:2,Misbegotten:2,incalculable:1,ban:44,ignominious:1,dismantled:54,secants:4,looting:21,retooling:55,latches:20,Summerfolk:2,Sammartini:2,dismantles:20,shucks:795,latched:54,"J.W.":2,Changyi:2,endowments:4,blown:17,Maccabee:2,Cleve:2,privies:4,BAY:2,victimless:1,Stabilizing:8,blows:18,Donnell:2,Peeping:2,Ryzhkov:2,Lazarus:2,"Lintas:Campbell-Ewald":2,Shearn:2,"world-amid":127,adopts:20,Evangelical:66,"Inquisitor-General":2,"co-op":47,Xiaoping:2,opalescent:1,"non-authoritative":1,subliterary:1,Sector:2,Daiei:2,colleagues:4,Classical:2,Livshitz:2,tortured:81,Kilduff:2,briefing:21,misunderstand:39,kissings:4,"yrs.":4,Boom:2,stopovers:4,Bosque:2,Synod:2,Toornstra:2,heeds:20,Tobishima:2,adjunct:22,"sharp-limbed":1,"pre-conditions":4,Mayland:2,equaling:8,Mississippians:4,bloodsucking:8,Greece:2,carcasses:4,socializing:8,"British-Dutch":1,"un-American":1,industryas:4,ignited:32,latecomers:4,unscramble:39,"self-reinsure":39,Demery:2,Checked:17,"pre-1967":1,"pre-1960":1,Morristown:2,bikes:4,Turnaround:11,Under:124,Independence:11,resells:20,Spraying:8,squirreled:17,enamelled:1,softens:20,Tracks:57,Gloomy:1,finger:25,flinch:39,exchanged:54,Rommel:2,move:24,meditative:1,Whether:124,Linvure:2,exchanges:18,committees:18,"five-story":1,Danvers:2,SLTI:2,stomachwise:6,"F.G.":2,"power-driven":1,rein:63,"four-wood":1,anomie:64,temporarily:6,anomic:1,C:796,Handbook:47,generational:1,forepaws:4,"crystal-lattice":3,Feebly:6,"book-burning":1,Mellanby:2,Cadwalader:2,DeVillars:2,Korotich:2,Lazard:2,Lazare:2,"environmental-impact":1,Intriguing:1,"two-day-old":1,aspires:20,grasp:95,gnomes:4,historians:4,restrictions:4,figured:85,"five-fold":1,Mikado:2,"heretofore-accepted":1,Centennial:2,Shayne:2,"cold-war":1,adjusted:81,hinterlands:4,Alceste:2,Greenpeace:2,Hanoi:2,revamp:63,migrant:3,Pratap:2,Bruhn:2,Garry:2,crafted:54,Passos:2,Interagency:2,"neocortical-hypothalamic":1,Vivien:2,quotas:4,"Franklin-Trout":2,Vivier:2,Clozaril:2,recurring:8,"U.S-based":1,Lukas:2,"junk-bonds":4,"fine-boned":1,toothless:1,emphaticize:39,Wilder:2,Presidents:92,"Heel-Kaola":2,"poured-in-place":17,Choctaw:2,"Hanover-Supermarket":2,Lancome:2,Tire:11,globigii:4,Panorama:2,surprisingly:6,sentencings:4,Sort:25,Badly:6,"long-line":1,Menendez:2,Sore:1,Sutcliffe:2,Paints:2,Handling:8,Tipton:2,Imprisoned:17,elicits:20,paving:8,dust:44,Ardito:2,"light-hearted":1,nurtured:32,discounted:81,disrupted:81,"single-malt":1,confronted:54,unceasingly:6,Schoch:2,command:24,Phrase:2,Blocked:17,bananas:4,rambled:16,LaserWriter:2,repressers:4,Equivalents:4,Monitoring:21,rambles:20,Myers:2,afflicted:14,Wearing:229,LaMacchia:2,residential:1,"anti-productive":1,sickened:45,Eduard:2,Wieland:2,innocents:4,"U.S.-donated":1,concretistic:1,"flat-panel":1,magnify:39,Reginald:2,Lavoisier:2,Syed:2,Norwegians:28,"heart-stopping":1,Booker:2,Lauer:2,Secomerica:2,susceptibilities:4,accelerating:797,becomin:8,Gelles:2,Geller:2,"war-torn":1,"reform-minded":1,Westwood:2,landscapers:4,replacement:22,"rumor-happy":1,shuttling:8,Guaranteed:798,unaudited:1,Acton:2,"recession-resistant":1,Comptroller:11,transport:24,agriproducts:4,avoid:347,"environmental-services":4,apprehended:17,InvesTech:2,gummed:17,Gives:20,Hanauer:2,stags:4,Pence:2,Gelb:2,Geld:2,shortchanging:8,Gell:2,Refill:39,stage:24,sister:22,Boliden:2,"recession-sensitive":1,Sacheverell:2,Yosi:2,Calgene:2,Shelley:11,diabolical:1,Chaves:2,Carder:2,Rosella:2,Pedro:2,Roselle:2,HansGeorg:2,booed:16,Hagerty:2,flailing:8,borers:4,Comus:2,"federal-formula":1,Pavlovsky:2,disaffected:1,"British-based":1,"Perzio-Biroli":2,"savings-deposit":1,Sudikoff:2,"Tylenol-tampering":1,"data-transmission":3,Gentiles:28,justifying:8,Hambros:2,"Lanvin-owned":1,imbibe:39,pretax:3,naturally:6,funnel:63,Weld:2,Interestingly:6,Well:799,assassins:4,Welt:87,"quasi-folk":1,Orix:2,Telescope:2,Goldwin:2,smooth:82,Hebron:2,Orin:2,Ottauquechee:2,"on-and-off":1,"discount-toy":1,coiffed:1,Mandolin:2,recognize:42,orbit:25,"R.I":2,Clinical:40,FEMA:2,"six-count":1,mushroom:24,Whitehall:11,CL:2,"non-accruing":1,Volume:47,PETS:4,Fagan:2,"four-cents-a-share":1,"three-body":1,quarts:4,Covent:2,woes:18,Merited:1,Timony:2,Chronometer:2,"uranium-recovery":1,South:566,consisently:6,Girard:2,Unice:2,gearboxes:4,forthrightly:6,Unico:2,"Wm.":2,"Dowex-2-chloride":47,"extra-thick":1,questionnaires:4,rural:1,Komori:2,Overwhelmed:17,"well-drilled":1,Parretti:2,Lucretius:2,"million-and-counting":1,Lodge:2,Cascaded:17,"co-sponsored":85,Pressman:2,Watch:169,PHILADELPHIA:2,CV:2,"heavy-truck":19,Changing:30,Martyrs:2,restock:39,"DMB&B\\/International":1,optimists:4,Reasoner:2,"here...":102,"D.s":111,wagons:4,Szolds:111,bewildered:14,Lifecodes:28,"D.C":2,Attic:40,Sangetsu:2,Sufi:1,"D.K":2,indices:4,Spahn:2,vacuous:1,"pre-vision":1,diverting:8,occasioned:17,Golda:2,Staniszkis:2,Collins:11,"letter-writing":1,Generating:2,Churchyard:2,"self-sufficient":3,Feringa:2,Merner:2,above:800,churches:4,counters:18,Cosmopulos:2,sinkt:64,sinks:20,"low-crime":1,delicto:64,"H.P.R.":2,delicti:64,"Jean-Claude":2,McGrath:2,Emcee:2,studs:4,"movie-like":1,balance:419,Burkes:111,Labrador:2,"pre-marital":1,study:24,Lambarene:2,"STAR-STUDDED":1,Hush:235,Delmont:2,Husk:2,"fifth-least":1,"most-respected":51,"think-alike":1,Nac:2,"Time-Life":2,Legislation:47,Figone:2,cheats:20,Katmandu:2,glance:25,auditing:21,"highly-confident":1,Cornona:2,Drugs:92,chooses:20,"well-trained":1,circonscriptions:4,supercolliding:8,Steiners:28,renovations:4,fractions:4,Horatio:2,Jonquieres:2,traceable:1,"Robusta-producing":1,reign:24,escapist:1,Gould:2,continual:1,Krasnow:2,EUMMELIHS:2,bunnies:4,permits:72,"bomb-detection":1,"Rios-embryos":4,Nap:2,immutable:1,"communist-led":1,Atrium:2,"export-promotion":1,Laufenberg:2,Marxist:66,bureaucraticized:1,Barbaud:2,Arfeen:2,"thatched-roof":1,Stuckert:2,Marxism:2,Hogan:2,sweethearts:4,aerated:17,Purdew:2,photocopy:39,Heidelberg:2,Corlopam:2,aerates:20,boats:4,REACHED:2,ordinary:3,fudge:95,"radio-show":1,RBSPr:2,classifying:8,Dylan:11,lotteries:4,Establishing:8,"Anglo-Irish":1,overdressed:1,Entwhistle:2,chilled:81,"last-second":1,Dryfoos:2,supermarkets:4,green:104,remonstrate:39,MegEcon:2,Wilmot:2,twelvefold:1,devote:42,consent:25,jabs:4,Huichol:2,Hazy:2,resonable:1,crimping:8,Nonsmokers:2,ASCAP:2,DeLuca:2,refectories:4,Finish:39,videotapes:4,somewhere:43,"air-conditioned":1,Volcker:2,Judge:128,precipitate:63,Encare:2,interpretive:1,then:591,Mergens:2,affected:801,thei:53,locusts:4,amenable:1,"tire-making":3,Periodic:1,clogging:8,thet:802,ther:803,moneyed:1,gallows:19,relishes:72,subpenas:4,JUDICIARY:2,grows:20,Sforzt:2,seedlings:4,Armada:2,Vaclav:2,Rainbow:2,Zipperstein:2,COURTS:4,list:24,crimes:4,cabanas:4,Bevmark:2,cascading:30,retied:16,Biographical:2,pigments:4,Myth:2,dialects:4,"buy-backs":4,"Neiman-Marcus":2,"bacteria-based":1,Eritrean:66,Jakarta:11,"pool-owners":4,Contradictions:2,sliding:30,disagreements:4,"W.F.":2,marketwise:6,lawless:1,depots:4,"drug-free":1,deceptive:1,Massage:47,incorporates:20,unfulfilled:1,recovering:8,Certification:2,Tappets:4,Rothman:2,Determined:17,aborning:6,incorporated:81,"self-conceited":1,JAPAN:2,"student-athletes":4,"re-examining":8,Mediobanca:2,crooning:8,AIDS:2,Nestor:2,Samper:2,adventitious:1,Jaycees:28,"self-policing":1,Yokich:2,plentiful:1,airs:18,Nintendo:11,airy:1,inflate:39,warded:17,Judgment:2,"copper-producing":1,Clarcor:2,B:804,Imposed:17,Hiroyuki:2,Rockville:2,Cinnaminson:2,FREEZE:39,exhilarating:1,"surface-active":1,Improprieties:4,Sadakane:2,"short-to-medium":1,Algemene:2,Dravo:2,Advisory:129,Set:805,glorified:14,Suresh:2,Advisors:41,Trittico:64,Sex:47,binds:20,"black-bearded":1,Sea:11,Sen:2,solely:6,Downers:2,manned:103,laboriously:6,shoals:4,stooooomp:39,"Occupational-Urgent":2,Newcomb:2,"Arnell\\/Bickford":2,Finot:2,Rosser:2,subduing:8,toursists:4,pianissimos:4,Brookfield:2,Liming:2,Bakersfield:2,Meat:11,Eamonn:2,Conran:2,Boni:2,Bonn:11,BRAMALEA:2,Conrac:2,nutritive:1,Vision:2,Bond:11,Lindy:2,"Bourke-White":2,Monetta:2,neighborhoods:4,emasculated:16,producin:8,Lauderhill:2,accounted:32,briskly:6,renting:55,subtly:6,Peduzzi:2,eminent:1,Amclyde:2,subtle:1,blotting:8,alluded:32,Janeiro:2,Eiffel:2,Wastewater:2,ConAgra:2,"German-speaking":1,Ebrahim:2,musta:190,"Hoffmann-La":2,do:806,"seven-digit":1,intersect:42,Peepy:2,di:87,"Republican-governor\\":1,Hopson:2,dd:16,Souphanouvong:2,da:11,protectively:6,Grinsfelder:2,statutorily:6,"side-step":33,du:87,UJB:2,Tordella:2,Corry:2,irregularities:4,Carrara:2,"large-business":1,bondholdings:4,Rockport:2,"limited-substitution":1,PANDA:2,squeezed:54,triumphed:32,ANGELES:2,Murrin:2,depends:20,Orissa:2,Toalster:2,Askin:2,jocose:1,Coulas:2,sourcing:21,"lightning-fast":1,tainted:471,props:4,Caldera:2,Ratcliff:2,Minden:2,accord:486,downgrades:4,Feelings:4,Doria:2,Doric:1,Cochrane:2,Abrupt:1,Teraoka:2,"I.B.M.":2,packages:18,downgraded:32,Doris:113,scribbling:8,"added:``":133,penurious:1,parried:16,Custer:2,Kofanes:4,coy:1,"open-collared":1,Navy:11,unverifiable:1,Langton:2,Ratliff:2,con:807,"Forty-second":1,Initial:1,Alamogordo:2,Board:144,"TV-production":1,polynomial:22,beheaded:16,jays:4,broadens:20,petty:1,"five-column":1,buffets:4,"margin-the":808,corollaries:4,nonverbally:6,"print-out":1,"search-and-seizure":1,Wedbush:2,Riverboat:2,"injury-prone":1,surreptitious:1,"Long-term":66,"Fin-syn":1,naval:1,convening:55,MAJOR:1,chorines:4,"trigger-happy":1,"high-up":1,"anti-cigarette":1,"non-ideological":1,Worcester:2,"iodide-concentrating":1,Immigrant:1,Bettencourt:2,OFFICIALS:4,vernal:1,voice:24,overtaking:8,JAILED:17,encyclopedias:4,Wallenberg:2,Rubio:2,Rubin:2,Kizzie:2,Rubik:2,"Disk\\/Trend":2,recurrent:1,plated:17,utopias:4,Canny:2,"E.R.":2,"Thai-Cambodian":1,bifocal:1,Frick:2,Alisarda:2,evil:3,Spinola:2,pubs:4,CRESTMONT:2,elucidative:1,Austins:28,Minh:2,Clarice:2,CalComp:2,thy:809,Ishii:2,AAb:2,Mind:260,Mine:810,Ming:2,the:811,Mint:11,Pete:2,Fanuc:2,Wellcome:2,Storyteller:11,"printing-systems":4,Pets:4,"Non-callable":1,"cross-border":1,"T.J.":2,Ballwin:2,hills:4,"cost-conscious":1,reuniting:8,hilly:1,passive:3,"anti-Communists":28,cranberries:4,Barclay:2,orzae:4,"behind-the-scenes":1,Wagon:2,mocked:54,ashore:218,"million-to-$":84,Athlete:2,apostates:4,caps:18,barge:44,Gerard:2,"commission...":102,Niedermaier:2,Amabile:2,Grocer:2,"gas-cooled":1,Northland:47,Styka:2,antique:3,warily:6,"once-prestigious":1,productions:4,constables:4,Bisiewicz:2,"one-percentage":1,Poker:47,Relationship:2,ransacked:54,purple:3,bullyboys:4,"poor-mouth":1,"black-balled":17,effeminate:1,Wilpers:2,Voiture:2,"Fel-Pro":2,Chairs:4,confluent:1,angering:8,Place:128,gangsterish:1,"Packwood-Roth":2,Eileen:2,Renzas:2,routings:4,Baim:2,writers:4,"Democratic-led":1,"Westinghouse-Mitsubishi":2,Verreau:2,Cut:216,Kelleher:2,Cup:11,pays:20,Dadaism:2,Snecma:2,"back-to-back":1,Cub:2,formidable:642,Maryann:2,renovating:8,workbooks:4,"counter-efforts":4,wailed:32,USOM:2,Existentialism:2,unchanging:1,"Jackson-Vanick":1,causative:1,fight:44,Chiuchow:2,"firm...":102,accordingly:6,"pre-register":39,CuK:1,Carberry:2,Barnabas:2,"interest-rate":22,sagging:101,Weinbach:2,Stacked:1,"president\\/public":1,Impose:39,Aqua:2,guppies:4,"wood-encased":1,prepayments:4,Woven:17,Armuelles:2,strongrooms:4,Ferreira:2,Fairness:11,Punching:8,Tarkeshian:2,"City-type":1,mails:4,"non-traders":4,MCC:2,paragraphs:4,"bell-ringing":1,Malta:2,evidence:78,Steppel:2,Valin:2,newlyweds:4,PageMaker:2,Gustafsson:2,disputable:1,"bourgeois-bashing":1,"system-specific":1,presumes:20,Running:210,interested:103,Asteroidal:1,"pro-rated":1,Trucks:57,Mask:2,Kornfield:2,polite:1,mightily:6,Airline:11,MCV:2,Bankler:2,"two-to-three":1,Lumumba:2,"Haut-Brion":2,Safi:2,doctrinally:6,Masu:2,TRANSAMERICA:2,Sandalwood:2,Safe:40,wakeful:1,"drop-off":22,"medical-leave":1,Elephant:11,Maughan:2,Maugham:2,rectangles:4,lactating:8,"non-amortizing":1,honoring:8,Lupatkin:2,"health-oriented":1,outplayed:16,Dominick:2,atrophied:17,Dominici:2,Hedge:2,presumed:81,Westside:2,"Mercedes-Benzes":65,Dominica:2,Winterhalder:2,alumnae:4,Economique:2,Recapitulation:2,"bone-weary":1,aldermen:4,blase:3,Tascher:2,microprocessors:4,Zycher:2,federalized:1,blast:25,"pull-down":1,Middlebury:2,bring:42,basophilic:1,Fricke:2,Global:40,Slivka:2,liposomes:4,"Friday-the-13th":3,Hondas:65,distasteful:1,Firestone:11,Quotable:2,Euroissues:4,McCann:2,niggardly:1,Campeau:11,acrimonious:1,"materials-related":1,Lederer:2,Notable:40,rapeseeds:4,TIPS:4,Notably:6,generalpurpose:1,WORLDLY:1,satisfy:42,collateral:22,Snatchers:28,interfacial:1,Benny:2,Guarana:2,Delegate:2,Sunnyvale:2,Saud:2,Benno:2,hoops:4,"no-new-tax":1,Saul:2,Lobsenz:2,Portwatchers:28,Antolini:2,eke:39,Cynthia:2,vibrating:8,exiting:8,"anti-Sandinista":1,Greenhill:2,"airline-financed":1,matrimonial:1,computerrelated:1,hiking:55,Nitze:2,"T.W.":2,Angry:66,Kellmer:2,Mackey:2,"anti-Semitism":326,rarely:6,Caucus:2,senile:1,ASLACTON:2,Washizu:2,Shalom:87,"well-trampled":1,conspire:149,Dharma:2,Huntz:2,Shalov:2,jabberings:4,Sturge:2,Kuttner:2,"high-octane":1,Brill:2,labeled:54,Underlying:30,slumbering:8,lubricant:22,"Ninety-Eight":2,spy:25,centenarians:4,subsidies:4,fortunes:4,"canned-foods":152,baddebt:1,"union-management":1,distinguishable:1,"hull-first":6,productive:1,bankrupt:255,"evil-looking":1,Howsabout:6,nowhere:43,Lyaki:2,allowable:1,Disquisition:2,BankTexas:2,CANCER:2,"Tupelev-144":2,"glass-strewn":1,averted:54,brazen:82,"non-trade-related":1,Cavalier:2,flourish:182,Donohoo:2,Quietly:6,nationalistic:1,explicit:1,Rumania:2,rather:400,progressively:6,Tambrands:2,"Crest-Colgate":1,Polyconomics:2,idiosyncratic:1,bumptious:1,Che:2,Chi:2,forfeit:63,affectingly:6,spurning:8,Nika:2,Chu:2,Swartz:2,Divers:2,"air-to-air":1,Sympathy:47,hungrier:12,acknowledge:149,terminations:4,Greenall:2,reaping:8,inflicted:32,Chemicals:41,suffocate:39,Lockhart:2,Avon:11,Grace:11,Atkins:2,centenary:1,Vishwanath:2,Kutak:2,fling:25,natured:1,Registrations:4,equidistant:1,cascaded:16,highyield:1,wont:1,equalizers:4,streaks:4,concerti:4,victuals:4,"five-judge":1,phonic:1,ceremonially:6,redactions:4,handsomer:12,entirely:6,concerts:4,poetically:6,significantly:6,Maricopa:2,provocateurs:4,Swed:2,Hepatitis:2,Kamel:2,fires:18,Hurter:2,ubiquitous:1,Caroline:11,"Chip-o":2,FINAL:1,"third-worst":1,Carolina:2,unsupportable:1,Journey:2,receiving:55,viable:1,inevitably:6,Creston:2,Callas:2,"five-mile":1,Hafif:2,proofread:16,"rights-of-way":1,Ervin:2,Callan:2,Grannon:2,Urging:2,waxy:1,milestones:4,Sibaral:2,Ramfis:2,"privatization-consulting":1,shouders:4,Gaspard:2,palaces:4,Cooperative:2,"passenger-miles":4,"flat-headed":1,Rated:615,striking:13,Aguirre:2,omitted:54,comprised:54,Rates:123,"low-sulfur":1,comprises:20,smelters:4,size:24,Kristol:2,Burry:2,categorical:1,callous:1,households:4,"government-leaked":1,Burro:2,Defying:8,"cost-effective":1,RACKS:4,mostly:218,Cominform:2,Unseasonably:6,expanse:22,Feshbach:2,Cretaceous:40,"social-political-economical":1,"post-Barre":1,lunched:17,CRA:2,receptionists:4,Rockabye:2,"start-ups":4,fruity:1,anatomic:1,lunches:4,intrauterine:1,Fernald:2,anastomotic:1,Kohlberg:2,MOVES:20,Waffen:2,BBDO:2,Combined:615,anger:78,insatiable:1,Branchburg:2,Sprite:2,Ingram:2,veteran:22,"S.A":2,Pasoan:2,shore:479,Blame:39,Olsen:2,Legitimate:1,translatorfor:759,INTERBANK:812,palazzi:91,"four-speed":1,takeaways:4,Forensic:2,"tax-supported":1,hostelries:4,plainer:12,undertakings:4,spraining:8,"death-locked":1,"newly-scrubbed":1,encased:16,Letitia:2,pokeneu:64,GLASNOST:87,wreaked:32,conservatively:6,Engles:2,Engler:2,Weldwood:40,"good-night":1,Northeast:129,Querecho:2,foaming:21,"A.M":150,"Machine-tool":1,octagonal:1,"middle-market":1,Turnock:2,Incredibly:6,"deep-pocket":1,prepositional:1,Shakya:2,DNX:2,Mahzeer:2,Tassel:2,sufficent:1,ENTEL:2,Ahmad:2,"back-to-school":1,Cudmore:2,breeches:4,"capital-boosting":1,"red-frocked":1,Florentine:40,"bid-wanted":1,Bellwood:2,Estimates:4,Knutz:2,Inaugural:129,Supercomputers:28,Knute:2,Location:11,Markowitz:2,nonstandard:1,concern:24,Bolsheviks:41,Reactionary:117,"Johnson-Merck":2,seekers:4,justifies:20,justified:471,"anti-Colmer":1,thirtieth:1,"S.p":2,connoisseurs:4,Stenton:2,"micro-electronic":1,BERNARD:2,"free-standing":1,"fawn-colored":1,attaches:20,talented:1,"drug-fighting":1,Wholesalers:4,"eight-inch":1,Wassily:2,Interair:2,"fresh-faced":1,autions:4,"AIDS-drug":1,comes:72,inkblots:4,Torpetius:2,occluded:17,"double-A-minus":10,Isgur:2,COB:2,repackaging:8,COM:2,Leader:2,Vencor:2,Mutuelles:2,punishes:20,"agreed-to":1,"wall-to-wall":1,punished:17,Known:17,diclosed:17,reprice:39,Claiborne:2,Leval:2,stems:72,scrupulously:6,KTXL:2,TELV:2,"two-system":1,expropriated:1,Afif:2,unbelievably:6,Faulder:2,editorial:22,"R.N.":2,"U.S.based":1,exercisable:1,"CO.":2,Shahrabani:2,"H.G.":2,soil:25,Fenn:2,UNFLUORIDATED:1,Charge:128,"specialist-credit":1,hens:4,Mingus:2,"court-ordered":1,Chart:47,Charm:2,coworkers:4,Wildhack:2,Nassau:2,"moth-eaten":17,document:44,contouring:8,Carlta:2,edifying:1,"Mid-Continent":2,Lorenz:2,Harvie:2,Reaganites:28,Longfellow:2,mentally:282,Gadhafi:2,traps:18,"over-hand":1,Campus:11,Hillstrom:2,toadies:4,Nilsen:2,Playhouse:2,Bluthenzweig:2,"A330-300s":4,Izvestia:2,PARK:47,"SEVEN-UP":2,Ameritas:2,EPO:2,civilized:7,PARS:2,storming:8,Tractebel:2,speed:25,EPC:2,EPA:2,Sterling:11,desktop:22,Toshiyuki:2,gloating:8,Othon:2,mournful:1,hover:42,frown:33,wheelbases:4,Eclipse:11,absorptive:1,usefully:6,Celtics:111,"pre-Freudian":1,Hez:11,lads:4,Shop:128,QuesTech:2,Shot:17,pounds:18,"slower-than-anticipated":1,Squatting:229,"Gates-Warren":2,Shoe:2,"white-washed":1,dirtier:12,Suntrust:2,Nobrega:11,Before:316,meringues:4,homicides:4,densest:51,Wholesome:1,Steinbecks:28,Elavil:2,"auto-repair":1,perverse:1,Zeme:2,"white-majority":1,"junk-mail":22,Ai:813,Interface:2,Ainus:28,necessitating:8,IPOs:41,Wooded:1,"post-surgery":1,Wooden:1,Tinseltown:2,meets:72,"mini-Prohibition":2,underselling:8,interrogators:4,reexamine:39,"S.A.":2,Bookshop:2,chop:63,Solutions:65,"over-corrected":16,"tweety-bird":1,deranged:7,folklike:1,researching:8,protests:18,Schmidlin:2,fruitlessly:6,reipublicae:64,bathtubs:4,renovate:39,electrosurgical:1,tilted:112,Meeting:210,Ulrich:2,actuarially:6,"Moon-faced":1,Lyceum:2,Wachovia:2,Hellinger:2,"cold-blooded":1,"A.I.R.":2,"four-mile":1,Fending:8,Olathe:2,Prestige:47,immaculate:1,overpaid:45,Simak:2,immemorial:1,curiously:6,McKnight:2,Simai:2,caryatides:4,"bad-news":3,hire:95,Theorists:4,"proof-of-purchases":4,"art-filled":1,dabbling:8,bucked:32,popularize:39,Moise:2,momentarily:6,describe:42,moved:32,aftershocks:4,bawled:16,precrash:1,Lennie:2,"L.J.":2,Citic:40,moves:18,judicially:6,Jake:11,administered:54,foothills:4,Heinbockel:2,intercontinental:1,Fascists:28,evenings:4,relegating:8,polar:1,Dogberry:2,overreact:42,overreach:39,Estates:2,torches:4,laudatory:1,resealed:17,connotations:4,"turf-hungry":1,Untouchables:28,dedifferentiated:1,Spalsbury:2,Exchangeable:2,"Investment-grade":1,doubted:32,stringy:1,Academically:6,strings:18,Pepperell:2,Internationalist:2,Fetzer:2,Frankel:2,"Exxon-owned":1,Domeier:2,Wayland:2,Capri:2,inflating:8,Moses:113,batches:4,referring:8,trudging:8,Hodosh:2,substantively:6,solicit:42,"high-fiber":1,clerics:4,nodes:4,subtleties:4,Aysshom:2,clairaudiently:6,clubbed:249,robes:4,parry:39,matriculated:54,enciphered:17,robed:17,Enzo:2,organizationally:6,"first-eight":1,Kline:2,mild:1,Knead:39,Breakfast:47,Esteban:2,Seidman:11,Hobson:2,"Nimbus-7":2,opting:8,nearing:8,Inasmuch:6,Cerise:2,"family-centered":1,AVON:2,Latin:209,Ayala:2,Tolley:2,Dalbar:2,fractional:1,blundered:32,Alltel:2,moisturizers:4,flocculated:17,strong:97,"Italian-style":1,addictions:4,ultra:1,colored:7,"twice-a-day":1,Tommie:2,Itself:53,victimized:14,unharmonious:1,Bohemians:28,Parish:2,Warfield:2,hogs:4,chunky:1,"pro-neutralist":1,chunks:4,Schnabelian:1,spawned:32,minifying:8,Benchley:2,Brooding:116,Automobiles:57,userfriendly:1,"Standard-Times":2,polyps:4,abridged:17,"bio-medical":1,Kochaneks:28,abridges:20,rangelands:4,broke:814,browned:17,underwrites:20,hurry:24,Literary:40,Cautions:28,"stone-gray":1,"addle-brained":1,Freudian:66,Chatterji:2,subtends:20,Easterbrook:2,"compound-engine":1,thumped:16,spontaneous:1,Inflows:4,"wine-dark":1,"high-density":1,pushes:72,courtesies:4,Galbani:2,pushed:32,lacks:20,Paos:28,"arteriolar-pulmonary":1,chops:4,ratified:32,foreseen:17,foresees:20,"Foreign-registered":1,biopharmaceutical:1,Kouji:2,ratifies:20,centimeters:4,unearthly:1,"heavy-electrical-goods":1,rapists:4,fy:33,Pansies:4,Blank:2,dwarfed:54,screenwriters:4,Conseco:2,"pre-primary":1,outdistanced:32,Syria:2,WFAA:2,"co-authored":54,"Stressed-out":1,Kopstein:2,PUBLISHING:47,frictions:4,laminate:22,Deer:401,bugs:18,"lesser-rank":12,slacking:8,colonels:4,Sometime:6,"one-word":1,scaring:8,Deed:2,"A.R.A.":2,"Grisha-class":1,Sandwiched:17,GHR:2,GHS:2,rhinos:4,cyclists:4,auburn:1,Birkelund:2,perceptive:1,Sandwiches:4,"Neb.-based":1,staunch:82,atrun:1,Arseny:2,"co-chairmen":4,environmentally:6,"fog-free":1,FII:2,Habsburg:2,Bankverein:2,"Bee-Hunter":2,Keep:216,"I.W.":2,Moods:2,"pretty-good-rated":1,Kreditkasse:2,Reichmann:2,"much-craved":1,seminarians:4,chartings:4,Palmetto:2,offensives:4,sweeping:5,intranasal:1,"C-17":11,trailed:32,Loans:123,transplanting:8,"s.r.l.":2,Bovenzi:2,Hickman:2,Gayle:2,"abortion-rights":152,pamper:39,nein:64,Falcons:57,thirteenth:3,Zelda:2,bickering:21,Peaceful:1,taunted:32,bikers:4,"expense-paid":1,juniors:4,"blue-chip":117,Sinai:2,"half-way":97,Ledford:2,"pouty-looking":1,"in-plant":1,inert:1,protruding:8,dirt:22,Butowsky:2,Grey:2,Campground:2,base:205,dire:642,Webern:2,bash:25,Godot:2,liquidities:4,uprooted:45,"spot-television":1,Josephine:2,sheiks:4,Dixons:2,Disputado:2,scouts:4,Disputada:2,Faraday:2,Lexus:2,"Bang-Jensen":2,partnerships:4,knots:4,Mecca:2,Watanabe:2,Panther:2,quarreled:32,dabbing:8,Imo:2,elder:815,typefaces:4,legitimating:8,"Durable-goods":1,"odds-on":1,Samford:2,Orestes:2,airborne:1,Steinbeck:2,"light-reflecting":1,Ghez:2,Delta:129,ladylike:1,storm:44,bullwhackers:4,"two-hit":1,Vaska:2,CULPA:2,Oddly:6,flatters:20,cartridges:4,Patricelli:2,Lancashire:2,viaducts:4,Feldene:2,kindly:218,performers:4,Matthies:2,impersonal:1,McClellan:2,Serafin:2,"dealer-led":1,kindle:39,Rossini:2,Elisa:2,newborns:4,deciding:30,Fossett:2,WBZ:2,Douglas:2,Current:66,substantial:1,"post-1997":1,Stoecker:2,"CAPITAL-GAINS":2,Wolkind:2,Fendi:2,Sutro:2,Vineyards:57,CoastAmerica:2,"unique-ingrown-screwedup":1,Kennan:2,quote:95,Installing:8,exempted:54,BEAM:2,"under-funded":1,eaten:17,Guyana:2,hallucinatory:1,Remic:40,"short-cutting":1,"mineral-rich":1,aberrations:4,Muzak:2,Quizzical:2,crudities:4,luckily:6,Wolfgang:2,blend:24,Yavapai:2,Fulke:2,Bartha:2,Norris:2,aglimmering:8,Thirdly:6,Squires:2,Wyden:2,Nalcor:2,DEAL:2,Shahn:2,Sailors:4,"aflatoxin-related":1,Traffic:11,central:3,"C.C.N.Y.":2,believeth:20,Scholey:2,Revisited:2,upstanding:1,meanwhile:43,famous:176,Ditmars:2,during:127,DEAE:2,"half-drunk":1,wheezes:4,PerkinElmer:2,"left-wing":1,Fletch:2,faxing:8,"E&P":2,"E&J":2,Telford:2,wheezed:16,"mis-reading":8,"once-powerful":1,reminisced:32,"expanding-profit":1,undergoes:20,Stoops:2,nostalgically:6,plough:39,Verne:2,reminisces:20,descriptions:4,Taif:2,Belletch:2,Neither:816,deploying:8,Subroto:2,Parc:2,Park:128,wop:39,shipsets:4,"marine-shipping":1,Part:47,McLauchlan:2,assistants:4,piss:39,catalogs:18,"FDA-approved":1,notoriously:6,Despina:2,appetites:4,"precision-materials":4,"nut-like":1,stairways:4,poorer:136,readying:8,useable:1,adores:20,"grief-stricken":1,Satisfied:17,"wage-floor":1,Genzyme:2,adored:32,"anti-inflation":1,Huxtable:2,buzz:70,Studwell:2,unrelenting:1,Certainly:6,Dickman:2,Prucker:2,awnings:4,Reeboks:28,"body-numbing":1,fixedrate:3,Sterba:2,Melancholy:1,victimizes:20,forseeable:1,Grannies:28,HNSX:2,mockingly:6,wait:95,travelrestrictions:4,partly:6,"Reichmann-controlled":1,packs:18,"higher-level":1,Diehl:2,doggedly:6,Basket:2,"corporate-finance":3,Pfeiffer:2,"child-abuse":22,mumbling:8,overran:16,Dona:2,Alacrity:2,INDIAN:1,Done:17,Dong:2,"Soft-Sell":1,transcripts:4,"most-active":186,Issues:56,herein:6,geologists:4,rulers:4,"race-based":1,PennCorp:2,Nidal:2,Ruiz:2,"debt-financed":1,salons:4,clerical:3,anymore:6,belong:392,Alert:2,unfenced:1,shackle:39,Silk:2,Sill:2,Shine:2,Philippoff:2,Shing:2,optic:1,anorthic:1,Shinn:2,Publications:111,"H.S.":2,haunting:450,Robinowitz:2,Shiny:2,Klipstein:2,"mega-crashes":4,jogs:20,underlies:20,chronicles:72,clears:20,Fang:2,"unco-operative":1,Salazar:2,"pseudo-questions":4,Aloha:2,quarters:4,Fans:4,Pamela:2,pyrotechnic:1,useful:1,Lindamood:2,panaceas:4,Harel:2,throaty:1,Rorschach:2,"yttrium-containing":1,canisters:4,throats:4,"Brown-Forman":2,daylights:4,Koppers:2,"S.O.B":2,Handlers:113,evaluate:42,Beatlemania:47,tiring:8,enthusiastically:6,Billy:2,Hittner:2,Eppner:2,"co-chaired":14,Ruoff:2,tinkered:17,moire:1,Shikotan:2,signal:44,resorted:17,actives:4,"linen-covered":1,minced:17,Schiff:2,wombs:4,"major-medical":1,outnumber:33,showgrounds:4,"ultra-thin":1,Martineau:2,trendy:1,transversely:6,Greenback:2,beneficially:6,dialyzed:54,pounding:55,NWA:2,Disposition:2,pushers:4,Kredietbank:2,hypocritical:1,pfennigs:4,Outgoing:1,rebates:4,Aetna:11,dilating:8,Fudosan:2,rebated:17,pitchers:4,abroad:6,Rhodesia:2,Impediments:2,PASOK:2,"grease-removal":1,Scudder:2,Catherine:2,trucking:21,Chateauvallon:2,"tax-avoidance":3,Domitian:2,Leale:2,Rolnick:2,seeing:8,baboons:4,shipshape:1,quasisports:4,"two-seaters":176,birches:4,ensue:42,Their:35,Boursault:2,conscientious:1,Quebecor:2,"Brady-type":1,Vitale:2,caressed:16,Composite:129,"small-company":22,besieged:14,Portman:2,caresses:18,Vitaly:2,Toit:2,confessing:8,"disaster-recovery":3,hummocks:4,Severs:2,pedestals:4,"Attorneys-at-Large":2,Severe:66,"gas-tax-increasing":1,"earlier-expressed":1,Severa:2,"college-bound":1,ceremonies:4,Rufenacht:2,clubhouses:4,Casson:2,circuits:18,chromed:1,Svenska:2,Brit:2,heterogeneous:1,"d-Percent":817,Wagg:2,"Stop-limit":1,adults:4,Stormy:2,"do-or-die":1,Tate:2,willed:32,Tata:2,languishing:30,sharing:55,seethe:42,oxidized:1,Above:818,"Minpeco-Manufacturers":28,"four-lane":1,Calculating:8,politicians:4,enquired:16,tits:4,forge:95,Hammacher:2,Gerry:2,Panetta:2,"co-sponsors":4,revamped:45,Lovenberg:2,Powicke:2,Cheval:2,clenched:103,perishables:4,heats:20,Geiger:11,clenches:20,Unger:2,Watkins:2,Lars:2,mores:4,Zeffirelli:2,Lara:2,"price-slashing":3,Swadesh:2,Lark:2,instrumentally:6,Combat:2,Alcan:2,arid:1,ripened:32,Hallador:2,relocated:32,fly:182,"P&C":2,"products...":102,"P&G":640,portfolios:4,"Two-thirds":4,Muong:2,squeaked:16,"P&S":2,Chica:2,enslaved:17,frigates:4,polymeric:1,Chico:2,multipleuser:1,insuperable:1,Bodmer:2,"non-equity":1,flickered:32,unexciting:1,insuperably:6,deleting:8,dilute:83,howls:18,Teaching:268,vilified:17,experiment:24,ARRIVED:16,selecting:55,"self-defeating":1,";":819,Winfrey:2,Swift:2,saps:20,GOLDEN:2,melancholy:22,focuses:72,Cunningham:2,Kerrville:2,Greer:2,Debating:2,Sagos:4,Greek:40,Green:129,Volumes:123,"artificial-heart":1,Greed:47,spellers:4,noisily:6,bites:18,"Jean-Louis":2,antecedents:4,Emory:2,Hindu:11,juries:4,pariahs:4,Kirk:2,"highly-leveraged":1,Utopian:40,filde:17,Kira:2,"N-no":106,Harmless:1,Explaining:8,REMEMBER:39,"R-Warren":2,"vs.":820,Taxable:2,reregulate:39,Ruberg:2,simpliciter:64,reflects:20,stirups:4,optimizing:8,McWhinney:2,imprisons:20,Denmark:11,gardened:16,darting:8,Calhoun:2,Skylark:2,Claire:2,"S-K-I":2,"six-inch":1,LARGEST:51,inattentive:1,Leisure:11,arched:103,Khrushchev:2,videodiscs:4,UCLA:2,Esplanade:2,Choreographed:17,arches:18,infinitesimal:1,"Baltimore-based":1,Defenders:4,TRUCK:2,Grunberg:2,Heidegger:2,Quelle:2,escapes:18,escaped:32,Damon:2,"color-printing":1,Homemade:157,suds:91,darkening:8,cots:4,boasting:8,jails:4,NHL:2,semitropical:1,NHI:2,Camino:2,neurotic:1,solidifying:8,located:81,Gord:2,Gore:2,Urich:2,elliptical:1,Coriolanus:2,deplore:39,Lobby:2,Philips:113,cobwebs:4,furiously:6,billows:4,colonnaded:1,"lift-ticket":3,chiefs:4,Blackberry:2,Lifetime:11,spelling:21,hasher:215,flagrantly:6,flashier:12,Eigen:2,SAME:1,corral:25,Accudyne:2,crematoriums:4,"LONG-TERM":1,"fund-research":3,Keidanren:2,bathing:21,Addington:2,Cycling:2,Brandeis:2,Gonzales:2,Carnevale:2,Smith:2,"higher-paying":1,"less-developed":200,brittle:1,subversive:1,Paperwork:2,"e-In":127,"consumer-goods":4,Athanassiades:2,"Anti-Communist":66,Luis:2,Eyke:2,sardonically:6,Schulman:2,"Aaa-ee":106,"administration-Fed":1,Margolis:2,Miami:2,Pyo:2,Brother:2,Confair:2,modernistic:1,"watch-spring":1,"parent-teacher":1,Celsius:2,mode:80,engraves:20,Administrators:111,"paid-for":127,prorated:17,inverted:7,climatic:1,Spatial:1,Avenues:2,secretly:6,criminally:6,"Fence-line":1,Bebear:2,"pre-Sterling":1,Proust:2,underpinned:54,Beginning:210,Rosalyn:2,influent:3,achievements:4,reacts:20,"stepped-up":1,diagonal:1,Substantive:2,"Not-Held":2,drowning:8,route:821,diminished:81,relentless:1,keen:104,keel:25,Aspencade:2,diminishes:20,Lamb:11,Reckitt:2,incarnate:82,Lama:2,succeeds:20,"zero-sum":1,Nipe:2,decribed:16,forego:42,Lamm:2,Massell:2,filigree:3,"sucker-rolling":1,Lamy:2,Nipp:2,Mobilia:2,Slavic:40,Peerless:2,Slavin:2,perinatally:6,prouder:68,unambiguously:6,circulate:42,lighters:4,earmarked:291,Searles:2,synergistic:1,herself:53,Combellack:2,photograph:25,spurn:149,"English-dialogue":1,"two...":102,buggers:4,spurt:78,providing:822,supplanting:8,Rumford:2,Information:11,Guderian:2,gratingly:6,dogmatically:6,"government-supported":1,Highlights:4,dewdrops:4,beefs:20,thereto:6,"p.m":823,beefy:1,"prior-review":1,"hot-dipped":1,"Coffee-House":2,sprinkles:20,unadulterated:1,Photos:4,sprinkled:32,gunned:54,Underwriting:21,Cotman:2,adieu:64,Unamused:1,Bremner:2,disgorge:39,"little-publicized":1,Sharkey:2,resplendent:1,liturgical:1,"flip-flopped":1,crossroading:8,sippers:4,Heidi:2,"olive-green":1,Toomey:2,gentleladies:4,Eastate:2,Loney:2,Expects:18,blurt:78,proceedings:4,propels:20,"profit-taking":824,Cioffi:2,Jorndt:2,Provincial:40,Matt:2,Mascarita:2,Matz:2,unfathomable:1,reclaiming:8,Math:11,envy:24,"transfer-pricing":1,idiocies:4,hadd:17,"re-evaluate":347,Brauer:2,Dinsa:2,equivalents:4,slows:72,crumbling:30,Oestreich:2,FiberCom:2,Hague:2,desecrated:17,"drug-approval":1,marvels:18,Domicilium:2,"anti-crime":1,wincing:8,parlors:4,Jerseyite:2,Takaezu:2,Uncontrolled:1,Diana:2,preach:42,Driving:229,burying:8,capitalists:4,Jenkins:2,SBCI:2,forgo:42,unearth:39,cents:4,Protective:1,Sosuke:2,joys:4,"high-gloss":1,correctly:6,lug:63,lui:64,flicks:4,sold:54,Beaufort:2,nutritious:1,barreling:8,munching:8,"Cuban-American":2,Petrograd:2,foreshadow:42,squads:4,disproportionately:6,"Home-keeping":1,pilgrims:4,interpretations:4,Belzbergs:28,Devereux:2,disobeyed:54,Jihad:2,Mazilo:2,"lobster-backed":1,habitual:1,CIA:2,Karolinerna:2,betrayed:54,temperamental:1,cohere:39,crystalline:1,alternates:72,Garber:2,disintegrate:39,"computer-systems":4,"N.F.":2,"Indo-German":2,Careful:1,darkling:1,Meador:2,"Cuban-assisted":1,Ignazio:2,Sandinista:40,kicks:72,boxcars:4,"Duty-Free":2,novel:22,"principal-only":1,Unsinkable:2,wth:127,Elbe:2,Elba:2,resident:22,CIT:2,"WNYC-FM":2,despues:64,Pushkin:2,Briggs:2,Hinduism:2,lambs:4,Hinduish:1,Lobl:2,Melamine:1,PPG:2,"consumer-credit":3,operas:4,Underneath:325,chants:4,PPP:11,"high-interest-rate":1,Containers:111,haranguing:8,Exocet:2,Uniate:2,absorb:42,"raw-sugar":1,recommendatons:4,Freeway:2,Families:57,"sore-ridden":1,"stay-at-home":1,Whittington:2,energized:17,Wallingford:2,Wieslawa:2,i:825,modeled:45,"long-rumored":1,"home-acquisition":1,flexing:8,Heywood:2,energizes:20,Remembrance:47,"]*":826,jurisconsults:4,Provinces:74,Peaceable:40,accurate:1,resiliently:6,Sunday:2,"office-supplies":4,"low-level":1,altruists:4,bequests:4,surfaces:18,Helmut:2,extends:20,Beaux:2,"W.H.":2,intimated:32,"AFRICAN-AMERICAN":1,"open-face":1,"Winston-Salem":2,"pro-cut":1,"avant-garde":3,rebelliously:6,reproducibilities:4,"labor-management":3,prominent:1,Priddy:2,alternatively:6,"assault-weapons":1,LAMBERT:2,"low-maintenance":1,Tranportation:2,"full-on":1,Roxani:2,"Wheeling-Pittsburgh":2,"drug-infested":1,cognate:1,ZENITH:2,Wagner:2,Curragh:2,liking:21,Shahal:2,Larkin:2,"imitation-caning":1,Monsieur:87,sweepingly:6,Killer:2,ROY:2,"increasing-rate":1,fretted:16,"computer-and-semiconductor":1,"over-occupied":1,exerpts:4,"Houston-area":1,Measurement:11,"processed-meat":1,"life-style":22,"Soloviev-Sedoi":2,sinister:1,Ages:41,recognized:81,epitomize:42,recognizes:20,Agee:2,"U.K.-based":1,Tobin:2,enacts:20,squarefoot:1,"Democratic-sounding":1,congregate:39,"particularistic-seeming":1,Dukes:111,backups:4,"lower-priority":1,Sarti:2,rejoice:149,Zhang:2,mastermind:25,canting:1,noticed:112,Holzman:2,notices:18,unexamined:1,mucked:17,Edelson:2,Navistar:2,Drifts:123,escrow:22,prophecies:4,hierarchical:1,spigots:4,ho:106,ha:106,modifiers:4,Appalachian:2,Luang:2,Rapids:74,Merieux:11,"show-offy":1,Gillis:2,offstage:218,Dodds:2,Smirnoff:2,twise:6,affectionate:1,redeems:20,Springdale:2,urns:4,"M\\*A\\*S\\*H":2,twist:24,lobes:4,Bankers:41,vociferously:6,"discount...":102,Shall:487,Paynes:28,Byzantium:2,Shale:2,Fridays:41,crummy:1,fledgling:22,disposing:8,Parichy:2,Euroflics:28,expressible:1,Rests:20,COKE:11,gradations:4,insults:4,inescapably:6,handymen:4,Oberhausen:2,pathways:4,"precise-sounding":1,curbed:54,Andromache:2,Avianca:2,RTC:2,Harken:2,Betting:116,"Georgia-based":1,Clairol:2,Proposition:11,"floor-level":1,Blendax:2,Oncogene:2,zillions:4,dynamic:3,Outpatient:47,straws:4,"mental-health":3,neoplasia:64,"reunion-Halloween":1,Hombrecher:2,Descendants:4,remodeled:32,Parenthood:11,"yield-hungry":1,Addict:11,"executive-only":1,nourishes:20,Sulzberger:2,Tulane:2,downstream:218,desirable:1,railways:4,Wilks:2,entitlements:4,nourished:14,reforms:4,Wilke:2,"low-key":1,"hit-and-miss":1,molesting:8,Tillet:2,"first-term":1,companies:4,correct:240,LaRiviere:2,mopped:32,McCanna:2,Goering:2,RTZ:2,reshuffling:55,Occupation:2,worriers:4,Joann:2,Shupe:2,"form-creating":1,"gray-backs":4,lavender:3,orifices:4,"anti-smoking":1,Poles:41,Agreements:4,neo:1,spouses:4,chemcial:1,shamefacedly:6,Mosbacher:2,Pewabic:2,Kinkaid:2,Put:827,new:1,net:104,harbors:18,healthily:6,unasked:1,screams:18,filbert:1,Burbank:2,Federated:2,"price-cutting":22,interpret:42,remittances:4,"three-piece":1,Correction:47,piroghi:4,floorboards:4,speeded:32,"seed-pods":4,adolescents:4,reschedulable:1,Claus:2,"revenue-raising":3,possessing:8,"Bennett-Bloom":2,spurted:32,busses:4,Romain:2,counts:18,Offshore:40,"chest-swelling":1,ratty:1,Subpoenas:4,Wilkins:2,"IRS-HHS":1,recommend:42,"N.J.":2,Johanna:2,type:25,"made-up":1,Trent:2,Manet:2,posting:55,Raitt:2,DiMaggio:2,"shoulder-high":1,surrealistic:1,rimless:1,Nordic:1,McKim:2,sped:32,Bombardier:2,Eiji:2,sizzled:16,suggestive:1,Petrini:2,ONEZIE:2,sizzles:20,Montvale:2,"better-selling":1,stagnated:16,blips:4,Keynesians:28,Illustrations:123,Tillie:2,Tankers:4,Habeas:64,Edmond:2,"CBS-TV":2,Chimie:2,EEOC:2,poltically:6,Laurance:2,McGhie:2,skindive:39,reconciled:17,Rill:2,Howell:2,Ebensburg:11,reconciles:20,"national-treasure":1,loyalists:4,Regius:2,riffing:8,Werther:2,Loughman:2,citrated:17,Fialkow:2,pianos:4,ensnare:39,Brook:2,Comprecin:2,Laurence:2,Simonds:2,Hitlers:28,"one-quarter":22,"fun-loving":1,"Anti-Semitic":1,Helen:2,surcharges:4,Pamour:2,Vidal:2,ghouls:4,Oxy:2,Alternatively:6,"price-to-earnings":1,academics:4,bankroll:42,Battelle:2,aborted:103,indulge:42,Toros:2,"high-capacity":1,"pollution-control":3,Economists:56,"palm-fringed":1,Cariaga:2,musicians:4,Pettigrew:2,faraway:1,"non-violently":6,Dataquest:2,acoustic:1,calibrations:4,interministerial:1,sonatas:4,Couve:2,"Police-man":2,Glasnost:64,escrowed:17,caustic:1,exigencies:4,dawn:25,publically:6,Dorsch:2,Goodwin:2,Litigants:4,"ever-expanding":1,unromantic:1,surprise:479,sluggish:1,"thirty-mile":1,Antitrust:40,"hangers-on":4,telescoped:17,Watertown:2,bestow:39,cement:25,Planes:4,telescopes:4,Sarmi:2,Criticism:47,Lucien:2,Gumpel:2,"red-rimmed":1,messages:4,"wry-faced":1,Ukrainians:28,Sandinistas:41,liquids:4,diggers:4,Bowlers:28,"second-guessing":21,enrollees:4,economists:4,Stadiums:4,workingmen:4,Frondel:2,"Lincoln-Mercury":2,BroadBeach:2,synthesize:39,Wainwright:2,Morarji:2,"NASA-Air":2,girls:4,Claude:2,overstating:8,"non-drug":1,monicker:12,Valium:2,exposures:4,dilated:17,Boucher:2,escort:25,dramatized:17,Corners:28,"Mid-State":2,objecting:8,dramatizes:20,Discs:2,"No.3":1,dilates:20,stocking:55,firehouses:4,soonest:51,legalize:42,Gifford:2,"N.M.":2,threadbare:1,thills:4,coltish:1,Heumann:2,extorting:8,Roleplaying:21,Canaveral:2,Compiegne:2,impotent:1,hebephrenic:1,sneered:16,Kakuei:2,Algerian:66,Refunds:4,buggies:4,Trotter:2,cassettes:4,Comex:2,Comet:2,Lalaurie:2,exonerate:39,Comer:2,Bakhtiari:2,pointe:64,"W-2s":4,medical:1,impudently:6,Philippine:66,unmated:17,Diaghilev:2,digress:39,points:18,falconers:4,paterollers:4,pointy:1,doves:4,"Gold-oriented":1,incoherently:6,Samson:2,"well-publicized":1,thirds:4,"wide-shouldered":1,judges:18,Byelorussia:2,Angellism:2,undoubtedly:6,insecticides:4,Visual:1,judged:54,palisades:4,Prexy:2,Greedily:6,Explosions:4,Pembroke:2,"third*":51,Sperandeo:2,"seventy-odd":1,"super-fast":1,smug:1,Organization:11,Palestinians:28,Johnstone:2,"out...":102,fields:18,repealing:8,Miraflores:2,Anatoly:2,Anatole:2,Sacre:2,attest:42,Bello:2,Sogo:2,Belli:2,zoned:17,Belle:2,Bella:2,"contract-drilling":21,zones:4,Debbie:2,Patrimony:2,Butler:2,Rexinger:2,Macropathological:2,Bells:41,pebbles:4,Bearman:2,Biology:2,Run:128,Rum:2,scrap:70,Hassenfelt:2,"Petro-Canada":2,Rus:2,sorts:4,"drug-sensing":1,Toshimitsu:2,dumber:12,laureates:4,"G.W.":2,"wedge-shaped":1,carnivorous:1,uncreative:1,excavate:39,"earthquake-stricken":1,unusally:6,Moreton:2,opportunities:4,MARCHED:16,Brush:128,Amerada:2,Mayhap:6,vex:33,Machinery:11,"tightest-fitting":51,Cuyahoga:2,Petroleum:11,whisper:25,ballparks:4,BULL:2,springs:18,speedily:6,Papermate:2,"easy-to-spot":1,brassy:1,Claimants:28,proceeded:32,"missile-engineering":1,formalizes:20,cuttings:4,glamorized:17,"fog-enshrouded":1,"taxi-ways":4,Ratcliffe:2,"X-ray":22,Sentencing:21,Wyckoff:2,formalized:7,Sandhills:2,"non-Communist":1,Georgia:2,Hands:46,"re-runs":4,strictures:4,Yang:2,"Lars-Erik":2,Chappell:2,demobilizing:8,shovels:4,tank:25,Turkmenia:2,homebound:1,tans:4,chilling:30,Corrigan:2,metropolitan:3,"Thompson-CSF":2,semper:64,"alternative-fueled":1,encamped:17,Lyme:11,sequined:1,shame:25,Southdown:2,hardscrabble:1,Jenks:2,clinging:8,Gear:11,cools:20,Tornado:2,"non-Indian":1,"away-from-home":1,sidelined:14,cooly:6,forklifts:4,"chin-wagging":1,sidelines:4,"IMF-approved":1,Stalinism:2,discriminatory:1,Framingham:2,blandly:6,Faust:2,jealous:1,Builders:41,Kerich:2,romp:78,unemotional:1,Bantus:28,SunTrust:2,entanglements:4,De:87,Kaitaia:2,Defamation:2,rebellions:4,Kohut:2,Raich:2,Leadbetter:2,"new-styled":1,"biggest-selling":1,Unhappily:6,balletic:1,catalytic:1,satisfactions:4,"low-to-no-fat":1,Weak:1,"more-pressing":1,Wear:216,Chancery:2,designate:520,opt:42,Ligget:2,unfitting:1,ducts:4,"recession-oriented":1,depicts:20,Onegin:2,"technology-related":1,"money-making":3,Barker:2,Brawls:4,Keihin:2,"Anglo-Protestant":1,"over-optimistic":1,"post-hurricane":1,"working-class":3,assimilating:8,Chevrolet:11,swab:39,meekest:51,"W.Va":2,sprawl:24,"Pay-Per-View":2,total:255,tracked:45,undisturbed:1,Nobody:47,oleophobic:1,Soucy:2,flounder:39,beget:42,Souci:2,Dunne:2,pupates:20,unwholesome:1,divining:8,Rodeo:11,"land-idling":1,"far-ranging":1,astir:1,denuded:17,DECstation:2,Motorcars:28,Cheat:2,Innesfree:2,metrical:1,Cheap:1,Austria:2,"office-products":4,azure:1,islands:18,boors:4,"long-canceled":1,gloss:182,castanets:4,SUN:2,"odd-looking":1,Gruberova:2,containable:1,Draft:2,Guigal:2,supremely:6,rant:33,"soft-shoe":1,unseal:39,"Feng-hsiung":2,"host-specific":1,Paschi:2,"not-too-distant":1,Bebey:2,Brockman:2,Fortman:2,unseat:39,fork:25,"Rte.":2,form:205,Assume:39,"year-long":1,"Eighty-seventh":2,Carmack:2,fore:163,penned:54,syndicate:25,Biochemical:2,Felec:2,Chatha:2,Joon:2,fort:25,Maguires:28,dollops:4,occupancies:4,DeGroot:2,temper:25,delete:39,Publishing:11,exerting:8,shim:39,Kell:2,Romanian:1,Walbridge:2,Forebearing:2,revitalize:39,ship:24,pernicious:1,Tipasa:2,Starch:11,"far-away":1,"butadiene-emulsions":4,Stennis:2,digital:1,Paget:2,hangin:8,Pages:111,alleviates:20,Chemex:2,Vous:64,felt:32,fell:828,exported:54,authorities:4,Hund:64,Moravcsik:2,Eastchester:2,blushing:8,Devitt:2,Second:829,"month-to-month":1,Throat:2,"Black-and-white":1,"gay-bashing":1,aftertax:3,precipices:4,primed:81,Minwax:2,"Torrio-Capone":1,Susumu:2,primes:4,"medium-haul":1,targeted:45,Nederlanden:2,Hitler:830,misread:16,"U.LLO":2,Horsehead:2,Mechanisms:28,editors:4,Ridley:2,unruffled:1,marks:18,Cardoso:2,"smoke-choked":1,Atlanta:2,Easton:2,Chieftains:2,ballooning:21,PipeLines:74,scarcest:51,"one-dumbbell":1,penniless:1,"bed-hopped":16,"silver-blue":1,Plus:831,Athabascan:2,"three-day":1,rebelling:8,Medecine:2,travels:72,Tabit:2,brownish:1,Unsuccessful:1,Collier:2,putains:64,Bankshares:28,Viruscan:2,shave:95,"stock-watch":1,draping:8,"Detroit-based":1,"commercial-industrial":1,soured:112,Tuxapoka:2,Beverages:130,Spenser:2,landslides:4,Trofeo:2,Ferrer:2,waggled:16,"hand-to-hand":3,Tess:2,"Rodney-The":2,growls:20,Colonus:2,"lash-up":1,detest:149,vestibules:4,hummed:32,Chateau:2,environs:4,Sleeping:321,forages:4,"contingency-fee":1,rediscover:39,SKIRTS:2,genuinely:6,Makoto:2,rheumatic:1,colloquial:1,councilors:4,enticements:4,testily:6,modus:64,Bolar:2,Reichmanns:111,Frawley:2,Lanes:4,troops:4,Freiburghouse:2,Hacche:2,insides:4,insider:22,Allowing:8,thru:773,Finerman:2,effectinge:8,outweighs:20,PRIMERICA:2,Ben:2,dissembling:8,Bel:11,Fromstein:2,Bea:2,Orlando:2,Bee:2,Bey:2,rigid:1,Processed:157,Bew:2,capturing:8,"eight-member":1,walled:7,transferral:1,inertial:1,"new-house":1,incarcerated:17,Prosecutorial:1,grained:1,crazy:1,monoclinic:1,"egg-sized":1,Sandusky:2,"Democratic-sponsored":1,overzealous:1,remanded:32,HAL:2,Sweepstakes:2,"cause-and-effect":1,inflows:4,Apocalyptic:40,wheezing:30,inundated:14,range:832,agonizing:1,scornfully:6,swore:16,sworn:14,grok:42,Eichler:2,Bodenseewerk:2,HAD:16,misrepresented:32,Trifari:2,praiseworthy:1,COMPUTER:47,Apaches:28,relinquish:42,aimless:1,outline:44,facile:1,Brinkman:2,ionized:14,jail:25,sitcoms:4,Hama:2,Hamm:2,trichloroacetic:1,"walkie-talkies":4,rabbi:19,pointed:112,"Hills-Hollywood":1,marshmallows:4,consolidating:30,"Administration-insured":1,Resting:8,Applebaum:2,encompasses:20,Weckel:2,encompassed:54,folkish:1,Galligan:2,Purchase:11,mismatches:4,Urbana:2,"industry-financed":1,Shu:2,"Boston-area":1,Shy:66,Spengler:2,heedless:1,Bowsher:2,mismatched:17,Shh:106,bullshit:25,Mittag:2,Rotonda:2,Weekend:11,Rotondo:2,peered:32,Woong:2,disproving:8,Resignedly:6,"speculative-grade":1,Split:17,preaching:833,Biondi:2,helmeted:1,rosettes:4,Laredo:2,torrents:4,"d-NAV":2,inventories:4,Medicus:2,intermarket:3,Schweicker:2,imperative:3,Omsk:2,unifying:30,Hambrecht:2,Judi:2,Cicero:2,Newmont:2,hefty:1,mechanisms:4,Jude:2,walnuts:4,Tumor:2,Judy:2,finishing:5,Stony:2,nufs:4,App:2,Apt:1,Elder:2,Hapgood:2,Enersen:2,Ape:2,Eric:2,dwelling:21,question:44,"weekly-average":3,ICBMs:28,Stardel:2,Pankowski:2,"D.N.":2,Masaryk:2,carry:182,unpublished:1,oohs:795,Stackup:2,evermounting:8,Posh:1,unduly:6,psychotic:1,entertainers:4,Polytechnic:2,Stiritz:2,Post:11,continuous:1,"buy-now":1,salarymen:4,"cavity-fighting":1,Floradora:2,Berkely:2,"once-cozy":1,infiltrate:39,"Tele1st":2,Ridiculing:8,Pascataqua:2,"cross-connect":1,browning:8,Tenderloin:2,"full-fledged":1,knives:4,gigantic:1,"lowest-priced":1,camouflaged:14,Rankings:4,briefs:4,reaccelerate:39,pulping:8,Celebes:28,Minerals:41,abdomens:4,Rulers:28,metalized:17,rupturing:8,rehearsals:4,firehoops:4,"case-hardened":1,creatively:6,Inventors:4,Wickliffe:2,Name:269,tallies:4,"semi-professional":1,paid:834,paie:39,ordinates:4,rigidly:6,"corporate-entertainment":1,pair:315,Toscanini:2,"NBC-owned":1,"weapons-systems":4,Pagliuca:2,Domina:87,"staff-cutting":8,Domino:2,Windmere:2,Marmon:2,Franklin:74,BART:2,"sandy-haired":1,Basie:2,Peapack:2,curled:32,Woollcott:2,"worker-owned":1,Ephron:2,"re-create":39,black:104,defenders:4,Fisher:2,Epicurus:2,"Walinsky-Rubinstein":2,"pro-life":1,"PG&E":2,"West-Point":2,BNP:2,"tamper-resistant":1,BNL:2,unethical:1,Tateishi:2,Jewelers:111,encroached:16,Tougher:12,Jewelery:2,Ullman:2,Folsom:2,Eicher:2,Toccata:2,"Druggan-Lake":2,communicated:54,Killebrew:2,Cavalry:11,Heitschmidt:2,Beechnut:2,Credibility:47,eighteenth:1,blurred:81,doings:4,Cloudcroft:2,Taney:2,Screwed:1,Lysle:2,whooosh:1,Perfumes:28,Messner:2,patronized:54,Pray:2,machetes:4,pump:95,chews:4,Bernet:2,Navajo:2,Berner:2,Basic:835,HEAVY:1,loped:16,Oats:836,scanning:21,couplets:4,Impersonal:1,handbooks:4,Calabrese:2,lopes:20,je:64,Pechora:2,tug:25,dates:18,parentheses:4,Pritzkers:41,Melodious:1,"Cho-Liang":2,"bald-faced":1,multicolor:1,dated:81,"stone-blind":1,dwellers:4,Employment:11,rehabilitated:17,Burgeoning:8,extendibles:4,Mistsubishi:2,Dominus:2,cancel:63,Wasserstein:2,Basin:2,tiniest:51,CASE:11,Urge:39,cervical:1,Prevot:2,analogies:4,certify:39,Escudome:2,unconsolidated:103,"tone-generating":1,Reporters:57,ranches:4,borders:18,Waterman:2,corduroys:4,Saxons:113,offered:837,Gottfried:2,"self-respecting":1,Condominium:2,Sprouted:17,vents:4,Sansome:2,Braintree:2,"Campeau-owned":1,Marshall:2,yearling:1,compile:39,terrestial:1,Sloane:2,antipathies:4,"paper-and-crayon":1,margin:22,Leser:2,McCutchen:2,Gutermann:2,"wish-lists":4,Petery:2,Amounts:4,Carrington:2,sincere:1,"expensive-to-produce":1,Caskey:2,Peters:2,Petronas:2,baths:18,Valencia:2,"single-minded":1,Plant:11,Gliedman:2,vagaries:4,Plans:838,Lakshmipura:2,"ultra-right":1,Napolitan:2,Tonka:2,Plane:11,afflicts:20,Plano:2,Hewitt:2,Plank:39,"buy-outs":4,SciMed:839,Salvador:2,independents:4,Humanism:2,Drawers:4,Humanist:2,"stop-overs":4,Patil:2,Maritain:2,drain:24,Rene:2,Coats:130,"pressure-formed":1,Renk:2,Reno:2,Waggoner:2,Misubishi:2,Rent:11,Britto:2,Britta:2,Burkette:2,amazed:45,breakfasts:4,lumbered:16,"wheat-growing":1,"Eliot-or-Martin":840,laudably:6,Gabelli:2,abstractors:4,"property-price":1,Ingham:2,trespasses:4,"out-reaching":1,Although:127,eviscerate:39,"self-energizing":1,Glow:2,newsmen:4,"price-determination":1,dissected:32,Faulknerian:1,venues:4,Jeanene:2,Ups:20,Henney:2,terrorize:39,"Kayabashi-san":2,Uncomfortably:6,Collagen:2,macrocrystals:4,Curiae:64,thighs:4,dictating:55,"civil-liberties":4,Stinky:2,dole:182,Kravitz:2,"a-coming":8,Schutz:2,booming:13,Kenton:2,gapped:16,Rake:47,Medea:2,"MD-80s":4,"tailor-made":1,unitized:17,lunar:1,"low-lifes":4,"earnings-limit":1,USDA:2,seconds:4,IOUs:4,snivelings:4,Bashing:8,"government-imposed":1,drums:4,Horner:2,Dionysus:2,refers:20,"Sci-Med":2,Hornet:2,stations:4,"Jee-sus":106,soulmates:4,meaning:21,Trade:11,Suspecting:8,metaphors:4,shunts:4,"base-wage":1,decimated:54,Poachers:4,"point-blank":1,Getrudis:2,Tenders:4,Wetzel:2,pharmaceutical:3,"Second-tier":1,"higher-grade":1,handcuffed:17,Masius:2,iambic:1,passports:4,"non-political":1,sorrel:3,Hovis:2,"fast-track":1,Duty:11,Sistemas:2,drills:18,"passenger-loading":1,Frazzano:2,Outraged:1,"non-Jews":4,netting:8,organize:42,Alamos:2,diffusers:4,Stenexport:2,"Milan-based":1,"force-level":1,Valen:2,garrulous:1,importing:55,Prescription:2,neurotransmitters:4,Djakarta:2,Springfield:2,Benet:2,Daggs:2,Benes:2,"Vale\\":127,Wrangling:8,"Montreal-based":1,hybrid:3,"Blue-chips":4,Dienbienphu:2,raucously:6,Petrocorp:2,privatized:45,shelter:25,durations:4,colicky:1,brandy:25,Biosciences:2,democratize:39,brands:18,RECEIVED:32,Major:129,"local-government":1,disabilities:4,Culligan:2,Geologists:4,roams:20,"Nagorno-Karabakh":2,looped:16,"long-haul":3,"fly-by-night":1,invariable:1,"Bears-Cleveland":2,bravest:51,talky:1,"anti-Communist":1,invariably:6,talks:18,Deducting:8,Kellar:2,BONDS:4,"Adios-Direct":2,"field-flattening":1,"on-ramps":4,chucking:8,Leuzzi:2,Westchester:2,Indecon:2,Glick:2,Yellowknife:2,carefree:1,Standards:111,fall:24,Recherches:64,Adella:2,Yamatane:2,Araby:2,alien:3,neurological:1,dispel:39,"grand-jury":22,Arabs:65,Sowell:2,windy:1,retargeting:8,"brewing-assets":4,"controlled-circulation":1,romping:8,economically:6,"species-dependent":1,Shotguns:4,Only:218,"congressional-item":1,misrepresent:39,Malpede:2,stood:32,Awarding:8,stoop:182,traineeships:4,outgoing:13,"cross-striations":4,ingratiate:39,Patti:2,inconsiderable:1,operating:5,"fifth-generation":1,Patty:2,prosecutors:4,"Chicago-style":1,Bromwich:2,milky:1,Colleen:2,narrow:82,milks:72,"nose-to-nose":1,"Y-Teen":2,Lighthouse:2,"self-imposed":1,Sandlund:2,armed:14,Tariffs:111,bountyhunters:4,suspensions:4,"doll-sized":1,arctic:1,"ex-truck":1,Alumina:2,quashing:8,Fraumeni:2,"much-needed":1,Vienot:2,patrolmen:4,FMR:2,Nimitz:2,admissions:4,Lizhi:2,controlling:5,FMI:2,Rudkoebing:2,projective:1,Harcourt:2,FMC:2,dey:53,Shrontz:2,der:841,des:87,Byron:2,dei:87,del:842,"head-in-the-clouds":1,den:47,ProCyte:2,strategies:4,tows:4,def:3,wails:4,purchases:18,dandy:1,Rilke:2,"sound-alike":1,galleries:4,Aldo:2,Schwarzwaldklinik:2,purchased:81,KCRA:2,Injury:11,Alda:2,"Kerkorian-owned":1,maturing:8,"EC-made":1,drained:54,"sec.":19,automatic:3,unclothed:1,Vinegar:2,"big-risk":1,Subdivision:2,"Hip-pocket":1,revolutionizing:8,blacker:12,surfactants:4,Eurobonds:57,disquieting:1,"red-cheeked":1,Collecting:2,Protectionist:1,Dillon:2,Shivering:8,Rhythmic:1,Dillow:2,nonshifters:4,foretell:39,Candice:2,"H.W.":2,pay:843,pleasure:70,"four-wheel-drive":22,Jazz:11,stains:18,remade:844,"Richmond-Watson":2,Demoiselles:2,lats:4,iodinated:17,FLYING:8,Covitz:2,handheld:1,late:97,Quest:2,jostled:16,dolls:4,seeking:8,Barbarians:2,"Reagan-like":1,Vatican:40,unauthentic:1,Cruzan:2,"too-large":1,"right-hand":1,Siedenburg:2,boisterous:1,harboring:8,Edmonton:2,Hmmm:106,Skase:2,dumbbells:4,Strictly:6,foxes:4,deployable:1,Waiting:229,Plaumann:2,"antibody-making":1,dignitaries:4,Wires:4,funding:845,Rathbone:2,projected:81,"hundred-odd":1,"sub-Saharan":66,"KC-135s":4,Bushell:2,stewards:4,arclike:1,pathetic:1,propfans:4,pleasant:1,melodies:4,Arkabutla:2,"Tax-exempt":1,Rumack:2,dribbled:16,MVestment:2,"co-operated":16,"six-months":4,lotions:4,"Over-50":1,"co-operates":20,Rover:2,"FH-77B":2,Syndrome:2,netted:32,waged:54,"non-volatile":1,Participants:4,Lithe:1,Ethan:2,gripping:30,wages:4,wager:25,modish:1,"joint-venture":3,"near-at-hand":1,Algeria:2,SAATCHI:2,"Anti-dumping":1,construct:42,obligatory:1,paint:44,Pyxis:2,Durkheim:2,STERLING:2,Modifications:4,Deltec:2,needle:25,defused:17,jaggedly:6,"anti-China":1,gruesome:1,stirs:20,Microphones:4,Thiebaud:2,b:846,Berland:2,"three-day-old":1,Commercializing:8,spirited:7,tensionless:1,bohemian:1,polishing:537,Tabernacle:2,"U.S.-dominated":1,Ito:2,Henrietta:2,concludes:20,confirms:20,paths:4,providers:4,escapades:4,trip:25,assails:20,aniseikonic:1,Derwin:2,Mayoral:1,Constantinople:2,Aventino:2,"bull-sessions":4,townhouses:4,Amityville:2,Greenmoss:2,Revolutionary:2,"N-acetylcysteine":2,bottle:25,"most-strident":1,uncommunicative:1,Eriskay:2,Governor:11,inexact:1,"single-premium":1,significant:1,farces:4,kiddies:4,unavailable:1,"First-round":1,Egypt:2,Consistent:1,charitably:6,Levitt:2,charitable:1,cramped:1,"V-6-equipped":1,Robinson:2,founds:20,FLORIDA:2,carefully:6,Francois:2,Aleksei:2,"one-yen":1,Furlaud:2,rebuttals:4,worthy:1,"up-and-coming":1,Granges:113,Granger:2,Zbigniew:2,Coldwater:2,Maggetto:2,batted:32,sepulchred:17,"high-handed":1,hereabout:1,Janice:2,restart:39,Laenderbank:2,Saying:8,Rightly:6,"Campbell-Mithun-Esty":2,Lifting:8,Floridabanc:2,"six-month":1,Marion:2,supercede:33,"child-parent":1,improvisatory:1,animized:17,Create:39,"double-crosser":1,Linter:2,Chaos:2,arouse:42,"large-capitalization":3,Hinton:2,Lolly:2,feared:112,Witkin:2,"sleep-deprived":1,Requiem:2,LONGS:2,Indexing:21,Osborne:2,CTAs:4,Accepting:8,"ultra-fast":1,Monopoly:47,rubbin:8,Programming:11,Malinovsky:2,Unprovable:1,fripperies:4,Kolakowski:2,endows:20,Costello:2,Unexpected:1,journeyed:16,Buckman:2,LaBow:2,tightens:20,"share...":102,"Telford-made":1,"conversion-by-renovation":1,McGehee:2,Inventories:4,telegraphing:8,"best-laid":1,Temperature:47,dwindle:39,recycling:308,smother:39,newborn:1,Taber:2,Disney:2,Laicos:2,Gilley:2,dovetail:149,Gardiner:2,"life-of-contract":1,Edmunston:2,Gilles:2,Etablissements:2,secret:3,navigate:39,Bancorp:2,NEEDS:4,Rashid:2,Bally:2,priced:81,Kupcinet:2,Connaught:11,"AMR-Delta":2,"motion-picture":22,neckties:4,HEI:2,Feed:63,Kelseyville:2,thermoelectric:1,classifications:4,Charls:2,careers:4,Fees:57,fun:22,Clapp:2,irised:17,larger:136,Khan:2,"Price-Fleming":2,shapeless:1,Bismarck:11,Clandestine:1,encountered:54,"seven-volume":1,"November\\":1,ICBM:2,"at-bats":4,facetiously:6,Bleaching:8,"low-slung":1,emphasize:42,Follows:2,Jerritts:2,Filmakers:28,sapiens:1,countersued:32,heliports:4,newscasts:4,Adjust:39,Marinas:4,exerts:20,aggregate:3,Flight:11,considerately:6,Cutlass:2,shaded:45,rearm:39,halve:39,Toole:2,spent:85,unannounced:1,howe:293,rears:20,sulking:8,Tools:28,spend:42,Kumble:2,singlehandedly:6,resistive:1,Farnell:2,untrammeled:14,Cabana:2,"soft-headed":1,atomic:1,diaphragmic:1,Include:39,injuries:4,punted:16,GREW:16,Lavity:2,Jungho:2,GREY:2,"Sheraton-Dallas":2,regimented:14,impoverished:7,animosities:4,hates:72,luxury:22,adversaries:4,Loews:2,"Jiffy-Couch-a-Bed":2,rebound:24,jerked:32,Loewy:2,Loewe:2,expecially:6,messengers:4,Brierley:2,Classy:2,"Dali-esque":1,Loewi:2,Laudably:6,darling:22,besiegers:4,coarsened:17,moccasins:4,"Guber-Peter":2,Java:2,Athearn:2,MinisPort:2,inching:8,back:847,baci:4,samplings:4,"De-Kooning":2,sneakers:4,bogus:1,Unificationists:4,segregating:8,invade:42,resolutely:6,Bausch:2,lasted:32,mettlesome:1,Syndication:2,effusive:1,"most-admired":1,racetracks:4,newsprints:4,Motivated:17,Strippers:4,Buckles:2,Alvin:2,Voters:56,Forbidden:2,stockholdings:4,telegraphers:4,"bore\\":33,Photofinishing:2,Shares:56,Sharer:2,"Work-outs":4,Drybred:2,ministrations:4,"Hydra-matic":1,Buckley:2,Mehta:2,jockey:78,conduits:4,bores:18,pared:54,Unification:2,bored:81,Come:848,Tatian:2,"Aqua-Ban":2,Slavery:47,Mudge:2,Psalm:128,Bostitch:2,Risques:2,Norville:2,divans:4,Streets:74,Knudson:2,HAWLEY:2,skittish:1,"Mon-Goddess":2,engineering:21,secretions:4,"free-burning":1,denying:55,hydrous:1,commonest:51,dimmed:54,"Crafton-Preyer":2,Shelters:28,dimmer:248,Solvay:2,"toy-making":1,cartoonists:4,LeBaron:2,Cindy:2,Rupert:2,Comanche:2,Gus:11,voting:122,Gur:2,strolled:32,admiring:8,parrots:4,Roots:28,minors:4,Surprises:4,"satellite-TV":1,golfed:17,overly:6,turnarounds:4,"Corp.:8.30":2,Surprised:17,"company-wide":1,graves:4,graver:136,Business:11,peanut:22,Lucky:40,Kartalia:2,Siemens:2,chaps:4,Exchanges:4,graven:1,"low-boiling":1,ISTAT:2,Hoses:4,WRC:2,"product-inspection":1,Ptachia:2,furloughed:17,Hosea:2,assai:64,reverberate:39,"string-of-pearls":1,severely:6,staffs:18,respectful:1,Azucena:2,midterm:1,anachronistic:1,mottled:14,disbursements:4,choppy:1,optics:4,dimes:4,HANOVER:2,"first-degree":3,quakes:4,HANDICAPPED:17,egocentric:1,Ghadiali:2,nests:4,Anne:59,doctrines:4,unshelled:17,"good-faith":22,giving:55,worshipping:8,"Warner-Lambart":2,"Third-Quarter":3,rescheduling:55,eatings:4,Herford:2,"group-identities":4,Suggested:14,baring:8,Housewares:28,"corporate-image":1,"C.J.B.":2,Hussein:2,remark:25,Grammophon:2,stalks:18,biographies:4,McKibben:2,aromas:4,transpiring:8,rueful:1,birthed:17,"non-disabled":3,named:45,Oases:4,"Specific-Time":2,"Aerospace-Thomson":2,private:34,"factory-like":1,"shoulder-to-shoulder":1,names:18,Covell:2,staple:22,McKeever:2,Stancs:2,highrises:4,Martians:2,seamless:1,Analyzer:2,manufactures:72,oils:4,themselves:53,Lockheed:157,oily:1,assailed:54,Sampson:2,WHICH:447,"pre-Han":2,Relief:11,Espanol:2,arranging:8,"Australian-Chinese":1,harvest:44,extrapolated:17,Lordstown:2,"Calif.-based":1,Managers:56,Nationalist:66,crocked:1,"high-class":1,instantaneously:6,unreal:1,Nicolo:2,praise:24,unread:1,Nicole:2,prohibiting:8,proportions:4,reconstructed:103,Dogtown:2,PINDLING:2,justifications:4,Kerouac:2,Moline:2,maturities:4,daring:261,maitres:64,Clemenceau:2,"says.":20,"high-art":1,Proves:20,Dayan:2,buildings:4,"El-Sadr":2,specifications:4,Videotron:2,bothered:54,nullify:42,Cynwyd:2,frau:64,unmasks:20,Macrodantin:2,Orwell:2,Amca:2,Deployment:2,Maanen:2,"one-acter":1,"vehicle-marketing":1,Huffman:2,ignite:39,resurgent:1,Molly:2,Collor:2,"non-dividend-bearing":1,telephoning:55,Haruo:2,ALLIANCE:2,Buddha:2,Delco:2,industries:4,revived:54,le:849,lb:19,unstained:1,la:850,"closely-packed":1,lo:106,Cove:2,Gripped:17,Cutbush:2,Unfriendly:1,revives:20,extinguishers:4,criminal:3,spreading:8,Guinness:2,Porto:2,PepsiCola:2,Colton:2,questions:18,"budget-strapped":1,muddle:25,Porta:2,Filling:229,LPL:2,Kooten:2,mandate:25,Dynascan:2,Ports:113,strive:42,commmercial:1,Stonestown:2,"turn-out":1,Laurentian:2,"l.":851,handiest:51,Honfed:2,Slickers:28,"Weber-controlled":1,Spaghetti:2,Gorky:2,"clay-like":1,Balloon:11,restructured:45,shriveled:45,standardizing:8,"FDA-defined":1,attend:42,announces:20,Boardwalk:2,wholly:6,insolvent:3,Avondale:2,fondly:6,marvelled:16,Sholom:2,hedged:54,Kangas:2,Greener:12,Minnery:2,salami:91,confirmations:4,Kinsley:2,"Amoco-led":1,Iberian:40,bleed:42,Krzysztof:2,Kaixi:2,deprived:320,"poorer-quality":12,Ochs:2,overweening:1,volens:64,noncorrosive:1,Hanging:8,retain:42,retail:255,deprives:20,Nettleton:2,rudely:6,finest:51,"fancy-free":1,unnaturally:6,Modrow:2,notes:18,Administration:11,Carisbrook:2,Yeats:2,Unionized:17,alleys:4,foreclosures:4,Careers:4,miserably:6,"air-tickets":4,CDBG:2,Wives:41,Lippincott:2,"Street-inspired":1,messing:8,Farmland:2,galvanize:39,Stevenson:2,wildest:51,"Stoic-patristic":1,DeVille:2,highlands:4,"AZT-resistant":1,"Knox-like":1,Vogelstein:2,Universal:40,"co-production":22,Grevile:2,Burton:2,Bayne:2,"T-1000":2,Lovingly:6,teaspoonfuls:4,wakes:20,jinks:4,bisexual:1,tidy:1,allotments:4,comfortable:3,tide:25,comfortably:6,miserable:1,keener:12,Grammys:4,regenerates:20,Activities:74,saponins:4,Thousand:2,billiards:19,provokes:20,"corporate-coverage":1,unsettled:103,provoked:85,underlings:4,reciting:8,Sheridan:2,"less-toxic":1,Without:124,"once-dry":1,Becker:2,LOSES:20,Becket:2,"third-ranked":1,Jensen:2,Unified:2,Estuary:2,enthusiastic:1,Landesbank:2,Shoals:113,"Landrum-Griffin":2,callers:4,Gargantuan:1,Honolulu:2,improprieties:4,supported:81,postdoctoral:1,misclassified:17,Mengitsu:2,Divergent:1,reeling:8,Reviglio:2,ossify:39,loafers:4,VNR:2,WENT:16,Dieux:2,demonstators:4,"MC68030":2,"A.M.A":2,aforementioned:7,Combatting:8,Organizers:4,manhours:4,bedsprings:4,Bringing:116,Verey:2,Zones:4,Thaddeus:2,pertains:20,caches:4,hydrocarbons:4,conform:42,Area:11,Hurray:2,RATE:47,Siad:2,Ares:2,Justices:111,"tax-understatement":1,Siam:2,Hurrah:125,Hawaiian:209,"Commander-in-Chief...":102,literate:1,DeWitt:2,Wenberg:2,discounts:18,overestimates:20,"half-closed":1,Kenner:2,superior:3,junkies:4,"A.L.":2,implementing:8,UNIX:2,"Cities\\/ABC":2,Krakow:2,"non-objects":4,morphologic:1,fulfilled:54,assure:42,insidious:1,busted:103,Delicious:2,longhaired:1,overstaff:39,Tacoma:2,Sverdlovsk:2,Conscience:47,nonsuccessful:1,teasing:261,Refcorp:11,deckhands:4,Holiday:2,freeholders:4,Temple:11,pratfalls:4,pouring:8,Berlioz:2,Rewards:4,muddy:1,unstrung:1,"rocket-like":1,paratroops:4,chauffeurs:4,Acceptance:11,Center:129,"neck-and-neck":1,GERMAN:1,Marlon:2,airplanes:18,"capital-spending":3,Korneyev:2,Marlow:2,Centel:2,splits:18,"SELF-DESTROYED":17,drapers:4,Elderly:1,Ferrell:2,instigated:32,CHIPPING:8,backslapping:8,Farnham:2,permeate:39,Confidence:47,Tannhaeuser:2,audiocassettes:4,Shrum:2,Uniform:1,respected:81,Volstead:66,arabic:1,fusiform:1,"InfoCorp.":2,Astin:2,Eloise:2,"navy-blue":1,Hunter:144,defiant:1,Excelsior:2,brightened:32,McCabe:2,matinals:64,tumbling:55,"Rhythm-Wily":2,reshuffled:16,Bearings:2,"ground-handling":91,Convex:2,"visa-free":1,"man-hours":91,exceeds:20,hearest:33,Biotechnology:11,buttonholes:4,Caspi:2,retard:42,"Halva-Neubauer":2,Palmatier:2,procurement:22,nondemocratic:1,creators:4,Porres:2,fetal:1,tripods:4,"CW-capable":1,Hyundai:113,coasted:32,underlying:199,Averell:2,Makinac:2,Gamble:2,Brigade:2,Inquisition:11,republican:1,Montle:2,dilutive:1,Friday:2,nastier:12,Groggins:2,underscored:32,franking:21,"evidence...":102,Dearborn:2,"out-of-the-way":1,incarnations:4,petrochemical:22,"barbed-wire":3,judiciary:22,"HUD-subsidized":1,impugned:17,INTERNATIONAL:2,Fallen:40,Searby:2,Mauch:2,"two-seat":1,Nagrin:2,downplaying:8,Scale:2,Scala:2,interludes:4,holies:4,Pirandello:2,Scali:2,paternalistic:1,corroborate:42,infiltrated:54,Copley:2,Sheehan:2,supportive:1,frenetic:1,attactive:1,Lompoc:2,Maurine:2,Avions:2,wittingly:6,Xylogics:2,discorporate:82,Hearings:4,enviably:6,slight:794,puppeteers:4,hospitable:1,periodically:6,simples:4,simpler:136,Tilted:2,Weight:47,schmoozing:21,follies:4,thuds:4,Cheer:59,Gale:2,flaky:1,unidirectional:1,Gala:2,reincarcerated:17,"conducted...":102,"now-Rep":1,"pro-business":1,Pirrie:2,submits:20,demonstrable:1,demonstrably:6,"Free-trade":1,oughta:852,Foamed:2,Freshwater:2,Atra:2,Steinman:2,Evolving:8,Cellars:2,legends:4,Bailit:2,flustered:17,Uphoff:2,Chile:2,Child:11,Chili:11,Gutzon:2,GAMBLE:2,Chill:47,"two-by-fours":4,Ukranians:28,crutches:4,solicitors:4,"auction-fee":1,backstop:25,partially:6,wise:1,Wall:401,wish:256,variations:4,Walk:95,Walt:2,"Asher\\/Gould":2,whenever:293,Insurance:11,Desiring:8,penetrating:13,rabbits:4,brochures:4,Pulova:2,enlists:20,Instrument:2,unpicturesque:1,"finite-dimensional":1,Carruthers:2,mysteriously:6,Colombian:66,redder:136,Whipsawed:1,Turning:229,Storehouse:2,postmen:4,sleepwalking:55,"Leigh-Pemberton":2,traumatic:1,detractors:4,Farmaco:2,bundle:25,shrank:16,thumping:55,inboard:97,seismic:1,mediocrities:4,"Senate-House":40,hiked:32,Begelman:2,dispersants:4,Greekfest:2,Hoenemeyer:2,hikes:4,wryly:6,Myerson:2,baked:103,Seattlite:2,sufficed:16,"Louis-based":1,hats:4,Christophers:28,Continental:40,Dining:321,interprovincial:1,slogs:20,"thrice-monthly":1,hate:256,Isetan:2,thinnest:51,Tallchief:2,warred:16,Truffaut:2,Ledoux:2,efficaciously:6,iliac:1,honorable:3,Esmarch:2,missionary:3,Restaurants:46,Tunica:2,Templeton:2,vitriolic:1,Conway:2,Smerdyakov:2,Guarini:2,Bigger:12,pagodas:4,Director:11,AMCA:2,enjoy:42,"high-technological":1,strivings:4,Rapport:2,guardedly:6,scribbled:32,"resin-saturated":1,RESIGNATIONS:4,"flat-topped":1,ransack:39,shining:30,behooves:20,filibusters:4,Train:11,beaten:14,abides:20,Castleman:2,"inter-American":1,chambre:64,Chaplain:2,"A.L/NNP.S/NNP.A.C.":2,Made:853,"limited-partner":1,Sutpen:2,Filene:2,corralled:17,"beauty-care":1,Willett:2,morosely:6,SHEARSON:2,masseurs:4,Beatrice:11,"Remic-related":1,Furnishes:20,WON:33,mantic:1,Koh:2,Kok:2,ridiculed:17,resurrected:54,Kon:2,Koa:2,"M-1":11,Nicodemus:2,Technodyne:2,feelings:4,sorrows:4,viscera:4,Hakim:2,wars:4,"cholesterol-rich":1,Kos:2,"water-submersion":1,"quasi-tax":1,Circular:40,"spread-eagled":17,yellows:4,"B.S.":2,"Australia-wide":1,Thermedics:113,lessening:21,Instruments:41,sobered:54,raids:18,bragged:16,horseshoers:4,boomed:32,Ibias:2,Blume:2,Incidents:4,Gaspee:2,breaths:4,"real-time":1,robbing:8,Hacking:8,outdated:7,Salomon:11,Crazy:2,join:42,"pre-cooked":1,"self-regulating":1,clubby:1,entertained:54,joie:64,warn:42,McManus:2,OIF:2,shook:662,loosen:39,Paschal:2,generically:6,Musial:2,Lori:2,Lord:854,Lora:2,looser:12,collude:39,Sidhpur:2,traditionalists:4,Karlsruhe:2,"High-Tech":1,"Preparation-Inquirers":2,Paying:8,Grist:2,Caucasians:4,mess:24,Chesapeake:2,Disregarding:8,Chapman:11,demanding:30,mesh:24,Mamma:2,Unreported:1,biting:30,sparkles:20,mortgages:18,Sewage:2,risible:1,Etudes:2,gentlemanly:1,Avena:2,Varalli:2,spout:78,"criss-crossed":7,mucking:8,Greetings:113,"record-tying":1,"Yorkshire-based":1,unglued:1,flippers:4,monde:64,Shifte:2,Weiss:2,Kodyke:2,Hichens:2,comandancia:64,Urban:2,"conflict-ridden":1,Hero:11,Willkie:2,alveoli:4,Herb:2,Kelsey:2,exhibits:18,comprehend:39,"smaller-than-expected":1,Emerald:2,Hers:482,Hillerich:2,Continued:14,BIRDS:4,Branches:4,"Anti-Wrinkle":2,revelations:4,"new-issues":176,Haughton:2,persuaders:4,notified:54,vacillated:16,imperiously:6,Pankki:2,"dollar-denominated":1,"demand-supply":1,unlinked:1,"hawk-hunting":1,notifies:20,lacerations:4,geldings:4,"W&D":2,Lippman:11,winsome:1,combining:8,damped:386,Drafted:17,Pillsbury:2,overcame:16,Holz:2,Holy:40,fevers:4,stringed:1,Holt:11,washed:45,Agua:2,Institute:11,Ryusenji:2,unspectacular:1,Ginnie:2,Hole:11,Hold:42,underwrite:42,Holderbank:2,merchandising:21,slivered:17,"addiction-treatment":3,streamline:39,biological:3,Idje:2,Aragon:2,alarmingly:6,jubilant:1,Esselte:2,"soft-rock":1,Carre:2,blackmailing:8,TIME:47,Carry:2,Murderers:4,Darnell:2,Gennaro:2,trilled:16,Marcoses:28,Kehl:2,anchorages:4,priority:22,Bruges:2,Academy:2,Lindskog:2,Racie:2,"teacher-cadet":1,Racin:2,Afghan:10,Rebecca:2,"beat-up":1,Splendid:1,brushes:4,Ethocyn:2,Actually:6,Indulgers:4,ClothesTime:2,"Diego-based":66,"Ash-Can":2,Drye:2,Koji:2,Unix:2,LaWare:2,genders:4,Unit:47,lbs:4,Mitsuoka:2,staphylococcal:1,"New-Waver":2,Offutt:2,Estimating:8,McEachern:2,regulate:42,leafy:1,NBC:2,spade:779,unceasing:1,Pressler:2,"-":102,oriented:45,Yeager:2,retinoblastoma:80,"once-rich":1,cleft:855,Carbide:11,Omega:2,harped:16,"Davidowitz.":2,Rizzello:2,"one-thirty":6,cilia:4,mannerisms:4,Dairy:11,interjects:20,coin:25,unorthodox:1,"lb.":19,soupy:1,treats:72,bullied:32,soups:4,Rubenstein:2,flow:24,Goodison:2,orderly:34,reemerged:16,flog:39,untapped:1,Howley:2,"cortico-fugal":3,Koenig:2,Addiss:2,Neff:2,inspire:42,Scanlon:2,random:3,Ndola:2,"Joseph-Daniel":2,tacitly:6,substituting:8,Espana:2,Extremadura:2,Gollust:2,Simultaneously:6,Palcy:2,peasants:4,"soft-hearted":1,"anti-intellectualism":3,"Michelin\\":2,gods:4,Tribou:2,Netherlands:74,sunglasses:19,unassisted:1,Larger:12,Shades:2,goons:4,shutting:8,Shizue:2,interrogated:17,Quarter:47,Downham:2,spinoffs:4,"oil-based":1,Hildegard:2,Sancken:2,authorizations:4,twice:218,shots:4,"death-benefit":1,cufflinks:4,adapters:4,farther:381,duck:25,Caribbean:40,Pet:2,Pew:2,Per:127,resist:42,Pen:11,Pei:2,alkalis:4,Taurog:2,Pee:2,"Optic-Electronic":2,"rain-slick":1,Macedon:2,"double-glaze":39,McDermott:2,"Philippines-backed":1,Nagelvoort:2,slotted:17,"round-tipped":1,McVay:2,Shearman:2,deceptively:6,bashes:4,"one-parent":1,handwritten:1,BAHAMIAN:1,"million-ton":1,"husky-voiced":1,"fired...":102,"Buick-Oldsmobile-Cadillac":2,phoning:8,"Icelandic-speaking":1,aristocrats:4,nonfat:1,Revenues:123,"rabbit-test":1,blasted:32,indistinct:1,Whig:47,biologically:6,"inter-governmental":1,Arens:2,precipitous:1,"two-billion-Australian-dollar":1,participating:30,merging:55,"debt-to-equity":3,Whiz:2,rhetoricians:4,Whit:2,compilations:4,Makers:41,Whip:2,"Gro-Lites":28,Celgar:2,"J/NNP.A.C.":2,elfin:1,kwh:4,Bozicevich:2,epidemic:22,"student-physicists":4,herbaceous:1,intimal:1,viruses:4,maudlin:1,Putt:2,Katims:2,coalesced:17,beef:44,"open-mouthed":1,bikinis:4,Ebbutt:2,ropes:4,"tilt-top":1,Southern:129,been:856,Bertie:2,bees:4,miraculously:6,Bertin:2,roped:16,"dia.":22,Canestrani:2,Herold:2,davits:4,"anthropological-religious":1,Dingell:2,Carrion:2,"sweet-throated":1,Cain:2,Countach:2,Elie:2,berms:4,Wiesenthal:2,Educators:113,fallow:1,unchristian:1,Upped:17,PUBLIC:1,decanted:17,"Beghin-Say":2,"push-button":1,coupes:4,Wolder:2,Driskill:2,Eckart:2,Bush:2,"half-transparent":1,"bull-headed":1,ramifications:4,unservile:1,Quirinal:2,Jacqueline:2,"dull-gray":1,Camaret:2,Zimmerman:2,Eligio:2,inventors:4,unbearable:1,"non-biodegradable":1,riffs:4,"rose-pink":1,Morning:857,BCED:2,Kearton:2,"junior-philosophical":1,embarrassments:4,forceful:1,recalculations:4,werewolves:4,greatest:51,"business-to-business":3,shadowed:14,Sarah:2,PARKER:2,Saran:2,Gouge:39,Arabian:40,Pawleys:2,Constitution:11,"higher-margin":335,"U.S.-Japan":66,transgressed:16,Krakatoa:2,Astoria:2,Deriving:8,Figgie:2,retreat:25,technological:1,Crossair:2,anticoagulants:4,"lower-level":3,turquoise:3,"Notre-Dame":2,Pincus:2,Asimov:2,Teagarden:2,James:2,Taking:229,Diabetic:2,"non-financial":1,Owls:4,Hollander:2,Titles:28,racketeers:4,Vadies:2,sanitary:1,amok:6,Contrarily:6,mystically:6,specific:3,"sticky-fingered":1,Hackett:2,amor:64,Pasternack:2,"biomedical-products":4,Species:74,rustling:21,clubs:4,clawed:17,escape:182,Shays:2,"post-nuptial":1,Motherwell:2,"research-and-development":22,"Island-based":1,Insiders:4,Metronic:2,core:22,Subdued:1,Divorced:2,McCaffrey:2,Glasswork:2,Yacht:2,Lucius:2,Bambi:2,watchings:4,"cancer-related":1,Emperor:11,Vitro:2,surround:149,misleading:13,logistical:1,Machines:41,discharging:8,Pupils:4,"low-cost":3,JAMES:2,Bartlett:2,accommodate:42,Noschese:2,"Twentieth-Century":2,Martha:11,emigrate:42,tranquilizers:4,Marthe:2,rely:42,Selling:210,unaware:97,Cloth:2,scamper:33,nonthreatening:8,drowsed:17,Competing:8,Burghley:2,Olsson:2,Ambrose:2,"high-vitamin":1,Tune:2,"IranU.S":2,realer:12,Neuharth:2,"High-tech":3,Amusements:111,Interpretation:11,ROGERS:2,"slo-mo":1,Meaden:2,rankled:17,Domestic:66,Cotten:2,Bonnet:2,Cotter:2,Shippers:123,Bonner:2,bide:39,"Pro-forma":1,brightly:6,"F.L.":2,atypical:1,"second-most-conservative":1,"prisoners.":4,Carson:2,"voluntary-control":1,Lumpe:2,Begin:39,boobify:39,outstretched:17,no:858,na:859,commercials:4,nd:119,ne:64,Scarlatti:2,Patagonia:2,criminalized:1,"market-allocation":1,"quite-literal":1,Costa:860,reconsider:42,"insure...":102,impounded:17,trailers:4,Odakyu:2,Costs:4,corporations:4,dappled:1,parities:4,Geza:2,BANKAMERICA:2,"to-day":168,swarming:8,Zellers:2,plastically:6,"anxiety-free":1,Clothestime:2,"Franco-Irishman":2,Title:47,varying:30,unregulated:1,ACCOUNTS:57,PrudentialBache:2,reaccelerating:8,cathodes:4,Columbia:2,"geo-political":1,scrawny:1,reassemble:39,flanged:17,"Infocorp.":2,Anything:47,Centralia:2,Itoh:2,decreeing:8,sloppy:1,sowered:16,Viceroy:2,carting:8,Reels:28,"slow-baked":1,sighed:16,REVIEW:2,Vilaplana:2,inauspicious:1,intangibles:4,Rex:2,Rey:2,Schone:2,Tomkin:2,Rep:2,Rev:2,Ret:2,Culbertson:2,"bid-asked":1,Northwest:180,"Hard-Line":1,supertankers:4,Reg:2,Red:861,Lupton:2,Newsom:2,rerouting:8,Bruck:2,Bruce:2,Oedipus:2,noncontroversial:1,agrees:20,Hartwell:2,hairy:1,replays:4,Hopkins:2,"higher-than-expected":1,Laptev:2,accountable:1,twentieth:1,Amorim:2,Coldwell:2,houseboats:4,Sees:109,decadelong:1,united:834,ENTERPRISES:2,sharpening:55,descended:32,editorialists:4,Seen:17,weird:3,Caruso:2,Seek:31,Crutcher:2,washes:18,shelled:112,sevenfold:6,threes:4,Etzioni:2,smallish:1,concoct:39,Hostage:2,Differences:4,"Florican-My":2,Automation:2,wrongs:4,Foggs:2,"two-timing":1,Foggy:2,Slackened:17,Elizabethans:4,Tims:2,signboards:4,neared:32,demonized:17,Calling:8,Calabasas:2,Time:11,prefectural:1,Weidman:2,Pascutto:2,inhabit:33,Fredonia:2,Scania:2,German:10,humly:6,Teatro:2,Gorillas:113,fauna:91,Areas:4,coral:1,Polyanka:2,performer:22,"now-repentant":1,Skubal:2,McCarthyite:1,Uniqueness:2,theistic:1,slugging:8,performed:54,viewless:1,"government-operated":1,Moluccas:2,Scambio:2,harmed:54,infringements:4,Hormel:2,flavored:7,unutterably:6,epigrammatic:1,Prospects:4,Natalie:2,Natalia:2,unawares:6,Chinchon:2,peacemakers:4,"over-produce":39,"WD-40":2,Fortress:2,Machida:2,Fantastico:2,Guaranty:2,lemmas:4,overreached:16,infidels:4,Wyly:2,Batten:2,Unusual:66,"pressed-paper":1,"vinyl-products":4,"Journal\\":2,"stock-index":649,Ghana:11,abusers:4,cheerleaders:4,"company-arranged":1,varicolored:1,Burgher:2,Jianying:2,Journals:28,TPA:2,Riefenstahl:2,"Yamatake-Honeywell":2,Parisien:2,Maher:2,countrywide:1,TPS:2,Broughton:2,producing:5,"car-parts":1,Stephens:2,"Cal-Neva":2,Watches:4,possibilities:4,"Scotia-McLeod":2,nodding:30,Concordes:2,"association...":102,dabs:20,Worry:25,"a-Totals":568,Move:556,unproductive:1,Easily:6,"convention-goers":4,markups:4,approximates:20,gaps:4,begun:17,Leppard:2,approximated:81,"save-the-earth":1,adequately:6,splashy:1,Spielberg:2,costliest:51,Feyer:2,infuriated:32,profit:24,privatizations:4,Fike:2,dehydrated:7,attracted:54,delight:44,booby:3,commonwealths:4,"high-gain":1,technocrats:4,subzero:1,marries:20,impose:42,"high-tax":1,"deep-set":1,"Moscow-based":1,deliberated:16,"five-foot-wide":1,"deep-sea":1,unborn:3,Sinopoli:2,simplifies:20,buzzes:18,"pencil-and-sepia":1,incongruous:1,Sochi:2,Crozier:2,simplified:7,alike:218,Onstage:6,SEi:2,SET:16,Electrolux:2,SEE:33,SEC:2,Such:862,SEM:2,anesthetized:7,SEI:2,unfaltering:8,wax:25,"anti-ulcer":1,"Rent-A-Car":2,taketh:39,intrinsically:6,Clothes:57,Carney:2,Pantera:2,Sousa:2,require:42,Drunk:66,Drovers:4,CONCORDE:2,"blood-clotting":1,Roederer:2,"all-inclusive":1,"Atlanta-based":66,"J.NTT":2,thyrotrophic:1,and:863,mated:17,Clint:2,blitzing:8,pro:864,ani:1,"slick-headed":1,Aylesbury:2,Cline:2,commissioning:21,pry:39,Gildas:2,foundered:16,calisthenics:4,"Uh-huh":106,Lipstein:2,Famous:40,Goldang:106,Precinct:2,Kang:2,Fudomae:2,invasions:4,Customized:1,clatter:25,Hardis:2,Zachrisson:2,"computer-servicing":3,yelped:16,unwisely:6,peptides:4,seafarers:4,Cafeteria:2,perpetrated:54,"non-building":1,Renewal:2,applauding:8,Sakura:2,Cavallinis:4,"fish-processing":1,Raffaello:2,BUSY:1,toxicologists:4,piranha:19,overage:1,BUSH:2,explicitly:6,"close-mouthed":1,centrally:6,Shoichiro:2,outguess:39,begging:55,crude:22,microchannel:1,"high-quality":3,"Theo-Dur":2,Adalbert:2,Buchenwald:2,regarding:8,floods:4,preliminarily:6,Bailly:305,CELTICS:28,Cognex:11,"adventure-based":1,reveals:20,pummeled:32,Colonel:11,labors:18,innards:91,Mosher:2,sorest:51,Geva:2,catapulting:8,underpaid:103,"B.A.T":11,insuring:8,Jesuit:2,detect:42,gastronomes:4,Gagliardini:2,flop:24,belittled:1,"materials-handling":1,invokes:20,Texas:40,BLOCKBUSTER:2,Gilsbar:2,caucus:25,Lilian:2,"good-looking":1,painters:4,"Webster\\/Eagle":2,grieved:17,TODAY:2,Messa:280,"bite-sized":1,Sterile:2,Parkshore:2,Filmworks:2,stupidest:51,"non-crisis":1,Macwhyte:2,Rosencrants:2,Saracens:28,Investment:11,deported:54,Nott:2,checkbooks:4,"frequency-independent":1,"loose-leaf":1,Note:63,Wisman:2,Dupps:2,blasphemers:4,Lundeen:2,Crumlish:2,mezzo:22,Buy:865,Carlzon:2,Bus:47,computing:55,But:866,Slated:17,votive:1,"four-story":1,Slater:2,archrival:3,Bud:2,"non-alcohol":1,Grappely:2,robbed:54,"black-on-black":1,Farra:2,"Communist-designed":1,Anacomp:2,Cursing:8,Divide:39,Indentical:1,Cents:113,embodying:8,Bradsher:2,Crusade:11,Interleaf:2,"still-punishing":1,prescriptive:1,Slow:82,crusades:4,"clerk-turned":1,yachtsmen:4,hurting:8,"CRAF-Cassini":2,crusaded:17,converts:18,whimpering:8,Hidden:14,pruning:55,Bonnell:2,perhaps:6,Protesters:4,farmhands:4,Excuse:39,Heinhold:2,"takeover-related":1,agitated:32,events:4,TRIMMING:8,applaud:149,Signal:2,retrograde:1,"W.M.":2,devoid:1,prospered:54,smatterings:4,arose:16,changing:5,"high-paying":1,Langner:2,implements:18,gibes:4,modes:4,Bedminster:2,purposeful:1,Sonates:28,melodramatic:1,Bucking:8,model:204,United:98,softwood:1,Nawbo:2,Unitel:2,stiffnecked:1,clot:25,entrusting:8,laminating:8,perilous:1,Lombard:2,Bam:106,Jobs:130,MacPherson:2,Zurek:2,poises:4,"textile-trade":1,prettily:6,engulfed:54,poised:45,CONFRONTATIONS:4,Amendment:11,Rosenblatt:2,Virginian:2,Lili:2,Terrible:2,"mini-cars":4,predetermined:17,Runkel:2,Alito:2,glitches:4,Hingorani:2,Nikolai:2,standstill:3,Kellwood:2,"ill-timed":1,Subjects:4,Grimaldi:2,Gunmen:4,upside:277,Lister:2,Symms:2,"Million-dollar":1,Tizard:2,Tatsuhara:2,pacific:1,unhocked:17,Afrikaaner:2,Listed:14,bylaws:4,Pechman:2,Safeguards:4,Listen:216,Sully:2,Danish:66,colloidal:1,Invite:59,prolific:1,"non-energy":1,shirtless:1,Appian:2,legal:1,Blowers:4,"above-water":1,provides:20,"chapel-like":1,"extra-musical":1,terrifies:20,Zama:2,"white-collar":1,Hakuhodo:2,"multi-column":1,weirdest:51,"ethanol-powered":1,LaGow:2,"fit-looking":1,rearranging:8,Korda:2,zealous:1,"good-til-canceled":1,waded:32,Costley:2,"Small-lot":1,wasteful:1,"top-tier":1,speculates:20,Lovington:2,Inject:39,Saxon:40,speculated:32,sloshing:8,refinements:4,"Red-prone":1,Luxor:2,Assam:2,Bachelor:2,Mifepristone:2,"outward-looking":1,Letter:11,"Conservative-Communist":1,unpolished:1,"Princeton\\":40,UEP:2,Assab:2,Comfort:11,illuminated:81,Cowboy:47,"A.A.U.":2,illuminates:20,swathed:17,Heidenstam:2,Assign:39,"L.P.V":2,Boal:2,mortals:4,Okuma:2,turbines:4,Boaz:2,preside:39,WEST:2,"zinc-consuming":1,Boat:11,remedies:4,Vasotec:2,tubercular:1,Pharmacia:2,headwaters:4,clamshells:4,"pudding-faced":1,Finnsburg:2,amours:64,stumbled:32,Criminal:40,miscarriages:4,idiot:3,"post-split":1,McQueen:2,Armentieres:2,regents:4,kerchiefed:1,stumbles:72,Cleaver:2,Viroqua:2,"tax-aided":1,Tougas:2,includes:20,Tyrannosaurus:2,Miro:2,bounded:45,included:112,includee:33,applicators:4,Bagneaux:2,Rosman:2,"based.":17,bilateral:1,invest:42,uglier:12,"wayward-looking":1,curvy:1,Tancred:2,ensuring:8,Lauritz:2,Rowell:2,Juneau:2,Analog:2,confers:20,Lumina:2,Wigglesworth:2,Noon:2,remedied:17,scattered:45,seals:18,Parents:56,Mareham:2,Minot:2,voids:20,Minor:2,Eluard:2,Nederland:2,"H&Q":2,"Lind-Waldock":2,subjected:17,"H&R":2,safeties:4,"burger-heavy":1,Construction:47,Soren:2,belonging:55,Nogales:2,Airedales:28,bubbled:54,Pomicino:2,Dillingham:2,Southon:2,worst:867,hatching:21,jacketed:7,bubbles:18,wilting:8,learners:4,Joshua:2,Enthusiasts:4,Momentarily:6,Melamed:2,Fixit:2,Germain:2,Nonperforming:13,undone:14,MasterCard:2,Rackmil:2,"exit-load":1,Filmed:17,grateful:1,"built-in":3,tee:78,Rashomon:2,Oversized:1,Seminario:2,"Well-stretched":1,"I.C.H":2,offsets:72,ovarian:1,Mick:2,Camarillo:2,Mich:2,Mice:4,Helion:2,Folgers:2,midrange:3,Australians:57,communicable:1,eventuate:33,underwiters:4,foreshortened:17,absurdist:3,EC:2,"law-unto-itself":1,directions:4,bulls:4,increments:4,diming:55,"barrier-free":1,deities:4,"gray-blue":1,"Cranston-Mitchell":2,Congolese:40,options:4,Style:11,Avrett:2,Videoway:2,tablecloths:4,snug:1,snub:39,Nigeria:2,"Open-end":1,USACafes:74,Chiggers:4,Montedison:11,watchmen:4,Baseball:47,"MUST-SIGN":1,"market-jarring":1,Melling:2,Sicilians:4,Manville:2,El:2,thus:6,Mines:41,pectorals:4,Fleet:11,Steeves:2,Ek:2,"ability...":102,Westerns:4,Mideast:129,smoggiest:51,Darlin:2,precociously:6,refractive:1,protestors:4,vaguer:12,Tomorrow:669,enfant:64,epics:4,Uranium:11,Microwave:2,coerce:39,UDAG:2,hourlong:1,thud:25,Higgins:2,breaking:5,"satellite-launching":3,Docherty:2,extinguished:17,"floor-length":1,SOVIET:66,"hundred-and-fifty":1,tonnages:4,Broberg:2,pertained:33,Scandia:2,preoccupy:33,panoramic:1,absentmindedly:6,numb:1,CACI:2,Ake:2,"non-literary":1,INSURERS:4,Tegner:2,cooperatives:4,Lieberthal:2,Marvelous:1,barbs:4,"bridge-lending":1,Eccles:2,"dollar-yen":1,proverbial:1,"thought-out":1,interpersonal:1,Alternating:8,flounce:33,unleashing:55,Stein:2,susceptible:3,Dental:2,"co-ordinate":39,acoustical:1,Heyman:2,might:852,alter:392,Veslefrikk:2,"easy-going":1,Badlands:4,"intensive-care":3,"barrel-chested":1,FOILED:16,Metallgesellschaft:11,"three-year-old":3,Westheimer:2,unreasoning:1,Cohodes:2,nephews:4,Gauntlett:2,Phoenicians:4,ODDITIES:4,athletics:4,hammering:55,Tiphook:2,"then-City":1,formulate:39,recapitulate:39,Sporto:2,Pile:2,"age-bias":1,"sliver-like":1,braided:7,Funston:2,discrete:1,Tigers:74,Practice:11,Tigert:2,imploring:8,eyeteeth:4,solvent:3,ersatz:1,blaring:8,mountainously:6,alleviating:8,Littlefield:2,"Webster\\":2,generate:42,Kirgizia:2,thrown:17,"down-home":1,scratchy:1,Dietary:1,NEWSPAPERS:57,throws:20,Paulah:2,Embarcaderothe:2,flood:44,linking:55,Longtime:3,blank:590,bland:1,Playhouses:2,Mondschein:2,Cavaliers:4,swart:1,HOTEL:2,AIMO:2,Cavaliere:2,Yaohan:2,"on-site":1,Packages:4,"three-story":1,attendants:4,"highly-touted":1,Heisbourg:2,Whiteboard:2,imprinted:17,Malin:2,Malik:2,Malia:2,uncut:1,rigidities:4,dispensed:54,impersonally:6,Talbot:2,skylarking:8,dispenses:20,uniforms:4,"non-priority":1,strengthen:42,Newkirk:2,Jovi:2,Ebury:2,Nagasaki:2,rugs:4,heightening:55,Hilboldt:2,"freight-hauling":1,febrile:1,middlemen:4,Ordnance:2,added:85,beribboned:1,Nachmany:2,Assyrian:2,"odd-sounding":1,Kuvin:2,enduring:30,"well-chronicled":1,Zeiger:2,value:24,mineral:22,visrhanik:64,Bourassa:2,devalue:39,retardants:4,"pay-and-benefit":1,Chevrolets:28,Interpublic:2,Reynolds:2,institutions:402,stones:4,"white-topped":1,Dartmouth:2,Keating:2,awakens:20,"post-game":1,deserts:18,securing:8,heavily:6,Waymire:2,abiding:1,Galindez:2,transcendental:1,"Chong-sik":2,"D.S.":2,clarifying:8,"Brig.":2,"tariff-free":1,Stiff:1,Value:11,Alone:150,Miullo:2,Incorporated:157,industrywide:97,beards:4,Carausius:2,"environmentalist-developer":1,Olympia:2,Olympic:209,Bern:2,"Phillippe-Francois":2,Riccardo:2,macropathological:1,"western-style":1,marinas:4,Digges:2,treeless:1,"Also...":102,sustainable:1,"blood-filled":1,Networks:46,"seven-day":1,"life-long":1,Aromatiques:2,Plays:868,injecting:8,reverberations:4,Playa:2,"fine-drawn":1,Rooseveltian:1,jettisoning:8,crunching:8,druggists:4,Faustus:2,Zorro:2,Magurno:2,"fat-soluble":1,Mitsotakis:2,recently:6,"more-established":12,"one-penny":1,Hammack:2,rarer:12,stereos:4,Horry:2,lyrical:1,bronze:22,AND:596,ANF:2,ANB:2,ANC:2,ANN:2,breakin:8,Harco:2,ritualized:17,Farms:74,Volpe:2,ANP:2,"company-managed":1,ANZ:2,flies:72,Fabricius:2,ranchers:4,reasons:18,Quintana:2,Willis:2,flied:16,McHenry:2,pH:11,Willie:2,roaring:5,Stomach:11,"blue-uniformed":1,dug:32,Computerized:1,ecologists:4,Pincian:2,Massenet:2,"convertible-bond":1,togs:4,maneuverings:4,Operationally:6,condoms:4,apocalyptics:4,coerced:45,Gastronomie:2,bachelors:4,writeoffs:4,intercepts:4,Bigfoot:2,"anti-Moscow":1,drunkenly:6,Rafi:2,enriching:8,"trumped-up":1,Sinatra:2,Bacharach:2,"cross-subsidies":4,SHUN:33,Raft:47,INS:2,"Co.":77,chauffeur:25,aged:869,coerces:20,"Intra-European":1,"arch-rival":3,intrinsic:1,reasserts:20,"Allied-Signal":2,Cop:2,Cow:11,Cox:2,unspoken:1,usually:6,Coe:2,Sokol:2,Com:2,Con:129,earmark:39,Jelenic:2,"Lintas:New":2,dancing:21,Brittany:2,INA:2,Wartburgs:28,Reinforcements:4,Examples:4,riffle:39,steeled:17,abilities:4,Helmuth:2,altruistic:1,Shtern:2,Permanent:1,Bernhard:2,ORDER:2,Mynheer:2,gems:4,loading:21,Front:129,build:870,Alto:2,deadened:17,"supply-side":3,Alta:2,lovin:1,toothpastes:4,anthems:4,Pakistan:2,Wharf:2,Weitzel:2,Colony:11,ASK:2,safest:51,jelled:16,Mondays:41,"Macmillan\\/McGraw-Hill":2,Within:127,Galleria:2,understood:54,Avowed:1,Deaver:2,EDI:2,"tumor-suppressing":1,unreimbursed:17,gradually:6,"Vermont-Slauson":2,roundly:6,tends:20,"university-trained":1,fragments:18,Staring:8,Bogacheva:2,bookshelves:4,Epp:2,tinker:39,Eph:2,Proponents:123,unhusked:17,Rumasa:2,NYSE:2,Beddall:2,Prospective:1,mingled:112,"Senate-passed":1,stricken:14,mingles:20,Keough:2,minibars:4,doltish:1,Simon:2,Feversham:2,Midland:2,exhaustively:6,"charge-card":1,OPEC:2,"he-goes-or-I-go":1,OPEN:1,Sub:2,Murilo:2,conceivably:6,Nobuyuki:2,Farren:2,"Haagen-Dazs":2,"bottled-water":3,"inter-plant":1,fast:871,"ward-personnel":4,vendors:4,Brownings:2,conceivable:1,Barfield:2,melodic:1,Bryan:2,"nnuolapertar-it-vuh-karti-birifw":64,Corolla:2,Malaysian:1,applicable:1,forbidding:30,"Twenty-second":40,Contribution:2,Suh:2,groupings:4,gravitating:8,fries:4,interventionist:1,Brumley:2,fried:7,Equitec:11,Psychologists:4,Filmdom:2,"freight-rate":1,Donohue:2,Lecture:2,Establishment:11,"stand-ins":4,scrutinized:54,overseeing:8,scrutinizes:20,Airless:1,"non-deductible":1,Mises:2,Miser:2,vaulting:261,"Green-labeled":1,Freebies:4,Windle:2,Pitt:2,"time-shares":4,"frozen-foods":4,"low-grossing":1,suffers:20,Hooks:2,"OPA-LOCKA":2,Amram:2,sufferd:17,Peeking:8,"war-ridden":1,BROADCASTING:2,severable:1,Adcock:2,issued:45,Darby:2,besetting:8,Hitting:55,Pita:2,"PC-magazine":1,"Chavanne-Ketin":2,tumours:4,"top-to-bottom":1,issues:18,Marvin:2,peering:8,dissidents:4,Catalog:11,Noxell:2,Joint:2,Marvis:2,concomitantly:6,CASES:4,waiters:4,Crisp:2,graphic:1,gins:4,"product-related":1,Gorney:2,Enjoy:39,Dubnow:2,Emerging:872,Loveless:2,Competition:47,"Anti-abortion":1,Cofide:2,"Y-regions":4,Barsacs:28,FFA:2,Hill:2,Weisner:2,folds:18,"R.C.":2,flaunts:20,WYSE:2,protrude:39,Mme:2,growers:4,"Bermuda-registered":1,Zion:2,Tucked:17,"RCA\\/Ariola":2,RICHMOND:2,"Cornell-Dubilier":2,Licenses:2,"Soviet-supplied":1,refilled:17,counterarguments:4,Knopf:2,MORGAN:2,desires:18,Cuddles:2,Missoula:2,desired:45,"H.H.":2,bugeyed:1,sexy:1,ghilianii:64,"Ind.-based":1,Confederation:2,Lorna:2,Yasutomi:2,Lorne:2,CBI:2,CBO:2,CBS:2,Shrubs:4,"olive-flushed":1,locutions:4,celebrants:4,"High-level":1,continuities:4,chaste:1,disposals:4,"more-entrenched":1,leguminous:1,"upper-middle-class":1,lodging:21,boasts:20,fed:508,Indianapolis:113,Females:28,Hua:2,Hub:2,"&":873,storekeepers:4,Hun:2,Rotelli:2,Hut:2,few:337,depicted:54,fer:127,swaggered:32,bitterly:6,Hux:2,Huy:2,commiserating:8,sort:584,journalists:4,sore:3,lidless:1,Keerist:106,"hand-knit":1,nixed:16,augment:42,foppish:1,terroristic:1,misfits:4,Hartselle:2,Rifenburgh:2,Replogle:2,"lower-class":1,Hattiesburg:2,impedes:20,distractions:4,proprietary:3,Kathleen:2,"Non-Proliferation":2,dripping:8,Pinned:17,pragmatists:4,Matchbox:2,Details:123,IRAN:2,scrounging:8,Hackman:2,galls:4,Williamson:2,"Lexington-based":1,memorize:42,SKILLED:1,carries:72,"age-specific":1,"Grande-Bretagne":280,dismissing:8,Americans:474,grudgingly:6,"ever-present":1,Mohammad:2,LaBonte:2,puppets:4,Virology:2,unforgivable:1,barricades:4,grovelike:1,desecrates:20,PAUL:2,gluts:4,Letters:56,fuming:8,sillier:12,heroics:4,SIGNAL:25,swearinge:8,"Sun-3\\/50":2,Selassie:2,gardenias:4,"nit-picky":1,dirtiest:51,looks:132,flapped:16,indignantly:6,"Braddock-against-the-Indians":2,boosts:18,"intra-company":1,linguistics:4,Longshoremen:57,"double-deck":82,Kershbaum:2,ships:18,Callable:1,primordial:1,AmBrit:2,"kick-starting":8,"indispensable...":102,Hugoton:2,orthodox:3,Cooperatives:2,indexing:191,"movie-quality":1,Aztec:1,Berlack:2,negligent:1,tiptoeing:8,emerald:3,nurturing:8,Steffens:2,"insurance-reform":3,Nabokov:2,unwarrantable:1,Llosa:2,"capacity-controlled":1,"all-over":127,unpredictable:1,Michio:2,Darien:2,Weekly:40,"market-weighted":1,Consumers:92,Bonaparte:2,"most-sold":1,Geddes:74,Rumanian:1,Playmates:28,Rinat:2,Donahue:2,WNYC:2,Torts:2,tabloid:22,loquacious:1,integrates:20,Brechtian:1,redefined:16,thrifty:1,performs:20,integrated:14,despairing:13,thrifts:4,rewrote:16,Megarians:28,This:89,Poong:2,"recession-free":1,Shippey:2,Vogtle:2,Thin:66,IRAs:874,overtake:42,"gray-flannel":3,"DRI\\/McGraw-Hill":2,navies:4,uproot:39,phrased:54,"commercial-jetliner":1,Decanting:8,Sashimi:64,codifying:8,nasaled:16,Financo:11,salutary:1,Increased:14,retreats:4,Increases:18,Coates:2,Edwardes:2,Palermo:2,Limitation:2,"medium-term":1,"blind-folded":1,slides:18,Vaseretic:2,regards:72,Taliesin:2,Unitika:2,Italiana:2,beamed:17,"cash-flush":1,"kelly\\":2,Edition:2,patients:4,Italians:65,grander:136,Capping:8,Bergen:2,Thrifty:40,unaccountable:1,Sirota:2,"PaineWebber-involved":1,provdied:16,"low-heeled":1,Revolving:8,unremittingly:6,levelled:17,unaccountably:6,Relieved:1,etes:64,olfactory:1,Duane:2,towboats:4,"contrary-to-reality":1,Thrifts:4,Appendixes:4,combat:315,"plague-sized":1,Shepperd:2,Delchamps:2,Moshe:2,Proximate:1,discourage:42,refreshing:13,Spycket:2,Prague:2,visiting:30,looked:32,"two-engine":1,undimmed:17,Salyer:2,Zigarlick:2,"Ore.-based":1,insulators:4,Melinda:2,automated:48,Centaur:2,brutalized:14,Coordinated:17,Document:2,Invercon:2,spurring:8,Shut:216,"anti-personality":1,mugs:4,McCartin:2,Shuz:2,Gatoil:2,Shun:2,undermining:8,Shui:2,spun:54,prosecute:39,Loraine:2,Willings:2,"well-springs":1,"B-As":124,Regulative:1,inheres:20,spur:182,"father-and-son":1,"less-than-diffident":1,CONELRAD:2,"Nissho-Iwai":2,futuristic:1,Ratings:57,shedding:55,ServiceMaster:2,fossilized:1,Shensi:2,Kal:2,Cabrera:2,Merc:11,invulnerable:1,"M.L.":2,"Cleveland-based":1,Govern:39,torpedo:63,environmentalists:4,thoroughfares:4,vanishing:8,Camrys:28,Cairns:2,Toufexis:2,Marskmen:2,disenfranchised:17,Fredericton:2,ploys:4,"high-echelon":1,subscribe:42,"due-diligence":1,"physician-owned":1,coddle:33,Posner:2,Officially:150,Regrets:20,hypermarkets:4,amigo:64,provinces:4,Pacta:64,Perrin:2,intimidating:30,tutor:25,shims:4,Cennini:2,proudest:51,Cennino:2,alkaloids:4,Islamabad:2,meritorious:1,"Trim-your-own-franks":39,Imre:2,overproducers:4,Richardson:2,Saloon:2,Flory:2,"pool-equipped":1,eyelashes:4,Force:164,Deaths:113,persevered:16,Takashima:2,Wait:260,"capital-gains-tax":1,Skolkau:2,Barstow:2,baldish:1,maladaptive:1,imprudently:6,brandished:16,kneaded:17,"units-Texas":2,Ladgham:2,Huntsville:2,Taxation:11,clinked:16,cross:875,brandishes:20,Delinquency:11,residing:8,Vue:2,"ultra-low-tar":1,"anti-war":1,"Computer-guided":1,"Fascio-Communist":1,incredible:1,Pierre:2,fighting:9,SPORTS:4,Moral:40,Moran:2,"inter-office":1,unbridled:1,cried:32,dressings:4,Kingstown:2,"high-rise":3,"home-care":3,Insilco:2,replenish:39,cries:18,"leveraged-buy-out":3,Argentina:11,Argentine:66,Tracers:74,"clock-stopped":17,Overweight:1,capabilities:4,"son-of-exchange":1,lymphocytes:4,"stop-motion":3,Appert:2,Nujoma:2,HUNTING:21,Populares:2,T:47,presume:42,raincoats:4,Marylanders:28,underwrote:876,"black-tie":1,Elephants:4,Mersa:2,raffish:1,rituals:4,"Co-operative":2,Kirghiz:2,Rottger:2,Section:47,unsuccessful:1,Barrington:2,Affirmative:1,cutters:4,Bellows:2,STODGY:1,bossed:17,manipulations:4,courtyards:4,bosses:4,Moriarty:2,"Matchbook-sized":1,conveyed:32,fray:25,gentians:4,Changyong:2,Generalizations:4,furtive:1,perspectives:4,Kendall:2,"smaller-capital":1,Autodesk:2,urged:32,Boggs:2,perks:4,vocationally:6,"low-back":1,perky:1,urges:72,Yippies:28,kinda:6,Palamara:2,besmirched:16,Takoma:2,negate:39,"Employee-owned":1,Upon:124,groomed:17,continental:1,preapproved:17,Ramsey:2,"commercial-products":1,Condition:47,Ginning:2,"Chrysler-Plymouth":2,triggered:45,Seahorse:2,tinged:17,thievin:8,Yuppies:4,Kanaday:2,Stops:2,Miscellany:2,Sills:2,ComputerWorld:2,WIC:2,"altitude-azimuth-mounted":1,Panam:2,infants:4,Oceanography:2,humbling:1,"stuck-up":1,Site:2,Kimba:2,Physicists:4,Berrigan:2,sympathizers:4,Wiedemann:2,"budget-reconciliation":3,downtalking:1,Potowomut:2,Fuji:113,Islamic:40,other:3,Desk:2,ventilating:21,Dese:2,Fontainbleau:2,Rothamsted:2,CenTrust:2,contacting:8,sloping:30,inherently:6,"non-military":1,Komatsu:2,earthly:1,"Messerschmitt-Boelkow-Blohm":2,"Smaller-stock":12,Draconian:1,upwards:877,Abingdon:2,Ditch:11,"all-nighters":4,resublimed:17,Roswell:2,"well-oriented":1,Dorenzo:2,Livery:1,pods:4,Kensetsu:2,"PARS-Datas":2,"white-walled":1,Artkino:2,Does:109,Olympics:41,ringlets:4,vassals:4,Spectators:4,Rayle:2,Sewell:2,sputter:42,immature:1,meadows:4,Beantown:2,oceans:4,Eberly:2,Charitable:1,"sideline-business":1,leisurely:97,stabbed:32,interlocking:30,JNR:2,disturb:42,Palache:2,Bacon:2,"new-issue":3,persisted:32,wavered:16,Paul:2,Convair:2,Rachel:129,specially:6,"Off-Track":2,eclipsed:32,sailed:32,loathing:21,McQuillan:2,enroute:6,jocular:1,Boise:2,"sales.":4,Olivares:2,"truck-building":3,fossil:3,resilient:1,cull:42,"mid-watch":1,Lovering:2,GRP:2,Gadsden:2,Munoz:2,GRX:2,atoms:4,GRE:2,cart:24,ACCOUNTING:47,Stephanie:2,eclipses:4,Nurseries:28,cyclical:1,Crossland:2,elaborate:83,"gene-copying":1,"Rul.":2,"anti-Semitic":1,"Kee-reist":106,replace:42,smolders:20,beneficiaries:4,IFAR:2,unanswered:1,anions:4,PROMOTION:2,Gabele:2,"USF&G":2,Porch:11,Diprivan:2,pompons:4,coordinators:4,strike:44,marchers:4,Recent:1,cutbacks:4,"Hart-Scott":2,hereby:6,Rule:11,EXPENSES:4,"focused-factory":1,reversible:1,Cathryn:2,Doskocil:2,Chinook:2,"already-sizable":1,Widow:47,Selman:2,flicking:8,Synbiotics:2,Imports:56,"contract-steering":1,rulings:4,Professors:2,Beebe:2,shelve:39,"WNYW-TV":2,"brand-name":117,omelets:4,"Socialist-led":1,leotards:4,Franny:2,Easier:136,Dreisers:28,groaned:16,dignifies:20,feature:205,Maritime:2,dignified:14,primping:8,Hydroxides:4,minimized:54,adoptions:4,reassess:63,Bailard:2,LIFETIME:2,minimizes:20,unselfish:1,"first-strike":1,Bananas:4,"glow-in-the-dark":1,"would-be":3,fictional:1,nymphs:4,orally:6,infertile:1,overhauls:18,stockpiled:17,Bryner:2,"loss-expense":1,Ludwin:2,stockpiles:18,Ludwig:2,Commies:65,Told:54,"exit-poll":3,Guofeng:2,VLSI:2,fairest:51,heretofore:6,charmers:4,fanciest:51,Barber:11,Rowse:2,Palsy:2,YALE:2,"put-upon":1,Beresford:2,"better-safe-than":1,mispriced:16,AutoWorld:2,RULERS:4,Danforth:2,interrupt:42,"man-made":1,mimicking:8,PROPERTIES:28,Habitat:2,Siedlungs:2,"Yank-oriented":1,Gustavus:2,Hackney:2,shrewder:12,"two-bit":1,"one-hour":1,Millions:4,"pre-``":133,reputedly:6,archetypes:4,Superstation:2,Winner:2,"long-running":1,Schroer:2,unlawfully:6,"raw-materials":152,tragicomic:3,McCovey:2,AGIP:2,Foreseeing:8,Huber:2,Burnison:2,"for-profit":1,Hubel:2,"Stuttgart-based":1,differentiates:20,Josiah:2,Prebon:2,Word:11,Amcast:2,Extension:11,Sifco:2,rateable:1,Work:787,threatened:45,Worn:17,attributions:4,sunbonnets:4,tinkled:16,crowned:17,obstructing:8,"incentive-buoyed":1,enormous:1,eared:1,Separate:1,tempting:1,Gianni:87,"government-orchestrated":1,symbolize:42,appreciable:1,CSC:2,Chihuahua:2,steroids:4,Tasurinchi:2,Harbert:2,vitro:147,procreate:39,glassy:1,infringed:32,"Hama-style":1,"open-market":3,"promise...":102,lawsuits:4,"think-tanks":1,perturbations:4,"clot-reducing":1,"earthquake-ravaged":1,unplowed:1,Backbends:4,REPORTED:17,rectified:17,supertitles:4,defaulted:112,wod:190,"Adm.":2,requesters:4,durin:773,krautheads:4,Abramson:2,Mohandas:2,skimmed:32,Volgograd:2,issuable:1,Weigle:2,Automobili:2,"hop-skipped":17,shyly:6,Mullenax:2,motets:4,constricted:103,benighted:1,unmelodic:1,"gift-giving":22,"push-ups":4,Lincolnshire:2,bleachers:4,soaked:81,promenades:4,instructs:20,amusing:1,Hornaday:2,Drastic:1,"second-leading":1,imprudent:1,Stertz:2,thrilled:81,"twin-blade":1,unmindful:1,VCR:401,Galveston:2,dummy:3,Jerusalem:183,snooping:8,Nonsexist:2,Chardon:11,Poxon:2,Worthington:2,"catastrophic-health":3,incorporate:392,MONITORED:16,HANNIFIN:2,insects:4,meetings:4,"people-oriented":1,Nyiregyhaza:2,"PLC.":2,Twain:2,"third-shift":1,lethal:1,abreast:6,Timon:2,"Beech-Nut":2,Strips:4,itinerant:1,Shahrokh:2,Microwaves:4,crossways:6,figgered:16,"Non-actors":4,"non-monetary":1,Timor:2,salespeople:19,rosebuds:4,Barberis:2,Permits:4,Nevertheless:6,remarry:39,inoperative:1,pocket:25,Gitano:2,relish:25,societies:4,Bens:2,"sub-assemblies":4,spilling:55,Squats:4,Prayers:4,stunningly:6,Siva:2,Pasture:2,hasten:42,"defense-oriented":1,Taxpayer:47,"festival-oriented":1,peripheral:1,flaxen:1,Brevard:2,Szelenyi:2,"well-educated":1,"seventh-consecutive":1,avert:39,Comedy:11,Eprex:2,Ginandjar:2,cosmologies:4,SABH:2,"pro-selected":1,propagated:17,Schottenstein:2,smelled:32,authorizing:8,"self-congratulatory":1,Carothers:2,nonregulated:1,"well-lighted":1,"GSD&M":2,chirped:16,fallacious:1,decompose:39,meting:8,Stover:2,argue:149,"absent-mindedly":6,Chatterton:2,"applause-happy":1,"EGA-VGA":1,Millard:2,Korman:2,"nitrogen-based":1,Bernstein:2,Rotie:2,jog:39,Movement:11,Perception:47,Mais:64,"well-rehearsed":1,subside:42,Insofar:6,superhuman:1,adroitly:6,Moneyed:2,graphical:1,"technologically-improved":1,Tokyo:2,Compulsive:1,"light-weight":1,Bougainville:2,Rachael:2,evasions:4,Fayetteville:2,haters:4,excorciate:39,"semi-statist":1,Miantonomi:2,Cessna:2,NMR:2,NMS:2,contemplated:81,Maid:2,Kezziah:2,Pancrazio:2,contemplates:20,NME:2,NMB:2,Harrison:2,Goddard:2,Dim:33,Lackluster:1,Neisse:2,Thermometer:2,Tossing:8,elicit:39,Sitter:2,anticipating:8,Mail:11,Puerto:303,smoothest:51,"F100-PW-200":2,Python:2,"per-year":1,yellow:104,Intecom:2,Fatimata:2,clucking:8,gateways:4,Die:878,"pre-school":1,Sloanaker:2,"latter-day":1,photographers:4,sobbing:8,Apples:57,military:3,Gays:4,Weigel:2,Tijuana:2,maximizing:8,reoffering:55,holdups:4,detracted:17,raindrops:4,backhanded:1,scissoring:8,sleeps:20,sleepy:1,rotates:20,amusingly:6,"town-house":3,"U.S.-about":127,Beit:2,spectacles:4,craning:8,olefins:4,"computer-accessory":3,"Preferred-dividend":1,Leonard:11,Berson:2,obedient:1,Spiegel:2,"semi-annually":6,Doerflinger:2,weeklies:4,Fontainebleau:2,perking:8,precincts:4,Reisert:2,Shucks:106,desire:24,Ryukichi:2,Aristotle:2,marinating:8,withing:127,grotesquely:6,metabolic:1,"Neo-Paganism":2,"pre-existence":1,Haydn:2,creep:50,Abbe:2,Abba:2,Upsala:2,Harrow:2,Abby:2,palatable:1,Weici:2,Origins:2,MPl:2,Showrooms:4,Tigre:2,unfrozen:1,"chin-up":397,substituted:81,MPs:4,memorable:1,unhealthily:6,MPD:2,Caneli:2,Sasser:2,MPH:2,MPI:2,sightseers:4,costive:1,"brain-wracking":1,iguanas:4,Boulevard:2,Hybrid:2,"well-suited":1,respectable:1,magazines:4,furnishing:21,octogenarians:4,"Kroller-Muller":2,novo:64,abjectly:6,Mentz:2,Shawomet:2,abstractions:4,Belier:2,resulted:32,"on-line":3,launching:55,Homestead:2,"slow-selling":1,magnificent:1,Karpa:2,"seven-tenths":4,sprinting:8,underdeveloped:1,handily:6,Hagura:2,Ozagenians:4,"alone...":102,Schubert:2,"c.i.f":1,insincere:1,"productivity-based":1,Biotechnical:2,Weinshienk:2,megakaryocytic:1,Develop:39,Ranzer:2,senilis:4,Calvet:2,Salvadorans:57,sprouts:4,whites:4,Maya:64,Mayo:2,Zambrano:2,Possible:1,Possibly:6,chauvinists:4,"anti-nausea":1,Mays:2,"E.B.":2,teats:4,postmarks:4,cleaved:17,reruns:4,entrust:42,hygienic:1,withstands:20,clattery:1,fastened:54,rockers:4,Gupta:2,Colzani:2,Reduce:39,cautioning:8,Fossan:2,treatises:4,Confectionery:66,Castor:1,"finger-pointing":22,incurred:54,Buffett:2,activated:14,theaters:879,skiing:21,Films:4,"Mafia-tainted":1,retrofit:39,Warranties:4,"non-enzymatic":1,Bahr:2,uneven:1,methodically:6,prolonging:8,Rosenmueller:2,Bahi:2,Believe:39,"not-less-deadly":1,Federalist:40,Goncharov:2,cataclysmic:1,spats:4,"Heel-Miracle":2,Windheim:2,Rents:123,Recognize:39,bilges:4,leave:182,engrossing:1,Xyvision:2,eosinophilic:1,Renta:2,abstrusenesses:4,loads:4,Suzanne:2,spiritual:3,Loveways:2,lounged:16,Quotas:4,Governmental:2,Unspeakable:1,Monarch:11,Sigman:2,behaviorally:6,Francie:2,melt:95,Cruz:2,lazily:6,Francis:2,"S.O.B.s":4,Neusteter:2,meld:39,"less-than-dazzling":1,Crosson:2,virtues:4,Bargerter:2,Veeck:2,jure:64,"drug-treatment":22,momentous:1,systemwide:1,passengers:4,hurtling:8,fomented:16,brilliant:1,Thierry:2,"lighter-than-normal":1,Scratching:8,Pickman:2,misfortunes:4,"D-marks":4,tasks:4,WDB:47,Hagner:2,curtailing:8,Asteria:2,overarching:30,raking:8,logically:6,Kroc:2,Nennius:2,unshirted:1,Egon:2,Ecuador:2,Fractions:4,NAEBM:2,Unconstitutional:1,scops:4,papal:1,Gleeson:2,citywide:1,Machineries:113,theoretical:1,Yuri:2,Iwai:2,wallcoverings:4,everywhere:6,Bechhofer:2,Achaeans:111,Yedisan:2,"power-sharing":1,Seelbinder:2,incited:54,uninsurable:1,facilitating:8,Stovall:2,Lois:2,Wizards:28,oversupplied:7,"stock-options":4,detached:81,remitted:17,parishes:4,Holding:116,Tentative:1,"capital-assets":4,"re-establish":63,unanticipated:1,Aegon:2,DPL:2,monitoring:308,grousing:8,Reuther:2,optimal:1,GP:2,Darwinism:2,intergenerational:1,Acura:2,chaplains:4,Buchner:2,convoluted:7,Discussed:17,"high-energy":1,Sensitive:1,unclaimed:1,improving:55,spouted:187,lids:4,equilibriums:4,natural:3,correlate:42,nakedly:6,biographical:1,Connors:2,Narver:2,Inland:305,"media-related":1,handguns:4,Samuelson:2,Islam:2,"air-defense":1,innocuous:1,"non-bearing":1,Wyoming:116,Kulongoski:2,"years...":102,"middle-management":1,overhaul:25,muses:72,nearsighted:1,disconcertingly:6,collegians:4,Zhok:2,Marcmann:2,renaming:8,Buck:2,Sister:47,thereby:6,Gute:64,Bucs:2,"fumed-oak":3,Argyll:2,Erfurt:2,establishing:8,Pruett:2,"game-show":3,Stanley:2,roleplayed:17,"J.L.":2,"more-selective":335,stalling:8,coneheads:4,"sit-ins":91,crushing:5,"freight-bums":4,owing:13,COLH:2,propitiate:39,Added:493,barometric:1,biochemicals:4,Plessey:2,astray:6,Furnaces:2,"fourth-largest":1,astral:1,Holloway:2,Barnevik:2,secessionists:4,instrumentalists:4,facsimiles:4,Arcata:2,matchless:1,pimps:4,undesirably:6,wanderers:4,Brantford:2,"war-rationed":1,Lehmann:2,Brazil:2,uncommitted:1,Ontario:2,distal:1,Poorest:51,Royal:40,Chekhovian:1,"loss-plagued":1,disbelieving:8,Gilbraltar:2,intermediaries:4,Salembier:2,Nattily:6,operable:1,Divi:2,Patrolman:2,bite:95,Mencken:2,DieHard:1,stuffed:81,cito:64,"Anglo\\":1,bits:4,cite:149,slashes:18,sentinels:4,Megat:2,gratuities:4,southbound:1,reclaims:20,antic:1,slashed:32,Kalamazoo:11,Runcie:2,impractical:1,depressed:103,yelping:8,FAXM:2,corruptible:1,"meat-hungry":1,liftoffs:4,Businesses:4,drywall:78,damned:880,depresses:20,dutifully:6,"consumer-price-index":1,"wheeler-dealers":4,Environmentalism:11,buried:81,Aguiar:2,dewars:4,peacekeeping:1,masse:623,beeping:55,Comstock:2,Wagons:4,Leemans:2,Impressionism:47,Getting:8,"two-run":1,compress:39,rosins:4,Boone:2,Impressionist:1,"pro-investment":1,inserted:54,Totalitarianism:2,drive:24,Weston:2,"self-unloading":1,Intelsat:2,Dietisa:2,honeymooned:32,marshalled:16,"cross-investing":3,peaches:4,swathings:4,bright:97,"north-flowing":1,"Matsushita-owned":1,Deloitte:2,scarce:1,"self-assertive":1,"kisha-club":1,punchy:1,"more-active":1,"takeoff-warning":1,Applied:157,holdovers:4,battalions:4,submerge:39,Fauntleroy:2,Menell:2,Having:229,"burnt-orange":1,Churchilliana:28,"middle-class":3,fenders:4,"success-oriented":1,resins:4,McCauliffe:2,"anti-Stalinist":1,uncover:39,Trichieri:2,resiny:1,Cecconi:2,tibialis:4,softies:4,arouses:20,Bocas:2,Fraction:11,overflowed:16,"Anti-American":1,aroused:54,"N.Y.U.":2,Gluck:2,inequalities:4,basileis:4,compounds:18,TRUE:1,"less-developed-country":1,representatives:4,Allstate:2,Instructor:2,"dark-brown":1,pitiless:1,screen:44,"half-turned":1,steroid:1,matures:20,Xiang:2,"Southmark-sponsored":1,coolheaded:1,puerile:1,Spangled:2,Spider:2,"best-managed":1,Ortegas:28,"Orleans-based":1,"politico-plaintiffs":4,pastimes:4,extravagantly:6,Maroc:2,Maroy:2,Hagoshrim:2,Riverside:2,considers:20,panics:4,RECENT:1,cramps:4,Humberto:2,"commission-driven":1,Allumettes:2,Sherblom:2,fiveyear:1,receded:32,braving:8,DANIEL:2,mutilating:8,needlelike:1,"Thirty-fourth":2,"Dai-ichi":2,curbing:8,Districts:57,Wailbri:2,dropouts:4,Round:129,Walther:2,wherewithal:22,RUN:2,Goodrich:2,MORTGAGE:11,"Ziff-Davis":2,"vis-a-vis":881,endures:20,policies:4,mono:3,endured:32,cartelized:17,croaked:16,"gay-student":1,Calculations:4,"S.C.-based":1,spooked:54,"cost-sharing":22,Hanley:2,"research-based":1,PageAmerica:2,Pocklington:2,perpetually:6,essayed:32,enrich:42,homophobic:1,sterling:22,Arsenio:2,Geraldine:2,structurally:6,Dockweiler:2,"organization-position":1,"around...":102,"Public-spirited":1,"%":882,Eichof:2,Vroman:2,Physics:11,Own:66,Superintendent:2,volcanoes:4,Raynal:2,idiotically:6,Countrymen:28,Markovitz:2,Slims:111,"big-ticket":1,Ostentatious:1,rest:883,Zhongshan:2,"city-owned":1,BUELL:2,Jacksonian:40,Rolled:17,Advice:11,"Dame-Michigan":2,Mulberry:2,silver:617,contesting:8,dryly:6,usurious:1,ebullient:1,Roller:2,transmuted:17,tunelessly:6,crusty:1,counteracting:8,Aung:2,crusts:4,dart:78,dark:34,Verstandig:2,Aunt:11,darn:82,vacuum:139,snare:63,dare:884,Shari:2,"parent-child":1,"agents-in-training":4,Share:269,Contemporary:40,Ruckdeschel:2,Zicklin:2,Riese:2,expository:1,Sharp:40,intestinal:1,crabbed:1,Oafid:2,pickled:1,Controls:74,supplementary:3,Geoffrey:2,malposed:1,Troeltsch:2,pickles:4,Apar:2,scholarships:4,Bully:39,symbiotic:1,Answers:72,Bulls:57,"premium-priced":1,"full-page":1,Refugee:2,refer:42,Mochida:2,biased:17,Moccasin:2,industrialized:14,Gimpy:2,"acquisition...":102,biases:4,punishments:4,slatted:1,Hazell:2,Fighter:2,package:25,"Stena-Tiphook":2,"person-to-person":1,Dorrance:2,fraying:8,Regretfully:6,Stalker:2,Xerox:2,Meharry:2,"hard-liners":4,Matchett:2,extramarital:1,apologize:39,incanted:16,"married-couple":3,"bond-rating":1,Ogallala:2,"X-rays":4,Malraux:2,"flash-cubes":4,betrays:20,lapsing:8,slopes:18,tireless:1,masquerades:20,survives:20,"death-backed":1,Stevie:2,Breweries:46,Eastwick:2,beginners:4,follicular:1,Microamerica:2,survived:32,Breasted:2,"French-English":2,housewives:4,Greensboro:2,amplify:39,"anti-infective":1,Cabria:2,impute:33,"in-kind":1,blinks:20,Klauer:2,pinpointed:81,"turf-care":3,Hatters:2,straightens:20,Camille:2,catchup:3,Camilla:2,Accept:39,Rahill:2,Camillo:2,Camilli:2,Eurocom:2,Atlantis:113,"long-tenured":1,Readily:6,sanguine:3,aromatic:1,tight:97,Watson:2,Atlantic:40,incomprehensible:3,"engineering-design":1,Wainaina:2,Walcott:2,Welko:2,remounting:8,terra:147,Certus:2,Luehrs:2,unanimous:1,KSI:2,"eight-time":1,partitioned:17,waived:54,Degas:2,Direct:66,Diasonics:2,waives:20,retch:25,"large-volume":1,"eight-page":1,"vertical-restraint":1,Villard:2,restated:45,"two-record":1,"stored-up":1,squeal:63,Kuparuk:2,borderlands:4,"Non-bank":1,to:885,tail:70,th:851,Arturo:2,Garvey:2,Morikawa:2,zapping:55,hitting:55,Beebes:28,FAA:2,Sohn:2,Soho:2,Belge:2,falsifying:8,Frequent:1,Cogen:2,Copper:47,parliaments:4,hooking:8,cable:449,rusting:1,"rosy-fingered":1,joined:32,millimeters:4,drahve:39,"fifty-odd":1,methodical:1,Reagan:40,Inamori:2,Lawrenson:2,"half-understood":1,Drury:2,assured:271,Crockett:2,"trend-setters":4,Euronotes:4,"Commission.":2,Ferguson:2,scientists:4,Jodi:2,"frequency,``":133,Chans:4,Broyd:2,Tartuffe:2,implantable:1,Finland:11,corniest:51,Silence:47,bulged:16,trailblazing:8,Commissions:57,Gruss:2,travails:4,Seeley:2,murdering:30,rummaging:1,Nemeth:2,"all-victorious":1,"triple-tank":1,Placing:8,Canton:2,Cantor:2,gosh:106,Willmott:2,Shiite:40,Willoughby:2,hassles:4,Parisina:2,"Director-General":2,"moon-drenched":1,"Hoe-Down":2,pears:4,zappers:4,breaches:4,quickstep:78,gorgeous:1,whalesized:1,"multi-lingual":1,befitting:30,portrayals:4,Congregationalists:4,"big-name":1,"spoon-fed":1,Timbuktu:2,Aghanistan:2,eatable:1,Integra:2,"caliche-topped":1,Cathedral:11,Your:35,seismological:1,eardrums:4,antagonists:4,scan:24,Mouchet:2,suggestions:4,unbiased:1,fiercely:6,"Dylan-influenced":1,"birch-paneled":1,commanded:32,bided:17,Paisley:2,scoundrels:4,imminent:1,conventioners:4,cajole:39,"All-Union":2,AIB:2,docudramas:4,Orondo:2,Isis:2,treatments:4,unsound:1,Gilchrist:2,authentic:1,Orso:2,knockoffs:4,scoreboards:4,register:182,fundamental:1,"anti-Negro":1,adorned:54,"Creek-Turn":1,Purple:2,Appalachia:2,Aeschbacher:2,turbine:22,Egils:2,Transatlantic:2,"get-tough":1,nifty:1,scribes:4,Sound:886,Resolve:2,Pawtuxet:2,subtitled:17,Fifield:2,"high-strung":1,subtitles:4,"cash-interest":1,Elliot:2,"ocean-thermal":1,assemblies:4,Katow:2,Prodigall:2,Silverstein:2,aggrieved:14,energetically:6,Osaka:2,investigators:4,Amperex:2,upstairs:887,noble:642,hemispheric:1,"lease-rental":1,megaquestions:4,"ATS\\":2,Crossman:2,"morale-damaging":1,revisionists:4,Sunbury:2,sociological:1,finned:17,punches:4,tensional:1,plotting:55,"patent-sharing":1,Manion:2,Bandler:2,SHV:2,calumniated:17,"Thirty-month":2,"eighty-year-old":1,Beseler:2,Historical:40,rises:72,Strings:41,"surface-to-air":1,Stingers:28,"Dai-Ichi":2,sicker:12,Bozell:2,elective:1,"advertiser-bankrolled":1,willies:4,Panny:2,unusable:1,"equity-like":1,spiritually:6,housewares:4,Consisting:8,inapplicable:1,"Alun-Jones":2,telecines:4,Plaude:2,Vladilen:2,Cabernet:2,uncomfortably:6,gnash:39,"broad-brimmed":1,Heilman:2,Gallitzin:2,Hijet:2,Ansley:2,reverential:1,Often:150,"pre-registered":14,spavined:1,Lyford:2,derailing:8,fishermen:4,Brunello:2,seamlessly:6,"heat-using":1,Alcohol:47,bimolecular:1,defect:25,"hard-come-by":1,caress:39,Liro:2,Hazelwood:2,Aide:2,"computer-industry":22,"cement-makers":4,scrawled:85,jeopardize:42,internal:1,generalized:7,frail:1,BANCORP:2,Logically:6,frowned:32,Hardwicke:2,M:11,Utopians:28,Annicchino:2,wedded:14,Aftereffects:4,accepting:30,Petroleos:2,Famcorp:2,mystical:1,Attopeu:2,Arenberg:2,"WHEC-TV":2,"five-gallon":1,Balzac:2,Cloud:2,Traxler:2,gold:22,"Lawn-Boy":2,Pharmacuetica:2,Lillo:2,Amiga:2,Meidinger:2,"export-oriented":1,Simpkins:2,Agius:2,degraded:1,"dog-pin":1,Kyushu:2,standeth:33,Creswell:2,"ho-hum":1,detaining:8,mailmen:4,"blood-in-the-streets":4,REFUSED:16,Aquitaine:2,poodles:4,Carolinians:28,factor:44,Olivia:2,ordained:17,"cost-plus":1,Lakers:2,"Bangkok-based":1,accretions:4,charmingly:6,Massicotte:2,Tigris:2,progressive:3,cry:44,Westlake:2,Vicon:2,banking:888,dismounted:32,Dignitaries:4,Piersee:2,Telemedia:2,bulky:1,Komsomolskaya:2,JenMar:2,Advisers:41,"India-Pakistan":2,TVSM:2,Southerners:41,Denko:2,"European-branch":1,"cement-making":1,unmeshed:1,resonantly:6,Towers:74,Kader:2,Hadhazy:2,pickup:22,Slosberg:2,Dresylon:2,Prussin:2,monsters:4,compliment:24,available:1,premises:91,Ceecee:2,"one-in-a-million":1,"three-party":1,incident:22,rudderless:1,tramp:3,Annie:2,Keynes:2,Cosmology:2,unapologetic:1,cryptic:1,"earnings-forecast":1,Intercable:2,thou:53,Chip:11,Donning:8,Strategic:40,Chin:11,Chim:2,tangibly:6,accomodations:4,visionaries:4,Jour:2,dimensional:1,dissuade:39,acclaim:25,adjoining:30,church:47,"third-highest":186,"quake-shocked":1,SCHMIDT:2,Mariana:2,Mariano:2,Quesadas:28,Ramey:2,traipsing:8,ITT:2,contentedly:6,toughing:8,"tax-collection":3,Hockney:2,resting:8,Gracias:64,Matheson:2,Telenet:2,stockholding:8,bottlers:4,Bewitched:2,deport:39,Fairfax:11,Myra:2,inclement:1,Eliades:2,Ducky:2,stupefyingly:6,straight:97,Misa:2,reliably:6,Mist:11,Miss:11,Petrarchan:1,Corazon:2,comport:39,Biosource:2,Towing:2,Viola:2,McFadden:2,Stock:11,welts:4,Associate:129,fetching:30,Satanic:66,"Nunn-McCurdy":2,Address:2,Waukesha:2,Blodgett:2,tower:25,Chardonnay:2,comprehensive:1,videotape:25,Lucisano:2,rabid:1,Lukuklu:2,Reston:2,expend:42,"front-runners":4,surrogate:3,Nobels:28,Sol:2,Soo:2,Son:11,Congo:11,inflations:4,Sox:74,"FDA-NIH-industry":1,cabins:4,Tones:28,Riserva:2,"floating-rate":3,Labow:2,Oilwell:2,"J.P":2,ousting:8,eagerly:6,Papers:130,"Euro-factories":4,FT:2,Everglades:113,readers:4,"below-average":1,advertisements:4,eager:1,"post-Civil":2,Washoe:2,semimonthly:532,Mulroney:2,ruled:32,herculean:1,Keatingland:2,Both:889,Tracking:116,Faster:12,Mega:1,"five-session":3,responsibly:6,hitters:4,shading:21,formal:1,Mallory:2,sorting:55,anthers:4,Nick:2,facets:4,MacDonald:2,scape:39,Dakota:2,Bergamaschi:2,disdainfully:6,Koskotas:2,"plant-wide":1,pals:4,mighta:784,beckon:149,felonious:1,mighty:97,pall:25,Napa:2,"hard-line":3,Cleburne:2,pale:794,Friend:11,Kashing:2,Mostly:6,Rutan:2,"margins...":102,"D.K.":2,rehabilitating:8,"re-legalization":39,Wish:319,dating:55,shooters:4,tinkers:18,eclectically:6,redoing:8,FNMA:2,UPS:2,"wood-burning":1,Attica:2,Pony:11,Ajinomoto:2,Pont:11,Pons:2,Halting:8,unintentional:1,Baffin:2,"non-U.S.":66,Pond:11,Pong:2,benefactors:4,anterior:1,"cheap-to-make":1,beefed:54,muddleheaded:1,hometown:22,Grosvenor:2,Goldline:2,Indochina:2,awaited:85,"heat-denatured":1,poaching:8,Esher:2,gleans:20,Typical:1,Basically:6,perplex:149,Holocaust:11,Gucci:2,"pretty-much":1,swarm:25,Takasago:2,anteriors:4,Marv:2,differentiable:1,CREDITS:4,genial:1,Jobson:2,"un-Westernizable":1,"once-stately":1,Blackman:2,presided:32,kimpap:64,McAlister:2,nautical:1,presides:20,"full-size":1,declaimed:16,Obernauer:2,rekindling:55,stiffly:43,Haines:2,Portfolios:65,realest:51,"hot-cold":1,Mary:2,Grandma:11,desynchronizing:8,Cuoco:2,besiege:39,hemophiliacs:4,Shakarchi:2,Maoists:28,Bromley:2,pedestrians:4,Golovanov:2,Voroshilov:2,magnanimous:1,advisory:3,scratch:44,Kleiber:2,astronauts:4,enjoyable:1,Progress:47,householders:4,luxuries:4,Skidmore:2,"non-merger":1,"E.H.":2,young:593,noncallable:1,lustrious:1,"slave-laborers":4,Rhythm:47,TREASURY:11,Salaam:64,Shipley:2,Tories:41,Hanukkah:2,cerebrated:17,"high-beta":1,"larger-than-anticipated":1,reopened:345,Candy:47,Vnet:2,nominated:54,mixing:55,Sweaty:1,"goggle-eyed":1,Foglio:2,northwestern:1,magic:22,stodgy:1,Offering:268,"hard-bitten":1,Surface:22,anxious:1,whittling:8,"poster-sized":1,Gilman:2,Hinckley:2,sickish:1,Turks:41,seventies:4,Woronoff:2,Farmer:11,Ruttenbur:2,wheat:22,Nickle:2,foals:4,ungallant:1,Rees:111,drugstores:4,"hunky-dory":1,"health-products":4,expressed:45,Reed:2,Reef:2,expresses:20,delving:55,"Udvar-Hazy":2,Tibetan:66,"Mar.":2,Combining:8,punch:24,puckish:1,invented:54,Magnetics:111,Aquino:2,"computer-literate":1,AEI:2,Charities:57,Elisha:2,"F.":11,contaminants:4,"{":528,altho:325,Rilling:2,Leading:872,Thakhek:2,sienna:1,"Rhine-Main":2,Explains:20,asymptotic:1,chocolates:4,SEAGATE:2,"bleacher-type":1,Eskimo:2,Commack:2,"low-polluting":1,Plain:40,disarming:30,federally:6,lowliest:51,shoelaces:4,Pilots:92,bobbins:4,Berlusconi:2,Albion:2,practicing:55,bankholding:8,challenge:44,Dequindre:2,Written:17,Berthelier:2,governmentset:17,publications:4,fomenting:8,enlivening:8,Seligman:2,Police:890,"stress-provoking":1,Greisler:2,USAA:2,USAF:2,Steinkerque:2,Ethiopians:65,Policy:11,Borner:2,paws:4,Boursin:2,clogs:20,shuffled:16,"c-Domestic":29,mumbled:32,Selavo:2,occipital:1,motivating:30,mumbles:20,Kemps:2,"non-recurring":1,Kempe:2,Nisshinbo:2,Badrawi:2,redeeming:30,"Walkman-style":1,Presidio:11,counter:891,reminders:4,Breuners:74,"re-supplied":17,Blackpool:2,massages:4,writ:855,asserts:20,classy:1,"well-managed":1,counted:54,Schramm:2,"HIV-infected":7,Washed:17,emissaries:4,Polychemicals:2,"cheek-by-jowl":1,Weaving:8,Himself:53,decay:25,compulsions:4,dispose:39,"fiscal-year":3,degrees:4,Sappho:2,laggards:4,therefor:6,Haven:2,Havel:2,"stop-loss":22,Toussie:2,Attorneys:56,SHEA:2,Herbert:2,dock:25,"heavy-handed":1,Aluminium:2,"Q45":2,Swelling:13,sniffing:8,wrangled:32,Rourke:11,onlookers:4,"well-stated":7,tents:4,Kiyoi:2,UNIFIRST:2,jagged:7,Cassite:2,tenth:3,Dropouts:4,borderline:34,"gyro-stabilized":1,Material:40,"much-larger":1,mediated:17,superbly:6,Trying:229,waters:4,"MRI-type":1,realigning:8,"Once-only":1,"wall-stabilized":1,DIGS:4,"internal-external":1,regulators:18,Ffortescue:2,regulatory:1,Extricating:8,Debenture:47,dubbed:54,Celebrities:4,"telephone-access":1,Berteros:28,Cummins:2,respond:182,retching:55,rescinding:8,metering:8,feasts:4,Program:47,occurrences:4,collages:4,"hand-carried":17,opportune:1,Dyerear:2,Volker:2,Happily:6,lengthily:6,Spokespersons:4,vaginal:1,nosediving:8,"tie-ups":4,"Indo-China":2,Kersley:2,evacuated:17,gummy:1,Qing:2,aerate:39,shorts:4,Complicating:8,Chalmers:74,Casanova:2,depressing:13,crosswise:6,bombers:4,unexpended:14,Democratic:10,InterMarket:2,"original-instrument":1,unamused:17,"top-loaders":4,unblushing:1,Whirpool:2,splayed:16,philologists:4,listeners:4,dissensions:4,Zaire:2,"pre-arranged":1,downpayments:4,"highest-quality":608,accusing:30,AAA:2,unbelieving:1,"pull-backs":4,freshened:17,Patsy:2,correspond:42,"Messerschmitt-Bolkow":2,HonFed:2,Smithtown:2,intertwining:30,amphibious:1,hypothalamic:1,therewith:6,mills:4,Loyalty:47,"Dak.":2,mesenteric:1,Funny:301,Quarterback:2,babes:4,"gray-bearded":1,souled:1,Decatur:2,Weinstein:2,HEADED:16,Stals:2,Volga:2,segment:78,lined:45,"WXRK-FM":2,"media-linked":1,Neanderthals:4,socialistic:1,Suliman:2,face:419,screechy:1,Jackets:4,Ruger:2,Technically:150,Kitaro:2,Paris:2,Claiming:8,disbanded:45,"MIG-1\\":1,inflammations:4,WANT:33,attributes:18,redirect:39,Meanwhile:6,conciliate:39,lethargies:4,scurrilous:1,"Dutch-based":1,Strong:66,"One-Cancels-The-Other":2,handle:182,listened:32,muttering:892,scorn:44,Evarsito:2,Coelho:2,postured:16,defenseless:1,Once:477,smash:44,"M.B.A.":11,Connally:2,summon:39,basking:8,Ryland:2,Anglian:1,receptive:1,superstars:4,CRS:2,CRT:2,Uppsala:2,CRX:2,Atonio:2,Palmtops:4,paperbacks:4,"Tamiris-Daniel":2,CRI:2,Angkor:2,CRs:4,Kohrs:2,migrations:4,distressingly:6,Kerson:2,Gallup:11,nominees:4,disgruntled:7,"ABM.":2,Optima:2,Frucher:2,Coronets:28,strides:18,grow:42,absented:16,absentee:3,"memory-images":4,Alsing:2,baubles:4,Hadassah:2,challengeable:1,"seven-course":1,streams:4,Dillmann:2,"R.S.":2,Kimbark:2,nonmetallic:1,Smitty:2,wrestlers:4,"R.,Iowa":2,rockbound:1,Her:478,"under-the-table":1,Hey:125,Eskridge:2,Hee:125,Yankeefication:2,"heavy-machine":1,winning:101,Glemp:2,Alco:2,"Seattle-Northwest":2,Capoten:2,Samuels:2,Kinda:6,compensating:8,utilizing:8,negotiates:20,Stations:57,Whence:293,"tobacco-ad":1,Diman:2,coals:4,"less-advanced":893,sentimentalize:39,bombproof:22,"unself-conscious":1,Waldron:2,unpaired:17,Prieta:2,Gorgeous:2,retarding:8,vs:587,overleveraged:1,sits:72,waivers:4,situ:64,descriptive:1,Burle:2,"self-declared":1,fashioning:8,Antinomians:4,Stepanian:2,Burly:1,Danny:2,emotionally:6,Amcore:2,"v.":894,architectures:4,infinite:3,Kristen:2,"C.M.":2,Garland:2,"reinforced-fiberglass":1,Burts:28,fail:95,drawing:5,restructure:95,flesh:25,Retiring:8,rooms:4,insisting:8,Carneigie:2,roomy:1,extempore:6,Babylonians:28,Company:11,"live-haulers":4,Darius:2,Vegans:28,Bridgeville:2,"securities-turnover":1,"grand-slam":1,"big-company":1,amputations:4,"Second-quarter":129,Amadeus:47,Hardiman:2,rednecks:4,snitched:17,"one-digit":1,"pre-quake":1,Sallie:2,blockages:4,Engineers:41,Creek:2,Schwartz:2,chairs:18,Creed:2,Gornto:2,"consumer-advocacy":1,erasable:1,imprison:39,"sell-offs":4,Valdiserri:2,therapeutic:3,"Low-interest-rate":1,misperceives:20,"bargain-hunt":39,"open-ended":1,"Trupin-related":1,sketching:55,demonstrators:4,anguished:1,Montana:2,therapists:4,Bronner:2,SQUIBB:2,voluptuous:1,drift:24,Bathurst:2,adversary:22,counties:4,"Optical-storage":1,PanAm:2,"p-aminobenzoic":1,Plymouth:11,merited:16,Pampel:2,"third-leading":1,spoilables:4,Rotarians:28,intermediates:4,Leninist:2,screamed:32,activate:149,Calgary:2,From:124,Creole:2,Summerland:2,"interest-deferred":1,"MGM-UA":2,Dangling:8,Deardorff:2,kooky:1,restricts:20,Listening:21,kooks:4,Epitaph:2,Groth:2,disengaged:17,HEALTHDYNE:2,"More-detailed":12,Grote:2,"vine-embowered":1,"CF680C2":2,"past-fantasy":1,proverbs:4,"agro-chemicals":4,interwar:1,Hussman:2,"government-subsidized":1,Diane:2,triumphant:1,counterattack:25,convince:42,leashes:4,AnaMor:2,rightly:6,"three-ton":1,CIM:2,CIR:2,Sunburst:2,Rustin:2,"in\\":1,renowned:7,"low-voltage":1,compressive:1,"agreed-upon":677,hobbling:8,trials:4,"power-switching":1,Confectioner:2,Luechtefeld:2,incorrigible:1,oviform:1,Prager:2,MACY:2,Kasiva:2,Congressman:11,capers:4,"faculty-hiring":1,Gargle:2,Boland:2,"non-scientific":1,Attractions:28,"R.H.":2,tinkling:8,"corporate-related":1,"garbage-out":1,Waugh:2,"shipping-rate":1,unspeakable:1,frolics:4,"small-to-medium-sized":1,nonstrategic:1,reactants:4,blisters:4,extrapolates:20,DataTimes:2,ebbed:32,Rabia:2,Payouts:4,spew:33,excoriate:39,"four-game":1,Langford:2,aftereffects:4,invaders:4,fiberoptic:1,regal:1,OVERSEAS:1,McKennon:2,whack:63,Salvesen:2,Castlegar:2,"disease-fighting":1,LYONs:4,Wierton:2,"business-venture":1,yanking:8,waterlogged:1,Entrenched:17,porpoises:4,Ejaculated:16,pinch:25,"inter-relationships":4,Gauer:2,Glayre:2,reinvent:39,Sermon:47,chew:42,preached:32,Hundreds:123,"two-time":1,surmounting:8,horn:25,preaches:20,hors:64,unsurpassed:1,specs:4,Pindling:2,Partly:6,deliberate:82,Mayne:2,consequent:1,Amazon:2,glaciers:4,zoomed:32,officially:6,Faced:54,crunch:25,Kandemir:2,"fall-outs":4,"Shaw-Walker":2,Cricket:2,thrombosed:17,Accustomed:1,Nourishing:1,Faces:111,underrepresented:17,leitmotiv:64,Schabowski:2,Shea:2,items:18,Queen:11,Blanchard:2,BLUES:28,reappraise:42,Shep:2,calculators:4,Floridians:2,doleful:1,glittering:8,Orleans:2,Jew:11,Jet:11,Abderahmane:2,graders:4,highly:6,Jeb:11,encountering:8,Jed:2,Inferno:47,Jen:2,Zarett:2,Helsinki:2,Cresson:2,retaking:8,"rank-and-file":3,Maywood:2,hunkered:54,plows:18,"anti-debt":1,plagiarize:39,Chemcat:2,Forst:2,Vanden:2,"pre-drilled":1,Vander:2,zeroed:17,wellplaced:1,Cosmetic:2,tecum:64,Groopman:2,Chambre:2,Developed:17,daises:4,"Street-style":1,unshackled:1,overvaulting:1,Jimbo:2,Lehar:2,"growth-stock":3,"Super-Set":2,antislavery:1,Balfour:2,"white-minority":1,unsubordinated:1,tornadoes:4,Arequipa:2,foulest:51,"automobile-manufacturing":1,operatic:1,gamble:25,Tyranny:2,ASARCO:2,coined:54,Petrofina:2,movable:3,"fat-free":1,Thamnophis:4,austere:1,Erma:2,"less-than-truckload":1,AutoPacific:2,"thrift-bailout":3,encompassing:8,aboveground:1,hummable:1,"Year-earlier":1,"L.P.":11,"Space-net":2,Glasow:2,tiffs:4,"specially-designed":1,Strassner:2,"large-enough":1,nets:18,"cost-data":1,befallen:17,Salu:2,savors:4,feuding:55,PAPERS:4,discomfited:1,Orcutt:2,Tsvetkov:2,Thermogravimetric:1,noncash:3,Mercy:2,bans:18,Manpower:2,Analysis:11,band:25,bang:555,Merck:11,Homemaster:1,Merce:2,bank:24,MBIA:2,Medvedev:2,"Bar-H":2,reguli:4,"once-troubled":1,Occasionally:6,"Toot-toot":106,"pied-a-terre":64,profusely:6,Frankfurter:11,"tax-and-budget":1,ologies:4,summarily:6,"back-of-the-envelope":1,logs:18,mangled:7,REFLECTIONS:2,Goldsmith:2,loaders:4,"company-operated":1,whining:8,hooked:81,Newbury:2,Complementing:8,imperialists:4,Nasional:2,"too-shiny":1,standard:3,ecliptic:22,Cautiously:6,"horn-rim":1,Angeles:2,Saklad:2,"under-represented":1,spoonbills:4,Flexicokers:4,Audits:28,Pervanas:2,meshed:17,lexicostatistic:1,saddling:8,delicious:1,Quod:64,thoughtfully:6,Committeemen:4,Cormack:2,Barris:113,"low-life":1,"mergers-and-acquisitions":152,sedans:4,crunches:4,Barrie:2,Medicaid:2,farming:21,crunched:16,Barrio:2,Bushels:4,Masonic:2,decentralize:39,refraining:8,grandchildren:4,"pro-labor":1,Quoting:8,diversified:103,Vanderbilts:4,"five-month-old":1,Escalante:2,corresponded:16,"dependent-care":1,unblinking:1,seated:45,"FriedrichsInc.":2,badmen:4,"M.W.":2,SIGNALED:17,stalls:18,Depot:2,Multimate:2,"vocational-advancement":1,Cosmopolitan:2,"second-time":1,widen:42,latter:22,crinkles:4,Ridder:2,unhook:39,frictionless:1,"anti-bike":1,insulated:895,"Year-End":1,maiden:22,"injection-molded":1,involving:8,negro:2,autopsy:25,Lifland:2,demoralizes:20,intergroup:3,herpetological:1,Hosni:2,calculated:45,Schlumberger:2,Dynamic:2,scavenging:8,Emperors:4,judgmental:1,demoralized:14,responded:32,nonporous:1,Missiles:113,Morison:2,religions:4,Riad:2,"word-for-word":1,unattached:7,enjoyed:32,SanAntonio:2,"Dec.":128,foraging:21,painfully:6,Mixte:2,"thin-slab":1,Solicitor:2,Paev:2,adequate:1,Irec:2,Marseillaise:2,Omnicare:2,masons:4,"day-by-day":1,"backed-up":1,vowels:4,Ladies:130,Taxes:4,pierced:54,Fagershein:2,nasty:1,headlong:6,furnishings:4,"billion-a":1,gunslinging:8,Deck:2,Unfilled:1,unmet:1,Strangelove:2,"Frankfurt-based":1,unshakeable:1,"reviewed\\/designed":17,complimenting:8,Kezar:2,Astonishingly:6,scours:91,GBL:2,initialed:32,projections:4,Cesare:2,"appellate-litigation":439,afloat:6,Wiegers:2,unable:1,Quindlen:2,contraband:3,Moderating:8,Sinkula:2,Huxley:2,Kohnstamm:2,Duck:11,Reavey:2,uncataloged:17,lurching:8,Bouvardier:2,Judson:2,hatchings:4,"reduced-instruction-set-computer":1,Aggregate:1,Heavily:6,Amhowitz:2,gasped:16,Doug:2,germinated:1,Conversely:150,Sistine:2,pulleys:4,freakish:1,Colmans:28,refile:39,Genscher:2,interrelations:4,constructively:6,oblivious:1,refill:25,zigzagging:8,"Treasury-Fed":2,Erhart:2,"high-visibility":3,unhappily:6,drafting:424,accentuate:39,Beers:2,ransacking:8,"Smoot-Hawley":2,thoughtprovoking:1,duties:4,poring:13,Teodorani:2,Coronado:2,Unincorporated:2,pejorative:1,"high-yields":4,skinheads:4,applied:896,harms:72,publicly:6,"Tenn.":2,Sicily:2,"blue-green":1,Messengers:28,Mechanicsburg:2,applies:20,Wattenberg:2,"hard-fought":1,"soon-to-expire":1,Grinevsky:2,"H.M.S.":2,Folmar:2,skipping:8,Virtually:6,unproved:1,Ronkonkoma:2,grandiose:1,"off-flavors":4,perform:42,trashing:21,"above-noted":1,Harrisburg:11,Leming:2,sheltered:14,Ike:11,incorrectly:6,"anti-Turkish":1,crevices:4,Distance:2,Instituto:2,springing:8,Tichenor:2,confiding:30,"Network-access":1,Prism:2,"higher-than-anticipated":1,possibly:6,burbles:20,DeGeurin:2,"self-deceptions":4,unified:103,macaque:1,stringent:1,invalidate:39,athletic:1,interrogatives:4,Missouri:2,"short-cut":1,Consistently:6,quintessential:1,unifies:20,Spike:2,Nicos:2,Wanniski:2,Philippe:2,unique:3,Istanbul:2,Bismarckian:1,Philippi:2,exalt:149,"multi-crystal":1,Bartoli:2,Castrol:2,Nail:2,Biologicals:2,Cima:2,editorials:4,boxed:17,sloganeering:8,Tampering:8,Britannica:2,boxes:4,ginnin:8,bastards:4,Liverpudlians:28,Trump:2,LeVecke:2,"non-Catholic":40,"summer\\":1,proofreading:8,"individual-investor":22,aimed:54,Sybil:2,Caldwell:2,Ayer:2,Datsuns:28,affied:16,Banque:2,denies:20,"do-it-yourself":1,conservationists:4,"Ex-Premier":2,Palmero:2,filming:8,Tragically:6,denied:54,wineries:4,Mitsuru:2,Cross:11,posh:1,copiously:6,pose:95,confer:42,Methuselah:59,"sporting-goods":152,post:897,Poyner:2,chafe:149,rearrange:39,rallying:5,Einar:2,"integrated-technologies":4,Malmros:2,months:4,accepts:20,sizzling:13,Cheetham:2,incur:42,extrusions:4,"military-service":1,"non-books":4,float:182,gearing:8,PUNITIVE:1,Bidard:2,"zero-coupon":3,retrenching:21,Taos:2,strangely:6,wan:1,Postels:28,Specifications:123,Grubman:2,truncated:14,Africaine:2,"Pa.":2,way:163,fulminations:4,Elena:2,innovators:4,was:898,Landowners:4,"top-grade":1,"broad-nibbed":1,Nalbone:2,becoming:55,sundry:1,forgetful:1,mysterious:1,Belleville:2,"frost-bitten":1,comprehending:8,bypassing:8,Reykjavik:2,"anti-hypertensive":1,invincible:1,Witherspoon:2,flirtatious:1,Seisakusho:2,attuned:14,Lautner:2,emit:42,promises:72,"Mfg.":2,Rona:2,Rong:2,muscular:1,assassinations:4,moors:4,promised:85,Milacron:2,"Bendix\\/King":2,"non-economists":4,"loan-defaulters":4,Donald:2,"fair-sized":1,autonomic:1,brothers:4,"multiple-choice":1,juices:4,Hillsdale:2,"Pre-trial":1,reflexes:4,Morishita:2,"red-tailed":1,Dalian:2,paces:4,necessitates:20,Rachwalski:2,pacem:64,necessitated:54,precedent:22,paced:32,Goldome:2,"anti-state":1,Gotham:39,Gevergeyev:2,"thrift-fraud":3,Disclosed:17,reigniting:8,"small-diameter":1,"A.W.":2,Cadiz:2,certainly:6,factories:4,"mail-processing":1,kennings:4,Solna:2,"seven-shot":1,compensate:42,unhappiest:51,"gelatin-like":1,southwest:899,Segundo:2,Arbitraging:8,diddling:8,"high-water":1,ferociously:6,videocassettes:4,hotly:6,"stolid-looking":1,Jersey:2,Rak:2,consorted:16,respiratory:1,Leningrad:59,presented:54,respirators:4,Nakajima:2,Duchess:2,Lobbyists:4,"full-grown":1,Trempler:2,"car-care":1,"self-insure":33,Croissier:2,Finding:229,helpless:1,perusing:8,Teito:2,enticing:30,LEADERS:4,"three-page":1,COMPANY:47,Wherefore:773,uniform:22,Fahd:2,Prizes:111,Demonstrating:8,illustrations:4,"time-consuming":1,Along:206,dental:3,Minorco:2,Molten:1,frothing:55,Summa:2,Experiencing:8,mellifluous:1,Yucatan:2,Harch:2,Raw:1,"re-examine":39,Slope:2,Alix:2,concurred:32,flames:4,"sold-out":1,Rivers:41,flamed:32,Blackboard:2,IND:2,Rivera:2,INB:2,INC:2,snatching:8,fundamentalist:3,"bar-staged":1,"Tic-Tac-Toe":2,sufferers:4,capacious:1,"plastic-products":4,Orchestre:2,Maung:2,bluffing:8,Tokio:2,ripening:30,Belorussian:2,balking:8,selects:20,"auto-sales":4,dramatizing:8,F:429,Orchestra:11,Inspired:17,Hachiya:2,throbbed:16,CAT:11,SARK:2,PIPELINE:2,migrants:4,Prix:2,Moe:2,"pink-cheeked":1,heart:275,hears:20,attribute:256,stoutly:6,heare:149,heard:54,Stephane:2,Sasea:2,Multinational:66,"war-time":1,scrimmaged:16,"White-collar":1,dispositions:4,SONG:11,unwritten:1,Lillian:2,Gain:169,"Radio-television":47,Gail:2,"over-magazined":17,nonstop:34,"post-fray":6,whacked:32,Always:150,"bi-polar":1,residues:4,pasting:55,Robles:2,"betel-stained":1,Viet:2,"non-toxic":1,View:11,"High-Grade":2,affronting:8,accelerates:20,beam:25,Toss:39,trumpets:18,MultiMedia:2,accelerated:81,reaffirmed:32,LeSourd:2,worsens:20,Tose:2,Impressed:17,Recovery:11,"non-subsidized":1,Texoma:2,displayed:54,Acushnet:2,bewitching:8,playful:1,Genetic:40,statistical:1,Combses:28,forma:64,Wain:2,hewed:32,forms:18,exacerbates:20,unlovely:1,Yizi:2,"explains.":20,"newspaper-industry":1,chattering:55,pruned:54,"risk-fraught":1,Vasquez:2,rake:44,fuzzy:1,brutes:4,transmissions:4,prunes:4,unimpressive:1,Pacwest:2,"balance-of-payments":152,enacted:54,"done-unto":1,Musicale:2,ENGLAND:2,Uhles:2,"now-infamous":1,bursts:18,Robby:2,INTERPUBLIC:2,"anti-morning-sickness":1,"flood-ravaged":1,Victoire:2,carryovers:4,"brown-black":1,Abra:2,pills:4,Sedona:2,"hand-held":1,"higher-caffeine":1,defendants:4,Masque:2,whitewalled:1,looking:5,navigating:8,Corbehem:2,"Mo.":2,Spitler:2,VAXstation:2,Alcoa:2,Menahem:2,"Chinese-American-Canadian":1,Boxwood:2,Broadway:11,repurchase:900,plodded:32,"zig-zag":33,Calloused:1,Hillhaven:2,PIPELINES:28,selections:4,"trade-clearing":1,Herbig:2,"double-edged":1,Likins:2,Detailed:17,"rum-tum-tum":1,Hungary:40,profess:149,warning:21,Tregnums:28,sarcastically:6,Lojack:2,"KLM-controlled":1,"wage-earning":1,enjoining:8,Dares:2,directly:6,Bentleys:28,deadlocked:14,weds:20,slaked:14,avail:25,Millipore:2,Investigations:92,cortically:6,collimated:17,Prepared:1,Hachette:2,tragic:3,expounding:8,prescribers:4,Shutter:2,Osterman:2,stratospheric:1,Coors:113,Euphoria:2,indisputable:1,tokenish:1,Mears:2,"index-related":1,Toyko:2,Wambui:2,Commissary:2,Perot:2,Ginghams:4,"punched-card":1,movingly:6,Kingsville:2,Therapeutics:111,surfeited:17,Purdy:2,investors:57,Philadelphia:2,slap:63,Perella:2,ideologists:4,slam:24,Main:40,slab:22,Naples:2,SEEKING:8,LOSSES:4,overcoming:8,"fiber-reinforced":1,"hide-out":3,tigers:4,Garpian:1,Wappinger:2,Pachyderms:28,Mackinack:2,"common-sensical":1,Constantine:2,"three-times":1,underemployed:1,Constantino:2,Truman:11,Steamed:17,renal:1,appraisals:4,polyvinyl:22,Vader:2,"stop-shipment":1,Goldberg:2,hurled:32,Preface:2,typically:6,jewelers:4,resurrecting:8,molars:4,Femmes:2,Pascal:2,fifth:34,upgrade:520,scatterbrained:1,stained:81,jolt:25,overruns:4,Majdanek:2,only:591,Inuit:2,blockading:8,Fuhrmann:2,phased:54,televisions:4,Camp:11,Evident:1,cannon:19,rehear:39,Pauson:2,truly:6,loath:1,cannot:190,symmetrically:6,unfastened:16,manuscripts:4,celebrate:42,disentangling:8,Fehr:2,morphophonemics:4,Kanter:2,preempt:39,Encouragement:11,keyed:14,overworked:14,losers:4,"pre-cast":1,"S.A.F.E.":2,Arbor:2,Hauer:2,WPPSS:2,Crew:47,elected:81,Naiman:2,afoul:6,hell:235,culpable:1,Veilleux:2,sport:779,Cree:2,symbolists:4,swankier:12,disppointed:1,momentoes:4,Mikhail:2,Minero:2,between:206,snuffboxes:4,"H.E.":2,Minera:2,"government-insured":1,"import-restricting":1,Target:11,Roulet:2,queerest:51,Burmese:901,"re-educate":39,perceptions:4,reinterpreted:17,hypoglycemic:1,enabling:8,Okasan:2,"buy-back":226,"home-produced":1,underwritings:4,Viale:2,Englishman:11,Viall:2,Eager:66,Journalist:2,Midwest:902,Anatol:2,reliables:4,Depending:8,informed:45,markedly:6,maladroit:1,Melanie:2,Schools:46,informer:1,Gortari:2,patriarchal:1,Berth:2,Berto:2,Posts:109,Berte:2,abridging:8,"pilot-dominated":1,realities:4,Arterial:1,Arbitrary:2,prehistoric:1,LEHMAN:2,these:246,wealthiest:51,accommodating:8,trick:25,Scorecard:2,crumbly:1,jaywalkers:4,Bussey:2,erned:16,MKI:2,"Heigh-ho":106,canceled:834,Nissho:2,eras:4,Gyula:2,Flugel:2,thrills:18,"short-sell":39,"remote-control":1,unshakable:1,Muni:1,Whiteleaf:2,Munk:2,"dead-eyed":1,intelligently:6,figuring:8,Caron:2,Carol:2,Meriwether:2,numerals:4,ominously:6,closest:51,"salmon-colored":1,"universe-shaking":1,ELECTIONS:4,favorites:4,Dasibi:2,Enoch:2,racketeering:21,mistrials:4,"vertical-restraints":4,nobly:6,complained:32,Makro:2,AVOIDED:16,cockier:12,alfresco:34,Aida:2,recurrently:6,Tektronix:2,severe:1,"take-or-pay":1,peripherals:4,Aids:18,"yellow-gray":1,Premner:2,schoolers:4,"household-type":1,entertainments:4,"Nassau-Suffolk":2,transmitting:55,shouts:72,Reuven:2,Examination:47,imparting:8,Liang:2,ounces:91,crimsoning:8,"crime-ridden":1,Asilone:2,Davidow:2,mirrored:54,Adriatic:2,Technik:2,Koor:2,Spielvogel:2,Koop:2,Abruptly:6,Knuettel:2,spectacular:1,"dollar-priced":1,repetitions:4,Headquarters:443,stools:4,Project:11,Bakery:2,overlooks:20,SHOWY:1,coolants:4,recipient:3,Creditors:4,Photek:2,Lubell:2,Smaller:12,Southhampton:2,utterances:4,Forecaster:2,collective:3,Langeland:2,Agro:2,Agri:2,"parental-leave":1,Mare:11,Schmotter:2,Mara:2,circumscribing:8,Marc:2,Sokolsky:2,Mark:128,Mart:2,"floating-load":1,Comdisco:2,Kleissas:2,Marr:2,Mars:2,Marx:2,enacting:8,DHAWK:2,"government-approved":1,passions:4,Fiber:11,Khrush:2,Lilliputian:1,Yakima:2,rubfests:4,"On-Target":2,"business-telephone":1,Ranks:2,reverberating:8,Smart:40,Pincavage:2,Ricci:2,unplumbed:1,Spokane:2,Stranger:12,equivalent:22,Ponchielli:2,balked:32,Lateiner:2,leftover:1,habe:64,"electric-utility":3,confederations:4,Marcellus:2,"NBC-TV":2,"sabers-along":127,tremendous:1,escalating:8,Spogli:2,Rushforth:2,Bags:4,sedulously:6,Ferrofluidics:2,Bagh:2,lob:39,supervising:8,log:44,ChemPlus:2,"by-laws":4,Soyuzgoscirk:2,Philosophies:2,lop:1,Cookie:2,NUMBERS:4,lot:887,Shribman:2,"focus-group":1,Tsarism:2,seismographic:1,axioms:4,drains:18,Slovenian:1,"Booz-Allen":2,Tillich:2,"Deposits-a":903,Ragged:1,Rence:2,Stalk:2,proclivities:4,Stale:1,Renck:2,Kornick:2,bellows:904,Coal:11,Century:11,interiors:4,Airlie:2,Pogue:2,McCarthy:2,"second-consecutive":1,Boarts:2,Confuted:2,Williamsesque:1,beliefs:4,"RU-486":11,illnesses:4,Judges:92,Asks:20,statesmanlike:1,"alternative...":102,Seaborg:2,Ponkob:2,Junor:2,Aska:11,trickled:17,"N.E.":2,corporatewide:1,Adonis:2,masers:4,"Nazi-minded":1,milking:8,woeful:1,Intense:1,Tegretol:2,COPPER:47,"non-direct":1,Country:11,peas:4,preconditions:4,peak:205,"turnaround\\/takeover":12,"single-B-plus":1,Pharmacies:4,tendencies:4,fiscal:94,assert:42,Tropics:28,requisition:25,Jimenez:2,"chauffeur-driven":1,Gorshek:2,detonating:8,"side-crash":1,"November-December":2,"quake-related":1,publish:42,copyrighted:17,rectlinearly:6,Renton:2,Potpourri:4,victoriously:6,"missile-type":1,fizzles:20,glitzy:3,backpedaling:8,"Marie-Louise":2,Nowacki:2,pretreatment:439,Ella:2,Elle:2,foster:83,erects:20,fizzled:32,Costar:2,dominated:54,Passavant:2,Alligood:2,Appealing:8,Posix:2,Bowling:2,deficient:1,Barnett:2,Waltana:2,Oakes:2,"Reyes-Requena":2,libeled:17,relenting:8,trumpeting:8,vulpine:1,cookies:4,"code-named":798,palazzos:4,somberly:6,WHOOPS:2,unheard:1,decriminalized:14,"above-normal":1,promotes:20,MARKET:11,gether:39,insomniacs:4,Totally:6,acknowledgments:4,Cambrian:2,dolledup:1,tholins:4,Rowman:2,"round-table":1,invitational:1,Cane:11,Jews:41,Cano:2,vegetarian:1,Podgers:4,whine:25,Tucson:2,"pro-Gorbachev":1,threemonth:1,Milledgeville:2,Nelms:2,Madding:2,Gantry:2,fatuous:1,REN:2,lurked:16,Animal:47,gunmen:4,Studebaker:2,takes:20,relegated:54,"one-day":1,slants:72,abstaining:8,shotguns:4,"non-objective":1,"oil-producing":3,Ozark:2,Shahon:2,taken:905,Korando:2,"holier-than-thou":1,overbuilt:3,excuse:24,Castings:2,"J.A.":2,slouchy:1,RFM:2,gauche:1,"Australian-American":1,Diocese:2,latching:8,dromozoa:4,Privatization:47,Comfortably:6,geologically:6,Pentecostal:2,Hoexum:2,"anti-pollution":1,Munger:2,stinging:261,brazenly:6,Liberated:231,"three-sectioned":1,ectoplasmic:1,cows:4,magenta:3,species:19,gaffes:4,Federation:11,Polaris:835,exponentially:6,Daisy:2,"non-religious":1,Staunton:2,informants:4,Hanfsaengl:2,"coated-magnetic":1,beardless:1,dread:22,microseconds:4,banks:18,dispersing:8,dream:44,Dian:2,Dial:2,materialistic:1,Cartagena:2,"out-of-state":1,ascetics:4,Diaz:2,lasers:4,"Century-Fox":2,Advise:2,flimsies:4,"O.P.":2,Werkstell:2,Copyright:11,carpeted:54,Dunkin:2,flirted:32,LOBSTERS:4,undedicated:17,averts:20,Jeffersons:28,"Italian-based":1,Giacomo:2,groping:55,Desolation:2,HERITAGE:2,geopolitical:1,"Grants-in-aid":4,Thygerson:2,Senior:66,"profit-motivated":1,"three-man":1,finite:3,Thomajan:2,rots:20,imprisoned:45,"camping-out":1,occasions:18,Swenson:2,intervene:39,Astronauts:4,teas:4,Foreclosures:4,nonbinding:1,sketches:18,Aspe:2,Towson:2,outguessing:8,Peasants:41,undetectable:1,historicized:17,"fetal-tissue":3,sketched:54,handless:1,Martek:2,Clabir:2,unnatural:1,preserve:95,"Chenevix-Trench":2,Packing:116,Martex:2,outrun:196,Zeon:2,Auxiliary:2,ciphers:4,"Cleveland-Cliffs":2,algae:4,curtailed:54,"charcoal-broiled":1,perceptible:1,Batavia:2,concessionaires:4,maht:190,wiretaps:4,heartiest:380,blush:25,assign:42,Apollinaire:2,IIGS:2,buffaloes:4,heritages:4,Leish:2,knocking:55,IDEC:2,Judaism:2,"full-power":1,buffing:8,Reply:47,Centrally:6,Felons:4,Chilmark:2,guaranteeing:55,LOS:2,"under-researched":1,Goddammit:106,Transparent:1,selling:267,Lummus:2,Marques:2,"less-ambitious":12,Marquet:2,authors:4,Marquez:2,Algol:2,"most-livable":51,Brannigan:2,"transistor-radio-sized":1,anticipate:42,Ricoh:2,oystchers:4,Tendered:1,Skittish:1,obfuscate:39,"anti-Kennedy":1,Defendants:4,udders:4,Haney:2,Regains:20,Hanes:2,urgently:6,"back-yard":3,towardes:127,Transcendentalists:28,cumbersome:1,unfocussed:17,Rushmore:2,constructions:4,Pamphili:2,Milbankes:28,"N.L.":11,Allons:64,expansionist:1,camouflage:25,Venusians:28,Saison:2,LLerena:2,"hell-bent":1,Developments:41,Klineberg:2,"flotation-type":1,promiscuous:1,unifications:4,"double-billing":8,plunder:25,Evaluating:8,Concepts:130,"hands-on":1,Barnhill:2,Bridge:11,puddings:4,Schreibman:2,Institutional:66,exempts:20,Sheik:2,contradictorily:6,prettier:12,reground:1,Springs:130,Fredrick:2,Fredrico:2,Blondes:130,humid:1,Gignoux:2,"first-period":1,registers:18,renegotiate:39,pocketed:32,Postbank:2,Algom:2,Surcliffe:2,northern:1,scrimped:16,"tack-solder":39,Caravans:28,grandiloquent:1,Lyonnais:2,scooted:16,policing:55,dominant:1,Notes:56,imparted:54,speckled:1,reneged:16,"conflict-of-interest":22,speckles:4,"G.J.":2,Noted:1,Abdallah:2,catches:72,Matra:2,toothbrushes:4,Arnault:2,"key-punched":1,catchee:39,recommendations:4,Noteware:2,overtaxed:7,Limerick:2,slavishly:6,cavorted:16,irredeemably:6,Rosen:2,schizophrenic:3,Roses:28,Mutinies:4,Cheyenne:2,plummeted:32,precursors:4,lynched:17,embarking:8,McSorley:2,"Papa-san":2,plush:3,assertive:1,Lisbeth:2,TeleCable:2,conditions:4,Aristech:2,Golfers:2,statistically:6,unconscious:3,eluates:4,endogamous:1,Althaus:2,dally:39,Muench:2,hardline:3,LDCs:28,Mardi:2,AMVISC:2,prepubescent:1,Fireside:2,"Program-Trading":1,Fogle:2,Sherlock:2,undigested:1,PlanEcon:2,puritan:1,longerterm:1,cavalrymen:4,Consortium:11,"Diggers\\/Noise":2,Riesman:2,"customer-inventory":1,TML:2,persecuted:17,Moulins:2,stamp:25,dams:4,damp:50,Henrik:2,Ajax:2,damn:906,Royale:2,Warner:2,Takashi:2,TALK:11,generating:55,Koninklijke:2,regroup:42,"co-sponsoring":1,squabbled:32,storylines:4,heute:64,squabbles:4,assigning:8,dialing:55,Yunian:2,Taste:169,socialist:3,megawatts:4,rope:25,Alfonso:2,equityholders:4,Planck:2,Alfonse:2,Celestino:2,wherever:293,"Frog-marched":1,requisitioned:32,Hamlin:2,commonly:6,Esquire:2,"highest-paid":1,Cosby:2,Teen:111,"K.J.P.":2,flatcars:4,predominated:16,hocking:8,solarheated:1,Philharmonique:2,conflict:44,Treating:8,covetous:1,Polimotor:2,jackbooted:1,Glendale:11,"C-141":2,idling:55,herewith:6,older:455,docked:17,reclaim:42,olden:1,weakest:51,returns:18,bondholders:4,Pedigree:2,Reeve:2,Groused:16,"SYDNEY-Qintex":2,fertilizing:8,cocky:1,Deputies:41,Prenatal:1,uselessly:6,Citadel:2,Hosokawa:2,"red-brick":1,ASKS:20,swallowing:8,Hoelzer:2,"middle-ground":1,exercising:55,lobstermen:4,"Large-screen":1,Treasures:4,Bancshares:111,ballots:4,remaining:30,Meritor:2,Boehringer:2,Coplandesque:1,lacking:30,Apostolakis:2,"over-subscribed":1,reptilian:1,Stretching:8,Suisse:2,Copernican:66,"K.G.":2,wiser:136,Hulings:2,wings:4,"Kelsey-Hayes":2,marvelous:1,stimulatory:1,"day-care":22,Sportsmen:4,Finn:2,Fina:2,"higher-priced":200,Fine:209,Find:42,Fing:2,Harkess:2,dizzily:6,skimpy:1,"software-development":22,markka:907,Suominen:2,BLOCK:2,distributable:1,garroting:8,funnels:4,Winters:2,Lynchburg:2,Kupelian:2,Eminase:2,Performers:4,Neill:2,infra:64,interpretative:1,Northerner:47,Neils:2,taboo:104,"sometimes-aggressive":1,uppon:325,misspent:17,bourses:4,whittled:17,Macfadden:2,"one-term":1,"on-the-scene":3,miracles:4,DiLuzio:2,dangle:39,panders:4,within:206,smelly:1,smells:72,behaving:8,"one-horse":1,Keys:2,liniments:4,deodorant:22,Trovatore:2,Pennsauken:2,Gigot:2,"motors.":4,Katharine:2,Katharina:2,Hudbay:2,Stepanova:2,rummage:39,branchline:1,duly:6,collapsed:85,hairyknuckled:1,Tommy:2,properly:6,"photo-offset":1,Switzerland:11,Quixote:2,Schott:2,"Hartford-based":1,Imreg:2,"low-quality":1,Haigler:2,"foreign-sounding":1,"coast-to-coast":1,"tube-nosed":1,responsively:6,Florence:2,Siano:2,intermodal:1,"Nickel-iron":1,Viennese:1,Nuovo:2,Daralee:2,"higher-ranking":1,proteges:4,"national-priority":1,unwise:1,upended:1,Spartan:129,dynodes:4,spokesmen:4,resistances:4,nabbed:17,Yehuda:2,Pottery:2,Snapped:16,Yehudi:2,jesting:8,"gay\\/bisexual":1,Underperform:2,Italics:4,Peterman:2,potentialities:4,constitutions:4,"no-fault":1,ruthlessly:6,Automatically:6,independently:6,Statues:4,Makepeace:2,Wissahickon:2,Gabrielle:2,banishing:8,Village:11,payables:4,dermatological:1,Sunkist:2,hyaline:1,"fixed-rate":3,Gerraughty:2,Dortch:2,Molinaro:2,McEnany:2,desserts:4,Crandall:2,"Houston-based":66,IMREG:2,excludes:20,stave:39,"President-elect":2,Plazek:2,Registry:2,excluded:54,Rifle:11,cluttered:14,Herridge:2,Euroconvertible:1,Irvin:2,flicker:25,Reorganization:2,murderous:1,jinxed:17,Histories:2,valued:81,muzzled:17,"now-vacant":1,Argumenty:2,Peony:2,mercurial:1,Blitz:11,laundries:4,assignments:4,Rosburg:2,Amcap:2,Babies:123,regummed:16,"Hoylake\\":1,boots:4,waking:30,Steinbrenner:2,picked:706,zu:64,Solesmes:2,brokered:103,Davila:2,Fueloil:2,paintings:4,Cordoba:2,Ligachev:2,flicked:16,Nishima:2,Goldfein:2,"Saudi-American":2,Nishimo:2,"knobby-knuckled":1,Consonantal:1,Armani:2,Our:35,Bateman:2,redrawn:1,Armand:2,thermocouples:4,lorries:4,indivisible:1,Likewise:6,haunts:18,McCartney:2,nameless:1,Out:221,Planned:2,deterrents:4,felled:54,terrorizing:8,collaborating:8,"oil-lease":1,"Consulate-General":2,surpluses:4,Henning:2,truckloads:4,announced:112,unpleasantly:6,"Cash-strapped":1,Leng:2,agreeably:6,Lend:216,Autozam:2,"all-expenses-paid":1,"muscle-shaping":1,Leno:2,Sonntag:64,Lens:2,frogs:4,Membership:11,cheeky:1,ASPR:2,Lent:157,agreeable:1,Leny:2,cheeks:4,Lubar:2,"Chill.``":133,"Semple-Lisle":2,Legs:4,disabling:8,"Princeton\\/Newport":11,northers:4,"well-intended":1,Wilmer:2,"semi-precious":1,"Free-Will":2,"m.p.h":163,Valrico:2,TURNS:20,Trizec:2,Grazie:2,antithetical:1,"still-dark":1,Kropp:2,Godfather:2,Astros:111,titre:64,Moises:2,reestablish:39,circular:3,Widuri:2,"anti-organization":1,Joel:2,yogurts:4,"real-estate-asset":1,Joes:4,"heat-resistant":1,Gosplan:2,Eckersley:2,Isola:2,"day-today":1,"fixed-income":22,While:127,lordly:1,contraceptives:4,Politics:908,Who:909,fracases:4,Ceylon:2,slickers:4,Crewmembers:2,Final:66,Lewelleyn:2,Finan:2,Body:11,leprae:4,outer:1,Saatchi:113,guerrilla:22,downgrading:21,Conroe:2,Quintus:2,"write-offs":91,Bode:2,"video-cassette":3,Celtic:66,belatedly:6,Primate:2,enshrouds:20,Dissect:39,"loose-jointed":1,"back-lighted":1,"MiG-29s":4,"index-fund":3,Tupper:2,hands:18,documented:54,handy:1,Tiernan:2,Marginal:1,Accessories:123,"write-down":25,crossing:55,uncaring:1,noneconomic:1,illuminate:39,voyageurs:4,Lewellen:2,Representatives:41,Liberty:11,Santacruz:2,Matlowsky:2,margins:4,steadier:12,offsetting:30,Gubers:2,Whitford:2,Straszheim:2,Adolph:2,Corzine:2,remiss:1,wondrous:1,Jameses:2,Umberto:2,"L.S.U.":2,"liquidity-enhancing":1,humiliating:1,Museums:57,Carmelites:65,unliterary:1,"banking-related":1,Summerdale:47,hostile:3,PLAYER:2,"Euro-watches":4,counterpart:22,intoxicated:1,Finanziario:2,Finanziaria:2,Reider:2,Maize:2,swapped:54,disembodied:1,"manure-scented":1,stultifying:1,Chewing:8,Parfums:2,Hines:2,Eurodollar:213,practitioners:4,paves:20,Inauguration:11,Nichol:2,Tomilson:2,Spelling:2,perfectly:6,Fitzsimmons:2,paved:103,Lundberg:2,"a-crowing":8,"Panama-based":1,approachable:1,jauntily:6,comported:16,acceptable:1,precursory:1,Mishkin:2,Piscopo:2,"cash*/NN-flow":1,Guzman:2,soviets:4,Mattausch:2,"baby-boomers":4,Reviewing:8,Casper:2,Lima:2,Joban:2,Franciscans:130,Lime:40,Libyans:28,Kahiltna:2,BAII:2,emptying:8,Lance:2,saintly:1,"real-analytic":1,arrogate:39,ephemeral:1,Billie:2,Jaworski:2,clodhoppers:4,legislatively:6,Provident:2,Granny:2,Decorating:8,lectures:18,Mindy:2,"spine-chilling":1,Minds:28,intentions:4,moths:4,lectured:32,Enter:39,Jenrette:2,Hypotheses:28,Bugle:2,Pummeled:17,isotopic:1,Boatmen:41,Bruxelles:2,Nantucket:2,Punitive:66,Larimer:2,wealthier:12,"transportation-where":910,Acts:28,brewers:4,halfbacks:4,requsting:8,partners:4,Evershed:2,dramatize:42,chromatics:4,hopeful:3,"debt-ridden":1,quadrennial:1,craving:21,dreamers:4,Checkrobot:2,infernal:1,"billion-pound":1,Insinuations:4,eulogizers:4,Midi:2,sprouting:55,Burckhardt:2,Broil:39,Brodbeck:2,Narrow:66,"Italo-American":2,circumvents:20,endless:1,gray:3,processes:18,Eurocommercial:1,Jiri:2,"wheel-making":1,quarantine:39,"single-home":1,Margenau:2,evaders:4,overflowing:8,Impossible:1,grab:551,"Gnu-Emacs":2,"pen-and-pencil":1,trilateral:1,Banning:8,humane:1,Interior:835,Seconds:4,"pre-Vatican":2,Magnetism:2,allotted:54,Technician:11,Monogram:2,"three-sevenths":4,buckets:4,Sri:2,Spethmann:2,recessions:4,Ring:11,Stygian:1,Flock:2,psychotherapeutic:1,Isaacs:2,"above-average":1,Strolling:8,presentations:4,admit:42,Egerton:2,skindiving:8,Foncier:2,Woody:2,"surface-declaring":1,vielleicht:64,spewed:32,"re-instated":17,"Pap-pap-pap-hey":106,distinguish:42,Acquirers:4,unselfishly:6,quit:373,speakin:8,Legittino:2,overthrowing:8,quiz:25,quid:147,dwarfs:72,Quesada:2,corresponding:13,negligently:6,schoolgirls:4,pie:911,gouged:16,And:596,encircles:20,DRAMs:57,uncertified:1,Ana:2,Brasstown:2,intimidate:39,Fonda:2,Ann:2,Schiffs:28,"two-career":1,Delmed:2,encircled:187,"service-sector":1,Fonds:2,Any:246,coddled:17,Beyer:2,"D.D.":2,unsheathing:8,"second-largest":186,"Europe-based":1,"specialty-cheese":1,capture:95,Hoenlein:2,Autocamiones:2,Beat:128,Beau:2,Sukarno:2,Bear:129,"sex-change":1,Beal:2,"infant-mortality":3,Bean:2,Attila:2,experimented:32,eccentric:3,Coral:2,Pour:2,Poul:2,privations:4,Unckle:2,Menlo:2,suborbital:1,frequently:6,endearing:1,Nyheter:2,stretchers:4,nebulous:1,Windy:2,drone:22,mixers:4,Stern:40,Winds:2,"risk-free":1,quavered:16,Patiently:6,enormously:6,Innuendos:4,Erskine:2,mistaken:14,Dalles:2,"non-resident":1,"B-70":11,foxholes:4,dost:33,"high-grade":1,Jacopo:2,Budgetary:2,Eggs:46,Turkish:66,Turbyfill:2,Pigs:111,Hombre:2,Aoun:2,clouded:81,"Diego-area":1,Programs:123,"all-female":1,Buckingham:2,Chipello:2,livid:1,Lithograph:2,formulaic:1,"scale-down":1,immediately:6,baptisms:4,sublimate:25,Evensen:2,"pared-down":1,Hyatt:2,politely:6,fingerprints:4,Nagy:2,Naga:28,Polish:253,"district-by-district":6,refugees:4,page:25,Takimura:2,uttermost:1,Californians:57,"pie-in-the-sky":3,"explicit.":1,URGED:32,Helicopter:2,peter:39,assisting:8,Colvin:2,weeknights:4,"?":60,hinder:39,Angers:2,coated:14,BDO:2,Pfaff:2,Revitalized:17,Thackeray:2,Tarboro:2,sheriffs:4,Clubhouse:2,repaired:54,Akiva:2,Presupposed:17,Pawley:2,"well-grooved":1,Drabble:2,"U-Save":2,eloquently:6,Flavio:2,equally:6,adopters:4,Pencil:128,"E.C.":2,autonomous:1,articulate:82,withholds:20,globalized:1,Keystone:11,finalizing:8,managing:5,Approach:2,Skiway:2,serfs:4,Enviropact:2,Toagosei:2,delusions:4,"Hoffmann-LaRoche":2,incompetents:4,California:40,hoofs:4,Bradford:2,revised:45,invent:42,Clozapine:2,collected:54,Rutgers:2,Magnier:2,Larish:2,courts:18,Larisa:2,eat:42,"Re-Birth":2,upwardly:6,Mylanta:2,Coughlin:2,Knesset:2,"brown-tobacco":1,Sharfman:2,Kristine:2,Barrymores:28,dibenzofurans:4,"Euro-playing":1,Women:130,strengthens:20,flecked:17,Spirits:46,Missett:2,tissues:4,upsets:18,utensils:4,Spirito:87,"Non-steel":1,BethForge:2,Orchestral:2,"class-action":3,RAVAGES:4,"three-to-five-year-olds":4,Gynecologists:4,"little-feared":1,onwards:6,Shales:2,"Chevrolet-Pontiac-GM":2,Fingered:2,Cheeseheads:4,talkin:55,prepaying:8,wouldbe:1,Neurosciences:2,astounding:1,whisperings:4,Toonker:2,dragoon:33,"dew-sodden":1,Thorne:2,undelivered:1,friends:4,yell:25,grunted:16,anacondas:18,Bockius:2,Rayburn:2,travelogues:4,rounding:55,Suchard:2,theretofore:6,Leftovers:2,Weingarten:2,disruptive:1,powdery:1,"four-year":1,chelicerates:4,powders:4,alders:4,transversally:6,Plate:11,Alesio:2,Plato:11,Plath:2,Job:11,Platt:2,"fine-grained":1,Apache:74,Software:11,comparatively:6,"Anaheim-Santa":2,aparently:6,Montrose:2,Patch:11,smack:912,govern:42,Outsiders:4,Discovision:2,"RTC-appointed":1,"school-district":3,vast:1,Ignatius:2,baking:21,strayed:32,Maggot:2,Mascotte:2,Thomae:2,panelized:17,Branson:2,martinis:4,Established:17,Caygill:2,Excellency:2,Galles:2,Saffer:2,Roehm:2,Newbridge:2,Ragalyi:2,implemented:54,Cinemax:2,Eventually:6,gawky:1,Mannington:2,inordinately:6,tirelessly:6,Minuteman:2,Wempner:2,Binghamton:2,Treybig:2,"Ave.":2,Greens:41,fueling:55,Greene:2,Bhirud:2,rods:4,brackish:1,dry:913,"intra-administration":1,Yooee:106,stiffing:8,suitably:6,taxis:18,ignoring:8,hokey:1,harass:42,Xtra:11,diagrammed:17,adopting:8,suitable:1,Tillinghast:2,reckoned:54,Wire:11,constrictions:4,flurried:16,Relations:41,Also:6,"grade-constructed":1,Microscopic:1,JUMBO:1,gorillas:4,Wiry:1,Journalists:57,multipronged:17,Crested:2,Downs:2,watering:55,"mass-audience":1,moored:17,"social-affairs":4,Bronfman:2,Chekhov:2,breeders:4,wary:1,Outing:2,"well-heeled":1,Tiananmen:2,lunge:39,quibbling:8,Ramo:2,"G.":2,ward:25,"three-power":1,Kurosaki:2,fabricators:4,candies:4,Fellowships:123,Alcatraz:2,Antwerp:2,"full-length":3,ready:121,Homosexuals:4,ostrich:3,"people...":102,unforgettable:1,SLORC:2,aging:5,GQ:2,Truell:2,Nykvist:2,belying:8,fielders:4,faults:18,faulty:1,prefectures:4,"needle-nosed":1,Greenock:2,replacing:8,"postal-business":1,Richer:141,predominates:20,natch:106,THACHER:2,attempt:24,NORIEGA:2,vegetables:4,owls:4,fraudulently:6,Monroe:2,Clendenin:2,Ancient:40,Ptolemy:2,Javert:2,"retirement-savings":1,Lethcoe:2,"Florican-Inverness":2,befall:42,scorers:4,underenforces:20,GM:2,Karlheinz:2,experientially:6,frisky:1,"policy-oriented":1,Conversations:4,unexercised:1,"credit-quality":1,"low-profit":3,symptomless:1,persist:42,weeks:4,petulant:1,vivre:64,Pfizer:2,duodenal:1,unstylish:1,bronchial:1,"color-glutted":1,niches:4,Indio:2,prophetically:6,sleepless:1,India:2,"pre-crash":1,Claeson:2,mounts:18,Curious:1,bootleggers:4,operatives:4,messianic:1,objectors:4,EISA:2,bouanahsha:64,marital:1,glinting:8,stealing:5,shirking:8,"first-class":3,Saundra:2,Marvellee:2,typecast:39,"non-scheduled":1,gradient:22,tales:4,"secretary-general":22,Phedre:2,Jenkinson:2,revolving:199,DLC:2,Comstron:2,guiding:30,cutest:51,Halkett:2,DLJ:2,enclosing:8,Izquierda:2,aboriginal:1,Repeat:25,Bache:2,struggle:24,inadequately:6,DLX:2,unconditioned:1,Curt:2,cookbooks:4,Clinton:2,Beaulieu:2,"science-watchers":4,scrounge:149,Cury:2,"half-blood":1,Curl:2,Homicide:11,Gems:4,naughty:1,reassure:39,Sobibor:2,MATERIALS:2,radiate:42,Hoare:2,runways:4,neuromuscular:1,Pirko:2,dumbfounded:7,Liability:47,Nuttall:2,halted:914,Press:128,dwell:149,Producing:258,invalids:4,outputting:8,bouncing:55,gambled:17,gambles:4,boarding:55,Eddy:2,Thoughts:74,laypersons:4,exorcise:39,Movements:4,sees:20,seep:42,quench:39,rechristens:20,Billiards:11,"longer-term":200,seed:855,ergonomics:4,seen:45,seem:42,"exchange-rate":22,seek:42,ACQUISITION:47,rangy:1,bogies:4,Lorex:2,Dunlap:2,floppy:1,Jaguars:28,Nationalists:28,"re-scheduled":17,Wozzek:2,transnational:1,Shrugs:2,Treadway:2,"Ark.-based":1,Loren:2,"Studds-Miller":2,Scheetz:2,Journalism:47,mashed:17,Incidentally:6,Roommates:4,"mid-August":11,Brusca:2,Reached:17,Optics:2,treasonous:1,Attorney:2,doi:64,don:182,doo:25,alarm:25,dog:78,orthophosphates:4,Erskin:2,dot:24,Orrick:2,planetary:1,amending:8,sows:72,Colbert:2,sown:17,sneaking:8,Macho:64,clannish:1,"long-considered":1,representing:8,ingloriously:6,Deductions:4,"variable-rate":1,folks:4,Eurotempo:2,Duvalier:2,disconnecting:8,hollers:20,Mainland:40,Carnival:11,rejoicing:55,overflows:4,convulsed:16,Umberson:2,"nearly-30":1,tiled:7,slanderous:1,Nilson:2,Voting:321,scudding:8,Torbjoern:2,"H.M.":2,Over:124,internationalized:17,reawakening:8,"far-right":1,LeBow:2,rival:255,BancNewEngland:2,Inspects:20,Bovin:2,Warnock:2,Hospital:11,Burch:2,exhibitors:4,Playwrights:2,civilizing:8,Putnam:2,Monier:2,Hewlitt:2,Baraclough:2,simplest:51,stoking:8,Bourke:2,crayons:4,Central:860,"Ex-Oriole":2,Luftwaffe:2,Arpino:2,"scaled-back":1,"once-a-day":1,worksheets:4,laze:39,maneuvers:18,swoops:915,Supported:17,und:147,une:64,"once-popular":1,Syrian:1,Carlisle:2,Compact:2,Corelli:2,Indicted:17,"non-mega":1,COMMERCIAL:117,offerings:4,Though:316,nilly:6,Monster:47,paralyze:39,Treasurer:2,Woolsey:2,replicate:39,Schweiz:2,Interbank:2,"S.K.":2,chug:33,"arbitrage-related":1,"lightning-quick":1,Espinosa:2,"L.P":2,spherules:4,"block-grant":3,personally:6,NCNB:2,ASKO:2,Advertiser:2,sanctum:64,styrenes:4,Isodine:2,bloomed:16,Tearle:2,singsonged:16,"long-overdue":1,Rickards:2,ritorno:64,"lever-action":1,Jeffrey:2,Paxson:2,Ruthann:2,make:182,Voorhees:2,Shorting:21,Puente:2,showmen:4,unfortunate:3,"get-out-of-my-way":1,Cibula:2,filtered:14,maku:64,Dappertutto:2,sodden:1,sanitationists:4,harbored:54,"human-rights":593,Domaine:2,Englund:2,vibrated:16,"shot-up":1,waggishly:6,"not-for-profit":1,glimmers:4,materials:4,butted:17,ballgowns:4,unglamorous:1,Hypothalamic:1,Hedges:2,Pastor:2,Immune:2,Skywave:2,Fininvest:2,transforms:20,Corinthians:111,tattooed:17,Exponents:4,impending:13,buyers:4,legion:3,Judiciary:2,"far-from-conciliatory":1,magistrates:4,Condliffe:2,Foxboro:2,"Jersey-Salem":2,Langstaff:2,"leading-edge":1,"Panet-Raymond":2,Calvinist:2,Support:11,stimulators:4,Roberta:2,reuse:39,unreeling:8,Roberti:2,Roberto:2,Governed:1,Oppenheimer:11,perfunctory:1,gyrating:8,dreamy:1,diapiace:64,"other-directed":1,Governer:2,dreamt:32,dreams:18,shoulder:486,Metallurgical:2,"high-technology":22,Capitalists:28,Throneberry:2,arrivals:4,Welland:2,intermittently:6,"aluminum-hulled":1,Eljer:2,"Non-executive":1,"out-of-staters":4,"On-Broadway":2,Catfish:2,"short-term":916,Saintsbury:2,participations:4,grading:55,Fink:2,Sanka:2,Kilpatrick:2,Surmanek:2,trunks:4,Toying:8,Konheim:2,Youngish:1,meanings:4,"dowdy-looking":1,Participating:8,Leibler:2,"nightgown-clad":1,"one-of-a-kind":1,Cunin:2,Scollard:2,"M-Whatever":11,ungratified:1,conceal:39,lathered:54,fasciculations:4,Lynne:2,restate:39,"monetary-damage":439,Asada:2,fatalists:4,Handguns:4,shippers:4,diabetics:4,Barbariccia:2,Extended:157,Eckhard:2,illustrious:1,catalysts:4,inspected:54,lampoon:39,"roof-crush":1,counterproductive:1,"communication-service":1,Tidewatch:2,disarmingly:6,Nagano:2,Brascade:2,Theology:2,cutlets:4,readmit:39,lows:4,surrender:24,Interactive:40,Golden:40,benchmarks:4,Suffer:39,originating:8,morphogenetic:1,Bullish:66,infections:4,lingers:20,bloodstained:1,Stratagene:2,claimants:4,Mayer:2,"hot-air":1,Jolas:2,discriminate:392,clingy:1,offputting:1,EAC:2,preconditioned:32,clings:20,"eco-evangelists":4,"golden-parachute":1,"Colo.":2,matriarchal:1,Township:2,voltaic:1,Samaritans:4,refining:21,delivered:54,aurally:6,Rensselaer:2,Glossy:1,"coat...":102,"investment-tax":1,Yoshiro:2,describing:8,grapevines:4,slayings:4,Fairmount:2,outskirts:4,boondoggles:4,"non-credit":1,Color:129,Win:31,amniotic:1,Trotsky:2,Halfway:6,ABIOMED:2,unimpressed:1,auspiciously:6,managed:112,"Empire-Berol":2,Maddox:2,eldest:51,manages:20,claret:22,micrometeorites:4,"quasi-federal":1,Readings:4,Nutritious:1,Oberman:2,depend:42,unassailable:1,Painting:210,micrometers:4,Imperials:28,Insureres:4,Fly:39,"management-trained":1,Courtis:2,"full-range":1,Massachusetts:2,"Lieutenant-Governor":2,"Weingarten-Siegel":2,Adventures:56,Candlestick:2,tacos:4,soapy:1,forked:103,"far-reaching":1,jettison:39,freemarket:3,"acquisition-proof":1,"Walk-in":1,Nevah:2,"third-largest":1,Gassee:2,"whiz-bang":106,attracting:8,"ill-conceived":1,Shiites:28,Nusbaum:2,Heritage:2,Gro:2,"I.M.":2,"drought-inspired":1,sacral:1,Orthodox:40,phonographs:4,Brewing:2,reunite:39,sixfold:218,Traveling:229,scampering:8,promissory:1,unobserved:1,Buckra:2,Pulliam:2,Magnascreen:2,schooldays:4,"first-ever":1,"grade-equivalents":4,NMTBA:2,shift:44,Dantchik:2,sniggeringly:6,Aimed:17,Sacramento:11,Jno:2,Clipper:2,ALAMCO:2,adjustable:1,absorbers:4,Alphonsus:2,Feltes:2,hardier:12,"meal-to-meal":1,Felten:2,Joshual:2,Wallop:2,Wetherill:2,Tiempo:2,salting:55,"million-plus":135,CHRISTMAS:2,pelts:4,compactly:6,lessened:81,Sultan:2,Peronist:2,equipped:81,plantations:4,multitudinous:1,archaeologists:4,"non-mining":1,Montreal:40,Latest:51,Samovar:2,"harder-line":1,"out-of-date":1,Earthquake:47,reappear:149,"hard-riding":1,"IBM-based":1,"Rolls-Royces":28,Sharon:2,classrooms:4,Bogle:2,concocted:54,"Soviet-Korean":1,Forbes:2,battered:45,Brewers:4,BEAVER:2,spanning:8,Niciporuk:2,McCombs:2,"parental-consent":1,"free-choice":1,"penny-brokerage":1,traipse:39,Kalman:2,Maeda:2,Coke:11,Ginsburg:2,Akzo:2,Banana:2,propagandistic:1,Ludwick:2,periscopes:4,tatters:4,adamant:1,Thurber:2,McFarlan:2,Trojan:40,Schmitt:2,"long-deferred":1,"L-P":2,Graceful:1,BALLOTS:4,destructive:1,Adolescents:4,Trim:556,Viphakone:2,Trio:2,neck:275,pulsations:4,Trig:2,Trib:2,rarified:1,Hackstaff:2,Speedy:2,Tris:113,esters:4,Moeller:2,shield:25,Microsystems:111,availing:8,antifundamentalist:1,Dell:2,Savin:2,Believing:8,Covered:1,"tax-driven":1,Shtromas:2,WTV:2,"gold-card-carrying":1,"recession-proof":1,imbedded:54,clearest:51,WTD:2,Worthy:2,WTI:2,sensitized:17,Gascony:2,accusations:4,undisclosed:1,"rent-controlled":1,Lonesome:1,widespread:1,Investigators:123,Authorities:123,intertitles:4,Armored:2,Giancarlo:2,misgivings:4,"five-home":1,apprehensions:4,LAWSON:2,"Asian-Americans":28,noncombatant:1,Announces:20,Barilla:2,"Common-law":1,"thousand-fold":1,unlock:42,"high-set":1,befell:16,HiPro:2,Mayors:4,Announced:1,emerges:20,Abrahamson:2,"drunk-driving":1,Overreach:2,Everest:2,militarily:6,emerged:32,"wider-than-expected":1,Tokuyama:2,Fiering:2,trademarks:4,Bamboo:1,Licht:2,Solarz:2,whittle:33,Traverse:2,Being:210,Parris:2,headphones:4,"rapid-transit":1,Fairlawn:2,Orwellian:66,Referring:8,likelier:12,"Allstates-Zenith":2,commercialize:39,whippings:4,Grantor:2,Lyondell:2,Yan:2,Yak:2,"magnetic-tape-coating":1,brynge:33,singling:8,"tailor-make":39,mouthpieces:4,participates:20,"cable-television-equipped":1,modernist:3,JKD:2,Poldowski:2,participated:32,Councilwoman:2,COLOGNE:2,broadcast:917,senioritatis:64,ambulatory:1,HMSS:2,satirically:6,Dirty:1,"court-length":1,butt:918,ceramics:4,vacating:8,Backing:8,"efficient-in":919,Teresa:2,"around-the-world":1,encomiums:4,booted:45,Ayub:2,Ekonomicheskaya:2,Protectorate:2,overenforced:17,gathering:21,topics:4,"seventh-largest":1,nuisances:4,Meissner:2,"earth-orbiting":1,"parts-engineering":1,efficient:1,bawhs:4,"Sugarman-led":1,isolate:42,endangered:45,potential:3,Perfection:11,Investor:11,frolicked:17,"egg-hatching":1,"poly-unsaturated":1,gloomier:136,Jungian:2,Thorn:11,vitiate:39,Thorp:2,psychoactive:1,nonmythological:1,befouled:17,Hispanoil:2,Kolman:2,Amityvilles:28,Elmira:2,Statehood:11,Enclosed:17,stockings:4,Resuming:8,Mendelssohn:2,Herring:2,Parkhaji:2,dissecting:8,"investment-holding":1,navigated:17,Lespinasse:2,untold:1,"rate-mortgages":91,Hills:74,"long-known":1,Souths:28,dice:91,hares:4,"SIBV-MS":2,Splinting:2,Kiwanis:2,Studio:11,Campbelll:2,"K.L.":2,Services:41,"hand-squeeze":1,"patient-physician":1,ComFed:2,"steel-edged":1,"white-dominated":1,"longest-standing":51,bevel:39,Alusik:2,Amid:124,"out-of-pocket":1,Irish:396,Fighting:423,employers:4,Voronezh:2,chillingly:6,Rodney:2,straggled:16,Executives:56,Kanto:2,intuitive:1,frolicking:8,Cornel:2,Dookiyoon:2,Mundo:2,Corney:2,"limited-production":1,Mundt:2,Corner:11,"well-dressed":1,silently:6,verities:4,Utsumi:2,"re-emerge":39,"single-B-3":129,Ohkuma:2,Stanislas:2,Stanislav:2,Stanislaw:2,Jovanovich:2,chimpanzees:4,Heber:2,ruptured:81,affordable:1,LJH:2,Montesano:2,Mabellini:2,Symbolist:2,loonies:4,Quartermaster:2,Civilian:2,Karipo:2,Skolman:2,"Abortion-rights":152,bedraggled:1,SAN:2,motivations:4,Carolyn:2,tuck:149,"employee-bonus":3,"home-office":1,Felice:2,"slow-startup":1,"all-day":1,Borak:2,Silva:11,catbird:1,Paddle:39,jets:4,Crombie:2,unassuming:1,technicalities:4,"half-reached":16,slenderer:12,Ciba:2,Pavarotti:2,jaunty:1,"athletic-shoe":3,Luckily:6,elbowing:8,Newsday:2,shakers:4,Catheter:2,Leary:2,Gholamreza:2,educated:14,Siecle:2,Angolan:1,SAS:2,Ice:11,Learn:216,Kieran:2,Thiokol:2,Hydrochlorothiazides:4,Undergraduates:4,huckster:25,"sales...":102,"drug-dealing":3,Woos:20,conferences:4,ethically:6,"winding-clothes":4,relying:8,pressing:30,Palomino:2,Yurek:2,incubate:39,Ferembal:2,Toch:2,Acustar:2,"government-dominated":1,Nellies:28,"twenty-eighth":1,"Chernobyl-type":1,dishonorable:1,"N-W":2,finagled:17,Dunkelberg:2,McCrady:2,JAS:2,Softly:6,Lumbera:2,"Richmond-San":2,rivalled:16,Dedham:2,Naren:2,Workplaces:4,substantive:3,solve:42,Kogan:2,Ways:41,Pohlad:2,proximal:1,"half-reluctant":1,Sandwich:11,outranks:20,pile:24,FELA:2,Newcastle:2,Silverman:2,fifteenfold:6,heavies:4,heavier:136,homelands:4,Givaudan:2,Napoleonic:1,Wherever:293,"acid-fast":1,"well-to-do":3,Schemes:4,Lyrics:4,Characteristics:4,twin:3,serves:20,indisputably:6,Henze:2,either:920,served:54,tooke:16,"in-person":1,"Citizen\\/Labor":2,Fisons:2,BRIEFS:57,erase:39,sneaked:32,Telefunken:47,lackeys:4,pasture:70,matching:5,"half-faced":1,confirm:42,allegiances:4,Grusin:2,atheromatous:1,"impurity-doped":1,apocalyptic:1,Sakharov:2,"Neo-Popularism":2,"out-of-kilter":1,pretended:32,VISUALIZING:8,untamed:1,crafting:8,toymakers:4,Zenith:2,mixes:18,Pickett:2,Yvette:2,mixed:45,vincit:64,Mousie:2,provisional:1,"eight-bit":1,Branigan:2,RAND:2,Navajos:28,franchising:21,Meinung:64,"short-run":3,Isotechnologies:28,"U.S.-produced":1,Kokusai:2,"coal-miners":4,shells:4,Sagan:2,"Malaysian-based":1,Schweizer:2,Simpson:11,Arco:2,Arch:59,pretends:20,Artesia:2,Airport:2,dampers:4,storytellers:4,Treaty:2,Evanston:2,maskers:4,"A.B.":11,Kirkendall:2,pitting:8,Societa:2,"Soviet-accredited":1,"plant-vaccine":1,Societe:2,Curteis:2,Society:11,uninhabitable:1,Pollak:2,hated:85,surimi:64,Bragg:2,planets:4,"ever-vigilant":1,film:25,fill:95,tedious:1,wieners:4,amendments:4,Metruh:2,keynote:256,personnel:93,Toyotas:4,repent:42,supplementing:8,Resolves:28,Landesco:2,Riders:111,"computer-generated":1,hemorrhages:4,Townes:2,"forbidding-looking":1,Nordstrom:2,important:1,Brudzinski:2,Marwick:2,Rehabilitation:2,barometers:4,hemorrhaged:17,Newsletter:2,Crusades:28,Crusader:2,"human-resources":152,"a-Average":29,wets:4,Thermal:66,husks:4,incubating:8,Davies:2,Tache:2,mischarged:16,Ziyang:2,Yewaisis:2,Satterfield:2,suns:4,forbidden:14,fixtured:16,sunt:64,postponing:8,slung:32,Azem:2,fixtures:4,sung:17,milliamperes:4,toniest:51,Tartar:66,pinioned:17,prefixes:4,shredding:8,destroyers:4,Tartan:2,overdoing:8,nibblers:4,Burdens:4,Physician:47,returning:8,Molinari:2,Goizueta:2,interglacial:1,"ad-supported":1,Huitotoes:4,Airedale:2,cheerful:1,Weizsacker:2,Goodfriend:2,Prandtl:2,nonwhite:1,intricately:6,Kill:216,Luzon:2,becometh:20,"Dax-Pontonx":2,Zvi:2,airliners:4,CLASHED:16,grabs:18,Denver:2,embodies:20,"white-bearded":1,"Disney\\/MGM":2,appreciating:55,cigars:4,Giants:130,ruminate:39,mobilizing:55,diffusing:8,Websterville:2,ambled:16,public:34,Bleak:2,Hersant:2,NFC:2,NFA:2,scanty:1,NFL:2,dabbled:16,Elector:11,Archer:2,free:921,"I-880":47,Archey:2,Reichstag:2,Canandaigua:2,bakeries:4,Berliner:2,"Bush-Salinas":2,Liquor:11,Yuba:2,Resorts:111,lubricants:4,Naomi:2,franchisers:4,Mannerhouse:2,Britisher:2,cowardly:1,unapproved:1,Grahams:111,deeming:8,Europe:2,LEBANESE:1,Geren:2,annunciated:17,Europa:11,culinary:1,wiped:32,paraphrases:18,Zemin:2,"minus\\":1,Tobias:2,abroade:6,Forsythe:2,"non-economical":1,Apprentice:2,Adagio:2,awards:18,Brasil:1,FLARE:33,"corporate-raider":1,"strife-free":1,lemons:4,Vif:2,unnumbered:1,Abstracts:2,"phase-out":22,Ribas:2,overhand:3,Receivables:111,Trager:2,Skrunda:2,"management-pilot":3,mediums:4,Hessian:1,muzzles:18,"seventeen-year-old":1,Kume:2,"neo-Nazis":28,Compromise:11,"airline-landing":1,Djangology:2,"Victor-brand":1,Teens:4,Hearst:2,reliving:21,Raymond:2,awkward:1,Dragnet:2,Meaning:47,thout:16,profiting:8,"acts...":102,"options-trading":1,Attu:2,intones:20,"C.K.":2,Nebraska:11,BMWs:57,Atta:235,"Tasti-Freeze":2,intoned:32,Finkelsteins:28,Lipps:2,narcissistically:6,Stanwick:2,rooting:55,crippling:13,blunder:25,deserted:45,Odean:2,redirecting:8,Menomonee:2,Altron:2,graunt:39,"Heel-Beryl":2,"picture-tube":1,Renewed:17,Cashiering:8,lashings:4,controllable:1,WORKING:8,calluses:4,Philosophy:47,"thirty-year":1,heartstopping:1,arias:4,wharves:4,Installation:47,Mortals:4,Ondaatje:2,"two-evening":1,limped:32,obeyed:32,Youngblood:2,formulating:8,"Allied-Lyons":2,"life-cycle":1,deteriorates:20,Saving:229,excruciating:1,"over-populated":1,Holbrook:2,Lack:47,ashen:1,Benigno:2,rigueur:64,ashes:4,Boveri:2,deteriorated:81,"writing-like":1,Lacy:2,Abel:2,forthright:1,harm:44,hark:33,Built:231,ornately:6,hard:97,Tredegar:2,"nine-cent":1,Meyle:2,Presse:2,Build:39,fist:163,"belt-driven":1,Panisse:2,bascially:6,harp:25,mustered:32,Collision:2,fermentations:4,Coesfeld:2,childish:1,discouraging:30,firstround:1,Ridgefield:2,"non-working":1,"pension-tax":22,trusteth:174,overindulged:16,"electronic-communications":4,unidentifiable:1,"computer\\":1,crouched:32,Estella:2,"foreign-currency":22,crouches:20,Architecture:2,Reception:47,Ruined:17,Zodiacal:1,Lescaut:2,reinforces:20,computers:4,"ended...":102,misunderstanders:4,UCSF:2,Bandon:2,reinforced:45,"said:``":133,Cyril:2,"long-yardage":1,plow:24,"service-connected":1,inhibits:20,neglects:20,Goes:109,Dangers:4,disown:39,"management-union":3,"air-to-surface":1,purposive:1,Precision:11,least:867,Parrott:2,Belgium:11,Rumpelstiltskin:2,lease:24,Boards:111,Meyerson:2,leaderless:1,doctors:4,believe:149,Haiti:2,"four-room":1,supposes:20,Willowbridge:2,preconscious:1,Dispersals:4,referred:54,ungodly:1,Wilhelm:2,supposed:81,sedate:1,Reunion:2,Tisch:2,"low-price":1,"semi-obscure":1,ordere:17,intravenously:6,creases:4,denims:4,Empirically:6,categorized:17,creased:17,"self-sacrificing":1,orders:18,rollbacks:4,Kiz:2,Diseases:28,flared:112,Kis:2,Kip:2,Clearer:12,"fiscal-third":1,honors:922,flares:18,costs:18,Goulding:2,Kim:2,deepening:8,Alpha:2,"big-chested":1,Kid:11,"small-arms":176,fundamantal:1,"state-of-the-art":1,Common:40,Ainsworth:2,Oceanside:2,corrupts:20,whetted:17,"money-supply":3,"Muncie-Peru":2,Blandings:41,Lola:2,saxophonists:4,Catastrophe:47,Patent:11,"athlete-payoff":1,"blue-ribbon":1,minimizing:8,"poor-quality":1,"co-operative":3,contorted:1,perfuses:20,Chye:2,networks:18,distributed:45,roughshod:1,override:63,distributes:20,Crucible:2,Snoozing:8,Brethen:2,revolts:4,Dublin:2,Thanksgiving:2,Anania:2,infuse:39,Rescues:4,Aniskovich:2,Responsibility:2,Monaco:2,"Switzerland-based":1,"direct-selling":1,urinary:1,"two-floor":1,remove:42,Rifkind:2,unfettered:7,"Pennzoil\\/Texaco":2,"still-undeveloped":1,cynical:1,Knoxville:2,denunciations:4,Scorpios:28,Majesties:28,Toepfer:2,forthcoming:13,materially:6,"drought-induced":1,MFA:2,Judith:2,MFS:2,Printed:66,"de-iodinate":39,Krist:106,burned:81,Postal:40,transfered:17,RANDELL:2,Kriss:2,windswept:1,seeded:17,queers:4,alarmist:1,dividends:4,complement:24,sheepe:4,"weaker-than-expected":1,"bank-owned":1,prams:4,folding:5,reverse:875,clamps:4,tapered:7,bonzes:4,"transportation-services":1,"Grass-roots":1,Bloedel:2,"Taras-Tchaikovsky":2,"J.J.G.M.":2,"lesser-developed":200,shrines:4,"seven-week":1,simple:3,"Two-Head":2,Margie:2,Killow:2,simply:218,busters:4,consuming:55,Heiwa:2,longsuffering:1,Hoff:2,Revere:2,taxfree:1,"toe-tips":4,HealthVest:192,slips:18,blurting:8,presale:3,Offensive:11,"Double-digit":1,Craven:2,Isquith:2,Bayer:11,"smoking-related":1,Sitwell:2,unnecessarily:6,misunderstands:20,Ferris:2,Lowery:2,rat:25,joyful:1,Niagara:2,exachanges:4,"Caspita-brand":1,Divinity:2,pegging:8,heroically:6,vulcanized:17,Cheney:2,stubbornly:6,ARCO:2,unaffected:1,OWI:2,"more-realistic":1,dishonor:25,Servanda:64,relatively:6,"non-trade":1,passwords:4,neuroses:4,"Asia-Pacific":40,Grinned:16,timid:1,predecessors:4,chieftains:4,nolo:64,Ratican:2,noli:4,peppered:112,"energy-efficient":1,vilifying:8,"nineteenth-century":1,Yokohama:2,Harpoon:2,covets:20,amps:4,signalled:16,DiVall:2,musicologists:4,"junk-bond":824,Mitchells:2,"population...":102,Burgundy:2,distracting:30,Takakura:2,openly:6,"re-used":17,stirrin:8,letting:55,"law-enforcement":22,dynastic:1,Theory:2,newsies:4,Staar:2,deliberately:6,Snake:11,homier:12,squawk:39,Sommers:2,microcomputers:4,"Atalanta\\/Sosnoff":2,Married:615,foreigners:4,salutes:4,precompetitive:1,"trail-blazing":1,tonalities:4,degenerated:32,heftier:12,"M.D.C.":11,cogs:4,Cohen:2,disks:4,demographiques:64,Whatever:447,Thankful:1,Einsteinian:1,depositary:448,neatest:51,composites:4,jibes:4,humorous:1,Tevye:2,martial:1,ornaments:18,Whoa:106,Gotshal:2,Cinegrill:2,Psychologically:6,Nehf:2,Macheski:2,Fault:2,nondestructive:1,aflame:1,dismally:6,patient:22,integrals:4,taxing:5,"P-5-39":2,Lena:2,subconscious:3,Praisegod:40,crap:235,Polsky:2,constrains:20,goods:4,Bart:2,juste:64,goody:106,Linking:8,Bare:1,Beauclerk:2,Bari:2,Leni:2,Barn:2,Merksamer:2,Cantwell:2,Meltnomah:2,commanding:5,nonperformers:4,Lattimer:2,pathologic:1,Hermitage:2,pharmaceuticals:4,Departures:2,HOPES:18,glow:25,"Sens.":130,groomsmen:4,"V-22":2,frenzied:1,pounded:32,Watergate:2,"anti-dumping":1,impure:1,Collegiate:2,boys:4,cram:1,Terrell:2,cathedra:64,saddlebags:4,Mattathias:2,"billion-peso":1,Kurabo:2,Toyobo:2,"cookie-and-cracker":1,Theaters:4,Books:56,jumbo:3,precipitated:32,Colgate:2,widowers:4,geese:4,prevented:54,mealynosed:1,singly:6,Terminal:40,single:647,Sprinkled:17,necks:4,"well-house":1,triglycerides:4,chance:139,gametes:4,Mar:2,Manor:2,Manos:2,Berton:2,Max:11,cohesive:1,"Oh-Hyun":2,excuses:18,mobcaps:4,Mae:2,Mad:40,Mag:2,Mai:2,assassinate:39,Mal:2,Achievement:2,Man:923,brushing:55,Rube:2,"ultra-modern":1,importunities:4,Casa:2,Carried:17,"Asia\\":1,"advanced-materials":1,Gaieties:28,Cash:11,Cask:2,prepared:45,miscarried:32,Cast:856,Carrier:11,Cass:2,prepares:20,stoppages:4,freeways:4,rallied:32,"cross-party":1,Kotman:2,Elkin:2,Tunisia:2,"horizontal-restraints":4,speculations:4,Its:35,dispassionate:1,Leica:2,bergs:4,Asian:66,rallies:18,initiating:8,"competition-enhancers":4,Sterlings:28,commoner:12,"Y.M.C.A.":2,fecund:1,"ozone-forming":1,Delegations:4,unfaithful:1,Yvon:2,Drifting:8,Generales:2,monolithically:6,Camaros:4,helps:924,Aborted:1,pianistic:1,"anti-shoplifting":1,Seduction:47,Region:11,agitating:8,huddled:112,PrimeTime:2,micelles:4,huddles:4,Mussolinis:28,"slave-owners":4,Folcroft:2,aromatick:1,"second-by-second":1,False:40,tubs:4,prototypes:4,married:45,prototyped:17,"investor-owned":1,Griffith:2,"sun-drenched":1,Vehicle:11,Dauphin:2,Alemagna:2,"under-developed":1,restates:20,"clean-cut":1,Sanga:2,Ory:2,"anti-virus":1,Orr:2,Admarketing:2,"J.V.":2,crossed:32,Ord:2,Ore:2,exercise:24,Marty:2,misdeeds:4,exchange:44,leveraging:55,pomaded:17,nimbly:6,jointly:6,outlying:1,nimble:1,objects:18,"HOUSTON-CALGARY":2,implicit:1,Boyer:2,design:44,Chinese:925,"many-faced":1,Gantos:2,"next-door":1,"non-college":1,Ishtar:2,weekday:22,existent:3,courting:55,"O.G.":2,formulated:54,Passive:2,reassignments:4,"findings.":4,formulates:20,privately:6,resales:4,sewers:4,festivals:4,Ferdinando:2,"Y.S.":2,menarches:4,Bynoe:2,bested:54,nauseated:14,"than...":102,"Forty-seven":1,"wind-driven":1,Rabinowitz:2,bestes:4,"Iran\\":2,"Seven-Eleven":2,upcoming:1,endurable:1,dupes:20,capitalizing:8,apprenticed:17,enviously:6,unforgiving:1,duped:17,Lambda:2,atone:39,Kazuo:2,"foreign-exchange-rate":3,misfired:17,Nadeau:2,Comtes:2,Icterus:64,"soon-to-be":1,reserved:45,Mobilization:2,Fenwick:2,Regent:2,exclaims:20,"prize-fight":1,MITI:2,"built-detergent":1,Phonemes:4,magnificently:6,isopleths:4,curving:8,Pfohl:2,timetables:4,grimaces:4,sketchiest:51,"First-section":1,Devesa:2,revs:20,PacifiCare:2,Tutu:2,Chiefly:6,masterpieces:4,"pre-1917":1,"twelve-year":1,Knightes:2,bluff:22,trifling:1,ambiguous:1,counterbalanced:17,Dili:2,confiscatory:1,bind:44,"bond-financed":1,Highlander:2,Oshinsky:2,"test-drive":42,poaches:20,"re-open":39,"oil-finding":1,bins:4,Capable:1,institutional:1,Millis:2,widowed:14,Cecelia:2,"death-penalty":22,agricultural:1,Millie:2,delineating:8,"Swiss-based":1,McLoughlin:2,Benefactor:2,Negro:40,Bolovens:2,Pressure:47,machinations:4,Bardell:2,outbid:140,impervious:1,Huggies:28,Bulge:2,frontiers:4,Zwelakhe:2,"Vancouver-based":1,"fast-selling":1,Seagull:2,Daybreak:2,thrill:25,Wuer:2,Aureomycin:47,blazing:30,SUNDSTRAND:2,Viper:2,ROSS:2,Fonz:11,Tewksbury:2,Chaffey:2,unoriginal:1,Scotia:2,Molvar:2,relinquishing:55,Chestman:2,"milk-chocolate":1,Hallwood:2,Hirzy:2,deras:64,technically:6,Vallfart:2,Douce:2,roughened:17,Judicial:40,Ashcroft:2,"ill-prepared":1,"pony-tailed":1,Senator:2,"semi-independent":1,afterward:6,Reefs:4,Morrell:2,Nikkei:2,orations:4,Outokumpu:2,Pleasantville:2,Welton:2,Coincident:1,Hermione:2,scalding:8,"fast-spreading":1,sprawled:45,tributes:4,strategic:1,microscopes:4,Winfield:2,"Solar-powered":1,sockets:4,multilayered:1,ancient:3,Excalibur:2,spurting:8,Stoppard:2,"anti-Christian":1,pedigreed:17,unspecified:1,Coast:129,Wackenhut:2,Joey:11,Vargas:2,plantings:4,"free-thinkers":4,Javier:2,MIServer:2,Rapunzel:2,Harmon:2,Legg:2,MacGyver:2,"sub-underwriting":8,"bullet-riddled":1,flashed:32,McAuliffe:2,xenophobic:1,flashes:18,abolished:54,imaginative:1,neutralize:39,underpricing:8,Mintel:2,Nonperformers:4,Machine:11,Goodman:2,Minter:2,habitable:1,Gladden:2,Sphinx:2,apparently:6,Oil:11,newfangled:1,mio:64,skillful:1,mid:1,"royalty-free":1,mix:24,Stidger:2,shipyards:4,Knapp:2,autocratic:1,Siberia:2,"Hanoi-backed":1,Robbie:2,"computer-dependent":1,disappointments:4,Pharmacal:2,Printing:2,propagate:39,Musically:6,Moertel:2,sally:39,Kiyotaka:2,Trustco:2,Dukakis:2,request:44,crediting:21,graphs:4,Comrades:28,artificially:6,"near-market":1,skinny:1,INTEL:2,Masssachusetts:2,Invitation:2,Cordell:2,homeowner:215,"new-product":22,sidetrack:39,interpeople:1,paternal:1,gasping:8,Worth:40,staff:24,Hengeler:2,grabbed:32,Pipgras:2,controls:18,coloreds:4,Rushall:2,York:2,fumbled:16,regional:1,"fire-engine":1,Freshbake:2,inferior:1,"re-assumed":17,Homes:130,unsustainable:1,Marubeni:2,"weaker-performing":1,byproducts:4,swiftest:51,Malpass:2,Sterbas:28,kilts:4,Laurents:2,"command-and-control":1,Peebles:2,Geocryology:2,filleted:17,Christer:2,monochromatic:1,enhances:20,constructing:8,condominiums:4,embezzle:39,Petro:2,enhanced:45,psychical:1,"inward-looking":1,awaits:20,"airline-interior":1,uncollectable:1,"takeover-defense":1,"school-age":1,Nakoma:2,rapers:4,Olaf:2,Yates:2,Daffynition:47,consentual:1,Lamarche:2,Olav:2,Charlemagne:2,aeromedical:1,Islands:111,Olay:2,"health-conscious":1,exclaim:39,"joint-implants":4,Synchronized:17,TechDesign:2,taking:55,Woodwell:2,Conroy:2,devour:42,afraid:1,inflammatory:1,Marinvest:2,basins:4,backers:4,Maersk:2,keine:64,basing:8,Rifkin:2,technocratic:1,Dunde:2,"three-inch-wide":1,Hoelterhoff:2,restless:1,"non-Manpower":1,highball:25,elects:20,Bulgarians:28,spellbound:17,Periodically:6,divvied:17,Blackjack:2,adapting:55,"self-locking":1,stationed:17,Magee:2,Maged:2,Betrayed:2,finished:452,sausages:4,Mager:2,an:926,"Low-paying":1,multi:4,LBJ:2,"well-administered":1,wellknown:3,Jurisdiction:2,smokeless:1,deloused:17,"energy-producing":1,Melton:2,hampering:8,kinfolk:4,aw:106,manually:6,almost:218,dissent:24,Imperial:129,pluck:63,Yamanouchi:2,Bebop:2,incautiously:6,"drug-related":1,Stilts:2,SOS:2,Piggybacking:8,Heatwole:2,Glycerinated:1,Flatley:2,infer:39,guises:4,Transitional:1,reporting:55,Sacco:2,Malloy:2,Reflections:2,takers:4,sunburn:25,Reichhart:2,dickered:16,numbered:54,bluesy:1,Beregevoy:2,Cowper:2,bluest:51,McGlynn:2,Hornbeck:2,Washburn:2,muscle:25,soviet:1,Montaigne:2,ratify:42,rebuffing:8,"consumer-price":3,breezier:12,restively:6,miasmal:1,givebacks:4,dissuaded:32,Solaia:2,Gill:2,"more-personal":1,ads:4,desperadoes:4,Danilo:2,mathematically:6,add:42,spirals:4,"short-skirted":1,propositions:4,Smoldering:8,forays:18,match:95,unicorns:4,dimers:4,"knee-length":1,molding:21,thoughtlessly:6,Offices:92,Officer:2,Benazir:2,"more-than-average":6,Throws:20,"four-part":1,Scarlet:2,honeycombed:1,Gotlieb:2,accessible:1,Oceanic:2,Oceania:2,propel:42,horselike:1,proper:1,Givens:2,Coulomb:2,Lafontant:2,Gerdes:2,masked:45,bustling:13,ripped:32,"six-county":1,unprocurable:1,parentis:64,pepper:25,Yarrow:2,lessens:20,Futures:56,stellar:1,unevenly:6,"Investment-Grade":2,Fakty:2,"ground-launched":1,"book-entry":1,"Gunthrop-Warren":2,about:927,brooded:16,Bouquet:2,nationals:4,Domtar:2,VICTORIES:4,fleshy:1,unreleased:1,Salinger:2,Comedie:2,unwind:39,Zhong:2,Nomia:2,functional:3,unquestioningly:6,Paternelle:2,boringly:6,Vichy:2,gleaned:17,annee:64,Sawhill:2,dizzying:13,Yoon:2,stairwells:4,stainless:1,"Single-color":1,contracts:170,"damn-the-torpedoes":1,Vecchio:2,Adirondack:2,Ferron:2,"anti-androgens":4,rococo:3,dieters:4,chatting:8,Arabians:28,Legislating:8,tilled:1,steadied:32,Unpaid:1,besmirching:8,"vaguely-imagined":1,multicolored:1,stratagems:4,Leasing:258,"non-management":3,Prisca:2,Kirin:2,Mulrooney:2,Newbiggin:2,Harmony:11,skating:8,Caspita:2,RESIDENTIAL:2,topless:1,Bauhaus:2,"Vegas-based":1,Witold:2,Mintz:2,DiFilippo:2,Mints:4,"Conn.":2,Chai:2,Violent:1,Cronin:2,Xanadu:2,Sainsbury:2,wallow:39,Collingwood:2,gloriously:6,Diversify:39,enterprises:4,goin:928,"ear-piercing":1,Wander:39,entreat:39,"al-Assad":2,lorded:16,Cattlemen:28,parole:22,Techniques:28,Leaf:47,Lead:104,Vaudois:2,traumas:4,Lean:59,suspenseful:1,Lear:40,facilities:4,Leap:2,heelsthe:246,Burgess:2,Ceartaine:1,Hoover:2,"cracker-box":1,violate:392,Beltway:11,crises:4,Knock:39,under:105,rightist:1,Mite:2,MAILINGS:4,Popeye:2,Mita:2,legislators:4,tampons:4,Krupp:2,Ollari:2,Chilly:1,jack:63,Krupa:2,freethinkers:4,monkeys:4,Stones:74,Stoner:2,Reupke:2,"gas-pipeline":1,"Gotaas-Larsen":2,"W.G.":2,Europeans:41,Chiharu:2,faintest:51,Creamery:2,consistent:1,frosted:16,landmark:22,"single-payment":1,Drawn:17,Delano:2,"union-company":1,Gossage:2,"pro-Western":66,solemn:1,"web-printing":1,griped:16,"question...":102,parched:45,"most-recommended":1,suable:1,undressing:55,Scarsdale:2,Ernest:2,aural:1,ventures:18,"federal-right":1,Elisabeth:2,Andre:2,Malmud:2,"well-bred":1,Katcher:2,Lefevre:2,ventured:32,Pensupreme:2,Ciceronian:1,Booz:2,Nemesis:2,stray:255,straw:22,"non-supervisory":1,Boot:11,Liston:2,strap:83,unofficially:6,"Wake-Up":2,Book:11,Boon:2,mares:4,"power-transmission":1,swings:18,cawing:8,swingy:1,Physiologist:2,June:2,Jung:2,Ment:2,Diners:2,"love-hate":1,Cowessett:2,Plutarch:2,billowing:8,Crowley:2,ardently:6,Newsote:2,Fonta:2,"four-year-old":1,Kirsch:2,Financial:40,brandishing:8,tremendously:6,boldest:51,"Euro-consumers":28,install:42,Warring:2,"finger-held":1,addictive:1,"earth-touching":1,whizzes:4,chainlike:1,Whippet:2,"U.S.-U.S.S.R.":2,camellias:4,Poet:11,mortages:4,"slower-than-expected":1,undisciplined:1,vagrant:1,"help-wanted":1,Felicity:2,Hartford:2,low:929,Gretchen:2,mimetically:6,eyeballs:4,badly:6,Diamandis:2,Vinogradoff:2,unwrinkled:1,jumping:55,Lithuanians:28,"Etc.":2,puzzles:18,intermeshed:17,optioned:17,trillions:4,Lloyd:11,Sibyls:28,roused:16,Wolf:11,"D.T.":2,shadier:12,interpreting:8,biomedical:1,MACPOST:2,synonyms:4,"Flow-Mole":2,replicating:8,video:22,fittings:4,Devlin:2,Tinker:2,condition:24,Syndicate:11,"wholesale-price":1,"sport-utility":1,Schueler:2,"eye-beamings":4,wobbling:8,Maintain:33,disreputable:1,bitterest:51,shadows:4,superintendents:4,"Giardini\\/Russell":2,erotically:6,shadowy:1,"most-jingoistic":1,Dizzy:2,Tropez:2,"York-Pennsylvania":2,Khasi:2,Mastro:2,waffle:25,Damascus:2,"global-funds":1,practising:8,"weather-related":1,"Single-cell":1,depress:42,islanders:4,collaborates:20,collaborated:32,choreographic:1,reappraisals:4,heavenly:1,"Robinson-Humphrey":2,dusky:1,calmest:51,bitingly:6,Bardall:2,"pre-fund":39,Metal:11,"east-to-west":6,ever:930,polarize:39,Wheatfield:2,trances:4,Studies:92,BTU:2,pulpits:4,"companies...":102,BTR:2,Broughten:2,Rittenhouse:2,pence:19,Creditbanken:2,hopeless:1,BTL:2,shootin:8,highways:152,Tensions:28,"Two-Way":2,"loose-loaded":1,accidentally:6,restrict:42,awoke:16,Ammunition:2,typists:4,Garrison:2,Heintze:2,lecturing:55,"porno-inspired":1,tos:4,top:931,Beman:2,tow:163,Devario:2,too:6,flippant:1,inconvenient:1,leach:39,toe:25,curtains:4,murder:25,indiscreet:1,outdistancing:8,"not-so-trivial":1,Joneses:28,pondering:8,Forerunner:2,nudging:8,"various-sized":1,garlanded:16,cogently:6,pyramidal:1,separatist:1,bulletins:18,roles:4,"wide-body":1,Monahan:2,precocious:1,"Solis-Cohen":2,prone:97,"rear-guard":1,Zinser:2,Sausage:11,bards:4,Shires:2,"far-left":3,overstrained:17,careening:8,Chases:28,Syb:2,scriptures:4,homesteaders:4,snow:25,Haementeria:64,DePauw:2,inured:17,Bermudez:2,mammary:1,though:932,outscoring:8,excelling:8,preset:1,plenty:168,Beallsville:2,disarmed:7,Hargrove:2,"late-night":1,interject:33,prevails:20,devastating:13,uncomplainingly:6,Garfield:2,Laval:2,rupees:4,"attorney-disciplinary":1,prevaile:39,section:933,"capital-markets":1,"v.d":2,uncompetitive:1,radii:4,radio:25,Hartman:2,Saltonstall:2,sunsets:4,symphonic:1,Alphametrics:2,Gilmartin:2,Records:41,"ozone-damaging":1,printouts:4,lodge:25,announce:42,"cast-proof":1,Crosser:2,Aaa:1,Pepsi:113,Turns:20,watch:551,Aah:106,frying:55,Kirnan:2,reinstall:39,Saturdays:41,overbearing:1,unlatch:39,Hastening:8,erupt:42,cozier:12,Glen:2,Revco:11,"above-mentioned":1,"car-crash":1,Heenan:2,Abide:2,McCarver:2,"wood-grained":1,recoverable:1,cartoonish:1,Joiners:28,unalienable:1,bellowing:8,approach:44,"pee-wee":1,Batibot:2,Wanders:2,southeast:277,"Manila-based":1,"orange-and-blue":1,vomiting:55,predates:20,irregular:3,Chances:123,"credit-card":22,Thomson:11,Computer:11,games:4,evenutally:6,Sankyo:2,oleophilic:1,Barrick:2,Rhinoceros:2,"semi-liquefied":1,"round-trip":3,casters:4,Udayan:2,"re-examined":16,Theon:2,transparencies:4,Sandman:2,Hazard:2,quickly:6,universals:4,expected:934,Relating:8,"over-land":1,shrewdest:51,Kartasasmita:2,Kasai:2,Cru:2,drugs:4,nomenklatura:64,Anaheim:2,Scituate:2,Trans:2,Conklin:2,deeps:4,extruded:14,"Anti-Christ":2,"home-video":3,"Saturday-night":1,stopping:55,Souper:2,"air-to-ground":1,subnormal:1,Giulietta:2,"pre-transfer":1,"five-a-week":1,expenses:4,Principle:47,exterior:3,Golan:2,leaches:4,"anti-oil":1,Dracula:2,"labor-backed":1,repudiating:8,bifocals:4,"grocery-products":4,Inventor:2,Schweitzers:28,Lebanese:396,Skanska:2,Thunderbird:2,Steffes:2,"non-Hungarians":28,Bristol:2,"town-watching":1,McConnell:2,Upholds:20,mother:25,alarms:18,seasonal:1,"Fifty-three":1,Consolo:2,"steel-flanged":1,Aerojet:2,thumbs:18,rhythmically:6,periphrastic:1,elk:91,Koussevitzky:2,collars:4,niggers:4,educrats:4,Microlog:2,issuing:8,strolling:8,pivotal:1,Uhlmann:2,xylophones:4,bewhiskered:1,mounds:4,Reduces:20,addicts:4,"full-point":1,cultural:1,judge:44,Brownstein:2,Rembrandt:11,Reduced:71,Mazza:2,"personal-income-tax":1,dishonest:1,Hedda:2,arbitrary:1,"trail-setters":4,"non-firm":1,Robotics:2,Enhancements:2,frustrations:4,reinsured:17,successfully:6,"Kelly\\":2,PostScript:2,encumbrances:4,Francoise:2,roamed:16,Meurer:2,reinsurer:12,Cube:2,proceeding:21,Cuba:2,"bargain-buying":1,Davy:2,Lasco:2,Dave:40,Cubs:41,Chris:2,buildin:8,sewing:21,"T.V.":2,enunciate:39,pens:4,discount:205,areaways:4,"NBC-Sears":2,permitted:81,mechanized:7,Knitwear:2,Madison:2,Niccolo:2,Grassy:2,Episcopalians:28,trustworthy:1,"non-itemized":1,Grasso:2,Still:510,rotations:4,Faberge:2,civic:1,Zajick:2,obtaining:8,naturalized:14,inclusive:1,Venit:2,Hodel:2,Chains:4,classiest:51,Trastevere:11,git:42,Palicka:2,"counter-revolutionary":3,transform:42,Epinal:2,virgin:3,Kudlow:2,gim:39,archives:4,ADV:2,ADT:2,steers:72,Norwood:2,Underclass:176,attempted:85,"AD\\":2,refashioning:8,illuminating:13,ADB:2,ADC:2,ADN:2,Emotional:1,attesting:8,nesters:4,Ouellette:2,ruined:81,"most-polluted":51,quicksilver:3,simplifying:8,decorate:149,submitting:55,Horta:2,Surgery:2,"shopping-center":22,Viator:2,Cambridgeport:2,Ashikaga:2,"sq.":1,acclaimed:45,shines:20,petition:25,Acuvue:2,Gladdy:2,faithful:3,Lorinda:2,whereas:127,nemeses:4,loosening:55,HG:2,Cadnetix:2,Barbra:2,"housing-related":1,formalize:39,Export:11,ACCEPTANCES:57,subsidize:42,writedowns:4,"Francisco-Oakland":2,Life:11,Privy:2,Liaison:2,Chariots:4,longrun:1,PROSPECTORS:4,patterned:14,"old-style":1,Adens:2,"BRISTOL-MYERS":2,"vehicle-loan":1,Nights:74,melodically:6,Vyas:2,sympathetic:1,"sound-truck":1,Pegler:2,"price-jarring":1,discern:42,HYATT:2,glittered:32,Lift:39,promoting:8,Leisurely:6,weakening:5,outmoded:7,Semegran:2,"large-ticket":1,Wanda:2,Cif:2,Cie:11,Maquet:2,shibboleths:4,Cir:2,nesting:5,"N.Y.-based":1,Nightwatch:2,Spotted:17,beseiged:17,couches:4,"year-to-year":1,Diller:2,couched:54,"nisf-i-jahan":2,Allowed:231,Hereford:2,Grabe:2,"data-capture":1,invades:20,"consent-decree":1,Brigham:2,unmaterialized:17,Guth:2,invaded:32,bacteria:4,"government-appointed":1,slumbered:16,endangering:8,"life...":102,Hurrican:2,Birney:2,looted:54,Beardens:28,Hurts:20,Nanofilm:2,"High-speed":1,Duel:2,Titian:2,pathless:1,channeled:54,Borten:2,Bortel:2,Theories:65,Tawana:2,"awe-inspiring":1,"Richter-Haaser":2,noticeable:1,Armas:2,overrides:20,scooping:8,guilty:97,stomachs:4,pediatric:1,noticeably:6,vicissitudes:4,paralyzes:20,Said:935,somersaults:4,Adios:87,soybeans:4,erudite:1,Goodchild:2,Baines:2,paralyzed:14,ballets:4,"red-visored":1,"Forty-nine":1,Greenery:2,sporty:1,noncombat:3,Jemima:2,baser:12,sports:18,tinplated:17,Attwood:2,"intra-uterine":1,Pestle:2,MEDICINE:2,"law-governed":1,reorganizing:8,bombastic:1,neglected:81,Eve:2,flapping:30,"co-educational":1,misdemeanants:4,Spaull:2,Procedure:47,haole:147,states:18,Family:11,Burst:16,unruly:1,moonlit:1,Danbury:2,NavforJapan:2,emblematic:1,"high-crime":1,"ex-prize":1,unarmed:1,Spitalnick:2,"prize-winning":1,provoke:42,Simes:2,lipoproteins:4,disliked:85,improvisers:4,sweetish:1,Persian:40,Underwood:2,Frowning:8,Flocks:4,coiled:16,subsidiaries:4,Chanel:2,paide:17,invitees:4,paramount:1,clattered:16,impartial:1,Average:129,distastefully:6,Fail:2,Lawson:2,DIGITAL:2,curing:55,Luette:2,dynamical:1,purportedly:6,homebuilders:4,Nursery:2,"computer-services":4,Trinitarians:2,Parties:4,Morton:2,"once-profitable":1,"company-paid":1,computerize:39,Microchannel:2,mecum:64,Kursk:2,Smoak:2,Views:4,procedures:18,Kangaroo:47,gabbling:8,Huston:2,Oasis:2,Laptops:4,Zarnowitz:2,offers:132,"rim-fire":3,happened:32,Kuehler:2,"Next-Most-Remarkable":1,Stinger:2,boozing:8,Glasser:2,"non-code":1,superlatives:4,execute:42,arteriolar:1,"plain-out":6,clutch:24,aquam:64,picnics:4,accomplishments:4,ters:4,Bataan:2,"gold-mining-company":1,individually:6,unburdened:1,"asbestos-related":1,Fredericksburg:2,MADD:2,"seven-yen":1,"Prop.":2,depersonalized:17,cancels:20,equines:4,"tilt-rotor":1,valeur:64,kidnaped:17,processed:45,Yeutter:2,mapping:21,Mariel:2,bumblebees:4,Southlake:2,"non-wage":1,limps:20,uniformed:1,Houdaille:2,"best-known":186,broached:17,HealthCare:2,Hospice:2,"win-win":22,Bowden:2,Schapiro:2,knoweth:33,"engineering-services":4,parkish:1,Bowder:2,Ilminster:2,Privileged:40,petered:17,engineer:25,tingling:55,clanking:8,given:523,necessarily:6,district:22,Bernoulli:2,Fiorello:2,cooling:21,legally:6,independant:1,gives:20,acquisitions:4,"we-Japanese":1,Circulation:47,CLK:2,"Sr.":2,Reavis:2,Siddo:2,"battery-driven":1,girded:16,CITIC:2,portend:149,Concord:2,Coleridge:2,Dooleys:28,sera:4,Nicaragua:2,Litigation:11,searchers:4,courteously:6,Radha:2,froth:25,Prussia:2,straddles:72,syndications:4,noteholders:4,straddled:32,sells:20,Brennan:2,Venezuela:2,"hard-drinking":1,nonflammable:1,Oceans:4,"Government-blessed":1,"Helsinki-based":1,Operating:268,resifted:17,Liggett:2,"announced.":17,Littman:2,probed:16,clearer:136,Supervision:2,"rock-scored":1,Wyo:2,Wyn:2,Magnusson:2,cleared:54,probes:4,Shakshuki:2,Littau:2,"prepaid-tuition":1,Gontran:2,"cross-investment":3,adopt:42,hungry:1,"one-newspaper":1,Pattisson:2,bawling:8,EXTEND:39,"motor-drive":1,misted:16,workshops:4,Putzi:2,Comments:92,"now-deceased":1,trespass:78,dealerships:4,"insider-trading":22,"Seven-Up":2,Gorboduc:2,Bagnoli:2,rebalanced:17,Pegasus:2,Stenholm:2,partake:42,harelips:4,Fujita:2,slimly:6,unsaddling:8,quirking:8,"debt...":102,hedge:551,"needle-sharp":1,Arkla:11,sabotage:25,obliterate:39,"doctor-originated":1,BAKKER:2,"full-sisters":4,discussing:8,Ornette:2,microphones:4,imposing:30,closures:4,"baseball-loving":1,connections:4,disarranged:17,farmers:4,Ouedraogo:2,subsequent:1,Unoccupied:1,circulating:8,outside:464,Virtue:2,hiss:4,topgrade:1,synthetics:4,Natural:129,Naturam:64,Thaler:2,Bradstreet:2,"anti-discriminatory":1,Pautsch:2,"Bank-America":2,densely:6,"three-button":1,"rumor-driven":1,Willman:2,"co-edits":20,Buckeridge:2,Kokoschka:2,priests:4,blinked:16,Kwik:2,pronto:6,Individual:10,Abernathy:2,wittily:6,CLEARS:20,Barbecued:1,Smokers:4,Guess:936,afterwards:6,Nehru:11,bricks:4,Jahr:64,novices:4,"teen-age":1,atrociously:6,jammed:45,Jahn:2,glutaric:1,"currency-options":4,Amschel:2,Rossoff:2,Worldwatch:2,psychics:4,Padres:111,Riordan:2,Killington:2,Hellenic:40,"traffic-systems":4,Phil:2,Together:150,"L.M.":2,Elysees:2,Byers:2,travelling:8,Ruderman:2,myself:53,macromolecules:4,subconferences:4,"neon-lit":1,"DMB&B\\/New":2,Balances:2,Ciudad:2,Potential:1,slippery:1,Balanced:17,"plug-in":1,hunts:72,Kroening:2,slippers:4,Kurile:2,"pre-try":39,recounted:32,skipped:32,Linguistic:1,"straw-and-mud":1,Factions:4,unhelpfully:6,"shelf-stable":1,quarreling:8,Amarillo:2,"drug...":102,hevin:8,"free-blown":1,Tannenbaum:2,insurers:4,Aggressively:6,Goods:130,"Schubert-Beethoven-Mozart":1,Halsted:2,Goody:106,nest:78,"green-lipped":1,Rockefeller:2,excavated:17,Goode:2,Detrex:2,Zainuddin:2,"collective-bargaining":3,vowed:32,antibodies:4,renters:4,magical:1,sculptors:4,reward:44,flinging:8,burglarproof:1,Richland:2,ya:300,Oslo:11,actions:4,cockles:4,Haight:2,incurring:8,"action\\":1,alphabetical:1,widest:51,seems:20,dully:6,bloops:4,hotdogs:4,Navcom:2,dulls:20,impound:39,buyouts:4,watercolorists:4,"Grace-Sierra":2,painteresque:1,accepted:212,wainscoted:1,cranelike:1,Harassed:1,OCCIDENTAL:2,Sylvania:2,Congresses:4,subcommittees:4,cone:25,"call-backs":4,Argentines:65,Remaking:8,joking:8,steamier:12,"straight-backed":1,Lou:2,overheated:17,"pre-cooled":1,Jolly:66,"restricted-entry":1,Agreeable:40,Ours:53,oftener:68,portables:4,Luxemburg:2,olive:3,Loy:2,"sharp-leafed":1,Add:39,Nazer:2,Nazem:2,Europeanized:17,Discouraged:17,undreamt:17,bodacious:1,attests:20,Protesting:8,nails:4,optimo:64,Interspersed:17,anatomicals:4,"M.J.":2,Pikeville:2,"E.G.T.":2,KLERK:2,disorganized:7,"Foreign-exchange":3,obeys:20,determinable:1,Prayer:11,Guangdong:2,"computer-maintenance":22,warningly:6,annoyances:4,skippers:4,"gravel-chewing":1,"low-power":1,Identification:2,empathetic:1,buds:4,adjustables:4,Bultmann:2,Feick:2,"light-activated":1,overstaffed:1,dislocated:1,forbade:16,marketeers:4,kittens:4,shamelessly:6,lapidary:3,edified:16,"international\\":1,burrs:4,quadrupeds:4,Namibia:2,Hadera:2,"Sub-Saharan":2,promote:42,sensationalizing:8,Heavy:129,"semi-special":1,Chadwick:2,"self-interested":1,Heave:39,Amundsen:2,bleakly:6,Reacting:8,accusingly:6,aces:18,Haagen:2,Ciavarella:2,protruded:16,Bradbury:2,compel:39,Helping:8,Symons:2,starkly:6,"sun-tan":1,brash:1,briefly:163,winking:8,conspiracies:4,Picture:11,kickers:4,Gator:1,"Andersen-Price":2,brass:22,"post-World":40,thematic:1,Agamemnon:2,Chajet:2,"lynch-mob":1,variegated:1,Magazines:123,apparel:25,Equipped:17,neighbors:4,swirls:4,"high-stakes":1,eschewed:17,earners:4,Sabinas:64,dish:25,"call-ups":4,"nursing-homes\\/retirement-living":1,Alameda:2,Ensemble:2,wakened:17,Ritschl:2,pickier:12,"agro-industry":1,"Chiat\\/Day":11,Rexroth:2,Boily:2,"Ariz.-based":1,Boils:4,Lvov:2,"Vs.":64,activities:4,GIS:2,ministerial:1,"Missouri-Illinois":2,Calculated:17,Wakako:2,Erwin:2,clonic:1,overturning:8,unlined:1,"lower-middle-class":1,"dispute-settlement":3,becase:127,Neglected:2,"S.S.":2,Backstitching:8,Lethal:2,"most-contentious":937,Ngoc:2,BVIslanders:4,"wage-rate":1,Lehner:2,"Third-quarter":3,Cannibal:2,Tolls:18,Moonachie:2,"short-time":1,Curdling:2,extremities:4,cheeses:4,what:938,"snow-covered":1,magnolia:19,ticks:18,overload:24,Hibernia:2,"flag-wavers":4,Conservatives:57,racing:5,"wood-treating":1,"cash-only":1,Rusk:2,Rush:11,sparked:54,"more-mundane":1,"much-watched":1,Baylor:2,borates:4,Russ:2,steamships:4,Pulp:11,Braves:74,identifiable:1,boded:16,pulverizing:8,infringe:42,extremes:4,Mildner:2,pulmonary:1,Medtronics:2,"bridge-loan":1,elongated:14,imaging:22,Delamuraz:2,counterrevolutionaries:4,choring:939,"Noyon-la-Sainte":2,refitting:8,Poulin:2,coatings:4,potboilers:4,proceed:42,Tesoro:2,faint:104,irritate:39,Sipping:8,widens:20,underprivileged:1,knows:20,"fun-filled":1,Quarterly:66,Braidwood:2,Newspapers:41,taming:8,mellow:1,"Cir.":2,glad:1,Inx:2,Messerschmitt:47,irritations:4,"tamper-proof":1,Inn:2,Oneita:2,wrestles:72,Ind:2,"co-host":149,Ing:2,tabernacles:4,Inc:74,"chromium-substituted":1,"Jeancourt-Galignani":2,"three-inch-long":1,Coleman:2,swung:32,allege:149,Caucasian:2,Parliament:2,nonexecutive:1,Holty:2,Holtz:2,explains:20,acknowledging:8,Elusive:2,expedient:3,Shiseido:11,Mattel:2,Mattes:2,Matter:47,Tropidoclonion:2,Incapable:1,WCI:2,chiefly:6,artful:1,generic:1,Friedreich:2,Lopatnikoff:2,"twenty-mile":1,romancers:4,Relationships:65,"earlier-the":127,"ever-greater":1,developed:81,Intar:2,reversing:8,"Per-share":1,Dingwall:2,Recessions:4,Gen:2,underplayed:17,Full:66,slipped:32,Beam:2,misspelled:17,"social-economic":1,Fuld:2,Deyo:2,jailing:8,resort:24,"corner-posts":4,Losing:229,"no-drinking":1,dispatchers:4,"market-basket":1,underground:34,Trudeau:2,Tiveden:2,communities:4,"asbestos-containing":1,overused:14,Hutchins:2,characterizes:20,"air-freight":22,characterized:45,wrong:940,"say-because":127,colder:136,Distracted:17,"short-to-medium-range":1,coolnesses:4,organised:16,"scot-free":1,Were:385,Door:11,Weathers:28,lionesses:4,"sure-fire":1,"all-purpose":1,Culturally:6,appearances:4,Perennian:40,monotone:3,Howser:2,seizin:8,Papua:2,"job-rating":1,Systems:41,Malone:2,Mutant:2,Flemish:40,outstripping:8,Paso:2,Broadbeach:2,Past:941,Expect:39,Zelig:2,"``...":102,Redondo:2,"well-known":3,"knick-knacks":4,notify:42,Microprocessor:2,says:72,pleasin:8,"over-achievers":4,conventionalized:17,diagonally:6,flimsy:1,"end-of-the-season":1,orthopedics:4,Schwarzman:2,Evangelism:11,VTC:2,electrochemicals:4,GTG:2,"more-affordable":1,Gravity:47,"A.R.":2,VTX:2,inaugurated:54,Road:11,nagging:261,"over-committed":1,exponents:4,harping:55,cuff:25,MEATS:65,outdoors:43,"book-buying":1,restful:1,breakeven:3,Mecaniques:2,liabilities:942,comforting:30,Chopin:2,Giveaways:4,engulf:39,"long-format":1,Athenaeum:2,Kasparov:2,Odessa:2,"brokerage-by-brokerage":1,Jagan:2,Prostitutes:4,rhapsodic:1,displacing:21,Allendale:2,"fender-benders":4,punchers:4,finding:55,Decorated:17,stigmatizes:20,Germans:474,seedless:1,unremarkable:1,Humulin:2,"biggest-ever":1,Priviet:2,Attacks:72,screenings:4,me:943,Braunreuther:2,Vega:2,"half-dressed":1,strikebreakers:4,Speer:2,behynde:127,"Aero-Space":2,Interpersonal:1,deans:4,Peterbroeck:2,Speed:169,Sikh:40,pennies:4,you:944,Garret:2,Rational:40,"oil-price":22,"cholesterol-fearing":1,gilded:1,delinquent:3,rampant:97,"God-forsaken":1,mosey:39,congestive:1,shepherd:25,boardings:4,deader:12,strongholds:4,meditations:4,sligthly:6,frumpy:1,morphophonemic:1,Recommendations:4,determines:20,unaddressed:1,Fiske:2,medicines:4,"business-machines":4,"already-reluctant":1,investigate:42,mistakes:18,Itasca:2,heaping:8,"s-values":4,Chairman:11,"place-name":1,"SEPT.":2,achieved:45,achieves:20,"lump-sum":3,"non-Ford":1,Vahid:2,Buildings:4,mechanically:6,BEING:8,Veniamin:2,Zamya:2,degrading:13,wrinkling:8,playmates:4,atolls:4,Mahayana:2,profiling:8,creating:8,Dolora:2,"pinch-hit":39,Kitcat:2,nonionic:1,printable:1,competent:1,tumbledown:1,Accumulation:2,WESLEY:2,Heifetz:2,Reinhard:2,distinctively:6,bludgeoned:17,cleanly:6,Callers:4,"pre-college":1,"nine-year-old":1,rollers:4,blissfully:6,Happiness:47,professorial:1,"share-price":1,Tateisi:2,Updike:2,rave:26,"Testament-style":1,decline:44,deprecatory:1,political:1,"middle-brow":1,Sasha:2,Robec:2,Galt:2,"low-frequency":1,"out-trade":39,fatiegued:1,Lohman:2,orchestral:1,Despite:127,brokers:4,orchestras:4,escapees:4,KRC:2,rocking:122,unflattering:1,Andreassen:2,Allegiance:2,nameplates:4,ENTERTAINMENT:2,Chiba:2,awakening:55,alliances:4,"producer-price":3,santos:64,"longer-range":335,rosy:1,Nation:47,Frederic:2,kimono:64,nonconformists:4,firearms:4,peoples:4,esteemed:32,advise:95,YOM:2,selle:39,Taui:2,flows:18,Traditional:66,flown:17,"then-Socialist":1,unrestrained:1,YOU:53,"Ex-Im":2,Samar:2,Newspapermen:4,stateless:1,congregated:16,Carter:2,Trevelyan:2,chickens:4,underreported:17,Cartel:2,motorscooters:4,bureaucracies:4,gorgeously:6,Planter:2,polled:54,"pre-margin":1,Bonso:2,"pre-World":2,Soconoco:2,bestubbled:1,Bourbon:129,Clue:2,tables:4,workers:4,Diversified:98,drooped:16,"be-that":39,"national-security":22,Glocester:2,tabled:17,Teaneck:2,associations:4,customers:4,Lass:2,amended:54,Jamaica:2,Secondary:1,spires:4,DataComm:2,moods:4,awaken:42,Opax:2,Marmee:2,Filmstar:2,Tomlin:2,Links:2,shaped:45,Tacitus:2,nearsightedly:6,commanders:4,digitalized:1,shapes:18,Stains:4,distrust:24,entice:42,"hand-hewn":1,essential:3,"grocery-store":1,Butch:2,billets:4,sages:4,Siena:2,sprightly:1,aptitudes:4,SmithKline:2,String:59,Tully:2,Tulln:2,Hemisphere:2,orthodontists:4,Cloquet:2,deadbeats:4,Sheeran:2,mutts:4,McToxics:2,Timex:2,"senior-level":1,Walkman:11,understanded:17,raided:54,Times:46,UTLs:4,aloft:6,Timen:2,divest:42,informatics:4,Damned:126,dormant:1,Square:99,firing:945,"full-strength":1,frightful:1,purists:4,Wolcott:2,"One-time":1,wive:4,nerveless:1,"Earth-weeks":4,Joaquin:2,Grigoli:2,diameters:4,Geico:2,baggy:1,Smorgon:2,"second-floor":3,"fast-closing":1,oilseeds:4,austerely:6,files:18,forlornly:6,Poelker:2,"High-yield":1,Stems:4,Deals:4,fisheries:4,usurp:39,delta:22,Helane:2,junior:3,raising:946,hush:436,"property-casualty":3,pliable:1,Mumford:2,Preston:2,elide:33,railbikers:4,Cruise:11,"freshly-ground":1,strands:4,circuses:4,unwarranted:1,Hubbard:2,freak:78,"export-applications":4,allayed:17,Adirondacks:28,enduringly:6,"non-Indonesian":1,puttering:8,ringings:4,Blazer:2,"Anglo-Saxons":4,Gerby:2,rainy:1,Curtis:2,rains:18,Annuities:4,democratically:6,"B.M.":2,Curtin:2,"Macmillan\\/McGraw":11,mock:240,"profit-sharing":649,muddled:54,Baking:2,generates:20,"return-printing":1,hideouts:4,shrouding:8,generated:947,"Union.":2,counterpointing:8,Buries:20,"dead-weight":1,Birdpark:2,NKF:2,vice:948,Malcolm:11,onct:677,attacking:55,NOTE:25,Espy:2,Buried:17,"Fund-Raisers":4,beers:4,Screvane:2,once:400,Pontiac:2,epitomizes:20,Midwesterners:4,"Baskin-Robbins":2,alleyways:4,Goldston:2,resistance:80,Boating:258,Draftula:2,epitomized:54,Yasushige:2,acclimatized:17,worrisome:1,"middle-school":3,"Ky.":2,"liquor-crazed":1,"Texas-based":1,Canon:2,KuwAm:2,micoprocessors:4,Familia:2,Grien:2,breathing:21,seized:320,Whitman:11,"aftershock-resistant":1,photocopying:55,egotistic:1,seizes:20,"un-English":2,"high-voltage":1,spook:33,spoof:25,Kyi:2,Kyo:2,"well-placed":1,Kosovo:2,gullible:1,warranties:4,polling:122,Clinique:2,"right-wingers":4,snails:4,Kyu:2,relives:20,summiteers:4,someday:6,Hashers:4,Gustavo:2,goodies:4,Discrimination:2,Vegetables:4,"A.M.E.":2,lightest:51,Gustave:2,traveling:55,Krick:2,Staffing:2,inaccurate:1,Gleason:2,"highly-regarded":1,gainers:4,appeased:54,sables:4,capital:22,Atco:2,Clan:2,Clad:17,"canary-colored":1,Leonato:2,"Hawaiian-Americans":28,Clay:11,Rummaging:8,Seikosha:2,Moments:57,incriminating:30,poignant:1,chevaux:64,Novosti:2,bookstores:4,boyars:4,"fox-hounds":4,"funn-ih":1,Readers:4,Boardrooms:4,Schnitzer:2,deciphered:16,Safety:11,"once-lucrative":1,wil:190,copybooks:4,Labs:111,Sukle:2,"Calgary-based":1,Manlove:2,Amador:2,bottomless:1,"Trans-Alaska":2,WOMEN:4,Lane:11,Land:158,Lana:2,"Francisco-based":1,"Opa-Locka":2,posturing:21,MVL:2,stabilized:54,panted:16,impressionistically:6,Pappas:2,undecorated:1,gyros:4,anywhere:6,stabilizes:20,Muki:2,Penguin:2,Prime:40,patrol:24,"Hammer.``":133,Groben:2,"Europe-wide":97,Pioneer:2,confidants:4,publishable:1,"Ct.":2,counterfeit:1,Marciano:2,compatible:1,"long-banned":1,Polysar:2,tamper:39,unquestionable:1,Lynden:2,unquestionably:6,slamming:8,instead:6,WKRP:2,blustery:1,demonstrates:20,abuse:44,Lescaze:2,Newquist:2,improvises:20,Ratified:17,Seeming:8,NORTHERN:2,light:414,Missing:1,"Herald-Post":2,honestly:6,improvised:32,pastries:4,Hammer:2,preparing:8,stamped:54,Susquehanna:2,coolly:6,tropics:4,"Chris-Craft":2,Orpheus:2,"travel-leisure":1,Kchessinska:2,Beirut:2,"self-discipline":22,badges:4,horizontally:6,longitudinal:1,Mukachevo:2,Noxzema:2,"less-polluting":1,restrain:39,underpin:39,Chilver:2,Testifies:20,belted:16,flex:70,CalFed:2,Padgett:2,"re-enter":95,Pollack:2,Suppliers:4,"ozone-exposed":1,oranges:4,Island:11,Lavato:2,Mawr:2,"hot-blooded":1,flee:39,fled:32,Bick:2,Datas:2,feast:25,haec:64,Rubens:2,rockets:4,photofloodlights:4,bills:18,Chicagoan:2,"extended-body":1,related:801,Next:949,HIRING:21,relates:20,Junction:2,Trapp:64,Lueger:2,whooped:16,Jastrow:2,Baby:11,attentively:6,Linwick:2,Advent:2,"to...":102,maintains:20,Rubendall:2,"scandal-tossed":1,couriers:4,faulting:8,Sawnders:2,repairing:55,Gone:17,Gong:2,Ugly:1,via:127,"old-world":1,"self-prescribed":1,Sonni:2,"non-telephone":1,surrealists:4,tacked:32,"co-founded":187,scattershot:1,wakening:8,"baby-faced":1,felicitous:1,intuitively:6,set:950,Scypher:2,protectors:4,outfits:19,bois:64,For:951,LeClair:2,Eduardo:2,their:680,Bindal:2,boil:63,fumpered:16,shell:70,Grapes:113,reversed:85,instituted:54,Departmentstore:2,baptized:17,Nuys:2,reverses:72,congenital:1,"pro-mark":1,Explonaft:2,"non-seamen":4,limiting:8,"back-door":1,squealing:55,elongate:39,"success...":102,Slough:2,violets:4,DESIGNATING:8,alerted:32,Kinnard:2,Agone:2,Berrellez:2,Cipriano:2,"have...":102,Elliman:2,Cipriani:2,Sources:123,After:952,outward:218,which:953,Fluorescent:1,"leisure-services":1,"sign-carrying":1,Todt:2,Watling:2,"first-quarter":3,gorged:16,clash:24,Gamel:2,"Family-owned":1,Joined:17,Coalition:2,Supermatic:1,Games:41,cracking:5,"hydroxyl-rich":1,evergreens:4,Costly:1,Pot:11,Jarrett:2,mishaps:4,Loco:2,Pop:47,Pol:2,vernacular:22,Elco:2,OFFICES:4,Pod:2,Poe:2,rejections:4,inspirations:4,exclusive:3,chances:4,Dumpty:2,Lessening:8,Figuring:8,Territorial:40,parliamentary:1,Sorbus:2,chanced:32,"old-timers":152,Nguyen:2,EniChem:2,naturalistic:1,exacerbating:8,gouging:55,Schloss:2,surroundings:4,politicized:14,Org:2,Denenchofu:2,Legend:11,Eurydice:2,enthrones:20,mainly:6,voided:32,checkpoints:4,theatricals:4,Abandon:39,Gobain:2,chips:4,Magnavox:2,clothbound:1,queried:54,Newswire:2,AIRCOA:2,affluent:3,Hester:2,queries:18,infesting:8,Spooked:17,saucers:4,inventive:1,Aladdin:2,acquired:81,arborists:4,artsy:1,doormen:4,Shearon:2,Pitted:17,acquires:20,Huntingtons:28,Garstung:2,Demanding:8,broach:39,"radar-controlled":1,"pure-voiced":1,Fleece:2,amen:106,"a.m":43,agencies:4,Zabel:2,stropped:16,launderings:4,refurnished:17,Volkswagens:28,swift:34,"more-discriminating":1,Gospels:46,undrinkable:1,Oana:2,epidemics:4,RNA:2,Bums:4,highbrows:4,diehard:1,Enasa:2,"metal-cleaning":1,Jascha:2,"poems-in-drawing-and-type":1,"open-meeting":1,Legionnaire:2,unlamented:1,Bravo:183,"submarine-based":1,CommerceBancorp:2,Preserve:2,"well-fitted":1,Kirkpatrick:2,charts:18,Active:66,bewildering:30,counterchallenge:39,"off-Broadway":117,"Merry-Go-Round":2,"strong-jawed":1,DEFECTOR:47,Vouillemont:2,BizMart:2,present:954,inconspicuous:1,"voter-registration":1,abandoned:45,Pengally:2,Sintel:2,"GM-10":47,Periods:4,Kynikos:2,Distributive:2,rename:39,journalistically:6,apprehend:39,disapprove:149,pews:4,Rymer:2,Blauberman:2,audiences:4,SWAPO:2,Stooges:111,"church-supported":1,disapprovingly:6,Violetta:2,Kornreich:2,"electro-magnetic":1,besting:8,Schwarzen:64,inch:275,chlorofluorocarbons:4,cinq:64,Ridpath:2,coached:17,Violet:2,Maluf:2,lopsided:1,Gansevoort:2,lobby:25,antsy:97,plowed:45,whole:955,banded:17,YEARS:4,Dutchess:2,"poetry-and-jazz":22,Ringers:123,Kleinwort:2,"well-stocked":1,"inc.":11,Takako:2,Gables:74,Gabler:2,RICHARD:2,PARENTAL:1,tendering:55,fancying:8,"school-financing":1,console:42,superstrong:1,Datatech:2,hastening:8,Forstmann:2,Emlyn:2,cruisers:4,sparking:8,earnestly:6,"back-office":22,MINING:2,Besides:206,putative:1,Goodkind:2,"Soviet-Chinese":2,Bonacquist:2,Deluxe:40,racists:4,Fearing:8,"tax-exempts":4,"Anarcho-Syndicalists":28,Inspector:2,Pillay:2,"lady-bugs":4,scared:543,Mandy:2,socialists:4,Rwanda:2,twirling:55,racking:8,ablaze:97,Mando:2,scares:18,Statutes:4,"computer-based":1,Schwab:2,Taubman:2,"sickly-tolerant":1,Sheri:2,"mailed-fist-in-velvet-glove":1,curtseyed:16,apostolic:1,dangling:30,"dollar-related":1,Aero:2,"five-volume":1,Leila:2,"Heller\\":2,professedly:6,Pte:2,AIRLINES:28,"U.S.-owned":1,swear:42,sweat:956,Fable:2,pratakku:64,"Take-up":1,"hot-formed":1,Sasaki:2,DWG:2,estimators:4,Toughest:2,Brunei:2,Lillehammer:2,unpatriotic:1,artifacts:4,"*":957,omnia:64,"slant-wise":1,citations:4,dynamite:22,Bruner:2,"lost-profits":1,stymied:14,baffling:1,mutter:39,unfalteringly:6,NASDAQ:2,mailed:45,"state-mandated":1,teaming:8,"Med-Chemical":2,Neblett:2,MEMOS:57,"non-GM":1,"market-watchers":4,unpolarizing:8,Pemberton:2,below:206,ruling:27,Engages:4,fulllength:1,stirring:5,Dennehy:2,Sibylla:2,fertilizers:4,Fortunate:1,"mud-beplastered":1,myn:404,Sakellariadis:2,trailing:8,Transmation:2,Lodley:2,"editorial-page":22,"Yum-Yum":2,pickings:91,Maris:2,overdeveloped:3,Sheinberg:2,Textbooks:4,extras:4,"U.S.-South":66,heartless:1,threetranche:1,Marie:2,clicks:18,pantomime:78,"wood-processing":1,Route:958,Spanish:446,frustrate:39,risked:32,"Market-based":1,"earth-moving":1,Marble:2,alienated:54,Coach:128,devlopments:4,ranks:18,"securities-industry":22,Cambodian:1,alienates:20,Shooting:47,sopping:13,voluble:1,Andreas:2,Yokum:2,woo:42,Dockray:2,narcotic:1,OmegaSource:2,spearheaded:32,"fruit-concentrate":1,pardon:63,"divan-like":1,eligible:3,snowing:8,"Dallas-Barcelona":2,wheeled:85,superficially:6,"IBM-compatible":1,"general-interest":1,Wallach:11,Torrington:2,experimentally:6,Unsolved:2,"O.J.":2,Mossberg:66,clientele:19,jarringly:6,piling:55,Nasdaq:11,"NATO-Warsaw":2,"this....":102,jacking:8,Bavaria:2,aeterna:64,transmogrified:32,ANACOMP:2,haughtily:6,"agro-industrial":1,Potts:2,Kennedyesque:1,Lucille:2,Mehrens:2,Alcoholics:28,Arboretum:2,"single-B":10,"single-A":117,sittings:4,"single-D":1,interrupting:8,platitudinous:1,"Scientific-Atlanta":2,Yankelovich:2,chassis:19,auctioned:54,"dollar-convertible":1,previews:4,shriek:25,Descriptive:1,Precise:1,Raheem:2,culling:8,chlorides:4,pretensions:4,reactivated:54,reports:18,"P.R.":3,"Buy-Back":2,catalyzed:17,Audi:2,"recession-inspired":1,secluded:14,ground:917,"best-of-seven":1,"a-GM":2,"nicotine-choked":1,psychological:1,"N.J.-based":66,"well-braced":1,Geraetetechnik:2,Wales:2,"disaster-prone":1,Richebourg:2,cherishing:8,marketers:4,Shioya:2,"racial-minority":1,exhort:39,Supervisors:111,Admitting:8,occupying:30,"Lynch-led":1,"Tex.":2,untie:39,"Blvd.":2,until:127,icebound:1,suffocated:17,Tudor:40,Christina:2,Necessary:1,Christine:2,downward:97,brings:20,canonized:14,Redeemable:2,Boykins:2,flubbed:16,"Reagan-Bush":66,Praxis:2,"self-styled":1,sweeten:39,SHIPPING:2,Ending:8,pinholes:4,nationalizing:8,sweeter:12,concepts:4,denyin:8,FERC:2,"business...":102,Zoellick:2,Shidler:2,promulgated:54,reviewing:55,vitiated:17,gargantuan:1,Meets:2,Venerable:2,"Bush-supported":1,syntactic:1,leaguers:4,revisit:63,retooled:54,Forman:2,LeCarre:2,outlawed:81,Reese:2,"fourteen-team":1,"pearl-handled":1,Mailson:2,"K.B.":2,youths:4,scoffs:20,"wild-sounding":1,Reuss:2,maids:4,aping:8,Quina:2,rewards:18,artistas:4,senators:4,Resistol:2,tranquilizing:1,"Half-year":1,hallelujahs:4,Smolensk:2,Hogue:2,conned:17,"self-appointed":7,welling:8,nonpublic:1,"mouth-up":1,"gymnasium-sized":1,"in...":102,"county-wide":1,undercut:959,"Cosgrove-Meurer":2,programed:17,"IBM\\":2,McClements:2,Seth:2,Thomas:74,"SeaFest\\/JAC":2,educating:55,Sets:4,braised:17,haphazardly:6,clumsy:1,blushes:4,debut:44,flamboyantly:6,addicted:14,Siewert:2,"gung-ho":1,blushed:32,obdurate:1,Plow:2,snakes:18,"Mid-Century":2,Mongolia:2,snaked:16,"no-waste":1,Dominant:66,excepting:8,copolymers:4,Hercules:113,"no-growth":3,hangouts:4,Vanity:2,"money-center":1,"J&J":2,Loneliness:11,"mah-jongg":64,Olestra:47,Volokhs:28,grapes:4,muscling:8,Soft:66,ate:16,"market-sharing":1,shelves:4,"no-o":106,shelved:85,"now-troubled":1,Weksel:2,Mighty:2,grassers:4,"air-conditioning":22,Hemorrhage:2,earthy:1,angelic:1,Arianist:2,NATIONWIDE:2,Courter:2,unfilled:1,playfully:6,Blish:2,semifinished:17,Koizumi:2,Arianism:2,renderings:4,OKing:2,reportorial:1,similarly:6,"vaccine-related":1,defaulting:8,"Motion-picture":1,tangy:1,Invasion:11,ranging:8,Vesoft:2,librettists:4,"scaled-down":1,"Francois-Poncet":2,"strike-outs":4,Urmstom:2,Prevent:39,"loan-restructuring":1,unguided:1,"small-office":1,Chequers:2,Rats:2,Wyss:2,Moldavia:2,Data:960,Schein:2,walloped:16,"most-owned":1,Compson:2,uninjectable:1,readjusted:17,Wyse:2,zounds:106,"seven-month":1,unintended:1,gulped:16,spacious:1,loathsome:1,"Japanese-managed":1,"local-content":3,relaunched:17,kayo:39,Canter:2,Duesseldorf:2,"ex-officers":4,Unicorp:2,"hastily-summoned":1,unperformed:1,Placido:2,absorbed:81,MYERSON:2,layoffs:4,Mathis:2,Lynn:2,shall:190,misdirectors:4,figger:33,Birgitta:2,Talcott:2,Chablis:28,Unsuspecting:1,blackmailed:17,Lynx:2,"non-Canadian":3,Kikiyus:28,shalt:39,trigonal:1,Texans:111,Quality:326,Lending:21,drunks:4,comprise:149,Mansion:2,nineteenth:1,TARP:2,signatures:4,prim:1,Union:129,droppings:4,sexist:1,undue:1,plutocratic:1,Softletter:2,Paradise:11,"rough-and-tumble":1,pastoral:1,"die-hard":1,parodies:4,"non-smokers":4,"third-place":1,Fixx:2,Moller:2,gweilos:64,parodied:16,heartily:6,"niche-itis,``":133,"Turbinen-Union":2,Account:11,cartwheels:4,tramped:16,stammered:16,nonobservant:1,Inderbinen:2,"sales-incentive":1,X:47,Yell:2,"publicity-conscious":1,Alternate:1,Savageau:2,Arleigh:2,greens:4,BLIP:2,textbooks:4,Petit:2,"Insurance-related":1,"Oakland-Berkeley":2,thirtysomething:326,sanctioning:8,plagued:54,Erjun:2,nolle:64,unexpectedly:6,"largely-silent":1,"four-man":1,"press-ganged":1,John:74,skulls:4,Veatch:2,Heydrich:2,"credit-worthy":1,campaigners:4,"W.W.":2,thees:246,stamps:4,Dewar:2,pilloried:54,"corn-farmers":4,Bowers:2,rolled:112,Rebaja:2,"world-scale":1,personalize:39,Kelts:2,symbolizes:20,undependable:1,Peterson:2,"knot-tying":1,"Phenix-Transmission":2,sacrificing:8,triggers:18,Covert:2,Vacancy:47,Masaaki:2,installments:4,"comparable-store":1,"post-surgical":1,Closes:20,Ukiah:2,Mehitabel:2,Locally:6,"Afghanistan\\/Southwest":2,"non-utility":1,Willing:1,Closed:798,trucked:17,Nostradamus:2,Closen:2,sponged:32,billing:21,holdings:4,sauterne:1,"high-interest":1,roofed:17,chucked:32,sponges:4,Shuman:2,Enormous:1,eastern:1,Drago:2,Niels:2,"tumor-suppressor":1,Platoons:4,Safeway:2,Gloriana:2,Hygene:2,Schaeffer:2,"Tyson-Spinks":1,Kaufman:2,symbolically:6,flooding:55,vows:72,Maccabeus:2,remembering:55,swindlers:4,Kornevey:2,manipulators:4,"anti-polio":1,"short-selling":22,outfitted:32,Lebow:2,Eishi:2,campaigning:55,"blood-and-guts":1,Morever:6,Diefenbach:2,confesses:20,shipwrecked:1,"Wholesaler-Distributors":113,Amelia:2,Orban:2,"kitchen-table":1,"middle-aged":1,Caltrans:113,Presiding:2,hectares:4,Meps:2,personifying:8,subgroups:4,Villanueva:2,"off-the-shelf":1,"high-ranking":1,Terree:2,Vellante:2,disseminated:17,maxims:4,"wavy-haired":1,chafing:30,"leg-split":1,disseminates:20,luminously:6,PHYSICIANS:4,distribute:42,beset:81,"false-fronted":1,Rigoletto:2,"eleventh-floor":1,exclaiming:8,"long-dated":1,rushing:55,succeeding:5,collectibles:4,keeled:16,remedial:1,deters:20,girding:8,prison:25,"liberal-led":1,nutritionists:4,Dubbed:17,"Johns-Manville":2,PENALTY:11,Hindus:2,"merger-acquisition":1,tolerable:1,primaries:4,Midshipman:2,unimpassioned:1,remind:42,misled:32,cavin:8,tomblike:1,Further:961,Ithaca:11,Warren:2,right:962,old:1,ole:3,Soros:2,System:11,"NS-X":2,Application:11,Conservation:11,Noel:2,"rate...":102,Mossman:2,animate:1,knifelike:1,NutraSweet:2,"dog-powered":1,ruffled:81,whitens:20,sowed:16,Naguib:2,prefund:39,ruffles:20,summoned:54,Sharrock:2,stints:18,Bregman:2,Valentin:2,Nicholson:2,Purdie:2,bowing:8,PENTAGON:2,emits:20,hardliners:4,First:963,Duquesne:2,instructed:54,"sun-parched":1,recollect:33,Chafin:2,Upjohn:2,Chafic:2,"acquisition-hungry":1,statements:4,Ainu:2,Betancourt:2,Scotland:2,"premium-brand":1,Korean:66,Hank:2,Overhanging:8,Hani:2,"un-Christian":1,frazzled:17,Hann:2,Hang:59,Neuharths:28,Hand:169,Submarines:4,triplets:4,Hans:2,Bodhisattva:2,unfree:1,regenerating:8,Invest:188,followthrough:1,JAPANESE:1,Superstate:2,"stone-age":1,peppermints:4,upgrades:18,sighs:72,prosecutions:4,"socially-oriented":1,Guests:4,"drive-yourself":1,bateau:3,Sis:2,Sir:395,developing:5,Sit:216,homogenous:1,"bigger-than-expected":1,Josh:2,restorative:1,Sic:64,Squad:47,Sie:64,Sid:2,Sik:2,"York-based":66,"black-market":3,Sin:2,Sim:2,Handle:39,lungs:4,Gradmann:2,Czechs:28,Ramon:2,Ramos:2,momentary:1,wart:19,Situations:4,Tiptonville:2,"round-the-world":1,Nymagic:2,"barrel-a-day":1,Voutila:2,Morrow:2,BOEING:2,ASPIS:64,"good-natured":1,Cristini:2,Creusot:2,push:95,"combat-inflicted":1,Wallstreet:2,"front-loads":20,"inter-bank":1,shimmy:42,Headrests:4,Juet:2,Metropolis:2,Backward:2,Peel:2,Rama:2,"before-and-after":1,efficiencies:4,carpenters:4,Peer:2,Peep:2,"thick-walled":1,accelerometers:4,Henson:2,fatigues:4,Redgrave:2,shepherds:4,navigable:1,smalltime:1,Solihull:2,Darryl:2,alcoholics:4,REIGNS:20,fatigued:14,"fault-tolerant":1,launchers:4,"whole-house":1,Champion:11,uncourageous:1,Overpriced:2,"Most-Remarkable":51,depository:22,LePatner:2,"world-shaking":1,Kevin:2,"social-climbing":1,thinkers:4,findings:4,insignificant:1,bulldozed:17,"nuclear-plant":1,repeaters:4,Boyden:2,"random-walk":1,coppery:3,"post-merger":1,Irenaeus:2,Formosa:2,crooks:4,falling:5,"often-fatal":1,totalling:8,ramming:8,"by-products":4,bi:127,shortened:14,contemplate:42,"Kid-Isoletta":2,"island-hopping":1,"D.A.":11,Associated:98,"counter-claims":4,Preservation:2,fourfold:218,Travis:2,"big-stock":1,Associates:41,Bork:2,Slugger:2,IRNA:2,Malson:2,internationalizing:8,Dauntless:2,Naji:2,Abbey:2,"leopard-trimmed":1,Lisle:2,Stealth:2,"Hyon-hui":2,ironical:1,McNeill:2,shipmates:4,"single-parent":1,Altar:2,distancing:55,anatomical:3,Danaher:2,Gilgore:2,"anti-shock":1,electrolytic:1,loving:13,"high-speed":1,"one-two":1,Elegies:2,leeches:4,refrain:63,militated:17,Senate:40,earnigs:4,"less-junky":12,"low-loss":3,Constraints:4,"Top-of-the-Line":1,Pope:2,Locke:2,"jewel-bright":6,"time-proven":1,privy:3,Pops:2,printing:308,"multi-family":1,"Anglo-Americans":28,Yinger:2,"good-humoredly":6,unequalled:1,uncomforted:1,"hard-to-please":1,BAM:2,"rhythm-and-blues":19,recentralizing:8,coyotes:4,divided:45,Alagoas:2,"bad-fitting":1,immune:3,BAe:2,advancing:30,revolted:16,lilacs:4,"bottom-dwelling":1,salicylates:4,Mesnil:2,rigors:4,Beckman:2,Burgundian:1,"Griffin-Byrd":2,cardiac:1,dove:602,stress:24,Lura:2,Constructeurs:2,castings:4,Waigel:2,"pre-suspension":1,lighter:964,monocrotophos:4,Edwina:2,Barnet:2,Kan:2,"public-limit":1,Teagan:2,stampeded:54,Oaks:74,Lesutis:2,shudders:4,Lecturer:2,Lectures:65,derive:149,Nymphomaniacs:4,haughty:1,babbino:64,"upper-crust":1,Argyros:2,paraded:54,decreases:219,Nando:2,Tojos:28,Vroom:2,decreased:32,bipartisan:1,parades:18,"Greek-Danish":2,instantly:6,Halis:2,retails:72,"E.F.":2,smarter:286,outgained:16,BASF:2,compelled:45,subscribers:4,Bissett:2,ketchup:965,smarted:16,Baluchis:28,withdrew:16,"Open-flame":1,internationalists:4,Grants:111,suspends:20,veins:4,expectedly:6,fluted:17,topnotch:1,Mandel:2,paling:8,Landerbank:2,Bigg:2,flutes:4,Roper:2,Satellite:2,Ryskamp:2,novice:22,"post-operative":1,"gyro-platform-servo":1,boundless:1,exploding:8,Tolubeyev:2,OBE:2,complimented:17,"English-born":1,Valerie:2,prostitutes:4,poltergeists:4,quite:966,Ostroff:2,vegetarians:4,quits:72,"sin-ned":39,SPRINGFIELD:2,training:27,"late-summer":1,potting:55,unlicensed:1,punk:22,squibs:4,"Sheraton-Pan":2,Layton:2,puns:4,massive:1,Triple:2,"Bargain-hunting":21,Brodie:2,"globe-girdling":1,puny:1,Acheson:2,"U.S.-Canada":2,architecturally:6,ATM:47,Isolated:1,"CBS\\":74,ATI:2,reopen:42,specifically:6,Miriani:2,"Alvero-Cruz":2,"A.M.A.":2,"quasi-parliamentary\\/judicial":1,excursions:4,"BellSouth\\":1,structured:81,Observers:4,"self-extinguishing":1,draft:139,Laing:2,shoppers:4,"T.F.":2,structures:18,Socola:2,plies:20,Mozart:2,uneconomical:1,veers:20,simulators:4,"anti-diarrheal":1,"suit-and-tie":1,Approval:47,Durk:2,Bruegel:2,pheasants:4,"price-value":3,fledglings:4,"AT*":2,Deliveries:4,estancias:4,siding:21,"rainbow-hued":1,glossy:1,Fraternal:2,companionable:1,thousandths:4,"fern-like":1,Regarded:17,"N/NNP.Y.C.":2,sag:182,afternoons:361,sad:1,prestigious:1,inhibiting:30,bewilderingly:6,sap:63,saw:250,sat:32,"toughest-guy-in-the-old-days":1,"dollars-and-cents":4,Murakami:2,aside:349,Touche:2,Important:66,transcribed:14,"property-loan":1,surfacing:8,roadside:22,destroy:42,"Third-period":3,"time-honored":1,Steady:1,knew:16,Tanqueray:2,verifiers:4,pages:4,"non-service":1,Schaaf:2,defeating:8,sodas:4,Antarctica:2,butchered:17,Indignantly:6,accented:14,flaunted:16,oncogenes:4,homespun:1,Outbreaks:4,urgings:4,Wants:20,Cyr:2,cloak:78,foward:1,Batterymarch:2,Unconsciously:6,"home-comings":4,Cyd:2,uppermost:967,blinds:18,congressional:1,dispute:24,"Korean-Americans":28,sheltering:8,Guns:123,dissimilar:1,Aprotinine:2,sidestepping:8,supergiants:4,MEA:2,prime:3,"red-carpet":1,Housings:4,Scrupulous:1,Yamamoto:2,"sick-building":1,ghastly:1,Bronston:2,Olson:2,subversives:4,Farooquee:2,revitalizing:8,appropriating:55,"top-level":1,Sternbach:2,"once-strong":1,plummet:182,Procter:2,jumped:32,Sportscreme:2,Sweeney:2,"second-place":1,churchgoing:3,fearless:1,Paree:2,Hotham:2,forsake:39,decks:4,domi:64,Beaujolais:74,lettin:8,Facilitatory:1,nightmarish:1,"wash-outs":4,Buchheister:2,"losses...":102,"new-country":1,congregations:4,Religione:2,adept:1,ineptly:6,thickly:6,designees:4,madcap:1,Medstone:2,Greatly:6,Advocates:57,governmentally:6,receipts:4,setters:4,NDN:2,Schumann:2,Strohman:2,furthered:32,frizzling:8,cities:4,Desir:2,testimonial:3,airlines:4,overland:6,reflective:1,originates:20,Princess:11,"column-shaped":1,Marcilio:2,lanes:4,enlisted:85,rekindles:20,Tishman:2,coughing:55,Catalysts:4,Sucks:4,rekindled:17,observe:42,Dominion:2,"N.M.-based":1,Mussett:2,Formerly:6,Rydell:2,spanking:3,intimately:6,invoking:8,canoes:4,coextrude:33,twisty:1,maximal:1,Rennie:2,canoe:78,creamier:12,DIG:2,"advanced-technology":3,Eddyman:2,Looking:229,"hand-level":1,"joint-return":1,redeemin:8,casings:4,fame:25,"plastic-covered":1,Leubert:2,Merchandising:2,thinkin:55,helpfully:6,Nedelman:2,"design-conscious":1,"high-salaried":1,codes:4,renewable:1,Conant:2,colorblind:1,Skilled:1,Zaita:2,Neapolitan:40,Roasters:4,manifold:22,Missa:2,"west-to-east":6,"Mich.-based":1,Missy:2,disperse:39,Trockenbeerenauslesen:2,semiquantitative:1,Rummel:2,"Sung-il":2,trimmings:4,preventing:8,deceiving:8,interstitial:1,"straight-A":1,"Sary-Shagan":2,civil:1,nymphomaniac:22,Rigid:1,Anonymous:2,ghostly:1,Olive:2,coded:14,Approved:54,"Miss.":2,Washing:47,SHIELD:2,Radiant:1,"in-patient":1,Micro:2,Shoichi:2,structuring:55,"open-interest":1,Walloons:28,warped:14,"broken-backed":1,stranger:215,"wide-door":1,Belmont:2,Boeskys:2,"white-haired":1,Indeed:67,stationary:1,Abatuno:2,landscaping:21,Perry:2,"combat-trained":1,pushy:1,Myung:2,Novametrix:2,Perro:2,FLN:2,Vienne:2,bizarre:1,reigning:8,Vienna:129,scandals:4,dialectical:1,tote:216,toto:64,Merton:2,Brawley:2,Samakow:2,Equus:2,roast:968,exultantly:6,"run-from-above":1,momentwhen:910,stone:275,side:419,Jordanian:1,amusedly:6,Macquarie:2,bond:22,stony:1,Latter:47,Polaroid:11,wads:4,sneering:8,Jetta:2,Accords:41,wade:39,Maiden:2,"Japanese-style":1,Alain:2,Collection:11,seesawing:8,myths:4,Tadashi:2,typecasting:8,mourns:20,Sandburg:2,gliding:8,"natural-gas-pricing":1,"anti-ballistic-missile":1,Smale:2,Reshaping:8,keepsakes:4,Small:66,technologies:4,plucky:1,Hurry:39,"Court-awarded":1,expressionless:1,unveils:20,flirt:33,"U.S.S.R.":2,dispensing:55,mopping:8,inferable:1,dependents:4,rescued:54,regimes:4,Hof:2,escaping:8,Hoc:2,Hoa:2,Hon:2,galleys:4,Layman:2,laminated:14,"adventure-loving":1,How:969,Hot:40,walked:32,interchangable:1,unhesitatingly:6,"Farmer-in-the-Dell":2,Hoy:2,Swim:2,tasteless:1,graduate:139,"Scottish-born":1,Northgate:2,"H.V.":2,decimating:8,Osprey:2,disgraceful:1,perspired:16,Alex:11,Wrangham:2,Kentucky:11,realismo:64,dented:32,gifts:4,Sandalphon:2,Laboring:8,imminently:6,Alec:2,misleadingly:6,noninflationary:1,Callum:2,minefields:4,preppy:1,rescues:18,Hafer:2,Street:11,Streep:2,Hafez:2,"cross-state":1,"full-commission":1,Setsuo:2,"warm-weather":1,Creon:2,Unable:1,Mogavero:2,Eurostat:2,Romeo:2,"Mae-backed":1,strips:18,Boesel:2,hunting:970,NCAA:2,overlying:1,prophets:4,bilked:54,"company-run":1,"rate-making":1,CPB:2,Cossiga:2,Kutzke:2,generics:4,PACs:65,Pageants:4,swallows:18,friers:4,Kretchmer:2,"long-simmering":1,Wilmouth:2,"natural-gas-pipeline":1,instigate:39,unabatingly:6,Rainwater:2,ninetieth:1,quaintly:6,carriages:4,Howmet:2,Bumiputra:2,theatergoers:4,Feldberg:2,shrugged:16,McNamee:2,forestall:39,imperceptible:1,fucks:4,Wolohan:2,Conestoga:2,Abuse:2,Unloading:8,"Pan-Alberta":2,"Mega-hits":4,accessions:4,"horse-packing":1,Prettyman:2,murkier:12,timberlands:4,Bankrolled:17,buzzing:30,Gap:11,discolors:20,introductory:1,brutal:1,defectors:4,"bank-looting":1,"much-maligned":1,"vacuum-packed":1,"sugar-cane":3,unsatisfactory:1,"no-bunkum":1,"half-intensity":1,purveyors:4,"SP-44007":725,"Corp.\\/Europe":2,whammo:106,"estate-tax":3,select:392,Additional:1,"triple-witching":1,Lecheria:2,hothouses:4,"O.S.K.":2,"passenger-transportation":1,"one-month-old":1,citing:8,Belgique:2,wavering:55,impoundments:4,Russian:40,"toll-tele-phone":1,refueling:21,teen:3,cyclicals:4,"U.S.-Canadian":66,teed:32,foregone:7,"worn-faced":1,"drug-enforcement":1,Lang:40,pursuers:4,Takeshi:2,objections:4,Caffrey:2,blemishes:4,Greenfield:2,Guzewich:2,diGenova:2,"over-rewarding":1,bromides:4,"Austro-Hungarian":1,supercilious:1,Debevoise:2,Unanalyzed:1,"price-adjusted":1,Katsive:2,Stockholders:123,"shirt-sleeved":1,obliquely:6,Banxquote:2,Shemiatenkov:2,Jacobsen:2,garden:25,outfitting:8,Chandler:2,Jekyll:2,freshly:6,Bouton:2,Gelly:2,"strong-made":1,"stock-for-debt":1,"two-track":1,Tarrytown:2,plant:24,Stockbrokers:123,Division:11,Sleepers:2,"D.O.A.":1,plane:25,conveniences:4,Atzez:2,pleaded:32,Adaptec:2,Adapted:17,executions:4,Churchill:2,rowdy:3,denude:39,"hot-ticket":1,Voroba:2,broadcasting:191,tentacles:4,eversteadier:1,helplessly:6,greats:4,"more-hazardous":1,"meek-mannered":1,passages:4,clarifications:4,reminded:32,Ruston:2,Tortorello:2,trade:24,questioningly:6,intensifiers:4,its:404,imaginings:4,licks:20,CTBS:2,DGAULT:2,epileptic:1,blurring:55,Ingalls:2,Dorney:2,bobbles:4,ally:25,"pre-signed":17,motley:1,pathologically:6,"I.":765,imperil:39,thereof:6,"ever-more":1,Correlatively:6,Waggin:2,"Dassault-Breguet":2,Savannah:11,loosely:6,featured:45,"revenge-seeking":1,Busch:2,Zone:11,contiguous:1,"six-bottle":1,critters:4,reappointed:17,girlish:1,eviscerating:8,ruminated:32,Patmore:2,HDM:2,HDI:2,vis:64,"by-passing":8,Allianz:2,Auction:47,armaments:4,flyaway:1,hangers:4,Yugoslav:40,Class:11,"bloody-minded":1,dwelt:16,Chant:11,Penniman:2,Yorba:2,Imasco:2,murmur:25,Chane:2,Chang:2,Guttmacher:2,disadvantaged:1,Rosenbaum:2,bargen:33,Heffernan:2,"big-city":3,"Chairman-Elect":2,"truck-fleet":1,"ft.":19,thespian:1,Mueslix:2,forwards:6,Marvelon:2,fluxes:4,contended:32,economizing:8,ripoffs:4,sidle:39,differ:149,"brick-and-mortar":1,RMC:2,"tar-soaked":1,Sunny:2,Regulators:4,"name-brand":1,Regulatory:40,syllables:4,molecular:1,Sunni:40,gassings:4,Ingrassia:2,"Top-20":1,Rival:40,breakdowns:4,"dwindling-sales":1,Geech:2,spacings:4,stairs:4,secretarial:1,"Port-au-Prince":2,parenthetically:6,Catskill:40,swiveling:8,vocal:3,minimize:39,"ultra-efficient":1,assume:42,beneficial:1,Mottice:2,"metal-products":4,Is:109,"fur-production":1,"Jeep-like":1,multipurpose:1,electrodynamics:4,Pecks:28,Cyanocitta:64,Tercel:2,disenchanted:14,"bad-debt":1,"status-conscious":1,NORTH:2,Hannah:2,"prima-facie":145,synchronizers:4,Hannam:2,partings:4,auditions:4,Overturf:2,severly:6,ancillary:1,KEISHI:2,brace:44,Reproductive:2,"big-town":1,index:25,Zeal:2,retablos:64,nasal:1,paleontologically:6,pulled:32,FROM:127,"pre-Fair":1,"three-month":1,Deacons:4,fashions:18,If:127,totemic:1,"systems-strategies":4,desklegs:4,despise:149,shivers:4,"Luxembourg-registered":1,defended:32,Eggum:2,decentralizing:8,Stumpf:2,parochial:1,Palestine:2,dockets:4,Semra:2,stepwise:218,"fade-in":1,sayin:21,Gyi:2,unjustly:6,Balkans:65,Alurralde:2,giants:4,"Close-up":2,addresss:4,scuff:39,dependent:3,Gribin:2,understudied:16,resent:149,"out-dated":1,Smithson:2,belled:1,"debt-equity":3,roughest:51,belles:4,surrendering:8,Dalton:2,kill:95,approaching:8,"balance-wise":1,Sleepinal:2,"building-products":4,Liberman:2,"pro-Noriega":1,Glaser:2,hoarsely:6,Tippett:2,Stolichnaya:2,Pitman:2,knees:4,"#":971,Fuhrer:2,"worth-while":1,diluted:674,rejecting:8,heading:55,Pettit:2,Arithmetic:2,Confiding:8,Pettis:2,Bangemann:2,dilutes:20,kneel:39,"performance-related":1,milder:12,sections:4,brewing:21,Intecknings:2,disallow:39,"three-week":1,smoldering:8,Packers:74,"body-and-assembly":1,adagio:163,enables:20,improved:81,"tobacco-growing":1,Jaws:41,barely:6,harpy:1,timorous:1,"Southern-Republican":2,turrets:4,Trinidad:2,Junius:2,load:44,markdown:22,"Heavy-coated":1,loan:25,northeastern:1,"second-rate":1,jowls:4,"upper-income":3,indefinite:3,jowly:1,"big-stage":1,"stop-gap":1,Persians:28,Students:92,"anti-aircraft":1,intricacies:4,"Col.":2,unraveling:21,"involuntary-control":1,Attanasio:2,Jansky:2,modern:3,CARTER:2,Boslego:2,upstart:22,hind:1,mine:972,clergymen:4,"high-mounted":1,Steinberg:2,yachts:4,Urdis:2,Starting:8,Fetch:39,Ministry:2,"mid-to-late":1,Vinnin:2,Colt:11,Carrots:28,Cols:2,forgetting:8,Change:128,evaluating:8,communal:1,Samnick:2,Rukeyser:2,sizeable:1,arching:8,backing:55,chirping:55,WSJ:2,Rochelle:2,WSY:2,"Reagan-Republican":1,Charlayne:2,Yamashita:2,chase:139,"price-support":3,sounding:5,Emmaus:2,severest:51,"results-oriented":1,Favorites:778,Fully:6,Beise:2,Lillard:2,displeased:14,unlabeled:1,Charges:4,"LIN-BellSouth":66,henchmen:4,Rammin:8,viewing:55,displeases:20,grappling:55,picky:1,commoners:4,Cami:2,Norwitz:2,picks:72,Aerospatiale:2,Talks:57,Staff:11,"oft-repeated":1,Roanoke:2,"lower-growth":1,behind:973,unto:324,"Lieutenant-Colonel":2,Hollandale:2,fingerlings:4,crying:55,Topps:2,"out-and-out":1,reverted:32,"intra-mural":1,Shawmut:2,"stock-option":22,Requests:4,Atlantica:2,Flair:2,"form-letter":3,imposed:45,McCullers:2,Columnists:4,"Race-drivers":4,disorder:25,interbreeding:8,sahibs:4,expansionary:1,"Va.":2,pertaining:8,"third-consecutive":1,"morocco-bound":1,Townsend:2,FIGHT:2,goutte:64,Gibault:2,Brodsly:2,seisho:64,CREDIT:2,veterinary:1,Hindenburg:2,Whittle:11,Furman:2,Tuttle:2,bearings:4,"MB-339":2,Pact:2,idealistic:1,Benton:2,dictates:18,"fish...":102,Pace:2,Ciera:2,Slender:1,Walgreen:2,Inoue:2,dictated:54,Pack:216,"thirty-fourth":1,Loring:2,Lessner:2,Crisanti:2,snowballed:16,Caffedrine:2,biennial:1,progressions:4,irked:54,"third-year":1,belfries:4,vocalize:39,Overreacting:8,servers:4,appropriate:240,deduct:42,Exposition:2,selected:81,traduce:39,Metamorphose:2,lithe:1,bosons:4,immunological:1,royalties:4,Disabilities:74,Hurley:2,instalments:4,"Yale-Army":2,"first-nine-month":1,GDP:2,GDR:2,Dixie:2,Office:11,"coal-fire":1,Kwame:2,"coal-seam-gas":1,"Half-man":1,GDL:2,consumed:54,Orbital:2,Supposedly:150,boomers:4,reconcile:39,raging:30,likewise:6,surpassing:974,skimming:55,nondiscriminatory:1,Rolfe:2,overconfident:1,Ramone:2,Ramona:2,scrape:44,Ruff:2,scraps:18,reimburses:20,degenerative:1,hustling:8,energetic:1,Sethness:2,lashing:892,STANDARDS:28,Concetta:2,rise:24,Canonie:2,Greensville:2,Rosenau:2,DEVELOPMENT:2,destinies:4,Yarnell:2,napping:8,Alamein:2,"half-clad":1,"fair-looking":1,labelled:54,Lonnie:2,illustrates:20,scooped:16,"Austrian-Argentine":1,Blaydon:2,Ecumenical:40,existing:30,Andalusians:28,grazers:4,exorcisms:4,unmatched:1,Califano:2,lambasting:8,centers:18,Supporting:8,McLaughlin:2,"Japanese-owned":1,Tippet:2,Bessemer:2,concerned:467,Becoming:8,"student-loan":3,Glass:11,subcontracting:122,Superconductor:2,manipulates:20,Holland:2,Bordens:28,Railbikes:4,"one-woman":1,Gather:39,"fence-line":1,Harve:2,jettisoned:17,pledge:25,Morals:4,"Schnabel-Pro":2,gettin:8,Ehrlich:2,encloses:20,Assessors:4,"debt-burdened":1,"thirty-eighth":1,Mainly:6,overshadows:20,Currently:150,revocable:1,fables:4,Paley:2,enclosed:54,"university-educated":1,Sirinjani:2,kibbutzim:296,Walls:4,"re-injecting":1,Easthampton:2,Falin:2,Grudges:4,Goldschmidt:2,"protein-bound":1,"profit-staggering":1,"a-tall":1,Vance:2,"Jersey-based":1,"single-spaced":1,deduces:20,allying:8,Cargill:2,Internationale:87,subgross:1,deduced:54,Drabinsky:2,Collett:2,involved:975,Remus:2,"Landesbank-Girozentrale":2,"time-delay":1,Winger:2,"way-out":1,Organizing:2,involves:20,Davidowitz:2,"anti-militarists":4,counsels:20,"Jean-Jacques":2,dollies:4,sugar:25,tools:18,inconveniently:6,Cate:2,Dashiell:2,affording:8,zip:24,illegal:1,capriciously:6,afforded:54,toy:22,doubling:55,zim:106,Tribe:11,"gigue-like":1,Nernst:2,indpendent:1,opposing:30,"Zollinger-Ellison":2,Halfback:2,"public-owned":1,high:929,balls:4,retreated:32,dynasties:4,"Nucor-like":1,pour:976,rubberized:17,Barclays:74,fulfill:42,VISystems:28,"voice-activated":1,intimidations:4,Dietz:2,Diety:2,Diets:4,tiles:4,signers:4,pieces:4,Dodson:2,Excluded:17,pieced:17,purposed:17,Christmas:2,"Auto-parts":1,pretexts:4,swished:32,destroying:8,Sooner:381,Wave:11,bodegas:4,Wavy:1,Emeritus:2,Taek:2,puckered:14,"market-timing":1,abrasive:3,Godown:2,"pump-action":3,overridden:17,Ryan:2,Q:47,Kloves:2,hitched:54,ontological:1,ties:18,racks:4,autograph:25,"air-waybill":1,Annenberg:2,Uncertain:2,microbial:1,redundant:1,Risking:2,"John-Henry":2,Tortola:2,Defects:111,pyramids:4,racehorses:4,Financials:111,Millkens:2,erasing:8,Reconciliation:11,infelicitous:1,Jeopardy:11,"Computer-peripherals":4,Chesly:2,Evangeline:2,flopped:32,Nuclepore:2,"then-GOP":2,crabby:1,reinstated:32,surgeons:4,Blaggs:2,remorseless:1,Ganessa:2,"anti-growth":1,Doyle:2,derelict:22,archival:1,Dubai:2,animal:22,separators:4,chronological:1,transparent:3,Sarkees:2,going:5,"shantung-like":1,VII:2,Baskin:2,VIP:11,Kluckhohn:2,importunately:6,Garnett:2,Woolen:2,DeMontez:2,Gregorius:2,Wolverine:2,idiosyncrasies:4,"food-poisoning":22,Very:510,Miscellaneous:1,Vera:2,perversions:4,Bloody:2,"A.M.":431,"low-tension":1,tiredly:6,Vero:2,Francesville:2,"non-Swedish":1,"Byer-Rolnick":2,Mytton:2,thrust:428,Spend:39,Brenner:2,compulsive:1,"Dugan\\/Farley":2,hindering:30,distinctions:4,nationalisms:4,troublemakers:4,Figger:39,"coming-out":1,Kian:2,Kiam:2,Jamie:2,"anti-democratic":1,Inquisitors:4,"takeover-driven":1,gatherings:4,Prof:2,Fare:174,Gimbel:2,brimful:1,fascinating:1,ODI:2,Farm:11,behaves:20,detailing:8,courted:54,Farr:2,behaved:32,fluffy:1,"closed-door":3,sloppily:6,unoccupied:1,Tempos:4,"over-40":1,Connectables:2,Auctions:57,Jaycee:2,elite:824,Siddeley:2,"carboxy-labeled":1,"Burma-Shave":2,ITO:2,"bowl-shaped":1,ITG:2,ITC:2,extraordinarily:6,appealing:13,stricter:12,amble:39,ITS:404,ingenious:1,chromic:1,Pursuing:8,Asides:2,"MiG-23":2,Ahold:2,"MiG-26":2,Electra:2,Inventions:4,Electro:2,Coupling:8,Maksoud:2,"leather-bound":1,Tokoi:2,reloaded:32,infractions:4,Fujitsu:2,Particular:1,subject:977,persistence:22,tyrannical:1,Hughes:2,biplanes:4,Hughey:2,congregational:1,Horace:11,cabinet:22,fervent:1,unerringly:6,amortize:39,"more-distinctive":12,leafiest:51,Prisoners:113,metaphysical:1,Leaseway:2,"Time-servers":4,Hexen:64,Masahiro:2,Adelos:2,penning:8,Moorish:1,touching:5,"acid-rain":22,connective:1,rouge:147,"Trouble-free":1,rough:97,trivial:3,"B.A.T...":102,pause:24,Booths:4,Husker:2,"entry-limit":1,spiffy:1,Campion:2,Pischinger:2,"pay-later":1,cranks:4,lucks:4,"cigar-chomping":1,familiar:3,"light-mindedness":1,hypnotically:6,lucky:1,autos:4,Zsa:2,familial:1,"Corp.-USA":2,hoses:18,Sinclair:2,Barings:28,Maidenform:2,"U.S.-Soviet":66,Szabad:2,extremists:4,Werner:2,Gilmore:2,KIM:2,KID:2,intervening:8,summits:4,Chiusano:2,Guidance:47,lazy:1,Paulo:2,Source:47,aerogenes:4,"Teen-age":1,Oilgram:2,triples:18,Paula:2,coils:4,wire:25,dispensable:1,"mass-building":1,coily:6,quickest:51,Rickshaw:2,"crack-ridden":1,Sanderoff:2,Tribal:40,wiry:1,Rockford:2,Berko:2,scrolls:4,scolds:4,"large-package":1,specious:1,blitzes:4,Scams:4,Berks:2,interchangeable:1,FBI:2,Feruzzi:2,phonetic:1,Preserving:8,"computer-making":1,deficits:4,innocently:6,tripled:54,"boot-stomping":1,Vagabonds:111,Chriss:2,"light-industrial":1,Transvaal:40,Forgoing:8,Louisa:2,staved:17,coercive:1,Stapf:2,glowered:32,Diligence:2,Industriels:28,Soyuz:2,waste:205,Durer:2,Interfaith:1,homosexual:3,Sayers:2,revoltingly:6,slumping:30,Airborne:40,"pro-active":1,graphics:91,lumbar:1,Slightly:6,Honduras:113,Mistake:2,intradepartmental:1,wearied:16,Afrikaners:28,loathed:32,"history-making":1,pretentious:1,Interpoint:2,"Adios-Trustful":2,Chion:2,loathes:20,portwatchers:4,rollovers:4,"notebook-sized":1,"G.m.b":2,bourbons:4,AGENCIES:4,Strict:1,excessively:6,prefabricated:17,justiciable:1,eventshahleh:6,overcoats:4,"Good-bye":175,Kopp:2,glaring:13,joyously:6,conflicting:30,Porum:2,pumas:4,"golden-crusted":1,"billion-share":1,interconnections:4,cutsie:1,adherents:4,broccoli:4,expand:42,extradited:17,overcast:22,McGee:2,Challenges:978,Challenger:2,Meats:92,prospering:8,Matching:30,Gannett:2,"Seventy-seven":1,kiss:44,softening:5,less:979,Gourmet:2,Atreus:2,"XR4Ti":2,"off-line":1,Quota:2,Access:47,Howda:293,predicts:20,hauled:32,commandeered:17,Remaining:30,Milford:2,"Post-Dispatch":2,Puddingstone:2,Broken:98,"off-limits":1,combine:182,cosmetics:4,combing:30,Gleacher:2,mannered:1,"predict\\":33,rectilinear:1,Hits:4,Katy:2,"single-dose":1,Ferlenghetti:2,criminalize:39,"dark-gray":1,Kunste:2,Tartikoff:2,goings:4,Snopes:2,overdosed:17,Metaphysics:4,Roebuck:2,"epiphyseal-diaphyseal":1,molting:8,alkali:91,Warning:2,Pawlowski:2,Windhoek:2,Lasers:4,thinners:4,handspikes:4,carcinogens:4,"go-between":773,persecuting:8,CNW:2,portly:1,Bankrupty:2,Blenheim:2,Lavoro:11,"front-loaders":4,devaluations:4,Newly:6,"long-dormant":1,Chronicle:2,Fundidora:2,shone:32,legato:1,reimbursements:4,"crack-addicted":1,schedule:44,whiskers:4,"sweet-sounding":1,"SKr205":4,"briefly-illumed":17,abdominal:1,loans:18,"financial-market":3,hiding:55,"dirtier-running":1,mammoths:4,drumming:8,alginates:4,Corsia:2,Gibbon:2,Wallace:2,privatizing:8,Anadarko:2,"Mil-Spec":2,"hard-to-fill":1,Ordinaries:111,"anti-NATO":1,Filtered:17,Megane:2,afoot:218,mere:1,alreadeh:6,Bashaw:2,Nuit:2,spots:18,"mid-80s":4,misguided:7,Societies:4,Talent:47,Bacchus:2,suits:18,frise:64,Infrequently:6,clinically:6,"de-leverage":39,lithographs:4,"championship-team":1,detestable:1,Castel:2,chained:112,telesystems:4,"whole-wheat":1,corpses:4,"Tom-and-Jerry":2,informational:1,cordial:3,Synthelabo:2,slowing:55,"all-terrain":1,"proposed...":102,Shycon:2,planting:55,radiomen:4,Buckets:4,Elsa:2,forests:4,Else:6,Yugoslavia:11,"bond-equivalent":3,Prelude:2,Loss:47,"Ikegai-Goss":2,Lost:249,tides:4,elitists:4,dismantle:39,bunched:54,Grecian:66,Superposed:16,"best-preserved":1,"metal-benders":4,ambidextrous:1,reprovingly:6,Weissman:2,preoccupations:4,mercenary:1,Hygiene:2,Pyongyang:2,"high-value":1,"A.T.B.":2,wetlands:4,suicidal:1,Residential:40,encouragingly:6,Touting:8,Organic:2,Foont:2,"smooth-speaking":1,Buenos:2,"multimillion-pound-per-year":1,commandos:4,admixed:17,syndicating:8,Freeholder:2,bludgeon:63,Enforce:39,"Bangkok-Rangoon":2,clones:4,"health-care-services":1,McMillen:2,"no-hitters":4,regalia:4,Streetspeak:59,Beads:28,Beady:1,Intangibles:4,closeup:1,Mudd:2,Infants:4,viral:1,Duffield:2,Parametric:2,"low-concept":1,MAT:2,Spaeth:2,MAY:487,sonorities:4,"P.GA":2,"optical-fiber":3,MAC:2,"carry-in":1,MAI:2,Hess:2,Genova:2,Zairean:1,Sunrise:2,MAN:11,paperback:22,Paintings:4,prolong:39,Sighing:8,Daytime:2,rigorous:1,Metrically:6,planters:4,irrevocably:6,"S.S.R.":2,Southwide:2,irrevocable:1,"garden...":102,Dumbo:2,consisting:8,Kayton:2,Proverbs:4,"minority-owned":1,waddlers:4,"KC-10":11,interns:4,chowders:4,Jamaican:10,SYSTEMS:74,UNDER:127,Belway:2,interne:147,inhaling:8,Safeco:2,Solomonic:1,"up-jutting":1,pinning:55,pooling:55,Homo:47,"far-off":1,Subtitled:17,surely:6,Schwerin:2,spooks:4,"in-migrants":4,discontinuous:1,spooky:1,"loophole...":102,neutrons:4,sparkling:980,achievable:1,concomitant:3,fixable:1,Lighted:14,Star:129,Mailings:4,insult:25,Stag:2,Lighter:12,Stan:2,flng:39,tolerated:54,hereditary:1,"slightly-smoking":1,tolerates:20,fakes:4,striving:55,Torquato:2,overrun:185,spill:44,ORGANIZED:17,refusing:55,"residential-real-estate":1,blooming:55,crackers:4,Mussolini:2,Aiden:2,Standing:229,Blechman:2,mingling:8,Bays:2,fanciful:1,overheard:54,Lengthening:8,betide:39,"present-day":1,cites:20,"as-it-were":6,Wittenberg:11,gaped:32,Allwaste:2,Peake:2,Renee:2,Kashpirovsky:2,subpenaed:17,"Television-Electronics":2,Covia:2,Mustain:2,Ocean:2,lax:1,lay:981,outbursts:4,Weiner:2,"clean-bank":1,revved:32,egged:17,coursing:8,stimulate:42,counseled:54,"open-work":1,baying:21,triggering:8,Exteriors:4,Regional:40,freights:4,satisfied:834,wrathful:1,deducted:54,"pension-industry":3,satisfies:72,dapper:1,Broke:2,"money-broking":1,BRUT:2,clearances:4,Evan:2,insolently:6,strafe:982,Asea:2,unacknowledged:1,shear:25,eventually:6,Hackensack:2,Calmat:2,"satellite-launch":1,Midge:2,liras:4,Ignoring:8,break:182,repulsive:1,pastdue:1,Arrow:2,President:11,divesting:8,pegs:18,Control:11,Calpers:2,Feldemuehle:2,alternately:6,"class-based":1,"end-to-end":1,entitled:54,Agriculture:11,overpopulated:17,Sparky:2,Candlelight:11,Sparks:511,Mythological:1,GASB:2,Aside:477,Churchillian:1,Bonnie:2,"War-related":1,Cahn:2,"all-Spanish":1,spicing:8,network:25,gridded:1,beefing:8,diesel:22,fellows:4,buoyed:54,unkempt:1,Oeschger:2,"hyper-competitive":1,Jeanne:2,"seventh-most-admired":1,Committees:123,Originally:150,Transcat:2,coldhearted:1,commercially:6,smacking:8,"Medi-Mail":2,"N.Y.":11,delves:20,writhing:5,National:983,Titanium:2,licked:32,"processed-meats":4,delved:17,"alcohol-producing":1,Depression:11,NORDSTROM:2,Cherokee:2,radionic:1,Kushnick:2,Guatemalan:66,"pan-European":1,tangle:24,Secretaries:65,Whirlpool:2,irredeemable:1,"street...":102,rated:81,"president-marketing":1,reimbursed:54,armata:2,Sorrow:2,vibrate:39,interrelationships:4,immodest:1,rates:18,"Federal-Mogul":2,purposefully:6,aberrantly:6,Moulinex:2,"insurance-holding":1,"oil-consuming":1,Boesky:2,"self-governing":1,"Da-da-da-dum":1,"tabloid-style":1,target:24,unexplainable:1,Dornan:2,"turbo-charged":1,Allah:2,Allan:2,tackles:72,"twin-rotor":1,unmistakably:6,iron:25,Browder:2,tackled:17,contrasted:54,tipping:55,Ghiberti:2,"self-confident":1,EXBT:2,horribles:4,longitudes:4,Sorrentino:2,Reaganomics:2,numenous:1,"touch-screen":1,overlays:20,Compania:2,Sorrentine:2,Bjerre:2,forced:81,"self-served":16,pleural:1,"rate-of-return":1,Declaring:8,"self-defense":22,indexes:4,confabulated:17,"F.H.":2,forces:18,indexed:14,swims:20,isotonic:1,KEEPING:8,extending:8,"anti-Rh":2,Cobra:2,Colavito:2,"gray-market":1,inferred:32,"revenue-producing":1,Lewin:2,Battered:17,Thayer:2,dioceses:4,fitted:45,Bhabani:2,precarious:1,HERS:2,respectfully:6,Armistice:2,toast:25,Prairie:11,Soupy:1,versed:17,booing:8,blighted:45,squirmed:32,"protein-making":1,screening:21,columbines:4,herded:54,explorations:4,Rolodex:2,OMB:2,Wakefield:2,CHIEF:1,Muzyka:2,minarets:4,congealed:32,happiest:51,Crime:47,"industrial-production":1,OIL:11,OME:2,sealants:4,explanations:4,"non-Catholics":28,liberalizations:4,inns:4,human:3,"rocket-propelled":1,reproductions:4,"once-closed":1,Incumbent:2,Assiniboine:2,obsoleted:17,MEXICAN:1,Auto:47,"INTER-TEL":2,caved:32,Sardi:2,plummeting:8,bien:64,Digi:2,"a-reflects":20,Takuro:2,caves:4,Amylin:2,Leamington:2,Inglewood:2,Simonelli:2,husky:1,Dousman:2,"Shiu-Lok":2,clues:4,intelligent:1,scrutin:64,Speedway:2,Waking:8,"economic-crime":1,"forty-year":1,searchings:4,Milkens:28,Harrell:2,tough:121,"best-tempered":1,bestows:20,dimwitted:1,"turbine-engine":1,Wuon:2,Galantuomo:2,Shout:39,Bulba:2,Shoup:2,Alfons:2,Hernandez:2,knowns:4,Herrman:2,untarnished:1,Womack:2,refurbished:17,intriguingly:6,"index-arbitrage-related":1,thrice:6,repelled:54,relaxing:30,millionth:1,hoist:39,spelled:54,VanSant:2,"two-stroke":1,McIver:2,inhibit:42,stomped:32,thenceforth:119,Trend:2,Groat:2,"super-rich":1,pungent:1,"B.V":2,Billions:4,entertains:20,Guggenheim:2,Hopedale:2,weakens:20,"tax-deductions":4,crowning:13,straits:4,exile:25,"import-export":1,Underberg:2,"post-quake":1,outclassed:17,"Christmas-tree":1,"non-Castilians":28,grapple:39,accumulating:30,unlaundered:17,convictions:4,Perskys:28,necessities:4,nil:1,exuded:16,swell:50,Svenskarna:64,devalued:32,hyperbolically:6,outmaneuvered:17,Roberts:2,wispy:1,Emotionally:6,hopping:8,figural:1,Skulls:4,huddling:8,ragged:1,goals:4,studying:55,"securities-firm":22,Emmons:2,Randolph:2,Memorial:2,mingle:42,quoted:320,"shell-shocked":1,quotes:18,"late-in-the-day":1,curb:63,"one-minute":1,clamped:32,Rumanians:28,Certificate:47,Reifenrath:2,Vivian:2,Cluggish:2,evidences:4,Pendleton:2,"pre-dawn":1,chides:20,LaMore:2,demolished:54,Bougie:2,Alice:11,schematically:6,"WATKINS-JOHNSON":2,"high-pressure":1,reusable:1,Scotts:2,Scotty:11,McKee:2,slouches:20,Scotto:2,soar:42,Flumenbaum:2,Heretofore:6,Brandenburg:2,Tiny:40,Ting:2,rile:149,fulminating:8,Tina:2,"pl.":2,Cartwright:2,unrivaled:1,cede:39,humor:25,"sinking-fund":3,reflexively:6,unavoidable:1,Guilford:11,leered:16,Gifts:4,disillusioned:14,honoured:17,enticingly:6,unavoidably:6,singed:16,School:11,Obstacles:4,Tandler:2,marketing:671,ply:149,Geodetic:2,Seeds:4,Evegeni:2,Holders:123,properties:4,Ostrovsky:2,aerosols:4,"W.S.":2,"Griffith-Joyner":2,newspapers:4,Packs:28,Ladislav:2,Conrades:2,Prince:11,"G.D.":2,tropho:1,"Eighteenth-century":1,Essen:2,treble:104,considerations:4,Donaldsonville:2,"Qintex-MGM\\/UA":2,"car-owners":4,prisoners:4,overbilling:8,FORGN:2,"Bros.":74,Sault:2,"dry-ice":1,Rosow:2,"Vol.":2,quirks:4,Barsky:2,accords:18,"Non-performing":1,Finkbiner:2,lowest:138,emulated:17,COMMITTEE:2,backrooms:4,snowy:1,Stubblefields:28,navigational:1,snows:18,McClave:2,NEWHALL:2,astonished:54,"pre-set":1,overrules:20,Torch:2,detribalize:39,braved:32,overruled:32,Greenspan:11,"economic-restructuring":1,emotional:1,Odd:2,Volz:2,"female-headed":1,Olds:2,TWA:2,conserves:20,scandalous:1,abstract:466,opportunistic:1,"born-again":1,howling:8,conserved:17,apoplectic:1,"medical-instrument":1,TWX:2,wintry:1,"well-advised":1,newsstands:4,Piedmont:2,stake:44,parklike:1,holding:5,shrink:63,scored:984,"rent-free":1,spectrally:6,"non-operating":1,scores:18,"coup-proof":1,Hirohito:2,Branchville:2,maddeningly:6,bestowed:54,telescopic:1,Printout:2,Oopsie:2,McMeel:2,Andrena:2,gyrate:39,Cheerios:28,Weisel:2,"Ore.":2,"MD-11":2,wrested:32,Nakagawa:2,Cosmair:2,"%...":102,switches:18,"good-till-canceled":1,devoted:45,hovers:20,disapproves:20,Eromonga:985,released:54,SANTA:2,devotes:20,disapproved:32,donned:16,Orel:2,Brouwer:2,"tradition-minded":1,Policeman:2,bilinear:1,seemingly:6,Joker:2,Jokes:4,unblemished:1,Proler:2,Teck:2,unbundled:17,"T-45":2,Erlenborn:2,"capitalist-democratic":1,steeply:6,smooching:8,Contracting:55,Armitage:2,guitars:4,Innovative:1,hypophysectomised:17,disqualify:39,Hartley:2,upper:986,tempts:20,temples:4,Wilton:2,Okura:2,discover:42,"federal-local":1,upped:32,Orange:129,ASEA:2,penetrated:54,Nickles:2,blotches:4,cryptographers:4,Charming:66,Delight:2,saluting:8,Weisbrod:2,sleepwalked:16,Jericho:2,jocularly:6,Soups:2,genes:4,Treitel:2,Quiet:66,rodeos:4,Marlo:2,Underserved:2,"leisure-related":1,Wis:2,theorize:149,"satellite-delivered":1,hydrostatic:1,hops:72,patriotic:3,petitioned:32,tippling:1,"portfolio...":102,homeward:6,"capital-gains-cut":1,Seung:2,Neitzbohr:2,Different:66,marked:391,immunized:17,sincerely:6,seaports:4,Greenspon:2,market:987,Bonita:2,flavors:4,"super-status":1,"Paris-based":1,Thuggee:2,Retrace:39,Cities:65,angels:4,uncountered:1,menstrual:1,"acquisitions.s":4,molecules:4,Lorelei:28,Required:17,Twinsburg:2,breathed:32,"year-over-year":1,Unmanned:1,intrapulmonary:1,Spady:2,Subs:2,Halle:2,mayors:4,foci:4,SBA:2,hope:563,OBERMAIER:2,Spada:2,miscalculations:4,stimulating:30,metallurgical:1,relaying:8,Angier:2,nomenclatural:1,Resort:2,posing:8,Britons:65,Effie:2,matinees:4,Keck:2,infantile:1,writs:4,DATA:2,"home-service":1,"buttoned-up":1,flourishes:18,amputated:17,Spic:2,Addabbo:2,Kieffer:2,Spin:2,gobbling:8,Powder:11,teahouses:4,staffers:4,"kitchen-sink":1,"soil-removal":1,Krysalis:2,Malenkov:2,ADVERTISERS:4,heroes:4,Shagan:2,Wilhite:2,"center-vented":1,futures:4,Chayefsky:2,"big-tube":1,Hamburgers:113,fortuitously:6,STRUCK:32,Exporting:2,"space-time":1,Phnom:2,"risk-takers":4,curiosities:4,"F-4":2,Amcor:2,aiding:8,"working-capital":3,"fund-raising":22,bartered:17,Hindes:2,tending:55,Pravo:2,Mesta:2,curly:1,birthdays:4,curls:18,unuttered:1,distortable:1,analeptic:1,incumbencies:4,Grubb:2,Norfolk:2,disparate:1,lumbering:3,Dynoriders:2,gouverne:64,"thin-tired":1,Kenosha:2,"age-discrimination":3,shoplifters:4,Ludwigshafen:2,discuss:42,expedite:39,calipers:4,commercialized:17,Mountaineering:2,prospers:20,Regulations:57,cliffs:4,"bas-reliefs":4,uncoiling:8,Swaps:4,woolens:4,oppposes:20,Barkin:2,supplant:39,Tumazos:2,Swapo:2,counteract:39,avoided:81,Verloop:2,Krohley:2,Oskar:2,accomplish:42,Substances:4,Vermouth:2,"per-day":1,snidely:6,rebuilding:55,"cross-cultural":3,Pierson:2,"most-prestigious":1,offhandedly:6,riskier:964,Blind:66,"white-columned":1,Shelbyville:2,Tournament:11,kingdoms:4,"discount-store":22,Shawn:2,"blue-black":1,"Swiss-German":1,"travel-related":1,inevitabilities:4,Tsunozaki:2,Almanac:2,"hurricane-ravaged":1,TED:2,Landry:2,yourself:53,Hollywood:2,monopolizing:8,Briksa:2,Sparta:2,dawns:20,victorious:1,Schorr:2,artless:1,thar:6,thaw:25,that:988,inmates:4,flowers:4,than:989,Conferences:41,REVISED:17,reconvened:17,Fogelman:2,"not-quite-mainstream":1,DeMunn:2,gobble:25,reconvenes:20,"non-traditional":1,Veronique:2,Vallee:2,Leverkusen:2,Cherry:2,"W.J.":2,FXTV:2,Dynapert:2,"less-sweeping":1,"just-completed":1,Valley:2,Playes:2,lumpy:1,nervy:1,lumps:18,terrific:1,Hoyle:2,nuances:4,similiar:1,swelled:112,Sean:2,"Dingell-Waxman":2,Kimmelman:2,heaters:4,winless:1,"Sleep-disorder":1,Bahre:2,"man-bites-dog":1,expertly:6,analytically:6,"hot-shot":3,interacting:55,"storm-damaged":1,"bicycle-auto":1,Bursting:8,Akademie:2,McArthur:2,Gidwani:2,"growth-oriented":1,"see-through":1,"well-stuffed":1,erred:54,Ghazel:2,concurs:20,excerpts:4,battens:4,"Maoist-style":1,Proskauer:2,watching:55,"MSX-run":1,pastrami:4,MARCUS:2,trenchant:1,antithyroid:1,Northfield:2,Okla:2,leather:22,Felix:2,Buker:2,reorganized:81,"long-opposed":1,"Pro-Iranian":2,Invariably:6,reorganizes:20,Jock:2,Yugolsavia:2,"tax-advantaged":1,derogatory:1,examinin:8,Mandarin:40,Finks:2,flatly:6,hypodermic:1,"mom-and-pop":1,Bobo:2,feuds:18,Varitronic:2,Maneuvers:4,garde:64,analyzes:20,Matritech:2,Marco:2,analyzed:54,Squadron:2,vrai:64,stipends:4,revellings:4,"Mayor-nominate":2,Cinema:2,tutors:4,Primary:66,Moraine:2,segmental:1,assaulting:8,reluctantly:6,wheels:4,Sulka:2,nearby:97,Feenberg:2,monochromes:4,fungicides:4,"KLM-Northwest":2,Bourguiba:2,Holzfaster:2,"no-smoking":1,"no-load":1,pulverized:17,Bets:4,olives:4,cycling:21,Frohock:2,cares:72,"low-class":1,invert:39,"Six-Day":2,cared:32,Beta:129,"credit-financed":1,wolde:190,"two-mark":1,outweighed:32,Beth:2,"Assn.":2,Marcy:2,avian:1,magnetics:4,Kozintsev:2,Yokuts:2,homely:1,file:182,foggy:1,"cost-prohibitive":1,Flick:47,"ex-furniture":1,Yamada:2,UFO:2,Northington:2,grevouselye:6,OWNER:2,"Alaska-based":1,"trade-up":1,"legislation-delaying":1,"political-reform":1,"two-fisted":1,Flexible:66,Hitch:2,"co-managers":4,worry:182,Gritten:2,widows:4,Complete:990,Sixth:40,Moira:2,hartes:4,Lannon:2,poetic:1,"cc.":19,NSPA:2,figures:18,outmaneuver:39,centuries:4,"BIO-RAD":2,nestled:54,Rafter:2,patchwork:22,immeasurably:6,Outboard:40,agreeing:8,immeasurable:1,Andres:2,coordinate:551,defers:20,Nazi:40,charged:45,"rail-mobile":1,Jimmie:2,Biagi:2,"Kool-Aid":2,"Zen-like":1,Poseidon:2,dancers:4,beveling:8,"Minn.":2,"spots...":102,wrecks:4,Maruzen:2,Loudspeakers:4,Swissair:2,Nueva:2,thinking:9,ketches:4,Winchell:2,Kolpakova:2,congeal:39,seams:4,conferees:4,Minna:2,Grands:2,seamy:1,typographic:1,allocates:20,Occidental:2,warehouse:25,Grande:87,Fishermen:4,Minny:2,Andrea:2,dumpy:1,burrowing:8,outcrops:4,streamers:4,Effectively:6,Raskolnikov:2,Aroused:17,apologists:4,"counter-cyclical":1,orgiastic:1,ghostlike:1,Telephone:11,USSR:2,"Squat-style":1,Scrimgeour:2,"Hoa-whup":106,Asbestos:11,Woodrow:2,Cressidas:28,"on-set":1,Luger:2,copings:4,hustle:63,Rimanelli:2,uncorrected:1,chefs:4,flinched:16,"still-ticking":1,sniffs:20,"Trans-Mediterranean":2,"seat-back":1,sniffy:1,vacillate:39,hampers:20,"just-announced":1,HOT:66,"stake-holding":1,Ventures:74,Galecke:2,"D.,Texas":4,Story:11,"less-than-carload":1,unbounded:1,"color-coded":17,Stork:2,organics:4,Ade:2,Storm:47,Ada:2,elementary:1,Ado:2,garrisoned:17,nowadays:6,Store:2,Adi:2,Tactically:6,grates:4,Chiappa:2,forwarded:17,"orange-and-white":1,exonerated:54,Gendron:2,mellowed:17,cats:4,reintegrated:17,"anti-Japanese":1,"computer-assisted":1,burnings:4,tabulations:4,Mushkat:2,Mollusks:4,Richey:2,J:403,gunners:4,posterior:1,multitasking:55,attainable:1,Ruskin:2,"on-sure":1,whirring:8,"middle-sized":1,communitarians:4,Geo:2,"U.S.-backed":1,lawfully:6,disbanding:55,farrowings:4,Respecting:8,overpay:39,Shochiku:2,tones:4,sallying:8,cowbirds:4,Satoh:2,Biomet:2,Labans:2,remembrances:4,Yonkers:2,Coasts:111,Duque:2,restores:20,midweek:3,godamit:39,gradients:4,Monica:2,elemental:3,"million-dollar-a-year":1,afflicting:8,semiarid:1,Colon:47,Malvern:2,Baldrige:2,authoritarian:1,perils:4,Roscoe:2,teeth:991,NewVector:2,unattractive:1,Mexican:66,Modern:129,homered:16,"merchant-banking":3,repay:42,"M.G.":2,embracing:8,"optical-products":4,Prideaux:2,"home-market":1,Tilly:2,infestations:4,twigged:16,upholds:20,renege:39,messy:1,revoke:39,"duty-free":1,brunettes:4,dreadful:3,mating:122,Lipsky:2,icons:4,eventfully:6,"deep-rooted":1,Pilate:2,azaleas:4,lifters:4,"single-job":1,transducers:4,voicing:8,Ashkhabad:2,coups:4,Prechter:2,"alternative-fuels":176,"nuclear-powered":1,"single-A-plus":117,Undertaken:17,securely:6,"common-share":1,Bentley:2,heaved:32,"Price-earnings":1,"En-lai":2,inversions:4,heaves:602,"defense-related":1,Schlesinger:2,"cost-cutting":3,"three-spoked":1,Goliaths:65,excitements:4,attributable:1,Egan:2,"forward-rate":1,Egad:106,Bratislava:2,Lumiere:2,belching:21,Takayama:2,amatory:1,certificates:4,"highest-volume":1,"bit-like":1,peptidases:4,rutabagas:4,edited:54,Stokely:2,Rabbi:2,modular:1,"B-1B":129,grudges:4,Hatchett:2,Jerald:2,Azara:2,multipartisan:1,"B-1s":28,Northampton:11,exceptionally:6,Pothitos:2,creepy:1,SIDE:2,Zappa:2,amount:44,fancier:12,"refined-petroleum-products":1,"Sharp-witted":1,shuffle:44,Plateadas:2,Sparkling:2,Boake:2,locates:20,analyzing:55,trained:45,pulverize:39,Dinkins:2,ripe:1,Asarco:2,"drought-ravaged":1,watersheds:4,bilking:8,"whole-word":1,autographs:4,swiped:32,Maximizing:8,ejected:54,regrettable:1,"tri-state":1,"Australian-based":1,Fastenal:2,commenced:32,moistened:249,regrettably:6,Blackhawk:2,Justinian:2,weathering:21,jackhammers:4,synthetical:1,Steppan:2,Calverley:2,polysiloxanes:4,Globex:2,hairdos:4,playable:1,fancied:16,velociter:64,biographers:4,Buyers:4,thermostatics:4,Legion:2,COHERENT:2,fillies:4,"no-mistakes":1,orators:4,Tanii:2,ledges:4,"one-ship":1,woodsy:1,Barrett:2,Kaminski:2,"board-level":1,"three-boiler":1,Birgit:2,"Japan-U.S.":1,Lestoil:2,headquartered:17,Recruit:11,"beyond-normal":1,Kaminsky:2,malnourished:1,UNVEILED:16,Matisse:2,contrived:14,Researching:8,"index-arbitrage":22,snazzier:12,McKENZIE:2,"methanol-gasoline":1,Domenici:2,"T.S.":2,Illinois:2,"brown-edged":1,Horst:2,unfertilized:14,estancieros:4,Dresbach:2,reminiscences:4,dummies:4,"benefits-for-all":1,Vizas:2,AON:2,lateral:1,solving:8,interloping:8,Ahlerich:2,followeth:20,relate:149,peanuts:4,Surgeon:2,Zayed:2,Macari:2,temperatures:4,repatriating:8,BROAD:2,demographics:4,Bulow:2,Macare:2,motivates:20,moaning:8,ADVERTISING:2,"training-wage":1,"belt-tightening":4,towering:13,Dominic:2,Sturch:2,Allemands:2,dulled:17,attacks:18,"out-of-synch":1,cleaners:4,duller:136,yearningly:6,"middle-priced":1,Threadgill:2,Exhibition:11,tode:17,inspections:4,steered:32,Pagong:2,Mangino:2,"cave-like":1,bale:78,grimace:25,meteoric:1,Locate:39,expansive:1,bald:1,"wine-making":22,Plaza:2,According:229,MediVision:2,vigorous:1,touchstones:4,resettle:39,earliest:380,Researchers:123,"poultry-loving":1,revolutionary:3,"Front-line":3,Pater:2,liaison:22,Patel:2,"Euro-ashtrays":4,corrupting:5,financed:81,"cut-and-dried":1,cetera:80,booboos:4,Manson:2,Durable:1,whirling:5,industrially:6,"Detroit-area":1,loadings:4,Callender:2,Waksman:2,harmlessly:6,SHAREDATA:2,generalities:4,"line-hand-wired":1,Feels:20,LaCroix:2,Threaded:17,antibacterial:1,biochemists:4,blindly:6,taxable:1,Prosser:2,Parkway:11,Athalie:2,Gravelle:2,"debt-happy":1,lament:25,"Winn-Dixie":2,McKellar:2,Stiling:2,Turchin:2,Officials:92,Mimesis:47,Guillermo:2,quacked:16,sentenced:54,forensics:4,Selkin:2,Regions:57,Kimberly:2,"political-action":1,Kasper:2,policymakers:4,sentences:4,congresssional:1,Kaman:2,Kamal:2,soubriquet:64,Witt:2,curbside:22,"anti-U.S.":1,Stram:2,Galilee:2,Drogerias:2,comprehended:32,showcases:4,Galileo:11,Forked:2,With:124,Spirit:11,Obligingly:6,Celtona:2,Zalubice:2,Permanente:2,approves:20,Chagall:2,Ragu:2,Economically:6,mobile:1,performances:4,Brachfeld:2,snapping:55,Melodramatic:1,Seagle:2,hints:18,nonspecific:1,"Colgate-Palmolive":2,Etsuko:2,Zuckerman:2,stunned:112,celebrities:4,"plastic-body":1,impressively:6,multilateral:1,octaves:4,dimension:25,Dandy:2,grafted:7,Populaires:2,parameters:4,Braathens:2,Transports:4,"pooling-of-interests":1,SENATE:2,flights:4,"prior-notice":1,beauteous:1,inadvisable:1,flighty:1,Guys:4,frogmen:4,Hypotheekkas:2,quibusdam:64,"once-sleepy":1,albeit:206,"blood-flow":4,dealings:4,Pesticide:2,Jefferies:113,"Eq.":47,Bottorff:2,intensify:42,representives:4,Brecht:2,gels:20,transgenic:1,vanquish:39,hobbles:20,"Ying-shek":2,Lorentz:2,double:647,hobbled:17,Huron:2,Hurok:2,Wustman:2,throwing:55,plausibly:6,plausible:3,accelerators:4,probable:1,Brains:4,"Minato-Mirai":2,Wirth:2,Blain:2,probably:6,cautions:72,Wirtz:2,bigots:4,Sant:2,"less-binding":1,unserious:1,Prandini:2,subnational:1,Constable:2,generous:1,Conceding:8,Sang:172,Sand:11,Sane:2,Chemfix:2,Sann:2,"pinstripe-suited":1,JUDGES:4,delimit:39,"Pte.":2,polyrhythms:4,"Playboy-at-Night":2,"truck-rental":1,vaster:12,Keegan:2,Wooten:2,breakneck:1,parakeets:4,whatever:992,steely:1,homogeneously:6,Love:936,steels:4,"Hanover-Justitia":2,Shaker:2,Khartoum:2,hirelings:4,Shaken:14,collectible:1,"art-acquisition":1,Metronome:2,ruble:80,deter:42,"Universal-Rundle":2,VaxSyn:2,tactual:1,Todays:2,battling:55,animates:20,Cursed:17,"shop-by-catalog":1,fleas:4,fleet:22,animated:103,"debt-restructuring":1,flees:20,gala:3,clobbers:20,"topof-the-line":1,Bauernfeind:2,copiers:4,bellowed:32,"steel-recycling":1,loosened:54,simian:1,Mysteries:74,faires:4,fairer:12,riotous:1,Industriel:64,autopsied:17,FAX:2,counterclaims:4,seismographs:4,FAR:6,Understanding:55,subliminal:1,unpromising:1,FAI:2,autopsies:4,"mid-November":11,FAC:2,Schimberg:2,lawyers:4,Testaments:2,robustly:6,cleaning:21,ENFIELD:2,Payco:2,Standardized:1,indefinable:1,Distances:4,comas:4,Kurtz:2,"bank-embezzlement":1,"shoe-horned":17,headlining:8,Savimbi:2,Kurth:2,savvy:412,Interama:2,abstain:42,Exchequer:11,judgments:4,CCT:2,"game-shows":4,Bernard:2,CCK:2,CCD:2,CCC:2,"Middle-South":40,"cast-iron":22,"over-the-counter":34,Gratt:2,Proving:2,Pimen:2,buckboards:4,Rafael:2,"heavy-faced":1,Cerinvest:2,fabulously:6,defies:20,Shimson:2,Arkoma:2,LASHED:16,"Messrs.":993,overthrown:17,defied:32,Cincinnati:113,outselling:8,manifest:586,Surgical:2,"R.B.":2,Celimene:2,ingratiating:1,"Britain-dominated":1,"mouth-to-mouth":1,"G-24":2,refracted:16,saddled:45,centralize:39,Little:294,parade:78,fathers:4,some:994,wohaws:4,"one-way":1,saddles:4,Boddington:2,lifelike:1,Donors:4,Moscow:2,stagger:39,Moscom:2,sophomores:4,Bonasorte:2,Arriving:8,slapstick:22,dehydrate:39,Cygnus:2,Schelling:2,fibrocalcific:1,raspberry:3,neutrophils:4,react:42,"good-humored":1,concretely:6,tracing:5,"in-depth":1,"Dyncorp.":2,Sandor:2,Committee:11,Committed:17,Sandoz:2,"Trans-illuminated":1,Silone:2,Eli:2,Elm:2,encircling:8,Turgut:2,"supra-personal":1,Ely:2,"half-swamped":1,Marlboros:28,Kamieniec:2,revealing:30,Designs:18,statistics:4,innate:1,pavian:64,Gathered:17,bantering:8,"bear-like":1,Gatherer:2,newsworthy:1,Needham:2,Sutton:2,"three-member":1,Pathet:2,approvingly:6,Peacocks:4,Klinico:2,reiterated:32,Microbiological:2,"get-rich-quick":1,"women-trodden":1,reiterates:20,"Tampa.":2,Lewiston:2,facilites:4,duds:4,microorganisms:4,restarted:54,stumbling:5,Packards:28,Helena:2,cautiously:6,Helene:2,Straub:2,Cremonie:2,Personnel:130,Elrick:2,overweighted:17,metals:4,Mahatma:2,"non-horticultural":1,"A$":84,deconstructed:1,Promenade:2,contenting:8,preflight:22,pronouns:4,Oncotech:2,indecipherable:1,Siebel:2,Weapon:2,"order-matching":4,AA:10,draw:95,Lutte:2,Reverse:42,Putas:2,crouching:8,NCTA:2,AM:158,AL:2,AN:246,Ziffren:2,drag:24,AT:124,drab:1,Coronation:2,Silvercrest:2,structure:25,"sun-warmed":1,Ad:47,Taunton:2,Ah:995,Am:31,Al:2,An:996,pamphlets:4,As:206,tandem:22,Au:280,"genetic-engineering":1,Aw:341,Av:2,Crete:2,Ax:2,bogging:8,Establish:39,BRAINTRUSTERS:4,Gie:2,Gin:2,Gil:2,Revision:2,"Anti-union":1,"obedience-trained":1,Benchmark:1,attackers:4,Garine:2,"small-town":1,moribund:1,Kaysersberg:2,"drab-haired":1,Xavier:2,Strieber:2,Feeling:8,slopped:16,Decoma:2,Wallachs:2,Christiania:2,homicidal:1,stiff:104,Brisbane:2,gender:25,button:25,Bizet:2,catastrophes:4,"Scotch-Irish-Scandinavian":2,comforts:4,"drag-down":1,"Euro-Communist":2,Marist:2,"anti-development":1,FOREIGN:66,naggings:4,carted:32,plays:639,Celebrating:2,ribald:1,Bronislaw:2,SLOGANS:4,Properly:6,poles:4,pristine:1,"more-mainstream":1,Jagt:2,Tipoff:2,Sealtest:2,filings:4,ventilates:20,adulterate:39,Egger:2,"L.F.":2,"news-oriented":1,Verde:2,withdrawing:55,"non-defense":1,Utter:2,commendable:1,addresses:18,lords:4,"C&D":2,Kurigalzu:2,Avantor:2,addressed:81,"C&W":2,"News-American":2,"C&P":2,inhumanities:4,"one-point":1,recused:17,SALARIES:4,"experimental-theater":1,popped:32,Disorderly:1,dentists:4,carvings:4,testified:32,Wednesday:2,Priorities:28,whisks:20,cackly:6,testifies:20,Sanaa:2,Mahwah:2,Panicked:1,"life-contracts":1,Cited:17,MARK:2,junkless:1,retried:17,Nevada:2,Cites:20,control:139,"business-oriented":1,Kenya:2,rejoining:8,thermally:6,Yost:2,hit:997,Sesshu:2,fearsome:1,stemmed:32,HIS:998,falls:72,"Jell-O":2,Tidewater:11,HIB:2,allrightniks:4,FICO:2,Rarer:12,"re-use":39,immoral:1,hafta:42,Jeyes:2,Nationalistic:1,Alaskan:66,Campania:2,afterburners:4,Thorpe:2,Figures:57,Perdue:2,whistle:44,"Suez-Hungary":2,gulps:4,Marcel:2,tendentious:1,hid:32,"uni-directional":1,Wilson:2,soggy:1,Phillipe:2,"mass-distribution":3,Scannell:2,Phillips:113,Holleran:2,"drug-seeking":1,cruise:78,tiptoed:32,EGA:2,Developers:123,WITH:127,hock:25,brood:70,Stanton:2,"pyramid-shaped":1,Exchange:11,masses:4,notebooks:4,"back-offices":4,pensioners:4,Bullets:4,"judge-made":1,massed:32,demoralize:42,surrounds:20,Dresbachs:28,Cowrtiers:4,nibs:4,front:168,announcers:4,refuel:39,"Guber-Peters":303,entitling:8,testings:4,muff:25,Alpharetta:2,seniors:4,showering:8,TRANSPORTATION:2,despots:4,flunked:32,Madden:2,crest:25,"local-control":1,Floss:2,"ill-disposed":1,corticosteroids:4,stimulants:4,Decimalists:28,shambled:16,swimmers:4,Vyquest:2,edentulous:1,Castile:2,Selecting:8,may:487,Fords:56,depreciating:8,"peace-loving":1,Philistines:28,Housewives:4,VisionQuest:2,Diron:2,Iberia:2,JOINS:20,undo:39,Outrageous:2,"care-free":1,"twenty-five-dollar":1,Traxel:2,lanced:17,"tailpipe-emission":3,Gilberto:2,globulins:4,strapping:450,Strindberg:2,prospective:1,Murjani:2,"Mor-ee-air-teeeee":2,pitied:32,"I.S.":2,art:78,quality:999,Thalbergs:28,overestimate:39,"Burroughs-Wellcome":2,journals:4,unequivocal:1,Employers:56,"non-network":1,"pro-ALPA":1,man:1000,"net-profits":1,"fine-tuning":1001,"nine-chambered":1,punish:42,"Vt.":2,Lacroix:2,Leaning:229,Argive:2,"Sauter\\/Piller\\/Percelay":2,"extended-wear":1,Dormitory:2,specimens:4,Waddell:2,function:44,"elections-an":1,Tenda:2,Richard:74,pampas:4,"small...":102,"\\*\\*\\*":451,recessed:17,Pugo:2,Pugh:125,need:1002,cosmopolitan:1,Caves:2,assurances:4,pursued:81,Vowels:4,aftermarket:3,purchasing:9,Shirl:2,"Rabble-rousing":1,Merry:40,Carboloy:2,"combat-tested":1,Steinhager:2,silicates:4,goddamned:1,refocusing:21,Amro:2,Builds:20,"on-campus":1,connected:81,Mississippian:2,stereo:22,topographic:1,scrambles:4,radiating:8,undeniable:1,"military-electronics":4,upset:1003,"Richardson-Merrell":2,scrambled:85,Kurtwood:2,Yujobo:2,Sonny:2,Ian:2,unmethodical:1,SERVE:33,Shakespearean:66,"well-being":22,"C-20":2,Stallone:2,soldiers:4,"low-sudsing":1,Public:129,"self-absorbed":1,creamed:17,CHARIOT:2,cavort:149,Underwriters:92,outflank:39,Aouelloul:2,expensive:97,thunderous:1,Specialists:4,thresholds:4,"post-electoral":1,gratify:39,Finney:2,improvident:1,Packard:2,"all-student":1,Coat:2,"non-New":1,Haber:2,manholes:4,joint:3,Coan:2,legitimate:1,joins:20,"Rangoon-Bangkok":2,sassy:1,Matthias:2,Zimbalist:2,conservators:4,incubi:4,Aramis:2,trammel:39,lyric:3,Cleland:2,computed:14,Wolfes:28,Zinman:2,"pension-fund":22,"three-to-five-page":1,Mysterious:66,Marunouchi:2,"health-expenditure":1,tabacs:4,"Western-Mobile":2,catecholamines:4,"French-language":1,Ticonderoga:2,Saitoti:2,realign:39,Harvard:11,masking:55,juggle:39,SWIFT:2,Transgenic:2,castoff:1,Mitsu:2,"simple-minded":1,Manganese:2,Thereafter:6,"Land-O-Sun":2,Kennel:2,eulogize:39,paraphrasing:8,"American-China":2,histrionics:4,BEEN:17,middles:4,"a.m.":1004,publicized:14,undermined:45,bearing:5,Matthew:11,Leeward:2,maximize:42,MAKERS:4,Goodson:2,"non-Tagalog":1,industrials:18,Malesherbes:2,Mired:2,Nourbakhsh:2,Rockfork:2,Develops:28,Ursuline:2,"Schmidl-Seeberg":2,"Pre-refunded":1,Invercalt:2,listing:21,c:1005,Livingston:2,Pasztor:2,corks:4,Aviacion:2,Masonry:2,shameless:1,Cartons:4,riddles:4,undermines:20,"bumper-to-bumper":1,harder:1006,"three-fold":1,"much-thumbed":1,harden:39,"negotiations...":102,Resrve:2,"Second-highest":1,Yom:2,Granted:17,Shanghai:2,"management...":102,"law-breaking":3,Rottosei:2,You:1007,Ringenbach:2,Upping:8,Hackettstown:2,Viking:2,Freund:2,midpriced:1,riddled:14,Palacio:2,embodiments:4,Ironside:2,KARL:2,schematic:1,habitats:4,prophesies:20,Raymont:2,"classification-angle":1,prodigiously:6,forgings:4,"market-share":3,sagged:32,"super-high":1,prophesied:32,pipedreams:4,homecomings:4,scourges:4,Mitchell:2,Kimco:2,"Alabama-Coushatta":1,obstacles:4,Idea:147,"position...":102,Idec:2,Idex:2,Entering:2,prodded:54,Tullio:2,glowed:16,Saucer:2,GSP:2,Normandy:2,evenhanded:1,GSX:2,Sargent:2,GSA:2,sources:4,GSI:2,Bloomington:2,clashing:8,lures:72,brothels:4,eclairs:4,barefooted:1,lured:54,curdling:8,impassable:1,"pooh-poohed":39,Dobi:2,crushed:81,"breach-of-contract":1,conquete:64,tarnish:39,contingents:4,Doordarshan:2,"Milling-Stanley":2,HUSBANDS:4,Poupin:2,doorways:4,Smetek:2,"chain-smoking":21,Alcinous:1,taping:21,Cheung:2,Beckett:2,Gouvernement:2,warmed:32,Thatcherite:1,warmer:136,Transcendental:1,CHAMBERS:2,Horrigan:2,Clever:66,Roseland:2,solicits:20,boggled:16,Attending:8,rewarding:13,Connie:2,weighs:20,filers:4,intersections:4,"test-marketing":5,"A.L.A.M.":2,Maitres:2,questioners:4,Zipser:2,shrilled:16,Rochdale:2,"sugar-growing":3,offset:1008,Seminary:11,shakily:6,Microsoft:2,Characterizing:8,enhancements:4,"Junk-bond":3,Johnny:2,"light-transmitting":1,cleans:20,"early-retirement":22,persuaded:54,overlook:42,Waslic:2,IDS:2,legitimizes:20,artists:4,legitimized:17,IDD:2,Industrikredit:2,IDB:2,"late-comers":4,doubtless:6,"second-guess":83,tidied:16,mufflers:4,Assistant:11,IDs:4,"Kansas-Nebraska":2,compartments:4,"business-partners":4,recruited:54,Sakata:2,Picassos:28,Boisbriant:2,Ekco:2,hazardous:1,Trucking:11,Bosphorus:2,tapers:72,Maslyukov:2,"green-tinted":1,"trade-liberalizing":1,Examiner:2,Veba:2,"one-in-four":1,"air-launched":1,signed:85,Fitzroy:2,converted:81,leathers:4,pumped:54,"U.S.-Mexico":66,piece:315,leathery:1,Chestnuts:4,Birinyi:2,enquetes:64,kanji:64,Seacomb:2,"full-year":1,NEWS:254,"media-conscious":1,Defining:8,"second-highest":186,Measuring:55,contest:25,NLRDA:2,offensive:3,chocks:4,Gilels:2,athletically:6,Boron:2,suspiciously:6,Parapsychology:2,Infertility:2,Suarez:2,Schindler:2,Tracinda:2,Dingman:2,"changes...":102,"cut-off":1,"non-European":1,Melville:2,paraxial:1,Yearbook:2,Pauletta:2,Vitamins:4,Bordel:2,Burnet:2,Burnes:2,Oshry:2,Otaiba:2,"post-minimalist":1,"bright-looking":1,apparatchiks:64,Burned:17,characterless:1,AirMalta:11,expatriates:4,"lower-rated":1,segments:4,unroll:33,extenuate:39,teaching:1009,updated:14,Toms:2,Brea:2,updates:18,betters:4,overcomes:20,"higher-income":1,accentual:1,soulfully:6,skills:4,decorators:4,"MIG-1":1,"yellow-brown":1,pardons:4,Matisses:28,"hard-charging":117,franchisees:4,Taps:20,Honan:2,force:1010,Waco:2,pleura:91,Demon:11,"semi-processed":1,Version:2,Tape:47,MBOs:28,Lamar:2,prisons:4,"wrinkle-fighting":1,Merkel:2,"Moscow-Shannon":1,lights:18,"yellow-bellied":1,sunder:39,Caribe:2,Chyron:2,tips:18,Gregorio:2,deemed:54,"ramrod-stiff":1,"ten-year":1,pancakes:4,cadres:4,"inner-city":3,active:3,demandingly:6,Ziggy:2,SWUNG:16,POWER:11,tapes:4,taper:63,taped:81,felonies:4,Advancing:8,Continent:47,Bottineau:2,eyebrows:4,chaperoned:1,fragrances:4,"Tiger-turned-Federal":1,"silk-stocking":1,Joerg:2,moral:3,suburbanites:4,bargelike:1,"value-judgments":4,Cattleguard:2,receivable:3,Accidental:1,Alcee:2,PACIFIC:2,tabulated:81,DIALING:229,"feed-lot":1,Greenberg:2,peeping:8,decencies:4,Spumoni:4,Norcross:2,Franciso:2,"inter-species":1,burglaries:4,eternally:6,Crupi:2,pacts:4,"arms-export":1,flora:91,pivoting:8,Breslin:2,Tim:2,Blinder:2,Traverso:2,Ramsperger:2,Borough:2,mountainsides:4,"Pre-shaped":1,defer:39,"baseball-watching":1,Keebler:2,Lil:2,Lim:2,Lin:2,Benedick:2,Visher:2,Liu:2,blistering:30,Chauncey:2,degenerate:82,Tie:216,Neurotron:2,cursory:1,"three-to-five":1,Greif:2,Josef:2,Siegler:2,currents:4,Hargett:2,"heat-and-eat":1,answer:44,prohibits:20,"personal-income":1,crowding:8,undergoing:8,Stehelin:2,Bonne:2,"word-weary":1,Hattie:2,hospitalizations:4,toilsome:1,manic:1,"labor-funded":1,maintain:42,capitalist:3,Festivals:4,Blue:40,Faye:2,imbruing:8,Blum:2,"CROSS-BRED":16,"pre-strike":1,"fiber-producing":1,sycophantically:6,neutered:17,scoring:55,"Campeau-unit":1,RENAISSANCE:2,"non-dealer":1,better:1011,differently:6,accusatory:1,Ahoy:2,Homart:2,overcome:538,pleasurable:1,regrouped:32,"S&Ls":56,Ditmar:2,"chicken-wire":3,dejeuner:64,DeConcini:2,Spahr:2,mamalian:1,unregistered:1,AMRO:2,Graeme:2,Cairo:11,Agreed:32,Harkins:2,Timna:2,placards:4,fringes:4,Trabold:2,went:32,sulphured:17,OUSTED:54,Agrees:20,successively:6,suspended:81,Hulks:4,upstaged:54,subjectivists:4,"best-gaited":1,principles:4,relentlessly:6,downplayed:16,hoteliers:4,projectiles:4,mandated:54,contend:149,"TRS-80":2,Lafarge:2,Karnsund:2,"government-funded":1,particles:4,Rhone:2,Snaresbrook:2,NLD:2,Ill:40,NLO:2,"post-Hugo":1,"B.B.":2,linear:1,PENNEY:2,Denshi:2,aborting:8,subtended:1,lineal:1,warmhearted:1,"NL.":2,"five-home-run":1,lacerated:17,Berthold:2,microchips:4,Diametric:1,swiping:8,Kivu:2,Kofcoh:2,Baldry:2,chronologically:6,"gas-saving":1,"pre-Civil":2,deplete:39,Commentary:2,myelogenous:1,"take-it-or-leave":1,MIGHT:190,masterfully:6,grads:4,Ketelsen:2,Fortenbaugh:2,Levi:2,"oriented-polypropylene":1,bleat:78,witnessing:8,clattering:8,Mariotta:2,somewhat:6,Crain:2,Cybex:2,"cold-bloodedly":6,prongs:4,Grizzlies:4,"frog-eating":1,mythic:1,"thousand-legged":1,Almost:477,silly:34,deserving:3,spoiled:81,Disasters:4,usages:4,Houlian:2,"demand...":102,"video-viewing":1,"Dingy-looking":1,elevating:8,Pickering:2,Odeon:2,emphasizing:8,Mineworkers:28,THROUGHOUT:127,"Government-mandated":1,closeted:103,GRAINS:57,Berardi:2,POW:47,"private-school":3,POP:11,desist:42,Grossner:2,payloads:4,panties:4,"TWO-A-DAY":1,"one-industry":1,"Western-Central":1,Confederates:4,"Gim-":2,Emshwiller:2,Vanguard:2,Lint:2,Alabama:2,Zeller:2,buts:4,Meson:2,Crow:2,nighttime:3,Meltzer:2,Single:2,definitely:6,Steelmakers:4,LSO:2,Copenhagen:2,Harnick:2,mailing:21,Carew:2,"oft-quoted":1,secondbiggest:51,lyrics:4,Taussig:2,Weill:2,Carey:2,ballfields:4,ending:1012,attempts:18,chartered:1013,Nite:2,Huhmun:2,Tamar:2,alcohols:4,acquit:39,Teikoku:2,"Jackson-Cross":2,coefficients:4,"above-target":1,scrubbing:21,Taconic:2,exports:18,Porsche:2,Crumb:2,establishes:20,compounded:81,Realist:2,retaliating:8,Albanian:2,perceive:42,Oneida:2,"Sydney-based":1,Heck:2,"equity-purchase":3,Stober:2,Crump:2,thoroughbreds:4,FARMING:2,Realism:2,Whitey:2,McMahon:2,cleanups:4,sallow:1,agglutinating:8,softly:6,Hippodrome:2,"fresh-fruit":3,THYSELF:53,flagged:16,"Al-Chalabi":2,Underwater:2,Ozal:2,District:11,Neurological:2,Christianity:11,vigilant:1,"Huang-ti":2,notions:4,said:758,shaven:1,Hideous:2,Registered:231,sail:95,shaved:54,reassigned:54,Ngo:2,"Negro-appeal":1,"ex-officio":3,shaves:20,"sea-blessed":1,HALT:2,"Asset-Backed":66,restricting:30,Tenneco:2,"split-bamboo":1,"fifth-biggest":1,"old-time":1,HALE:2,Chipping:8,"solid-fueled":1,Brazen:2,disinfected:17,Donating:8,Worship:2,archetypical:1,Trecker:2,hardworking:1,ACCO:2,lowly:97,CHECKOFF:47,"fine-chiseled":1,"line-item":1,"fur-making":1,recut:1,Chavez:2,targeting:498,"C.":1014,recur:42,mythological:1,"low-sulphur":1,"C$":84,"cash-flow":3,Telemetries:28,Coxon:2,"C1":2,"half-educated":1,CO:2,prosperous:1,CB:2,CG:2,Ruding:2,CD:835,tapping:55,CS:2,Claims:41,CP:2,CW:2,calcified:16,"half-swimming":1,CT:47,distorts:20,Trupin:2,Ch:2,Co:11,reddish:1,Ca:1015,economies:4,Cy:2,Agoglia:2,Cr:2,employees:18,Ct:2,spawn:42,Nae:106,Nan:2,Ideas:4,Nam:2,Ideal:129,aku:64,Nat:2,McAbee:2,grown:45,tucking:8,Connectors:74,speculating:8,Zimbabwe:2,Wattie:2,Britton:2,confronting:8,Puccio:2,Umschlagplatz:2,"then-biggest":1,"waste-to-energy":3,Raytheon:2,Morris:2,declarative:3,sacraments:4,Gasch:2,Schoeneman:2,overt:1,thoughts:4,"purple-black":1,yongst:51,"Multi-Income":2,Fulcrum:2,Caning:2,Vandiver:2,left:1016,Offsetting:8,just:1017,Fixing:8,abstained:16,Nutt:2,longish:1,habitues:4,alludes:20,Sedgwick:2,trestles:4,Lupo:2,Yemen:2,"six-man":1,Lupe:2,clampdowns:4,News:239,spasms:4,Newt:2,Westhampton:2,Building:321,chives:4,Empedocles:2,"hard-surface":22,relating:8,Carraway:2,background:22,farms:18,downtrodden:1,afire:218,Bait:2,Vogel:2,uncivil:1,Armour:2,Colonsville:2,intercollegiate:1,notorious:1,prepping:8,Bain:2,repudiate:39,Beloved:2,Moynihan:2,"now-evident":1,amiable:1,repelling:8,PTL:2,Rolaids:2,PTC:2,PTA:2,Moneyletter:2,maitre:87,SCRAMBLE:33,bold:1,ballerinas:4,"Paramount-MCA":66,"blue-chips":4,Slippery:2,bolt:25,Noyes:2,Milties:2,richly:6,Lolotte:2,Currie:2,"C.D.s":57,rhyming:8,lied:16,Nike:2,Vickie:2,commuters:4,lies:72,lieu:1018,errs:20,"Arnold-Foster":2,Laphroaig:2,"well-intentioned":1,"dealer-community":1,approximate:279,influencing:8,remained:32,Swearingen:2,impassioned:1,Chekovian:1,multiscreen:1,Passengers:123,secondhand:1,"ownership...":102,possemen:4,Gemayel:2,overburden:39,Jean:2,Melisande:2,Southfield:40,"mega-welfare":1,attached:81,Stoneman:2,boomerang:25,"Marxist-dominated":1,Aiwa:2,Cyanamid:2,"Three-fourths":4,hypertrophied:17,covert:1,covers:72,vacate:39,"purchase-and-lease":1,unholy:1,Worcestershire:1,Description:2,Balmer:2,Ruffo:2,excel:149,"get-along":1,adjourning:21,misinterpreted:54,Cobbs:4,Firm:213,Eben:2,Ebel:2,Eber:2,Accounting:321,"Falwell-like":1,unlocking:8,Skolovsky:2,Gatwick:2,militias:4,"Line-item":1,Exabyte:2,Departing:8,daily:34,Fire:11,premiums:4,"Invest\\":2,Pilevsky:2,pellets:4,"G.S.":2,overdue:1,Fibre:2,Shelby:2,deputized:17,peruse:42,souls:4,"three-stage":1,Scriptural:1,Linsert:2,milk:25,"Enviro-Gro":2,agleam:1,Zantac:2,"single-most-needed":1,disgusting:1,"blood-stained":1,"Apple-Microsoft":2,amaze:42,Boeings:28,unpleasant:1,harnessing:8,overproduce:39,"J.K.":2,misstatements:4,encircle:39,"record-keeping":22,inciting:8,permissive:1,Annamorena:2,nationalize:39,Sinemet:2,"acetylene-fueled":1,"case-by-case":1,Trumka:2,Rejoins:20,Recalls:20,pious:1,Evian:2,governments:4,materialize:42,Protocol:2,economize:39,Belanger:2,"semi-major":1,shod:1,overlaid:17,drawings:4,Faustian:1,Epidemiological:66,fearing:8,Slovakia:2,threshed:16,casks:4,dishonored:17,Toxicology:2,Bartok:2,"price-skirmishing":1,deerskins:4,Colquitt:2,"wage-price":1,MYSTERY:2,Raesz:2,unsmilingly:6,french:593,Eurodebt:2,Signed:17,brownouts:4,Changes:283,elegantly:6,trenchermen:4,Harkin:2,"dual-career":1,Hull:2,"high-tech":3,biopsies:4,Baldwin:2,"non-recourse":1,massage:25,validate:39,breathtaking:1,spatially:6,Whee:2,"one-night":1,Admission:47,Villalobos:2,When:394,Stopping:8,Holabird:2,Fountain:2,licensing:27,ailing:30,Toyoda:2,sported:16,Specialist:2,Australia:2,weeklong:3,intensively:6,perk:82,Giselle:2,franca:64,Kleber:2,creamy:1,Conchita:2,pert:1,francs:4,"mushroom-processing":1,creams:4,Turtle:11,MicroBilt:2,drinkable:1,cremate:39,hurlers:4,"fine-tuned":1,Lusignan:2,mouthing:8,superhighways:4,Dependency:2,beholden:1,"ex-liberals":4,Pyramid:11,recites:20,gassy:1,armpits:4,deformed:7,Bath:2,quivers:4,"farmer-type":1,supportable:1,Basing:8,claim:24,Voluntary:40,Headline:2,photofinishers:4,Commenting:8,"Ohio-chartered":1,Dilzem:2,Alger:2,recited:16,Everhart:2,"Sa-Duk":2,Prometheus:2,Whiteman:2,marbleized:17,"mandatory-retirement":1,Pye:2,"employee-owned":1,staying:5,"budget-wise":1,accessory:22,Versicherungs:2,epileptics:4,aisles:4,REMICs:4,Junsheng:2,holdouts:4,Ribozymes:4,instills:20,switch:44,downsized:17,longhand:3,Commentators:4,Masket:2,technophiliac:1,Fella:106,frittered:17,seizing:8,Suburbs:113,Covington:2,Coconuts:65,sculpts:20,spinoff:22,irresolute:1,Elsewhere:150,Hokuriku:2,Nintendos:28,Psychiatric:2,Lugosi:2,Amis:2,ours:1019,secondary:1,"multi-billion-dollar":1,Scenario:47,Manas:2,bein:1020,drowsing:8,sarcastic:1,"cross-shareholdings":4,Mussorgsky:2,Retailers:123,"no-muss":1,Manac:2,Tyson:2,developments:4,Everything:47,chockfull:1,unvisited:17,Monteverdi:2,Francaises:2,discourages:20,"post-Black":1,Affliction:11,Dowguard:2,Event:47,liberating:30,Zealand:2,"non-institutionalized":1,"pre-merger":3,slaughters:20,"shack-up":1,"dainty-legged":1,"judicial-bypass":1,Unitas:2,Badder:2,"electro-optics":4,Rieslings:28,McGuigan:2,"many-fold":6,"self-deceiving":1,Strangler:2,Riverfront:2,RTS:2,dominate:42,"stock-fund":3,ethicists:4,Yves:2,Responding:8,Malizia:2,bootlegged:17,therefores:4,mortared:17,musing:8,forbids:20,Misdemeanors:4,Remics:57,Walking:8,Kimpton:2,standby:3,exhaustingly:6,Yogi:2,"trans-political":1,Dubinin:2,physicals:4,Brock:2,oafs:4,philosophized:16,Helix:2,Gestapo:2,HealthAmerica:2,Hefner:2,personalities:4,Huaqiong:2,"J.P.":2,Terra:2,inflight:1,"mare-COOR":2,masquers:4,amphetamines:4,mining:21,Marni:2,Talton:2,Bioanalytical:2,loneliest:51,Doak:2,sequels:4,Trumps:111,Santamaria:2,Toffenetti:2,Martens:2,relative:3,exclusionary:1,Horicon:2,WordStar:2,Maloney:2,CHINA:2,scaffoldings:4,LISA:2,Rampell:2,Crashing:8,Kuehn:2,Tunisian:2,Court:11,"state-local":1,occupies:20,dash:25,Respiratory:40,greet:42,Animals:92,occupied:81,TGS:2,clung:32,stopgap:22,Zambia:2,upgrading:55,Clothiers:74,Corvus:2,strengtened:17,cooing:8,theatre:80,normal:97,blackest:51,McColl:2,McColm:2,Tredding:2,hardships:4,Courtney:2,especially:6,"hand-picked":7,"three-snake":1,"Double-Figure":2,"gimmick-ridden":1,Amsterdam:11,withdrawals:4,precise:1,Germeten:2,Tese:2,Demographie:2,Assassination:2,Mazzoni:2,"habeas-corpus":1,Wondering:8,Test:128,Chamberlain:2,"K-9":2,"re-emerged":16,"committee...":102,soliciting:8,Overbuilt:1,lauded:32,Unresolved:1,"empty-handed":1,reps:4,RISC:2,milkshakes:4,Turn:260,killers:4,Turk:2,Turf:2,marooned:16,astounds:20,"conceived...":102,Alliance:2,"order-delivery":1,"K-H":2,Fiala:2,panjandrums:4,photographically:6,Murata:2,Educational:40,declarations:4,milling:21,"heavier-than-normal":1,Hotel:11,Goddess:2,workweeks:4,"seven-point":1,envisioning:8,chronically:6,AHEAD:6,gags:4,"get-out-the-vote":1,LJN:2,gage:25,enumerated:14,SCIENTISTS:4,moaned:16,brokenly:6,whispered:112,Ballinger:2,parent:22,Visually:6,FOOD:11,"preferred-dividend":1,pained:103,Overnight:6,Merryman:2,countenance:25,unanalyzed:1,singers:4,wounds:4,"under-performing":1,Corrective:1,"lbs.":4,Brockway:2,trades:18,typify:149,dedicate:39,patrons:4,traded:1021,"Kan.-based":1,arcaded:1,terse:1,Fulmar:2,Ouray:2,maintained:54,grants:18,arcades:4,disciplinary:1,Poconos:28,unopened:1,Sure:1022,Comission:2,undertake:39,"employee-contributed":1,Schiele:2,Bohrer:2,employments:4,Expressions:4,devilish:1,"base-rate":1,gripped:32,referrin:8,"upper-middle-income":3,"fear-filled":1,Provato:2,Scotch:129,stacked:54,turtles:4,outspends:20,Caused:17,sobbed:32,Ruark:2,"steel-exporting":1,Hessan:2,Causes:2,Muzzling:1,"U.S.-Israel-Egyptian":1,bathrooms:4,tirades:4,characteristics:4,Honjo:2,them:1023,reignited:32,sprained:17,cluster:78,"defense-equipment":1,dangerously:6,Alasdair:2,underweighted:17,traffickers:4,obnoxious:1,everyday:1,overshoes:4,uneconomic:1,par:1024,pas:64,pat:104,paw:25,"cotton-ginning":1,Notre:2,steppes:4,heirs:4,Bucaramanga:2,thinning:8,pad:25,Muskegon:2,stepped:32,Fretting:8,pal:22,thee:53,pan:25,McDermid:2,claps:18,Commanders:28,seagulls:4,"sub-headlines":4,"one-paragraph":1,running:1025,"Ill.-based":66,"goal-values":4,mortgaged:17,haint:20,"Knight-Ridder":2,"twin-jets":19,"four-page":1,gates:18,they:53,Meyers:2,Paramedics:4,OVER:127,Scopo:2,"mutual-assured":1,Pershing:116,Hadrian:2,shying:8,doctoral:1,Inefficient:1,Symbolizing:8,Wolpe:2,recopied:17,extensive:1,"Inflation-adjusted":7,safeguarded:17,McCarran:2,defected:32,"off-level":1,Schicchi:280,Georges:2,mos:4,mor:12,Paxus:11,mop:63,mow:39,mot:64,moi:64,mon:64,intracompany:1,underwriting:21,aiming:8,disappointed:81,scrounged:16,Stabat:2,gossipy:1,Kampen:2,gossips:18,acidly:6,"English-speakers":4,Thynnes:28,Borax:2,miraculous:1,laughing:5,undifferentiated:1,Somalis:28,Texaco:2,Somalia:11,Convict:2,organizing:55,Bubba:2,"jobs-tears":4,Stearns:74,Receave:33,relished:16,Geer:2,"listener-supported":1,fluids:4,Kissak:2,Bridgeview:2,expressing:8,"larger-capitalization":1,Sonora:47,"oil-transport":1,dimensionally:6,Ferber:2,"Seattle-First":2,manufactured:45,notable:1,"vinyl-laminated":1,notably:6,plastisols:4,Klondike:2,Berkley:2,pinnings:4,preoccupied:14,unissued:1,roar:25,classifies:20,Kumagai:2,unclassified:1,preoccupies:20,Commissioners:41,solidify:42,roam:42,sadistic:1,Underhill:2,nonessential:1,Hooghli:2,quietly:6,Hermanovski:2,"industrial-gases":1,amasses:20,uptown:22,amassed:54,Week:11,"stock-ownership":1,downed:32,styling:21,compliant:1,lions:4,Plenty:669,suject:1,decisive:1,Weep:216,hysterical:1,agricole:64,granules:4,BOAST:39,gory:1,Bashers:2,"four-stock":1,"quarter-million-dollar":1,gore:39,Chartwell:2,DeSio:2,porches:4,Trailer:2,"offering-price":1,flamboyant:1,"v.B.":2,proceeds:18,Kajar:2,grudging:1,"midsized-car":3,Cirino:2,CRRES:2,"minimum-capital":1,emissions:4,Thistle:2,"half-expressed":1,celestial:1,Farmers:130,cabled:16,Stanza:2,fellow:22,Percussive:2,allocating:55,Moto:2,"less-than-expected":1,flock:44,"fee-producing":3,WHEN:293,"job-seekers":4,KLUC:2,Najarian:2,"steel-import":1,unturned:1,"textile-exporting":1,PERKS:4,princesse:3,dunked:16,Cheez:2,prudent:1,"resource-intensive":1,"low-growth":1,Baeyenses:2,demonstratively:6,casts:72,forts:4,Rica:2,Yeah:1026,Year:47,craftsmen:4,corporeal:1,Klinsky:2,forges:20,forget:42,Moog:2,disassembled:16,Moon:11,SIA:2,goofy:1,Amenities:4,forged:81,nonreactors:4,huggings:4,"M-4":2,Gizenga:2,Tertre:2,servings:4,Skipper:2,Vernava:2,"test-coaching":1,"medical-support":1,INRA:2,parcel:205,translations:4,"M-K":2,Mannheim:2,Ware:2,worded:81,invigorate:39,Owing:6,disused:1,exemptions:4,hoped:32,"short-haul":1,Riunitie:2,Autumnal:1,preordained:17,Valuable:40,Brevetti:2,further:1027,Salhany:2,"short-lived":1,overshot:16,magnifying:55,"face-to-wall":6,faded:45,judicious:1,"House-passed":1,Pagan:2,doting:30,Arena:2,"entry-level":1,Gift:11,"image-building":1,wrangling:55,Sylvester:2,puddles:4,"long-successful":1,cylindrical:1,Nazarene:2,Greases:4,speeches:4,"free-world":1,leveling:21,Kawecki:2,Grayhound:2,chipper:1,copycats:4,Nyckeln:2,Kirov:2,"sentence-structure":1,"wine-buying":1,Jameson:2,Gough:2,Macaroni:2,score:44,nothings:4,distinct:1,Towne:2,dispatching:8,Picasso:11,Towns:113,"wood-grain":1,Promazine:1,staggering:13,reeked:16,Yamata:2,particular:34,Haile:2,UAE:2,"post-Oct":2,Tonight:431,unindicted:1,categorizing:8,Wood:11,taut:97,appendages:4,"Trans-Pacific":2,Tessler:2,unrevealing:8,Kossuth:2,stacking:8,expeditiously:6,prods:72,share:205,"best-financed":1,Sable:2,sharp:1,Valdemar:2,siren:3,Paramount:11,sired:17,Furlett:2,turnpikes:4,Outlays:4,dramatists:4,Liss:2,List:128,Lish:2,Petaluma:2,uninspired:1,Blier:2,Lisa:2,Ozzie:2,hedgehogs:4,uncongenial:1,Stevens:2,bathed:54,"federal-state-local":1,porticoes:4,"morning-frightened":1,chopped:103,Texan:129,"Ba2":1,"Ba3":3,puttered:16,hyaluronic:1,minincomputer:12,Warnaco:2,deterring:8,Roxanne:2,Income:11,Cooper:2,arrogant:1,Vilgrain:2,arteries:4,possessions:4,forthwith:6,Wechsler:2,Lanin:2,crawls:18,triumphantly:6,oks:20,good:34,Bar:128,Bas:2,Interiors:4,Baz:2,pinafores:4,Bay:11,Bad:66,DePaul:2,nonwhites:4,Lautenbach:2,declamatory:1,Bal:2,"nine-point":1,conspires:20,Bah:106,easily:6,"three-hundred-foot":1,pregnant:1,Potter:2,FINANCES:4,CRASHED:16,ports:4,obtaine:39,"rule-making":3,"budget-reduction":1,"anti-Phnom":2,monks:4,recreational:1,wiggling:8,deluged:54,"Mauve-colored":1,samovars:4,Flat:66,lovers:4,effete:1,Poyne:2,trundling:8,Mira:2,byinge:8,roughnecks:4,rankest:51,"stage-plays":4,"E5":2,"three-quarter":1,"pre-natal":1,Erickson:11,bully:24,EK:2,"decision-makers":4,Junkins:2,Lenaghan:2,hosted:81,recoveries:4,wanting:8,terminals:4,EX:2,EZ:2,ET:2,Propaganda:11,ES:2,launderers:4,Belding:2,En:587,Eh:125,Evans:2,Gunlocke:2,Ed:2,"W.A.":2,Haan:2,Bickel:2,"Fla.":2,Hornets:28,Haag:2,Stengel:2,Prattville:2,"James-the-Less":2,disregarded:32,Vandervoort:2,slithers:20,"Melbourne-based":1,canneries:4,precariously:6,curtly:6,Okay:1028,Murderous:1,divorce:44,Lapointe:2,Airplanes:56,Incentives:4,Sven:2,Shangkun:2,weave:63,VISTA:2,muscles:4,"free-fall":3,muscled:32,Problem:2,tacking:8,Lenin:2,horizons:4,gotten:17,"cross-pollinated":17,Caulfield:2,damaging:13,sole:3,Coatings:2,Boun:2,totter:39,outta:127,Kuniji:2,"non-polygynous":1,ages:18,"Washington-Oregon":2,roughly:6,"trend-setting":1,headings:4,manipulating:8,meltdown:22,dismember:39,Gollich:2,Menenendez:2,Pausing:8,reconciliations:4,appellate:3,keypads:4,Sider:2,Sides:2,Teller:11,Ate:16,"Tracy-Locke":2,soldierly:6,engagements:4,fluctuate:149,Martini:47,Linz:2,esterases:4,Shlenker:2,Jonni:2,Poach:39,"a-stoopin":8,Sample:47,Canteloube:2,dodging:8,SNIA:2,"deep-eyed":1,"Canadian-owned":1,FORMERLY:6,wailing:55,toxics:4,carne:64,socalled:7,Hedquist:2,perched:54,hopped:16,"cellular-telephone":3,multichannel:1,giant:22,depended:32,dividing:1029,"soldier-masters":4,"Victor-Butler":2,"center-right":1,Pooh:2,WCVB:2,Pool:11,Cyriac:2,adjustments:4,"hand-in-glove":1,Omani:1,"pre-determined":1,"non-durable":1,relocate:182,elapse:39,Lind:2,Renville:2,Bouillaire:2,Seimei:2,Harmonia:2,brooken:17,Solder:39,Assessment:11,"crude-oil":22,Tempest:2,semiannually:6,wrongfully:6,pneumatic:1,devils:18,"oil-bearing":1,Sez:2,glottal:1,Berniece:2,surrendered:32,Bewkes:2,IGS:2,Firms:92,noninstitutionalized:1,"much-awaited":1,tunneled:16,glorifies:20,See:1030,"per-pupil":1,Ohbayashi:113,multiples:4,Terry:2,feasted:17,donate:42,consonants:4,"financial-industrial":1,Azabu:2,Weede:2,declaratory:1,Limiting:8,renews:20,Calamity:2,tuitions:4,"quiet-spoken":1,alters:20,cubes:4,"health-benefits":1,"peel-off":1,annual:3,mistrusted:112,cubed:17,spiritless:1,"fin-syn":1,"fail-safe":1,consume:149,Phillipines:4,Tahse:2,unremitting:1,jerks:4,"U.S.-European":1,volunteered:32,"computer-integrated-manufacturing":1,GHKM:2,headaches:4,Belatedly:6,Esteli:2,Cicognani:2,Angelenos:2,devouring:8,"non-state":1,Ripper:2,meeting:21,subfigures:4,"machinery-trading":1,"MacNeil\\/Lehrer":2,nihilistic:1,fending:8,Studios:46,"Nu-Med":2,Logica:2,foreshadowed:17,schmumpered:16,interposing:8,Hating:8,"tape-recorded":187,Walters:2,"thrift-related":1,adjusts:20,"pre-packed":1,Uhhu:106,embarks:20,moralistic:1,drawbacks:4,itself:53,ruts:4,"monsoon-shrouded":1,parroting:8,Inspect:39,"sit-in":22,unregisterd:1,Candid:66,"cost-accounting":1,Beatitudes:28,Ludmilla:2,definitional:1,"last-named":1,Embry:2,Ago:6,yesterday:163,Connick:2,solicited:85,flurry:78,Nancy:2,NAACP:2,CUTTY:2,Teheran:2,Vetere:2,axiomatic:1,plinking:1,Veteri:2,Spitzenburg:2,orthopedic:1,Farneses:28,Racial:1,"One-Step":2,parametric:1,Gruber:2,"one-year":3,mind:275,Darrow:2,Klux:2,fundamentalists:4,LaBerge:2,"earth-colored":1,"itty-bitty":1,"anti-assignment":1,Wilmette:2,Bibb:2,snag:25,makers:4,snap:50,shoring:8,ridiculously:6,bio:22,Did:16,big:532,bid:181,Dig:39,redeem:42,Ekaterinoslav:2,bit:1031,Lesko:2,Dip:39,pollinate:42,Kyowa:2,"run-of-the-mill":1,Gonzaga:2,conducive:1,Keeeerist:106,often:6,Falconer:2,"pay-as-you-go":1,Commercials:4,Istituto:2,abundantly:6,extremist:3,Friesen:2,Origen:2,accelerate:42,Nagle:2,Muncie:2,Commerciale:2,ourselves:53,"fought-for":1,"brown-paper":1,"social-welfare":1,scald:39,scale:25,Merritt:2,resonances:4,Reitman:2,eliminate:42,Nothing:47,"defined-benefit":1,"seventy-eight":1,depressions:4,squalls:4,Tempesst:2,continuing:30,costumes:4,Hisaya:2,blockbusters:4,"alternative-energy":1,lounges:18,costumed:17,Stendler:2,gynecologic:1,Pauling:2,Rebs:57,fairgoers:4,deductibles:4,belting:21,Bueky:2,"Flyer-Castle":2,Stadtisches:2,daisies:4,Mead:11,Hunters:65,"auto\\/homeowners":4,Literal:1,Sanderson:2,Paulus:2,proportional:3,Deidre:2,downhill:218,Rabkin:2,"after-duty":1,Conrad:2,multilayer:1,Bong:106,"solar-cell":1,Auckland:2,Caporale:2,misappropriating:8,overpower:39,"garbage-disposal":22,Wanted:231,Pavlova:2,Painter:11,Steel:11,Steen:2,PharmaKinetics:2,Itagaki:2,"investment-bank":1,"tree-lined":1,quiescent:1,unstimulated:1,Alusuisse:2,Fla:2,migrating:8,Steep:2,calico:3,Steer:39,presentments:4,Untold:66,originals:4,mavericks:4,clips:4,"tax-sheltered":1,Kringle:2,"information-system":1,Dreman:2,McCaskey:2,"mid-sized":1,"Huo-Shan":2,female:3,Overhead:163,cabs:4,dragging:55,Ragnar:2,"Rowland-Molina":2,streamlining:55,Barrier:2,humanities:4,Mormon:2,"post-earthquake":1,sterilize:39,"at-large":1,"log-rolled":16,pesticides:4,Rises:511,Medal:2,Relying:8,Rawl:2,announcing:8,IMELDA:2,likeliest:51,"ORGAN-TRANSPLANT":1,Pierpont:2,regionals:4,Gallon:2,Boutwell:2,rinse:25,"thirty-sixth":1,"treaty-negotiating":1,crofters:4,angriest:51,"high-rise-project":1,pulsing:8,Sumatra:2,Sentiments:4,intricate:1,"FHA-insured":1,breached:32,intensive:3,Barbee:2,CRITICAL:2,blaze:44,quarterly:34,mowed:17,staffing:5,"UBS-Phillips":2,annoy:42,"short-sale":1,"Gar-Dene":2,Tenite:2,"tire-patching":1,Chaplin:2,understandings:4,uncovering:8,populist:3,Crumble:2,fragmentations:4,"state-funded":1,"and...":102,"Pride-Starlette":2,Chapter:47,grooved:17,NTT:2,"post-bellum":64,uncomfortable:1,replicated:17,grooves:4,"lower-priced":1,formats:4,transplanted:14,advertised:81,falcons:4,Hammond:2,Hammons:2,Barnhardt:2,chasers:4,"material-formal":1,"casualty-insurance":22,Cassius:2,sins:4,Brandywine:2,Norge:2,sink:95,others:4,"non-Socialist":1,sing:42,sind:64,sine:147,irritating:1,widening:55,PIERCE:2,"employee-benefits":176,dispensers:4,tat:39,appended:17,"J.V":2,presidents:4,diagonalizable:1,silkily:6,"grade-A":1,"J.J":2,clockwise:6,Weber:11,Dale:11,taxiing:8,Jackstadt:2,glasnost:147,Brisk:1,determining:5,Dali:2,Daly:2,matinee:1,Laser:2,airlifted:17,"S&P":11,"S&L":11,Flanders:2,Lieppe:2,"strategic-planning":1,"high-inflation":1,debtors:4,Tharp:2,Reward:39,DFC:2,Weems:2,Marketplace:2,inclinations:4,MacLellan:2,tunnel:78,crickets:4,industrial:1,Chadbourne:2,unpacking:8,"drug-financed":1,Seizin:8,"e.g.":147,"higher-technology":12,Grosset:2,Indira:2,Halsmuseum:2,sanding:21,Artificial:1,recklessly:6,expandable:1,patisseries:4,serial:3,SynOptics:28,dinners:4,Krause:2,Paper:11,Ohls:2,Krauss:2,Alarmed:7,meditated:16,stock:205,Adenauer:2,ABB:2,railings:4,Dionigi:2,"car-market":3,"Index-related":1,Outperform:2,ABM:47,ABO:2,ABS:2,Sparkman:2,Depositary:40,yielded:32,Reye:2,drape:25,Carews:28,Principia:2,separations:4,Salisbury:2,Horns:4,"demi-monde":64,anionic:1,Yonehara:2,Ruettgers:2,languorous:1,"credit-data":670,Dudley:2,"razor-thin":1,preclinical:1,repentant:1,"split-fingered":1,Prielipp:2,shreds:4,subpoenaed:54,Gospelers:4,fortunate:1,envisage:39,bridges:18,negotiated:81,Disposable:1,whereof:736,labor:24,squatting:8,"junior-senior":1,NCAAs:4,"<":451,lunatic:1,infrequent:1,dam:569,Repnin:2,gauging:8,COMPANIES:123,Concorde:11,wiggier:12,rebel:205,Heitman:2,das:4,serpentine:1,Crampton:2,slacken:39,Poor:40,verifying:8,warned:32,radiant:1,"Oerlikon-Buehrle":2,constraints:4,federalists:4,Injuns:28,Armor:2,strip:44,"four-star":1,Roaring:2,Bonuses:4,Africanist:2,wolfishly:6,slumped:32,Comissioner:2,unstuck:1,thermoplastic:1,"R.R.":2,labile:1,Delbridge:2,Stalag:2,postpone:42,Bidermann:2,"fringed-wrapped":1,affirming:8,centrifuging:8,CSO:2,CSI:2,CSK:2,CSF:2,"majority-held":1,CSX:2,CST:2,CSV:2,Vries:2,CSS:2,CSR:2,turbans:4,wagged:16,Grade:2,"Tex-Mex":2,Fold:39,Grady:2,sorrowful:1,Folk:11,Developer:2,Whinney:2,"microprocessor-based":1,bleeps:4,improvements:4,Bethesda:2,"beer-related":1,commendations:4,expressionistic:1,covenants:18,sadly:6,laps:18,chased:54,Tbond:1,establishments:4,"non-encapsulating":1,time:25,natty:1,Spegititgninino:2,Canned:1,gear:44,unscrupulous:1,Huppert:2,retrench:33,"chemical-and-resource":1,unending:1,Cannes:2,Canner:2,loved:112,glamorous:1,Alakshak:2,BellSouth:2,Vacaville:2,spookiest:51,halcyon:1,"railroad-holding":1,propagandize:39,loves:72,Bolker:2,"seventy-fifth":1,"tax-writers":4,Perrier:2,"export-related":1,Blatz:2,sublunary:1,connectors:4,"fifty-ninth":1,ethnically:6,"mass-faxing":1,sayings:4,papiers:64,minimally:6,Dostoevsky:2,Enthusiastically:6,builtin:1,replanted:17,rediscovered:17,scimitars:4,trundles:20,trundled:32,Priest:2,Ernst:2,reveling:8,profoundest:51,YEEECH:106,Burma:2,allegorical:1,"Co-Renitec":2,hostesses:4,gather:42,"Movietime\\/Alfalfa":2,capita:504,gulled:17,Ashok:2,"Government-Sponsored":2,humanizing:8,kits:4,"Jerr-Dan":2,Banvel:2,shrugs:72,camping:21,circumpolar:1,"dealer-to-dealer":3,"NEC-compatible":1,Chanos:2,scuttling:8,resubmit:39,Bogartian:1,Kaul:2,exceptional:1,Brezhnevite:2,Kishimoto:2,stripes:4,enunciating:8,accrue:39,deputies:4,humanely:6,striped:1,Stockton:2,Provincetown:2,Cleaner:2,densities:4,Buchanan:2,calling:55,serviettes:4,Cleaned:17,ballplayers:4,Traders:56,dislodge:39,Constar:2,Parrillo:2,Grows:20,Chemists:4,phases:18,Mellon:2,"current-year":1,clearing:5,Aurora:2,peripherally:6,routing:55,derisively:6,routine:3,Mellow:1,Mellor:2,alveolar:22,nudged:16,"Canadian-U.S.":1,Kittler:2,packaged:14,Smoky:2,Silicon:2,Edgar:2,Smoke:2,Ave:2,"health-club":3,sou:64,straights:4,Bontempo:2,corroborees:4,Concurrently:150,Ethel:2,Ambrosiano:2,Louvre:2,wiederum:64,"credit-easing":3,"electronic-systems":4,embryos:4,sexes:4,"vantage-points":4,otherwise:218,fester:39,"make-overs":4,invasive:1,fostering:55,Hashidate:2,ASEAN:2,Blot:2,Segovia:2,glassless:1,Tocqueville:2,Muramatsu:2,LOTUS:2,crassest:51,Oranges:65,USO:2,Radiation:47,"most-indebted":51,Goldinger:2,upbeat:3,Hoskyns:2,Germantown:11,define:42,Taito:2,Marico:2,Winkler:2,Barell:2,Lynde:2,"rock-carved":1,USI:2,general:3,plaid:3,Glumly:6,cow:25,plain:34,rectangular:1,Uzbekistan:2,"high-ticket":1,deem:149,promoted:54,Bloc:2,revisited:32,Somerville:2,"late-afternoon":1,Tash:2,cereals:4,Hine:2,Rudolph:2,helped:151,preconference:1,landfills:4,tampered:16,claimed:32,Kerlone:2,exogamous:1,watchful:1,Winking:8,Kongsberg:2,Hino:2,Lenobel:2,cabinetmakers:4,BetaWest:2,Persianesque:1,"sweet-faced":1,blooms:18,injured:45,Resolved:17,tighten:42,taverns:4,sensed:32,"extra-caffeine":1,genres:4,Doppler:2,Teachers:41,injures:20,tighter:136,Bashir:2,raping:55,Eurobond:11,"Start-up":1,Nonconformist:2,Kihei:2,sets:18,Chimanbhai:2,position:24,Serbantian:2,Rattzhenfuut:2,"gas-fired":1,executive:22,"hoped-for":1,Tabak:2,Furuta:2,DePugh:2,topping:55,Instrumental:2,Teflon:2,Tass:2,terrorized:54,Amvest:2,Crus:2,Kraft:2,Itzhak:2,Coles:2,roofers:4,audibly:6,diehards:4,drugless:1,inviting:30,qualitative:1,Lintas:2,heed:95,Fear:47,soft:726,audible:1,Castillo:2,Gargery:2,cellists:4,Villamiel:2,Excel:2,Irina:2,swimsuits:4,Forte:2,Darvon:2,Zayadi:2,Oedipal:1,stuffy:1,"debate...":102,highlighting:8,treacheries:4,"parallel-computing":1,"then-pending":1,"technology-based":1,chains:4,regain:42,plumped:16,hose:25,"lower-tech":1,Lokey:2,unflaggingly:6,Maronite:1,host:25,expire:42,hoss:19,whacky:1,christened:32,KinderCare:2,Igor:2,greedier:12,blessings:4,"lower-than-forecast":1,Mayor:11,Giggey:2,"triple-A\\":1,"cha-chas":4,"over-arranged":1,chronic:3,lobbies:4,"non-callable":1,buckle:63,adversarial:1,awarded:54,Gaon:2,utopian:3,GRAB:2,conclusive:1,relishing:8,Queried:17,ivory:22,"Duro-Test":2,brand:1032,"Cavin-Morris":2,reminds:20,"Cmdr.":2,"money-fund":3,flexible:1,editing:21,Aquifers:4,Krepon:2,Compare:42,dozens:4,dangerous:1,annoying:3,backfires:20,contadini:4,avaliable:1,judiciaries:4,Gazeta:2,Arcadian:2,Arte:2,backfired:32,"cooperative-care":1,deaths:4,"boyish-looking":1,Ihmsen:2,barnyards:4,Jars:4,shooting:191,tarpaulins:4,misstated:54,unintelligible:1,Hawes:2,Vice:11,individuate:39,surreal:1,"poor-performing":1,misstates:20,Honeysuckle:2,Varo:2,handcrafted:17,insupportable:1,"Yankees-Mets":1,"eight-mile-long":1,"regular-season":1,nozzles:4,"zero-gravity":1,Rooney:2,misgauged:17,Shatilov:2,"Softer-than-expected":1,prevalent:3,oral:1,Thus:6,"Acting-President":2,Thun:2,Munchen:2,meteoritic:1,Marinaro:2,"Zero-coupon":3,thunderstorms:4,Packwood:2,legacies:4,levers:4,Coincidentally:6,Mandina:2,assembles:20,"all-cash":1,sleek:1,sleep:182,winningest:51,assembled:45,"G7":2,feeding:55,vile:1,expedients:4,Connoisseurs:4,Heimbold:2,Vernier:2,"C-V":2,"C-S":2,"juice-storage":1,lure:63,GT:2,GS:2,Fremantle:2,incurs:20,lurk:42,amorphous:1,Withhold:39,GF:2,GE:2,GD:2,Willamette:11,GA:2,GO:39,"Scrooge-like":1,GL:2,GI:11,"get-togethers":4,"program-bashing":1,Campaign:11,sunk:54,"water-proof":1,zing:2,admissible:1,Station:2,"mid-March":2,Go:216,smoky:1,Allegheny:2,Tenth:40,Windsor:2,osmotic:1,Mitch:2,razed:17,Taffner:2,Skypak:2,scrutinize:42,borrowings:4,"Claude-Eric":2,voluminous:1,Harrington:2,sulphurous:1,steriles:4,Barenholtz:2,"tile-roofed":1,frizzled:1,seeks:20,Marche:2,Barbanell:2,"six-gallon":1,digits:4,Wortham:2,changed:45,Rendering:8,donning:8,"gastro-intestinal":1,"card-member":3,changes:18,Peeter:2,glinted:16,yukked:16,Boxes:74,Decrying:8,Baily:2,"joint-research":1,punching:55,Cole:2,forums:4,anyhow:6,ebony:22,"fire-fighting":3,omits:20,"oil-poor":1,phenomenological:1,asses:4,slaughtered:54,ensnared:17,naive:3,"M.P.":2,Askington:2,muse:25,brushy:1,Pasatieri:2,pinching:55,arms:4,Fernandes:2,adjourn:39,Fernandez:2,must:1033,Claim:63,Oakbrook:2,ratifiers:4,cancellations:4,Cichan:2,Muhammad:2,Baptists:123,pavements:4,Clair:2,tugged:32,turnips:4,"Liberty-and-Union":47,scheduling:21,Huey:2,"quick-fired":17,unmeasurable:1,thoriated:17,Deli:2,intruders:4,grammatically:6,bunt:25,adjacent:1,iconoclastic:1,nonsingular:1,"pre-approved":7,predicated:17,Oooo:106,Yorker:2,predicates:4,burly:1,mourned:16,"self-ordained":1,Gradco:2,transcultural:1,hypnotic:1,"Del.":2,hypotheses:4,"spun-off":1,narcos:4,Podell:2,Sterilized:1,Irene:2,"heart-warming":1,Zapata:2,expects:20,Montgomery:11,reorient:39,Publicis:2,SharesBase:2,frightfully:6,carnal:1,talkative:1,digest:63,Addison:2,Simplesse:2,Dorr:2,writing:55,edits:20,Dora:2,stifling:30,"Institutional-type":1,tantalized:17,appoint:39,Reveals:20,"ten-day":1,Strasser:2,Reserves:92,JAL:2,publicizing:8,plates:4,Carballo:2,JAC:2,Winsett:2,obligingly:6,indeed:67,privileging:8,Radnor:2,explode:42,holdin:8,Adjustment:11,Transport:128,"USDA-sponsored":1,Duncan:2,Advil:2,unscrew:39,"production-rate":1,celebrating:8,Copying:116,Hatch:2,Duchenne:2,"COCA-COLA":2,reused:17,Netherland:2,iodothyronines:4,driving:5,Marguerite:2,bonnets:4,"knock-offs":152,"abortion-related":1,Toasting:8,Junior:1034,hemorrhaging:5,rail:25,Carreon:2,Gothicism:2,Roth:2,whereupon:127,"non-airline":3,superimpose:42,Carleton:2,fret:256,Mickey:2,Vic:2,Via:2,anthropomorphic:1,Vie:2,"mega-hit":3,Centre:2,foibles:4,Hotline:2,"stabilizing-conserving":1,corrections:4,inspectors:18,narratives:4,Rheinholdt:2,Borghese:2,Outreach:2,philosophical:1,decorticated:17,Delon:2,Haworth:2,scissors:4,Poorer:12,blunts:20,withheld:54,minaces:4,Pitcher:47,greedily:6,staminate:1,kinder:12,meanders:20,consented:32,montmorillonites:4,centered:54,conspicuously:6,"cross-fertilized":17,injected:54,kept:32,Georg:2,mercifully:6,expressionists:4,Minn:2,Previewing:8,nonperforming:450,nominate:42,Confession:47,reconstructing:8,preceeding:8,diuretic:22,Pierluigi:2,skinless:1,taint:78,"interest-rate-type":1,"catastrophic-illness":22,Asians:65,relayed:32,reminding:8,isolated:81,laughed:32,isolates:20,Gave:16,rides:18,"go-to-war":1,"married-put":1,Burling:2,Reports:1035,Prototypes:4,Ashley:2,delousing:8,genital:1,inexcusable:1,illogical:1,"radical-moderate":1,crazing:8,Gerstner:2,"WFAA-TV":2,"tool-and-die":1,Cleary:2,Rooms:4,"after-tax":3,Aeritalia:2,Dyke:2,Ku:2,"seven-fold":1,aromatics:4,mishandling:8,pops:20,"little-understood":1,worthiest:51,queer:1,Saxton:2,"circumvent...":102,"Flushing-Main":2,curricular:1,square:414,commence:42,Piepsam:2,enslave:149,Knit:39,"E-Z":1,squeaking:21,Chiodo:2,Molson:2,Wendler:2,Kiefferm:2,Grauer:2,uhhu:106,hobbing:8,dumpsters:4,CalMat:11,Hochiminh:2,licking:8,Duarte:2,CLAIMANTS:4,DeShano:2,"large-scale":1,Merkur:2,Hanaspur:2,"SS-20s":28,Hammett:2,"two-family":1,Duracell:2,Esquivel:2,sectionalized:1,richer:12,sporadic:1,"performing-arts":4,Lotteries:4,machinists:4,startle:39,Fallon:2,"ground-support":1,abstractionists:4,cajun:1,Pinnacle:2,bargains:18,Seaquarium:2,pegboards:4,brooked:16,Weidenfeld:2,yearago:1,faced:54,"alter-parents":4,Workstations:4,rightward:1,Contribute:39,players:4,Contact:269,"straw-hat":1,faces:72,hypocrites:4,"Freeport-McMoRan":2,"pay-for-performance":1,"luncheon-table":1,confide:42,betting:55,"governmental-affairs":152,dabbles:20,Samples:4,Geatish:1,redistributive:1,comical:1,jobless:1,Predicting:8,Renfrew:2,"John-and-Linda":2,confident:1,spread:1036,"Minneapolis-based":1,Shegog:2,Glenbrook:2,Nationale:2,affixed:14,bible:3,Cowen:2,catch:95,Johanson:2,"Cross-border":1,Klaus:2,greeters:4,Deland:2,"bingo-like":1,inviolable:1,Schoeppner:2,strangest:51,Wash:2,subjugate:39,cracked:112,transfering:8,precede:42,Aril:2,Edelstein:2,Outplacement:47,Ariz:2,lasciviously:6,Chipmunks:28,Historically:150,Schultz:2,profiteers:4,Obermaier:2,"Har-Lev":2,outface:39,Snoopy:2,heeded:32,Vacancies:4,Schulte:2,"Sweet-scented":1,Room:11,"A.H.":2,purposely:6,Petrossian:2,Roof:2,Latvia:2,Audubon:2,Roos:2,Root:47,cycle:25,censures:4,Gates:2,Patrol:11,neurologists:4,Apartments:2,Alton:11,frankest:51,Lockian:1,hearty:1,detained:54,censured:32,hearts:4,Mobil:2,"guitar-strumming":8,outnumbered:32,whimsical:1,Angleterre:64,"beggar-thy-neighbor":1,motherless:1,"stand-by":1,"non-Federal":1,pyknotic:1,"Janus-faced":1,Kryuchkov:2,IOU:2,Krug:11,IOS:2,exempting:8,NICHOLS:2,pitiful:1,EXPENSIVE:1,Krishna:2,submissive:1,casting:55,accede:39,Handstands:4,advances:18,"right-wing":3,bungling:8,toadying:1,slanders:4,convalescing:8,spawns:20,advanced:1037,"when-issued":7,"Garrick-Aug":2,Wilberforce:2,Lys:2,Kenmore:2,gifted:7,"near-equivalents":4,unsuspecting:1,informative:1,Shemona:2,diaphanous:1,Cascades:2,Lyn:2,"nuclear-arms":4,Badges:4,Horsely:2,deWindt:2,Casassa:2,"Euro-caps":4,"op-ed":1,tristate:1,exhausts:18,"FIRST-TIME":1,"precedent-based":1,Somay:2,convict:25,Astec:2,Scull:2,Syracuse:2,Yiren:2,arbitrated:17,feted:85,jejune:1,dropped:32,Greenstein:2,Titanic:2,Monieson:2,reassign:39,Revell:2,fetes:4,arbitrates:20,mooncursers:4,endorsing:55,Fair:129,"Castro-held":1,Seats:4,calculating:5,Fain:2,Birds:46,puzzle:25,Messaggero:2,uncontrolled:1,finely:6,Meriden:2,Profitt:2,rounds:18,EWDB:2,Abraham:2,Karpov:2,Puttnam:2,forbad:16,Herberet:2,Horne:2,prayerbooks:4,dank:1,Todman:2,"of...":102,Maryville:2,Pauley:2,"triple-B-plus":117,underreacting:8,solar:1,widgets:4,plumps:20,Salted:1,viva:147,Interlink:2,Gosset:2,vivo:80,wipes:20,prematurely:6,latch:44,Indonesians:28,Shriver:2,"front-line":3,Introduction:47,Caught:17,Furukawa:2,pawing:8,"per-capita":176,Micron:2,Melissa:2,Berne:2,blatantly:6,radioed:249,radically:6,Tatras:4,"right-angled":1,vanishes:20,"signal-to-noise":3,luscious:1,Thalmann:2,"Colorado-Ute":2,vanished:32,"hand-filed":1,permitting:8,KLA:2,Scandanavian:1,Double:1038,gallants:4,propelling:8,endorsers:4,stinkin:1,Permian:2,younger:12,apologizing:8,ineluctable:1,twotiming:8,serious:1,stacks:4,remarkable:1,Edge:11,alternatives:4,obviate:39,"PRO-CHOICE":1,Zagros:2,comments:18,remarkably:6,Pride:2,"prescription-drug":22,lisping:8,Reuschel:2,PepsiCo:2,"price-based":1,mistook:16,Mourning:8,abhorrent:1,Gevergeyeva:2,Jiotto:2,Seebohm:2,overwrought:1,"more-general":1,Intan:2,Eleanor:2,"ex-trucking":1,leathered:1,Athletics:46,Tractor:11,tortillas:4,Mycenae:2,unlaced:32,kingpins:4,Wycliffe:2,Unofficial:1,"red-faced":1,svelte:1,"tree-farming":1,slower:136,Coosa:2,Baptiste:2,"common-position":1,"less-than-exacting":1,slowed:32,"f-Includes":20,Midgetman:2,shulde:190,"Schering-Plough":2,"spin-off":22,"heavy-framed":1,Cocktails:4,orthodontics:4,stressful:1,Finmeccanica:2,Automotive:40,"tax-paying":1,Schulof:2,Streeters:113,Manzanec:2,"one-page":1,amounting:8,"multi-valued":152,Glennon:2,SUSPENDED:16,Translant:2,"push-offs":4,"cost-recovery":1,KLM:2,crippled:81,hoarse:1,tallying:8,Helmsley:2,Postipankki:2,"Hart-Scott-Rodino":40,snubbed:54,Crimes:113,"law-abiding":1,Pumblechook:2,mutters:18,rededicate:39,"socio-structural":1,"sawed-off":1,Ariel:2,chaired:81,modifying:8,graduated:45,"light-colored":1,Bengals:28,"not-so-favorite":1,dervishes:4,XFI:2,"post-midnight":1,dolphins:4,confounded:32,"middle-age":3,Owasso:2,"Ninety-Two":2,hawkish:1,Bengali:66,vaguest:51,Benefits:4,Ramble:2,"two-tail":1,"ex-convicts":4,"steel-hungry":1,Summary:11,Stride:2,dismal:1,shafts:4,Apocalypse:2,Sarney:2,"all-too-brief":1,contradicts:20,"third-rate":1,modified:81,resembles:20,ferry:25,modifies:20,"semi-automatic":1,"multiple-column":1,trump:25,intimating:8,tinted:14,"debt-free":1,Buxton:2,"Farvel-Topsy":2,inclosed:17,recuperating:8,bleary:1,"non-annualized":1,levy:24,"Soviet-made":1,Mahe:2,bonfires:4,filmstrips:4,heartbreaking:1,typewritten:7,doggone:461,Mid:2,COMPARE:39,branches:4,stupidly:6,branched:81,"public-fund":1,imagining:8,scammers:4,"taut-nerved":1,constituents:4,preening:8,motions:18,Zia:2,Wardwell:2,Folkerts:2,Glickman:2,Rinsing:8,LUTHER:2,paradoxically:6,redheaded:1,duplex:22,"ICL-GE":2,Effects:28,Barristers:4,"ex-Cubs":4,Voyles:2,"work-study":3,formidably:6,devastated:45,Odetics:2,LINTAS:2,Vogue:2,Tokuo:2,Platonic:66,Beutel:2,"frequency-control":1,"open-end":1,realistic:1,rangers:4,Heels:4,Brokaw:2,friendlily:6,rethinking:8,wearisome:1,"most-recent":186,footing:21,Exploratory:1,Abstractions:4,Miraculously:6,flaccid:1,Rosenwald:2,keno:1,"pollen-inhibiting":1,securites:4,opportunists:4,Cominco:2,Experts:4,Currys:2,"money-lending":1,"pound-deutsche":1,Nude:2,electrified:17,unfriendly:1,Musicians:57,Ruling:268,Cattolica:2,delude:42,"fair-use":1,Worriers:4,roosters:4,flare:44,peppering:8,econometric:1,Folkston:2,Welfare:11,Touch:2,Griselda:2,view:24,discontinued:81,programing:21,Muskoka:2,Giant:129,surviving:8,Dietrich:2,symbolic:1,exhaustible:1,retainers:4,Citizen:11,"W/NNP.R.G.":2,"non-packaging":1,Sonuvabitch:106,lootings:4,"anti-men":1,Saperstein:2,Capcom:2,Stegemeier:2,persuasions:4,"fifteen-sixteenths":4,EARNINGS:4,lobbyists:4,socialites:4,white:3,"question-and-answer":1,"accounting-rules":1,appointees:4,PDT:2,"anti-vivisectionists":4,PDN:2,"down-and-out":1,PDI:2,Indelicato:2,Disclosures:4,wide:97,DiGiorgio:2,survivals:4,crowded:45,poisoning:308,"recreational-vehicle":22,Thorstein:2,confessed:32,"pre-Gorbachev":1,Lavin:2,"Consumer-electronics":4,Cartridge:2,"balance-sheet":22,Yankton:2,fondest:51,"product-monoclonal":1,keynotes:4,strengths:4,dynamited:17,hyperfine:1,Vuitton:2,multiple:3,MLD:2,MLR:2,boiling:55,Nissin:2,moldy:1,multiply:42,MLX:2,"dried-up":1,"Maize-Products":28,nonaddictive:1,Verbal:66,Salads:4,Corabi:2,playing:5,mountainous:1,Beadles:2,readjust:39,cuddled:16,Lukman:2,Sorenson:2,idealisms:4,hack:25,"pre-emptive":1,"blue-eyed":1,multiplexers:4,crimped:7,Lyndon:2,"well-wishers":4,Concurrent:1,fickle:1,"Jordan\\/Zalaznick":2,Gallen:2,"blue-eyes":4,Telling:8,cautioned:32,subjugated:1,welled:16,lighted:45,Loewenson:2,lighten:39,Violence:11,Athenian:1,Sieux:2,Gwendolyn:2,radiations:4,clerks:4,Eleazar:2,Similar:1,veiled:14,aluminum:22,Sankai:2,Kona:2,impolite:1,Kong:2,naked:1,Minute:2,Cycle:2,Collector:11,ignored:54,"head-butting":1,encourages:20,professes:20,emote:39,Westford:2,"downfall...":102,Ettore:2,ignores:20,"state-federal":1,professed:112,encouraged:45,"non-systematic":1,visceral:1,addled:7,"truck-manufacturing":1,spoons:4,"husband-wife":1,Quennell:2,unappealing:30,Differential:1,Frampton:2,thunderstruck:1,originated:1039,scavengers:4,"George-Barden":2,Renchard:2,fiddling:122,Reasonable:1,comb:25,come:1040,interdicting:8,Muffin:2,Freedman:2,"Winterthur-based":1,"non-oil":1,"power-generation":22,swaggering:8,"single-season":1,dispatch:25,Futotsu:64,Retails:4,ZBB:2,Morcott:2,Teodulo:2,Bicycling:2,TRUSTS:4,"finger-tips":4,deposited:54,declining:5,Herscu:2,Excess:1,enraptured:32,Peale:2,religiously:6,"Neb.":2,Rosemont:2,Deanna:2,"Mass.-based":66,Inouye:2,Yukio:2,twigs:4,assessories:4,WEIRTON:2,allnight:1,"Al-Faqih":2,"movie-production":22,shops:18,"war-damaged":1,Alexander:2,Brosterman:2,bunters:4,Zendo:2,capping:55,Jacinto:2,Followin:8,whirred:16,"about-faced":16,"employment-tax":1,mold:44,locking:13,attributing:8,bows:18,"less-experienced":1,Hazards:4,physical:3,"cost-to-benefit":1,circulatory:1,"high-production":1,"I\\":2,IS:20,barges:18,IT:53,muffled:103,IV:2,macroeconomic:1,IN:245,IC:2,barged:54,Dynamics:74,IG:2,IF:127,longing:21,sed:16,perennial:1,swatches:4,caressing:55,It:38,Yakovlevich:2,Il:280,Io:2,In:1041,Philmont:2,tweedy:1,desolate:1,tweeds:4,captures:72,drafters:4,Woodland:2,violent:1,Farnworth:2,"cable-TV":47,kneeling:8,captured:320,Broadly:6,Lanham:2,MacLean:2,worthier:12,Jets:113,styles:4,mugged:17,Terminaling:2,Solomon:2,styled:45,Aber:64,correcting:55,unwilling:1,Came:16,championing:8,"N.V.":2,Thermopylae:2,Pin:39,Pia:2,Pic:2,Turbulent:1,Pie:2,clays:4,Spoken:2,Hafner:2,"most-likely-successor":1,Pip:2,shunned:32,Chapin:2,Since:206,"value-added":1,Abex:2,"multimillion-dollar":3,Destroy:2,"Three-part":1,"pre-Hugo":1,slice:44,Dulaney:2,slick:3,Creditanstalt:2,"Right-to-Die":1,Perennial:66,Castellanos:2,"self-chosen":1,Raether:2,"foreign-loan":1,itching:55,inspect:42,loudest:380,voracious:1,"seven-year":1,fabled:1,VOTED:16,healthiest:51,"insurance-rate":1,earlier:1042,baffled:81,Snakes:4,"non-productive":1,"self-fulfilling":1,Bufton:2,scornful:1,Datacrime:2,Cubism:47,Eddington:2,Dairl:2,modernists:4,"industry-funded":1,revolutionaries:4,scoffed:32,Coykendall:2,determing:8,determine:42,inadvertent:1,Stoyer:2,backwater:22,calamities:4,funerals:4,hoarding:21,disposed:81,ferris:1,"Hanover-Chalidale":2,expatriate:1,disposes:20,municipalities:4,rainless:1,vested:14,fundamentals:4,"first-phase":1,docks:4,RDF:2,OOH:2,fabricate:42,temperaments:4,Brinker:2,Wacky:2,tiptoe:39,Koepf:2,"sure-enough":1,"life-insurance":22,POWERS:4,Special:66,"personal-injury":3,surly:1,contributors:4,modules:4,Herry:2,contributory:1,Merrimack:2,Mission:11,"high-spirited":1,toiled:32,trundle:78,together:1043,ingeniously:6,Shimizu:2,spends:20,tracings:4,Golomb:2,"area-code":1,swords:4,Avalon:2,"tax-deferred":1,"Motoren-und":2,Plessis:11,Naval:40,whiskery:1,Ghormley:2,Poduska:2,staunchly:6,Refiners:4,"hawk-hatching":1,Additives:28,booked:54,calls:132,synergies:4,associatively:6,"thirty-caliber":1,exhausting:30,"Republican-controlled":1,"endangered-species":4,Gateway:2,nurseries:4,Tube:2,"small-cap":1,outpacing:8,Pharmical:2,"lower-court":3,Evansville:2,propagandizes:20,"long-deprived":1,Jutting:8,"Major-League":2,Baytos:2,"desktop-presentation":1,"high-security":1,"Japanese-supplied":1,Trees:113,longtime:3,"St.-Pol":2,"Iowa-based":1,grinds:72,Choong:2,howlers:4,ultraviolet:3,reordering:21,Bawer:2,prolonged:45,Trimble:2,RICO:2,"cement-mixing":1,quipped:250,Rarely:6,Lathouris:2,Hellfire:2,Rancho:2,Bridgestone:2,professing:8,"Corp.-Toyota":1,busing:8,Shopping:321,Hilliard:2,resettled:17,aptly:6,Theological:2,Subsidiaries:4,"well-prepared":1,Gilborn:2,oncoming:1,Brigadoon:2,disburses:20,"Neo-Ecclesiasticism":2,disbursed:54,frightens:20,Zermatt:2,Pauline:2,Short:301,prognoses:4,Helpern:2,supposedly:6,wild:97,Shore:11,Ankeny:2,Shorn:17,somewheres:6,skidded:32,observing:8,handlers:4,"Richardson-Vicks":2,allows:20,Halleck:2,Sponge:2,TEAMSTERS:28,MORE:458,Sheriff:11,suddenly:6,semiconductors:18,vertebral:1,genealogies:4,fearfully:6,Gant:2,"much-revised":1,vertebrae:4,Evaluation:47,Columbus:11,Comerica:2,wield:42,"T-shirt":19,demeaned:17,permanently:6,pausing:8,Tobacco:11,Bandow:2,"re-elected":81,"Ten-year-old":40,Shropshire:2,"Francisco-area":66,Barriers:4,MobiTel:2,"three-masted":1,soloists:4,Approaching:8,undreamed:14,Kabul:2,Toulouse:2,trappings:4,"location-minded":1,"instrumental-reward":1,shielded:54,infests:20,Goldwater:2,"oat-based":1,"cross-react":33,Sows:4,CARE:2,palest:51,Brahmsian:1,prompting:55,joints:4,Cresswell:2,"super-strict":1,Lyphomed:2,"trading-house":1,Speaker:11,urinals:4,Paterson:2,"drug-consuming":1,"more-efficient":1,chores:4,Dresden:129,benzodiazepines:4,Electron:11,stemming:8,hoaxes:4,Improve:39,mould:39,"three-lawyer":1,Lowell:2,Metzenbaums:28,Hanft:2,reflect:42,"Etch-a-Sketch":2,Mackinac:2,ballads:4,"equivalent-choice":1,replete:1,shortcomings:4,Fairbrothers:2,Seas:74,Sear:39,"counter-intelligence":1,groundless:1,"funeral-accessories":4,"cross-legged":1,Seal:2,Psithyrus:2,Witman:2,Describing:8,"best-case":1,Oce:2,Weizsaecker:2,dissolving:30,quarrels:18,unusually:6,Shillong:2,"Asian-American":1,Brunswick:2,forgiving:30,Polyakova:2,March:2,"reference-points":4,"bridged-T":2,inward:218,"appeals.":4,harmless:1,verifiably:6,"self-willed":1,Bowing:8,Shaiken:2,"public...":102,cantons:4,"MGM\\/UA":129,return:205,racoons:4,Downbeat:2,Mephistopheles:2,"state-of-the-market":1,cigarettes:4,Rotenberg:2,"dividend-related":1,SURGED:16,Rag:2,Rae:2,Ran:16,"penalty-lending":1,Ram:2,Raj:2,reservists:4,"Eight-foot-tall":1,cobblestones:4,Rat:2,Sport:11,McNeil:2,Rax:2,Ray:144,pirates:4,needless:1,Fichte:2,Foothills:113,"Burke-Rostagno":2,pirated:17,Complex:40,"are...":102,Warehouse:11,Vappenfabrikk:2,wangled:16,theologians:4,Fiap:2,Cinemactor:2,Lakes:111,"sea-turtle-saving":1,Pullover:2,Prophet:2,mildewy:1,kilns:4,Univest:2,gimbaled:1,causally:6,Camerino:2,enveloping:8,"big-deposit":1,Tambo:2,pullbacks:4,MTU:2,Playworld:2,Wingback:2,Breakthrough:2,Dorian:2,Scherer:2,WGBH:2,Praises:20,"wide-scale":1,radical:3,churning:55,Westdeutsche:2,unredeemed:1,Jacky:2,abrogated:17,"semi-minor":1,Olof:2,interact:149,coasts:4,Clancy:2,Aircraft:113,"ever-so-Oxonian":1,pitted:54,finances:18,imperfect:1,Rollie:2,gagwriters:4,dethroned:17,exploded:32,litigated:17,convinces:20,"Boston-based":1,Rollin:2,indecisively:6,"non-competitive":1,Unifil:2,convinced:212,explodes:20,"time-servers":4,dans:64,stall:25,stalk:33,"consumer-finance":1,"cradle-to-grave":1,dang:1,"Winthrop-University":2,stale:1,"MD-82s":28,cleaner:515,depletes:20,IIcx:2,gals:4,imports:18,Reilly:2,decadent:1,needs:1044,IIci:2,oaken:1,depleted:54,cleaned:54,gall:25,Steinkuehler:2,"federal-state":3,Perkins:2,Agoeng:2,"seven-story":1,Bullet:2,cropped:32,gains:170,unperturbed:1,broadcastings:4,ARF:2,headstones:4,park:25,Klopfenstein:2,Benzes:2,Meltex:2,"little-girl":1,coastal:1,Melted:17,Gotschall:2,Tabarro:64,explicable:1,seasons:4,infrastructures:4,Volta:2,doggie:1,"lowest-paying":1,Straus:2,unheralded:1,Gracie:2,spiralis:4,fond:104,"changed...":102,antilock:1,Suor:64,endocrinologists:4,Launder:2,Reaganauts:4,technologically:6,"ground-based":1,Masato:2,reconnoiter:33,Highest:51,arrowheads:4,sacking:8,Antinori:2,Haijac:2,"better-off":335,citybred:1,"Russian-language":1,"bug-free":1,concededly:6,relational:1,instinctive:1,Yorkshire:2,Institutions:56,Passenger:47,"Bible-loving":1,crucifying:8,Marchers:28,Chamorro:2,sacrificium:64,cartoons:4,Litvack:2,baroque:3,Jellison:2,stump:25,dump:95,CITIZEN:2,boulders:4,Negotiators:4,arc:25,dumb:1,are:230,facings:4,cleverly:6,unsure:1,arm:25,Mineral:2,Pavlov:2,"book-publishing":22,"EP-3E":2,roundhead:22,freshmen:4,unpaved:1,drooping:8,Dongen:2,unions:4,banalities:4,Finders:2,Commerzbank:2,Streisand:2,ulcerative:1,Fax:11,dandily:6,Fay:2,importers:4,fetchingly:6,Zara:2,Hardee:2,clods:4,MINOR:66,movers:4,fascicles:4,"textile-producing":1,"no-fat":1,Appropriate:1,Cornfield:2,axiological:1,reassessed:16,enchained:17,finds:72,Hallowell:2,Birch:2,unsigned:1,renationalize:39,incandescent:1,untracked:1,pursue:42,semipublic:1,acrid:1,eyewitness:22,sever:42,suspenders:4,thermodynamics:4,"AT&T-sponsored":1,Indocin:2,Kompakt:2,Plan:11,"per-sale":1,Fan:59,debasing:8,"super-secret":1,"loan-by-phone":1,"ten-hour":1,misbehaving:8,heighten:39,Mindscape:2,Motsoaledi:2,churchly:1,"long-hoped-for":1,Examiners:113,"all-black":1,"Jaguar-GM":40,Colonia:2,Affaire:2,Tip:2,rip:63,Tin:2,rim:78,"TRACY-LOCKE":2,rig:24,rid:1045,"earnings-related":1,"Interest-rate":1,lengthy:1,Bipartisan:1,minin:8,"U.S.-based":1,lengths:4,"debt-riddled":1,ideologies:4,propping:8,Jiffy:40,"farm-state":40,"time-&-motion":1,Schroders:2,prosodies:4,fastens:20,Blyth:2,"one-gee":1,brooding:5,Kipling:116,moving:5,Drug:11,uneasily:6,deluding:8,Duzan:2,Lilien:2,castigates:20,"junk-market":3,"Harbor\\/Save":2,metis:4,Smyrna:2,thermostated:17,"two-edged":1,solids:4,castigated:54,broods:4,Myrdal:2,starved:17,"information-products":4,"two-step":1,Takes:20,Measurements:123,Kochola:2,reincarnated:32,Everly:2,Taken:17,retired:81,Nope:106,Triomphe:2,"old-name":1,Adventurers:4,"Sundance-based":1,violations:4,incomes:4,"non-algebraically":1,joyless:1,Desprez:2,Arapacis:2,Continential:2,"off-network":1,Kia:2,Jehovah:2,pithy:1,recond:16,Brealey:2,incidental:1,Manthey:2,"chin-ups":4,"hawk-faced":1,PATOIS:2,resourcefully:6,"anti-heroes":4,eluding:8,traits:4,Libor:2,Channel:11,Milgrim:2,Discovered:17,Fledermaus:2,compressors:4,nosing:8,pros:4,Albuquerque:2,prop:95,Reflecting:8,Comiskey:2,Adelman:2,"business....":102,prod:63,"red-handed":1,apathetic:1,Substance:47,ecumenicists:4,scalawags:4,firebombed:17,denationalizations:4,Dreiser:2,Lackland:2,"price-level":1,Translated:17,Edley:2,intense:1,Signet:2,Malamud:2,Lanyi:2,bleeders:4,seeped:32,most:1046,tortuous:1,Liqueur:2,Petco:2,subvert:42,greets:20,Azalea:2,modal:1,Dittamore:2,"Wood-products":4,credible:1,cutoff:22,Hawkins:2,Robards:2,hoodle:106,resigns:20,Approximately:6,piteous:1,"non-interest-bearing":1,Hawking:2,paradigmatic:1,credibly:6,Speidel:2,MACHINES:2,Shulman:2,"securities-trading":3,unstructured:1,osseous:1,pallid:1,signifies:20,unadorned:1,signified:32,Thermoforming:8,Povich:2,Shape:11,"cash-value":1,perplexing:1,Compeyson:2,Backstitch:39,girlfriends:4,tasting:55,crank:63,Chesaning:2,"in-accord-with-nature":1,crane:25,billed:81,"Roto-Rooter":2,"then-senior":1,REIT:2,Partlow:2,"good-cop":1,Leon:2,Thatcher:2,torpedoing:8,Mirabella:2,Rabb:2,Mirabello:2,called:506,"single-domain":1,Cooperation:2,soars:4,bluechip:1,"long-established":1,ether:281,Pagni:2,Faxes:4,tentative:3,ulcerations:4,Nyers:2,towers:18,Mount:128,Saylor:2,Junkerdom:2,WITHHELD:17,Bahamian:1,Skills:4,"six-cent":1,"auto-safety":1,inflame:39,Arbeitskommando:2,Meekison:2,Discussing:8,Nautilus:40,Kanab:2,we:1047,Kanan:2,Sevigny:2,Piccadilly:40,Rawson:2,reproaches:20,extruding:8,Mott:2,Rugeroni:2,"farm-equipment":22,"pur-poises":4,Casualty:2,"sale-lease-back":1,"politico-sociological":1,Monthly:40,Wagnerian:1,locating:8,Asses:4,Asser:2,Bureau:2,Asset:11,contributions:4,Mound:2,cupboards:4,Howry:2,pax:64,Leber:2,sniped:250,fenced:7,McQuown:2,UAW:2,mEq:2,UAL:2,"bullet-proof":1,fences:4,snipes:20,wished:32,lynch:39,bedrooms:4,melding:55,wishes:72,Masterpieces:28,Giraldi:2,Flattau:2,Oliveira:2,"fast-paced":1,descend:42,quintuple:1048,BCE:2,"electronic-publishing":1,"CFC-12":47,outdo:42,noted:85,Gevurtz:2,Teletypes:4,Pyle:2,malignant:1,REALLY:2,Upper:40,"pro-Republican":1,fermenting:8,Sections:4,Morgenzon:2,Responses:4,astounded:14,Antwerpsche:2,waiting:267,Link:158,Linh:2,"half-seriously":6,Line:11,fastenings:4,Moxley:2,"cf.":80,Affaires:2,Wiess:2,Dotson:2,Reebok:2,"anti-homosexual":1,Dictionaries:4,rosaries:4,"far-afield":1,tarred:54,"non-public":1,"non-conformists":4,Walinsky:2,MMG:2,Bathing:21,jeweled:1,skyrocketed:32,spiced:1,"e-Ames":2,evading:8,territoire:64,Nowak:2,spices:4,initials:4,Copeland:2,Beneficiaries:4,Minks:2,miscreant:3,Robert:2,endotoxins:4,offends:20,Soria:2,Pyszkiewicz:2,Survanta:2,unhappy:1,motor:70,apply:42,"cross-purposes":4,"Accounts-a":74,discerns:20,Chemistry:2,carcinogenic:1,iced:1,Maxell:2,Guiftes:4,Curiously:150,weeping:55,Secrecy:47,Rocco:2,Willem:2,Feis:2,credulous:1,Wilcke:2,cooperate:42,Choir:47,archangels:4,faultless:1,Scouts:28,benignant:1,Creighton:2,Whirlwind:2,paralleled:17,"do-gooders":4,slaps:72,Fonseca:11,Balaguer:2,instrumentalities:4,splinters:4,Bis:2,Northeners:2,tour:315,proof:22,brightening:8,Nielson:2,tap:182,immediacies:4,Photoprotective:2,Czerny:2,tax:44,tad:163,tae:64,tag:25,tam:64,tan:3,onions:4,hyacinths:4,"Sixty-eighth":2,decorating:21,"Middle-aged":1,inaugural:3,actualities:4,Jist:6,"Second-half":1,"base-metals":4,panic:44,trusses:4,"E.Y.":2,Ringwood:2,Fossey:2,Groot:2,BANK:11,Cadet:2,Tallahassee:2,"semi-conscious":1,Repertory:2,"drought-stunted":1,Texts:4,crawling:8,pharamaceuticals:4,sweetens:20,Wrightson:2,demonstrations:4,Birr:2,unjustified:1,Walpole:2,Birk:2,Ursa:2,Santovenia:2,Bird:11,underwater:34,voiceless:1,terriers:4,Grandsire:2,unpaintable:1,Dyk:2,Margler:2,violating:8,crash:205,"multibillion-dollar":1,Ilotycin:2,flotillas:4,"two-inch-square":1,practice:44,"socio-archaeological":1,commended:54,CRSS:2,emanations:4,Successors:4,sinners:4,Summer:77,entrench:39,"recorded-music":1,Arbitragers:4,tallied:54,Accurate:1,eased:32,Unloved:2,"building-related":1,paleocortical:1,trap:25,eases:20,upheavals:4,Bobbie:2,Edson:2,eloquent:1,Auditors:4,Sidra:2,Narcotics:111,jollying:8,Owings:2,"semi-isolated":1,Lamborghini:2,RUSH:25,Festiva:2,Frantisek:2,contradictions:4,Aon:2,WAVE:2,Stowe:2,janglers:4,outings:4,Nearly:6,grits:4,brilliantly:6,"four-foot-high":1,adhesives:4,"once-staid":1,unenunciated:1,Older:1049,dusts:4,pleas:4,"Hyatt-Clark":2,Entree:2,bedazzled:17,tyrannis:64,dormitories:4,flotations:4,segregated:45,barns:4,substantiate:39,Americanized:16,Currency:47,"German-language":1,cain:190,ionic:1,precepts:4,timbers:4,Prussian:2,McNally:305,"K.":2,hitherto:6,Cradle:2,gratuitously:6,homers:4,Local:66,destinations:4,Wised:2,individualizing:8,droop:174,"top-ranking":1,accent:25,Rankin:2,Exhibited:17,Illingworth:2,"long-dollar":1,Wings:65,Ke:2,Ko:2,Swiveling:8,resurrects:20,"skip-a-month":1,"sherbet-colored":1,"low-ability":1,constituent:22,Ky:2,KC:2,KB:2,Maxine:2,Outstanding:66,KK:2,KN:2,Boxy:1,Strekel:2,"long-shanked":1,Italianate:1,Harrold:2,outsmarted:32,"U.Cal-Davis":2,woebegone:1,Veteran:66,"U.S.concerns":4,outstrip:39,Terex:2,Soccer:2,excusable:1,"non-defense-related":1,florid:1,allergies:4,oozing:8,"Southmark\\/Envicon":11,divert:42,divers:152,standup:3,McGuire:2,repairs:18,Bedfellows:4,McGuirk:2,Solution:11,offend:39,Zilligen:2,"specialty-metals":4,"Lappenburg-Kemble":2,Whimsey:2,deny:42,Customary:2,Bent:2,neoconservative:1,dens:4,Hazeltine:2,Benz:2,dent:25,Bend:59,Beng:2,Earth:11,Benj:2,inane:1,Carlyle:2,illuminations:4,upright:218,BGS:2,Stoddard:2,Anastasio:2,narcotraficantes:64,wry:1,holistic:1,Fibreboard:2,Inaugurates:20,humanitarian:3,"Karl-Birger":2,candidates:4,procreative:1,"kapok-filled":1,Textron:2,"hurricane-related":1,horns:4,Baringer:2,workin:8,Folklore:47,diagnosing:55,fronting:55,Parodi:2,Whiskey:11,Paragraph:11,Gladius:87,words:4,merchandised:17,"self-evident":1,penetrate:42,wordy:1,Humboldt:2,Nikita:2,Derchin:2,Lieber:2,waterfalls:4,generations:4,Wiggins:2,"investment-area":1,ebb:25,Thinking:217,Irvine:2,Nanook:2,gutters:4,scoured:81,recanted:32,closer:1050,closes:132,Olissa:2,Ravitch:2,gliders:4,congressionally:6,complementary:1,proteases:4,Slavs:28,rumblings:4,closed:1051,cinders:4,masterful:1,pants:91,audiovisual:1,ribonucleic:1,beverages:4,Minnie:2,"snap-in":1,Facing:8,tiers:4,"Self-designated":1,"beautifully-built":1,broadside:34,Modesto:2,Sprecher:2,blackbirds:4,safely:6,withdraws:20,Schockler:2,Satisfying:8,Podufaly:2,shoving:8,"CD-ROM":11,"VA-backed":1,RICOed:249,Earlham:2,Brice:2,Zapotec:1,Brick:11,withdrawn:17,"three-fourths":176,freedmen:4,"unable-to-locate":1,BiiN:11,Makes:20,thumbed:32,broadcasts:18,swabbed:16,"corporate-securities":1,validating:8,Heflin:2,agreements:4,monoclonal:1,butchers:18,"property-and-casualty":1,yff:127,merrily:6,Masada:2,Gerrard:2,"time-sensitive":1,saner:12,"Mortgage-Backed":66,Castles:4,readied:54,Fogler:2,Halloween:2,irate:1,Sanchez:2,Shylockian:1,Greenberger:2,Targets:20,Quieter:12,Gypsum:2,Arnott:2,"smashed-out":1,chanter:64,Yokosuka:2,Gaveston:2,"Anti-apartheid":1,"fourth-fifths":4,"capitalist-exploiters-greedy-American-consumers-global":1,"Bellomo-McGee":2,Briton:11,"credit-services":4,stadiums:4,vintage:3,"English-speaking":1,fusillades:4,adverse:1,Ponchartrain:2,"down-the-line":1,merciful:1,panning:8,Olick:2,"last-ditch":1,sweetened:45,Resource:2,tactful:1,Reis:2,Entex:2,Terrours:4,coalfields:4,Rein:2,Euroyen:2,Reik:2,appropriated:54,Adults:4,contendere:64,superconcentrates:4,"light-blue":1,ARA:2,"fourteen-year-old":1,appropriates:20,ARE:33,Ancinec:2,Piraeus:2,outgrow:39,superconcentrated:1,ARM:11,contenders:4,Eaux:2,boos:4,boot:25,cloaks:4,"me/PRP":2,"hard-to-get":1,Aruba:2,rocked:32,danced:32,"every-day":1,"pro-consumer":3,InfoCorp:2,Far:294,overspending:21,Fat:129,Stalins:28,Fab:2,Mokhiber:2,ski:139,Joynt:2,branch:25,knoe:39,monetarists:4,tawny:1,jocund:1,protesters:4,Grundfest:2,Recording:11,KerrMcGee:2,know:182,knot:25,"food-aid":1,Newspaper:11,Hesperus:2,variants:4,"anti-terrorism":1,LIMITED:66,Compromising:8,bedfellows:4,Reuveni:2,taxpayers:4,"most-desired":1,"mid-December":11,Stephan:2,starred:32,majesterial:1,Gibraltar:2,JONES:2,traitors:4,because:206,shabby:1,mosquitoes:4,Boucheron:2,"shorter-term":200,Wishart:2,holler:39,"price-to-book":1,leaden:1,"first-six":1,Singapore:2,Manaifatturiera:2,leaded:1,Pickfair:2,Glazes:4,Glazer:2,outrageously:6,scalpels:4,Mosettig:2,Glazed:17,Stairs:2,Population:11,STANLEY:2,poets:4,miniskirts:4,codetermines:20,idlers:4,kernels:4,Ptolemaic:66,Mediation:2,Rothschild:2,leased:45,guffaws:4,"Large-deposit":1,nationalities:4,Acoustic:2,Canning:2,after:245,throng:78,squealed:32,getting:8,"high-end":1,"let-the-locals-decide":1,"owl-shaped":1,Outer:983,Suffice:39,Gelder:2,corralling:8,Wildwater:2,"computer-integrated":1,"flower-bordered":1,dispossessed:14,"knife-men":4,Weaver:2,fired:54,centurions:4,dagers:4,"best-educated":1,noxious:1,Duse:2,indictments:4,Flavus:2,Dust:11,uncontrollable:1,Alps:74,Lezovich:2,piously:6,contradictory:3,"percentage-point":1,"policy-setting":1,"Hans-Dietrich":2,Alpo:2,"hearing-impaired":17,instructive:1,Ruysch:2,Dowie:2,lubricated:17,McMoRan:2,"non-existent":1,heralding:8,"no-driving":1,Kankakee:2,meaningless:1,Bailout:2,dives:18,Josephson:2,Sessions:113,"cut-to-a-familiar-pattern":1,"scandal-tripped":1,immobilized:17,Kalikow:11,roars:20,sick:1,Improving:55,"long-time":1,Manufacturing:11,Milburn:2,Applebee:2,Sandifer:2,Attlee:2,shown:54,contends:20,interventionists:4,supple:1,geysers:4,SELL:39,Riyadh:2,mosaics:4,outslugged:17,problematics:4,expands:20,footloose:1}; var LEXICON_TAG_MAP = [["NNP"],["JJ"],["NNP"],["JJ","NN"],["NNS"],["VBG","JJ","NN"],["RB"],["JJ","VBN"],["VBG"],["VBG","VBG|NN","JJ","NN"],["JJ","NN","NNP"],["NNP","NN"],["JJR"],["JJ","VBG"],["VBN","JJ"],[],["VBD"],["VBN"],["NNS","VBZ"],["NN","NNS"],["VBZ"],["NN","VBG"],["NN","JJ"],["NNP","JJ","NN","UH"],["NN","VBP","VB"],["NN","VB"],["VBP","JJ","VB"],["NN","VBG","JJ"],["NNPS"],["JJ","LS|JJ"],["VBG","JJ"],["NNP","VBP"],["VBD","VBN"],["VBP"],["JJ","NN","RB"],["PRP$","NNP"],["VBN","VBP","NN","VB"],["VB","VBN","VBP","JJ","NN","RB","VBD"],["PRP","NNP"],["VB"],["NNP","JJ"],["NNPS","NNP","NNS"],["VB","VBP"],["RB","NN"],["NN","VB","VBP"],["VBN","VBD","JJ"],["NNP","NNPS","NNS"],["NN","NNP"],["VBN","VBN|JJ","JJ","VBD"],["NN","JJ","VB","JJR"],["VB","VBP","JJ","NN"],["JJS"],["PRP","NNP","DT"],["PRP"],["VBN","VBD"],["VBG","NN"],["NNS","NNP","NNPS"],["NNS","NNPS"],["VB","VBP","VBZ"],["NNP","VB"],["."],["JJ","DT","NN","RB","RB|JJ"],["VB","NN","VBD"],["VB","NN"],["FW"],["NNPS","NNS"],["JJ","NNP"],["RB","UH"],["RBR"],["VBZ","VBN","."],["NN","JJ","VB"],["NNP","JJ","VBN"],["VBZ","NNS"],["NNS","VBZ","NNPS"],["NNP","NNPS"],["NNS","UH"],["WP","NNP"],["NNP","NN","NNPS"],["NN","VBP"],["WP"],["NN","FW"],["VBN","JJ","VBD"],["JJ","VB"],["VB","JJ"],["$"],["VBD","JJ","VBN"],["PRP","NNP","VBP"],["NNP","FW"],["PRP$","NN","NNP"],["DT","NNP"],["VBP","VB","NN"],["NNS","NN"],["NNS","NNPS","NNP"],["NNS","JJ","NN"],["JJ","IN","NN"],["VB","VBP","NN"],["NN","JJ","RB","JJS"],["JJ","RB"],["NNP","VBN","JJ"],["NNP","JJ","NN","VB"],["NNP","MD"],["VBG","JJ","NN","VBG|JJ"],[":"],["JJ","VBD","VBN"],["JJ","NN","VB"],["IN","JJ","RB","RP"],["UH"],["JJ","RB","RBR"],["IN","RB","NNP"],["VBZ","NNP"],["VBD","FW"],["NNPS","NNP"],["VBD","VBN","JJ"],["NNP","NNS"],["VBN","VBD","NNP"],["NNP","NN","VB","VBP"],["NNP","VBG"],["JJ","NNP","NN"],["VBN","VB","VBD"],["CC"],["NNP","VB","VBP","NN"],["JJ","RB","VB"],["NN","JJ","VBG"],["NNS","NNP"],["IN","NNP"],["UH","NNP"],["JJ","RB","UH"],["IN"],["NNP","NN","VB"],["NNP","JJ","NN"],["NNP","NNS","NNPS"],["JJ","NNP","RB","VB"],["VBZ","NNS","NN"],["``"],["NNS","NNPS|NNS","NNPS"],["JJ","NNS","NN"],["JJR","RBR"],["IN","RB|IN","JJ","NN","RB","RP"],["JJS","JJ"],["NN","JJ","VB","VBP"],["VB","VBD","VBN","VBP"],["NNP","JJR"],["NN",","],["RB","NNP","NN"],["NNP","NNPS","NN"],["FW","JJ"],["JJ","IN","NN","RB","VBN","VBP"],["FW","NN"],["JJ","VBN","NNP"],["VBP","VB"],["RB","NNP"],["VBD","VBN","VBP"],["NNS","JJ"],["NN","JJ","VB","NNP","NN|JJ"],["JJR","RB"],["NNP|NP"],["DT","JJ","NN"],["NNP","VBN"],["NNP","VBP","NN"],["VBN|JJ"],["VBN","NN"],["NNS","VBZ","VB","UH"],["JJ","NN","RB","VB","VBP"],["NN","RB"],["NNP","FW","NN"],["RB|VBG"],["DT","NNP","RB"],[")"],["NN","JJ","RB"],["NN","VB","NNP"],["NNS","NN","VBZ"],["NNP","JJ","NNPS","NNS"],["NNP","VBD"],["RB","JJ","NN","VB"],["VBP","NN"],["UH","NN"],["JJ","NNS"],["VBG","JJ","RB"],["NN","JJ","RB","NN|JJ","NN|RB","NN|JJ|RB","RB|NN|JJ"],["NNPS","NNS","NN"],["NNP","JJ","NN","RB"],["NN","VBD","VBN","VBP","VB"],["VB","NN","VBP"],["NNP","UH"],["NNP","RBR","RB","JJR"],["VBN","JJ","NN"],["JJ","JJS"],["VBD","JJ"],["VB","NNP","VBP"],["NN","VB","JJR","VBP"],["MD"],["NN","VBG","VBG|NN"],["NNP","JJS"],["NNP","VBG","JJ","NN"],["RB","NNP","CC","IN","UH"],["JJR","NNP"],["VB","VBN"],["RB","JJ","NNP"],["JJ","NNP","NNS","NNPS"],["VBG","JJ","VBG|JJ"],["JJ","JJR"],["NNP|VBN"],["JJ","NN","NN|JJ"],["RB","NNP","DT"],["NN","JJ","VB","NNP"],["NN","VBP","JJ","VB"],["IN","RB"],["RB","NN","RP","NNP","VBP","JJ"],["NNS","VBZ","NN"],["NNP","JJ","NNPS"],["VBG","NNP","NN"],["NNS","VBZ","CC","RB"],["VBN","VBN|JJ","VBD","JJ"],["NN","JJ","NNP"],["VBD","NN","NNS","VBN"],["NN","JJR"],["VB","NNP"],["VBG","NN","NNP"],["RB","JJ"],["NNS","VBP","VBZ"],["RB","NN","JJS","JJ"],["IN","RB","RP","NNP"],["NNP","NNPS","PRP"],["IN","RP","NNP"],["JJS","RB","RBS"],["NN","NN|VBG","VBG|NN","JJ","VBG"],["NN","NN|JJ","JJ","VB"],["PRP","JJ"],["NNP","VBZ","NN"],["VBG","NNP"],["VBP","NNP"],["VBN","NNP"],["JJ","NN","RB","UH"],["RB","IN|RB","RBR","VBP","IN","JJ","NN","RP","VB"],["VBP","JJ","NN","VB"],["NN","UH"],["JJR","JJ","NN"],["NN","VB","NNS"],["NN","NNP","LS"],["NNP","NN","NNS","NNPS"],["JJ","VBP","VB"],["PRP","NNP","NN"],["NNP",","],["RB","NNP","JJ","NN","UH"],["NNP","FW","JJ"],["IN","RB","RP"],["DT"],["VB","FW","NN"],["RB","JJR"],["JJ","VBD"],["VBD","NN"],["PRP","NN"],["JJ","JJ|NN","NN"],["JJ","VB","NNP"],["NN","NNP","NNS"],["JJ","NN","VB","VBP"],["VBP","NN","VB"],["RB","RB|CC","CC"],["NNP","NN","VBG"],["VBP","JJ"],["VB","NN","NNP"],["JJ","NN","VBG"],["NNP","RP","NNPS"],["VBG","JJ","NN","VBG|NN"],["VBP","JJ","NN","VB","VBN"],["NN","LS|NN"],["NNS","NNS|NPS","NNPS","NNP"],["VBG","NN","JJ"],["NN","NNP","VBG"],["NN","NNP","VB"],["IN","JJ","NN","VB","VBP"],["VBN","VBD","JJ","NN"],["NNP","NNPS","JJ","NN"],["IN","SYM"],["JJ","VBP","RB","VB"],["NN","RB","VB"],["VBZ","JJ","NNS"],["RB","JJ","NN"],["JJ","RB","VB","VBP","NN"],["JJ","VBP","NN","VB"],["FW","NNP"],["NN","CC"],["RB","NN","JJ"],["NNS","NNP","VBZ"],["NNP","JJ","NN","JJR"],["JJR","RBR|NN","JJ","JJR|RBR","NN","RB","RP","RBR|JJR","RBR"],["RBR","JJR","RB"],["SYM","NN"],["NN","VB","VBP","VBZ"],["NNPS","NN","NNS"],["JJ","NNP","NN","UH"],["VBN","VBD","VBN|JJ"],["NN","JJ","VB","VBD","VBN","VBP"],["WRB"],["NNP","JJ","RB"],["NNP","NNPS","JJ","NN","RB","NNS"],["NNS","FW"],["VBG","JJ|VBG","VBG|JJ","JJ","NN"],["NN","JJ","RB|JJ","VB"],["JJR","RB","RBR"],["NN","PRP"],["JJ","RB","NNP"],["JJ","VBP","RB"],["NNP","NNS","JJ"],["VBP","VBN","VB"],["NNP","RB"],["WP$"],["PRP","VB"],["NN","VBG|NN","VBG"],["JJ|NP"],["NN","VBD","VBN"],["VBN","JJ","NN","VB","VBD","VBP"],["NNP","VBP","NNPS","NNS"],["VB","RB","UH","NNP"],["JJS","RBS","JJSS","NN","RB"],["NN","FW","VB"],["IN","NNP","RB"],["VBP","VB","NNP"],["NN","JJS"],["VB","VBP","NNP"],["VBN","VBN|JJ","VBD"],["NNP","VBG","NN"],["JJ","VBN","VB"],["NNS","NN|NNS","NNS|NN","NN"],["IN","RP"],["IN","NN"],["NN","NNP","JJ"],["VBG","NN","JJ","VBG|NN"],["RB","VB","NNP","VBP","JJ"],["VBN","JJ","VBN|JJ"],["UH","VBP"],["VBP","FW","RB"],["IN","NNP","JJ","RB"],["IN","VBD","RB","RP"],["VBZ","NN","NNS"],["JJR","JJ"],["VB","UH","VBP"],["JJ","NN","RB","NNS"],["JJ","NN","VBN"],["JJ","IN","RB"],["JJ","VB","NNP","VBP"],["UH","RB"],["VBN","VB"],["VBG","JJ","NN|VBG"],["JJ","VBN","NN"],["VBD","VBN","VB"],["NN","VBP","NN|JJ","JJ","VB"],["VB","JJ","VBP"],["NN","NN|NNS"],["RB","RP"],["NNP|JJ"],["NNP","PRP","FW","JJ","NN"],["VB","NNP","VBD"],["VB","VBP","NN","NNP"],["NN","VBN","JJ","VB"],["RB","PDT","JJ"],["NN","VBG","NN|VBG","JJ"],["VB","RB","VBP","JJ"],["VBZ","VB"],["IN","FW","RB"],["FW","VBD","CC","NNP"],["NNS","RB"],["VB","NNP","NN"],["JJ","VBN","VBP"],["VB","NN","VBP|VBD","VBD","VBN","VBP","VBD|VBP"],["NNS","JJ","VBZ"],["JJ","JJ|VBG"],["NNS","NN","NNP"],["NNPS","VBP"],["PRP","PRP$"],["DT","NNP","JJ","NN","VB"],["JJS","NNP","RBS","RB"],["JJ","NN","VBD","VB","VBP"],["VB","VBD","VBN","VBP","NN"],["NNP","VBD","NN"],["VB","JJ","NN","RP","VBP"],["NNP","NN","VBP"],["JJ","PRP$"],["NN","RB","VB","VBD","VBN","VBP"],["DT","NN","RB","CC"],["JJS","RBS"],["RB","RBR"],["NNP","FW","NN","RB"],["NNP","SYM"],["VBG","JJ","NN","RB"],["VBD","VB"],["VBN","VBD","VBP"],["IN","RB","VB","JJ"],["VBZ","RB","NNS","VBP"],["IN","FW","NN","RB","RP","IN|RP","NNP","RP|IN","RBR","VBD"],["FW","JJ","NN"],["VBN","JJ","VBD","VBP"],["VB","VBP","JJ"],["NN","VB","VBD"],["WRB","NNP"],["NNP","NN","UH"],["JJ","NNPS","NNP"],["IN","VB"],["RBR","RB"],["VB","VBN","VBP","VBN|TO","VBP|TO"],["RB","IN"],["NNP","NN","NNS"],["NNS",","],["NNP","LS","NN"],["PRP$"],["UH","VB"],["WP","NNP","PDT","WDT"],["NNS","NNPS","NN","NNP"],["IN","FW","RP","NNP"],["WP","WDT"],["RB","FW","VB"],["VB","NN","RB"],["JJ","VB","NN"],["NNS","VBN"],["NN","JJ","RB","VB","VBP"],["NNS","NN|POS"],["VB","VBP","VB|NN","JJ","NN"],["CC","IN","JJ","RB"],["PRP$","UH","PRP","JJ"],["NN","VBP","JJ","RB","VB"],["JJ","NNP","VBN"],["VBD","VBN","VBP","VB"],["NN","RB","VB","VBP","JJ"],["NNP","JJ","NN","VBG"],["VBG","NN","NN|VBG"],["VB","IN","JJ","JJ|IN"],["JJ","VBG","RB"],["JJ","NN","NNP","VBN"],["NN","VBD","VBN","VB"],["NN","LS","NNP"],["RB","RP","JJ"],["NNP","NN","RB"],["NNP","NN","VBG","VBG|NN"],["JJ","VBN","LS|JJ"],["VBD","NN","VB","VBN","VBP"],["IN","NNP","RBR","JJ","RB","RP"],["JJ","NN","UH"],["EX","LS|EX"],["IN","JJ","NN"],["NN|JJ"],["NNP","JJ","LS","RB"],["JJR","RBR","VBP","JJ","RB","VB"],["VBG","VBG|NN"],["NNP","NNS","NN"],["VBG","NNP","JJ"],["NNP","VBP","VB"],["JJ","NNP","NNPS"],["WDT"],["NN","JJ","NN|JJ"],["NN","VBP","JJ"],["JJ","VBG","NN"],["SYM"],["VBD","JJ","VB","VBN"],["NNP","NN","FW"],["JJ","VBN","VBP","VB"],["JJR","RBR","JJ"],["JJ","RB","VB","UH"],["RBR","JJR","NNP"],["JJR","RBR","RB"],["JJ","NNP","RB"],["VBN","JJ","NN","VB","VBD"],["JJ","UH"],["WDT","DT"],["VBG|NN","VBG"],["IN","JJ","NN","RB"],["NN","VB","JJ"],["JJ","NN","VBP"],["VBN","JJ","VB","VBD"],["RB","CC","FW","IN"],["FW","IN","NN","PRP"],["JJ","VBP","NN","RB","RP","VB"],["VBN","VBD","JJ","VBN|JJ"],["RB","FW"],["DT","NNP","PDT","IN","RB","WP","WDT"],["NNPS","NNP","NNS","VBP"],["IN","RB","RP","RB|RP"],["FW","IN"],["RB","NNP","IN"],["PRP$","PRP","PRP$R"],["NN","JJ","RB","VB"],["VBD","JJ","NN","VB"],["VBG","JJ|VBG","JJ"],["JJ","PRP"],["NN","RP","VB","VBP"],["RP"],["FW","LS","NN"],["NN","VBP","RB","VB"],["MD","NNP"],["NNP","JJ","NN","NNP|JJ"],["IN","JJ","IN|RB","RB","RP","VB","NNP",",","RBR"],["FW","UH","PRP"],["JJ","JJ|RB"],["VBG","VBG|JJ","JJ"],["VBD","NNP","VBN"],["NNPS","NNP","VBZ"],["NNP","JJ","NNS"],["VB","JJ","NN","VBP|VB","VBD","VBN","VBP"],["VB","NNP","MD","NN","VBP"],["VBG","VBG|NN","NN"],["UH","IN"],["NN","RB","NNP"],["IN","CC","FW"],["CC","FW","IN","JJ","NN"],["NNP","RB","JJ"],["NNS","FW","NN"],["NN","VB","VBN","VBP"],["VBN","VBD","VB"],["NN|SYM"],["VBN","JJ","NN","VBD"],["NNP","VBD","VBN","JJ","NN","RB"],["RB","NNP","JJ"],["NNP","VBZ"],["JJS","RBS","RB"],["MD","NN","VB"],["IN","NN","RB"],["JJR","NN"],["NNS","NNP","NNPS","RB"],["JJ","NN","VB","VBN"],["JJ","RB","VB","RB|RP"],["PRP","SYM","NN"],["VB","JJ","NN"],["VBD","VBN","NNP","VB"],["VBN","VBD","VBP","VB"],["VBN","VBN|JJ","JJ"],["NNP","NNS|VBZ","VBZ"],["VBD","JJ","VBN","VB"],["NNP|NN"],["VB","VBP","JJ","NN","RB"],["("],["RB","VBP","JJ","NN","VB","UH"],["IN","NNP","NNS"],["NNPS","NNP","JJ"],["JJ","RB|JJ"],["RB","RB|JJ","JJ"],["RBS"],["VBP","FW","NN","NNP","VB","UH"],["NN","JJ","MD"],["VBG","NN","VBG|NN"],["VB","VBN","VBP"],["RB","VBN"],["TO"],["VBG","VB"],["!"],["VBN","JJ","RB","VBD"],["WRB","RB"],["FW","IN","JJ","NNP"],["DT","PDT"],["VBG","JJ|VBG"],["NN","VBP","VB","UH"],["NN|NN"],["NN","VB","NNP","VBP"],["VB","JJ","NN","VBP"],["FW","NNS"],["CC","IN","JJ","NN","RB"],["NN","JJR","RBR"],["NN","VB","UH","VBP"],["VB","NN","NNP","VBP"],["NNPS","VBZ","NNP","NNS"],["VBD","VBP","JJ","NN"],["NNP","NNS","NNPS","JJ","NN","RB"],["DT","RB|DT","DT|RB","RB","PDT"],["VBP","VB","IN"],["RBR","JJ","NN","JJR","JJS","RBR|JJR","NNP"],["NN","VB","VBD","VBP"],["PDT","NNP"],["VB","FW","VBP"],["NNP","NNPS","JJ","NN","RB"],["FW","NN","RP"],["NNS","LS|NNS"],["NN","JJ","UH"],["IN","CC"],["VBD","JJ","VB","VBN","VBP"],["VB","VB|NN","NN","RB","VBP"],["DT","NNP","NNS","PRP","FW","JJ","LS","NN","NNPS","VB"],["JJ","NN|NNS"],["NN","JJ|RB","VB"],["NN","NNP","VBP","VB"],["VBD","VBN","JJ","VBN|JJ"],["NNS","NNPS","NN"],["DT","RB"],["JJ","PDT","DT"],["NNP","NN","UH","VB"],["NN","JJ","VBP","VB","NN|VB"],["VB","NNP","VBP","NN"],["NN","RB","VB","VBP"],["NNS","JJ","NNPS"],["JJ","VB","VBP"],["NNP","IN"],["VBG","NN",","],["NNS|NN"],["JJ","NN","RB","VB"],["RB","IN","JJ"],["NN","VBG|NN","JJ","NN|VBG","VBG"],["JJ","NN","NNS"],["WP|MD|NP"],["DT","RB","PDT"],["CC","NNP"],["NNP","NNS","NNPS","JJ"],["VBD","NNP"],["VBN","JJ","VB","VBD","VBN|JJ"],["IN","NNP","NN","RB"],["VBN","VBD","JJ","NN","VB"],["NN","VBD"],["MD","NNP","NN","VB"],["NN","VBP","IN","VB"],["VBG","VBG|JJ","JJ","NN"],["JJ","VBD","VBG","VBN"],["JJ","NNS","NN","RB"],["JJ","JJS","NN"],["JJ","NN","RB","VBN"],["JJ","NN","RB","VB","NNP"],["NN","VBD","VBP","JJ","VB"],["NNP","JJ","UH"],["JJ","NN|JJ","NN"],["IN","VB","NNP"],["VBN","JJ","NNP"],["EX","NN","RB","UH"],["NN","JJ","JJR"],["JJ","VBN","NNS"],["JJ","JJ|RB","RB"],["PRP$","PRP|VBP"],["NNP","VBD","VBP","VB"],["NNS","NN","NNPS","NNP"],["FW","NN","RB"],["DT","VB",",","VBN","NNP","FW","JJ","LS","NN"],["VBN","JJ","VBN|JJ","VB","VBD","VBD|VBN"],["VBD","VBN","JJ","NN"],["JJ","RB|JJ","RB","VB","VBP"],["IN","JJ","NN","RB","VB"],["JJ|CC"],["UH","NN","RB","NNP"],["VBP","NNP","VB"],["IN","RB","NNP","UH"],["NNP",".","LS","NN"],["JJ","IN","NN","RB","NNS"],["RB","JJ","VB","RB|JJ"],["DT","RB","NNP","PDT","NNS|DT"],[","],["NNPS","VBZ","NNS"],["VBZ","NNS","VBP"],["NNP","NNPS","NN","VB"],["WP","NN"],["JJ","FW"],["VB","NNPS","VBP"],["VB","VBP","FW","NN"],["VB","FW","NN","VBP"],["NNS","NNP","NN"],["JJ","VBP","NN","RB","VB"],["NN","JJ","VBG","VBG|NN"],["NN","JJ","NNS"],["VBG","NN","JJ|VBG"],["NN","JJ|NN","JJ"],["NN","VB","VBP","JJ"],["JJ","RB","JJR"],["NNS","NNPS|VBZ"],["NNPS","NN"],["VBP","VB","VBZ"],["VB","VBP","NNP","NN"],["VB","JJ","NN","VBD","VBN","VBP"],["NN","VBN","JJ"],["NN|JJ","JJ"],["NNP","POS","NN"],["VBD","NN","VBN"],["IN","RP","JJ","RP|RB","RB"],["RB","RBR","WRB"],["JJ","NNPS"],["VBD","VBN","VBP","NN","VB"],["JJS","NNP","RBS|JJS","RBS"],["RB",",","JJR","RBR"],["NN","NNP","RB"],["NN|NNS"],["NN","VBG","JJ","VBG|NN"],["VB","NNP","IN","RB"],["NNP","JJ","VBP"],["VBN","JJ","VBN|JJ","VBD"],["RB","."],["RB","JJR","RBR","JJ"],["IN","JJ"],["NNS","VBZ","RB"],["VB","NN","VBP","JJ"],["PRP$","PRP"],["JJ","NN","NNPS","NNP","NNS","VBP"],["NNP","NNS","NNPS","VBZ"],["VBN","JJ","VB"],["VB","VBP","UH"],["PRP$","NN","RB"],["IN","NNS"],["NN","VBP","JJ","VB","JJR"],["MD","VBP","NN","RB","VB"],["VB","VBN","VBP","JJ","NN"],["RB","UH","NNP"],["RB","CC"],["NN","VBN|JJ","JJ","VB","VBD","VBN","VBP"],["NN","RB","VB","NNS"],["NN","NNP","JJ","LS"],["VBG","VBG|JJ","VBG|NN","JJ","NN"],["NNP","VBP","JJ","VB"],["NN","NNP","PDT","DT","RB"],["NNP","NNPS","NNS","NN"],["NNS","VBN","VBZ"],["DT","NN","RB","UH","NNP"],["DT","RB","UH"],["JJ","VBN","IN","NN","RB"],["VBD","VBN|VBD","JJ","VBN"],["UH","VBN","JJ"],["JJS","NNP"],["VBD","VB","VBN"],["NN","FW","NNP"],["NNP","JJ","VBD"],["RB","RB|RP","RP"],["NNS","JJ","NN","NNS|NN"],["VB","JJ","VBP","NN"],["VBD","VBP","JJ","NN","VB"],["IN","JJ","NNP"],["NN","VBP","JJR","VB"],["NNP","VBZ","NNPS"],["JJ","NN","JJR"],["VBD","VBN","VBD|VBN"],["RB","JJ","NN","UH"],["JJ","NNS","NN","VB"],["IN","NNP","RB","RP"],["JJR","RBR|JJR","JJ","JJR|RBR","NNP","RBR"],["VB","VBP","NN","RP"],["NNS","JJ","NN","RB"],["NNPS","VBP","NNP|NPS","NNP","NNS"],["LS"],["JJ","NNS","RB"],["NNP","VBG","JJ"],["NNP|VB"],["TO","NNP","NN"],["NN","VB","VBG","VBP"],["VBN","VBD|VBN","VBD","JJ"],["CC","DT","NNP"],["IN","WRB"],["NNP","CC","IN"],["VB","IN","VBP"],["RB","WRB"],["VBG","VBG|NN|JJ","JJ","NN"],["NN","IN","JJ","VBP","RB","VB"],["JJS","RBS","IN"],["JJ","VBN","VBN|JJ"],["NNP","."],["NN","JJ","RB","VB","VBP","VBZ"],["JJ","DT","NN","RB","VB","NNS","PDT"],["NNP","NNS","NNPS","FW"],["NNS","NNP","NNPS","NN"],["NNP","FW","VBD","VBN"],["VBG","VBG|JJ","NN"],["RB","NNP","FW","JJ","NN"],["NNPS","NNP","NNS","FW","VBZ"],["JJ","JJ|VBG","VBG"],["VB","VBD","VBN","VBP","JJ","NN"],["NNP","NNS","JJ","NN"],["NN","NNP","UH"],["FW","WDT","NN"],["RB","NNS","JJ"],["VBN","JJ","VBD","VBD|VBN"],["RB","WP"],["VBD","VBN","JJ","VB"],["NN|IN"],["JJR","JJ","RBR"],["VBN","VBD","VBP","VBN|JJ","JJ"],["UH","FW","JJ","NNP"],["WRB","IN"],["VB","NN","RB","VBP"],["NNP","FW","JJ","NN"],["JJ","PDT","RB","UH"],["RB","JJ","RP","JJR","RBR"],["NNP","JJ","VB"],["SYM","LS","NN"],["JJ","RB","NNP","PDT","DT"],["EX","RB","UH"],["NN","NN|JJ","VB"],["NN","IN"],["VBN","RBR","VBD","JJ"],["IN","JJ","NN","RB","RP"],["JJ","RB|JJ","NN|JJ","NN","RB"],["JJR","IN","RBR"],["NNPS","JJ"],["NN","JJ","VBP"],["NNP","JJ","VBN|JJ","VBN"],["VBN","JJ","NN","VB"],["IN","NNP","CC","JJ","RB","RP"],["VBG","UH"],["MD|VB"],["JJ","NNP","RB","UH"],["VB","VBD","VBN"],["NN","NNP","VB","VBP"],["NN","VB","UH","JJ"],["JJ","CC"],["WRB","NNP","UH"],["NN","NN|JJ"],["UH","NNP","NN"],["VB","NN","UH","NNP"],["JJ","VBP","NN"],["UH","NNS"],["NN","JJ","LS","NNP"],["VBG","VBG|NN","JJ"],["VBN","NNP","JJ"],["UH","RB","NNP"],["IN","JJ","RB"],["VBN","JJ","VBD","JJ|VBN"],["DT","NN","VB"],["RB","EX","JJR","PRP$"],["NNP","JJ","LS","NN"],["VB","VBN","NNP"],["VBP","FW","NN","VB","NNS","VBZ"],["JJ","NN","RB","VB","FW","IN"],["NN|DT"],["JJ","PRP$","PRP"],["NNP","PRP","JJ"],["DT","VBD","VBP","NN|DT","IN","JJ","NN","NNP","PDT"],["NNP","NN|JJ","JJ","NN|JJ|RB","NN","RB","RB|NN|JJ"],["VBP","NNP","VBZ"],["VBD","VBN","JJ","RB","VB"],["JJR","JJ","NN","JJ|JJR"],["CC","DT","IN","RB"],["LS|NN"],["IN","JJ","RB","NNP"],[";"],["IN","CC","FW","JJ","NN"],["NN","VBP","FW","IN","RB","VB"],["VBG","IN"],["RB","FW","NN"],["NN","NNS","JJ"],["NN","FW","NNP","NNS"],["NN","DT","JJ","RB","UH","NNP","NNS","NN|POS",",","VBG","VBP"],["VB","VBD","VBN","JJ","NN"],["VBD","JJ","NN","VBN"],["JJ","LS","RB","NNP"],["NNP","NN","JJR"],["NNP","CC"],["NN","JJ","VB","VBP","VBZ"],["NN","VBG","VBG|JJ"],["VBN","VBD","VBN|JJ","JJ"],["NNP","NN","JJ"],["NNPS","NNP","NN"],["VBN","JJ","VBD","VBN|JJ"],["NNS","NNP","NNPS","VBZ"],["NNP","VBD","VBN"],["NNP|CC|NP"],["NNP","JJR","FW","NN"],["NNP","DT","FW"],["VB","VBD","VBP","NN"],["VBN","NN","VB"],["NN","VBG","NN|JJ"],["NN","LS"],["RB","IN","JJ","NN","RP","VB","VBP"],["VB","VBN","VBP","NNP"],["FW","DT"],["FW","NNP","DT","NN"],["DT","NN"],["MD","NN"],["VBN","NNP","VB"],["NNP","NN","VB","UH"],["NN","VBN"],["VBN","VBP"],["NNP","UH","NN"],["DT","JJ","NN","RB","UH"],["TO","VBG"],["NNP","JJ","NN","NNS"],["NNP","JJ|NP","JJ","NN"],["JJ","DT","NNP","PDT"],["CC","VBP","JJ","RB","NNP"],["FW","IN","JJ","NN"],["VB","JJ","NNP"],["CC","NNP","IN"],["JJS","RBS","JJ"],["NNP","NNS","VBZ"],["VBN","JJ","NNS","VBD"],["VB","VBN","VBP","NN"],["RB","JJ","NN","RP"],["VBG","JJ","NNP"],["CC","NNP","SYM"],["NNS","NNPS","NNP","NN"],["VB","JJ","NN","RB","VBP"],["VBD","NN","VBP"],["RB","NNS"],["NNP","FW","VBP","VB"],["NNS","VBD"],["JJ","VBN","RB"],["FW","IN","NN"],["NN","JJ","VB","SYM"],["NN","VBP","VB|NN","RB","VB"],["VB","VBP","MD","NN"],["TO","RB"],["NNP","JJ","NN","VB","VBZ"],["NN","RB","JJ"],["NN","VBG|NN","JJ","VBG"],["DT","CC","PDT"],["NNP","NNS","NN","NNPS"],["NN","IN","JJ","RB","VB","IN|RB","VBP"],["VBG","NN|VBG"],["JJ|JJR"],["CC","IN","NN"],["VBN",".","JJ"],["VBN","VBD","VBD|VBN","JJ"],["NN","FW","IN","JJ","VB","VBD","VBP"],["VBD",":"],["RB","JJ","NN","JJS"],["NN","VBD","VBN","JJ","VB"],["JJ","NNP","NNS"],["NNP","JJS","JJ","NN"],["NNP","NNS","NNPS","NNS|LS"],["VBZ","NN"],["VBN","VBG"],["JJ","NN","RB","VB","UH"],["FW","NNS","NN"],["NNP","NNPS","NN","NNS"],["WP","NNP","PRP"],["NN|WRB"],["NN","RP"],["RB","VB","UH","VBP"],["JJ","RB","VB","VBP"],["VBN","NN","VBD"],["NN","VBZ"],["JJ","NN","RB","NNP"],["NN","JJ","VB","VBD","VBN"],["NN","CC","VBP","VB"],["JJ|IN"],["DT","CC","IN","RB","RBR"],["JJ",",","JJ|RB","RB","VB","VBP"],["NNS","VBZ","JJ"],["NN","UH","NNP"],["VBZ","VBP","NNS"],["JJ","NNPS","NNP","NNS","NN"],["DT","CC","JJ","NNP",","],["IN","JJ","RB","RP","RBR","IN|RB"],["VBG","NN","VB"],["JJ","NN","RB","RP"],["RB","RBR","RP"],["JJ","NN","VBP","RB","VB"],["IN","RB","VBD"],["NN",",","NNP"],["VBN","VBD","JJ","VB"],["VBD","VBN","NNP"],["NNP","VBP","NN","VB"],["RBS|JJ"],["WP","WDT","WP|IN"],["NN|VBG"],["JJ","NN","RB","RB|JJ"],["JJ","IN","NN","RB","NNP"],["NNS","."],["PRP","FW"],["PRP","VBP","RP"],["VBG","JJ","NN","NN|VBG"],["VBG","NN","RP"],["VBN","VBD","VBG"],["NN","FW","JJ","RB"],["JJ","RB","NNP","IN"],["VBN","VBD","VBP","VBD|VBN","JJ","NN","VB"],["IN","CC","NNP"],["IN","NNP","RB","IN|JJ"],["WDT","WP"],["JJ","VBP","RB|JJ","NN","RB","VB"],["JJ","NN","RP"],["NN","VBD","VBP","VB"],["SYM",",",":"],["NNP","IN","NN"],["VB","NN","VBD","VBN","VBP","JJ"],["NNP","NNS","NNP|NPS","NNPS","NN"],["RB","JJ","JJR","NNP","RBR"],["NN","RB","VB","IN","JJ"],["NNP","NNPS","JJ","LS","RB"],["JJR","RBR","NN"],["NN","VB|IN"],["RB","PDT"],["JJS","JJ","RB"],["NN","VB","VBN"],["WRB","NNP","RB"],["NN","NN|VBG","VBG|NN","VBG"],["#"],["NN","PRP$","JJ","VB","PRP","VBP"],["IN","NN","RB","RP"],["VBG","RB"],["VBN","VBD","JJ","VB","VBN|JJ"],["VB","FW","IN","VBP"],["NN","JJ","VB","NN|JJ"],["NNPS","NNS","VBZ"],["JJR","JJS","CC","RB","RBR","RBS","RBR|JJR"],["JJ","RB","VBG"],["VBD","VBP","JJ","VB"],["FW","VB"],["NNP","NNPS","JJ"],["VBD","JJ","VBN","JJ|VBN"],["NNP","JJ","NN","NNPS"],["JJ","JJR","RB"],["NN","VBP","VB","NN|VB"],["IN","DT","NN","RB","RP","UH","WP","VBP","WDT"],["IN","RB","IN|RB","RBR"],["JJ","NNP","VB"],["NNS","RP"],["WDT","RB","WP"],["NNPS","NN","NNP","NNS"],["DT","NN","RB"],["UH","PRP"],["DT","NNP","CC"],["VBD","JJ","NN","VB","VBN","VBP"],["NNP","JJ","PRP$"],["NN","JJ","JJ|NN"],["NN","JJ","VB","UH"],["NN","VBG","VB"],["NN","VBP","MD","VB"],["VBN","NN","VB","VBD","VBP","JJ"],["NN","FW","RB"],["NN","LS","NNP","NNS"],["JJR","RBR","JJ","RB"],["PRP","NN","NNP"],["VB","JJ","VBD","VBN","VBP"],["NN","NN|VBG","VBG"],["NN","FW","VB","NNP","VBP"],["JJR","JJR|RBR","RBR|JJR","JJ","RB","VB","RBR"],["VBG","JJ","NN","VBN"],["JJ","JJ|VBN","VBD","VBN"],["NNP","FW","LS","NN"],["MD","NNP","JJ"],["VBN","JJ","NN","RB","VBD"],["RB","JJ","RP"],["NN","FW","IN"],["PRP","JJ","PRP$"],["VBG","FW"],["VBN","VBD","VBN|VBD","JJ"],["RB","NNP","NNS","JJ","UH"],["PRP","DT"],["NN","FW","IN","JJ"],["VBG","NN|VBG","JJ","NN","RB"],["UH","NNP","RB"],["JJ","RB|RBR","JJR","RBR","RB","VB"],["UH","JJ"],["VBG","VBG|NN|JJ"],["VB","UH","NNP"],["NN","VBD","VBN","JJ","RB","VB"],["NN","VBP","JJ","RB"],["MD","JJ","NN"],["JJ","NNP","NNS","NN"],["NNS","VBZ","NNPS","NNP"],["NN","VBD","VBN","VBP","JJ","VB"],["VBD","VBN","JJ","VBN|VBD"],["NNP","JJ","RB","VB"],["VBD","JJ","VBN","VBP"],["VB","VBD","VBN","VBP","VBZ","JJ"],["IN","RBR","JJ","RB","NNP"],["RBR","JJR","JJ","NN","RB"],["RB","IN","RP"],["VBZ","NNS","VBP","VB"],["JJ","VBN|JJ","VBD","VBN","RB","VB"],["RBS","JJ","NN","RB","RBS|JJS","JJS"],["PRP","VBP"],["RB","VB"],["JJR","NNP","JJ"],["JJR","JJ","RB","RBR"],["VBD","VBN|VBD","VBN","JJ","NN","VB","VBN|JJ"]];
client/test/layouts/BaseLayout.spec.js
marlonbernardes/coding-stickers
import React from 'react'; import { expect } from 'chai'; import { shallow } from 'enzyme'; import BaseLayout from '../../src/layouts/BaseLayout'; import GitHubRibbon from '../../src/components/GitHubRibbon'; describe('<BaseLayout />', () => { it('renders the GitHub ribbon', () => { const component = shallow(<BaseLayout />); expect(component.find(GitHubRibbon)).to.have.length(1); }); });
ui/src/main/js/components/__tests__/JobStatus-test.js
crashlytics/aurora
import React from 'react'; import { shallow } from 'enzyme'; import JobStatus from '../JobStatus'; import TaskList from '../TaskList'; import { Tab } from '../Tabs'; import { ScheduledTaskBuilder, TaskConfigBuilder, createConfigGroup } from 'test-utils/TaskBuilders'; describe('JobStatus', () => { it('Should render a task list only with active tasks', () => { const tasks = [ ScheduledTaskBuilder.status(ScheduleStatus.PENDING).build(), ScheduledTaskBuilder.status(ScheduleStatus.FINISHED).build() ]; const el = shallow(JobStatus({queryParams: {}, tasks})); expect(el.contains(<TaskList tasks={[tasks[0]]} />)).toBe(true); }); it('Should render the correct number of task configs', () => { const configGroups = [ createConfigGroup(TaskConfigBuilder, [0, 0]), createConfigGroup(TaskConfigBuilder, [1, 10]) ]; const el = shallow(JobStatus({configGroups, queryParams: {}, tasks: []})); expect(el.find(Tab).someWhere((t) => t.props().name === 'Configuration (2)')).toBe(true); }); it('Should show one configuration when there is a cron job', () => { const el = shallow(JobStatus({cronJob: {}, queryParams: {}, tasks: []})); expect(el.find(Tab).someWhere((t) => t.props().name === 'Configuration (1)')).toBe(true); }); });
src/svg-icons/content/reply.js
mmrtnz/material-ui
import React from 'react'; import pure from 'recompose/pure'; import SvgIcon from '../../SvgIcon'; let ContentReply = (props) => ( <SvgIcon {...props}> <path d="M10 9V5l-7 7 7 7v-4.1c5 0 8.5 1.6 11 5.1-1-5-4-10-11-11z"/> </SvgIcon> ); ContentReply = pure(ContentReply); ContentReply.displayName = 'ContentReply'; ContentReply.muiName = 'SvgIcon'; export default ContentReply;
examples/redux/components/User.js
dlmr/react-router-redial
import React, { Component } from 'react'; import { provideHooks } from 'redial'; import { connect } from 'react-redux'; import fetchGithubUser from '../redux/actions/fetchGithubUser'; function mapStateToProps(state, ownProps) { return { user: state.githubUsers[ownProps.params.id.toLowerCase()] } } @provideHooks({ fetch: ({ params: { id }, dispatch, getState }) => { if(!getState().githubUsers[id.toLowerCase()]) { return dispatch(fetchGithubUser(id)); } } }) @connect(mapStateToProps) export default class User extends Component { render() { return ( <div> <h3>{ this.props.user.name } <pre>@{ this.props.user.login }</pre></h3> <img src={ this.props.user.avatar_url } /> </div> ); } }
client/routes/Transactions/components/TransactionsPanel.js
patzj/ims
import React from 'react'; import TransactionsTable from '../containers/TransactionsTable'; export const TransactionsPanel = () => { return ( <div className="col-xs-10 col-xs-offset-1"> <h2><span className="glyphicon glyphicon-list-alt"></span>&nbsp;Transactions</h2> <TransactionsTable /> </div> ); }; export default TransactionsPanel;
src/routes/Home/components/Home/Home-About.js
Ryana513/ccproject
import React from 'react' import Theme from '../../../../theme' // import {Card, CardTitle, CardPanel, Row, Col} from 'react-materialize'; const style = { margin: 80, textAlign: 'center', display: 'block' } export const HomeAbout = () => { return ( <div style={style}> <h5 id="About">About "Get Me A Job"</h5> <p> This app was created by a group of Coder Camps graduates that love to code. “Get Me A Job” is the result of our final project. We wanted to create an app that would make it easy for employers to find developers with the right set of skills to complete their projects, and kickstart your project goals in a few of clicks. (DRAFT STILL EDITING] </p> </div> ) } export default HomeAbout
web/static/js/index.js
toxu/txportal
// Brunch automatically concatenates all files in your // watched paths. Those paths can be configured at // config.paths.watched in "brunch-config.js". // // However, those files will only be executed if // explicitly imported. The only exception are files // in vendor, which are never wrapped in imports and // therefore are always executed. // Import dependencies // // If you no longer want to use a dependency, remember // to also remove its path from "config.paths.watched". // import "deps/phoenix_html/web/static/js/phoenix_html" // Import local files // // Local files can be imported directly using relative // paths "./socket" or full ones "web/static/js/socket". // import socket from "./socket" // import TestClass from "./TestClass" import React from 'react'; import {Provider} from 'react-redux'; import portalStore from "./store/portal_store"; import MainForm from "./components/mainform"; import 'bootstrap/dist/css/bootstrap.css'; const store = portalStore(); export default class Root extends React.Component { render() { return ( <Provider store={store}> {() => <MainForm />} </Provider> ); } } React.render(<Root/>, document.getElementById("mydiv"));
docs/app/components/markdown/index.js
showings/react-toolbox
import 'highlight.js/styles/github-gist'; import React from 'react'; import PropTypes from 'prop-types'; import style from './style.css'; const Markdown = (props) => { let className = style.markdown; if (props.className) className += ` ${props.className}`; const html = { __html: props.markdown }; return <article className={className} dangerouslySetInnerHTML={html} />; }; Markdown.propTypes = { className: PropTypes.string, markdown: PropTypes.string.isRequired }; Markdown.defaultProps = { className: '' }; export default Markdown;
7.2.0/examples/asyncValidation/dist/bundle.js
erikras/redux-form-docs
!function(e){function t(r){if(n[r])return n[r].exports;var i=n[r]={i:r,l:!1,exports:{}};return e[r].call(i.exports,i,i.exports,t),i.l=!0,i.exports}var n={};t.m=e,t.c=n,t.i=function(e){return e},t.d=function(e,n,r){t.o(e,n)||Object.defineProperty(e,n,{configurable:!1,enumerable:!0,get:r})},t.n=function(e){var n=e&&e.__esModule?function(){return e.default}:function(){return e};return t.d(n,"a",n),n},t.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},t.p="/dist/",t(t.s=622)}([function(e,t,n){var r=n(2),i=n(25),o=n(14),a=n(15),u=n(22),s=function(e,t,n){var c,l,f,p,d=e&s.F,h=e&s.G,v=e&s.S,y=e&s.P,m=e&s.B,g=h?r:v?r[t]||(r[t]={}):(r[t]||{}).prototype,b=h?i:i[t]||(i[t]={}),O=b.prototype||(b.prototype={});h&&(n=t);for(c in n)l=!d&&g&&void 0!==g[c],f=(l?g:n)[c],p=m&&l?u(f,r):y&&"function"==typeof f?u(Function.call,f):f,g&&a(g,c,f,e&s.U),b[c]!=f&&o(b,c,p),y&&O[c]!=f&&(O[c]=f)};r.core=i,s.F=1,s.G=2,s.S=4,s.P=8,s.B=16,s.W=32,s.U=64,s.R=128,e.exports=s},function(e,t,n){var r=n(5);e.exports=function(e){if(!r(e))throw TypeError(e+" is not an object!");return e}},function(e,t){var n=e.exports="undefined"!=typeof window&&window.Math==Math?window:"undefined"!=typeof self&&self.Math==Math?self:Function("return this")();"number"==typeof __g&&(__g=n)},function(e,t,n){"use strict";var r=n(609),i=n(606),o=n(608),a=n(604),u=n(605),s=n(607),c={allowsArrayErrors:!0,empty:{},emptyList:[],getIn:i.a,setIn:o.a,deepEqual:a.a,deleteIn:u.a,forEach:function(e,t){return e.forEach(t)},fromJS:function(e){return e},keys:s.a,size:function(e){return e?e.length:0},some:function(e,t){return e.some(t)},splice:r.a,toJS:function(e){return e}};t.a=c},function(e,t){e.exports=function(e){try{return!!e()}catch(e){return!0}}},function(e,t){e.exports=function(e){return"object"==typeof e?null!==e:"function"==typeof e}},function(e,t,n){var r=n(74)("wks"),i=n(47),o=n(2).Symbol,a="function"==typeof o;(e.exports=function(e){return r[e]||(r[e]=a&&o[e]||(a?o:i)("Symbol."+e))}).store=r},function(e,t,n){e.exports=!n(4)(function(){return 7!=Object.defineProperty({},"a",{get:function(){return 7}}).a})},function(e,t,n){var r=n(1),i=n(144),o=n(29),a=Object.defineProperty;t.f=n(7)?Object.defineProperty:function(e,t,n){if(r(e),t=o(t,!0),r(n),i)try{return a(e,t,n)}catch(e){}if("get"in n||"set"in n)throw TypeError("Accessors not supported!");return"value"in n&&(e[t]=n.value),e}},function(e,t,n){var r=n(28),i=Math.min;e.exports=function(e){return e>0?i(r(e),9007199254740991):0}},function(e,t,n){var r=n(26);e.exports=function(e){return Object(r(e))}},function(e,t,n){"use strict";e.exports=n(543)},function(e,t){e.exports=function(e){if("function"!=typeof e)throw TypeError(e+" is not a function!");return e}},function(e,t){var n={}.hasOwnProperty;e.exports=function(e,t){return n.call(e,t)}},function(e,t,n){var r=n(8),i=n(43);e.exports=n(7)?function(e,t,n){return r.f(e,t,i(1,n))}:function(e,t,n){return e[t]=n,e}},function(e,t,n){var r=n(2),i=n(14),o=n(13),a=n(47)("src"),u=Function.toString,s=(""+u).split("toString");n(25).inspectSource=function(e){return u.call(e)},(e.exports=function(e,t,n,u){var c="function"==typeof n;c&&(o(n,"name")||i(n,"name",t)),e[t]!==n&&(c&&(o(n,a)||i(n,a,e[t]?""+e[t]:s.join(String(t)))),e===r?e[t]=n:u?e[t]?e[t]=n:i(e,t,n):(delete e[t],i(e,t,n)))})(Function.prototype,"toString",function(){return"function"==typeof this&&this[a]||u.call(this)})},function(e,t,n){var r=n(0),i=n(4),o=n(26),a=/"/g,u=function(e,t,n,r){var i=String(o(e)),u="<"+t;return""!==n&&(u+=" "+n+'="'+String(r).replace(a,"&quot;")+'"'),u+">"+i+"</"+t+">"};e.exports=function(e,t){var n={};n[e]=t(u),r(r.P+r.F*i(function(){var t=""[e]('"');return t!==t.toLowerCase()||t.split('"').length>3}),"String",n)}},function(e,t,n){e.exports=n(527)()},function(e,t,n){var r=n(59),i=n(43),o=n(20),a=n(29),u=n(13),s=n(144),c=Object.getOwnPropertyDescriptor;t.f=n(7)?c:function(e,t){if(e=o(e),t=a(t,!0),s)try{return c(e,t)}catch(e){}if(u(e,t))return i(!r.f.call(e,t),e[t])}},function(e,t,n){var r=n(13),i=n(10),o=n(107)("IE_PROTO"),a=Object.prototype;e.exports=Object.getPrototypeOf||function(e){return e=i(e),r(e,o)?e[o]:"function"==typeof e.constructor&&e instanceof e.constructor?e.constructor.prototype:e instanceof Object?a:null}},function(e,t,n){var r=n(58),i=n(26);e.exports=function(e){return r(i(e))}},function(e,t){var n={}.toString;e.exports=function(e){return n.call(e).slice(8,-1)}},function(e,t,n){var r=n(12);e.exports=function(e,t,n){if(r(e),void 0===t)return e;switch(n){case 1:return function(n){return e.call(t,n)};case 2:return function(n,r){return e.call(t,n,r)};case 3:return function(n,r,i){return e.call(t,n,r,i)}}return function(){return e.apply(t,arguments)}}},function(e,t,n){"use strict";var r=n(4);e.exports=function(e,t){return!!e&&r(function(){t?e.call(null,function(){},1):e.call(null)})}},function(e,t,n){var r=n(22),i=n(58),o=n(10),a=n(9),u=n(92);e.exports=function(e,t){var n=1==e,s=2==e,c=3==e,l=4==e,f=6==e,p=5==e||f,d=t||u;return function(t,u,h){for(var v,y,m=o(t),g=i(m),b=r(u,h,3),O=a(g.length),w=0,_=n?d(t,O):s?d(t,0):void 0;O>w;w++)if((p||w in g)&&(v=g[w],y=b(v,w,m),e))if(n)_[w]=y;else if(y)switch(e){case 3:return!0;case 5:return v;case 6:return w;case 2:_.push(v)}else if(l)return!1;return f?-1:c||l?l:_}}},function(e,t){var n=e.exports={version:"2.5.2"};"number"==typeof __e&&(__e=n)},function(e,t){e.exports=function(e){if(void 0==e)throw TypeError("Can't call method on "+e);return e}},function(e,t,n){var r=n(0),i=n(25),o=n(4);e.exports=function(e,t){var n=(i.Object||{})[e]||Object[e],a={};a[e]=t(n),r(r.S+r.F*o(function(){n(1)}),"Object",a)}},function(e,t){var n=Math.ceil,r=Math.floor;e.exports=function(e){return isNaN(e=+e)?0:(e>0?r:n)(e)}},function(e,t,n){var r=n(5);e.exports=function(e,t){if(!r(e))return e;var n,i;if(t&&"function"==typeof(n=e.toString)&&!r(i=n.call(e)))return i;if("function"==typeof(n=e.valueOf)&&!r(i=n.call(e)))return i;if(!t&&"function"==typeof(n=e.toString)&&!r(i=n.call(e)))return i;throw TypeError("Can't convert object to primitive value")}},function(e,t,n){"use strict";var r=n(181),i="object"==typeof self&&self&&self.Object===Object&&self,o=r.a||i||Function("return this")();t.a=o},function(e,t,n){"use strict";var r=Array.isArray;t.a=r},function(e,t,n){var r=n(165),i=n(0),o=n(74)("metadata"),a=o.store||(o.store=new(n(168))),u=function(e,t,n){var i=a.get(e);if(!i){if(!n)return;a.set(e,i=new r)}var o=i.get(t);if(!o){if(!n)return;i.set(t,o=new r)}return o},s=function(e,t,n){var r=u(t,n,!1);return void 0!==r&&r.has(e)},c=function(e,t,n){var r=u(t,n,!1);return void 0===r?void 0:r.get(e)},l=function(e,t,n,r){u(n,r,!0).set(e,t)},f=function(e,t){var n=u(e,t,!1),r=[];return n&&n.forEach(function(e,t){r.push(t)}),r},p=function(e){return void 0===e||"symbol"==typeof e?e:String(e)},d=function(e){i(i.S,"Reflect",e)};e.exports={store:a,map:u,has:s,get:c,set:l,keys:f,key:p,exp:d}},function(e,t,n){"use strict";if(n(7)){var r=n(39),i=n(2),o=n(4),a=n(0),u=n(76),s=n(113),c=n(22),l=n(37),f=n(43),p=n(14),d=n(44),h=n(28),v=n(9),y=n(163),m=n(46),g=n(29),b=n(13),O=n(57),w=n(5),_=n(10),S=n(99),E=n(40),x=n(19),j=n(41).f,k=n(115),C=n(47),P=n(6),R=n(24),A=n(63),T=n(75),F=n(116),I=n(51),N=n(69),M=n(45),V=n(91),U=n(136),D=n(8),L=n(18),q=D.f,W=L.f,z=i.RangeError,B=i.TypeError,H=i.Uint8Array,Y=Array.prototype,$=s.ArrayBuffer,G=s.DataView,K=R(0),J=R(2),Q=R(3),Z=R(4),X=R(5),ee=R(6),te=A(!0),ne=A(!1),re=F.values,ie=F.keys,oe=F.entries,ae=Y.lastIndexOf,ue=Y.reduce,se=Y.reduceRight,ce=Y.join,le=Y.sort,fe=Y.slice,pe=Y.toString,de=Y.toLocaleString,he=P("iterator"),ve=P("toStringTag"),ye=C("typed_constructor"),me=C("def_constructor"),ge=u.CONSTR,be=u.TYPED,Oe=u.VIEW,we=R(1,function(e,t){return je(T(e,e[me]),t)}),_e=o(function(){return 1===new H(new Uint16Array([1]).buffer)[0]}),Se=!!H&&!!H.prototype.set&&o(function(){new H(1).set({})}),Ee=function(e,t){var n=h(e);if(n<0||n%t)throw z("Wrong offset!");return n},xe=function(e){if(w(e)&&be in e)return e;throw B(e+" is not a typed array!")},je=function(e,t){if(!(w(e)&&ye in e))throw B("It is not a typed array constructor!");return new e(t)},ke=function(e,t){return Ce(T(e,e[me]),t)},Ce=function(e,t){for(var n=0,r=t.length,i=je(e,r);r>n;)i[n]=t[n++];return i},Pe=function(e,t,n){q(e,t,{get:function(){return this._d[n]}})},Re=function(e){var t,n,r,i,o,a,u=_(e),s=arguments.length,l=s>1?arguments[1]:void 0,f=void 0!==l,p=k(u);if(void 0!=p&&!S(p)){for(a=p.call(u),r=[],t=0;!(o=a.next()).done;t++)r.push(o.value);u=r}for(f&&s>2&&(l=c(l,arguments[2],2)),t=0,n=v(u.length),i=je(this,n);n>t;t++)i[t]=f?l(u[t],t):u[t];return i},Ae=function(){for(var e=0,t=arguments.length,n=je(this,t);t>e;)n[e]=arguments[e++];return n},Te=!!H&&o(function(){de.call(new H(1))}),Fe=function(){return de.apply(Te?fe.call(xe(this)):xe(this),arguments)},Ie={copyWithin:function(e,t){return U.call(xe(this),e,t,arguments.length>2?arguments[2]:void 0)},every:function(e){return Z(xe(this),e,arguments.length>1?arguments[1]:void 0)},fill:function(e){return V.apply(xe(this),arguments)},filter:function(e){return ke(this,J(xe(this),e,arguments.length>1?arguments[1]:void 0))},find:function(e){return X(xe(this),e,arguments.length>1?arguments[1]:void 0)},findIndex:function(e){return ee(xe(this),e,arguments.length>1?arguments[1]:void 0)},forEach:function(e){K(xe(this),e,arguments.length>1?arguments[1]:void 0)},indexOf:function(e){return ne(xe(this),e,arguments.length>1?arguments[1]:void 0)},includes:function(e){return te(xe(this),e,arguments.length>1?arguments[1]:void 0)},join:function(e){return ce.apply(xe(this),arguments)},lastIndexOf:function(e){return ae.apply(xe(this),arguments)},map:function(e){return we(xe(this),e,arguments.length>1?arguments[1]:void 0)},reduce:function(e){return ue.apply(xe(this),arguments)},reduceRight:function(e){return se.apply(xe(this),arguments)},reverse:function(){for(var e,t=this,n=xe(t).length,r=Math.floor(n/2),i=0;i<r;)e=t[i],t[i++]=t[--n],t[n]=e;return t},some:function(e){return Q(xe(this),e,arguments.length>1?arguments[1]:void 0)},sort:function(e){return le.call(xe(this),e)},subarray:function(e,t){var n=xe(this),r=n.length,i=m(e,r);return new(T(n,n[me]))(n.buffer,n.byteOffset+i*n.BYTES_PER_ELEMENT,v((void 0===t?r:m(t,r))-i))}},Ne=function(e,t){return ke(this,fe.call(xe(this),e,t))},Me=function(e){xe(this);var t=Ee(arguments[1],1),n=this.length,r=_(e),i=v(r.length),o=0;if(i+t>n)throw z("Wrong length!");for(;o<i;)this[t+o]=r[o++]},Ve={entries:function(){return oe.call(xe(this))},keys:function(){return ie.call(xe(this))},values:function(){return re.call(xe(this))}},Ue=function(e,t){return w(e)&&e[be]&&"symbol"!=typeof t&&t in e&&String(+t)==String(t)},De=function(e,t){return Ue(e,t=g(t,!0))?f(2,e[t]):W(e,t)},Le=function(e,t,n){return!(Ue(e,t=g(t,!0))&&w(n)&&b(n,"value"))||b(n,"get")||b(n,"set")||n.configurable||b(n,"writable")&&!n.writable||b(n,"enumerable")&&!n.enumerable?q(e,t,n):(e[t]=n.value,e)};ge||(L.f=De,D.f=Le),a(a.S+a.F*!ge,"Object",{getOwnPropertyDescriptor:De,defineProperty:Le}),o(function(){pe.call({})})&&(pe=de=function(){return ce.call(this)});var qe=d({},Ie);d(qe,Ve),p(qe,he,Ve.values),d(qe,{slice:Ne,set:Me,constructor:function(){},toString:pe,toLocaleString:Fe}),Pe(qe,"buffer","b"),Pe(qe,"byteOffset","o"),Pe(qe,"byteLength","l"),Pe(qe,"length","e"),q(qe,ve,{get:function(){return this[be]}}),e.exports=function(e,t,n,s){s=!!s;var c=e+(s?"Clamped":"")+"Array",f="get"+e,d="set"+e,h=i[c],m=h||{},g=h&&x(h),b=!h||!u.ABV,_={},S=h&&h.prototype,k=function(e,n){var r=e._d;return r.v[f](n*t+r.o,_e)},C=function(e,n,r){var i=e._d;s&&(r=(r=Math.round(r))<0?0:r>255?255:255&r),i.v[d](n*t+i.o,r,_e)},P=function(e,t){q(e,t,{get:function(){return k(this,t)},set:function(e){return C(this,t,e)},enumerable:!0})};b?(h=n(function(e,n,r,i){l(e,h,c,"_d");var o,a,u,s,f=0,d=0;if(w(n)){if(!(n instanceof $||"ArrayBuffer"==(s=O(n))||"SharedArrayBuffer"==s))return be in n?Ce(h,n):Re.call(h,n);o=n,d=Ee(r,t);var m=n.byteLength;if(void 0===i){if(m%t)throw z("Wrong length!");if((a=m-d)<0)throw z("Wrong length!")}else if((a=v(i)*t)+d>m)throw z("Wrong length!");u=a/t}else u=y(n),a=u*t,o=new $(a);for(p(e,"_d",{b:o,o:d,l:a,e:u,v:new G(o)});f<u;)P(e,f++)}),S=h.prototype=E(qe),p(S,"constructor",h)):o(function(){h(1)})&&o(function(){new h(-1)})&&N(function(e){new h,new h(null),new h(1.5),new h(e)},!0)||(h=n(function(e,n,r,i){l(e,h,c);var o;return w(n)?n instanceof $||"ArrayBuffer"==(o=O(n))||"SharedArrayBuffer"==o?void 0!==i?new m(n,Ee(r,t),i):void 0!==r?new m(n,Ee(r,t)):new m(n):be in n?Ce(h,n):Re.call(h,n):new m(y(n))}),K(g!==Function.prototype?j(m).concat(j(g)):j(m),function(e){e in h||p(h,e,m[e])}),h.prototype=S,r||(S.constructor=h));var R=S[he],A=!!R&&("values"==R.name||void 0==R.name),T=Ve.values;p(h,ye,!0),p(S,be,c),p(S,Oe,!0),p(S,me,h),(s?new h(1)[ve]==c:ve in S)||q(S,ve,{get:function(){return c}}),_[c]=h,a(a.G+a.W+a.F*(h!=m),_),a(a.S,c,{BYTES_PER_ELEMENT:t}),a(a.S+a.F*o(function(){m.of.call(h,1)}),c,{from:Re,of:Ae}),"BYTES_PER_ELEMENT"in S||p(S,"BYTES_PER_ELEMENT",t),a(a.P,c,Ie),M(c),a(a.P+a.F*Se,c,{set:Me}),a(a.P+a.F*!A,c,Ve),r||S.toString==pe||(S.toString=pe),a(a.P+a.F*o(function(){new h(1).slice()}),c,{slice:Ne}),a(a.P+a.F*(o(function(){return[1,2].toLocaleString()!=new h([1,2]).toLocaleString()})||!o(function(){S.toLocaleString.call([1,2])})),c,{toLocaleString:Fe}),I[c]=A?R:T,r||A||p(S,he,T)}}else e.exports=function(){}},function(e,t,n){var r=n(6)("unscopables"),i=Array.prototype;void 0==i[r]&&n(14)(i,r,{}),e.exports=function(e){i[r][e]=!0}},function(e,t,n){var r=n(47)("meta"),i=n(5),o=n(13),a=n(8).f,u=0,s=Object.isExtensible||function(){return!0},c=!n(4)(function(){return s(Object.preventExtensions({}))}),l=function(e){a(e,r,{value:{i:"O"+ ++u,w:{}}})},f=function(e,t){if(!i(e))return"symbol"==typeof e?e:("string"==typeof e?"S":"P")+e;if(!o(e,r)){if(!s(e))return"F";if(!t)return"E";l(e)}return e[r].i},p=function(e,t){if(!o(e,r)){if(!s(e))return!0;if(!t)return!1;l(e)}return e[r].w},d=function(e){return c&&h.NEED&&s(e)&&!o(e,r)&&l(e),e},h=e.exports={KEY:r,NEED:!1,fastKey:f,getWeak:p,onFreeze:d}},function(e,t,n){"use strict";function r(e){var t=typeof e;return null!=e&&("object"==t||"function"==t)}t.a=r},function(e,t){e.exports=function(e,t,n,r){if(!(e instanceof t)||void 0!==r&&r in e)throw TypeError(n+": incorrect invocation!");return e}},function(e,t,n){var r=n(22),i=n(147),o=n(99),a=n(1),u=n(9),s=n(115),c={},l={},t=e.exports=function(e,t,n,f,p){var d,h,v,y,m=p?function(){return e}:s(e),g=r(n,f,t?2:1),b=0;if("function"!=typeof m)throw TypeError(e+" is not iterable!");if(o(m)){for(d=u(e.length);d>b;b++)if((y=t?g(a(h=e[b])[0],h[1]):g(e[b]))===c||y===l)return y}else for(v=m.call(e);!(h=v.next()).done;)if((y=i(v,g,h.value,t))===c||y===l)return y};t.BREAK=c,t.RETURN=l},function(e,t){e.exports=!1},function(e,t,n){var r=n(1),i=n(153),o=n(95),a=n(107)("IE_PROTO"),u=function(){},s=function(){var e,t=n(94)("iframe"),r=o.length;for(t.style.display="none",n(97).appendChild(t),t.src="javascript:",e=t.contentWindow.document,e.open(),e.write("<script>document.F=Object<\/script>"),e.close(),s=e.F;r--;)delete s.prototype[o[r]];return s()};e.exports=Object.create||function(e,t){var n;return null!==e?(u.prototype=r(e),n=new u,u.prototype=null,n[a]=e):n=s(),void 0===t?n:i(n,t)}},function(e,t,n){var r=n(155),i=n(95).concat("length","prototype");t.f=Object.getOwnPropertyNames||function(e){return r(e,i)}},function(e,t,n){var r=n(155),i=n(95);e.exports=Object.keys||function(e){return r(e,i)}},function(e,t){e.exports=function(e,t){return{enumerable:!(1&e),configurable:!(2&e),writable:!(4&e),value:t}}},function(e,t,n){var r=n(15);e.exports=function(e,t,n){for(var i in t)r(e,i,t[i],n);return e}},function(e,t,n){"use strict";var r=n(2),i=n(8),o=n(7),a=n(6)("species");e.exports=function(e){var t=r[e];o&&t&&!t[a]&&i.f(t,a,{configurable:!0,get:function(){return this}})}},function(e,t,n){var r=n(28),i=Math.max,o=Math.min;e.exports=function(e,t){return e=r(e),e<0?i(e+t,0):o(e,t)}},function(e,t){var n=0,r=Math.random();e.exports=function(e){return"Symbol(".concat(void 0===e?"":e,")_",(++n+r).toString(36))}},function(e,t,n){"use strict";function r(e,t){var r=n.i(o.a)(e,t);return n.i(i.a)(r)?r:void 0}var i=n(448),o=n(479);t.a=r},function(e,t,n){"use strict";function r(e){return null!=e&&"object"==typeof e}t.a=r},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=n(534),i=n(193),o=n(535);n.d(t,"Provider",function(){return r.a}),n.d(t,"createProvider",function(){return r.b}),n.d(t,"connectAdvanced",function(){return i.a}),n.d(t,"connect",function(){return o.a})},function(e,t){e.exports={}},function(e,t,n){var r=n(8).f,i=n(13),o=n(6)("toStringTag");e.exports=function(e,t,n){e&&!i(e=n?e:e.prototype,o)&&r(e,o,{configurable:!0,value:t})}},function(e,t,n){var r=n(0),i=n(26),o=n(4),a=n(111),u="["+a+"]",s="​…",c=RegExp("^"+u+u+"*"),l=RegExp(u+u+"*$"),f=function(e,t,n){var i={},u=o(function(){return!!a[e]()||s[e]()!=s}),c=i[e]=u?t(p):a[e];n&&(i[n]=c),r(r.P+r.F*u,"String",i)},p=f.trim=function(e,t){return e=String(i(e)),1&t&&(e=e.replace(c,"")),2&t&&(e=e.replace(l,"")),e};e.exports=f},function(e,t,n){var r=n(5);e.exports=function(e,t){if(!r(e)||e._t!==t)throw TypeError("Incompatible receiver, "+t+" required!");return e}},function(e,t,n){"use strict";var r=function(e,t,n,r,i,o,a,u){if(!e){var s;if(void 0===t)s=new Error("Minified exception occurred; use the non-minified dev environment for the full error message and additional helpful warnings.");else{var c=[n,r,i,o,a,u],l=0;s=new Error(t.replace(/%s/g,function(){return c[l++]})),s.name="Invariant Violation"}throw s.framesToPop=1,s}};e.exports=r},function(e,t,n){"use strict";function r(e){return null==e?void 0===e?s:u:c&&c in Object(e)?n.i(o.a)(e):n.i(a.a)(e)}var i=n(79),o=n(476),a=n(505),u="[object Null]",s="[object Undefined]",c=i.a?i.a.toStringTag:void 0;t.a=r},function(e,t,n){var r=n(21),i=n(6)("toStringTag"),o="Arguments"==r(function(){return arguments}()),a=function(e,t){try{return e[t]}catch(e){}};e.exports=function(e){var t,n,u;return void 0===e?"Undefined":null===e?"Null":"string"==typeof(n=a(t=Object(e),i))?n:o?r(t):"Object"==(u=r(t))&&"function"==typeof t.callee?"Arguments":u}},function(e,t,n){var r=n(21);e.exports=Object("z").propertyIsEnumerable(0)?Object:function(e){return"String"==r(e)?e.split(""):Object(e)}},function(e,t){t.f={}.propertyIsEnumerable},function(e,t,n){"use strict";function r(e){if("string"==typeof e||n.i(i.a)(e))return e;var t=e+"";return"0"==t&&1/e==-o?"-0":t}var i=n(86),o=1/0;t.a=r},function(e,t,n){"use strict";function r(e,t){return e===t||e!==e&&t!==t}t.a=r},function(e,t,n){"use strict";var r=function(e,t){var n=e._reduxForm.sectionPrefix;return n?n+"."+t:t};t.a=r},function(e,t,n){var r=n(20),i=n(9),o=n(46);e.exports=function(e){return function(t,n,a){var u,s=r(t),c=i(s.length),l=o(a,c);if(e&&n!=n){for(;c>l;)if((u=s[l++])!=u)return!0}else for(;c>l;l++)if((e||l in s)&&s[l]===n)return e||l||0;return!e&&-1}}},function(e,t,n){"use strict";var r=n(2),i=n(0),o=n(15),a=n(44),u=n(35),s=n(38),c=n(37),l=n(5),f=n(4),p=n(69),d=n(52),h=n(98);e.exports=function(e,t,n,v,y,m){var g=r[e],b=g,O=y?"set":"add",w=b&&b.prototype,_={},S=function(e){var t=w[e];o(w,e,"delete"==e?function(e){return!(m&&!l(e))&&t.call(this,0===e?0:e)}:"has"==e?function(e){return!(m&&!l(e))&&t.call(this,0===e?0:e)}:"get"==e?function(e){return m&&!l(e)?void 0:t.call(this,0===e?0:e)}:"add"==e?function(e){return t.call(this,0===e?0:e),this}:function(e,n){return t.call(this,0===e?0:e,n),this})};if("function"==typeof b&&(m||w.forEach&&!f(function(){(new b).entries().next()}))){var E=new b,x=E[O](m?{}:-0,1)!=E,j=f(function(){E.has(1)}),k=p(function(e){new b(e)}),C=!m&&f(function(){for(var e=new b,t=5;t--;)e[O](t,t);return!e.has(-0)});k||(b=t(function(t,n){c(t,b,e);var r=h(new g,t,b);return void 0!=n&&s(n,y,r[O],r),r}),b.prototype=w,w.constructor=b),(j||C)&&(S("delete"),S("has"),y&&S("get")),(C||x)&&S(O),m&&w.clear&&delete w.clear}else b=v.getConstructor(t,e,y,O),a(b.prototype,n),u.NEED=!0;return d(b,e),_[e]=b,i(i.G+i.W+i.F*(b!=g),_),m||v.setStrong(b,e,y),b}},function(e,t,n){"use strict";var r=n(14),i=n(15),o=n(4),a=n(26),u=n(6);e.exports=function(e,t,n){var s=u(e),c=n(a,s,""[e]),l=c[0],f=c[1];o(function(){var t={};return t[s]=function(){return 7},7!=""[e](t)})&&(i(String.prototype,e,l),r(RegExp.prototype,s,2==t?function(e,t){return f.call(e,this,t)}:function(e){return f.call(e,this)}))}},function(e,t,n){"use strict";var r=n(1);e.exports=function(){var e=r(this),t="";return e.global&&(t+="g"),e.ignoreCase&&(t+="i"),e.multiline&&(t+="m"),e.unicode&&(t+="u"),e.sticky&&(t+="y"),t}},function(e,t,n){var r=n(21);e.exports=Array.isArray||function(e){return"Array"==r(e)}},function(e,t,n){var r=n(5),i=n(21),o=n(6)("match");e.exports=function(e){var t;return r(e)&&(void 0!==(t=e[o])?!!t:"RegExp"==i(e))}},function(e,t,n){var r=n(6)("iterator"),i=!1;try{var o=[7][r]();o.return=function(){i=!0},Array.from(o,function(){throw 2})}catch(e){}e.exports=function(e,t){if(!t&&!i)return!1;var n=!1;try{var o=[7],a=o[r]();a.next=function(){return{done:n=!0}},o[r]=function(){return a},e(o)}catch(e){}return n}},function(e,t,n){"use strict";e.exports=n(39)||!n(4)(function(){var e=Math.random();__defineSetter__.call(null,e,function(){}),delete n(2)[e]})},function(e,t){t.f=Object.getOwnPropertySymbols},function(e,t,n){"use strict";var r=n(0),i=n(12),o=n(22),a=n(38);e.exports=function(e){r(r.S,e,{from:function(e){var t,n,r,u,s=arguments[1];return i(this),t=void 0!==s,t&&i(s),void 0==e?new this:(n=[],t?(r=0,u=o(s,arguments[2],2),a(e,!1,function(e){n.push(u(e,r++))})):a(e,!1,n.push,n),new this(n))}})}},function(e,t,n){"use strict";var r=n(0);e.exports=function(e){r(r.S,e,{of:function(){for(var e=arguments.length,t=new Array(e);e--;)t[e]=arguments[e];return new this(t)}})}},function(e,t,n){var r=n(2),i=r["__core-js_shared__"]||(r["__core-js_shared__"]={});e.exports=function(e){return i[e]||(i[e]={})}},function(e,t,n){var r=n(1),i=n(12),o=n(6)("species");e.exports=function(e,t){var n,a=r(e).constructor;return void 0===a||void 0==(n=r(a)[o])?t:i(n)}},function(e,t,n){for(var r,i=n(2),o=n(14),a=n(47),u=a("typed_array"),s=a("view"),c=!(!i.ArrayBuffer||!i.DataView),l=c,f=0,p="Int8Array,Uint8Array,Uint8ClampedArray,Int16Array,Uint16Array,Int32Array,Uint32Array,Float32Array,Float64Array".split(",");f<9;)(r=i[p[f++]])?(o(r.prototype,u,!0),o(r.prototype,s,!0)):l=!1;e.exports={ABV:c,CONSTR:l,TYPED:u,VIEW:s}},function(e,t,n){"use strict";function r(e){return function(){return e}}var i=function(){};i.thatReturns=r,i.thatReturnsFalse=r(!1),i.thatReturnsTrue=r(!0),i.thatReturnsNull=r(null),i.thatReturnsThis=function(){return this},i.thatReturnsArgument=function(e){return e},e.exports=i},function(e,t,n){"use strict";function r(e){var t=-1,n=null==e?0:e.length;for(this.clear();++t<n;){var r=e[t];this.set(r[0],r[1])}}var i=n(490),o=n(491),a=n(492),u=n(493),s=n(494);r.prototype.clear=i.a,r.prototype.delete=o.a,r.prototype.get=a.a,r.prototype.has=u.a,r.prototype.set=s.a,t.a=r},function(e,t,n){"use strict";var r=n(30),i=r.a.Symbol;t.a=i},function(e,t,n){"use strict";function r(e,t){for(var r=e.length;r--;)if(n.i(i.a)(e[r][0],t))return r;return-1}var i=n(61);t.a=r},function(e,t,n){"use strict";function r(e,t,r){"__proto__"==t&&i.a?n.i(i.a)(e,t,{configurable:!0,enumerable:!0,value:r,writable:!0}):e[t]=r}var i=n(179);t.a=r},function(e,t,n){"use strict";function r(e,t){var r=e.__data__;return n.i(i.a)(t)?r["string"==typeof t?"string":"hash"]:r.map}var i=n(488);t.a=r},function(e,t,n){"use strict";var r=n(48),i=n.i(r.a)(Object,"create");t.a=i},function(e,t,n){"use strict";function r(e){return null!=e&&n.i(o.a)(e.length)&&!n.i(i.a)(e)}var i=n(128),o=n(129);t.a=r},function(e,t,n){"use strict";function r(e){if(!n.i(a.a)(e)||n.i(i.a)(e)!=u)return!1;var t=n.i(o.a)(e);if(null===t)return!0;var r=f.call(t,"constructor")&&t.constructor;return"function"==typeof r&&r instanceof r&&l.call(r)==p}var i=n(56),o=n(182),a=n(49),u="[object Object]",s=Function.prototype,c=Object.prototype,l=s.toString,f=c.hasOwnProperty,p=l.call(Object);t.a=r},function(e,t,n){"use strict";function r(e){return"symbol"==typeof e||n.i(o.a)(e)&&n.i(i.a)(e)==a}var i=n(56),o=n(49),a="[object Symbol]";t.a=r},function(e,t,n){"use strict";function r(e){return n.i(a.a)(e)?n.i(i.a)(e,c.a):n.i(u.a)(e)?[e]:n.i(o.a)(n.i(s.a)(n.i(l.a)(e)))}var i=n(173),o=n(178),a=n(31),u=n(86),s=n(186),c=n(60),l=n(191);t.a=r},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=n(212),i=n(616),o=n(615),a=n(614),u=n(211);n(213);n.d(t,"createStore",function(){return r.a}),n.d(t,"combineReducers",function(){return i.a}),n.d(t,"bindActionCreators",function(){return o.a}),n.d(t,"applyMiddleware",function(){return a.a}),n.d(t,"compose",function(){return u.a})},function(e,t){var n;n=function(){return this}();try{n=n||Function("return this")()||(0,eval)("this")}catch(e){"object"==typeof window&&(n=window)}e.exports=n},function(e,t){e.exports=function(e){if(!e.webpackPolyfill){var t=Object.create(e);t.children||(t.children=[]),Object.defineProperty(t,"loaded",{enumerable:!0,get:function(){return t.l}}),Object.defineProperty(t,"id",{enumerable:!0,get:function(){return t.i}}),Object.defineProperty(t,"exports",{enumerable:!0}),t.webpackPolyfill=1}return t}},function(e,t,n){"use strict";var r=n(10),i=n(46),o=n(9);e.exports=function(e){for(var t=r(this),n=o(t.length),a=arguments.length,u=i(a>1?arguments[1]:void 0,n),s=a>2?arguments[2]:void 0,c=void 0===s?n:i(s,n);c>u;)t[u++]=e;return t}},function(e,t,n){var r=n(220);e.exports=function(e,t){return new(r(e))(t)}},function(e,t,n){"use strict";var r=n(8),i=n(43);e.exports=function(e,t,n){t in e?r.f(e,t,i(0,n)):e[t]=n}},function(e,t,n){var r=n(5),i=n(2).document,o=r(i)&&r(i.createElement);e.exports=function(e){return o?i.createElement(e):{}}},function(e,t){e.exports="constructor,hasOwnProperty,isPrototypeOf,propertyIsEnumerable,toLocaleString,toString,valueOf".split(",")},function(e,t,n){var r=n(6)("match");e.exports=function(e){var t=/./;try{"/./"[e](t)}catch(n){try{return t[r]=!1,!"/./"[e](t)}catch(e){}}return!0}},function(e,t,n){var r=n(2).document;e.exports=r&&r.documentElement},function(e,t,n){var r=n(5),i=n(106).set;e.exports=function(e,t,n){var o,a=t.constructor;return a!==n&&"function"==typeof a&&(o=a.prototype)!==n.prototype&&r(o)&&i&&i(e,o),e}},function(e,t,n){var r=n(51),i=n(6)("iterator"),o=Array.prototype;e.exports=function(e){return void 0!==e&&(r.Array===e||o[i]===e)}},function(e,t,n){"use strict";var r=n(40),i=n(43),o=n(52),a={};n(14)(a,n(6)("iterator"),function(){return this}),e.exports=function(e,t,n){e.prototype=r(a,{next:i(1,n)}),o(e,t+" Iterator")}},function(e,t,n){"use strict";var r=n(39),i=n(0),o=n(15),a=n(14),u=n(13),s=n(51),c=n(100),l=n(52),f=n(19),p=n(6)("iterator"),d=!([].keys&&"next"in[].keys()),h=function(){return this};e.exports=function(e,t,n,v,y,m,g){c(n,t,v);var b,O,w,_=function(e){if(!d&&e in j)return j[e];switch(e){case"keys":case"values":return function(){return new n(this,e)}}return function(){return new n(this,e)}},S=t+" Iterator",E="values"==y,x=!1,j=e.prototype,k=j[p]||j["@@iterator"]||y&&j[y],C=k||_(y),P=y?E?_("entries"):C:void 0,R="Array"==t?j.entries||k:k;if(R&&(w=f(R.call(new e)))!==Object.prototype&&w.next&&(l(w,S,!0),r||u(w,p)||a(w,p,h)),E&&k&&"values"!==k.name&&(x=!0,C=function(){return k.call(this)}),r&&!g||!d&&!x&&j[p]||a(j,p,C),s[t]=C,s[S]=h,y)if(b={values:E?C:_("values"),keys:m?C:_("keys"),entries:P},g)for(O in b)O in j||o(j,O,b[O]);else i(i.P+i.F*(d||x),t,b);return b}},function(e,t){var n=Math.expm1;e.exports=!n||n(10)>22025.465794806718||n(10)<22025.465794806718||-2e-17!=n(-2e-17)?function(e){return 0==(e=+e)?e:e>-1e-6&&e<1e-6?e+e*e/2:Math.exp(e)-1}:n},function(e,t){e.exports=Math.sign||function(e){return 0==(e=+e)||e!=e?e:e<0?-1:1}},function(e,t,n){var r=n(2),i=n(112).set,o=r.MutationObserver||r.WebKitMutationObserver,a=r.process,u=r.Promise,s="process"==n(21)(a);e.exports=function(){var e,t,n,c=function(){var r,i;for(s&&(r=a.domain)&&r.exit();e;){i=e.fn,e=e.next;try{i()}catch(r){throw e?n():t=void 0,r}}t=void 0,r&&r.enter()};if(s)n=function(){a.nextTick(c)};else if(!o||r.navigator&&r.navigator.standalone)if(u&&u.resolve){var l=u.resolve();n=function(){l.then(c)}}else n=function(){i.call(r,c)};else{var f=!0,p=document.createTextNode("");new o(c).observe(p,{characterData:!0}),n=function(){p.data=f=!f}}return function(r){var i={fn:r,next:void 0};t&&(t.next=i),e||(e=i,n()),t=i}}},function(e,t,n){"use strict";function r(e){var t,n;this.promise=new e(function(e,r){if(void 0!==t||void 0!==n)throw TypeError("Bad Promise constructor");t=e,n=r}),this.resolve=i(t),this.reject=i(n)}var i=n(12);e.exports.f=function(e){return new r(e)}},function(e,t,n){var r=n(5),i=n(1),o=function(e,t){if(i(e),!r(t)&&null!==t)throw TypeError(t+": can't set as prototype!")};e.exports={set:Object.setPrototypeOf||("__proto__"in{}?function(e,t,r){try{r=n(22)(Function.call,n(18).f(Object.prototype,"__proto__").set,2),r(e,[]),t=!(e instanceof Array)}catch(e){t=!0}return function(e,n){return o(e,n),t?e.__proto__=n:r(e,n),e}}({},!1):void 0),check:o}},function(e,t,n){var r=n(74)("keys"),i=n(47);e.exports=function(e){return r[e]||(r[e]=i(e))}},function(e,t,n){var r=n(28),i=n(26);e.exports=function(e){return function(t,n){var o,a,u=String(i(t)),s=r(n),c=u.length;return s<0||s>=c?e?"":void 0:(o=u.charCodeAt(s),o<55296||o>56319||s+1===c||(a=u.charCodeAt(s+1))<56320||a>57343?e?u.charAt(s):o:e?u.slice(s,s+2):a-56320+(o-55296<<10)+65536)}}},function(e,t,n){var r=n(68),i=n(26);e.exports=function(e,t,n){if(r(t))throw TypeError("String#"+n+" doesn't accept regex!");return String(i(e))}},function(e,t,n){"use strict";var r=n(28),i=n(26);e.exports=function(e){var t=String(i(this)),n="",o=r(e);if(o<0||o==1/0)throw RangeError("Count can't be negative");for(;o>0;(o>>>=1)&&(t+=t))1&o&&(n+=t);return n}},function(e,t){e.exports="\t\n\v\f\r   ᠎              \u2028\u2029\ufeff"},function(e,t,n){var r,i,o,a=n(22),u=n(145),s=n(97),c=n(94),l=n(2),f=l.process,p=l.setImmediate,d=l.clearImmediate,h=l.MessageChannel,v=l.Dispatch,y=0,m={},g=function(){var e=+this;if(m.hasOwnProperty(e)){var t=m[e];delete m[e],t()}},b=function(e){g.call(e.data)};p&&d||(p=function(e){for(var t=[],n=1;arguments.length>n;)t.push(arguments[n++]);return m[++y]=function(){u("function"==typeof e?e:Function(e),t)},r(y),y},d=function(e){delete m[e]},"process"==n(21)(f)?r=function(e){f.nextTick(a(g,e,1))}:v&&v.now?r=function(e){v.now(a(g,e,1))}:h?(i=new h,o=i.port2,i.port1.onmessage=b,r=a(o.postMessage,o,1)):l.addEventListener&&"function"==typeof postMessage&&!l.importScripts?(r=function(e){l.postMessage(e+"","*")},l.addEventListener("message",b,!1)):r="onreadystatechange"in c("script")?function(e){s.appendChild(c("script")).onreadystatechange=function(){s.removeChild(this),g.call(e)}}:function(e){setTimeout(a(g,e,1),0)}),e.exports={set:p,clear:d}},function(e,t,n){"use strict";function r(e,t,n){var r,i,o,a=new Array(n),u=8*n-t-1,s=(1<<u)-1,c=s>>1,l=23===t?U(2,-24)-U(2,-77):0,f=0,p=e<0||0===e&&1/e<0?1:0;for(e=V(e),e!=e||e===N?(i=e!=e?1:0,r=s):(r=D(L(e)/q),e*(o=U(2,-r))<1&&(r--,o*=2),e+=r+c>=1?l/o:l*U(2,1-c),e*o>=2&&(r++,o/=2),r+c>=s?(i=0,r=s):r+c>=1?(i=(e*o-1)*U(2,t),r+=c):(i=e*U(2,c-1)*U(2,t),r=0));t>=8;a[f++]=255&i,i/=256,t-=8);for(r=r<<t|i,u+=t;u>0;a[f++]=255&r,r/=256,u-=8);return a[--f]|=128*p,a}function i(e,t,n){var r,i=8*n-t-1,o=(1<<i)-1,a=o>>1,u=i-7,s=n-1,c=e[s--],l=127&c;for(c>>=7;u>0;l=256*l+e[s],s--,u-=8);for(r=l&(1<<-u)-1,l>>=-u,u+=t;u>0;r=256*r+e[s],s--,u-=8);if(0===l)l=1-a;else{if(l===o)return r?NaN:c?-N:N;r+=U(2,t),l-=a}return(c?-1:1)*r*U(2,l-t)}function o(e){return e[3]<<24|e[2]<<16|e[1]<<8|e[0]}function a(e){return[255&e]}function u(e){return[255&e,e>>8&255]}function s(e){return[255&e,e>>8&255,e>>16&255,e>>24&255]}function c(e){return r(e,52,8)}function l(e){return r(e,23,4)}function f(e,t,n){j(e[P],t,{get:function(){return this[n]}})}function p(e,t,n,r){var i=+n,o=E(i);if(o+t>e[z])throw I(R);var a=e[W]._b,u=o+e[B],s=a.slice(u,u+t);return r?s:s.reverse()}function d(e,t,n,r,i,o){var a=+n,u=E(a);if(u+t>e[z])throw I(R);for(var s=e[W]._b,c=u+e[B],l=r(+i),f=0;f<t;f++)s[c+f]=l[o?f:t-f-1]}var h=n(2),v=n(7),y=n(39),m=n(76),g=n(14),b=n(44),O=n(4),w=n(37),_=n(28),S=n(9),E=n(163),x=n(41).f,j=n(8).f,k=n(91),C=n(52),P="prototype",R="Wrong index!",A=h.ArrayBuffer,T=h.DataView,F=h.Math,I=h.RangeError,N=h.Infinity,M=A,V=F.abs,U=F.pow,D=F.floor,L=F.log,q=F.LN2,W=v?"_b":"buffer",z=v?"_l":"byteLength",B=v?"_o":"byteOffset";if(m.ABV){if(!O(function(){A(1)})||!O(function(){new A(-1)})||O(function(){return new A,new A(1.5),new A(NaN),"ArrayBuffer"!=A.name})){A=function(e){return w(this,A),new M(E(e))};for(var H,Y=A[P]=M[P],$=x(M),G=0;$.length>G;)(H=$[G++])in A||g(A,H,M[H]);y||(Y.constructor=A)}var K=new T(new A(2)),J=T[P].setInt8;K.setInt8(0,2147483648),K.setInt8(1,2147483649),!K.getInt8(0)&&K.getInt8(1)||b(T[P],{setInt8:function(e,t){J.call(this,e,t<<24>>24)},setUint8:function(e,t){J.call(this,e,t<<24>>24)}},!0)}else A=function(e){w(this,A,"ArrayBuffer");var t=E(e);this._b=k.call(new Array(t),0),this[z]=t},T=function(e,t,n){w(this,T,"DataView"),w(e,A,"DataView");var r=e[z],i=_(t);if(i<0||i>r)throw I("Wrong offset!");if(n=void 0===n?r-i:S(n),i+n>r)throw I("Wrong length!");this[W]=e,this[B]=i,this[z]=n},v&&(f(A,"byteLength","_l"),f(T,"buffer","_b"),f(T,"byteLength","_l"),f(T,"byteOffset","_o")),b(T[P],{getInt8:function(e){return p(this,1,e)[0]<<24>>24},getUint8:function(e){return p(this,1,e)[0]},getInt16:function(e){var t=p(this,2,e,arguments[1]);return(t[1]<<8|t[0])<<16>>16},getUint16:function(e){var t=p(this,2,e,arguments[1]);return t[1]<<8|t[0]},getInt32:function(e){return o(p(this,4,e,arguments[1]))},getUint32:function(e){return o(p(this,4,e,arguments[1]))>>>0},getFloat32:function(e){return i(p(this,4,e,arguments[1]),23,4)},getFloat64:function(e){return i(p(this,8,e,arguments[1]),52,8)},setInt8:function(e,t){d(this,1,e,a,t)},setUint8:function(e,t){d(this,1,e,a,t)},setInt16:function(e,t){d(this,2,e,u,t,arguments[2])},setUint16:function(e,t){d(this,2,e,u,t,arguments[2])},setInt32:function(e,t){d(this,4,e,s,t,arguments[2])},setUint32:function(e,t){d(this,4,e,s,t,arguments[2])},setFloat32:function(e,t){d(this,4,e,l,t,arguments[2])},setFloat64:function(e,t){d(this,8,e,c,t,arguments[2])}});C(A,"ArrayBuffer"),C(T,"DataView"),g(T[P],m.VIEW,!0),t.ArrayBuffer=A,t.DataView=T},function(e,t,n){var r=n(2),i=n(25),o=n(39),a=n(164),u=n(8).f;e.exports=function(e){var t=i.Symbol||(i.Symbol=o?{}:r.Symbol||{});"_"==e.charAt(0)||e in t||u(t,e,{value:a.f(e)})}},function(e,t,n){var r=n(57),i=n(6)("iterator"),o=n(51);e.exports=n(25).getIteratorMethod=function(e){if(void 0!=e)return e[i]||e["@@iterator"]||o[r(e)]}},function(e,t,n){"use strict";var r=n(34),i=n(148),o=n(51),a=n(20);e.exports=n(101)(Array,"Array",function(e,t){this._t=a(e),this._i=0,this._k=t},function(){var e=this._t,t=this._k,n=this._i++;return!e||n>=e.length?(this._t=void 0,i(1)):"keys"==t?i(0,n):"values"==t?i(0,e[n]):i(0,[n,e[n]])},"values"),o.Arguments=o.Array,r("keys"),r("values"),r("entries")},function(e,t){function n(e){return!!e&&("object"==typeof e||"function"==typeof e)&&"function"==typeof e.then}e.exports=n},function(e,t,n){"use strict";var r=n(48),i=n(30),o=n.i(r.a)(i.a,"Map");t.a=o},function(e,t,n){"use strict";function r(e){var t=-1,n=null==e?0:e.length;for(this.clear();++t<n;){var r=e[t];this.set(r[0],r[1])}}var i=n(495),o=n(496),a=n(497),u=n(498),s=n(499);r.prototype.clear=i.a,r.prototype.delete=o.a,r.prototype.get=a.a,r.prototype.has=u.a,r.prototype.set=s.a,t.a=r},function(e,t,n){"use strict";function r(e){var t=this.__data__=new i.a(e);this.size=t.size}var i=n(78),o=n(512),a=n(513),u=n(514),s=n(515),c=n(516);r.prototype.clear=o.a,r.prototype.delete=a.a,r.prototype.get=u.a,r.prototype.has=s.a,r.prototype.set=c.a,t.a=r},function(e,t,n){"use strict";function r(e,t,a,u,s){return e===t||(null==e||null==t||!n.i(o.a)(e)&&!n.i(o.a)(t)?e!==e&&t!==t:n.i(i.a)(e,t,a,u,r,s))}var i=n(446),o=n(49);t.a=r},function(e,t,n){"use strict";function r(e,t){return!!(t=null==t?i:t)&&("number"==typeof e||o.test(e))&&e>-1&&e%1==0&&e<t}var i=9007199254740991,o=/^(?:0|[1-9]\d*)$/;t.a=r},function(e,t,n){"use strict";function r(e,t){if(n.i(i.a)(e))return!1;var r=typeof e;return!("number"!=r&&"symbol"!=r&&"boolean"!=r&&null!=e&&!n.i(o.a)(e))||(u.test(e)||!a.test(e)||null!=t&&e in Object(t))}var i=n(31),o=n(86),a=/\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\\]|\\.)*?\1)\]/,u=/^\w*$/;t.a=r},function(e,t,n){"use strict";function r(e){var t=e&&e.constructor;return e===("function"==typeof t&&t.prototype||i)}var i=Object.prototype;t.a=r},function(e,t,n){"use strict";function r(e){return e}t.a=r},function(e,t,n){"use strict";var r=n(445),i=n(49),o=Object.prototype,a=o.hasOwnProperty,u=o.propertyIsEnumerable,s=n.i(r.a)(function(){return arguments}())?r.a:function(e){return n.i(i.a)(e)&&a.call(e,"callee")&&!u.call(e,"callee")};t.a=s},function(e,t,n){"use strict";(function(e){var r=n(30),i=n(525),o="object"==typeof exports&&exports&&!exports.nodeType&&exports,a=o&&"object"==typeof e&&e&&!e.nodeType&&e,u=a&&a.exports===o,s=u?r.a.Buffer:void 0,c=s?s.isBuffer:void 0,l=c||i.a;t.a=l}).call(t,n(90)(e))},function(e,t,n){"use strict";function r(e){if(!n.i(o.a)(e))return!1;var t=n.i(i.a)(e);return t==u||t==s||t==a||t==c}var i=n(56),o=n(36),a="[object AsyncFunction]",u="[object Function]",s="[object GeneratorFunction]",c="[object Proxy]";t.a=r},function(e,t,n){"use strict";function r(e){return"number"==typeof e&&e>-1&&e%1==0&&e<=i}var i=9007199254740991;t.a=r},function(e,t,n){"use strict";var r=n(449),i=n(463),o=n(504),a=o.a&&o.a.isTypedArray,u=a?n.i(i.a)(a):r.a;t.a=u},function(e,t,n){"use strict";function r(e){return n.i(a.a)(e)?n.i(i.a)(e):n.i(o.a)(e)}var i=n(172),o=n(451),a=n(84);t.a=r},function(e,t,n){"use strict";function r(e){"undefined"!=typeof console&&"function"==typeof console.error&&console.error(e);try{throw new Error(e)}catch(e){}}t.a=r},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),n.d(t,"prefix",function(){return r}),n.d(t,"ARRAY_INSERT",function(){return i}),n.d(t,"ARRAY_MOVE",function(){return o}),n.d(t,"ARRAY_POP",function(){return a}),n.d(t,"ARRAY_PUSH",function(){return u}),n.d(t,"ARRAY_REMOVE",function(){return s}),n.d(t,"ARRAY_REMOVE_ALL",function(){return c}),n.d(t,"ARRAY_SHIFT",function(){return l}),n.d(t,"ARRAY_SPLICE",function(){return f}),n.d(t,"ARRAY_UNSHIFT",function(){return p}),n.d(t,"ARRAY_SWAP",function(){return d}),n.d(t,"AUTOFILL",function(){return h}),n.d(t,"BLUR",function(){return v}),n.d(t,"CHANGE",function(){return y}),n.d(t,"CLEAR_FIELDS",function(){return m}),n.d(t,"CLEAR_SUBMIT",function(){return g}),n.d(t,"CLEAR_SUBMIT_ERRORS",function(){return b}),n.d(t,"CLEAR_ASYNC_ERROR",function(){return O}),n.d(t,"DESTROY",function(){return w}),n.d(t,"FOCUS",function(){return _}),n.d(t,"INITIALIZE",function(){return S}),n.d(t,"REGISTER_FIELD",function(){return E}),n.d(t,"RESET",function(){return x}),n.d(t,"SET_SUBMIT_FAILED",function(){return j}),n.d(t,"SET_SUBMIT_SUCCEEDED",function(){return k}),n.d(t,"START_ASYNC_VALIDATION",function(){return C}),n.d(t,"START_SUBMIT",function(){return P}),n.d(t,"STOP_ASYNC_VALIDATION",function(){return R}),n.d(t,"STOP_SUBMIT",function(){return A}),n.d(t,"SUBMIT",function(){return T}),n.d(t,"TOUCH",function(){return F}),n.d(t,"UNREGISTER_FIELD",function(){return I}),n.d(t,"UNTOUCH",function(){return N}),n.d(t,"UPDATE_SYNC_ERRORS",function(){return M}),n.d(t,"UPDATE_SYNC_WARNINGS",function(){return V});var r="@@redux-form/",i=r+"ARRAY_INSERT",o=r+"ARRAY_MOVE",a=r+"ARRAY_POP",u=r+"ARRAY_PUSH",s=r+"ARRAY_REMOVE",c=r+"ARRAY_REMOVE_ALL",l=r+"ARRAY_SHIFT",f=r+"ARRAY_SPLICE",p=r+"ARRAY_UNSHIFT",d=r+"ARRAY_SWAP",h=r+"AUTOFILL",v=r+"BLUR",y=r+"CHANGE",m=r+"CLEAR_FIELDS",g=r+"CLEAR_SUBMIT",b=r+"CLEAR_SUBMIT_ERRORS",O=r+"CLEAR_ASYNC_ERROR",w=r+"DESTROY",_=r+"FOCUS",S=r+"INITIALIZE",E=r+"REGISTER_FIELD",x=r+"RESET",j=r+"SET_SUBMIT_FAILED",k=r+"SET_SUBMIT_SUCCEEDED",C=r+"START_ASYNC_VALIDATION",P=r+"START_SUBMIT",R=r+"STOP_ASYNC_VALIDATION",A=r+"STOP_SUBMIT",T=r+"SUBMIT",F=r+"TOUCH",I=r+"UNREGISTER_FIELD",N=r+"UNTOUCH",M=r+"UPDATE_SYNC_ERRORS",V=r+"UPDATE_SYNC_WARNINGS"},function(e,t,n){"use strict";var r=n(579),i=function(e){var t=e.getIn,i=e.keys,o=n.i(r.a)(e);return function(e,n){var r=arguments.length>2&&void 0!==arguments[2]&&arguments[2];return function(a){var u=n||function(e){return t(e,"form")},s=u(a);if(t(s,e+".syncError"))return!1;if(!r){if(t(s,e+".error"))return!1}var c=t(s,e+".syncErrors"),l=t(s,e+".asyncErrors"),f=r?void 0:t(s,e+".submitErrors");if(!c&&!l&&!f)return!0;var p=t(s,e+".registeredFields");return!p||!i(p).filter(function(e){return t(p,"['"+e+"'].count")>0}).some(function(e){return o(t(p,"['"+e+"']"),c,l,f)})}}};t.a=i},function(e,t,n){var r=n(21);e.exports=function(e,t){if("number"!=typeof e&&"Number"!=r(e))throw TypeError(t);return+e}},function(e,t,n){"use strict";var r=n(10),i=n(46),o=n(9);e.exports=[].copyWithin||function(e,t){var n=r(this),a=o(n.length),u=i(e,a),s=i(t,a),c=arguments.length>2?arguments[2]:void 0,l=Math.min((void 0===c?a:i(c,a))-s,a-u),f=1;for(s<u&&u<s+l&&(f=-1,s+=l-1,u+=l-1);l-- >0;)s in n?n[u]=n[s]:delete n[u],u+=f,s+=f;return n}},function(e,t,n){var r=n(38);e.exports=function(e,t){var n=[];return r(e,!1,n.push,n,t),n}},function(e,t,n){var r=n(12),i=n(10),o=n(58),a=n(9);e.exports=function(e,t,n,u,s){r(t);var c=i(e),l=o(c),f=a(c.length),p=s?f-1:0,d=s?-1:1;if(n<2)for(;;){if(p in l){u=l[p],p+=d;break}if(p+=d,s?p<0:f<=p)throw TypeError("Reduce of empty array with no initial value")}for(;s?p>=0:f>p;p+=d)p in l&&(u=t(u,l[p],p,c));return u}},function(e,t,n){"use strict";var r=n(12),i=n(5),o=n(145),a=[].slice,u={},s=function(e,t,n){if(!(t in u)){for(var r=[],i=0;i<t;i++)r[i]="a["+i+"]";u[t]=Function("F,a","return new F("+r.join(",")+")")}return u[t](e,n)};e.exports=Function.bind||function(e){var t=r(this),n=a.call(arguments,1),u=function(){var r=n.concat(a.call(arguments));return this instanceof u?s(t,r.length,r):o(t,r,e)};return i(t.prototype)&&(u.prototype=t.prototype),u}},function(e,t,n){"use strict";var r=n(8).f,i=n(40),o=n(44),a=n(22),u=n(37),s=n(38),c=n(101),l=n(148),f=n(45),p=n(7),d=n(35).fastKey,h=n(54),v=p?"_s":"size",y=function(e,t){var n,r=d(t);if("F"!==r)return e._i[r];for(n=e._f;n;n=n.n)if(n.k==t)return n};e.exports={getConstructor:function(e,t,n,c){var l=e(function(e,r){u(e,l,t,"_i"),e._t=t,e._i=i(null),e._f=void 0,e._l=void 0,e[v]=0,void 0!=r&&s(r,n,e[c],e)});return o(l.prototype,{clear:function(){for(var e=h(this,t),n=e._i,r=e._f;r;r=r.n)r.r=!0,r.p&&(r.p=r.p.n=void 0),delete n[r.i];e._f=e._l=void 0,e[v]=0},delete:function(e){var n=h(this,t),r=y(n,e);if(r){var i=r.n,o=r.p;delete n._i[r.i],r.r=!0,o&&(o.n=i),i&&(i.p=o),n._f==r&&(n._f=i),n._l==r&&(n._l=o),n[v]--}return!!r},forEach:function(e){h(this,t);for(var n,r=a(e,arguments.length>1?arguments[1]:void 0,3);n=n?n.n:this._f;)for(r(n.v,n.k,this);n&&n.r;)n=n.p},has:function(e){return!!y(h(this,t),e)}}),p&&r(l.prototype,"size",{get:function(){return h(this,t)[v]}}),l},def:function(e,t,n){var r,i,o=y(e,t);return o?o.v=n:(e._l=o={i:i=d(t,!0),k:t,v:n,p:r=e._l,n:void 0,r:!1},e._f||(e._f=o),r&&(r.n=o),e[v]++,"F"!==i&&(e._i[i]=o)),e},getEntry:y,setStrong:function(e,t,n){c(e,t,function(e,n){this._t=h(e,t),this._k=n,this._l=void 0},function(){for(var e=this,t=e._k,n=e._l;n&&n.r;)n=n.p;return e._t&&(e._l=n=n?n.n:e._t._f)?"keys"==t?l(0,n.k):"values"==t?l(0,n.v):l(0,[n.k,n.v]):(e._t=void 0,l(1))},n?"entries":"values",!n,!0),f(t)}}},function(e,t,n){var r=n(57),i=n(137);e.exports=function(e){return function(){if(r(this)!=e)throw TypeError(e+"#toJSON isn't generic");return i(this)}}},function(e,t,n){"use strict";var r=n(44),i=n(35).getWeak,o=n(1),a=n(5),u=n(37),s=n(38),c=n(24),l=n(13),f=n(54),p=c(5),d=c(6),h=0,v=function(e){return e._l||(e._l=new y)},y=function(){this.a=[]},m=function(e,t){return p(e.a,function(e){return e[0]===t})};y.prototype={get:function(e){var t=m(this,e);if(t)return t[1]},has:function(e){return!!m(this,e)},set:function(e,t){var n=m(this,e);n?n[1]=t:this.a.push([e,t])},delete:function(e){var t=d(this.a,function(t){return t[0]===e});return~t&&this.a.splice(t,1),!!~t}},e.exports={getConstructor:function(e,t,n,o){var c=e(function(e,r){u(e,c,t,"_i"),e._t=t,e._i=h++,e._l=void 0,void 0!=r&&s(r,n,e[o],e)});return r(c.prototype,{delete:function(e){if(!a(e))return!1;var n=i(e);return!0===n?v(f(this,t)).delete(e):n&&l(n,this._i)&&delete n[this._i]},has:function(e){if(!a(e))return!1;var n=i(e);return!0===n?v(f(this,t)).has(e):n&&l(n,this._i)}}),c},def:function(e,t,n){var r=i(o(t),!0);return!0===r?v(e).set(t,n):r[e._i]=n,e},ufstore:v}},function(e,t,n){"use strict";function r(e,t,n,c,l,f,p,d){for(var h,v,y=l,m=0,g=!!p&&u(p,d,3);m<c;){if(m in n){if(h=g?g(n[m],m,t):n[m],v=!1,o(h)&&(v=h[s],v=void 0!==v?!!v:i(h)),v&&f>0)y=r(e,t,h,a(h.length),y,f-1)-1;else{if(y>=9007199254740991)throw TypeError();e[y]=h}y++}m++}return y}var i=n(67),o=n(5),a=n(9),u=n(22),s=n(6)("isConcatSpreadable");e.exports=r},function(e,t,n){e.exports=!n(7)&&!n(4)(function(){return 7!=Object.defineProperty(n(94)("div"),"a",{get:function(){return 7}}).a})},function(e,t){e.exports=function(e,t,n){var r=void 0===n;switch(t.length){case 0:return r?e():e.call(n);case 1:return r?e(t[0]):e.call(n,t[0]);case 2:return r?e(t[0],t[1]):e.call(n,t[0],t[1]);case 3:return r?e(t[0],t[1],t[2]):e.call(n,t[0],t[1],t[2]);case 4:return r?e(t[0],t[1],t[2],t[3]):e.call(n,t[0],t[1],t[2],t[3])}return e.apply(n,t)}},function(e,t,n){var r=n(5),i=Math.floor;e.exports=function(e){return!r(e)&&isFinite(e)&&i(e)===e}},function(e,t,n){var r=n(1);e.exports=function(e,t,n,i){try{return i?t(r(n)[0],n[1]):t(n)}catch(t){var o=e.return;throw void 0!==o&&r(o.call(e)),t}}},function(e,t){e.exports=function(e,t){return{value:t,done:!!e}}},function(e,t,n){var r=n(103),i=Math.pow,o=i(2,-52),a=i(2,-23),u=i(2,127)*(2-a),s=i(2,-126),c=function(e){return e+1/o-1/o};e.exports=Math.fround||function(e){var t,n,i=Math.abs(e),l=r(e);return i<s?l*c(i/s/a)*s*a:(t=(1+a/o)*i,n=t-(t-i),n>u||n!=n?l*(1/0):l*n)}},function(e,t){e.exports=Math.log1p||function(e){return(e=+e)>-1e-8&&e<1e-8?e-e*e/2:Math.log(1+e)}},function(e,t){e.exports=Math.scale||function(e,t,n,r,i){return 0===arguments.length||e!=e||t!=t||n!=n||r!=r||i!=i?NaN:e===1/0||e===-1/0?e:(e-t)*(i-r)/(n-t)+r}},function(e,t,n){"use strict";var r=n(42),i=n(71),o=n(59),a=n(10),u=n(58),s=Object.assign;e.exports=!s||n(4)(function(){var e={},t={},n=Symbol(),r="abcdefghijklmnopqrst";return e[n]=7,r.split("").forEach(function(e){t[e]=e}),7!=s({},e)[n]||Object.keys(s({},t)).join("")!=r})?function(e,t){for(var n=a(e),s=arguments.length,c=1,l=i.f,f=o.f;s>c;)for(var p,d=u(arguments[c++]),h=l?r(d).concat(l(d)):r(d),v=h.length,y=0;v>y;)f.call(d,p=h[y++])&&(n[p]=d[p]);return n}:s},function(e,t,n){var r=n(8),i=n(1),o=n(42);e.exports=n(7)?Object.defineProperties:function(e,t){i(e);for(var n,a=o(t),u=a.length,s=0;u>s;)r.f(e,n=a[s++],t[n]);return e}},function(e,t,n){var r=n(20),i=n(41).f,o={}.toString,a="object"==typeof window&&window&&Object.getOwnPropertyNames?Object.getOwnPropertyNames(window):[],u=function(e){try{return i(e)}catch(e){return a.slice()}};e.exports.f=function(e){return a&&"[object Window]"==o.call(e)?u(e):i(r(e))}},function(e,t,n){var r=n(13),i=n(20),o=n(63)(!1),a=n(107)("IE_PROTO");e.exports=function(e,t){var n,u=i(e),s=0,c=[];for(n in u)n!=a&&r(u,n)&&c.push(n);for(;t.length>s;)r(u,n=t[s++])&&(~o(c,n)||c.push(n));return c}},function(e,t,n){var r=n(42),i=n(20),o=n(59).f;e.exports=function(e){return function(t){for(var n,a=i(t),u=r(a),s=u.length,c=0,l=[];s>c;)o.call(a,n=u[c++])&&l.push(e?[n,a[n]]:a[n]);return l}}},function(e,t,n){var r=n(41),i=n(71),o=n(1),a=n(2).Reflect;e.exports=a&&a.ownKeys||function(e){var t=r.f(o(e)),n=i.f;return n?t.concat(n(e)):t}},function(e,t,n){var r=n(2).parseFloat,i=n(53).trim;e.exports=1/r(n(111)+"-0")!=-1/0?function(e){var t=i(String(e),3),n=r(t);return 0===n&&"-"==t.charAt(0)?-0:n}:r},function(e,t,n){var r=n(2).parseInt,i=n(53).trim,o=n(111),a=/^[-+]?0[xX]/;e.exports=8!==r(o+"08")||22!==r(o+"0x16")?function(e,t){var n=i(String(e),3);return r(n,t>>>0||(a.test(n)?16:10))}:r},function(e,t){e.exports=function(e){try{return{e:!1,v:e()}}catch(e){return{e:!0,v:e}}}},function(e,t,n){var r=n(1),i=n(5),o=n(105);e.exports=function(e,t){if(r(e),i(t)&&t.constructor===e)return t;var n=o.f(e);return(0,n.resolve)(t),n.promise}},function(e,t,n){var r=n(9),i=n(110),o=n(26);e.exports=function(e,t,n,a){var u=String(o(e)),s=u.length,c=void 0===n?" ":String(n),l=r(t);if(l<=s||""==c)return u;var f=l-s,p=i.call(c,Math.ceil(f/c.length));return p.length>f&&(p=p.slice(0,f)),a?p+u:u+p}},function(e,t,n){var r=n(28),i=n(9);e.exports=function(e){if(void 0===e)return 0;var t=r(e),n=i(t);if(t!==n)throw RangeError("Wrong length!");return n}},function(e,t,n){t.f=n(6)},function(e,t,n){"use strict";var r=n(140),i=n(54);e.exports=n(64)("Map",function(e){return function(){return e(this,arguments.length>0?arguments[0]:void 0)}},{get:function(e){var t=r.getEntry(i(this,"Map"),e);return t&&t.v},set:function(e,t){return r.def(i(this,"Map"),0===e?0:e,t)}},r,!0)},function(e,t,n){n(7)&&"g"!=/./g.flags&&n(8).f(RegExp.prototype,"flags",{configurable:!0,get:n(66)})},function(e,t,n){"use strict";var r=n(140),i=n(54);e.exports=n(64)("Set",function(e){return function(){return e(this,arguments.length>0?arguments[0]:void 0)}},{add:function(e){return r.def(i(this,"Set"),e=0===e?0:e,e)}},r)},function(e,t,n){"use strict";var r,i=n(24)(0),o=n(15),a=n(35),u=n(152),s=n(142),c=n(5),l=n(4),f=n(54),p=a.getWeak,d=Object.isExtensible,h=s.ufstore,v={},y=function(e){return function(){return e(this,arguments.length>0?arguments[0]:void 0)}},m={get:function(e){if(c(e)){var t=p(e);return!0===t?h(f(this,"WeakMap")).get(e):t?t[this._i]:void 0}},set:function(e,t){return s.def(f(this,"WeakMap"),e,t)}},g=e.exports=n(64)("WeakMap",y,m,s,!0,!0);l(function(){return 7!=(new g).set((Object.freeze||Object)(v),7).get(v)})&&(r=s.getConstructor(y,"WeakMap"),u(r.prototype,m),a.NEED=!0,i(["delete","has","get","set"],function(e){var t=g.prototype,n=t[e];o(t,e,function(t,i){if(c(t)&&!d(t)){this._f||(this._f=new r);var o=this._f[e](t,i);return"set"==e?this:o}return n.call(this,t,i)})}))},function(e,t,n){"use strict";var r={};e.exports=r},function(e,t,n){"use strict";var r={childContextTypes:!0,contextTypes:!0,defaultProps:!0,displayName:!0,getDefaultProps:!0,mixins:!0,propTypes:!0,type:!0},i={name:!0,length:!0,prototype:!0,caller:!0,callee:!0,arguments:!0,arity:!0},o=Object.defineProperty,a=Object.getOwnPropertyNames,u=Object.getOwnPropertySymbols,s=Object.getOwnPropertyDescriptor,c=Object.getPrototypeOf,l=c&&c(Object);e.exports=function e(t,n,f){if("string"!=typeof n){if(l){var p=c(n);p&&p!==l&&e(t,p,f)}var d=a(n);u&&(d=d.concat(u(n)));for(var h=0;h<d.length;++h){var v=d[h];if(!(r[v]||i[v]||f&&f[v])){var y=s(n,v);try{o(t,v,y)}catch(e){}}}return t}return t}},function(e,t,n){"use strict";var r=n(30),i=r.a.Uint8Array;t.a=i},function(e,t,n){"use strict";function r(e,t){var r=n.i(a.a)(e),l=!r&&n.i(o.a)(e),p=!r&&!l&&n.i(u.a)(e),d=!r&&!l&&!p&&n.i(c.a)(e),h=r||l||p||d,v=h?n.i(i.a)(e.length,String):[],y=v.length;for(var m in e)!t&&!f.call(e,m)||h&&("length"==m||p&&("offset"==m||"parent"==m)||d&&("buffer"==m||"byteLength"==m||"byteOffset"==m)||n.i(s.a)(m,y))||v.push(m);return v}var i=n(461),o=n(126),a=n(31),u=n(127),s=n(122),c=n(130),l=Object.prototype,f=l.hasOwnProperty;t.a=r},function(e,t,n){"use strict";function r(e,t){for(var n=-1,r=null==e?0:e.length,i=Array(r);++n<r;)i[n]=t(e[n],n,e);return i}t.a=r},function(e,t,n){"use strict";function r(e,t,r){(void 0===r||n.i(o.a)(e[t],r))&&(void 0!==r||t in e)||n.i(i.a)(e,t,r)}var i=n(81),o=n(61);t.a=r},function(e,t,n){"use strict";var r=n(471),i=n.i(r.a)();t.a=i},function(e,t,n){"use strict";function r(e,t){t=n.i(i.a)(t,e);for(var r=0,a=t.length;null!=e&&r<a;)e=e[n.i(o.a)(t[r++])];return r&&r==a?e:void 0}var i=n(177),o=n(60);t.a=r},function(e,t,n){"use strict";function r(e,t){return n.i(i.a)(e)?e:n.i(o.a)(e,t)?[e]:n.i(a.a)(n.i(u.a)(e))}var i=n(31),o=n(123),a=n(186),u=n(191);t.a=r},function(e,t,n){"use strict";function r(e,t){var n=-1,r=e.length;for(t||(t=Array(r));++n<r;)t[n]=e[n];return t}t.a=r},function(e,t,n){"use strict";var r=n(48),i=function(){try{var e=n.i(r.a)(Object,"defineProperty");return e({},"",{}),e}catch(e){}}();t.a=i},function(e,t,n){"use strict";function r(e,t,r,c,l,f){var p=r&u,d=e.length,h=t.length;if(d!=h&&!(p&&h>d))return!1;var v=f.get(e);if(v&&f.get(t))return v==t;var y=-1,m=!0,g=r&s?new i.a:void 0;for(f.set(e,t),f.set(t,e);++y<d;){var b=e[y],O=t[y];if(c)var w=p?c(O,b,y,t,e,f):c(b,O,y,e,t,f);if(void 0!==w){if(w)continue;m=!1;break}if(g){if(!n.i(o.a)(t,function(e,t){if(!n.i(a.a)(g,t)&&(b===e||l(b,e,r,c,f)))return g.push(t)})){m=!1;break}}else if(b!==O&&!l(b,O,r,c,f)){m=!1;break}}return f.delete(e),f.delete(t),m}var i=n(434),o=n(439),a=n(464),u=1,s=2;t.a=r},function(e,t,n){"use strict";(function(e){var n="object"==typeof e&&e&&e.Object===Object&&e;t.a=n}).call(t,n(89))},function(e,t,n){"use strict";var r=n(185),i=n.i(r.a)(Object.getPrototypeOf,Object);t.a=i},function(e,t,n){"use strict";function r(e){return e===e&&!n.i(i.a)(e)}var i=n(36);t.a=r},function(e,t,n){"use strict";function r(e,t){return function(n){return null!=n&&(n[e]===t&&(void 0!==t||e in Object(n)))}}t.a=r},function(e,t,n){"use strict";function r(e,t){return function(n){return e(t(n))}}t.a=r},function(e,t,n){"use strict";var r=n(501),i=/^\./,o=/[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|$))/g,a=/\\(\\)?/g,u=n.i(r.a)(function(e){var t=[];return i.test(e)&&t.push(""),e.replace(o,function(e,n,r,i){t.push(r?i.replace(a,"$1"):n||e)}),t});t.a=u},function(e,t,n){"use strict";function r(e){if(null!=e){try{return o.call(e)}catch(e){}try{return e+""}catch(e){}}return""}var i=Function.prototype,o=i.toString;t.a=r},function(e,t,n){"use strict";function r(e,t,r){r="function"==typeof r?r:void 0;var o=r?r(e,t):void 0;return void 0===o?n.i(i.a)(e,t,void 0,r):!!o}var i=n(121);t.a=r},function(e,t,n){"use strict";function r(e){return n.i(a.a)(e)?n.i(i.a)(e,!0):n.i(o.a)(e)}var i=n(172),o=n(452),a=n(84);t.a=r},function(e,t,n){"use strict";function r(e,t){var r={};return t=n.i(a.a)(t,3),n.i(o.a)(e,function(e,o,a){n.i(i.a)(r,o,t(e,o,a))}),r}var i=n(81),o=n(442),a=n(450);t.a=r},function(e,t,n){"use strict";function r(e){return null==e?"":n.i(i.a)(e)}var i=n(462);t.a=r},function(e,t,n){"use strict";function r(e){if(null===e||void 0===e)throw new TypeError("Object.assign cannot be called with null or undefined");return Object(e)}/* object-assign (c) Sindre Sorhus @license MIT */ var i=Object.getOwnPropertySymbols,o=Object.prototype.hasOwnProperty,a=Object.prototype.propertyIsEnumerable;e.exports=function(){try{if(!Object.assign)return!1;var e=new String("abc");if(e[5]="de","5"===Object.getOwnPropertyNames(e)[0])return!1;for(var t={},n=0;n<10;n++)t["_"+String.fromCharCode(n)]=n;if("0123456789"!==Object.getOwnPropertyNames(t).map(function(e){return t[e]}).join(""))return!1;var r={};return"abcdefghijklmnopqrst".split("").forEach(function(e){r[e]=e}),"abcdefghijklmnopqrst"===Object.keys(Object.assign({},r)).join("")}catch(e){return!1}}()?Object.assign:function(e,t){for(var n,u,s=r(e),c=1;c<arguments.length;c++){n=Object(arguments[c]);for(var l in n)o.call(n,l)&&(s[l]=n[l]);if(i){u=i(n);for(var f=0;f<u.length;f++)a.call(n,u[f])&&(s[u[f]]=n[u[f]])}}return s}},function(e,t,n){"use strict";function r(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function i(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function o(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}function a(e,t){var n={};for(var r in e)t.indexOf(r)>=0||Object.prototype.hasOwnProperty.call(e,r)&&(n[r]=e[r]);return n}function u(){}function s(e,t){var n={run:function(r){try{var i=e(t.getState(),r);(i!==n.props||n.error)&&(n.shouldComponentUpdate=!0,n.props=i,n.error=null)}catch(e){n.shouldComponentUpdate=!0,n.error=e}}};return n}function c(e){var t,c,l=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},p=l.getDisplayName,O=void 0===p?function(e){return"ConnectAdvanced("+e+")"}:p,w=l.methodName,_=void 0===w?"connectAdvanced":w,S=l.renderCountProp,E=void 0===S?void 0:S,x=l.shouldHandleStateChanges,j=void 0===x||x,k=l.storeKey,C=void 0===k?"store":k,P=l.withRef,R=void 0!==P&&P,A=a(l,["getDisplayName","methodName","renderCountProp","shouldHandleStateChanges","storeKey","withRef"]),T=C+"Subscription",F=g++,I=(t={},t[C]=y.a,t[T]=y.b,t),N=(c={},c[T]=y.b,c);return function(t){d()("function"==typeof t,"You must pass a component to the function returned by connect. Instead received "+JSON.stringify(t));var a=t.displayName||t.name||"Component",c=O(a),l=m({},A,{getDisplayName:O,methodName:_,renderCountProp:E,shouldHandleStateChanges:j,storeKey:C,withRef:R,displayName:c,wrappedComponentName:a,WrappedComponent:t}),p=function(a){function f(e,t){r(this,f);var n=i(this,a.call(this,e,t));return n.version=F,n.state={},n.renderCount=0,n.store=e[C]||t[C],n.propsMode=Boolean(e[C]),n.setWrappedInstance=n.setWrappedInstance.bind(n),d()(n.store,'Could not find "'+C+'" in either the context or props of "'+c+'". Either wrap the root component in a <Provider>, or explicitly pass "'+C+'" as a prop to "'+c+'".'),n.initSelector(),n.initSubscription(),n}return o(f,a),f.prototype.getChildContext=function(){var e,t=this.propsMode?null:this.subscription;return e={},e[T]=t||this.context[T],e},f.prototype.componentDidMount=function(){j&&(this.subscription.trySubscribe(),this.selector.run(this.props),this.selector.shouldComponentUpdate&&this.forceUpdate())},f.prototype.componentWillReceiveProps=function(e){this.selector.run(e)},f.prototype.shouldComponentUpdate=function(){return this.selector.shouldComponentUpdate},f.prototype.componentWillUnmount=function(){this.subscription&&this.subscription.tryUnsubscribe(),this.subscription=null,this.notifyNestedSubs=u,this.store=null,this.selector.run=u,this.selector.shouldComponentUpdate=!1},f.prototype.getWrappedInstance=function(){return d()(R,"To access the wrapped instance, you need to specify { withRef: true } in the options argument of the "+_+"() call."),this.wrappedInstance},f.prototype.setWrappedInstance=function(e){this.wrappedInstance=e},f.prototype.initSelector=function(){var t=e(this.store.dispatch,l);this.selector=s(t,this.store),this.selector.run(this.props)},f.prototype.initSubscription=function(){if(j){var e=(this.propsMode?this.props:this.context)[T];this.subscription=new v.a(this.store,e,this.onStateChange.bind(this)),this.notifyNestedSubs=this.subscription.notifyNestedSubs.bind(this.subscription)}},f.prototype.onStateChange=function(){this.selector.run(this.props),this.selector.shouldComponentUpdate?(this.componentDidUpdate=this.notifyNestedSubsOnComponentDidUpdate,this.setState(b)):this.notifyNestedSubs()},f.prototype.notifyNestedSubsOnComponentDidUpdate=function(){this.componentDidUpdate=void 0,this.notifyNestedSubs()},f.prototype.isSubscribed=function(){return Boolean(this.subscription)&&this.subscription.isSubscribed()},f.prototype.addExtraProps=function(e){if(!(R||E||this.propsMode&&this.subscription))return e;var t=m({},e);return R&&(t.ref=this.setWrappedInstance),E&&(t[E]=this.renderCount++),this.propsMode&&this.subscription&&(t[T]=this.subscription),t},f.prototype.render=function(){var e=this.selector;if(e.shouldComponentUpdate=!1,e.error)throw e.error;return n.i(h.createElement)(t,this.addExtraProps(e.props))},f}(h.Component);return p.WrappedComponent=t,p.displayName=c,p.childContextTypes=N,p.contextTypes=I,p.propTypes=I,f()(p,t)}}t.a=c;var l=n(170),f=n.n(l),p=n(55),d=n.n(p),h=n(11),v=(n.n(h),n(541)),y=n(195),m=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},g=0,b={}},function(e,t,n){"use strict";function r(e){return function(t,n){function r(){return i}var i=e(t,n);return r.dependsOnOwnProps=!1,r}}function i(e){return null!==e.dependsOnOwnProps&&void 0!==e.dependsOnOwnProps?Boolean(e.dependsOnOwnProps):1!==e.length}function o(e,t){return function(t,n){var r=(n.displayName,function(e,t){return r.dependsOnOwnProps?r.mapToProps(e,t):r.mapToProps(e)});return r.dependsOnOwnProps=!0,r.mapToProps=function(t,n){r.mapToProps=e,r.dependsOnOwnProps=i(e);var o=r(t,n);return"function"==typeof o&&(r.mapToProps=o,r.dependsOnOwnProps=i(o),o=r(t,n)),o},r}}t.b=r,t.a=o;n(196)},function(e,t,n){"use strict";n.d(t,"b",function(){return o}),n.d(t,"a",function(){return a});var r=n(17),i=n.n(r),o=i.a.shape({trySubscribe:i.a.func.isRequired,tryUnsubscribe:i.a.func.isRequired,notifyNestedSubs:i.a.func.isRequired,isSubscribed:i.a.func.isRequired}),a=i.a.shape({subscribe:i.a.func.isRequired,dispatch:i.a.func.isRequired,getState:i.a.func.isRequired})},function(e,t,n){"use strict";n(85),n(132)},function(e,t,n){"use strict";function r(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function i(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function o(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}var a=n(419),u=n.n(a),s=function(e){function t(e){r(this,t);var n=i(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,"Submit Validation Failed"));return n.errors=e,n}return o(t,e),t}(u.a);t.a=s},function(e,t,n){"use strict";var r=n(133),i=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},o=function(e,t,n,i){return{type:r.ARRAY_INSERT,meta:{form:e,field:t,index:n},payload:i}},a=function(e,t,n,i){return{type:r.ARRAY_MOVE,meta:{form:e,field:t,from:n,to:i}}},u=function(e,t){return{type:r.ARRAY_POP,meta:{form:e,field:t}}},s=function(e,t,n){return{type:r.ARRAY_PUSH,meta:{form:e,field:t},payload:n}},c=function(e,t,n){return{type:r.ARRAY_REMOVE,meta:{form:e,field:t,index:n}}},l=function(e,t){return{type:r.ARRAY_REMOVE_ALL,meta:{form:e,field:t}}},f=function(e,t){return{type:r.ARRAY_SHIFT,meta:{form:e,field:t}}},p=function(e,t,n,i,o){var a={type:r.ARRAY_SPLICE,meta:{form:e,field:t,index:n,removeNum:i}};return void 0!==o&&(a.payload=o),a},d=function(e,t,n,i){if(n===i)throw new Error("Swap indices cannot be equal");if(n<0||i<0)throw new Error("Swap indices cannot be negative");return{type:r.ARRAY_SWAP,meta:{form:e,field:t,indexA:n,indexB:i}}},h=function(e,t,n){return{type:r.ARRAY_UNSHIFT,meta:{form:e,field:t},payload:n}},v=function(e,t,n){return{type:r.AUTOFILL,meta:{form:e,field:t},payload:n}},y=function(e,t,n,i){return{type:r.BLUR,meta:{form:e,field:t,touch:i},payload:n}},m=function(e,t,n,i,o){return{type:r.CHANGE,meta:{form:e,field:t,touch:i,persistentSubmitErrors:o},payload:n}},g=function(e){return{type:r.CLEAR_SUBMIT,meta:{form:e}}},b=function(e){return{type:r.CLEAR_SUBMIT_ERRORS,meta:{form:e}}},O=function(e,t){return{type:r.CLEAR_ASYNC_ERROR,meta:{form:e,field:t}}},w=function(e,t,n){for(var i=arguments.length,o=Array(i>3?i-3:0),a=3;a<i;a++)o[a-3]=arguments[a];return{type:r.CLEAR_FIELDS,meta:{form:e,keepTouched:t,persistentSubmitErrors:n,fields:o}}},_=function(){for(var e=arguments.length,t=Array(e),n=0;n<e;n++)t[n]=arguments[n];return{type:r.DESTROY,meta:{form:t}}},S=function(e,t){return{type:r.FOCUS,meta:{form:e,field:t}}},E=function(e,t,n){var o=arguments.length>3&&void 0!==arguments[3]?arguments[3]:{};return n instanceof Object&&(o=n,n=!1),{type:r.INITIALIZE,meta:i({form:e,keepDirty:n},o),payload:t}},x=function(e,t,n){return{type:r.REGISTER_FIELD,meta:{form:e},payload:{name:t,type:n}}},j=function(e){return{type:r.RESET,meta:{form:e}}},k=function(e,t){return{type:r.START_ASYNC_VALIDATION,meta:{form:e,field:t}}},C=function(e){return{type:r.START_SUBMIT,meta:{form:e}}},P=function(e,t){return{type:r.STOP_ASYNC_VALIDATION,meta:{form:e},payload:t,error:!(!t||!Object.keys(t).length)}},R=function(e,t){return{type:r.STOP_SUBMIT,meta:{form:e},payload:t,error:!(!t||!Object.keys(t).length)}},A=function(e){return{type:r.SUBMIT,meta:{form:e}}},T=function(e){for(var t=arguments.length,n=Array(t>1?t-1:0),i=1;i<t;i++)n[i-1]=arguments[i];return{type:r.SET_SUBMIT_FAILED,meta:{form:e,fields:n},error:!0}},F=function(e){for(var t=arguments.length,n=Array(t>1?t-1:0),i=1;i<t;i++)n[i-1]=arguments[i];return{type:r.SET_SUBMIT_SUCCEEDED,meta:{form:e,fields:n},error:!1}},I=function(e){for(var t=arguments.length,n=Array(t>1?t-1:0),i=1;i<t;i++)n[i-1]=arguments[i];return{type:r.TOUCH,meta:{form:e,fields:n}}},N=function(e,t){var n=!(arguments.length>2&&void 0!==arguments[2])||arguments[2];return{type:r.UNREGISTER_FIELD,meta:{form:e},payload:{name:t,destroyOnUnmount:n}}},M=function(e){for(var t=arguments.length,n=Array(t>1?t-1:0),i=1;i<t;i++)n[i-1]=arguments[i];return{type:r.UNTOUCH,meta:{form:e,fields:n}}},V=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},n=arguments[2];return{type:r.UPDATE_SYNC_ERRORS,meta:{form:e},payload:{syncErrors:t,error:n}}},U=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},n=arguments[2];return{type:r.UPDATE_SYNC_WARNINGS,meta:{form:e},payload:{syncWarnings:t,warning:n}}},D={arrayInsert:o,arrayMove:a,arrayPop:u,arrayPush:s,arrayRemove:c,arrayRemoveAll:l,arrayShift:f,arraySplice:p,arraySwap:d,arrayUnshift:h,autofill:v,blur:y,change:m,clearFields:w,clearSubmit:g,clearSubmitErrors:b,clearAsyncError:O,destroy:_,focus:S,initialize:E,registerField:x,reset:j,startAsyncValidation:k,startSubmit:C,stopAsyncValidation:P,stopSubmit:R,submit:A,setSubmitFailed:T,setSubmitSucceeded:F,touch:I,unregisterField:N,untouch:M,updateSyncErrors:V,updateSyncWarnings:U};t.a=D},function(e,t,n){"use strict";function r(e,t){var n={};for(var r in e)t.indexOf(r)>=0||Object.prototype.hasOwnProperty.call(e,r)&&(n[r]=e[r]);return n}var i=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},o=function(e,t,n,r){var o=t.value;return"checkbox"===e?i({},t,{checked:!!o}):"radio"===e?i({},t,{checked:r(o,n),value:n}):"select-multiple"===e?i({},t,{value:o||[]}):"file"===e?i({},t,{value:o||void 0}):t},a=function(e,t,n){var a=e.getIn,u=e.toJS,s=e.deepEqual,c=n.asyncError,l=n.asyncValidating,f=n.onBlur,p=n.onChange,d=n.onDrop,h=n.onDragStart,v=n.dirty,y=n.dispatch,m=n.onFocus,g=n.form,b=n.format,O=n.initial,w=(n.parse,n.pristine),_=n.props,S=n.state,E=n.submitError,x=n.submitFailed,j=n.submitting,k=n.syncError,C=n.syncWarning,P=(n.validate,n.value),R=n._value,A=(n.warn,r(n,["asyncError","asyncValidating","onBlur","onChange","onDrop","onDragStart","dirty","dispatch","onFocus","form","format","initial","parse","pristine","props","state","submitError","submitFailed","submitting","syncError","syncWarning","validate","value","_value","warn"])),T=k||c||E,F=C,I=function(e,n){if(null===n)return e;var r=null==e?"":e;return n?n(e,t):r}(P,b);return{input:o(A.type,{name:t,onBlur:f,onChange:p,onDragStart:h,onDrop:d,onFocus:m,value:I},R,s),meta:i({},u(S),{active:!(!S||!a(S,"active")),asyncValidating:l,autofilled:!(!S||!a(S,"autofilled")),dirty:v,dispatch:y,error:T,form:g,initial:O,warning:F,invalid:!!T,pristine:w,submitting:!!j,submitFailed:!!x,touched:!(!S||!a(S,"touched")),valid:!T,visited:!(!S||!a(S,"visited"))}),custom:i({},A,_)}};t.a=a},function(e,t,n){"use strict";var r=function(e){var t=e.initialized,n=e.trigger,r=e.pristine;if(!e.syncValidationPasses)return!1;switch(n){case"blur":case"change":return!0;case"submit":return!r||!t;default:return!1}};t.a=r},function(e,t,n){"use strict";var r=function(e){var t=e.values,n=e.nextProps,r=e.initialRender,i=e.lastFieldValidatorKeys,o=e.fieldValidatorKeys,a=e.structure;return!!r||(!a.deepEqual(t,n&&n.values)||!a.deepEqual(i,o))};t.a=r},function(e,t,n){"use strict";var r=function(e){var t=e.values,n=e.nextProps,r=e.initialRender,i=e.lastFieldValidatorKeys,o=e.fieldValidatorKeys,a=e.structure;return!!r||(!a.deepEqual(t,n&&n.values)||!a.deepEqual(i,o))};t.a=r},function(e,t,n){"use strict";var r=function(e){var t=e.values,n=e.nextProps,r=e.initialRender,i=e.lastFieldValidatorKeys,o=e.fieldValidatorKeys,a=e.structure;return!!r||(!a.deepEqual(t,n&&n.values)||!a.deepEqual(i,o))};t.a=r},function(e,t,n){"use strict";var r=function(e){return!!(e&&e.stopPropagation&&e.preventDefault)};t.a=r},function(e,t,n){"use strict";var r=n(564),i=n(208),o=function(e,t){var o=t.name,a=t.parse,u=t.normalize,s=n.i(r.a)(e,i.a);return a&&(s=a(s,o)),u&&(s=u(o,s)),s};t.a=o},function(e,t,n){"use strict";var r=n(204),i=function(e){var t=n.i(r.a)(e);return t&&e.preventDefault(),t};t.a=i},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),n.d(t,"actionTypes",function(){return V}),n.d(t,"arrayInsert",function(){return U}),n.d(t,"arrayMove",function(){return D}),n.d(t,"arrayPop",function(){return L}),n.d(t,"arrayPush",function(){return q}),n.d(t,"arrayRemove",function(){return W}),n.d(t,"arrayRemoveAll",function(){return z}),n.d(t,"arrayShift",function(){return B}),n.d(t,"arraySplice",function(){return H}),n.d(t,"arraySwap",function(){return Y}),n.d(t,"arrayUnshift",function(){return $}),n.d(t,"autofill",function(){return G}),n.d(t,"blur",function(){return K}),n.d(t,"change",function(){return J}),n.d(t,"clearFields",function(){return Q}),n.d(t,"clearSubmitErrors",function(){return Z}),n.d(t,"destroy",function(){return X}),n.d(t,"focus",function(){return ee}),n.d(t,"initialize",function(){return te}),n.d(t,"registerField",function(){return ne}),n.d(t,"reset",function(){return re}),n.d(t,"setSubmitFailed",function(){return ie}),n.d(t,"setSubmitSucceeded",function(){return oe}),n.d(t,"startAsyncValidation",function(){return ae}),n.d(t,"startSubmit",function(){return ue}),n.d(t,"stopAsyncValidation",function(){return se}),n.d(t,"stopSubmit",function(){return ce}),n.d(t,"submit",function(){return le}),n.d(t,"touch",function(){return fe}),n.d(t,"unregisterField",function(){return pe}),n.d(t,"untouch",function(){return de}),n.d(t,"updateSyncWarnings",function(){return he});var r=n(198),i=n(133),o=n(200);n.d(t,"defaultShouldAsyncValidate",function(){return o.a});var a=n(202);n.d(t,"defaultShouldValidate",function(){return a.a});var u=n(201);n.d(t,"defaultShouldError",function(){return u.a});var s=n(203);n.d(t,"defaultShouldWarn",function(){return s.a});var c=n(551);n.d(t,"Form",function(){return c.a});var l=n(552);n.d(t,"FormSection",function(){return l.a});var f=n(197);n.d(t,"SubmissionError",function(){return f.a});var p=n(587);n.d(t,"propTypes",function(){return p.a}),n.d(t,"fieldInputPropTypes",function(){return p.b}),n.d(t,"fieldMetaPropTypes",function(){return p.c}),n.d(t,"fieldPropTypes",function(){return p.d}),n.d(t,"fieldArrayFieldsPropTypes",function(){return p.e}),n.d(t,"fieldArrayMetaPropTypes",function(){return p.f}),n.d(t,"fieldArrayPropTypes",function(){return p.g}),n.d(t,"formPropTypes",function(){return p.h});var d=n(548);n.d(t,"Field",function(){return d.a});var h=n(550);n.d(t,"Fields",function(){return h.a});var v=n(549);n.d(t,"FieldArray",function(){return v.a});var y=n(566);n.d(t,"formValueSelector",function(){return y.a});var m=n(567);n.d(t,"formValues",function(){return m.a});var g=n(570);n.d(t,"getFormError",function(){return g.a});var b=n(573);n.d(t,"getFormNames",function(){return b.a});var O=n(577);n.d(t,"getFormValues",function(){return O.a});var w=n(571);n.d(t,"getFormInitialValues",function(){return w.a});var _=n(575);n.d(t,"getFormSyncErrors",function(){return _.a});var S=n(572);n.d(t,"getFormMeta",function(){return S.a});var E=n(569);n.d(t,"getFormAsyncErrors",function(){return E.a});var x=n(576);n.d(t,"getFormSyncWarnings",function(){return x.a});var j=n(574);n.d(t,"getFormSubmitErrors",function(){return j.a});var k=n(582);n.d(t,"isDirty",function(){return k.a});var C=n(583);n.d(t,"isInvalid",function(){return C.a});var P=n(584);n.d(t,"isPristine",function(){return P.a});var R=n(586);n.d(t,"isValid",function(){return R.a});var A=n(585);n.d(t,"isSubmitting",function(){return A.a});var T=n(581);n.d(t,"hasSubmitSucceeded",function(){return T.a});var F=n(580);n.d(t,"hasSubmitFailed",function(){return F.a});var I=n(589);n.d(t,"reduxForm",function(){return I.a});var N=n(588);n.d(t,"reducer",function(){return N.a});var M=n(613);n.d(t,"values",function(){return M.a});var V=i,U=r.a.arrayInsert,D=r.a.arrayMove,L=r.a.arrayPop,q=r.a.arrayPush,W=r.a.arrayRemove,z=r.a.arrayRemoveAll,B=r.a.arrayShift,H=r.a.arraySplice,Y=r.a.arraySwap,$=r.a.arrayUnshift,G=r.a.autofill,K=r.a.blur,J=r.a.change,Q=r.a.clearFields,Z=r.a.clearSubmitErrors,X=r.a.destroy,ee=r.a.focus,te=r.a.initialize,ne=r.a.registerField,re=r.a.reset,ie=r.a.setSubmitFailed,oe=r.a.setSubmitSucceeded,ae=r.a.startAsyncValidation,ue=r.a.startSubmit,se=r.a.stopAsyncValidation,ce=r.a.stopSubmit,le=r.a.submit,fe=r.a.touch,pe=r.a.unregisterField,de=r.a.untouch,he=r.a.updateSyncWarnings},function(e,t,n){"use strict";var r="undefined"!=typeof window&&window.navigator&&window.navigator.product&&"ReactNative"===window.navigator.product;t.a=r},function(e,t,n){"use strict";var r=function(e){var t=e.deepEqual,n=e.empty,r=e.getIn;return function(e,i){return function(o){var a=i||function(e){return r(e,"form")},u=a(o),s=r(u,e+".initial")||n,c=r(u,e+".values")||s;return t(s,c)}}};t.a=r},function(e,t,n){"use strict";var r=n(188),i=function(e,t,n,r,i,o){if(o)return e===t},o=function(e,t,o){return!n.i(r.a)(e.props,t,i)||!n.i(r.a)(e.state,o,i)};t.a=o},function(e,t,n){"use strict";function r(){for(var e=arguments.length,t=Array(e),n=0;n<e;n++)t[n]=arguments[n];return 0===t.length?function(e){return e}:1===t.length?t[0]:t.reduce(function(e,t){return function(){return e(t.apply(void 0,arguments))}})}t.a=r},function(e,t,n){"use strict";function r(e,t,o){function s(){g===m&&(g=m.slice())}function c(){return y}function l(e){if("function"!=typeof e)throw new Error("Expected listener to be a function.");var t=!0;return s(),g.push(e),function(){if(t){t=!1,s();var n=g.indexOf(e);g.splice(n,1)}}}function f(e){if(!n.i(i.a)(e))throw new Error("Actions must be plain objects. Use custom middleware for async actions.");if(void 0===e.type)throw new Error('Actions may not have an undefined "type" property. Have you misspelled a constant?');if(b)throw new Error("Reducers may not dispatch actions.");try{b=!0,y=v(y,e)}finally{b=!1}for(var t=m=g,r=0;r<t.length;r++){(0,t[r])()}return e}function p(e){if("function"!=typeof e)throw new Error("Expected the nextReducer to be a function.");v=e,f({type:u.INIT})}function d(){var e,t=l;return e={subscribe:function(e){function n(){e.next&&e.next(c())}if("object"!=typeof e)throw new TypeError("Expected the observer to be an object.");return n(),{unsubscribe:t(n)}}},e[a.a]=function(){return this},e}var h;if("function"==typeof t&&void 0===o&&(o=t,t=void 0),void 0!==o){if("function"!=typeof o)throw new Error("Expected the enhancer to be a function.");return o(r)(e,t)}if("function"!=typeof e)throw new Error("Expected the reducer to be a function.");var v=e,y=t,m=[],g=m,b=!1;return f({type:u.INIT}),h={dispatch:f,subscribe:l,getState:c,replaceReducer:p},h[a.a]=d,h}n.d(t,"b",function(){return u}),t.a=r;var i=n(85),o=n(618),a=n.n(o),u={INIT:"@@redux/INIT"}},function(e,t,n){"use strict"},function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}var i=n(11),o=r(i),a=n(533),u=r(a),s=n(50),c=n(88),l=n(207),f=n(544),p=document.getElementById("content"),d=(0,c.combineReducers)({form:l.reducer}),h=(window.devToolsExtension?window.devToolsExtension()(c.createStore):c.createStore)(d),v=function(e){return new Promise(function(t){setTimeout(function(){window.alert("You submitted:\n\n"+JSON.stringify(e,null,2)),t()},500)})},y=function(){var e=n(216).default,t=n(429),r=n(529),i=n(531),a=n(530);u.default.hydrate(o.default.createElement(s.Provider,{store:h},o.default.createElement(f.App,{version:"7.2.0",path:"/examples/asyncValidation",breadcrumbs:(0,f.generateExampleBreadcrumbs)("asyncValidation","Async Validation Example","7.2.0")},o.default.createElement(f.Markdown,{content:t}),o.default.createElement("div",{style:{textAlign:"center"}},o.default.createElement("a",{href:"https://codesandbox.io/s/nKlYo387",target:"_blank",rel:"noopener noreferrer",style:{fontSize:"1.5em"}},o.default.createElement("i",{className:"fa fa-codepen"})," Open in Sandbox")),o.default.createElement("h2",null,"Form"),o.default.createElement(e,{onSubmit:v}),o.default.createElement(f.Values,{form:"asyncValidation"}),o.default.createElement("h2",null,"Code"),o.default.createElement("h4",null,"validate.js"),o.default.createElement(f.Code,{source:i}),o.default.createElement("h4",null,"asyncValidate.js"),o.default.createElement(f.Code,{source:a}),o.default.createElement("h4",null,"AsyncValidationForm.js"),o.default.createElement(f.Code,{source:r}))),p)};y()},function(e,t,n){"use strict";(function(e){function t(e,t,n){e[t]||Object[r](e,t,{writable:!0,configurable:!0,value:n})}if(n(418),n(617),n(219),e._babelPolyfill)throw new Error("only one instance of babel-polyfill is allowed");e._babelPolyfill=!0;var r="defineProperty";t(String.prototype,"padLeft","".padStart),t(String.prototype,"padRight","".padEnd),"pop,reverse,shift,keys,values,entries,indexOf,every,some,forEach,map,filter,find,findIndex,includes,join,slice,concat,push,splice,unshift,sort,lastIndexOf,reduce,reduceRight,copyWithin,fill".split(",").forEach(function(e){[][e]&&t(Array,e,Function.call.bind([][e]))})}).call(t,n(89))},function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}Object.defineProperty(t,"__esModule",{value:!0});var i=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},o=n(11),a=r(o),u=n(207),s=n(218),c=r(s),l=n(217),f=r(l),p=function(e){var t=e.input,n=e.label,r=e.type,o=e.meta,u=o.asyncValidating,s=o.touched,c=o.error;return a.default.createElement("div",null,a.default.createElement("label",null,n),a.default.createElement("div",{className:u?"async-validating":""},a.default.createElement("input",i({},t,{type:r,placeholder:n})),s&&c&&a.default.createElement("span",null,c)))},d=function(e){var t=e.handleSubmit,n=e.pristine,r=e.reset,i=e.submitting;return a.default.createElement("form",{onSubmit:t},a.default.createElement(u.Field,{name:"username",type:"text",component:p,label:"Username"}),a.default.createElement(u.Field,{name:"password",type:"password",component:p,label:"Password"}),a.default.createElement("div",null,a.default.createElement("button",{type:"submit",disabled:i},"Sign Up"),a.default.createElement("button",{type:"button",disabled:n||i,onClick:r},"Clear Values")))};t.default=(0,u.reduxForm)({form:"asyncValidation",validate:c.default,asyncValidate:f.default,asyncBlurFields:["username"]})(d)},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=function(e){return new Promise(function(t){return setTimeout(t,e)})},i=function(e){return r(1e3).then(function(){if(["john","paul","george","ringo"].includes(e.username))throw{username:"That username is taken"}})};t.default=i},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=function(e){var t={};return e.username||(t.username="Required"),e.password||(t.password="Required"),t};t.default=r},function(e,t,n){n(226),e.exports=n(25).RegExp.escape},function(e,t,n){var r=n(5),i=n(67),o=n(6)("species");e.exports=function(e){var t;return i(e)&&(t=e.constructor,"function"!=typeof t||t!==Array&&!i(t.prototype)||(t=void 0),r(t)&&null===(t=t[o])&&(t=void 0)),void 0===t?Array:t}},function(e,t,n){"use strict";var r=n(4),i=Date.prototype.getTime,o=Date.prototype.toISOString,a=function(e){return e>9?e:"0"+e};e.exports=r(function(){return"0385-07-25T07:06:39.999Z"!=o.call(new Date(-5e13-1))})||!r(function(){o.call(new Date(NaN))})?function(){if(!isFinite(i.call(this)))throw RangeError("Invalid time value");var e=this,t=e.getUTCFullYear(),n=e.getUTCMilliseconds(),r=t<0?"-":t>9999?"+":"";return r+("00000"+Math.abs(t)).slice(r?-6:-4)+"-"+a(e.getUTCMonth()+1)+"-"+a(e.getUTCDate())+"T"+a(e.getUTCHours())+":"+a(e.getUTCMinutes())+":"+a(e.getUTCSeconds())+"."+(n>99?n:"0"+a(n))+"Z"}:o},function(e,t,n){"use strict";var r=n(1),i=n(29);e.exports=function(e){if("string"!==e&&"number"!==e&&"default"!==e)throw TypeError("Incorrect hint");return i(r(this),"number"!=e)}},function(e,t,n){var r=n(42),i=n(71),o=n(59);e.exports=function(e){var t=r(e),n=i.f;if(n)for(var a,u=n(e),s=o.f,c=0;u.length>c;)s.call(e,a=u[c++])&&t.push(a);return t}},function(e,t){e.exports=function(e,t){var n=t===Object(t)?function(e){return t[e]}:t;return function(t){return String(t).replace(e,n)}}},function(e,t){e.exports=Object.is||function(e,t){return e===t?0!==e||1/e==1/t:e!=e&&t!=t}},function(e,t,n){var r=n(0),i=n(224)(/[\\^$*+?.()|[\]{}]/g,"\\$&");r(r.S,"RegExp",{escape:function(e){return i(e)}})},function(e,t,n){var r=n(0);r(r.P,"Array",{copyWithin:n(136)}),n(34)("copyWithin")},function(e,t,n){"use strict";var r=n(0),i=n(24)(4);r(r.P+r.F*!n(23)([].every,!0),"Array",{every:function(e){return i(this,e,arguments[1])}})},function(e,t,n){var r=n(0);r(r.P,"Array",{fill:n(91)}),n(34)("fill")},function(e,t,n){"use strict";var r=n(0),i=n(24)(2);r(r.P+r.F*!n(23)([].filter,!0),"Array",{filter:function(e){return i(this,e,arguments[1])}})},function(e,t,n){"use strict";var r=n(0),i=n(24)(6),o="findIndex",a=!0;o in[]&&Array(1)[o](function(){a=!1}),r(r.P+r.F*a,"Array",{findIndex:function(e){return i(this,e,arguments.length>1?arguments[1]:void 0)}}),n(34)(o)},function(e,t,n){"use strict";var r=n(0),i=n(24)(5),o=!0;"find"in[]&&Array(1).find(function(){o=!1}),r(r.P+r.F*o,"Array",{find:function(e){return i(this,e,arguments.length>1?arguments[1]:void 0)}}),n(34)("find")},function(e,t,n){"use strict";var r=n(0),i=n(24)(0),o=n(23)([].forEach,!0);r(r.P+r.F*!o,"Array",{forEach:function(e){return i(this,e,arguments[1])}})},function(e,t,n){"use strict";var r=n(22),i=n(0),o=n(10),a=n(147),u=n(99),s=n(9),c=n(93),l=n(115);i(i.S+i.F*!n(69)(function(e){Array.from(e)}),"Array",{from:function(e){var t,n,i,f,p=o(e),d="function"==typeof this?this:Array,h=arguments.length,v=h>1?arguments[1]:void 0,y=void 0!==v,m=0,g=l(p);if(y&&(v=r(v,h>2?arguments[2]:void 0,2)),void 0==g||d==Array&&u(g))for(t=s(p.length),n=new d(t);t>m;m++)c(n,m,y?v(p[m],m):p[m]);else for(f=g.call(p),n=new d;!(i=f.next()).done;m++)c(n,m,y?a(f,v,[i.value,m],!0):i.value);return n.length=m,n}})},function(e,t,n){"use strict";var r=n(0),i=n(63)(!1),o=[].indexOf,a=!!o&&1/[1].indexOf(1,-0)<0;r(r.P+r.F*(a||!n(23)(o)),"Array",{indexOf:function(e){return a?o.apply(this,arguments)||0:i(this,e,arguments[1])}})},function(e,t,n){var r=n(0);r(r.S,"Array",{isArray:n(67)})},function(e,t,n){"use strict";var r=n(0),i=n(20),o=[].join;r(r.P+r.F*(n(58)!=Object||!n(23)(o)),"Array",{join:function(e){return o.call(i(this),void 0===e?",":e)}})},function(e,t,n){"use strict";var r=n(0),i=n(20),o=n(28),a=n(9),u=[].lastIndexOf,s=!!u&&1/[1].lastIndexOf(1,-0)<0;r(r.P+r.F*(s||!n(23)(u)),"Array",{lastIndexOf:function(e){if(s)return u.apply(this,arguments)||0;var t=i(this),n=a(t.length),r=n-1;for(arguments.length>1&&(r=Math.min(r,o(arguments[1]))),r<0&&(r=n+r);r>=0;r--)if(r in t&&t[r]===e)return r||0;return-1}})},function(e,t,n){"use strict";var r=n(0),i=n(24)(1);r(r.P+r.F*!n(23)([].map,!0),"Array",{map:function(e){return i(this,e,arguments[1])}})},function(e,t,n){"use strict";var r=n(0),i=n(93);r(r.S+r.F*n(4)(function(){function e(){}return!(Array.of.call(e)instanceof e)}),"Array",{of:function(){for(var e=0,t=arguments.length,n=new("function"==typeof this?this:Array)(t);t>e;)i(n,e,arguments[e++]);return n.length=t,n}})},function(e,t,n){"use strict";var r=n(0),i=n(138);r(r.P+r.F*!n(23)([].reduceRight,!0),"Array",{reduceRight:function(e){return i(this,e,arguments.length,arguments[1],!0)}})},function(e,t,n){"use strict";var r=n(0),i=n(138);r(r.P+r.F*!n(23)([].reduce,!0),"Array",{reduce:function(e){return i(this,e,arguments.length,arguments[1],!1)}})},function(e,t,n){"use strict";var r=n(0),i=n(97),o=n(21),a=n(46),u=n(9),s=[].slice;r(r.P+r.F*n(4)(function(){i&&s.call(i)}),"Array",{slice:function(e,t){var n=u(this.length),r=o(this);if(t=void 0===t?n:t,"Array"==r)return s.call(this,e,t);for(var i=a(e,n),c=a(t,n),l=u(c-i),f=new Array(l),p=0;p<l;p++)f[p]="String"==r?this.charAt(i+p):this[i+p];return f}})},function(e,t,n){"use strict";var r=n(0),i=n(24)(3);r(r.P+r.F*!n(23)([].some,!0),"Array",{some:function(e){return i(this,e,arguments[1])}})},function(e,t,n){"use strict";var r=n(0),i=n(12),o=n(10),a=n(4),u=[].sort,s=[1,2,3];r(r.P+r.F*(a(function(){s.sort(void 0)})||!a(function(){s.sort(null)})||!n(23)(u)),"Array",{sort:function(e){return void 0===e?u.call(o(this)):u.call(o(this),i(e))}})},function(e,t,n){n(45)("Array")},function(e,t,n){var r=n(0);r(r.S,"Date",{now:function(){return(new Date).getTime()}})},function(e,t,n){var r=n(0),i=n(221);r(r.P+r.F*(Date.prototype.toISOString!==i),"Date",{toISOString:i})},function(e,t,n){"use strict";var r=n(0),i=n(10),o=n(29);r(r.P+r.F*n(4)(function(){return null!==new Date(NaN).toJSON()||1!==Date.prototype.toJSON.call({toISOString:function(){return 1}})}),"Date",{toJSON:function(e){var t=i(this),n=o(t);return"number"!=typeof n||isFinite(n)?t.toISOString():null}})},function(e,t,n){var r=n(6)("toPrimitive"),i=Date.prototype;r in i||n(14)(i,r,n(222))},function(e,t,n){var r=Date.prototype,i=r.toString,o=r.getTime;new Date(NaN)+""!="Invalid Date"&&n(15)(r,"toString",function(){var e=o.call(this);return e===e?i.call(this):"Invalid Date"})},function(e,t,n){var r=n(0);r(r.P,"Function",{bind:n(139)})},function(e,t,n){"use strict";var r=n(5),i=n(19),o=n(6)("hasInstance"),a=Function.prototype;o in a||n(8).f(a,o,{value:function(e){if("function"!=typeof this||!r(e))return!1;if(!r(this.prototype))return e instanceof this;for(;e=i(e);)if(this.prototype===e)return!0;return!1}})},function(e,t,n){var r=n(8).f,i=Function.prototype,o=/^\s*function ([^ (]*)/;"name"in i||n(7)&&r(i,"name",{configurable:!0,get:function(){try{return(""+this).match(o)[1]}catch(e){return""}}})},function(e,t,n){var r=n(0),i=n(150),o=Math.sqrt,a=Math.acosh;r(r.S+r.F*!(a&&710==Math.floor(a(Number.MAX_VALUE))&&a(1/0)==1/0),"Math",{acosh:function(e){return(e=+e)<1?NaN:e>94906265.62425156?Math.log(e)+Math.LN2:i(e-1+o(e-1)*o(e+1))}})},function(e,t,n){function r(e){return isFinite(e=+e)&&0!=e?e<0?-r(-e):Math.log(e+Math.sqrt(e*e+1)):e}var i=n(0),o=Math.asinh;i(i.S+i.F*!(o&&1/o(0)>0),"Math",{asinh:r})},function(e,t,n){var r=n(0),i=Math.atanh;r(r.S+r.F*!(i&&1/i(-0)<0),"Math",{atanh:function(e){return 0==(e=+e)?e:Math.log((1+e)/(1-e))/2}})},function(e,t,n){var r=n(0),i=n(103);r(r.S,"Math",{cbrt:function(e){return i(e=+e)*Math.pow(Math.abs(e),1/3)}})},function(e,t,n){var r=n(0);r(r.S,"Math",{clz32:function(e){return(e>>>=0)?31-Math.floor(Math.log(e+.5)*Math.LOG2E):32}})},function(e,t,n){var r=n(0),i=Math.exp;r(r.S,"Math",{cosh:function(e){return(i(e=+e)+i(-e))/2}})},function(e,t,n){var r=n(0),i=n(102);r(r.S+r.F*(i!=Math.expm1),"Math",{expm1:i})},function(e,t,n){var r=n(0);r(r.S,"Math",{fround:n(149)})},function(e,t,n){var r=n(0),i=Math.abs;r(r.S,"Math",{hypot:function(e,t){for(var n,r,o=0,a=0,u=arguments.length,s=0;a<u;)n=i(arguments[a++]),s<n?(r=s/n,o=o*r*r+1,s=n):n>0?(r=n/s,o+=r*r):o+=n;return s===1/0?1/0:s*Math.sqrt(o)}})},function(e,t,n){var r=n(0),i=Math.imul;r(r.S+r.F*n(4)(function(){return-5!=i(4294967295,5)||2!=i.length}),"Math",{imul:function(e,t){var n=+e,r=+t,i=65535&n,o=65535&r;return 0|i*o+((65535&n>>>16)*o+i*(65535&r>>>16)<<16>>>0)}})},function(e,t,n){var r=n(0);r(r.S,"Math",{log10:function(e){return Math.log(e)*Math.LOG10E}})},function(e,t,n){var r=n(0);r(r.S,"Math",{log1p:n(150)})},function(e,t,n){var r=n(0);r(r.S,"Math",{log2:function(e){return Math.log(e)/Math.LN2}})},function(e,t,n){var r=n(0);r(r.S,"Math",{sign:n(103)})},function(e,t,n){var r=n(0),i=n(102),o=Math.exp;r(r.S+r.F*n(4)(function(){return-2e-17!=!Math.sinh(-2e-17)}),"Math",{sinh:function(e){return Math.abs(e=+e)<1?(i(e)-i(-e))/2:(o(e-1)-o(-e-1))*(Math.E/2)}})},function(e,t,n){var r=n(0),i=n(102),o=Math.exp;r(r.S,"Math",{tanh:function(e){var t=i(e=+e),n=i(-e);return t==1/0?1:n==1/0?-1:(t-n)/(o(e)+o(-e))}})},function(e,t,n){var r=n(0);r(r.S,"Math",{trunc:function(e){return(e>0?Math.floor:Math.ceil)(e)}})},function(e,t,n){"use strict";var r=n(2),i=n(13),o=n(21),a=n(98),u=n(29),s=n(4),c=n(41).f,l=n(18).f,f=n(8).f,p=n(53).trim,d=r.Number,h=d,v=d.prototype,y="Number"==o(n(40)(v)),m="trim"in String.prototype,g=function(e){var t=u(e,!1);if("string"==typeof t&&t.length>2){t=m?t.trim():p(t,3);var n,r,i,o=t.charCodeAt(0);if(43===o||45===o){if(88===(n=t.charCodeAt(2))||120===n)return NaN}else if(48===o){switch(t.charCodeAt(1)){case 66:case 98:r=2,i=49;break;case 79:case 111:r=8,i=55;break;default:return+t}for(var a,s=t.slice(2),c=0,l=s.length;c<l;c++)if((a=s.charCodeAt(c))<48||a>i)return NaN;return parseInt(s,r)}}return+t};if(!d(" 0o1")||!d("0b1")||d("+0x1")){d=function(e){var t=arguments.length<1?0:e,n=this;return n instanceof d&&(y?s(function(){v.valueOf.call(n)}):"Number"!=o(n))?a(new h(g(t)),n,d):g(t)};for(var b,O=n(7)?c(h):"MAX_VALUE,MIN_VALUE,NaN,NEGATIVE_INFINITY,POSITIVE_INFINITY,EPSILON,isFinite,isInteger,isNaN,isSafeInteger,MAX_SAFE_INTEGER,MIN_SAFE_INTEGER,parseFloat,parseInt,isInteger".split(","),w=0;O.length>w;w++)i(h,b=O[w])&&!i(d,b)&&f(d,b,l(h,b));d.prototype=v,v.constructor=d,n(15)(r,"Number",d)}},function(e,t,n){var r=n(0);r(r.S,"Number",{EPSILON:Math.pow(2,-52)})},function(e,t,n){var r=n(0),i=n(2).isFinite;r(r.S,"Number",{isFinite:function(e){return"number"==typeof e&&i(e)}})},function(e,t,n){var r=n(0);r(r.S,"Number",{isInteger:n(146)})},function(e,t,n){var r=n(0);r(r.S,"Number",{isNaN:function(e){return e!=e}})},function(e,t,n){var r=n(0),i=n(146),o=Math.abs;r(r.S,"Number",{isSafeInteger:function(e){return i(e)&&o(e)<=9007199254740991}})},function(e,t,n){var r=n(0);r(r.S,"Number",{MAX_SAFE_INTEGER:9007199254740991})},function(e,t,n){var r=n(0);r(r.S,"Number",{MIN_SAFE_INTEGER:-9007199254740991})},function(e,t,n){var r=n(0),i=n(158);r(r.S+r.F*(Number.parseFloat!=i),"Number",{parseFloat:i})},function(e,t,n){var r=n(0),i=n(159);r(r.S+r.F*(Number.parseInt!=i),"Number",{parseInt:i})},function(e,t,n){"use strict";var r=n(0),i=n(28),o=n(135),a=n(110),u=1..toFixed,s=Math.floor,c=[0,0,0,0,0,0],l="Number.toFixed: incorrect invocation!",f=function(e,t){for(var n=-1,r=t;++n<6;)r+=e*c[n],c[n]=r%1e7,r=s(r/1e7)},p=function(e){for(var t=6,n=0;--t>=0;)n+=c[t],c[t]=s(n/e),n=n%e*1e7},d=function(){for(var e=6,t="";--e>=0;)if(""!==t||0===e||0!==c[e]){var n=String(c[e]);t=""===t?n:t+a.call("0",7-n.length)+n}return t},h=function(e,t,n){return 0===t?n:t%2==1?h(e,t-1,n*e):h(e*e,t/2,n)},v=function(e){for(var t=0,n=e;n>=4096;)t+=12,n/=4096;for(;n>=2;)t+=1,n/=2;return t};r(r.P+r.F*(!!u&&("0.000"!==8e-5.toFixed(3)||"1"!==.9.toFixed(0)||"1.25"!==1.255.toFixed(2)||"1000000000000000128"!==(0xde0b6b3a7640080).toFixed(0))||!n(4)(function(){u.call({})})),"Number",{toFixed:function(e){var t,n,r,u,s=o(this,l),c=i(e),y="",m="0";if(c<0||c>20)throw RangeError(l);if(s!=s)return"NaN";if(s<=-1e21||s>=1e21)return String(s);if(s<0&&(y="-",s=-s),s>1e-21)if(t=v(s*h(2,69,1))-69,n=t<0?s*h(2,-t,1):s/h(2,t,1),n*=4503599627370496,(t=52-t)>0){for(f(0,n),r=c;r>=7;)f(1e7,0),r-=7;for(f(h(10,r,1),0),r=t-1;r>=23;)p(1<<23),r-=23;p(1<<r),f(1,1),p(2),m=d()}else f(0,n),f(1<<-t,0),m=d()+a.call("0",c);return c>0?(u=m.length,m=y+(u<=c?"0."+a.call("0",c-u)+m:m.slice(0,u-c)+"."+m.slice(u-c))):m=y+m,m}})},function(e,t,n){"use strict";var r=n(0),i=n(4),o=n(135),a=1..toPrecision;r(r.P+r.F*(i(function(){return"1"!==a.call(1,void 0)})||!i(function(){a.call({})})),"Number",{toPrecision:function(e){var t=o(this,"Number#toPrecision: incorrect invocation!");return void 0===e?a.call(t):a.call(t,e)}})},function(e,t,n){var r=n(0);r(r.S+r.F,"Object",{assign:n(152)})},function(e,t,n){var r=n(0);r(r.S,"Object",{create:n(40)})},function(e,t,n){var r=n(0);r(r.S+r.F*!n(7),"Object",{defineProperties:n(153)})},function(e,t,n){var r=n(0);r(r.S+r.F*!n(7),"Object",{defineProperty:n(8).f})},function(e,t,n){var r=n(5),i=n(35).onFreeze;n(27)("freeze",function(e){return function(t){return e&&r(t)?e(i(t)):t}})},function(e,t,n){var r=n(20),i=n(18).f;n(27)("getOwnPropertyDescriptor",function(){return function(e,t){return i(r(e),t)}})},function(e,t,n){n(27)("getOwnPropertyNames",function(){return n(154).f})},function(e,t,n){var r=n(10),i=n(19);n(27)("getPrototypeOf",function(){return function(e){return i(r(e))}})},function(e,t,n){var r=n(5);n(27)("isExtensible",function(e){return function(t){return!!r(t)&&(!e||e(t))}})},function(e,t,n){var r=n(5);n(27)("isFrozen",function(e){return function(t){return!r(t)||!!e&&e(t)}})},function(e,t,n){var r=n(5);n(27)("isSealed",function(e){return function(t){return!r(t)||!!e&&e(t)}})},function(e,t,n){var r=n(0);r(r.S,"Object",{is:n(225)})},function(e,t,n){var r=n(10),i=n(42);n(27)("keys",function(){return function(e){return i(r(e))}})},function(e,t,n){var r=n(5),i=n(35).onFreeze;n(27)("preventExtensions",function(e){return function(t){return e&&r(t)?e(i(t)):t}})},function(e,t,n){var r=n(5),i=n(35).onFreeze;n(27)("seal",function(e){return function(t){return e&&r(t)?e(i(t)):t}})},function(e,t,n){var r=n(0);r(r.S,"Object",{setPrototypeOf:n(106).set})},function(e,t,n){"use strict";var r=n(57),i={};i[n(6)("toStringTag")]="z",i+""!="[object z]"&&n(15)(Object.prototype,"toString",function(){return"[object "+r(this)+"]"},!0)},function(e,t,n){var r=n(0),i=n(158);r(r.G+r.F*(parseFloat!=i),{parseFloat:i})},function(e,t,n){var r=n(0),i=n(159);r(r.G+r.F*(parseInt!=i),{parseInt:i})},function(e,t,n){"use strict";var r,i,o,a,u=n(39),s=n(2),c=n(22),l=n(57),f=n(0),p=n(5),d=n(12),h=n(37),v=n(38),y=n(75),m=n(112).set,g=n(104)(),b=n(105),O=n(160),w=n(161),_=s.TypeError,S=s.process,E=s.Promise,x="process"==l(S),j=function(){},k=i=b.f,C=!!function(){try{var e=E.resolve(1),t=(e.constructor={})[n(6)("species")]=function(e){e(j,j)};return(x||"function"==typeof PromiseRejectionEvent)&&e.then(j)instanceof t}catch(e){}}(),P=function(e){var t;return!(!p(e)||"function"!=typeof(t=e.then))&&t},R=function(e,t){if(!e._n){e._n=!0;var n=e._c;g(function(){for(var r=e._v,i=1==e._s,o=0;n.length>o;)!function(t){var n,o,a=i?t.ok:t.fail,u=t.resolve,s=t.reject,c=t.domain;try{a?(i||(2==e._h&&F(e),e._h=1),!0===a?n=r:(c&&c.enter(),n=a(r),c&&c.exit()),n===t.promise?s(_("Promise-chain cycle")):(o=P(n))?o.call(n,u,s):u(n)):s(r)}catch(e){s(e)}}(n[o++]);e._c=[],e._n=!1,t&&!e._h&&A(e)})}},A=function(e){m.call(s,function(){var t,n,r,i=e._v,o=T(e);if(o&&(t=O(function(){x?S.emit("unhandledRejection",i,e):(n=s.onunhandledrejection)?n({promise:e,reason:i}):(r=s.console)&&r.error&&r.error("Unhandled promise rejection",i)}),e._h=x||T(e)?2:1),e._a=void 0,o&&t.e)throw t.v})},T=function(e){if(1==e._h)return!1;for(var t,n=e._a||e._c,r=0;n.length>r;)if(t=n[r++],t.fail||!T(t.promise))return!1;return!0},F=function(e){m.call(s,function(){var t;x?S.emit("rejectionHandled",e):(t=s.onrejectionhandled)&&t({promise:e,reason:e._v})})},I=function(e){var t=this;t._d||(t._d=!0,t=t._w||t,t._v=e,t._s=2,t._a||(t._a=t._c.slice()),R(t,!0))},N=function(e){var t,n=this;if(!n._d){n._d=!0,n=n._w||n;try{if(n===e)throw _("Promise can't be resolved itself");(t=P(e))?g(function(){var r={_w:n,_d:!1};try{t.call(e,c(N,r,1),c(I,r,1))}catch(e){I.call(r,e)}}):(n._v=e,n._s=1,R(n,!1))}catch(e){I.call({_w:n,_d:!1},e)}}};C||(E=function(e){h(this,E,"Promise","_h"),d(e),r.call(this);try{e(c(N,this,1),c(I,this,1))}catch(e){I.call(this,e)}},r=function(e){this._c=[],this._a=void 0,this._s=0,this._d=!1,this._v=void 0,this._h=0,this._n=!1},r.prototype=n(44)(E.prototype,{then:function(e,t){var n=k(y(this,E));return n.ok="function"!=typeof e||e,n.fail="function"==typeof t&&t,n.domain=x?S.domain:void 0,this._c.push(n),this._a&&this._a.push(n),this._s&&R(this,!1),n.promise},catch:function(e){return this.then(void 0,e)}}),o=function(){var e=new r;this.promise=e,this.resolve=c(N,e,1),this.reject=c(I,e,1)},b.f=k=function(e){return e===E||e===a?new o(e):i(e)}),f(f.G+f.W+f.F*!C,{Promise:E}),n(52)(E,"Promise"),n(45)("Promise"),a=n(25).Promise,f(f.S+f.F*!C,"Promise",{reject:function(e){var t=k(this);return(0,t.reject)(e),t.promise}}),f(f.S+f.F*(u||!C),"Promise",{resolve:function(e){return w(u&&this===a?E:this,e)}}),f(f.S+f.F*!(C&&n(69)(function(e){E.all(e).catch(j)})),"Promise",{all:function(e){var t=this,n=k(t),r=n.resolve,i=n.reject,o=O(function(){var n=[],o=0,a=1;v(e,!1,function(e){var u=o++,s=!1;n.push(void 0),a++,t.resolve(e).then(function(e){s||(s=!0,n[u]=e,--a||r(n))},i)}),--a||r(n)});return o.e&&i(o.v),n.promise},race:function(e){var t=this,n=k(t),r=n.reject,i=O(function(){v(e,!1,function(e){t.resolve(e).then(n.resolve,r)})});return i.e&&r(i.v),n.promise}})},function(e,t,n){var r=n(0),i=n(12),o=n(1),a=(n(2).Reflect||{}).apply,u=Function.apply;r(r.S+r.F*!n(4)(function(){a(function(){})}),"Reflect",{apply:function(e,t,n){var r=i(e),s=o(n);return a?a(r,t,s):u.call(r,t,s)}})},function(e,t,n){var r=n(0),i=n(40),o=n(12),a=n(1),u=n(5),s=n(4),c=n(139),l=(n(2).Reflect||{}).construct,f=s(function(){function e(){}return!(l(function(){},[],e)instanceof e)}),p=!s(function(){l(function(){})});r(r.S+r.F*(f||p),"Reflect",{construct:function(e,t){o(e),a(t);var n=arguments.length<3?e:o(arguments[2]);if(p&&!f)return l(e,t,n);if(e==n){switch(t.length){case 0:return new e;case 1:return new e(t[0]);case 2:return new e(t[0],t[1]);case 3:return new e(t[0],t[1],t[2]);case 4:return new e(t[0],t[1],t[2],t[3])}var r=[null];return r.push.apply(r,t),new(c.apply(e,r))}var s=n.prototype,d=i(u(s)?s:Object.prototype),h=Function.apply.call(e,d,t);return u(h)?h:d}})},function(e,t,n){var r=n(8),i=n(0),o=n(1),a=n(29);i(i.S+i.F*n(4)(function(){Reflect.defineProperty(r.f({},1,{value:1}),1,{value:2})}),"Reflect",{defineProperty:function(e,t,n){o(e),t=a(t,!0),o(n);try{return r.f(e,t,n),!0}catch(e){return!1}}})},function(e,t,n){var r=n(0),i=n(18).f,o=n(1);r(r.S,"Reflect",{deleteProperty:function(e,t){var n=i(o(e),t);return!(n&&!n.configurable)&&delete e[t]}})},function(e,t,n){"use strict";var r=n(0),i=n(1),o=function(e){this._t=i(e),this._i=0;var t,n=this._k=[];for(t in e)n.push(t)};n(100)(o,"Object",function(){var e,t=this,n=t._k;do{if(t._i>=n.length)return{value:void 0,done:!0}}while(!((e=n[t._i++])in t._t));return{value:e,done:!1}}),r(r.S,"Reflect",{enumerate:function(e){return new o(e)}})},function(e,t,n){var r=n(18),i=n(0),o=n(1);i(i.S,"Reflect",{getOwnPropertyDescriptor:function(e,t){return r.f(o(e),t)}})},function(e,t,n){var r=n(0),i=n(19),o=n(1);r(r.S,"Reflect",{getPrototypeOf:function(e){return i(o(e))}})},function(e,t,n){function r(e,t){var n,u,l=arguments.length<3?e:arguments[2];return c(e)===l?e[t]:(n=i.f(e,t))?a(n,"value")?n.value:void 0!==n.get?n.get.call(l):void 0:s(u=o(e))?r(u,t,l):void 0}var i=n(18),o=n(19),a=n(13),u=n(0),s=n(5),c=n(1);u(u.S,"Reflect",{get:r})},function(e,t,n){var r=n(0);r(r.S,"Reflect",{has:function(e,t){return t in e}})},function(e,t,n){var r=n(0),i=n(1),o=Object.isExtensible;r(r.S,"Reflect",{isExtensible:function(e){return i(e),!o||o(e)}})},function(e,t,n){var r=n(0);r(r.S,"Reflect",{ownKeys:n(157)})},function(e,t,n){var r=n(0),i=n(1),o=Object.preventExtensions;r(r.S,"Reflect",{preventExtensions:function(e){i(e);try{return o&&o(e),!0}catch(e){return!1}}})},function(e,t,n){var r=n(0),i=n(106);i&&r(r.S,"Reflect",{setPrototypeOf:function(e,t){i.check(e,t);try{return i.set(e,t),!0}catch(e){return!1}}})},function(e,t,n){function r(e,t,n){var s,p,d=arguments.length<4?e:arguments[3],h=o.f(l(e),t);if(!h){if(f(p=a(e)))return r(p,t,n,d);h=c(0)}return u(h,"value")?!(!1===h.writable||!f(d))&&(s=o.f(d,t)||c(0),s.value=n,i.f(d,t,s),!0):void 0!==h.set&&(h.set.call(d,n),!0)}var i=n(8),o=n(18),a=n(19),u=n(13),s=n(0),c=n(43),l=n(1),f=n(5);s(s.S,"Reflect",{set:r})},function(e,t,n){var r=n(2),i=n(98),o=n(8).f,a=n(41).f,u=n(68),s=n(66),c=r.RegExp,l=c,f=c.prototype,p=/a/g,d=/a/g,h=new c(p)!==p;if(n(7)&&(!h||n(4)(function(){return d[n(6)("match")]=!1,c(p)!=p||c(d)==d||"/a/i"!=c(p,"i")}))){c=function(e,t){var n=this instanceof c,r=u(e),o=void 0===t;return!n&&r&&e.constructor===c&&o?e:i(h?new l(r&&!o?e.source:e,t):l((r=e instanceof c)?e.source:e,r&&o?s.call(e):t),n?this:f,c)};for(var v=a(l),y=0;v.length>y;)!function(e){e in c||o(c,e,{configurable:!0,get:function(){return l[e]},set:function(t){l[e]=t}})}(v[y++]);f.constructor=c,c.prototype=f,n(15)(r,"RegExp",c)}n(45)("RegExp")},function(e,t,n){n(65)("match",1,function(e,t,n){return[function(n){"use strict";var r=e(this),i=void 0==n?void 0:n[t];return void 0!==i?i.call(n,r):new RegExp(n)[t](String(r))},n]})},function(e,t,n){n(65)("replace",2,function(e,t,n){return[function(r,i){"use strict";var o=e(this),a=void 0==r?void 0:r[t];return void 0!==a?a.call(r,o,i):n.call(String(o),r,i)},n]})},function(e,t,n){n(65)("search",1,function(e,t,n){return[function(n){"use strict";var r=e(this),i=void 0==n?void 0:n[t];return void 0!==i?i.call(n,r):new RegExp(n)[t](String(r))},n]})},function(e,t,n){n(65)("split",2,function(e,t,r){"use strict";var i=n(68),o=r,a=[].push,u="length";if("c"=="abbc".split(/(b)*/)[1]||4!="test".split(/(?:)/,-1)[u]||2!="ab".split(/(?:ab)*/)[u]||4!=".".split(/(.?)(.?)/)[u]||".".split(/()()/)[u]>1||"".split(/.?/)[u]){var s=void 0===/()??/.exec("")[1];r=function(e,t){var n=String(this);if(void 0===e&&0===t)return[];if(!i(e))return o.call(n,e,t);var r,c,l,f,p,d=[],h=(e.ignoreCase?"i":"")+(e.multiline?"m":"")+(e.unicode?"u":"")+(e.sticky?"y":""),v=0,y=void 0===t?4294967295:t>>>0,m=new RegExp(e.source,h+"g");for(s||(r=new RegExp("^"+m.source+"$(?!\\s)",h));(c=m.exec(n))&&!((l=c.index+c[0][u])>v&&(d.push(n.slice(v,c.index)),!s&&c[u]>1&&c[0].replace(r,function(){for(p=1;p<arguments[u]-2;p++)void 0===arguments[p]&&(c[p]=void 0)}),c[u]>1&&c.index<n[u]&&a.apply(d,c.slice(1)),f=c[0][u],v=l,d[u]>=y));)m.lastIndex===c.index&&m.lastIndex++;return v===n[u]?!f&&m.test("")||d.push(""):d.push(n.slice(v)),d[u]>y?d.slice(0,y):d}}else"0".split(void 0,0)[u]&&(r=function(e,t){return void 0===e&&0===t?[]:o.call(this,e,t)});return[function(n,i){var o=e(this),a=void 0==n?void 0:n[t];return void 0!==a?a.call(n,o,i):r.call(String(o),n,i)},r]})},function(e,t,n){"use strict";n(166);var r=n(1),i=n(66),o=n(7),a=/./.toString,u=function(e){n(15)(RegExp.prototype,"toString",e,!0)};n(4)(function(){return"/a/b"!=a.call({source:"a",flags:"b"})})?u(function(){var e=r(this);return"/".concat(e.source,"/","flags"in e?e.flags:!o&&e instanceof RegExp?i.call(e):void 0)}):"toString"!=a.name&&u(function(){return a.call(this)})},function(e,t,n){"use strict";n(16)("anchor",function(e){return function(t){return e(this,"a","name",t)}})},function(e,t,n){"use strict";n(16)("big",function(e){return function(){return e(this,"big","","")}})},function(e,t,n){"use strict";n(16)("blink",function(e){return function(){return e(this,"blink","","")}})},function(e,t,n){"use strict";n(16)("bold",function(e){return function(){return e(this,"b","","")}})},function(e,t,n){"use strict";var r=n(0),i=n(108)(!1);r(r.P,"String",{codePointAt:function(e){return i(this,e)}})},function(e,t,n){"use strict";var r=n(0),i=n(9),o=n(109),a="".endsWith;r(r.P+r.F*n(96)("endsWith"),"String",{endsWith:function(e){var t=o(this,e,"endsWith"),n=arguments.length>1?arguments[1]:void 0,r=i(t.length),u=void 0===n?r:Math.min(i(n),r),s=String(e);return a?a.call(t,s,u):t.slice(u-s.length,u)===s}})},function(e,t,n){"use strict";n(16)("fixed",function(e){return function(){return e(this,"tt","","")}})},function(e,t,n){"use strict";n(16)("fontcolor",function(e){return function(t){return e(this,"font","color",t)}})},function(e,t,n){"use strict";n(16)("fontsize",function(e){return function(t){return e(this,"font","size",t)}})},function(e,t,n){var r=n(0),i=n(46),o=String.fromCharCode,a=String.fromCodePoint;r(r.S+r.F*(!!a&&1!=a.length),"String",{fromCodePoint:function(e){for(var t,n=[],r=arguments.length,a=0;r>a;){if(t=+arguments[a++],i(t,1114111)!==t)throw RangeError(t+" is not a valid code point");n.push(t<65536?o(t):o(55296+((t-=65536)>>10),t%1024+56320))}return n.join("")}})},function(e,t,n){"use strict";var r=n(0),i=n(109);r(r.P+r.F*n(96)("includes"),"String",{includes:function(e){return!!~i(this,e,"includes").indexOf(e,arguments.length>1?arguments[1]:void 0)}})},function(e,t,n){"use strict";n(16)("italics",function(e){return function(){return e(this,"i","","")}})},function(e,t,n){"use strict";var r=n(108)(!0);n(101)(String,"String",function(e){this._t=String(e),this._i=0},function(){var e,t=this._t,n=this._i;return n>=t.length?{value:void 0,done:!0}:(e=r(t,n),this._i+=e.length,{value:e,done:!1})})},function(e,t,n){"use strict";n(16)("link",function(e){return function(t){return e(this,"a","href",t)}})},function(e,t,n){var r=n(0),i=n(20),o=n(9);r(r.S,"String",{raw:function(e){for(var t=i(e.raw),n=o(t.length),r=arguments.length,a=[],u=0;n>u;)a.push(String(t[u++])),u<r&&a.push(String(arguments[u]));return a.join("")}})},function(e,t,n){var r=n(0);r(r.P,"String",{repeat:n(110)})},function(e,t,n){"use strict";n(16)("small",function(e){return function(){return e(this,"small","","")}})},function(e,t,n){"use strict";var r=n(0),i=n(9),o=n(109),a="".startsWith;r(r.P+r.F*n(96)("startsWith"),"String",{startsWith:function(e){var t=o(this,e,"startsWith"),n=i(Math.min(arguments.length>1?arguments[1]:void 0,t.length)),r=String(e);return a?a.call(t,r,n):t.slice(n,n+r.length)===r}})},function(e,t,n){"use strict";n(16)("strike",function(e){return function(){return e(this,"strike","","")}})},function(e,t,n){"use strict";n(16)("sub",function(e){return function(){return e(this,"sub","","")}})},function(e,t,n){"use strict";n(16)("sup",function(e){return function(){return e(this,"sup","","")}})},function(e,t,n){"use strict";n(53)("trim",function(e){return function(){return e(this,3)}})},function(e,t,n){"use strict";var r=n(2),i=n(13),o=n(7),a=n(0),u=n(15),s=n(35).KEY,c=n(4),l=n(74),f=n(52),p=n(47),d=n(6),h=n(164),v=n(114),y=n(223),m=n(67),g=n(1),b=n(5),O=n(20),w=n(29),_=n(43),S=n(40),E=n(154),x=n(18),j=n(8),k=n(42),C=x.f,P=j.f,R=E.f,A=r.Symbol,T=r.JSON,F=T&&T.stringify,I=d("_hidden"),N=d("toPrimitive"),M={}.propertyIsEnumerable,V=l("symbol-registry"),U=l("symbols"),D=l("op-symbols"),L=Object.prototype,q="function"==typeof A,W=r.QObject,z=!W||!W.prototype||!W.prototype.findChild,B=o&&c(function(){return 7!=S(P({},"a",{get:function(){return P(this,"a",{value:7}).a}})).a})?function(e,t,n){var r=C(L,t);r&&delete L[t],P(e,t,n),r&&e!==L&&P(L,t,r)}:P,H=function(e){var t=U[e]=S(A.prototype);return t._k=e,t},Y=q&&"symbol"==typeof A.iterator?function(e){return"symbol"==typeof e}:function(e){return e instanceof A},$=function(e,t,n){return e===L&&$(D,t,n),g(e),t=w(t,!0),g(n),i(U,t)?(n.enumerable?(i(e,I)&&e[I][t]&&(e[I][t]=!1),n=S(n,{enumerable:_(0,!1)})):(i(e,I)||P(e,I,_(1,{})),e[I][t]=!0),B(e,t,n)):P(e,t,n)},G=function(e,t){g(e);for(var n,r=y(t=O(t)),i=0,o=r.length;o>i;)$(e,n=r[i++],t[n]);return e},K=function(e,t){return void 0===t?S(e):G(S(e),t)},J=function(e){var t=M.call(this,e=w(e,!0));return!(this===L&&i(U,e)&&!i(D,e))&&(!(t||!i(this,e)||!i(U,e)||i(this,I)&&this[I][e])||t)},Q=function(e,t){if(e=O(e),t=w(t,!0),e!==L||!i(U,t)||i(D,t)){var n=C(e,t);return!n||!i(U,t)||i(e,I)&&e[I][t]||(n.enumerable=!0),n}},Z=function(e){for(var t,n=R(O(e)),r=[],o=0;n.length>o;)i(U,t=n[o++])||t==I||t==s||r.push(t);return r},X=function(e){for(var t,n=e===L,r=R(n?D:O(e)),o=[],a=0;r.length>a;)!i(U,t=r[a++])||n&&!i(L,t)||o.push(U[t]);return o};q||(A=function(){if(this instanceof A)throw TypeError("Symbol is not a constructor!");var e=p(arguments.length>0?arguments[0]:void 0),t=function(n){this===L&&t.call(D,n),i(this,I)&&i(this[I],e)&&(this[I][e]=!1),B(this,e,_(1,n))};return o&&z&&B(L,e,{configurable:!0,set:t}),H(e)},u(A.prototype,"toString",function(){return this._k}),x.f=Q,j.f=$,n(41).f=E.f=Z,n(59).f=J,n(71).f=X,o&&!n(39)&&u(L,"propertyIsEnumerable",J,!0),h.f=function(e){return H(d(e))}),a(a.G+a.W+a.F*!q,{Symbol:A});for(var ee="hasInstance,isConcatSpreadable,iterator,match,replace,search,species,split,toPrimitive,toStringTag,unscopables".split(","),te=0;ee.length>te;)d(ee[te++]);for(var ne=k(d.store),re=0;ne.length>re;)v(ne[re++]);a(a.S+a.F*!q,"Symbol",{for:function(e){return i(V,e+="")?V[e]:V[e]=A(e)},keyFor:function(e){if(!Y(e))throw TypeError(e+" is not a symbol!");for(var t in V)if(V[t]===e)return t},useSetter:function(){z=!0},useSimple:function(){z=!1}}),a(a.S+a.F*!q,"Object",{create:K,defineProperty:$,defineProperties:G,getOwnPropertyDescriptor:Q,getOwnPropertyNames:Z,getOwnPropertySymbols:X}),T&&a(a.S+a.F*(!q||c(function(){var e=A();return"[null]"!=F([e])||"{}"!=F({a:e})||"{}"!=F(Object(e))})),"JSON",{stringify:function(e){for(var t,n,r=[e],i=1;arguments.length>i;)r.push(arguments[i++]);if(n=t=r[1],(b(t)||void 0!==e)&&!Y(e))return m(t)||(t=function(e,t){if(n&&(t=n.call(this,e,t)),!Y(t))return t}),r[1]=t,F.apply(T,r)}}),A.prototype[N]||n(14)(A.prototype,N,A.prototype.valueOf),f(A,"Symbol"),f(Math,"Math",!0),f(r.JSON,"JSON",!0)},function(e,t,n){"use strict";var r=n(0),i=n(76),o=n(113),a=n(1),u=n(46),s=n(9),c=n(5),l=n(2).ArrayBuffer,f=n(75),p=o.ArrayBuffer,d=o.DataView,h=i.ABV&&l.isView,v=p.prototype.slice,y=i.VIEW;r(r.G+r.W+r.F*(l!==p),{ArrayBuffer:p}),r(r.S+r.F*!i.CONSTR,"ArrayBuffer",{isView:function(e){return h&&h(e)||c(e)&&y in e}}),r(r.P+r.U+r.F*n(4)(function(){return!new p(2).slice(1,void 0).byteLength}),"ArrayBuffer",{slice:function(e,t){if(void 0!==v&&void 0===t)return v.call(a(this),e);for(var n=a(this).byteLength,r=u(e,n),i=u(void 0===t?n:t,n),o=new(f(this,p))(s(i-r)),c=new d(this),l=new d(o),h=0;r<i;)l.setUint8(h++,c.getUint8(r++));return o}}),n(45)("ArrayBuffer")},function(e,t,n){var r=n(0);r(r.G+r.W+r.F*!n(76).ABV,{DataView:n(113).DataView})},function(e,t,n){n(33)("Float32",4,function(e){return function(t,n,r){return e(this,t,n,r)}})},function(e,t,n){n(33)("Float64",8,function(e){return function(t,n,r){return e(this,t,n,r)}})},function(e,t,n){n(33)("Int16",2,function(e){return function(t,n,r){return e(this,t,n,r)}})},function(e,t,n){n(33)("Int32",4,function(e){return function(t,n,r){return e(this,t,n,r)}})},function(e,t,n){n(33)("Int8",1,function(e){return function(t,n,r){return e(this,t,n,r)}})},function(e,t,n){n(33)("Uint16",2,function(e){return function(t,n,r){return e(this,t,n,r)}})},function(e,t,n){n(33)("Uint32",4,function(e){return function(t,n,r){return e(this,t,n,r)}})},function(e,t,n){n(33)("Uint8",1,function(e){return function(t,n,r){return e(this,t,n,r)}})},function(e,t,n){n(33)("Uint8",1,function(e){return function(t,n,r){return e(this,t,n,r)}},!0)},function(e,t,n){"use strict";var r=n(142),i=n(54);n(64)("WeakSet",function(e){return function(){return e(this,arguments.length>0?arguments[0]:void 0)}},{add:function(e){return r.def(i(this,"WeakSet"),e,!0)}},r,!1,!0)},function(e,t,n){"use strict";var r=n(0),i=n(143),o=n(10),a=n(9),u=n(12),s=n(92);r(r.P,"Array",{flatMap:function(e){var t,n,r=o(this);return u(e),t=a(r.length),n=s(r,0),i(n,r,r,t,0,1,e,arguments[1]),n}}),n(34)("flatMap")},function(e,t,n){"use strict";var r=n(0),i=n(143),o=n(10),a=n(9),u=n(28),s=n(92);r(r.P,"Array",{flatten:function(){var e=arguments[0],t=o(this),n=a(t.length),r=s(t,0);return i(r,t,t,n,0,void 0===e?1:u(e)),r}}),n(34)("flatten")},function(e,t,n){"use strict";var r=n(0),i=n(63)(!0);r(r.P,"Array",{includes:function(e){return i(this,e,arguments.length>1?arguments[1]:void 0)}}),n(34)("includes")},function(e,t,n){var r=n(0),i=n(104)(),o=n(2).process,a="process"==n(21)(o);r(r.G,{asap:function(e){var t=a&&o.domain;i(t?t.bind(e):e)}})},function(e,t,n){var r=n(0),i=n(21);r(r.S,"Error",{isError:function(e){return"Error"===i(e)}})},function(e,t,n){var r=n(0);r(r.G,{global:n(2)})},function(e,t,n){n(72)("Map")},function(e,t,n){n(73)("Map")},function(e,t,n){var r=n(0);r(r.P+r.R,"Map",{toJSON:n(141)("Map")})},function(e,t,n){var r=n(0);r(r.S,"Math",{clamp:function(e,t,n){return Math.min(n,Math.max(t,e))}})},function(e,t,n){var r=n(0);r(r.S,"Math",{DEG_PER_RAD:Math.PI/180})},function(e,t,n){var r=n(0),i=180/Math.PI;r(r.S,"Math",{degrees:function(e){return e*i}})},function(e,t,n){var r=n(0),i=n(151),o=n(149);r(r.S,"Math",{fscale:function(e,t,n,r,a){return o(i(e,t,n,r,a))}})},function(e,t,n){var r=n(0);r(r.S,"Math",{iaddh:function(e,t,n,r){var i=e>>>0,o=t>>>0,a=n>>>0;return o+(r>>>0)+((i&a|(i|a)&~(i+a>>>0))>>>31)|0}})},function(e,t,n){var r=n(0);r(r.S,"Math",{imulh:function(e,t){var n=+e,r=+t,i=65535&n,o=65535&r,a=n>>16,u=r>>16,s=(a*o>>>0)+(i*o>>>16);return a*u+(s>>16)+((i*u>>>0)+(65535&s)>>16)}})},function(e,t,n){var r=n(0);r(r.S,"Math",{isubh:function(e,t,n,r){var i=e>>>0,o=t>>>0,a=n>>>0;return o-(r>>>0)-((~i&a|~(i^a)&i-a>>>0)>>>31)|0}})},function(e,t,n){var r=n(0);r(r.S,"Math",{RAD_PER_DEG:180/Math.PI})},function(e,t,n){var r=n(0),i=Math.PI/180;r(r.S,"Math",{radians:function(e){return e*i}})},function(e,t,n){var r=n(0);r(r.S,"Math",{scale:n(151)})},function(e,t,n){var r=n(0);r(r.S,"Math",{signbit:function(e){return(e=+e)!=e?e:0==e?1/e==1/0:e>0}})},function(e,t,n){var r=n(0);r(r.S,"Math",{umulh:function(e,t){var n=+e,r=+t,i=65535&n,o=65535&r,a=n>>>16,u=r>>>16,s=(a*o>>>0)+(i*o>>>16);return a*u+(s>>>16)+((i*u>>>0)+(65535&s)>>>16)}})},function(e,t,n){"use strict";var r=n(0),i=n(10),o=n(12),a=n(8);n(7)&&r(r.P+n(70),"Object",{__defineGetter__:function(e,t){a.f(i(this),e,{get:o(t),enumerable:!0,configurable:!0})}})},function(e,t,n){"use strict";var r=n(0),i=n(10),o=n(12),a=n(8);n(7)&&r(r.P+n(70),"Object",{__defineSetter__:function(e,t){a.f(i(this),e,{set:o(t),enumerable:!0,configurable:!0})}})},function(e,t,n){var r=n(0),i=n(156)(!0);r(r.S,"Object",{entries:function(e){return i(e)}})},function(e,t,n){var r=n(0),i=n(157),o=n(20),a=n(18),u=n(93);r(r.S,"Object",{getOwnPropertyDescriptors:function(e){for(var t,n,r=o(e),s=a.f,c=i(r),l={},f=0;c.length>f;)void 0!==(n=s(r,t=c[f++]))&&u(l,t,n);return l}})},function(e,t,n){"use strict";var r=n(0),i=n(10),o=n(29),a=n(19),u=n(18).f;n(7)&&r(r.P+n(70),"Object",{__lookupGetter__:function(e){var t,n=i(this),r=o(e,!0);do{if(t=u(n,r))return t.get}while(n=a(n))}})},function(e,t,n){"use strict";var r=n(0),i=n(10),o=n(29),a=n(19),u=n(18).f;n(7)&&r(r.P+n(70),"Object",{__lookupSetter__:function(e){var t,n=i(this),r=o(e,!0);do{if(t=u(n,r))return t.set}while(n=a(n))}})},function(e,t,n){var r=n(0),i=n(156)(!1);r(r.S,"Object",{values:function(e){return i(e)}})},function(e,t,n){"use strict";var r=n(0),i=n(2),o=n(25),a=n(104)(),u=n(6)("observable"),s=n(12),c=n(1),l=n(37),f=n(44),p=n(14),d=n(38),h=d.RETURN,v=function(e){return null==e?void 0:s(e)},y=function(e){var t=e._c;t&&(e._c=void 0,t())},m=function(e){return void 0===e._o},g=function(e){m(e)||(e._o=void 0,y(e))},b=function(e,t){c(e),this._c=void 0,this._o=e,e=new O(this);try{var n=t(e),r=n;null!=n&&("function"==typeof n.unsubscribe?n=function(){r.unsubscribe()}:s(n),this._c=n)}catch(t){return void e.error(t)}m(this)&&y(this)};b.prototype=f({},{unsubscribe:function(){g(this)}});var O=function(e){this._s=e};O.prototype=f({},{next:function(e){var t=this._s;if(!m(t)){var n=t._o;try{var r=v(n.next);if(r)return r.call(n,e)}catch(e){try{g(t)}finally{throw e}}}},error:function(e){var t=this._s;if(m(t))throw e;var n=t._o;t._o=void 0;try{var r=v(n.error);if(!r)throw e;e=r.call(n,e)}catch(e){try{y(t)}finally{throw e}}return y(t),e},complete:function(e){var t=this._s;if(!m(t)){var n=t._o;t._o=void 0;try{var r=v(n.complete);e=r?r.call(n,e):void 0}catch(e){try{y(t)}finally{throw e}}return y(t),e}}});var w=function(e){l(this,w,"Observable","_f")._f=s(e)};f(w.prototype,{subscribe:function(e){return new b(e,this._f)},forEach:function(e){var t=this;return new(o.Promise||i.Promise)(function(n,r){s(e);var i=t.subscribe({next:function(t){try{return e(t)}catch(e){r(e),i.unsubscribe()}},error:r,complete:n})})}}),f(w,{from:function(e){var t="function"==typeof this?this:w,n=v(c(e)[u]);if(n){var r=c(n.call(e));return r.constructor===t?r:new t(function(e){return r.subscribe(e)})}return new t(function(t){var n=!1;return a(function(){if(!n){try{if(d(e,!1,function(e){if(t.next(e),n)return h})===h)return}catch(e){if(n)throw e;return void t.error(e)}t.complete()}}),function(){n=!0}})},of:function(){for(var e=0,t=arguments.length,n=new Array(t);e<t;)n[e]=arguments[e++];return new("function"==typeof this?this:w)(function(e){var t=!1;return a(function(){if(!t){for(var r=0;r<n.length;++r)if(e.next(n[r]),t)return;e.complete()}}),function(){t=!0}})}}),p(w.prototype,u,function(){return this}),r(r.G,{Observable:w}),n(45)("Observable")},function(e,t,n){"use strict";var r=n(0),i=n(25),o=n(2),a=n(75),u=n(161);r(r.P+r.R,"Promise",{finally:function(e){var t=a(this,i.Promise||o.Promise),n="function"==typeof e;return this.then(n?function(n){return u(t,e()).then(function(){return n})}:e,n?function(n){return u(t,e()).then(function(){throw n})}:e)}})},function(e,t,n){"use strict";var r=n(0),i=n(105),o=n(160);r(r.S,"Promise",{try:function(e){var t=i.f(this),n=o(e);return(n.e?t.reject:t.resolve)(n.v),t.promise}})},function(e,t,n){var r=n(32),i=n(1),o=r.key,a=r.set;r.exp({defineMetadata:function(e,t,n,r){a(e,t,i(n),o(r))}})},function(e,t,n){var r=n(32),i=n(1),o=r.key,a=r.map,u=r.store;r.exp({deleteMetadata:function(e,t){var n=arguments.length<3?void 0:o(arguments[2]),r=a(i(t),n,!1);if(void 0===r||!r.delete(e))return!1;if(r.size)return!0;var s=u.get(t);return s.delete(n),!!s.size||u.delete(t)}})},function(e,t,n){var r=n(167),i=n(137),o=n(32),a=n(1),u=n(19),s=o.keys,c=o.key,l=function(e,t){var n=s(e,t),o=u(e);if(null===o)return n;var a=l(o,t);return a.length?n.length?i(new r(n.concat(a))):a:n};o.exp({getMetadataKeys:function(e){return l(a(e),arguments.length<2?void 0:c(arguments[1]))}})},function(e,t,n){var r=n(32),i=n(1),o=n(19),a=r.has,u=r.get,s=r.key,c=function(e,t,n){if(a(e,t,n))return u(e,t,n);var r=o(t);return null!==r?c(e,r,n):void 0};r.exp({getMetadata:function(e,t){return c(e,i(t),arguments.length<3?void 0:s(arguments[2]))}})},function(e,t,n){var r=n(32),i=n(1),o=r.keys,a=r.key;r.exp({getOwnMetadataKeys:function(e){return o(i(e),arguments.length<2?void 0:a(arguments[1]))}})},function(e,t,n){var r=n(32),i=n(1),o=r.get,a=r.key;r.exp({getOwnMetadata:function(e,t){return o(e,i(t),arguments.length<3?void 0:a(arguments[2]))}})},function(e,t,n){var r=n(32),i=n(1),o=n(19),a=r.has,u=r.key,s=function(e,t,n){if(a(e,t,n))return!0;var r=o(t);return null!==r&&s(e,r,n)};r.exp({hasMetadata:function(e,t){return s(e,i(t),arguments.length<3?void 0:u(arguments[2]))}})},function(e,t,n){var r=n(32),i=n(1),o=r.has,a=r.key;r.exp({hasOwnMetadata:function(e,t){return o(e,i(t),arguments.length<3?void 0:a(arguments[2]))}})},function(e,t,n){var r=n(32),i=n(1),o=n(12),a=r.key,u=r.set;r.exp({metadata:function(e,t){return function(n,r){u(e,t,(void 0!==r?i:o)(n),a(r))}}})},function(e,t,n){n(72)("Set")},function(e,t,n){n(73)("Set")},function(e,t,n){var r=n(0);r(r.P+r.R,"Set",{toJSON:n(141)("Set")})},function(e,t,n){"use strict";var r=n(0),i=n(108)(!0);r(r.P,"String",{at:function(e){return i(this,e)}})},function(e,t,n){"use strict";var r=n(0),i=n(26),o=n(9),a=n(68),u=n(66),s=RegExp.prototype,c=function(e,t){this._r=e,this._s=t};n(100)(c,"RegExp String",function(){var e=this._r.exec(this._s);return{value:e,done:null===e}}),r(r.P,"String",{matchAll:function(e){if(i(this),!a(e))throw TypeError(e+" is not a regexp!");var t=String(this),n="flags"in s?String(e.flags):u.call(e),r=new RegExp(e.source,~n.indexOf("g")?n:"g"+n);return r.lastIndex=o(e.lastIndex),new c(r,t)}})},function(e,t,n){"use strict";var r=n(0),i=n(162);r(r.P,"String",{padEnd:function(e){return i(this,e,arguments.length>1?arguments[1]:void 0,!1)}})},function(e,t,n){"use strict";var r=n(0),i=n(162);r(r.P,"String",{padStart:function(e){return i(this,e,arguments.length>1?arguments[1]:void 0,!0)}})},function(e,t,n){"use strict";n(53)("trimLeft",function(e){return function(){return e(this,1)}},"trimStart")},function(e,t,n){"use strict";n(53)("trimRight",function(e){return function(){return e(this,2)}},"trimEnd")},function(e,t,n){n(114)("asyncIterator")},function(e,t,n){n(114)("observable")},function(e,t,n){var r=n(0);r(r.S,"System",{global:n(2)})},function(e,t,n){n(72)("WeakMap")},function(e,t,n){n(73)("WeakMap")},function(e,t,n){n(72)("WeakSet")},function(e,t,n){n(73)("WeakSet")},function(e,t,n){for(var r=n(116),i=n(42),o=n(15),a=n(2),u=n(14),s=n(51),c=n(6),l=c("iterator"),f=c("toStringTag"),p=s.Array,d={CSSRuleList:!0,CSSStyleDeclaration:!1,CSSValueList:!1,ClientRectList:!1,DOMRectList:!1,DOMStringList:!1,DOMTokenList:!0,DataTransferItemList:!1,FileList:!1,HTMLAllCollection:!1,HTMLCollection:!1,HTMLFormElement:!1,HTMLSelectElement:!1,MediaList:!0,MimeTypeArray:!1,NamedNodeMap:!1,NodeList:!0,PaintRequestList:!1,Plugin:!1,PluginArray:!1,SVGLengthList:!1,SVGNumberList:!1,SVGPathSegList:!1,SVGPointList:!1,SVGStringList:!1,SVGTransformList:!1,SourceBufferList:!1,StyleSheetList:!0,TextTrackCueList:!1,TextTrackList:!1,TouchList:!1},h=i(d),v=0;v<h.length;v++){var y,m=h[v],g=d[m],b=a[m],O=b&&b.prototype;if(O&&(O[l]||u(O,l,p),O[f]||u(O,f,m),s[m]=p,g))for(y in r)O[y]||o(O,y,r[y],!0)}},function(e,t,n){var r=n(0),i=n(112);r(r.G+r.B,{setImmediate:i.set,clearImmediate:i.clear})},function(e,t,n){var r=n(2),i=n(0),o=r.navigator,a=[].slice,u=!!o&&/MSIE .\./.test(o.userAgent),s=function(e){return function(t,n){var r=arguments.length>2,i=!!r&&a.call(arguments,2);return e(r?function(){("function"==typeof t?t:Function(t)).apply(this,i)}:t,n)}};i(i.G+i.B+i.F*u,{setTimeout:s(r.setTimeout),setInterval:s(r.setInterval)})},function(e,t,n){n(346),n(285),n(287),n(286),n(289),n(291),n(296),n(290),n(288),n(298),n(297),n(293),n(294),n(292),n(284),n(295),n(299),n(300),n(252),n(254),n(253),n(302),n(301),n(272),n(282),n(283),n(273),n(274),n(275),n(276),n(277),n(278),n(279),n(280),n(281),n(255),n(256),n(257),n(258),n(259),n(260),n(261),n(262),n(263),n(264),n(265),n(266),n(267),n(268),n(269),n(270),n(271),n(333),n(338),n(345),n(336),n(328),n(329),n(334),n(339),n(341),n(324),n(325),n(326),n(327),n(330),n(331),n(332),n(335),n(337),n(340),n(342),n(343),n(344),n(247),n(249),n(248),n(251),n(250),n(236),n(234),n(240),n(237),n(243),n(245),n(233),n(239),n(230),n(244),n(228),n(242),n(241),n(235),n(238),n(227),n(229),n(232),n(231),n(246),n(116),n(318),n(323),n(166),n(319),n(320),n(321),n(322),n(303),n(165),n(167),n(168),n(358),n(347),n(348),n(353),n(356),n(357),n(351),n(354),n(352),n(355),n(349),n(350),n(304),n(305),n(306),n(307),n(308),n(311),n(309),n(310),n(312),n(313),n(314),n(315),n(317),n(316),n(361),n(359),n(360),n(402),n(405),n(404),n(406),n(407),n(403),n(408),n(409),n(383),n(386),n(382),n(380),n(381),n(384),n(385),n(367),n(401),n(366),n(400),n(412),n(414),n(365),n(399),n(411),n(413),n(364),n(410),n(363),n(368),n(369),n(370),n(371),n(372),n(374),n(373),n(375),n(376),n(377),n(379),n(378),n(388),n(389),n(390),n(391),n(393),n(392),n(395),n(394),n(396),n(397),n(398),n(362),n(387),n(417),n(416),n(415),e.exports=n(25)},function(e,t,n){"use strict";function r(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function i(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function o(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}Object.defineProperty(t,"__esModule",{value:!0});var a=function(e){function t(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"";r(this,t);var n=i(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e));return Object.defineProperty(n,"message",{configurable:!0,enumerable:!1,value:e,writable:!0}),Object.defineProperty(n,"name",{configurable:!0,enumerable:!1,value:n.constructor.name,writable:!0}),Error.hasOwnProperty("captureStackTrace")?(Error.captureStackTrace(n,n.constructor),i(n)):(Object.defineProperty(n,"stack",{configurable:!0,enumerable:!1,value:new Error(e).stack,writable:!0}),n)}return o(t,e),t}(function(e){function t(){e.apply(this,arguments)}return t.prototype=Object.create(e.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),Object.setPrototypeOf?Object.setPrototypeOf(t,e):t.__proto__=e,t}(Error));t.default=a,e.exports=t.default},function(e,t,n){"use strict";var r=n(77),i={listen:function(e,t,n){return e.addEventListener?(e.addEventListener(t,n,!1),{remove:function(){e.removeEventListener(t,n,!1)}}):e.attachEvent?(e.attachEvent("on"+t,n),{remove:function(){e.detachEvent("on"+t,n)}}):void 0},capture:function(e,t,n){return e.addEventListener?(e.addEventListener(t,n,!0),{remove:function(){e.removeEventListener(t,n,!0)}}):{remove:r}},registerDefault:function(){}};e.exports=i},function(e,t,n){"use strict";var r=!("undefined"==typeof window||!window.document||!window.document.createElement),i={canUseDOM:r,canUseWorkers:"undefined"!=typeof Worker,canUseEventListeners:r&&!(!window.addEventListener&&!window.attachEvent),canUseViewport:r&&!!window.screen,isInWorker:!r};e.exports=i},function(e,t,n){"use strict";function r(e,t){return!(!e||!t)&&(e===t||!i(e)&&(i(t)?r(e,t.parentNode):"contains"in e?e.contains(t):!!e.compareDocumentPosition&&!!(16&e.compareDocumentPosition(t))))}var i=n(427);e.exports=r},function(e,t,n){"use strict";function r(e){try{e.focus()}catch(e){}}e.exports=r},function(e,t,n){"use strict";function r(e){if(void 0===(e=e||("undefined"!=typeof document?document:void 0)))return null;try{return e.activeElement||e.body}catch(t){return e.body}}e.exports=r},function(e,t,n){"use strict";function r(e,t,n,r,o,a,u,s){if(i(t),!e){var c;if(void 0===t)c=new Error("Minified exception occurred; use the non-minified dev environment for the full error message and additional helpful warnings.");else{var l=[n,r,o,a,u,s],f=0;c=new Error(t.replace(/%s/g,function(){return l[f++]})),c.name="Invariant Violation"}throw c.framesToPop=1,c}}var i=function(e){};e.exports=r},function(e,t,n){"use strict";function r(e){var t=e?e.ownerDocument||e:document,n=t.defaultView||window;return!(!e||!("function"==typeof n.Node?e instanceof n.Node:"object"==typeof e&&"number"==typeof e.nodeType&&"string"==typeof e.nodeName))}e.exports=r},function(e,t,n){"use strict";function r(e){return i(e)&&3==e.nodeType}var i=n(426);e.exports=r},function(e,t,n){"use strict";function r(e,t){return e===t?0!==e||0!==t||1/e==1/t:e!==e&&t!==t}function i(e,t){if(r(e,t))return!0;if("object"!=typeof e||null===e||"object"!=typeof t||null===t)return!1;var n=Object.keys(e),i=Object.keys(t);if(n.length!==i.length)return!1;for(var a=0;a<n.length;a++)if(!o.call(t,n[a])||!r(e[n[a]],t[n[a]]))return!1;return!0}var o=Object.prototype.hasOwnProperty;e.exports=i},function(e,t){e.exports='<h1 id="async-blur-validation-example">Async Blur Validation Example</h1>\n<p>The recommended way to provide server-side validation is to use\n<a href="../submitValidation">Submit Validation</a>, but there may be instances when you want to run\nserver-side validation <em>while the form is being filled out</em>. The classic example of this\nletting someone choose a value, like a username, that must be unique within your system.</p>\n<p>To provide asynchronous validation, provide <code>redux-form</code> with an asynchronous validation\nfunction (<code>asyncValidate</code>) that takes an object of form values, and the Redux <code>dispatch</code>\nfunction, and returns a promise that either rejects with an object of errors or resolves.</p>\n<p>You will also need to specify which fields should fire the asynchronous validation when\nthey are blurred with the <code>asyncBlurFields</code> config property. If you do not provide that\nproperty, blurring any field will trigger asynchronous validation.</p>\n<h2 id="important">Important</h2>\n<ol>\n<li>Asynchronous validation <em>will</em> be called before the <code>onSubmit</code> is fired, but if all\nyou care about is validation <code>onSubmit</code>, you should use\n<a href="../submitValidation">Submit Validation</a>.</li>\n<li>Asynchronous validation will <em>not</em> be called if synchronous validation is failing\n<em>for the field just blurred</em>.</li>\n</ol>\n<p>The errors are displayed in the exact same way as validation errors created by\n<a href="../syncValidation">Synchronous Validation</a>.</p>\n<h2 id="running-this-example-locally">Running this example locally</h2>\n<p>To run this example locally on your machine clone the <code>redux-form</code> repository,\nthen <code>cd redux-form</code> to change to the repo directory, and run <code>npm install</code>.</p>\n<p>Then run <code>npm run example:asyncValidation</code> or manually run the\nfollowing commands:</p>\n<pre><code>cd ./examples/asyncValidation\nnpm install\nnpm start\n</code></pre><p>Then open <a href="http://localhost:3030"><code>localhost:3030</code></a> in your\nbrowser to view the example running locally on your machine.</p>\n<h2 id="how-to-use-the-form-below-">How to use the form below:</h2>\n<ul>\n<li>Usernames that will <em>fail</em> validation: <code>john</code>, <code>paul</code>, <code>george</code> or <code>ringo</code>.</li>\n</ul>\n'},function(e,t,n){"use strict";var r=n(48),i=n(30),o=n.i(r.a)(i.a,"DataView");t.a=o},function(e,t,n){"use strict";function r(e){var t=-1,n=null==e?0:e.length;for(this.clear();++t<n;){var r=e[t];this.set(r[0],r[1])}}var i=n(481),o=n(482),a=n(483),u=n(484),s=n(485);r.prototype.clear=i.a,r.prototype.delete=o.a,r.prototype.get=a.a,r.prototype.has=u.a,r.prototype.set=s.a,t.a=r},function(e,t,n){"use strict";var r=n(48),i=n(30),o=n.i(r.a)(i.a,"Promise");t.a=o},function(e,t,n){"use strict";var r=n(48),i=n(30),o=n.i(r.a)(i.a,"Set");t.a=o},function(e,t,n){"use strict";function r(e){var t=-1,n=null==e?0:e.length;for(this.__data__=new i.a;++t<n;)this.add(e[t])}var i=n(119),o=n(507),a=n(508);r.prototype.add=r.prototype.push=o.a,r.prototype.has=a.a,t.a=r},function(e,t,n){"use strict";var r=n(48),i=n(30),o=n.i(r.a)(i.a,"WeakMap");t.a=o},function(e,t,n){"use strict";function r(e,t,n){switch(n.length){case 0:return e.call(t);case 1:return e.call(t,n[0]);case 2:return e.call(t,n[0],n[1]);case 3:return e.call(t,n[0],n[1],n[2])}return e.apply(t,n)}t.a=r},function(e,t,n){"use strict";function r(e,t){for(var n=-1,r=null==e?0:e.length,i=0,o=[];++n<r;){var a=e[n];t(a,n,e)&&(o[i++]=a)}return o}t.a=r},function(e,t,n){"use strict";function r(e,t){for(var n=-1,r=t.length,i=e.length;++n<r;)e[i+n]=t[n];return e}t.a=r},function(e,t,n){"use strict";function r(e,t){for(var n=-1,r=null==e?0:e.length;++n<r;)if(t(e[n],n,e))return!0;return!1}t.a=r},function(e,t,n){"use strict";function r(e,t,r){var a=e[t];u.call(e,t)&&n.i(o.a)(a,r)&&(void 0!==r||t in e)||n.i(i.a)(e,t,r)}var i=n(81),o=n(61),a=Object.prototype,u=a.hasOwnProperty;t.a=r},function(e,t,n){"use strict";var r=n(36),i=Object.create,o=function(){function e(){}return function(t){if(!n.i(r.a)(t))return{};if(i)return i(t);e.prototype=t;var o=new e;return e.prototype=void 0,o}}();t.a=o},function(e,t,n){"use strict";function r(e,t){return e&&n.i(i.a)(e,t,o.a)}var i=n(175),o=n(131);t.a=r},function(e,t,n){"use strict";function r(e,t,r){var a=t(e);return n.i(o.a)(e)?a:n.i(i.a)(a,r(e))}var i=n(438),o=n(31);t.a=r},function(e,t,n){"use strict";function r(e,t){return null!=e&&t in Object(e)}t.a=r},function(e,t,n){"use strict";function r(e){return n.i(o.a)(e)&&n.i(i.a)(e)==a}var i=n(56),o=n(49),a="[object Arguments]";t.a=r},function(e,t,n){"use strict";function r(e,t,r,y,g,b){var O=n.i(c.a)(e),w=n.i(c.a)(t),_=O?h:n.i(s.a)(e),S=w?h:n.i(s.a)(t);_=_==d?v:_,S=S==d?v:S;var E=_==v,x=S==v,j=_==S;if(j&&n.i(l.a)(e)){if(!n.i(l.a)(t))return!1;O=!0,E=!1}if(j&&!E)return b||(b=new i.a),O||n.i(f.a)(e)?n.i(o.a)(e,t,r,y,g,b):n.i(a.a)(e,t,_,r,y,g,b);if(!(r&p)){var k=E&&m.call(e,"__wrapped__"),C=x&&m.call(t,"__wrapped__");if(k||C){var P=k?e.value():e,R=C?t.value():t;return b||(b=new i.a),g(P,R,r,y,b)}}return!!j&&(b||(b=new i.a),n.i(u.a)(e,t,r,y,g,b))}var i=n(120),o=n(180),a=n(472),u=n(473),s=n(478),c=n(31),l=n(127),f=n(130),p=1,d="[object Arguments]",h="[object Array]",v="[object Object]",y=Object.prototype,m=y.hasOwnProperty;t.a=r},function(e,t,n){"use strict";function r(e,t,r,s){var c=r.length,l=c,f=!s;if(null==e)return!l;for(e=Object(e);c--;){var p=r[c];if(f&&p[2]?p[1]!==e[p[0]]:!(p[0]in e))return!1}for(;++c<l;){p=r[c];var d=p[0],h=e[d],v=p[1];if(f&&p[2]){if(void 0===h&&!(d in e))return!1}else{var y=new i.a;if(s)var m=s(h,v,d,e,t,y);if(!(void 0===m?n.i(o.a)(v,h,a|u,s,y):m))return!1}}return!0}var i=n(120),o=n(121),a=1,u=2;t.a=r},function(e,t,n){"use strict";function r(e){return!(!n.i(a.a)(e)||n.i(o.a)(e))&&(n.i(i.a)(e)?h:c).test(n.i(u.a)(e))}var i=n(128),o=n(489),a=n(36),u=n(187),s=/[\\^$.*+?()[\]{}|]/g,c=/^\[object .+?Constructor\]$/,l=Function.prototype,f=Object.prototype,p=l.toString,d=f.hasOwnProperty,h=RegExp("^"+p.call(d).replace(s,"\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g,"$1.*?")+"$");t.a=r},function(e,t,n){"use strict";function r(e){return n.i(a.a)(e)&&n.i(o.a)(e.length)&&!!u[n.i(i.a)(e)]}var i=n(56),o=n(129),a=n(49),u={};u["[object Float32Array]"]=u["[object Float64Array]"]=u["[object Int8Array]"]=u["[object Int16Array]"]=u["[object Int32Array]"]=u["[object Uint8Array]"]=u["[object Uint8ClampedArray]"]=u["[object Uint16Array]"]=u["[object Uint32Array]"]=!0,u["[object Arguments]"]=u["[object Array]"]=u["[object ArrayBuffer]"]=u["[object Boolean]"]=u["[object DataView]"]=u["[object Date]"]=u["[object Error]"]=u["[object Function]"]=u["[object Map]"]=u["[object Number]"]=u["[object Object]"]=u["[object RegExp]"]=u["[object Set]"]=u["[object String]"]=u["[object WeakMap]"]=!1,t.a=r},function(e,t,n){"use strict";function r(e){return"function"==typeof e?e:null==e?a.a:"object"==typeof e?n.i(u.a)(e)?n.i(o.a)(e[0],e[1]):n.i(i.a)(e):n.i(s.a)(e)}var i=n(453),o=n(454),a=n(125),u=n(31),s=n(523);t.a=r},function(e,t,n){"use strict";function r(e){if(!n.i(i.a)(e))return n.i(o.a)(e);var t=[];for(var r in Object(e))u.call(e,r)&&"constructor"!=r&&t.push(r);return t}var i=n(124),o=n(502),a=Object.prototype,u=a.hasOwnProperty;t.a=r},function(e,t,n){"use strict";function r(e){if(!n.i(i.a)(e))return n.i(a.a)(e);var t=n.i(o.a)(e),r=[];for(var u in e)("constructor"!=u||!t&&s.call(e,u))&&r.push(u);return r}var i=n(36),o=n(124),a=n(503),u=Object.prototype,s=u.hasOwnProperty;t.a=r},function(e,t,n){"use strict";function r(e){var t=n.i(o.a)(e);return 1==t.length&&t[0][2]?n.i(a.a)(t[0][0],t[0][1]):function(r){return r===e||n.i(i.a)(r,e,t)}}var i=n(447),o=n(475),a=n(184);t.a=r},function(e,t,n){"use strict";function r(e,t){return n.i(u.a)(e)&&n.i(s.a)(t)?n.i(c.a)(n.i(l.a)(e),t):function(r){var u=n.i(o.a)(r,e);return void 0===u&&u===t?n.i(a.a)(r,e):n.i(i.a)(t,u,f|p)}}var i=n(121),o=n(518),a=n(519),u=n(123),s=n(183),c=n(184),l=n(60),f=1,p=2;t.a=r},function(e,t,n){"use strict";function r(e,t,l,f,p){e!==t&&n.i(a.a)(t,function(a,c){if(n.i(s.a)(a))p||(p=new i.a),n.i(u.a)(e,t,c,l,r,f,p);else{var d=f?f(e[c],a,c+"",e,t,p):void 0;void 0===d&&(d=a),n.i(o.a)(e,c,d)}},c.a)}var i=n(120),o=n(174),a=n(175),u=n(456),s=n(36),c=n(189);t.a=r},function(e,t,n){"use strict";function r(e,t,r,g,b,O,w){var _=e[r],S=t[r],E=w.get(S);if(E)return void n.i(i.a)(e,r,E);var x=O?O(_,S,r+"",e,t,w):void 0,j=void 0===x;if(j){var k=n.i(l.a)(S),C=!k&&n.i(p.a)(S),P=!k&&!C&&n.i(y.a)(S);x=S,k||C||P?n.i(l.a)(_)?x=_:n.i(f.a)(_)?x=n.i(u.a)(_):C?(j=!1,x=n.i(o.a)(S,!0)):P?(j=!1,x=n.i(a.a)(S,!0)):x=[]:n.i(v.a)(S)||n.i(c.a)(S)?(x=_,n.i(c.a)(_)?x=n.i(m.a)(_):(!n.i(h.a)(_)||g&&n.i(d.a)(_))&&(x=n.i(s.a)(S))):j=!1}j&&(w.set(S,x),b(x,S,g,O,w),w.delete(S)),n.i(i.a)(e,r,x)}var i=n(174),o=n(466),a=n(467),u=n(178),s=n(486),c=n(126),l=n(31),f=n(520),p=n(127),d=n(128),h=n(36),v=n(85),y=n(130),m=n(526);t.a=r},function(e,t,n){"use strict";function r(e){return function(t){return null==t?void 0:t[e]}}t.a=r},function(e,t,n){"use strict";function r(e){return function(t){return n.i(i.a)(t,e)}}var i=n(176);t.a=r},function(e,t,n){"use strict";function r(e,t){return n.i(a.a)(n.i(o.a)(e,t,i.a),e+"")}var i=n(125),o=n(506),a=n(510);t.a=r},function(e,t,n){"use strict";var r=n(517),i=n(179),o=n(125),a=i.a?function(e,t){return n.i(i.a)(e,"toString",{configurable:!0,enumerable:!1,value:n.i(r.a)(t),writable:!0})}:o.a;t.a=a},function(e,t,n){"use strict";function r(e,t){for(var n=-1,r=Array(e);++n<e;)r[n]=t(n);return r}t.a=r},function(e,t,n){"use strict";function r(e){if("string"==typeof e)return e;if(n.i(a.a)(e))return n.i(o.a)(e,r)+"";if(n.i(u.a)(e))return l?l.call(e):"";var t=e+"";return"0"==t&&1/e==-s?"-0":t}var i=n(79),o=n(173),a=n(31),u=n(86),s=1/0,c=i.a?i.a.prototype:void 0,l=c?c.toString:void 0;t.a=r},function(e,t,n){"use strict";function r(e){return function(t){return e(t)}}t.a=r},function(e,t,n){"use strict";function r(e,t){return e.has(t)}t.a=r},function(e,t,n){"use strict";function r(e){var t=new e.constructor(e.byteLength);return new i.a(t).set(new i.a(e)),t}var i=n(171);t.a=r},function(e,t,n){"use strict";(function(e){function r(e,t){if(t)return e.slice();var n=e.length,r=c?c(n):new e.constructor(n);return e.copy(r),r}var i=n(30),o="object"==typeof exports&&exports&&!exports.nodeType&&exports,a=o&&"object"==typeof e&&e&&!e.nodeType&&e,u=a&&a.exports===o,s=u?i.a.Buffer:void 0,c=s?s.allocUnsafe:void 0;t.a=r}).call(t,n(90)(e))},function(e,t,n){"use strict";function r(e,t){var r=t?n.i(i.a)(e.buffer):e.buffer;return new e.constructor(r,e.byteOffset,e.length)}var i=n(465);t.a=r},function(e,t,n){"use strict";function r(e,t,r,a){var u=!r;r||(r={});for(var s=-1,c=t.length;++s<c;){var l=t[s],f=a?a(r[l],e[l],l,r,e):void 0;void 0===f&&(f=e[l]),u?n.i(o.a)(r,l,f):n.i(i.a)(r,l,f)}return r}var i=n(440),o=n(81);t.a=r},function(e,t,n){"use strict";var r=n(30),i=r.a["__core-js_shared__"];t.a=i},function(e,t,n){"use strict";function r(e){return n.i(i.a)(function(t,r){var i=-1,a=r.length,u=a>1?r[a-1]:void 0,s=a>2?r[2]:void 0;for(u=e.length>3&&"function"==typeof u?(a--,u):void 0,s&&n.i(o.a)(r[0],r[1],s)&&(u=a<3?void 0:u,a=1),t=Object(t);++i<a;){var c=r[i];c&&e(t,c,i,u)}return t})}var i=n(459),o=n(487);t.a=r},function(e,t,n){"use strict";function r(e){return function(t,n,r){for(var i=-1,o=Object(t),a=r(t),u=a.length;u--;){var s=a[e?u:++i];if(!1===n(o[s],s,o))break}return t}}t.a=r},function(e,t,n){"use strict";function r(e,t,r,i,S,x,j){switch(r){case _:if(e.byteLength!=t.byteLength||e.byteOffset!=t.byteOffset)return!1;e=e.buffer,t=t.buffer;case w:return!(e.byteLength!=t.byteLength||!x(new o.a(e),new o.a(t)));case p:case d:case y:return n.i(a.a)(+e,+t);case h:return e.name==t.name&&e.message==t.message;case m:case b:return e==t+"";case v:var k=s.a;case g:var C=i&l;if(k||(k=c.a),e.size!=t.size&&!C)return!1;var P=j.get(e);if(P)return P==t;i|=f,j.set(e,t);var R=n.i(u.a)(k(e),k(t),i,S,x,j);return j.delete(e),R;case O:if(E)return E.call(e)==E.call(t)}return!1}var i=n(79),o=n(171),a=n(61),u=n(180),s=n(500),c=n(509),l=1,f=2,p="[object Boolean]",d="[object Date]",h="[object Error]",v="[object Map]",y="[object Number]",m="[object RegExp]",g="[object Set]",b="[object String]",O="[object Symbol]",w="[object ArrayBuffer]",_="[object DataView]",S=i.a?i.a.prototype:void 0,E=S?S.valueOf:void 0;t.a=r},function(e,t,n){"use strict";function r(e,t,r,a,s,c){var l=r&o,f=n.i(i.a)(e),p=f.length;if(p!=n.i(i.a)(t).length&&!l)return!1;for(var d=p;d--;){var h=f[d];if(!(l?h in t:u.call(t,h)))return!1}var v=c.get(e);if(v&&c.get(t))return v==t;var y=!0;c.set(e,t),c.set(t,e);for(var m=l;++d<p;){h=f[d];var g=e[h],b=t[h];if(a)var O=l?a(b,g,h,t,e,c):a(g,b,h,e,t,c);if(!(void 0===O?g===b||s(g,b,r,a,c):O)){y=!1;break}m||(m="constructor"==h)}if(y&&!m){var w=e.constructor,_=t.constructor;w!=_&&"constructor"in e&&"constructor"in t&&!("function"==typeof w&&w instanceof w&&"function"==typeof _&&_ instanceof _)&&(y=!1)}return c.delete(e),c.delete(t),y}var i=n(474),o=1,a=Object.prototype,u=a.hasOwnProperty;t.a=r},function(e,t,n){"use strict";function r(e){return n.i(i.a)(e,a.a,o.a)}var i=n(443),o=n(477),a=n(131);t.a=r},function(e,t,n){"use strict";function r(e){for(var t=n.i(o.a)(e),r=t.length;r--;){var a=t[r],u=e[a];t[r]=[a,u,n.i(i.a)(u)]}return t}var i=n(183),o=n(131);t.a=r},function(e,t,n){"use strict";function r(e){var t=a.call(e,s),n=e[s];try{e[s]=void 0;var r=!0}catch(e){}var i=u.call(e);return r&&(t?e[s]=n:delete e[s]),i}var i=n(79),o=Object.prototype,a=o.hasOwnProperty,u=o.toString,s=i.a?i.a.toStringTag:void 0;t.a=r},function(e,t,n){"use strict";var r=n(437),i=n(524),o=Object.prototype,a=o.propertyIsEnumerable,u=Object.getOwnPropertySymbols,s=u?function(e){return null==e?[]:(e=Object(e),n.i(r.a)(u(e),function(t){return a.call(e,t)}))}:i.a;t.a=s},function(e,t,n){"use strict";var r=n(430),i=n(118),o=n(432),a=n(433),u=n(435),s=n(56),c=n(187),l=n.i(c.a)(r.a),f=n.i(c.a)(i.a),p=n.i(c.a)(o.a),d=n.i(c.a)(a.a),h=n.i(c.a)(u.a),v=s.a;(r.a&&"[object DataView]"!=v(new r.a(new ArrayBuffer(1)))||i.a&&"[object Map]"!=v(new i.a)||o.a&&"[object Promise]"!=v(o.a.resolve())||a.a&&"[object Set]"!=v(new a.a)||u.a&&"[object WeakMap]"!=v(new u.a))&&(v=function(e){var t=n.i(s.a)(e),r="[object Object]"==t?e.constructor:void 0,i=r?n.i(c.a)(r):"";if(i)switch(i){case l:return"[object DataView]";case f:return"[object Map]";case p:return"[object Promise]";case d:return"[object Set]";case h:return"[object WeakMap]"}return t}),t.a=v},function(e,t,n){"use strict";function r(e,t){return null==e?void 0:e[t]}t.a=r},function(e,t,n){"use strict";function r(e,t,r){t=n.i(i.a)(t,e);for(var l=-1,f=t.length,p=!1;++l<f;){var d=n.i(c.a)(t[l]);if(!(p=null!=e&&r(e,d)))break;e=e[d]}return p||++l!=f?p:!!(f=null==e?0:e.length)&&n.i(s.a)(f)&&n.i(u.a)(d,f)&&(n.i(a.a)(e)||n.i(o.a)(e))}var i=n(177),o=n(126),a=n(31),u=n(122),s=n(129),c=n(60);t.a=r},function(e,t,n){"use strict";function r(){this.__data__=i.a?n.i(i.a)(null):{},this.size=0}var i=n(83);t.a=r},function(e,t,n){"use strict";function r(e){var t=this.has(e)&&delete this.__data__[e];return this.size-=t?1:0,t}t.a=r},function(e,t,n){"use strict";function r(e){var t=this.__data__;if(i.a){var n=t[e];return n===o?void 0:n}return u.call(t,e)?t[e]:void 0}var i=n(83),o="__lodash_hash_undefined__",a=Object.prototype,u=a.hasOwnProperty;t.a=r},function(e,t,n){"use strict";function r(e){var t=this.__data__;return i.a?void 0!==t[e]:a.call(t,e)}var i=n(83),o=Object.prototype,a=o.hasOwnProperty;t.a=r},function(e,t,n){"use strict";function r(e,t){var n=this.__data__;return this.size+=this.has(e)?0:1,n[e]=i.a&&void 0===t?o:t,this}var i=n(83),o="__lodash_hash_undefined__";t.a=r},function(e,t,n){"use strict";function r(e){return"function"!=typeof e.constructor||n.i(a.a)(e)?{}:n.i(i.a)(n.i(o.a)(e))}var i=n(441),o=n(182),a=n(124);t.a=r},function(e,t,n){"use strict";function r(e,t,r){if(!n.i(u.a)(r))return!1;var s=typeof t;return!!("number"==s?n.i(o.a)(r)&&n.i(a.a)(t,r.length):"string"==s&&t in r)&&n.i(i.a)(r[t],e)}var i=n(61),o=n(84),a=n(122),u=n(36);t.a=r},function(e,t,n){"use strict";function r(e){var t=typeof e;return"string"==t||"number"==t||"symbol"==t||"boolean"==t?"__proto__"!==e:null===e}t.a=r},function(e,t,n){"use strict";function r(e){return!!o&&o in e}var i=n(469),o=function(){var e=/[^.]+$/.exec(i.a&&i.a.keys&&i.a.keys.IE_PROTO||"");return e?"Symbol(src)_1."+e:""}();t.a=r},function(e,t,n){"use strict";function r(){this.__data__=[],this.size=0}t.a=r},function(e,t,n){"use strict";function r(e){var t=this.__data__,r=n.i(i.a)(t,e);return!(r<0)&&(r==t.length-1?t.pop():a.call(t,r,1),--this.size,!0)}var i=n(80),o=Array.prototype,a=o.splice;t.a=r},function(e,t,n){"use strict";function r(e){var t=this.__data__,r=n.i(i.a)(t,e);return r<0?void 0:t[r][1]}var i=n(80);t.a=r},function(e,t,n){"use strict";function r(e){return n.i(i.a)(this.__data__,e)>-1}var i=n(80);t.a=r},function(e,t,n){"use strict";function r(e,t){var r=this.__data__,o=n.i(i.a)(r,e);return o<0?(++this.size,r.push([e,t])):r[o][1]=t,this}var i=n(80);t.a=r},function(e,t,n){"use strict";function r(){this.size=0,this.__data__={hash:new i.a,map:new(a.a||o.a),string:new i.a}}var i=n(431),o=n(78),a=n(118);t.a=r},function(e,t,n){"use strict";function r(e){var t=n.i(i.a)(this,e).delete(e);return this.size-=t?1:0,t}var i=n(82);t.a=r},function(e,t,n){"use strict";function r(e){return n.i(i.a)(this,e).get(e)}var i=n(82);t.a=r},function(e,t,n){"use strict";function r(e){return n.i(i.a)(this,e).has(e)}var i=n(82);t.a=r},function(e,t,n){"use strict";function r(e,t){var r=n.i(i.a)(this,e),o=r.size;return r.set(e,t),this.size+=r.size==o?0:1,this}var i=n(82);t.a=r},function(e,t,n){"use strict";function r(e){var t=-1,n=Array(e.size);return e.forEach(function(e,r){n[++t]=[r,e]}),n}t.a=r},function(e,t,n){"use strict";function r(e){var t=n.i(i.a)(e,function(e){return r.size===o&&r.clear(),e}),r=t.cache;return t}var i=n(521),o=500;t.a=r},function(e,t,n){"use strict";var r=n(185),i=n.i(r.a)(Object.keys,Object);t.a=i},function(e,t,n){"use strict";function r(e){var t=[];if(null!=e)for(var n in Object(e))t.push(n);return t}t.a=r},function(e,t,n){"use strict";(function(e){var r=n(181),i="object"==typeof exports&&exports&&!exports.nodeType&&exports,o=i&&"object"==typeof e&&e&&!e.nodeType&&e,a=o&&o.exports===i,u=a&&r.a.process,s=function(){try{return u&&u.binding&&u.binding("util")}catch(e){}}();t.a=s}).call(t,n(90)(e))},function(e,t,n){"use strict";function r(e){return o.call(e)}var i=Object.prototype,o=i.toString;t.a=r},function(e,t,n){"use strict";function r(e,t,r){return t=o(void 0===t?e.length-1:t,0),function(){for(var a=arguments,u=-1,s=o(a.length-t,0),c=Array(s);++u<s;)c[u]=a[t+u];u=-1;for(var l=Array(t+1);++u<t;)l[u]=a[u];return l[t]=r(c),n.i(i.a)(e,this,l)}}var i=n(436),o=Math.max;t.a=r},function(e,t,n){"use strict";function r(e){return this.__data__.set(e,i),this}var i="__lodash_hash_undefined__";t.a=r},function(e,t,n){"use strict";function r(e){return this.__data__.has(e)}t.a=r},function(e,t,n){"use strict";function r(e){var t=-1,n=Array(e.size);return e.forEach(function(e){n[++t]=e}),n}t.a=r},function(e,t,n){"use strict";var r=n(460),i=n(511),o=n.i(i.a)(r.a);t.a=o},function(e,t,n){"use strict";function r(e){var t=0,n=0;return function(){var r=a(),u=o-(r-n);if(n=r,u>0){if(++t>=i)return arguments[0]}else t=0;return e.apply(void 0,arguments)}}var i=800,o=16,a=Date.now;t.a=r},function(e,t,n){"use strict";function r(){this.__data__=new i.a,this.size=0}var i=n(78);t.a=r},function(e,t,n){"use strict";function r(e){var t=this.__data__,n=t.delete(e);return this.size=t.size,n}t.a=r},function(e,t,n){"use strict";function r(e){return this.__data__.get(e)}t.a=r},function(e,t,n){"use strict";function r(e){return this.__data__.has(e)}t.a=r},function(e,t,n){"use strict";function r(e,t){var n=this.__data__;if(n instanceof i.a){var r=n.__data__;if(!o.a||r.length<u-1)return r.push([e,t]),this.size=++n.size,this;n=this.__data__=new a.a(r)}return n.set(e,t),this.size=n.size,this}var i=n(78),o=n(118),a=n(119),u=200;t.a=r},function(e,t,n){"use strict";function r(e){return function(){return e}}t.a=r},function(e,t,n){"use strict";function r(e,t,r){var o=null==e?void 0:n.i(i.a)(e,t);return void 0===o?r:o}var i=n(176);t.a=r},function(e,t,n){"use strict";function r(e,t){return null!=e&&n.i(o.a)(e,t,i.a)}var i=n(444),o=n(480);t.a=r},function(e,t,n){"use strict";function r(e){return n.i(o.a)(e)&&n.i(i.a)(e)}var i=n(84),o=n(49);t.a=r},function(e,t,n){"use strict";function r(e,t){if("function"!=typeof e||null!=t&&"function"!=typeof t)throw new TypeError(o);var n=function(){var r=arguments,i=t?t.apply(this,r):r[0],o=n.cache;if(o.has(i))return o.get(i);var a=e.apply(this,r);return n.cache=o.set(i,a)||o,a};return n.cache=new(r.Cache||i.a),n}var i=n(119),o="Expected a function";r.Cache=i.a,t.a=r},function(e,t,n){"use strict";var r=n(455),i=n(470),o=n.i(i.a)(function(e,t,i){n.i(r.a)(e,t,i)});t.a=o},function(e,t,n){"use strict";function r(e){return n.i(a.a)(e)?n.i(i.a)(n.i(u.a)(e)):n.i(o.a)(e)}var i=n(457),o=n(458),a=n(123),u=n(60);t.a=r},function(e,t,n){"use strict";function r(){return[]}t.a=r},function(e,t,n){"use strict";function r(){return!1}t.a=r},function(e,t,n){"use strict";function r(e){return n.i(i.a)(e,n.i(o.a)(e))}var i=n(468),o=n(189);t.a=r},function(e,t,n){"use strict";var r=n(77),i=n(425),o=n(528);e.exports=function(){function e(e,t,n,r,a,u){u!==o&&i(!1,"Calling PropTypes validators directly is not supported by the `prop-types` package. Use PropTypes.checkPropTypes() to call them. Read more at http://fb.me/use-check-prop-types")}function t(){return e}e.isRequired=e;var n={array:e,bool:e,func:e,number:e,object:e,string:e,symbol:e,any:e,arrayOf:t,element:e,instanceOf:t,node:e,objectOf:t,oneOf:t,oneOfType:t,shape:t,exact:t};return n.checkPropTypes=r,n.PropTypes=n,n}},function(e,t,n){"use strict";e.exports="SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED"},function(e,t){e.exports="import React from 'react'\nimport { Field, reduxForm } from 'redux-form'\nimport validate from './validate'\nimport asyncValidate from './asyncValidate'\n\nconst renderField = ({\n input,\n label,\n type,\n meta: { asyncValidating, touched, error }\n}) => (\n <div>\n <label>{label}</label>\n <div className={asyncValidating ? 'async-validating' : ''}>\n <input {...input} type={type} placeholder={label} />\n {touched && error && <span>{error}</span>}\n </div>\n </div>\n)\n\nconst AsyncValidationForm = props => {\n const { handleSubmit, pristine, reset, submitting } = props\n return (\n <form onSubmit={handleSubmit}>\n <Field\n name=\"username\"\n type=\"text\"\n component={renderField}\n label=\"Username\"\n />\n <Field\n name=\"password\"\n type=\"password\"\n component={renderField}\n label=\"Password\"\n />\n <div>\n <button type=\"submit\" disabled={submitting}>\n Sign Up\n </button>\n <button type=\"button\" disabled={pristine || submitting} onClick={reset}>\n Clear Values\n </button>\n </div>\n </form>\n )\n}\n\nexport default reduxForm({\n form: 'asyncValidation', // a unique identifier for this form\n validate,\n asyncValidate,\n asyncBlurFields: ['username']\n})(AsyncValidationForm)\n"},function(e,t){e.exports="const sleep = ms => new Promise(resolve => setTimeout(resolve, ms))\n\nconst asyncValidate = (values /*, dispatch */) => {\n return sleep(1000).then(() => {\n // simulate server latency\n if (['john', 'paul', 'george', 'ringo'].includes(values.username)) {\n throw { username: 'That username is taken' }\n }\n })\n}\n\nexport default asyncValidate\n"},function(e,t){e.exports="const validate = values => {\n const errors = {}\n if (!values.username) {\n errors.username = 'Required'\n }\n if (!values.password) {\n errors.password = 'Required'\n }\n return errors\n}\n\nexport default validate\n"},function(e,t,n){"use strict";function r(e){for(var t=arguments.length-1,n="Minified React error #"+e+"; visit http://facebook.github.io/react/docs/error-decoder.html?invariant="+e,r=0;r<t;r++)n+="&args[]="+encodeURIComponent(arguments[r+1]);throw t=Error(n+" for the full message or use the non-minified dev environment for full errors and additional helpful warnings."),t.name="Invariant Violation",t.framesToPop=1,t}function i(e,t){return(e&t)===t}function o(e,t){if(Pn.hasOwnProperty(e)||2<e.length&&("o"===e[0]||"O"===e[0])&&("n"===e[1]||"N"===e[1]))return!1;if(null===t)return!0;switch(typeof t){case"boolean":return Pn.hasOwnProperty(e)?e=!0:(t=a(e))?e=t.hasBooleanValue||t.hasStringBooleanValue||t.hasOverloadedBooleanValue:(e=e.toLowerCase().slice(0,5),e="data-"===e||"aria-"===e),e;case"undefined":case"number":case"string":case"object":return!0;default:return!1}}function a(e){return An.hasOwnProperty(e)?An[e]:null}function u(e){return e[1].toUpperCase()}function s(e,t,n,r,i,o,a,u,s){Bn._hasCaughtError=!1,Bn._caughtError=null;var c=Array.prototype.slice.call(arguments,3);try{t.apply(n,c)}catch(e){Bn._caughtError=e,Bn._hasCaughtError=!0}}function c(){if(Bn._hasRethrowError){var e=Bn._rethrowError;throw Bn._rethrowError=null,Bn._hasRethrowError=!1,e}}function l(){if(Hn)for(var e in Yn){var t=Yn[e],n=Hn.indexOf(e);if(-1<n||r("96",e),!$n[n]){t.extractEvents||r("97",e),$n[n]=t,n=t.eventTypes;for(var i in n){var o=void 0,a=n[i],u=t,s=i;Gn.hasOwnProperty(s)&&r("99",s),Gn[s]=a;var c=a.phasedRegistrationNames;if(c){for(o in c)c.hasOwnProperty(o)&&f(c[o],u,s);o=!0}else a.registrationName?(f(a.registrationName,u,s),o=!0):o=!1;o||r("98",i,e)}}}}function f(e,t,n){Kn[e]&&r("100",e),Kn[e]=t,Jn[e]=t.eventTypes[n].dependencies}function p(e){Hn&&r("101"),Hn=Array.prototype.slice.call(e),l()}function d(e){var t,n=!1;for(t in e)if(e.hasOwnProperty(t)){var i=e[t];Yn.hasOwnProperty(t)&&Yn[t]===i||(Yn[t]&&r("102",t),Yn[t]=i,n=!0)}n&&l()}function h(e,t,n,r){t=e.type||"unknown-event",e.currentTarget=er(r),Bn.invokeGuardedCallbackAndCatchFirstError(t,n,void 0,e),e.currentTarget=null}function v(e,t){return null==t&&r("30"),null==e?t:Array.isArray(e)?Array.isArray(t)?(e.push.apply(e,t),e):(e.push(t),e):Array.isArray(t)?[e].concat(t):[e,t]}function y(e,t,n){Array.isArray(e)?e.forEach(t,n):e&&t.call(n,e)}function m(e,t){if(e){var n=e._dispatchListeners,r=e._dispatchInstances;if(Array.isArray(n))for(var i=0;i<n.length&&!e.isPropagationStopped();i++)h(e,t,n[i],r[i]);else n&&h(e,t,n,r);e._dispatchListeners=null,e._dispatchInstances=null,e.isPersistent()||e.constructor.release(e)}}function g(e){return m(e,!0)}function b(e){return m(e,!1)}function O(e,t){var n=e.stateNode;if(!n)return null;var i=Zn(n);if(!i)return null;n=i[t];e:switch(t){case"onClick":case"onClickCapture":case"onDoubleClick":case"onDoubleClickCapture":case"onMouseDown":case"onMouseDownCapture":case"onMouseMove":case"onMouseMoveCapture":case"onMouseUp":case"onMouseUpCapture":(i=!i.disabled)||(e=e.type,i=!("button"===e||"input"===e||"select"===e||"textarea"===e)),e=!i;break e;default:e=!1}return e?null:(n&&"function"!=typeof n&&r("231",t,typeof n),n)}function w(e,t,n,r){for(var i,o=0;o<$n.length;o++){var a=$n[o];a&&(a=a.extractEvents(e,t,n,r))&&(i=v(i,a))}return i}function _(e){e&&(tr=v(tr,e))}function S(e){var t=tr;tr=null,t&&(e?y(t,g):y(t,b),tr&&r("95"),Bn.rethrowCaughtError())}function E(e){if(e[or])return e[or];for(var t=[];!e[or];){if(t.push(e),!e.parentNode)return null;e=e.parentNode}var n=void 0,r=e[or];if(5===r.tag||6===r.tag)return r;for(;e&&(r=e[or]);e=t.pop())n=r;return n}function x(e){if(5===e.tag||6===e.tag)return e.stateNode;r("33")}function j(e){return e[ar]||null}function k(e){do{e=e.return}while(e&&5!==e.tag);return e||null}function C(e,t,n){for(var r=[];e;)r.push(e),e=k(e);for(e=r.length;0<e--;)t(r[e],"captured",n);for(e=0;e<r.length;e++)t(r[e],"bubbled",n)}function P(e,t,n){(t=O(e,n.dispatchConfig.phasedRegistrationNames[t]))&&(n._dispatchListeners=v(n._dispatchListeners,t),n._dispatchInstances=v(n._dispatchInstances,e))}function R(e){e&&e.dispatchConfig.phasedRegistrationNames&&C(e._targetInst,P,e)}function A(e){if(e&&e.dispatchConfig.phasedRegistrationNames){var t=e._targetInst;t=t?k(t):null,C(t,P,e)}}function T(e,t,n){e&&n&&n.dispatchConfig.registrationName&&(t=O(e,n.dispatchConfig.registrationName))&&(n._dispatchListeners=v(n._dispatchListeners,t),n._dispatchInstances=v(n._dispatchInstances,e))}function F(e){e&&e.dispatchConfig.registrationName&&T(e._targetInst,null,e)}function I(e){y(e,R)}function N(e,t,n,r){if(n&&r)e:{for(var i=n,o=r,a=0,u=i;u;u=k(u))a++;u=0;for(var s=o;s;s=k(s))u++;for(;0<a-u;)i=k(i),a--;for(;0<u-a;)o=k(o),u--;for(;a--;){if(i===o||i===o.alternate)break e;i=k(i),o=k(o)}i=null}else i=null;for(o=i,i=[];n&&n!==o&&(null===(a=n.alternate)||a!==o);)i.push(n),n=k(n);for(n=[];r&&r!==o&&(null===(a=r.alternate)||a!==o);)n.push(r),r=k(r);for(r=0;r<i.length;r++)T(i[r],"bubbled",e);for(e=n.length;0<e--;)T(n[e],"captured",t)}function M(){return!cr&&On.canUseDOM&&(cr="textContent"in document.documentElement?"textContent":"innerText"),cr}function V(){if(lr._fallbackText)return lr._fallbackText;var e,t,n=lr._startText,r=n.length,i=U(),o=i.length;for(e=0;e<r&&n[e]===i[e];e++);var a=r-e;for(t=1;t<=a&&n[r-t]===i[o-t];t++);return lr._fallbackText=i.slice(e,1<t?1-t:void 0),lr._fallbackText}function U(){return"value"in lr._root?lr._root.value:lr._root[M()]}function D(e,t,n,r){this.dispatchConfig=e,this._targetInst=t,this.nativeEvent=n,e=this.constructor.Interface;for(var i in e)e.hasOwnProperty(i)&&((t=e[i])?this[i]=t(n):"target"===i?this.target=r:this[i]=n[i]);return this.isDefaultPrevented=(null!=n.defaultPrevented?n.defaultPrevented:!1===n.returnValue)?_n.thatReturnsTrue:_n.thatReturnsFalse,this.isPropagationStopped=_n.thatReturnsFalse,this}function L(e,t,n,r){if(this.eventPool.length){var i=this.eventPool.pop();return this.call(i,e,t,n,r),i}return new this(e,t,n,r)}function q(e){e instanceof this||r("223"),e.destructor(),10>this.eventPool.length&&this.eventPool.push(e)}function W(e){e.eventPool=[],e.getPooled=L,e.release=q}function z(e,t,n,r){return D.call(this,e,t,n,r)}function B(e,t,n,r){return D.call(this,e,t,n,r)}function H(e,t){switch(e){case"topKeyUp":return-1!==dr.indexOf(t.keyCode);case"topKeyDown":return 229!==t.keyCode;case"topKeyPress":case"topMouseDown":case"topBlur":return!0;default:return!1}}function Y(e){return e=e.detail,"object"==typeof e&&"data"in e?e.data:null}function $(e,t){switch(e){case"topCompositionEnd":return Y(t);case"topKeyPress":return 32!==t.which?null:(Sr=!0,wr);case"topTextInput":return e=t.data,e===wr&&Sr?null:e;default:return null}}function G(e,t){if(Er)return"topCompositionEnd"===e||!hr&&H(e,t)?(e=V(),lr._root=null,lr._startText=null,lr._fallbackText=null,Er=!1,e):null;switch(e){case"topPaste":return null;case"topKeyPress":if(!(t.ctrlKey||t.altKey||t.metaKey)||t.ctrlKey&&t.altKey){if(t.char&&1<t.char.length)return t.char;if(t.which)return String.fromCharCode(t.which)}return null;case"topCompositionEnd":return Or?null:t.data;default:return null}}function K(e){if(e=Xn(e)){jr&&"function"==typeof jr.restoreControlledState||r("194");var t=Zn(e.stateNode);jr.restoreControlledState(e.stateNode,e.type,t)}}function J(e){kr?Cr?Cr.push(e):Cr=[e]:kr=e}function Q(){if(kr){var e=kr,t=Cr;if(Cr=kr=null,K(e),t)for(e=0;e<t.length;e++)K(t[e])}}function Z(e,t){return e(t)}function X(e,t){if(Ar)return Z(e,t);Ar=!0;try{return Z(e,t)}finally{Ar=!1,Q()}}function ee(e){var t=e&&e.nodeName&&e.nodeName.toLowerCase();return"input"===t?!!Tr[e.type]:"textarea"===t}function te(e){return e=e.target||e.srcElement||window,e.correspondingUseElement&&(e=e.correspondingUseElement),3===e.nodeType?e.parentNode:e}function ne(e,t){if(!On.canUseDOM||t&&!("addEventListener"in document))return!1;t="on"+e;var n=t in document;return n||(n=document.createElement("div"),n.setAttribute(t,"return;"),n="function"==typeof n[t]),!n&&gr&&"wheel"===e&&(n=document.implementation.hasFeature("Events.wheel","3.0")),n}function re(e){var t=e.type;return(e=e.nodeName)&&"input"===e.toLowerCase()&&("checkbox"===t||"radio"===t)}function ie(e){var t=re(e)?"checked":"value",n=Object.getOwnPropertyDescriptor(e.constructor.prototype,t),r=""+e[t];if(!e.hasOwnProperty(t)&&"function"==typeof n.get&&"function"==typeof n.set)return Object.defineProperty(e,t,{enumerable:n.enumerable,configurable:!0,get:function(){return n.get.call(this)},set:function(e){r=""+e,n.set.call(this,e)}}),{getValue:function(){return r},setValue:function(e){r=""+e},stopTracking:function(){e._valueTracker=null,delete e[t]}}}function oe(e){e._valueTracker||(e._valueTracker=ie(e))}function ae(e){if(!e)return!1;var t=e._valueTracker;if(!t)return!0;var n=t.getValue(),r="";return e&&(r=re(e)?e.checked?"true":"false":e.value),(e=r)!==n&&(t.setValue(e),!0)}function ue(e,t,n){return e=D.getPooled(Fr.change,e,t,n),e.type="change",J(n),I(e),e}function se(e){_(e),S(!1)}function ce(e){if(ae(x(e)))return e}function le(e,t){if("topChange"===e)return t}function fe(){Ir&&(Ir.detachEvent("onpropertychange",pe),Nr=Ir=null)}function pe(e){"value"===e.propertyName&&ce(Nr)&&(e=ue(Nr,e,te(e)),X(se,e))}function de(e,t,n){"topFocus"===e?(fe(),Ir=t,Nr=n,Ir.attachEvent("onpropertychange",pe)):"topBlur"===e&&fe()}function he(e){if("topSelectionChange"===e||"topKeyUp"===e||"topKeyDown"===e)return ce(Nr)}function ve(e,t){if("topClick"===e)return ce(t)}function ye(e,t){if("topInput"===e||"topChange"===e)return ce(t)}function me(e,t,n,r){return D.call(this,e,t,n,r)}function ge(e){var t=this.nativeEvent;return t.getModifierState?t.getModifierState(e):!!(e=Ur[e])&&!!t[e]}function be(){return ge}function Oe(e,t,n,r){return D.call(this,e,t,n,r)}function we(e){return e=e.type,"string"==typeof e?e:"function"==typeof e?e.displayName||e.name:null}function _e(e){var t=e;if(e.alternate)for(;t.return;)t=t.return;else{if(0!=(2&t.effectTag))return 1;for(;t.return;)if(t=t.return,0!=(2&t.effectTag))return 1}return 3===t.tag?2:3}function Se(e){return!!(e=e._reactInternalFiber)&&2===_e(e)}function Ee(e){2!==_e(e)&&r("188")}function xe(e){var t=e.alternate;if(!t)return t=_e(e),3===t&&r("188"),1===t?null:e;for(var n=e,i=t;;){var o=n.return,a=o?o.alternate:null;if(!o||!a)break;if(o.child===a.child){for(var u=o.child;u;){if(u===n)return Ee(o),e;if(u===i)return Ee(o),t;u=u.sibling}r("188")}if(n.return!==i.return)n=o,i=a;else{u=!1;for(var s=o.child;s;){if(s===n){u=!0,n=o,i=a;break}if(s===i){u=!0,i=o,n=a;break}s=s.sibling}if(!u){for(s=a.child;s;){if(s===n){u=!0,n=a,i=o;break}if(s===i){u=!0,i=a,n=o;break}s=s.sibling}u||r("189")}}n.alternate!==i&&r("190")}return 3!==n.tag&&r("188"),n.stateNode.current===n?e:t}function je(e){if(!(e=xe(e)))return null;for(var t=e;;){if(5===t.tag||6===t.tag)return t;if(t.child)t.child.return=t,t=t.child;else{if(t===e)break;for(;!t.sibling;){if(!t.return||t.return===e)return null;t=t.return}t.sibling.return=t.return,t=t.sibling}}return null}function ke(e){if(!(e=xe(e)))return null;for(var t=e;;){if(5===t.tag||6===t.tag)return t;if(t.child&&4!==t.tag)t.child.return=t,t=t.child;else{if(t===e)break;for(;!t.sibling;){if(!t.return||t.return===e)return null;t=t.return}t.sibling.return=t.return,t=t.sibling}}return null}function Ce(e){var t=e.targetInst;do{if(!t){e.ancestors.push(t);break}var n;for(n=t;n.return;)n=n.return;if(!(n=3!==n.tag?null:n.stateNode.containerInfo))break;e.ancestors.push(t),t=E(n)}while(t);for(n=0;n<e.ancestors.length;n++)t=e.ancestors[n],Br(e.topLevelType,t,e.nativeEvent,te(e.nativeEvent))}function Pe(e){zr=!!e}function Re(e,t,n){return n?Sn.listen(n,t,Te.bind(null,e)):null}function Ae(e,t,n){return n?Sn.capture(n,t,Te.bind(null,e)):null}function Te(e,t){if(zr){var n=te(t);if(n=E(n),null===n||"number"!=typeof n.tag||2===_e(n)||(n=null),Wr.length){var r=Wr.pop();r.topLevelType=e,r.nativeEvent=t,r.targetInst=n,e=r}else e={topLevelType:e,nativeEvent:t,targetInst:n,ancestors:[]};try{X(Ce,e)}finally{e.topLevelType=null,e.nativeEvent=null,e.targetInst=null,e.ancestors.length=0,10>Wr.length&&Wr.push(e)}}}function Fe(e,t){var n={};return n[e.toLowerCase()]=t.toLowerCase(),n["Webkit"+e]="webkit"+t,n["Moz"+e]="moz"+t,n["ms"+e]="MS"+t,n["O"+e]="o"+t.toLowerCase(),n}function Ie(e){if($r[e])return $r[e];if(!Yr[e])return e;var t,n=Yr[e];for(t in n)if(n.hasOwnProperty(t)&&t in Gr)return $r[e]=n[t];return""}function Ne(e){return Object.prototype.hasOwnProperty.call(e,Zr)||(e[Zr]=Qr++,Jr[e[Zr]]={}),Jr[e[Zr]]}function Me(e){for(;e&&e.firstChild;)e=e.firstChild;return e}function Ve(e,t){var n=Me(e);e=0;for(var r;n;){if(3===n.nodeType){if(r=e+n.textContent.length,e<=t&&r>=t)return{node:n,offset:t-e};e=r}e:{for(;n;){if(n.nextSibling){n=n.nextSibling;break e}n=n.parentNode}n=void 0}n=Me(n)}}function Ue(e){var t=e&&e.nodeName&&e.nodeName.toLowerCase();return t&&("input"===t&&"text"===e.type||"textarea"===t||"true"===e.contentEditable)}function De(e,t){if(ii||null==ti||ti!==En())return null;var n=ti;return"selectionStart"in n&&Ue(n)?n={start:n.selectionStart,end:n.selectionEnd}:window.getSelection?(n=window.getSelection(),n={anchorNode:n.anchorNode,anchorOffset:n.anchorOffset,focusNode:n.focusNode,focusOffset:n.focusOffset}):n=void 0,ri&&xn(ri,n)?null:(ri=n,e=D.getPooled(ei.select,ni,e,t),e.type="select",e.target=ti,I(e),e)}function Le(e,t,n,r){return D.call(this,e,t,n,r)}function qe(e,t,n,r){return D.call(this,e,t,n,r)}function We(e,t,n,r){return D.call(this,e,t,n,r)}function ze(e){var t=e.keyCode;return"charCode"in e?0===(e=e.charCode)&&13===t&&(e=13):e=t,32<=e||13===e?e:0}function Be(e,t,n,r){return D.call(this,e,t,n,r)}function He(e,t,n,r){return D.call(this,e,t,n,r)}function Ye(e,t,n,r){return D.call(this,e,t,n,r)}function $e(e,t,n,r){return D.call(this,e,t,n,r)}function Ge(e,t,n,r){return D.call(this,e,t,n,r)}function Ke(e){0>pi||(e.current=fi[pi],fi[pi]=null,pi--)}function Je(e,t){pi++,fi[pi]=e.current,e.current=t}function Qe(e){return Xe(e)?vi:di.current}function Ze(e,t){var n=e.type.contextTypes;if(!n)return Cn;var r=e.stateNode;if(r&&r.__reactInternalMemoizedUnmaskedChildContext===t)return r.__reactInternalMemoizedMaskedChildContext;var i,o={};for(i in n)o[i]=t[i];return r&&(e=e.stateNode,e.__reactInternalMemoizedUnmaskedChildContext=t,e.__reactInternalMemoizedMaskedChildContext=o),o}function Xe(e){return 2===e.tag&&null!=e.type.childContextTypes}function et(e){Xe(e)&&(Ke(hi,e),Ke(di,e))}function tt(e,t,n){null!=di.cursor&&r("168"),Je(di,t,e),Je(hi,n,e)}function nt(e,t){var n=e.stateNode,i=e.type.childContextTypes;if("function"!=typeof n.getChildContext)return t;n=n.getChildContext();for(var o in n)o in i||r("108",we(e)||"Unknown",o);return wn({},t,n)}function rt(e){if(!Xe(e))return!1;var t=e.stateNode;return t=t&&t.__reactInternalMemoizedMergedChildContext||Cn,vi=di.current,Je(di,t,e),Je(hi,hi.current,e),!0}function it(e,t){var n=e.stateNode;if(n||r("169"),t){var i=nt(e,vi);n.__reactInternalMemoizedMergedChildContext=i,Ke(hi,e),Ke(di,e),Je(di,i,e)}else Ke(hi,e);Je(hi,t,e)}function ot(e,t,n){this.tag=e,this.key=t,this.stateNode=this.type=null,this.sibling=this.child=this.return=null,this.index=0,this.memoizedState=this.updateQueue=this.memoizedProps=this.pendingProps=this.ref=null,this.internalContextTag=n,this.effectTag=0,this.lastEffect=this.firstEffect=this.nextEffect=null,this.expirationTime=0,this.alternate=null}function at(e,t,n){var r=e.alternate;return null===r?(r=new ot(e.tag,e.key,e.internalContextTag),r.type=e.type,r.stateNode=e.stateNode,r.alternate=e,e.alternate=r):(r.effectTag=0,r.nextEffect=null,r.firstEffect=null,r.lastEffect=null),r.expirationTime=n,r.pendingProps=t,r.child=e.child,r.memoizedProps=e.memoizedProps,r.memoizedState=e.memoizedState,r.updateQueue=e.updateQueue,r.sibling=e.sibling,r.index=e.index,r.ref=e.ref,r}function ut(e,t,n){var i=void 0,o=e.type,a=e.key;return"function"==typeof o?(i=o.prototype&&o.prototype.isReactComponent?new ot(2,a,t):new ot(0,a,t),i.type=o,i.pendingProps=e.props):"string"==typeof o?(i=new ot(5,a,t),i.type=o,i.pendingProps=e.props):"object"==typeof o&&null!==o&&"number"==typeof o.tag?(i=o,i.pendingProps=e.props):r("130",null==o?o:typeof o,""),i.expirationTime=n,i}function st(e,t,n,r){return t=new ot(10,r,t),t.pendingProps=e,t.expirationTime=n,t}function ct(e,t,n){return t=new ot(6,null,t),t.pendingProps=e,t.expirationTime=n,t}function lt(e,t,n){return t=new ot(7,e.key,t),t.type=e.handler,t.pendingProps=e,t.expirationTime=n,t}function ft(e,t,n){return e=new ot(9,null,t),e.expirationTime=n,e}function pt(e,t,n){return t=new ot(4,e.key,t),t.pendingProps=e.children||[],t.expirationTime=n,t.stateNode={containerInfo:e.containerInfo,pendingChildren:null,implementation:e.implementation},t}function dt(e){return function(t){try{return e(t)}catch(e){}}}function ht(e){if("undefined"==typeof __REACT_DEVTOOLS_GLOBAL_HOOK__)return!1;var t=__REACT_DEVTOOLS_GLOBAL_HOOK__;if(t.isDisabled||!t.supportsFiber)return!0;try{var n=t.inject(e);yi=dt(function(e){return t.onCommitFiberRoot(n,e)}),mi=dt(function(e){return t.onCommitFiberUnmount(n,e)})}catch(e){}return!0}function vt(e){"function"==typeof yi&&yi(e)}function yt(e){"function"==typeof mi&&mi(e)}function mt(e){return{baseState:e,expirationTime:0,first:null,last:null,callbackList:null,hasForceUpdate:!1,isInitialized:!1}}function gt(e,t){null===e.last?e.first=e.last=t:(e.last.next=t,e.last=t),(0===e.expirationTime||e.expirationTime>t.expirationTime)&&(e.expirationTime=t.expirationTime)}function bt(e,t){var n=e.alternate,r=e.updateQueue;null===r&&(r=e.updateQueue=mt(null)),null!==n?null===(e=n.updateQueue)&&(e=n.updateQueue=mt(null)):e=null,e=e!==r?e:null,null===e?gt(r,t):null===r.last||null===e.last?(gt(r,t),gt(e,t)):(gt(r,t),e.last=t)}function Ot(e,t,n,r){return e=e.partialState,"function"==typeof e?e.call(t,n,r):e}function wt(e,t,n,r,i,o){null!==e&&e.updateQueue===n&&(n=t.updateQueue={baseState:n.baseState,expirationTime:n.expirationTime,first:n.first,last:n.last,isInitialized:n.isInitialized,callbackList:null,hasForceUpdate:!1}),n.expirationTime=0,n.isInitialized?e=n.baseState:(e=n.baseState=t.memoizedState,n.isInitialized=!0);for(var a=!0,u=n.first,s=!1;null!==u;){var c=u.expirationTime;if(c>o){var l=n.expirationTime;(0===l||l>c)&&(n.expirationTime=c),s||(s=!0,n.baseState=e)}else s||(n.first=u.next,null===n.first&&(n.last=null)),u.isReplace?(e=Ot(u,r,e,i),a=!0):(c=Ot(u,r,e,i))&&(e=a?wn({},e,c):wn(e,c),a=!1),u.isForced&&(n.hasForceUpdate=!0),null!==u.callback&&(c=n.callbackList,null===c&&(c=n.callbackList=[]),c.push(u));u=u.next}return null!==n.callbackList?t.effectTag|=32:null!==n.first||n.hasForceUpdate||(t.updateQueue=null),s||(n.baseState=e),e}function _t(e,t){var n=e.callbackList;if(null!==n)for(e.callbackList=null,e=0;e<n.length;e++){var i=n[e],o=i.callback;i.callback=null,"function"!=typeof o&&r("191",o),o.call(t)}}function St(e,t,n,i){function o(e,t){t.updater=a,e.stateNode=t,t._reactInternalFiber=e}var a={isMounted:Se,enqueueSetState:function(n,r,i){n=n._reactInternalFiber,i=void 0===i?null:i;var o=t(n);bt(n,{expirationTime:o,partialState:r,callback:i,isReplace:!1,isForced:!1,nextCallback:null,next:null}),e(n,o)},enqueueReplaceState:function(n,r,i){n=n._reactInternalFiber,i=void 0===i?null:i;var o=t(n);bt(n,{expirationTime:o,partialState:r,callback:i,isReplace:!0,isForced:!1,nextCallback:null,next:null}),e(n,o)},enqueueForceUpdate:function(n,r){n=n._reactInternalFiber,r=void 0===r?null:r;var i=t(n);bt(n,{expirationTime:i,partialState:null,callback:r,isReplace:!1,isForced:!0,nextCallback:null,next:null}),e(n,i)}};return{adoptClassInstance:o,constructClassInstance:function(e,t){var n=e.type,r=Qe(e),i=2===e.tag&&null!=e.type.contextTypes,a=i?Ze(e,r):Cn;return t=new n(t,a),o(e,t),i&&(e=e.stateNode,e.__reactInternalMemoizedUnmaskedChildContext=r,e.__reactInternalMemoizedMaskedChildContext=a),t},mountClassInstance:function(e,t){var n=e.alternate,i=e.stateNode,o=i.state||null,u=e.pendingProps;u||r("158");var s=Qe(e);i.props=u,i.state=e.memoizedState=o,i.refs=Cn,i.context=Ze(e,s),null!=e.type&&null!=e.type.prototype&&!0===e.type.prototype.unstable_isAsyncReactComponent&&(e.internalContextTag|=1),"function"==typeof i.componentWillMount&&(o=i.state,i.componentWillMount(),o!==i.state&&a.enqueueReplaceState(i,i.state,null),null!==(o=e.updateQueue)&&(i.state=wt(n,e,o,i,u,t))),"function"==typeof i.componentDidMount&&(e.effectTag|=4)},updateClassInstance:function(e,t,o){var u=t.stateNode;u.props=t.memoizedProps,u.state=t.memoizedState;var s=t.memoizedProps,c=t.pendingProps;c||null==(c=s)&&r("159");var l=u.context,f=Qe(t);if(f=Ze(t,f),"function"!=typeof u.componentWillReceiveProps||s===c&&l===f||(l=u.state,u.componentWillReceiveProps(c,f),u.state!==l&&a.enqueueReplaceState(u,u.state,null)),l=t.memoizedState,o=null!==t.updateQueue?wt(e,t,t.updateQueue,u,c,o):l,!(s!==c||l!==o||hi.current||null!==t.updateQueue&&t.updateQueue.hasForceUpdate))return"function"!=typeof u.componentDidUpdate||s===e.memoizedProps&&l===e.memoizedState||(t.effectTag|=4),!1;var p=c;if(null===s||null!==t.updateQueue&&t.updateQueue.hasForceUpdate)p=!0;else{var d=t.stateNode,h=t.type;p="function"==typeof d.shouldComponentUpdate?d.shouldComponentUpdate(p,o,f):!h.prototype||!h.prototype.isPureReactComponent||(!xn(s,p)||!xn(l,o))}return p?("function"==typeof u.componentWillUpdate&&u.componentWillUpdate(c,o,f),"function"==typeof u.componentDidUpdate&&(t.effectTag|=4)):("function"!=typeof u.componentDidUpdate||s===e.memoizedProps&&l===e.memoizedState||(t.effectTag|=4),n(t,c),i(t,o)),u.props=c,u.state=o,u.context=f,p}}}function Et(e){return null===e||void 0===e?null:(e=Ei&&e[Ei]||e["@@iterator"],"function"==typeof e?e:null)}function xt(e,t){var n=t.ref;if(null!==n&&"function"!=typeof n){if(t._owner){t=t._owner;var i=void 0;t&&(2!==t.tag&&r("110"),i=t.stateNode),i||r("147",n);var o=""+n;return null!==e&&null!==e.ref&&e.ref._stringRef===o?e.ref:(e=function(e){var t=i.refs===Cn?i.refs={}:i.refs;null===e?delete t[o]:t[o]=e},e._stringRef=o,e)}"string"!=typeof n&&r("148"),t._owner||r("149",n)}return n}function jt(e,t){"textarea"!==e.type&&r("31","[object Object]"===Object.prototype.toString.call(t)?"object with keys {"+Object.keys(t).join(", ")+"}":t,"")}function kt(e){function t(t,n){if(e){var r=t.lastEffect;null!==r?(r.nextEffect=n,t.lastEffect=n):t.firstEffect=t.lastEffect=n,n.nextEffect=null,n.effectTag=8}}function n(n,r){if(!e)return null;for(;null!==r;)t(n,r),r=r.sibling;return null}function i(e,t){for(e=new Map;null!==t;)null!==t.key?e.set(t.key,t):e.set(t.index,t),t=t.sibling;return e}function o(e,t,n){return e=at(e,t,n),e.index=0,e.sibling=null,e}function a(t,n,r){return t.index=r,e?null!==(r=t.alternate)?(r=r.index,r<n?(t.effectTag=2,n):r):(t.effectTag=2,n):n}function u(t){return e&&null===t.alternate&&(t.effectTag=2),t}function s(e,t,n,r){return null===t||6!==t.tag?(t=ct(n,e.internalContextTag,r),t.return=e,t):(t=o(t,n,r),t.return=e,t)}function c(e,t,n,r){return null!==t&&t.type===n.type?(r=o(t,n.props,r),r.ref=xt(t,n),r.return=e,r):(r=ut(n,e.internalContextTag,r),r.ref=xt(t,n),r.return=e,r)}function l(e,t,n,r){return null===t||7!==t.tag?(t=lt(n,e.internalContextTag,r),t.return=e,t):(t=o(t,n,r),t.return=e,t)}function f(e,t,n,r){return null===t||9!==t.tag?(t=ft(n,e.internalContextTag,r),t.type=n.value,t.return=e,t):(t=o(t,null,r),t.type=n.value,t.return=e,t)}function p(e,t,n,r){return null===t||4!==t.tag||t.stateNode.containerInfo!==n.containerInfo||t.stateNode.implementation!==n.implementation?(t=pt(n,e.internalContextTag,r),t.return=e,t):(t=o(t,n.children||[],r),t.return=e,t)}function d(e,t,n,r,i){return null===t||10!==t.tag?(t=st(n,e.internalContextTag,r,i),t.return=e,t):(t=o(t,n,r),t.return=e,t)}function h(e,t,n){if("string"==typeof t||"number"==typeof t)return t=ct(""+t,e.internalContextTag,n),t.return=e,t;if("object"==typeof t&&null!==t){switch(t.$$typeof){case bi:return t.type===Si?(t=st(t.props.children,e.internalContextTag,n,t.key),t.return=e,t):(n=ut(t,e.internalContextTag,n),n.ref=xt(null,t),n.return=e,n);case Oi:return t=lt(t,e.internalContextTag,n),t.return=e,t;case wi:return n=ft(t,e.internalContextTag,n),n.type=t.value,n.return=e,n;case _i:return t=pt(t,e.internalContextTag,n),t.return=e,t}if(xi(t)||Et(t))return t=st(t,e.internalContextTag,n,null),t.return=e,t;jt(e,t)}return null}function v(e,t,n,r){var i=null!==t?t.key:null;if("string"==typeof n||"number"==typeof n)return null!==i?null:s(e,t,""+n,r);if("object"==typeof n&&null!==n){switch(n.$$typeof){case bi:return n.key===i?n.type===Si?d(e,t,n.props.children,r,i):c(e,t,n,r):null;case Oi:return n.key===i?l(e,t,n,r):null;case wi:return null===i?f(e,t,n,r):null;case _i:return n.key===i?p(e,t,n,r):null}if(xi(n)||Et(n))return null!==i?null:d(e,t,n,r,null);jt(e,n)}return null}function y(e,t,n,r,i){if("string"==typeof r||"number"==typeof r)return e=e.get(n)||null,s(t,e,""+r,i);if("object"==typeof r&&null!==r){switch(r.$$typeof){case bi:return e=e.get(null===r.key?n:r.key)||null,r.type===Si?d(t,e,r.props.children,i,r.key):c(t,e,r,i);case Oi:return e=e.get(null===r.key?n:r.key)||null,l(t,e,r,i);case wi:return e=e.get(n)||null,f(t,e,r,i);case _i:return e=e.get(null===r.key?n:r.key)||null,p(t,e,r,i)}if(xi(r)||Et(r))return e=e.get(n)||null,d(t,e,r,i,null);jt(t,r)}return null}function m(r,o,u,s){for(var c=null,l=null,f=o,p=o=0,d=null;null!==f&&p<u.length;p++){f.index>p?(d=f,f=null):d=f.sibling;var m=v(r,f,u[p],s);if(null===m){null===f&&(f=d);break}e&&f&&null===m.alternate&&t(r,f),o=a(m,o,p),null===l?c=m:l.sibling=m,l=m,f=d}if(p===u.length)return n(r,f),c;if(null===f){for(;p<u.length;p++)(f=h(r,u[p],s))&&(o=a(f,o,p),null===l?c=f:l.sibling=f,l=f);return c}for(f=i(r,f);p<u.length;p++)(d=y(f,r,p,u[p],s))&&(e&&null!==d.alternate&&f.delete(null===d.key?p:d.key),o=a(d,o,p),null===l?c=d:l.sibling=d,l=d);return e&&f.forEach(function(e){return t(r,e)}),c}function g(o,u,s,c){var l=Et(s);"function"!=typeof l&&r("150"),null==(s=l.call(s))&&r("151");for(var f=l=null,p=u,d=u=0,m=null,g=s.next();null!==p&&!g.done;d++,g=s.next()){p.index>d?(m=p,p=null):m=p.sibling;var b=v(o,p,g.value,c);if(null===b){p||(p=m);break}e&&p&&null===b.alternate&&t(o,p),u=a(b,u,d),null===f?l=b:f.sibling=b,f=b,p=m}if(g.done)return n(o,p),l;if(null===p){for(;!g.done;d++,g=s.next())null!==(g=h(o,g.value,c))&&(u=a(g,u,d),null===f?l=g:f.sibling=g,f=g);return l}for(p=i(o,p);!g.done;d++,g=s.next())null!==(g=y(p,o,d,g.value,c))&&(e&&null!==g.alternate&&p.delete(null===g.key?d:g.key),u=a(g,u,d),null===f?l=g:f.sibling=g,f=g);return e&&p.forEach(function(e){return t(o,e)}),l}return function(e,i,a,s){"object"==typeof a&&null!==a&&a.type===Si&&null===a.key&&(a=a.props.children);var c="object"==typeof a&&null!==a;if(c)switch(a.$$typeof){case bi:e:{var l=a.key;for(c=i;null!==c;){if(c.key===l){if(10===c.tag?a.type===Si:c.type===a.type){n(e,c.sibling),i=o(c,a.type===Si?a.props.children:a.props,s),i.ref=xt(c,a),i.return=e,e=i;break e}n(e,c);break}t(e,c),c=c.sibling}a.type===Si?(i=st(a.props.children,e.internalContextTag,s,a.key),i.return=e,e=i):(s=ut(a,e.internalContextTag,s),s.ref=xt(i,a),s.return=e,e=s)}return u(e);case Oi:e:{for(c=a.key;null!==i;){if(i.key===c){if(7===i.tag){n(e,i.sibling),i=o(i,a,s),i.return=e,e=i;break e}n(e,i);break}t(e,i),i=i.sibling}i=lt(a,e.internalContextTag,s),i.return=e,e=i}return u(e);case wi:e:{if(null!==i){if(9===i.tag){n(e,i.sibling),i=o(i,null,s),i.type=a.value,i.return=e,e=i;break e}n(e,i)}i=ft(a,e.internalContextTag,s),i.type=a.value,i.return=e,e=i}return u(e);case _i:e:{for(c=a.key;null!==i;){if(i.key===c){if(4===i.tag&&i.stateNode.containerInfo===a.containerInfo&&i.stateNode.implementation===a.implementation){n(e,i.sibling),i=o(i,a.children||[],s),i.return=e,e=i;break e}n(e,i);break}t(e,i),i=i.sibling}i=pt(a,e.internalContextTag,s),i.return=e,e=i}return u(e)}if("string"==typeof a||"number"==typeof a)return a=""+a,null!==i&&6===i.tag?(n(e,i.sibling),i=o(i,a,s)):(n(e,i),i=ct(a,e.internalContextTag,s)),i.return=e,e=i,u(e);if(xi(a))return m(e,i,a,s);if(Et(a))return g(e,i,a,s);if(c&&jt(e,a),void 0===a)switch(e.tag){case 2:case 1:s=e.type,r("152",s.displayName||s.name||"Component")}return n(e,i)}}function Ct(e,t,n,i,o){function a(e,t,n){var r=t.expirationTime;t.child=null===e?ki(t,null,n,r):ji(t,e.child,n,r)}function u(e,t){var n=t.ref;null===n||e&&e.ref===n||(t.effectTag|=128)}function s(e,t,n,r){if(u(e,t),!n)return r&&it(t,!1),l(e,t);n=t.stateNode,qr.current=t;var i=n.render();return t.effectTag|=1,a(e,t,i),t.memoizedState=n.state,t.memoizedProps=n.props,r&&it(t,!0),t.child}function c(e){var t=e.stateNode;t.pendingContext?tt(e,t.pendingContext,t.pendingContext!==t.context):t.context&&tt(e,t.context,!1),y(e,t.containerInfo)}function l(e,t){if(null!==e&&t.child!==e.child&&r("153"),null!==t.child){e=t.child;var n=at(e,e.pendingProps,e.expirationTime);for(t.child=n,n.return=t;null!==e.sibling;)e=e.sibling,n=n.sibling=at(e,e.pendingProps,e.expirationTime),n.return=t;n.sibling=null}return t.child}function f(e,t){switch(t.tag){case 3:c(t);break;case 2:rt(t);break;case 4:y(t,t.stateNode.containerInfo)}return null}var p=e.shouldSetTextContent,d=e.useSyncScheduling,h=e.shouldDeprioritizeSubtree,v=t.pushHostContext,y=t.pushHostContainer,m=n.enterHydrationState,g=n.resetHydrationState,b=n.tryToClaimNextHydratableInstance;e=St(i,o,function(e,t){e.memoizedProps=t},function(e,t){e.memoizedState=t});var O=e.adoptClassInstance,w=e.constructClassInstance,_=e.mountClassInstance,S=e.updateClassInstance;return{beginWork:function(e,t,n){if(0===t.expirationTime||t.expirationTime>n)return f(e,t);switch(t.tag){case 0:null!==e&&r("155");var i=t.type,o=t.pendingProps,E=Qe(t);return E=Ze(t,E),i=i(o,E),t.effectTag|=1,"object"==typeof i&&null!==i&&"function"==typeof i.render?(t.tag=2,o=rt(t),O(t,i),_(t,n),t=s(e,t,!0,o)):(t.tag=1,a(e,t,i),t.memoizedProps=o,t=t.child),t;case 1:e:{if(o=t.type,n=t.pendingProps,i=t.memoizedProps,hi.current)null===n&&(n=i);else if(null===n||i===n){t=l(e,t);break e}i=Qe(t),i=Ze(t,i),o=o(n,i),t.effectTag|=1,a(e,t,o),t.memoizedProps=n,t=t.child}return t;case 2:return o=rt(t),i=void 0,null===e?t.stateNode?r("153"):(w(t,t.pendingProps),_(t,n),i=!0):i=S(e,t,n),s(e,t,i,o);case 3:return c(t),o=t.updateQueue,null!==o?(i=t.memoizedState,o=wt(e,t,o,null,null,n),i===o?(g(),t=l(e,t)):(i=o.element,E=t.stateNode,(null===e||null===e.child)&&E.hydrate&&m(t)?(t.effectTag|=2,t.child=ki(t,null,i,n)):(g(),a(e,t,i)),t.memoizedState=o,t=t.child)):(g(),t=l(e,t)),t;case 5:v(t),null===e&&b(t),o=t.type;var x=t.memoizedProps;return i=t.pendingProps,null===i&&null===(i=x)&&r("154"),E=null!==e?e.memoizedProps:null,hi.current||null!==i&&x!==i?(x=i.children,p(o,i)?x=null:E&&p(o,E)&&(t.effectTag|=16),u(e,t),2147483647!==n&&!d&&h(o,i)?(t.expirationTime=2147483647,t=null):(a(e,t,x),t.memoizedProps=i,t=t.child)):t=l(e,t),t;case 6:return null===e&&b(t),e=t.pendingProps,null===e&&(e=t.memoizedProps),t.memoizedProps=e,null;case 8:t.tag=7;case 7:return o=t.pendingProps,hi.current?null===o&&null===(o=e&&e.memoizedProps)&&r("154"):null!==o&&t.memoizedProps!==o||(o=t.memoizedProps),i=o.children,t.stateNode=null===e?ki(t,t.stateNode,i,n):ji(t,t.stateNode,i,n),t.memoizedProps=o,t.stateNode;case 9:return null;case 4:e:{if(y(t,t.stateNode.containerInfo),o=t.pendingProps,hi.current)null===o&&null==(o=e&&e.memoizedProps)&&r("154");else if(null===o||t.memoizedProps===o){t=l(e,t);break e}null===e?t.child=ji(t,null,o,n):a(e,t,o),t.memoizedProps=o,t=t.child}return t;case 10:e:{if(n=t.pendingProps,hi.current)null===n&&(n=t.memoizedProps);else if(null===n||t.memoizedProps===n){t=l(e,t);break e}a(e,t,n),t.memoizedProps=n,t=t.child}return t;default:r("156")}},beginFailedWork:function(e,t,n){switch(t.tag){case 2:rt(t);break;case 3:c(t);break;default:r("157")}return t.effectTag|=64,null===e?t.child=null:t.child!==e.child&&(t.child=e.child),0===t.expirationTime||t.expirationTime>n?f(e,t):(t.firstEffect=null,t.lastEffect=null,t.child=null===e?ki(t,null,null,n):ji(t,e.child,null,n),2===t.tag&&(e=t.stateNode,t.memoizedProps=e.props,t.memoizedState=e.state),t.child)}}}function Pt(e,t,n){function i(e){e.effectTag|=4}var o=e.createInstance,a=e.createTextInstance,u=e.appendInitialChild,s=e.finalizeInitialChildren,c=e.prepareUpdate,l=e.persistence,f=t.getRootHostContainer,p=t.popHostContext,d=t.getHostContext,h=t.popHostContainer,v=n.prepareToHydrateHostInstance,y=n.prepareToHydrateHostTextInstance,m=n.popHydrationState,g=void 0,b=void 0,O=void 0;return e.mutation?(g=function(){},b=function(e,t,n){(t.updateQueue=n)&&i(t)},O=function(e,t,n,r){n!==r&&i(t)}):r(l?"235":"236"),{completeWork:function(e,t,n){var l=t.pendingProps;switch(null===l?l=t.memoizedProps:2147483647===t.expirationTime&&2147483647!==n||(t.pendingProps=null),t.tag){case 1:return null;case 2:return et(t),null;case 3:return h(t),Ke(hi,t),Ke(di,t),l=t.stateNode,l.pendingContext&&(l.context=l.pendingContext,l.pendingContext=null),null!==e&&null!==e.child||(m(t),t.effectTag&=-3),g(t),null;case 5:p(t),n=f();var w=t.type;if(null!==e&&null!=t.stateNode){var _=e.memoizedProps,S=t.stateNode,E=d();S=c(S,w,_,l,n,E),b(e,t,S,w,_,l,n),e.ref!==t.ref&&(t.effectTag|=128)}else{if(!l)return null===t.stateNode&&r("166"),null;if(e=d(),m(t))v(t,n,e)&&i(t);else{e=o(w,l,n,e,t);e:for(_=t.child;null!==_;){if(5===_.tag||6===_.tag)u(e,_.stateNode);else if(4!==_.tag&&null!==_.child){_.child.return=_,_=_.child;continue}if(_===t)break;for(;null===_.sibling;){if(null===_.return||_.return===t)break e;_=_.return}_.sibling.return=_.return,_=_.sibling}s(e,w,l,n)&&i(t),t.stateNode=e}null!==t.ref&&(t.effectTag|=128)}return null;case 6:if(e&&null!=t.stateNode)O(e,t,e.memoizedProps,l);else{if("string"!=typeof l)return null===t.stateNode&&r("166"),null;e=f(),n=d(),m(t)?y(t)&&i(t):t.stateNode=a(l,e,n,t)}return null;case 7:(l=t.memoizedProps)||r("165"),t.tag=8,w=[];e:for((_=t.stateNode)&&(_.return=t);null!==_;){if(5===_.tag||6===_.tag||4===_.tag)r("247");else if(9===_.tag)w.push(_.type);else if(null!==_.child){_.child.return=_,_=_.child;continue}for(;null===_.sibling;){if(null===_.return||_.return===t)break e;_=_.return}_.sibling.return=_.return,_=_.sibling}return _=l.handler,l=_(l.props,w),t.child=ji(t,null!==e?e.child:null,l,n),t.child;case 8:return t.tag=7,null;case 9:case 10:return null;case 4:return h(t),g(t),null;case 0:r("167");default:r("156")}}}}function Rt(e,t){function n(e){var n=e.ref;if(null!==n)try{n(null)}catch(n){t(e,n)}}function i(e){switch("function"==typeof yt&&yt(e),e.tag){case 2:n(e);var r=e.stateNode;if("function"==typeof r.componentWillUnmount)try{r.props=e.memoizedProps,r.state=e.memoizedState,r.componentWillUnmount()}catch(n){t(e,n)}break;case 5:n(e);break;case 7:o(e.stateNode);break;case 4:c&&u(e)}}function o(e){for(var t=e;;)if(i(t),null===t.child||c&&4===t.tag){if(t===e)break;for(;null===t.sibling;){if(null===t.return||t.return===e)return;t=t.return}t.sibling.return=t.return,t=t.sibling}else t.child.return=t,t=t.child}function a(e){return 5===e.tag||3===e.tag||4===e.tag}function u(e){for(var t=e,n=!1,a=void 0,u=void 0;;){if(!n){n=t.return;e:for(;;){switch(null===n&&r("160"),n.tag){case 5:a=n.stateNode,u=!1;break e;case 3:case 4:a=n.stateNode.containerInfo,u=!0;break e}n=n.return}n=!0}if(5===t.tag||6===t.tag)o(t),u?b(a,t.stateNode):g(a,t.stateNode);else if(4===t.tag?a=t.stateNode.containerInfo:i(t),null!==t.child){t.child.return=t,t=t.child;continue}if(t===e)break;for(;null===t.sibling;){if(null===t.return||t.return===e)return;t=t.return,4===t.tag&&(n=!1)}t.sibling.return=t.return,t=t.sibling}}var s=e.getPublicInstance,c=e.mutation;e=e.persistence,c||r(e?"235":"236");var l=c.commitMount,f=c.commitUpdate,p=c.resetTextContent,d=c.commitTextUpdate,h=c.appendChild,v=c.appendChildToContainer,y=c.insertBefore,m=c.insertInContainerBefore,g=c.removeChild,b=c.removeChildFromContainer;return{commitResetTextContent:function(e){p(e.stateNode)},commitPlacement:function(e){e:{for(var t=e.return;null!==t;){if(a(t)){var n=t;break e}t=t.return}r("160"),n=void 0}var i=t=void 0;switch(n.tag){case 5:t=n.stateNode,i=!1;break;case 3:case 4:t=n.stateNode.containerInfo,i=!0;break;default:r("161")}16&n.effectTag&&(p(t),n.effectTag&=-17);e:t:for(n=e;;){for(;null===n.sibling;){if(null===n.return||a(n.return)){n=null;break e}n=n.return}for(n.sibling.return=n.return,n=n.sibling;5!==n.tag&&6!==n.tag;){if(2&n.effectTag)continue t;if(null===n.child||4===n.tag)continue t;n.child.return=n,n=n.child}if(!(2&n.effectTag)){n=n.stateNode;break e}}for(var o=e;;){if(5===o.tag||6===o.tag)n?i?m(t,o.stateNode,n):y(t,o.stateNode,n):i?v(t,o.stateNode):h(t,o.stateNode);else if(4!==o.tag&&null!==o.child){o.child.return=o,o=o.child;continue}if(o===e)break;for(;null===o.sibling;){if(null===o.return||o.return===e)return;o=o.return}o.sibling.return=o.return,o=o.sibling}},commitDeletion:function(e){u(e),e.return=null,e.child=null,e.alternate&&(e.alternate.child=null,e.alternate.return=null)},commitWork:function(e,t){switch(t.tag){case 2:break;case 5:var n=t.stateNode;if(null!=n){var i=t.memoizedProps;e=null!==e?e.memoizedProps:i;var o=t.type,a=t.updateQueue;t.updateQueue=null,null!==a&&f(n,a,o,e,i,t)}break;case 6:null===t.stateNode&&r("162"),n=t.memoizedProps,d(t.stateNode,null!==e?e.memoizedProps:n,n);break;case 3:break;default:r("163")}},commitLifeCycles:function(e,t){switch(t.tag){case 2:var n=t.stateNode;if(4&t.effectTag)if(null===e)n.props=t.memoizedProps,n.state=t.memoizedState,n.componentDidMount();else{var i=e.memoizedProps;e=e.memoizedState,n.props=t.memoizedProps,n.state=t.memoizedState,n.componentDidUpdate(i,e)}t=t.updateQueue,null!==t&&_t(t,n);break;case 3:n=t.updateQueue,null!==n&&_t(n,null!==t.child?t.child.stateNode:null);break;case 5:n=t.stateNode,null===e&&4&t.effectTag&&l(n,t.type,t.memoizedProps,t);break;case 6:case 4:break;default:r("163")}},commitAttachRef:function(e){var t=e.ref;if(null!==t){var n=e.stateNode;switch(e.tag){case 5:t(s(n));break;default:t(n)}}},commitDetachRef:function(e){null!==(e=e.ref)&&e(null)}}}function At(e){function t(e){return e===Ci&&r("174"),e}var n=e.getChildHostContext,i=e.getRootHostContext,o={current:Ci},a={current:Ci},u={current:Ci};return{getHostContext:function(){return t(o.current)},getRootHostContainer:function(){return t(u.current)},popHostContainer:function(e){Ke(o,e),Ke(a,e),Ke(u,e)},popHostContext:function(e){a.current===e&&(Ke(o,e),Ke(a,e))},pushHostContainer:function(e,t){Je(u,t,e),t=i(t),Je(a,e,e),Je(o,t,e)},pushHostContext:function(e){var r=t(u.current),i=t(o.current);r=n(i,e.type,r),i!==r&&(Je(a,e,e),Je(o,r,e))},resetHostContainer:function(){o.current=Ci,u.current=Ci}}}function Tt(e){function t(e,t){var n=new ot(5,null,0);n.type="DELETED",n.stateNode=t,n.return=e,n.effectTag=8,null!==e.lastEffect?(e.lastEffect.nextEffect=n,e.lastEffect=n):e.firstEffect=e.lastEffect=n}function n(e,t){switch(e.tag){case 5:return null!==(t=a(t,e.type,e.pendingProps))&&(e.stateNode=t,!0);case 6:return null!==(t=u(t,e.pendingProps))&&(e.stateNode=t,!0);default:return!1}}function i(e){for(e=e.return;null!==e&&5!==e.tag&&3!==e.tag;)e=e.return;p=e}var o=e.shouldSetTextContent;if(!(e=e.hydration))return{enterHydrationState:function(){return!1},resetHydrationState:function(){},tryToClaimNextHydratableInstance:function(){},prepareToHydrateHostInstance:function(){r("175")},prepareToHydrateHostTextInstance:function(){r("176")},popHydrationState:function(){return!1}};var a=e.canHydrateInstance,u=e.canHydrateTextInstance,s=e.getNextHydratableSibling,c=e.getFirstHydratableChild,l=e.hydrateInstance,f=e.hydrateTextInstance,p=null,d=null,h=!1;return{enterHydrationState:function(e){return d=c(e.stateNode.containerInfo),p=e,h=!0},resetHydrationState:function(){d=p=null,h=!1},tryToClaimNextHydratableInstance:function(e){if(h){var r=d;if(r){if(!n(e,r)){if(!(r=s(r))||!n(e,r))return e.effectTag|=2,h=!1,void(p=e);t(p,d)}p=e,d=c(r)}else e.effectTag|=2,h=!1,p=e}},prepareToHydrateHostInstance:function(e,t,n){return t=l(e.stateNode,e.type,e.memoizedProps,t,n,e),e.updateQueue=t,null!==t},prepareToHydrateHostTextInstance:function(e){return f(e.stateNode,e.memoizedProps,e)},popHydrationState:function(e){if(e!==p)return!1;if(!h)return i(e),h=!0,!1;var n=e.type;if(5!==e.tag||"head"!==n&&"body"!==n&&!o(n,e.memoizedProps))for(n=d;n;)t(e,n),n=s(n);return i(e),d=p?s(e.stateNode):null,!0}}}function Ft(e){function t(e){oe=K=!0;var t=e.stateNode;if(t.current===e&&r("177"),t.isReadyForCommit=!1,qr.current=null,1<e.effectTag)if(null!==e.lastEffect){e.lastEffect.nextEffect=e;var n=e.firstEffect}else n=e;else n=e.firstEffect;for(B(),X=n;null!==X;){var i=!1,o=void 0;try{for(;null!==X;){var a=X.effectTag;if(16&a&&F(X),128&a){var u=X.alternate;null!==u&&D(u)}switch(-242&a){case 2:I(X),X.effectTag&=-3;break;case 6:I(X),X.effectTag&=-3,M(X.alternate,X);break;case 4:M(X.alternate,X);break;case 8:ae=!0,N(X),ae=!1}X=X.nextEffect}}catch(e){i=!0,o=e}i&&(null===X&&r("178"),s(X,o),null!==X&&(X=X.nextEffect))}for(H(),t.current=e,X=n;null!==X;){n=!1,i=void 0;try{for(;null!==X;){var c=X.effectTag;if(36&c&&V(X.alternate,X),128&c&&U(X),64&c)switch(o=X,a=void 0,null!==ee&&(a=ee.get(o),ee.delete(o),null==a&&null!==o.alternate&&(o=o.alternate,a=ee.get(o),ee.delete(o))),null==a&&r("184"),o.tag){case 2:o.stateNode.componentDidCatch(a.error,{componentStack:a.componentStack});break;case 3:null===re&&(re=a.error);break;default:r("157")}var l=X.nextEffect;X.nextEffect=null,X=l}}catch(e){n=!0,i=e}n&&(null===X&&r("178"),s(X,i),null!==X&&(X=X.nextEffect))}return K=oe=!1,"function"==typeof vt&&vt(e.stateNode),ne&&(ne.forEach(v),ne=null),null!==re&&(e=re,re=null,S(e)),t=t.current.expirationTime,0===t&&(te=ee=null),t}function n(e){for(;;){var t=T(e.alternate,e,Z),n=e.return,r=e.sibling,i=e;if(2147483647===Z||2147483647!==i.expirationTime){if(2!==i.tag&&3!==i.tag)var o=0;else o=i.updateQueue,o=null===o?0:o.expirationTime;for(var a=i.child;null!==a;)0!==a.expirationTime&&(0===o||o>a.expirationTime)&&(o=a.expirationTime),a=a.sibling;i.expirationTime=o}if(null!==t)return t;if(null!==n&&(null===n.firstEffect&&(n.firstEffect=e.firstEffect),null!==e.lastEffect&&(null!==n.lastEffect&&(n.lastEffect.nextEffect=e.firstEffect),n.lastEffect=e.lastEffect),1<e.effectTag&&(null!==n.lastEffect?n.lastEffect.nextEffect=e:n.firstEffect=e,n.lastEffect=e)),null!==r)return r;if(null===n){e.stateNode.isReadyForCommit=!0;break}e=n}return null}function i(e){var t=R(e.alternate,e,Z);return null===t&&(t=n(e)),qr.current=null,t}function o(e){var t=A(e.alternate,e,Z);return null===t&&(t=n(e)),qr.current=null,t}function a(e){if(null!==ee){if(!(0===Z||Z>e))if(Z<=$)for(;null!==J;)J=c(J)?o(J):i(J);else for(;null!==J&&!_();)J=c(J)?o(J):i(J)}else if(!(0===Z||Z>e))if(Z<=$)for(;null!==J;)J=i(J);else for(;null!==J&&!_();)J=i(J)}function u(e,t){if(K&&r("243"),K=!0,e.isReadyForCommit=!1,e!==Q||t!==Z||null===J){for(;-1<pi;)fi[pi]=null,pi--;vi=Cn,di.current=Cn,hi.current=!1,C(),Q=e,Z=t,J=at(Q.current,null,t)}var n=!1,i=null;try{a(t)}catch(e){n=!0,i=e}for(;n;){if(ie){re=i;break}var u=J;if(null===u)ie=!0;else{var c=s(u,i);if(null===c&&r("183"),!ie){try{for(n=c,i=t,c=n;null!==u;){switch(u.tag){case 2:et(u);break;case 5:k(u);break;case 3:j(u);break;case 4:j(u)}if(u===c||u.alternate===c)break;u=u.return}J=o(n),a(i)}catch(e){n=!0,i=e;continue}break}}}return t=re,ie=K=!1,re=null,null!==t&&S(t),e.isReadyForCommit?e.current.alternate:null}function s(e,t){var n=qr.current=null,r=!1,i=!1,o=null;if(3===e.tag)n=e,l(e)&&(ie=!0);else for(var a=e.return;null!==a&&null===n;){if(2===a.tag?"function"==typeof a.stateNode.componentDidCatch&&(r=!0,o=we(a),n=a,i=!0):3===a.tag&&(n=a),l(a)){if(ae||null!==ne&&(ne.has(a)||null!==a.alternate&&ne.has(a.alternate)))return null;n=null,i=!1}a=a.return}if(null!==n){null===te&&(te=new Set),te.add(n);var u="";a=e;do{e:switch(a.tag){case 0:case 1:case 2:case 5:var s=a._debugOwner,c=a._debugSource,f=we(a),p=null;s&&(p=we(s)),s=c,f="\n in "+(f||"Unknown")+(s?" (at "+s.fileName.replace(/^.*[\\\/]/,"")+":"+s.lineNumber+")":p?" (created by "+p+")":"");break e;default:f=""}u+=f,a=a.return}while(a);a=u,e=we(e),null===ee&&(ee=new Map),t={componentName:e,componentStack:a,error:t,errorBoundary:r?n.stateNode:null,errorBoundaryFound:r,errorBoundaryName:o,willRetry:i},ee.set(n,t);try{var d=t.error;d&&d.suppressReactErrorLogging||console.error(d)}catch(e){e&&e.suppressReactErrorLogging||console.error(e)}return oe?(null===ne&&(ne=new Set),ne.add(n)):v(n),n}return null===re&&(re=t),null}function c(e){return null!==ee&&(ee.has(e)||null!==e.alternate&&ee.has(e.alternate))}function l(e){return null!==te&&(te.has(e)||null!==e.alternate&&te.has(e.alternate))}function f(){return 20*(1+((y()+100)/20|0))}function p(e){return 0!==G?G:K?oe?1:Z:!z||1&e.internalContextTag?f():1}function d(e,t){return h(e,t,!1)}function h(e,t){for(;null!==e;){if((0===e.expirationTime||e.expirationTime>t)&&(e.expirationTime=t),null!==e.alternate&&(0===e.alternate.expirationTime||e.alternate.expirationTime>t)&&(e.alternate.expirationTime=t),null===e.return){if(3!==e.tag)break;var n=e.stateNode;!K&&n===Q&&t<Z&&(J=Q=null,Z=0);var i=n,o=t;if(_e>Oe&&r("185"),null===i.nextScheduledRoot)i.remainingExpirationTime=o,null===se?(ue=se=i,i.nextScheduledRoot=i):(se=se.nextScheduledRoot=i,se.nextScheduledRoot=ue);else{var a=i.remainingExpirationTime;(0===a||o<a)&&(i.remainingExpirationTime=o)}fe||(ge?be&&(pe=i,de=1,w(pe,de)):1===o?O(1,null):m(o)),!K&&n===Q&&t<Z&&(J=Q=null,Z=0)}e=e.return}}function v(e){h(e,1,!0)}function y(){return $=2+((L()-Y)/10|0)}function m(e){if(0!==ce){if(e>ce)return;W(le)}var t=L()-Y;ce=e,le=q(b,{timeout:10*(e-2)-t})}function g(){var e=0,t=null;if(null!==se)for(var n=se,i=ue;null!==i;){var o=i.remainingExpirationTime;if(0===o){if((null===n||null===se)&&r("244"),i===i.nextScheduledRoot){ue=se=i.nextScheduledRoot=null;break}if(i===ue)ue=o=i.nextScheduledRoot,se.nextScheduledRoot=o,i.nextScheduledRoot=null;else{if(i===se){se=n,se.nextScheduledRoot=ue,i.nextScheduledRoot=null;break}n.nextScheduledRoot=i.nextScheduledRoot,i.nextScheduledRoot=null}i=n.nextScheduledRoot}else{if((0===e||o<e)&&(e=o,t=i),i===se)break;n=i,i=i.nextScheduledRoot}}n=pe,null!==n&&n===t?_e++:_e=0,pe=t,de=e}function b(e){O(0,e)}function O(e,t){for(me=t,g();null!==pe&&0!==de&&(0===e||de<=e)&&!he;)w(pe,de),g();if(null!==me&&(ce=0,le=-1),0!==de&&m(de),me=null,he=!1,_e=0,ve)throw e=ye,ye=null,ve=!1,e}function w(e,n){if(fe&&r("245"),fe=!0,n<=y()){var i=e.finishedWork;null!==i?(e.finishedWork=null,e.remainingExpirationTime=t(i)):(e.finishedWork=null,null!==(i=u(e,n))&&(e.remainingExpirationTime=t(i)))}else i=e.finishedWork,null!==i?(e.finishedWork=null,e.remainingExpirationTime=t(i)):(e.finishedWork=null,null!==(i=u(e,n))&&(_()?e.finishedWork=i:e.remainingExpirationTime=t(i)));fe=!1}function _(){return!(null===me||me.timeRemaining()>Se)&&(he=!0)}function S(e){null===pe&&r("246"),pe.remainingExpirationTime=0,ve||(ve=!0,ye=e)}var E=At(e),x=Tt(e),j=E.popHostContainer,k=E.popHostContext,C=E.resetHostContainer,P=Ct(e,E,x,d,p),R=P.beginWork,A=P.beginFailedWork,T=Pt(e,E,x).completeWork;E=Rt(e,s);var F=E.commitResetTextContent,I=E.commitPlacement,N=E.commitDeletion,M=E.commitWork,V=E.commitLifeCycles,U=E.commitAttachRef,D=E.commitDetachRef,L=e.now,q=e.scheduleDeferredCallback,W=e.cancelDeferredCallback,z=e.useSyncScheduling,B=e.prepareForCommit,H=e.resetAfterCommit,Y=L(),$=2,G=0,K=!1,J=null,Q=null,Z=0,X=null,ee=null,te=null,ne=null,re=null,ie=!1,oe=!1,ae=!1,ue=null,se=null,ce=0,le=-1,fe=!1,pe=null,de=0,he=!1,ve=!1,ye=null,me=null,ge=!1,be=!1,Oe=1e3,_e=0,Se=1;return{computeAsyncExpiration:f,computeExpirationForFiber:p,scheduleWork:d,batchedUpdates:function(e,t){var n=ge;ge=!0;try{return e(t)}finally{(ge=n)||fe||O(1,null)}},unbatchedUpdates:function(e){if(ge&&!be){be=!0;try{return e()}finally{be=!1}}return e()},flushSync:function(e){var t=ge;ge=!0;try{e:{var n=G;G=1;try{var i=e();break e}finally{G=n}i=void 0}return i}finally{ge=t,fe&&r("187"),O(1,null)}},deferredUpdates:function(e){var t=G;G=f();try{return e()}finally{G=t}}}}function It(e){function t(e){return e=je(e),null===e?null:e.stateNode}var n=e.getPublicInstance;e=Ft(e);var i=e.computeAsyncExpiration,o=e.computeExpirationForFiber,a=e.scheduleWork;return{createContainer:function(e,t){var n=new ot(3,null,0);return e={current:n,containerInfo:e,pendingChildren:null,remainingExpirationTime:0,isReadyForCommit:!1,finishedWork:null,context:null,pendingContext:null,hydrate:t,nextScheduledRoot:null},n.stateNode=e},updateContainer:function(e,t,n,u){var s=t.current;if(n){n=n._reactInternalFiber;var c;e:{for(2===_e(n)&&2===n.tag||r("170"),c=n;3!==c.tag;){if(Xe(c)){c=c.stateNode.__reactInternalMemoizedMergedChildContext;break e}(c=c.return)||r("171")}c=c.stateNode.context}n=Xe(n)?nt(n,c):c}else n=Cn;null===t.context?t.context=n:t.pendingContext=n,t=u,t=void 0===t?null:t,u=null!=e&&null!=e.type&&null!=e.type.prototype&&!0===e.type.prototype.unstable_isAsyncReactComponent?i():o(s),bt(s,{expirationTime:u,partialState:{element:e},callback:t,isReplace:!1,isForced:!1,nextCallback:null,next:null}),a(s,u)},batchedUpdates:e.batchedUpdates,unbatchedUpdates:e.unbatchedUpdates,deferredUpdates:e.deferredUpdates,flushSync:e.flushSync,getPublicRootInstance:function(e){if(e=e.current,!e.child)return null;switch(e.child.tag){case 5:return n(e.child.stateNode);default:return e.child.stateNode}},findHostInstance:t,findHostInstanceWithNoPortals:function(e){return e=ke(e),null===e?null:e.stateNode},injectIntoDevTools:function(e){var n=e.findFiberByHostInstance;return ht(wn({},e,{findHostInstanceByFiber:function(e){return t(e)},findFiberByHostInstance:function(e){return n?n(e):null}}))}}}function Nt(e,t,n){var r=3<arguments.length&&void 0!==arguments[3]?arguments[3]:null;return{$$typeof:_i,key:null==r?null:""+r,children:e,containerInfo:t,implementation:n}}function Mt(e){return!!Gi.hasOwnProperty(e)||!$i.hasOwnProperty(e)&&(Yi.test(e)?Gi[e]=!0:($i[e]=!0,!1))}function Vt(e,t,n){var r=a(t);if(r&&o(t,n)){var i=r.mutationMethod;i?i(e,n):null==n||r.hasBooleanValue&&!n||r.hasNumericValue&&isNaN(n)||r.hasPositiveNumericValue&&1>n||r.hasOverloadedBooleanValue&&!1===n?Dt(e,t):r.mustUseProperty?e[r.propertyName]=n:(t=r.attributeName,(i=r.attributeNamespace)?e.setAttributeNS(i,t,""+n):r.hasBooleanValue||r.hasOverloadedBooleanValue&&!0===n?e.setAttribute(t,""):e.setAttribute(t,""+n))}else Ut(e,t,o(t,n)?n:null)}function Ut(e,t,n){Mt(t)&&(null==n?e.removeAttribute(t):e.setAttribute(t,""+n))}function Dt(e,t){var n=a(t);n?(t=n.mutationMethod)?t(e,void 0):n.mustUseProperty?e[n.propertyName]=!n.hasBooleanValue&&"":e.removeAttribute(n.attributeName):e.removeAttribute(t)}function Lt(e,t){var n=t.value,r=t.checked;return wn({type:void 0,step:void 0,min:void 0,max:void 0},t,{defaultChecked:void 0,defaultValue:void 0,value:null!=n?n:e._wrapperState.initialValue,checked:null!=r?r:e._wrapperState.initialChecked})}function qt(e,t){var n=t.defaultValue;e._wrapperState={initialChecked:null!=t.checked?t.checked:t.defaultChecked,initialValue:null!=t.value?t.value:n,controlled:"checkbox"===t.type||"radio"===t.type?null!=t.checked:null!=t.value}}function Wt(e,t){null!=(t=t.checked)&&Vt(e,"checked",t)}function zt(e,t){Wt(e,t);var n=t.value;null!=n?0===n&&""===e.value?e.value="0":"number"===t.type?(t=parseFloat(e.value)||0,(n!=t||n==t&&e.value!=n)&&(e.value=""+n)):e.value!==""+n&&(e.value=""+n):(null==t.value&&null!=t.defaultValue&&e.defaultValue!==""+t.defaultValue&&(e.defaultValue=""+t.defaultValue),null==t.checked&&null!=t.defaultChecked&&(e.defaultChecked=!!t.defaultChecked))}function Bt(e,t){switch(t.type){case"submit":case"reset":break;case"color":case"date":case"datetime":case"datetime-local":case"month":case"time":case"week":e.value="",e.value=e.defaultValue;break;default:e.value=e.value}t=e.name,""!==t&&(e.name=""),e.defaultChecked=!e.defaultChecked,e.defaultChecked=!e.defaultChecked,""!==t&&(e.name=t)}function Ht(e){var t="";return bn.Children.forEach(e,function(e){null==e||"string"!=typeof e&&"number"!=typeof e||(t+=e)}),t}function Yt(e,t){return e=wn({children:void 0},t),(t=Ht(t.children))&&(e.children=t),e}function $t(e,t,n,r){if(e=e.options,t){t={};for(var i=0;i<n.length;i++)t["$"+n[i]]=!0;for(n=0;n<e.length;n++)i=t.hasOwnProperty("$"+e[n].value),e[n].selected!==i&&(e[n].selected=i),i&&r&&(e[n].defaultSelected=!0)}else{for(n=""+n,t=null,i=0;i<e.length;i++){if(e[i].value===n)return e[i].selected=!0,void(r&&(e[i].defaultSelected=!0));null!==t||e[i].disabled||(t=e[i])}null!==t&&(t.selected=!0)}}function Gt(e,t){var n=t.value;e._wrapperState={initialValue:null!=n?n:t.defaultValue,wasMultiple:!!t.multiple}}function Kt(e,t){return null!=t.dangerouslySetInnerHTML&&r("91"),wn({},t,{value:void 0,defaultValue:void 0,children:""+e._wrapperState.initialValue})}function Jt(e,t){var n=t.value;null==n&&(n=t.defaultValue,t=t.children,null!=t&&(null!=n&&r("92"),Array.isArray(t)&&(1>=t.length||r("93"),t=t[0]),n=""+t),null==n&&(n="")),e._wrapperState={initialValue:""+n}}function Qt(e,t){var n=t.value;null!=n&&(n=""+n,n!==e.value&&(e.value=n),null==t.defaultValue&&(e.defaultValue=n)),null!=t.defaultValue&&(e.defaultValue=t.defaultValue)}function Zt(e){var t=e.textContent;t===e._wrapperState.initialValue&&(e.value=t)}function Xt(e){switch(e){case"svg":return"http://www.w3.org/2000/svg";case"math":return"http://www.w3.org/1998/Math/MathML";default:return"http://www.w3.org/1999/xhtml"}}function en(e,t){return null==e||"http://www.w3.org/1999/xhtml"===e?Xt(t):"http://www.w3.org/2000/svg"===e&&"foreignObject"===t?"http://www.w3.org/1999/xhtml":e}function tn(e,t){if(t){var n=e.firstChild;if(n&&n===e.lastChild&&3===n.nodeType)return void(n.nodeValue=t)}e.textContent=t}function nn(e,t){e=e.style;for(var n in t)if(t.hasOwnProperty(n)){var r=0===n.indexOf("--"),i=n,o=t[n];i=null==o||"boolean"==typeof o||""===o?"":r||"number"!=typeof o||0===o||Zi.hasOwnProperty(i)&&Zi[i]?(""+o).trim():o+"px","float"===n&&(n="cssFloat"),r?e.setProperty(n,i):e[n]=i}}function rn(e,t,n){t&&(eo[e]&&(null!=t.children||null!=t.dangerouslySetInnerHTML)&&r("137",e,n()),null!=t.dangerouslySetInnerHTML&&(null!=t.children&&r("60"),"object"==typeof t.dangerouslySetInnerHTML&&"__html"in t.dangerouslySetInnerHTML||r("61")),null!=t.style&&"object"!=typeof t.style&&r("62",n()))}function on(e,t){if(-1===e.indexOf("-"))return"string"==typeof t.is;switch(e){case"annotation-xml":case"color-profile":case"font-face":case"font-face-src":case"font-face-uri":case"font-face-format":case"font-face-name":case"missing-glyph":return!1;default:return!0}}function an(e,t){e=9===e.nodeType||11===e.nodeType?e:e.ownerDocument;var n=Ne(e);t=Jn[t];for(var r=0;r<t.length;r++){var i=t[r];n.hasOwnProperty(i)&&n[i]||("topScroll"===i?Ae("topScroll","scroll",e):"topFocus"===i||"topBlur"===i?(Ae("topFocus","focus",e),Ae("topBlur","blur",e),n.topBlur=!0,n.topFocus=!0):"topCancel"===i?(ne("cancel",!0)&&Ae("topCancel","cancel",e),n.topCancel=!0):"topClose"===i?(ne("close",!0)&&Ae("topClose","close",e),n.topClose=!0):Kr.hasOwnProperty(i)&&Re(i,Kr[i],e),n[i]=!0)}}function un(e,t,n,r){return n=9===n.nodeType?n:n.ownerDocument,r===to&&(r=Xt(e)),r===to?"script"===e?(e=n.createElement("div"),e.innerHTML="<script><\/script>",e=e.removeChild(e.firstChild)):e="string"==typeof t.is?n.createElement(e,{is:t.is}):n.createElement(e):e=n.createElementNS(r,e),e}function sn(e,t){return(9===t.nodeType?t:t.ownerDocument).createTextNode(e)}function cn(e,t,n,r){var i=on(t,n);switch(t){case"iframe":case"object":Re("topLoad","load",e);var o=n;break;case"video":case"audio":for(o in ro)ro.hasOwnProperty(o)&&Re(o,ro[o],e);o=n;break;case"source":Re("topError","error",e),o=n;break;case"img":case"image":Re("topError","error",e),Re("topLoad","load",e),o=n;break;case"form":Re("topReset","reset",e),Re("topSubmit","submit",e),o=n;break;case"details":Re("topToggle","toggle",e),o=n;break;case"input":qt(e,n),o=Lt(e,n),Re("topInvalid","invalid",e),an(r,"onChange");break;case"option":o=Yt(e,n);break;case"select":Gt(e,n),o=wn({},n,{value:void 0}),Re("topInvalid","invalid",e),an(r,"onChange");break;case"textarea":Jt(e,n),o=Kt(e,n),Re("topInvalid","invalid",e),an(r,"onChange");break;default:o=n}rn(t,o,no);var a,u=o;for(a in u)if(u.hasOwnProperty(a)){var s=u[a];"style"===a?nn(e,s,no):"dangerouslySetInnerHTML"===a?null!=(s=s?s.__html:void 0)&&Qi(e,s):"children"===a?"string"==typeof s?("textarea"!==t||""!==s)&&tn(e,s):"number"==typeof s&&tn(e,""+s):"suppressContentEditableWarning"!==a&&"suppressHydrationWarning"!==a&&"autoFocus"!==a&&(Kn.hasOwnProperty(a)?null!=s&&an(r,a):i?Ut(e,a,s):null!=s&&Vt(e,a,s))}switch(t){case"input":oe(e),Bt(e,n);break;case"textarea":oe(e),Zt(e,n);break;case"option":null!=n.value&&e.setAttribute("value",n.value);break;case"select":e.multiple=!!n.multiple,t=n.value,null!=t?$t(e,!!n.multiple,t,!1):null!=n.defaultValue&&$t(e,!!n.multiple,n.defaultValue,!0);break;default:"function"==typeof o.onClick&&(e.onclick=_n)}}function ln(e,t,n,r,i){var o=null;switch(t){case"input":n=Lt(e,n),r=Lt(e,r),o=[];break;case"option":n=Yt(e,n),r=Yt(e,r),o=[];break;case"select":n=wn({},n,{value:void 0}),r=wn({},r,{value:void 0}),o=[];break;case"textarea":n=Kt(e,n),r=Kt(e,r),o=[];break;default:"function"!=typeof n.onClick&&"function"==typeof r.onClick&&(e.onclick=_n)}rn(t,r,no);var a,u;e=null;for(a in n)if(!r.hasOwnProperty(a)&&n.hasOwnProperty(a)&&null!=n[a])if("style"===a)for(u in t=n[a])t.hasOwnProperty(u)&&(e||(e={}),e[u]="");else"dangerouslySetInnerHTML"!==a&&"children"!==a&&"suppressContentEditableWarning"!==a&&"suppressHydrationWarning"!==a&&"autoFocus"!==a&&(Kn.hasOwnProperty(a)?o||(o=[]):(o=o||[]).push(a,null));for(a in r){var s=r[a];if(t=null!=n?n[a]:void 0,r.hasOwnProperty(a)&&s!==t&&(null!=s||null!=t))if("style"===a)if(t){for(u in t)!t.hasOwnProperty(u)||s&&s.hasOwnProperty(u)||(e||(e={}),e[u]="");for(u in s)s.hasOwnProperty(u)&&t[u]!==s[u]&&(e||(e={}),e[u]=s[u])}else e||(o||(o=[]),o.push(a,e)),e=s;else"dangerouslySetInnerHTML"===a?(s=s?s.__html:void 0,t=t?t.__html:void 0,null!=s&&t!==s&&(o=o||[]).push(a,""+s)):"children"===a?t===s||"string"!=typeof s&&"number"!=typeof s||(o=o||[]).push(a,""+s):"suppressContentEditableWarning"!==a&&"suppressHydrationWarning"!==a&&(Kn.hasOwnProperty(a)?(null!=s&&an(i,a),o||t===s||(o=[])):(o=o||[]).push(a,s))}return e&&(o=o||[]).push("style",e),o}function fn(e,t,n,r,i){"input"===n&&"radio"===i.type&&null!=i.name&&Wt(e,i),on(n,r),r=on(n,i);for(var o=0;o<t.length;o+=2){var a=t[o],u=t[o+1];"style"===a?nn(e,u,no):"dangerouslySetInnerHTML"===a?Qi(e,u):"children"===a?tn(e,u):r?null!=u?Ut(e,a,u):e.removeAttribute(a):null!=u?Vt(e,a,u):Dt(e,a)}switch(n){case"input":zt(e,i);break;case"textarea":Qt(e,i);break;case"select":e._wrapperState.initialValue=void 0,t=e._wrapperState.wasMultiple,e._wrapperState.wasMultiple=!!i.multiple,n=i.value,null!=n?$t(e,!!i.multiple,n,!1):t!==!!i.multiple&&(null!=i.defaultValue?$t(e,!!i.multiple,i.defaultValue,!0):$t(e,!!i.multiple,i.multiple?[]:"",!1))}}function pn(e,t,n,r,i){switch(t){case"iframe":case"object":Re("topLoad","load",e);break;case"video":case"audio":for(var o in ro)ro.hasOwnProperty(o)&&Re(o,ro[o],e);break;case"source":Re("topError","error",e);break;case"img":case"image":Re("topError","error",e),Re("topLoad","load",e);break;case"form":Re("topReset","reset",e),Re("topSubmit","submit",e);break;case"details":Re("topToggle","toggle",e);break;case"input":qt(e,n),Re("topInvalid","invalid",e),an(i,"onChange");break;case"select":Gt(e,n),Re("topInvalid","invalid",e),an(i,"onChange");break;case"textarea":Jt(e,n),Re("topInvalid","invalid",e),an(i,"onChange")}rn(t,n,no),r=null;for(var a in n)n.hasOwnProperty(a)&&(o=n[a],"children"===a?"string"==typeof o?e.textContent!==o&&(r=["children",o]):"number"==typeof o&&e.textContent!==""+o&&(r=["children",""+o]):Kn.hasOwnProperty(a)&&null!=o&&an(i,a));switch(t){case"input":oe(e),Bt(e,n);break;case"textarea":oe(e),Zt(e,n);break;case"select":case"option":break;default:"function"==typeof n.onClick&&(e.onclick=_n)}return r}function dn(e,t){return e.nodeValue!==t}function hn(e){return!(!e||1!==e.nodeType&&9!==e.nodeType&&11!==e.nodeType&&(8!==e.nodeType||" react-mount-point-unstable "!==e.nodeValue))}function vn(e){return!(!(e=e?9===e.nodeType?e.documentElement:e.firstChild:null)||1!==e.nodeType||!e.hasAttribute("data-reactroot"))}function yn(e,t,n,i,o){hn(n)||r("200");var a=n._reactRootContainer;if(a)uo.updateContainer(t,a,e,o);else{if(!(i=i||vn(n)))for(a=void 0;a=n.lastChild;)n.removeChild(a);var u=uo.createContainer(n,i);a=n._reactRootContainer=u,uo.unbatchedUpdates(function(){uo.updateContainer(t,u,e,o)})}return uo.getPublicRootInstance(a)}function mn(e,t){var n=2<arguments.length&&void 0!==arguments[2]?arguments[2]:null;return hn(t)||r("200"),Nt(e,t,null,n)}function gn(e,t){this._reactRootContainer=uo.createContainer(e,t)}/** @license React v16.2.0 * react-dom.production.min.js * * Copyright (c) 2013-present, Facebook, Inc. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ var bn=n(11),On=n(421),wn=n(192),_n=n(77),Sn=n(420),En=n(424),xn=n(428),jn=n(422),kn=n(423),Cn=n(169);bn||r("227");var Pn={children:!0,dangerouslySetInnerHTML:!0,defaultValue:!0,defaultChecked:!0,innerHTML:!0,suppressContentEditableWarning:!0,suppressHydrationWarning:!0,style:!0},Rn={MUST_USE_PROPERTY:1,HAS_BOOLEAN_VALUE:4,HAS_NUMERIC_VALUE:8,HAS_POSITIVE_NUMERIC_VALUE:24,HAS_OVERLOADED_BOOLEAN_VALUE:32,HAS_STRING_BOOLEAN_VALUE:64,injectDOMPropertyConfig:function(e){var t=Rn,n=e.Properties||{},o=e.DOMAttributeNamespaces||{},a=e.DOMAttributeNames||{};e=e.DOMMutationMethods||{};for(var u in n){An.hasOwnProperty(u)&&r("48",u);var s=u.toLowerCase(),c=n[u];s={attributeName:s,attributeNamespace:null,propertyName:u,mutationMethod:null,mustUseProperty:i(c,t.MUST_USE_PROPERTY),hasBooleanValue:i(c,t.HAS_BOOLEAN_VALUE),hasNumericValue:i(c,t.HAS_NUMERIC_VALUE),hasPositiveNumericValue:i(c,t.HAS_POSITIVE_NUMERIC_VALUE),hasOverloadedBooleanValue:i(c,t.HAS_OVERLOADED_BOOLEAN_VALUE),hasStringBooleanValue:i(c,t.HAS_STRING_BOOLEAN_VALUE)},1>=s.hasBooleanValue+s.hasNumericValue+s.hasOverloadedBooleanValue||r("50",u),a.hasOwnProperty(u)&&(s.attributeName=a[u]),o.hasOwnProperty(u)&&(s.attributeNamespace=o[u]),e.hasOwnProperty(u)&&(s.mutationMethod=e[u]),An[u]=s}}},An={},Tn=Rn,Fn=Tn.MUST_USE_PROPERTY,In=Tn.HAS_BOOLEAN_VALUE,Nn=Tn.HAS_NUMERIC_VALUE,Mn=Tn.HAS_POSITIVE_NUMERIC_VALUE,Vn=Tn.HAS_OVERLOADED_BOOLEAN_VALUE,Un=Tn.HAS_STRING_BOOLEAN_VALUE,Dn={Properties:{allowFullScreen:In,async:In,autoFocus:In,autoPlay:In,capture:Vn,checked:Fn|In,cols:Mn,contentEditable:Un,controls:In,default:In,defer:In,disabled:In,download:Vn,draggable:Un,formNoValidate:In,hidden:In,loop:In,multiple:Fn|In,muted:Fn|In,noValidate:In,open:In,playsInline:In,readOnly:In,required:In,reversed:In,rows:Mn,rowSpan:Nn,scoped:In,seamless:In,selected:Fn|In,size:Mn,start:Nn,span:Mn,spellCheck:Un,style:0,tabIndex:0,itemScope:In,acceptCharset:0,className:0,htmlFor:0,httpEquiv:0,value:Un},DOMAttributeNames:{acceptCharset:"accept-charset",className:"class",htmlFor:"for",httpEquiv:"http-equiv"},DOMMutationMethods:{value:function(e,t){if(null==t)return e.removeAttribute("value");"number"!==e.type||!1===e.hasAttribute("value")?e.setAttribute("value",""+t):e.validity&&!e.validity.badInput&&e.ownerDocument.activeElement!==e&&e.setAttribute("value",""+t)}}},Ln=Tn.HAS_STRING_BOOLEAN_VALUE,qn={xlink:"http://www.w3.org/1999/xlink",xml:"http://www.w3.org/XML/1998/namespace"},Wn={Properties:{autoReverse:Ln,externalResourcesRequired:Ln,preserveAlpha:Ln},DOMAttributeNames:{autoReverse:"autoReverse",externalResourcesRequired:"externalResourcesRequired",preserveAlpha:"preserveAlpha"},DOMAttributeNamespaces:{xlinkActuate:qn.xlink,xlinkArcrole:qn.xlink,xlinkHref:qn.xlink,xlinkRole:qn.xlink,xlinkShow:qn.xlink,xlinkTitle:qn.xlink,xlinkType:qn.xlink,xmlBase:qn.xml,xmlLang:qn.xml,xmlSpace:qn.xml}},zn=/[\-\:]([a-z])/g;"accent-height alignment-baseline arabic-form baseline-shift cap-height clip-path clip-rule color-interpolation color-interpolation-filters color-profile color-rendering dominant-baseline enable-background fill-opacity fill-rule flood-color flood-opacity font-family font-size font-size-adjust font-stretch font-style font-variant font-weight glyph-name glyph-orientation-horizontal glyph-orientation-vertical horiz-adv-x horiz-origin-x image-rendering letter-spacing lighting-color marker-end marker-mid marker-start overline-position overline-thickness paint-order panose-1 pointer-events rendering-intent shape-rendering stop-color stop-opacity strikethrough-position strikethrough-thickness stroke-dasharray stroke-dashoffset stroke-linecap stroke-linejoin stroke-miterlimit stroke-opacity stroke-width text-anchor text-decoration text-rendering underline-position underline-thickness unicode-bidi unicode-range units-per-em v-alphabetic v-hanging v-ideographic v-mathematical vector-effect vert-adv-y vert-origin-x vert-origin-y word-spacing writing-mode x-height xlink:actuate xlink:arcrole xlink:href xlink:role xlink:show xlink:title xlink:type xml:base xmlns:xlink xml:lang xml:space".split(" ").forEach(function(e){var t=e.replace(zn,u);Wn.Properties[t]=0,Wn.DOMAttributeNames[t]=e}),Tn.injectDOMPropertyConfig(Dn),Tn.injectDOMPropertyConfig(Wn);var Bn={_caughtError:null,_hasCaughtError:!1,_rethrowError:null,_hasRethrowError:!1,injection:{injectErrorUtils:function(e){"function"!=typeof e.invokeGuardedCallback&&r("197"),s=e.invokeGuardedCallback}},invokeGuardedCallback:function(e,t,n,r,i,o,a,u,c){s.apply(Bn,arguments)},invokeGuardedCallbackAndCatchFirstError:function(e,t,n,r,i,o,a,u,s){if(Bn.invokeGuardedCallback.apply(this,arguments),Bn.hasCaughtError()){var c=Bn.clearCaughtError();Bn._hasRethrowError||(Bn._hasRethrowError=!0,Bn._rethrowError=c)}},rethrowCaughtError:function(){return c.apply(Bn,arguments)},hasCaughtError:function(){return Bn._hasCaughtError},clearCaughtError:function(){if(Bn._hasCaughtError){var e=Bn._caughtError;return Bn._caughtError=null,Bn._hasCaughtError=!1,e}r("198")}},Hn=null,Yn={},$n=[],Gn={},Kn={},Jn={},Qn=Object.freeze({plugins:$n,eventNameDispatchConfigs:Gn,registrationNameModules:Kn,registrationNameDependencies:Jn,possibleRegistrationNames:null,injectEventPluginOrder:p,injectEventPluginsByName:d}),Zn=null,Xn=null,er=null,tr=null,nr={injectEventPluginOrder:p,injectEventPluginsByName:d},rr=Object.freeze({injection:nr,getListener:O,extractEvents:w,enqueueEvents:_,processEventQueue:S}),ir=Math.random().toString(36).slice(2),or="__reactInternalInstance$"+ir,ar="__reactEventHandlers$"+ir,ur=Object.freeze({precacheFiberNode:function(e,t){t[or]=e},getClosestInstanceFromNode:E,getInstanceFromNode:function(e){return e=e[or],!e||5!==e.tag&&6!==e.tag?null:e},getNodeFromInstance:x,getFiberCurrentPropsFromNode:j,updateFiberProps:function(e,t){e[ar]=t}}),sr=Object.freeze({accumulateTwoPhaseDispatches:I,accumulateTwoPhaseDispatchesSkipTarget:function(e){y(e,A)},accumulateEnterLeaveDispatches:N,accumulateDirectDispatches:function(e){y(e,F)}}),cr=null,lr={_root:null,_startText:null,_fallbackText:null},fr="dispatchConfig _targetInst nativeEvent isDefaultPrevented isPropagationStopped _dispatchListeners _dispatchInstances".split(" "),pr={type:null,target:null,currentTarget:_n.thatReturnsNull,eventPhase:null,bubbles:null,cancelable:null,timeStamp:function(e){return e.timeStamp||Date.now()},defaultPrevented:null,isTrusted:null};wn(D.prototype,{preventDefault:function(){this.defaultPrevented=!0;var e=this.nativeEvent;e&&(e.preventDefault?e.preventDefault():"unknown"!=typeof e.returnValue&&(e.returnValue=!1),this.isDefaultPrevented=_n.thatReturnsTrue)},stopPropagation:function(){var e=this.nativeEvent;e&&(e.stopPropagation?e.stopPropagation():"unknown"!=typeof e.cancelBubble&&(e.cancelBubble=!0),this.isPropagationStopped=_n.thatReturnsTrue)},persist:function(){this.isPersistent=_n.thatReturnsTrue},isPersistent:_n.thatReturnsFalse,destructor:function(){var e,t=this.constructor.Interface;for(e in t)this[e]=null;for(t=0;t<fr.length;t++)this[fr[t]]=null}}),D.Interface=pr,D.augmentClass=function(e,t){function n(){}n.prototype=this.prototype;var r=new n;wn(r,e.prototype),e.prototype=r,e.prototype.constructor=e,e.Interface=wn({},this.Interface,t),e.augmentClass=this.augmentClass,W(e)},W(D),D.augmentClass(z,{data:null}),D.augmentClass(B,{data:null});var dr=[9,13,27,32],hr=On.canUseDOM&&"CompositionEvent"in window,vr=null;On.canUseDOM&&"documentMode"in document&&(vr=document.documentMode);var yr;if(yr=On.canUseDOM&&"TextEvent"in window&&!vr){var mr=window.opera;yr=!("object"==typeof mr&&"function"==typeof mr.version&&12>=parseInt(mr.version(),10))}var gr,br=yr,Or=On.canUseDOM&&(!hr||vr&&8<vr&&11>=vr),wr=String.fromCharCode(32),_r={beforeInput:{phasedRegistrationNames:{bubbled:"onBeforeInput",captured:"onBeforeInputCapture"},dependencies:["topCompositionEnd","topKeyPress","topTextInput","topPaste"]},compositionEnd:{phasedRegistrationNames:{bubbled:"onCompositionEnd",captured:"onCompositionEndCapture"},dependencies:"topBlur topCompositionEnd topKeyDown topKeyPress topKeyUp topMouseDown".split(" ")},compositionStart:{phasedRegistrationNames:{bubbled:"onCompositionStart",captured:"onCompositionStartCapture"},dependencies:"topBlur topCompositionStart topKeyDown topKeyPress topKeyUp topMouseDown".split(" ")},compositionUpdate:{phasedRegistrationNames:{bubbled:"onCompositionUpdate",captured:"onCompositionUpdateCapture"},dependencies:"topBlur topCompositionUpdate topKeyDown topKeyPress topKeyUp topMouseDown".split(" ")}},Sr=!1,Er=!1,xr={eventTypes:_r,extractEvents:function(e,t,n,r){var i;if(hr)e:{switch(e){case"topCompositionStart":var o=_r.compositionStart;break e;case"topCompositionEnd":o=_r.compositionEnd;break e;case"topCompositionUpdate":o=_r.compositionUpdate;break e}o=void 0}else Er?H(e,n)&&(o=_r.compositionEnd):"topKeyDown"===e&&229===n.keyCode&&(o=_r.compositionStart);return o?(Or&&(Er||o!==_r.compositionStart?o===_r.compositionEnd&&Er&&(i=V()):(lr._root=r,lr._startText=U(),Er=!0)),o=z.getPooled(o,t,n,r),i?o.data=i:null!==(i=Y(n))&&(o.data=i),I(o),i=o):i=null,(e=br?$(e,n):G(e,n))?(t=B.getPooled(_r.beforeInput,t,n,r),t.data=e,I(t)):t=null,[i,t]}},jr=null,kr=null,Cr=null,Pr={injectFiberControlledHostComponent:function(e){jr=e}},Rr=Object.freeze({injection:Pr,enqueueStateRestore:J,restoreStateIfNeeded:Q}),Ar=!1,Tr={color:!0,date:!0,datetime:!0,"datetime-local":!0,email:!0,month:!0,number:!0,password:!0,range:!0,search:!0,tel:!0,text:!0,time:!0,url:!0,week:!0};On.canUseDOM&&(gr=document.implementation&&document.implementation.hasFeature&&!0!==document.implementation.hasFeature("",""));var Fr={change:{phasedRegistrationNames:{bubbled:"onChange",captured:"onChangeCapture"},dependencies:"topBlur topChange topClick topFocus topInput topKeyDown topKeyUp topSelectionChange".split(" ")}},Ir=null,Nr=null,Mr=!1;On.canUseDOM&&(Mr=ne("input")&&(!document.documentMode||9<document.documentMode));var Vr={eventTypes:Fr,_isInputEventSupported:Mr,extractEvents:function(e,t,n,r){var i=t?x(t):window,o=i.nodeName&&i.nodeName.toLowerCase();if("select"===o||"input"===o&&"file"===i.type)var a=le;else if(ee(i))if(Mr)a=ye;else{a=he;var u=de}else!(o=i.nodeName)||"input"!==o.toLowerCase()||"checkbox"!==i.type&&"radio"!==i.type||(a=ve);if(a&&(a=a(e,t)))return ue(a,n,r);u&&u(e,i,t),"topBlur"===e&&null!=t&&(e=t._wrapperState||i._wrapperState)&&e.controlled&&"number"===i.type&&(e=""+i.value,i.getAttribute("value")!==e&&i.setAttribute("value",e))}};D.augmentClass(me,{view:null,detail:null});var Ur={Alt:"altKey",Control:"ctrlKey",Meta:"metaKey",Shift:"shiftKey"};me.augmentClass(Oe,{screenX:null,screenY:null,clientX:null,clientY:null,pageX:null,pageY:null,ctrlKey:null,shiftKey:null,altKey:null,metaKey:null,getModifierState:be,button:null,buttons:null,relatedTarget:function(e){return e.relatedTarget||(e.fromElement===e.srcElement?e.toElement:e.fromElement)}});var Dr={mouseEnter:{registrationName:"onMouseEnter",dependencies:["topMouseOut","topMouseOver"]},mouseLeave:{registrationName:"onMouseLeave",dependencies:["topMouseOut","topMouseOver"]}},Lr={eventTypes:Dr,extractEvents:function(e,t,n,r){if("topMouseOver"===e&&(n.relatedTarget||n.fromElement)||"topMouseOut"!==e&&"topMouseOver"!==e)return null;var i=r.window===r?r:(i=r.ownerDocument)?i.defaultView||i.parentWindow:window;if("topMouseOut"===e?(e=t,t=(t=n.relatedTarget||n.toElement)?E(t):null):e=null,e===t)return null;var o=null==e?i:x(e);i=null==t?i:x(t);var a=Oe.getPooled(Dr.mouseLeave,e,n,r);return a.type="mouseleave",a.target=o,a.relatedTarget=i,n=Oe.getPooled(Dr.mouseEnter,t,n,r),n.type="mouseenter",n.target=i,n.relatedTarget=o,N(a,n,e,t),[a,n]}},qr=bn.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.ReactCurrentOwner,Wr=[],zr=!0,Br=void 0,Hr=Object.freeze({get _enabled(){return zr},get _handleTopLevel(){return Br},setHandleTopLevel:function(e){Br=e},setEnabled:Pe,isEnabled:function(){return zr},trapBubbledEvent:Re,trapCapturedEvent:Ae,dispatchEvent:Te}),Yr={animationend:Fe("Animation","AnimationEnd"),animationiteration:Fe("Animation","AnimationIteration"),animationstart:Fe("Animation","AnimationStart"),transitionend:Fe("Transition","TransitionEnd")},$r={},Gr={};On.canUseDOM&&(Gr=document.createElement("div").style,"AnimationEvent"in window||(delete Yr.animationend.animation,delete Yr.animationiteration.animation,delete Yr.animationstart.animation),"TransitionEvent"in window||delete Yr.transitionend.transition);var Kr={topAbort:"abort",topAnimationEnd:Ie("animationend")||"animationend",topAnimationIteration:Ie("animationiteration")||"animationiteration",topAnimationStart:Ie("animationstart")||"animationstart",topBlur:"blur",topCancel:"cancel",topCanPlay:"canplay",topCanPlayThrough:"canplaythrough",topChange:"change",topClick:"click",topClose:"close",topCompositionEnd:"compositionend",topCompositionStart:"compositionstart",topCompositionUpdate:"compositionupdate",topContextMenu:"contextmenu",topCopy:"copy",topCut:"cut",topDoubleClick:"dblclick",topDrag:"drag",topDragEnd:"dragend",topDragEnter:"dragenter",topDragExit:"dragexit",topDragLeave:"dragleave",topDragOver:"dragover",topDragStart:"dragstart",topDrop:"drop",topDurationChange:"durationchange",topEmptied:"emptied",topEncrypted:"encrypted",topEnded:"ended",topError:"error",topFocus:"focus",topInput:"input",topKeyDown:"keydown",topKeyPress:"keypress",topKeyUp:"keyup",topLoadedData:"loadeddata",topLoad:"load",topLoadedMetadata:"loadedmetadata",topLoadStart:"loadstart",topMouseDown:"mousedown",topMouseMove:"mousemove",topMouseOut:"mouseout",topMouseOver:"mouseover",topMouseUp:"mouseup",topPaste:"paste",topPause:"pause",topPlay:"play",topPlaying:"playing",topProgress:"progress",topRateChange:"ratechange",topScroll:"scroll",topSeeked:"seeked",topSeeking:"seeking",topSelectionChange:"selectionchange",topStalled:"stalled",topSuspend:"suspend",topTextInput:"textInput",topTimeUpdate:"timeupdate",topToggle:"toggle",topTouchCancel:"touchcancel",topTouchEnd:"touchend",topTouchMove:"touchmove",topTouchStart:"touchstart",topTransitionEnd:Ie("transitionend")||"transitionend",topVolumeChange:"volumechange",topWaiting:"waiting",topWheel:"wheel"},Jr={},Qr=0,Zr="_reactListenersID"+(""+Math.random()).slice(2),Xr=On.canUseDOM&&"documentMode"in document&&11>=document.documentMode,ei={select:{phasedRegistrationNames:{bubbled:"onSelect",captured:"onSelectCapture"},dependencies:"topBlur topContextMenu topFocus topKeyDown topKeyUp topMouseDown topMouseUp topSelectionChange".split(" ")}},ti=null,ni=null,ri=null,ii=!1,oi={eventTypes:ei,extractEvents:function(e,t,n,r){var i,o=r.window===r?r.document:9===r.nodeType?r:r.ownerDocument;if(!(i=!o)){e:{o=Ne(o),i=Jn.onSelect;for(var a=0;a<i.length;a++){var u=i[a];if(!o.hasOwnProperty(u)||!o[u]){o=!1;break e}}o=!0}i=!o}if(i)return null;switch(o=t?x(t):window,e){case"topFocus":(ee(o)||"true"===o.contentEditable)&&(ti=o,ni=t,ri=null);break;case"topBlur":ri=ni=ti=null;break;case"topMouseDown":ii=!0;break;case"topContextMenu":case"topMouseUp":return ii=!1,De(n,r);case"topSelectionChange":if(Xr)break;case"topKeyDown":case"topKeyUp":return De(n,r)}return null}};D.augmentClass(Le,{animationName:null,elapsedTime:null,pseudoElement:null}),D.augmentClass(qe,{clipboardData:function(e){return"clipboardData"in e?e.clipboardData:window.clipboardData}}),me.augmentClass(We,{relatedTarget:null});var ai={Esc:"Escape",Spacebar:" ",Left:"ArrowLeft",Up:"ArrowUp",Right:"ArrowRight",Down:"ArrowDown",Del:"Delete",Win:"OS",Menu:"ContextMenu",Apps:"ContextMenu",Scroll:"ScrollLock",MozPrintableKey:"Unidentified"},ui={8:"Backspace",9:"Tab",12:"Clear",13:"Enter",16:"Shift",17:"Control",18:"Alt",19:"Pause",20:"CapsLock",27:"Escape",32:" ",33:"PageUp",34:"PageDown",35:"End",36:"Home",37:"ArrowLeft",38:"ArrowUp",39:"ArrowRight",40:"ArrowDown",45:"Insert",46:"Delete",112:"F1",113:"F2",114:"F3",115:"F4",116:"F5",117:"F6",118:"F7",119:"F8",120:"F9",121:"F10",122:"F11",123:"F12",144:"NumLock",145:"ScrollLock",224:"Meta"};me.augmentClass(Be,{key:function(e){if(e.key){var t=ai[e.key]||e.key;if("Unidentified"!==t)return t}return"keypress"===e.type?(e=ze(e),13===e?"Enter":String.fromCharCode(e)):"keydown"===e.type||"keyup"===e.type?ui[e.keyCode]||"Unidentified":""},location:null,ctrlKey:null,shiftKey:null,altKey:null,metaKey:null,repeat:null,locale:null,getModifierState:be,charCode:function(e){return"keypress"===e.type?ze(e):0},keyCode:function(e){return"keydown"===e.type||"keyup"===e.type?e.keyCode:0},which:function(e){return"keypress"===e.type?ze(e):"keydown"===e.type||"keyup"===e.type?e.keyCode:0}}),Oe.augmentClass(He,{dataTransfer:null}),me.augmentClass(Ye,{touches:null,targetTouches:null,changedTouches:null,altKey:null,metaKey:null,ctrlKey:null,shiftKey:null,getModifierState:be}),D.augmentClass($e,{propertyName:null,elapsedTime:null,pseudoElement:null}),Oe.augmentClass(Ge,{deltaX:function(e){return"deltaX"in e?e.deltaX:"wheelDeltaX"in e?-e.wheelDeltaX:0},deltaY:function(e){return"deltaY"in e?e.deltaY:"wheelDeltaY"in e?-e.wheelDeltaY:"wheelDelta"in e?-e.wheelDelta:0},deltaZ:null,deltaMode:null});var si={},ci={};"abort animationEnd animationIteration animationStart blur cancel canPlay canPlayThrough click close contextMenu copy cut doubleClick drag dragEnd dragEnter dragExit dragLeave dragOver dragStart drop durationChange emptied encrypted ended error focus input invalid keyDown keyPress keyUp load loadedData loadedMetadata loadStart mouseDown mouseMove mouseOut mouseOver mouseUp paste pause play playing progress rateChange reset scroll seeked seeking stalled submit suspend timeUpdate toggle touchCancel touchEnd touchMove touchStart transitionEnd volumeChange waiting wheel".split(" ").forEach(function(e){var t=e[0].toUpperCase()+e.slice(1),n="on"+t;t="top"+t,n={phasedRegistrationNames:{bubbled:n,captured:n+"Capture"},dependencies:[t]},si[e]=n,ci[t]=n});var li={eventTypes:si,extractEvents:function(e,t,n,r){var i=ci[e];if(!i)return null;switch(e){case"topKeyPress":if(0===ze(n))return null;case"topKeyDown":case"topKeyUp":e=Be;break;case"topBlur":case"topFocus":e=We;break;case"topClick":if(2===n.button)return null;case"topDoubleClick":case"topMouseDown":case"topMouseMove":case"topMouseUp":case"topMouseOut":case"topMouseOver":case"topContextMenu":e=Oe;break;case"topDrag":case"topDragEnd":case"topDragEnter":case"topDragExit":case"topDragLeave":case"topDragOver":case"topDragStart":case"topDrop":e=He;break;case"topTouchCancel":case"topTouchEnd":case"topTouchMove":case"topTouchStart":e=Ye;break;case"topAnimationEnd":case"topAnimationIteration":case"topAnimationStart":e=Le;break;case"topTransitionEnd":e=$e;break;case"topScroll":e=me;break;case"topWheel":e=Ge;break;case"topCopy":case"topCut":case"topPaste":e=qe;break;default:e=D}return t=e.getPooled(i,t,n,r),I(t),t}};Br=function(e,t,n,r){e=w(e,t,n,r),_(e),S(!1)},nr.injectEventPluginOrder("ResponderEventPlugin SimpleEventPlugin TapEventPlugin EnterLeaveEventPlugin ChangeEventPlugin SelectEventPlugin BeforeInputEventPlugin".split(" ")),Zn=ur.getFiberCurrentPropsFromNode,Xn=ur.getInstanceFromNode,er=ur.getNodeFromInstance,nr.injectEventPluginsByName({SimpleEventPlugin:li,EnterLeaveEventPlugin:Lr,ChangeEventPlugin:Vr,SelectEventPlugin:oi,BeforeInputEventPlugin:xr});var fi=[],pi=-1;new Set;var di={current:Cn},hi={current:!1},vi=Cn,yi=null,mi=null,gi="function"==typeof Symbol&&Symbol.for,bi=gi?Symbol.for("react.element"):60103,Oi=gi?Symbol.for("react.call"):60104,wi=gi?Symbol.for("react.return"):60105,_i=gi?Symbol.for("react.portal"):60106,Si=gi?Symbol.for("react.fragment"):60107,Ei="function"==typeof Symbol&&Symbol.iterator,xi=Array.isArray,ji=kt(!0),ki=kt(!1),Ci={},Pi=Object.freeze({default:It}),Ri=Pi&&It||Pi,Ai=Ri.default?Ri.default:Ri,Ti="object"==typeof performance&&"function"==typeof performance.now,Fi=void 0;Fi=Ti?function(){return performance.now()}:function(){return Date.now()};var Ii=void 0,Ni=void 0;if(On.canUseDOM)if("function"!=typeof requestIdleCallback||"function"!=typeof cancelIdleCallback){var Mi,Vi=null,Ui=!1,Di=-1,Li=!1,qi=0,Wi=33,zi=33;Mi=Ti?{didTimeout:!1,timeRemaining:function(){var e=qi-performance.now();return 0<e?e:0}}:{didTimeout:!1,timeRemaining:function(){var e=qi-Date.now();return 0<e?e:0}};var Bi="__reactIdleCallback$"+Math.random().toString(36).slice(2);window.addEventListener("message",function(e){if(e.source===window&&e.data===Bi){if(Ui=!1,e=Fi(),0>=qi-e){if(!(-1!==Di&&Di<=e))return void(Li||(Li=!0,requestAnimationFrame(Hi)));Mi.didTimeout=!0}else Mi.didTimeout=!1;Di=-1,e=Vi,Vi=null,null!==e&&e(Mi)}},!1);var Hi=function(e){Li=!1;var t=e-qi+zi;t<zi&&Wi<zi?(8>t&&(t=8),zi=t<Wi?Wi:t):Wi=t,qi=e+zi,Ui||(Ui=!0,window.postMessage(Bi,"*"))};Ii=function(e,t){return Vi=e,null!=t&&"number"==typeof t.timeout&&(Di=Fi()+t.timeout),Li||(Li=!0,requestAnimationFrame(Hi)),0},Ni=function(){Vi=null,Ui=!1,Di=-1}}else Ii=window.requestIdleCallback,Ni=window.cancelIdleCallback;else Ii=function(e){return setTimeout(function(){e({timeRemaining:function(){return 1/0}})})},Ni=function(e){clearTimeout(e)};var Yi=/^[:A-Z_a-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD][:A-Z_a-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD\-.0-9\u00B7\u0300-\u036F\u203F-\u2040]*$/,$i={},Gi={},Ki={html:"http://www.w3.org/1999/xhtml",mathml:"http://www.w3.org/1998/Math/MathML",svg:"http://www.w3.org/2000/svg"},Ji=void 0,Qi=function(e){return"undefined"!=typeof MSApp&&MSApp.execUnsafeLocalFunction?function(t,n,r,i){MSApp.execUnsafeLocalFunction(function(){return e(t,n)})}:e}(function(e,t){if(e.namespaceURI!==Ki.svg||"innerHTML"in e)e.innerHTML=t;else{for(Ji=Ji||document.createElement("div"),Ji.innerHTML="<svg>"+t+"</svg>",t=Ji.firstChild;e.firstChild;)e.removeChild(e.firstChild);for(;t.firstChild;)e.appendChild(t.firstChild)}}),Zi={animationIterationCount:!0,borderImageOutset:!0,borderImageSlice:!0,borderImageWidth:!0,boxFlex:!0,boxFlexGroup:!0,boxOrdinalGroup:!0,columnCount:!0,columns:!0,flex:!0,flexGrow:!0,flexPositive:!0,flexShrink:!0,flexNegative:!0,flexOrder:!0,gridRow:!0,gridRowEnd:!0,gridRowSpan:!0,gridRowStart:!0,gridColumn:!0,gridColumnEnd:!0,gridColumnSpan:!0,gridColumnStart:!0,fontWeight:!0,lineClamp:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,tabSize:!0,widows:!0,zIndex:!0,zoom:!0,fillOpacity:!0,floodOpacity:!0,stopOpacity:!0,strokeDasharray:!0,strokeDashoffset:!0,strokeMiterlimit:!0,strokeOpacity:!0,strokeWidth:!0},Xi=["Webkit","ms","Moz","O"];Object.keys(Zi).forEach(function(e){Xi.forEach(function(t){t=t+e.charAt(0).toUpperCase()+e.substring(1),Zi[t]=Zi[e]})});var eo=wn({menuitem:!0},{area:!0,base:!0,br:!0,col:!0,embed:!0,hr:!0,img:!0,input:!0,keygen:!0,link:!0,meta:!0,param:!0,source:!0,track:!0,wbr:!0}),to=Ki.html,no=_n.thatReturns(""),ro={topAbort:"abort",topCanPlay:"canplay",topCanPlayThrough:"canplaythrough",topDurationChange:"durationchange",topEmptied:"emptied",topEncrypted:"encrypted",topEnded:"ended",topError:"error",topLoadedData:"loadeddata",topLoadedMetadata:"loadedmetadata",topLoadStart:"loadstart",topPause:"pause",topPlay:"play",topPlaying:"playing",topProgress:"progress",topRateChange:"ratechange",topSeeked:"seeked",topSeeking:"seeking",topStalled:"stalled",topSuspend:"suspend",topTimeUpdate:"timeupdate",topVolumeChange:"volumechange",topWaiting:"waiting"},io=Object.freeze({createElement:un,createTextNode:sn,setInitialProperties:cn,diffProperties:ln,updateProperties:fn,diffHydratedProperties:pn,diffHydratedText:dn,warnForUnmatchedText:function(){},warnForDeletedHydratableElement:function(){},warnForDeletedHydratableText:function(){},warnForInsertedHydratedElement:function(){},warnForInsertedHydratedText:function(){},restoreControlledState:function(e,t,n){switch(t){case"input":if(zt(e,n),t=n.name,"radio"===n.type&&null!=t){for(n=e;n.parentNode;)n=n.parentNode;for(n=n.querySelectorAll("input[name="+JSON.stringify(""+t)+'][type="radio"]'),t=0;t<n.length;t++){var i=n[t];if(i!==e&&i.form===e.form){var o=j(i);o||r("90"),ae(i),zt(i,o)}}}break;case"textarea":Qt(e,n);break;case"select":null!=(t=n.value)&&$t(e,!!n.multiple,t,!1)}}});Pr.injectFiberControlledHostComponent(io);var oo=null,ao=null,uo=Ai({getRootHostContext:function(e){var t=e.nodeType;switch(t){case 9:case 11:e=(e=e.documentElement)?e.namespaceURI:en(null,"");break;default:t=8===t?e.parentNode:e,e=t.namespaceURI||null,t=t.tagName,e=en(e,t)}return e},getChildHostContext:function(e,t){return en(e,t)},getPublicInstance:function(e){return e},prepareForCommit:function(){oo=zr;var e=En();if(Ue(e)){if("selectionStart"in e)var t={start:e.selectionStart,end:e.selectionEnd};else e:{var n=window.getSelection&&window.getSelection();if(n&&0!==n.rangeCount){t=n.anchorNode;var r=n.anchorOffset,i=n.focusNode;n=n.focusOffset;try{t.nodeType,i.nodeType}catch(e){t=null;break e}var o=0,a=-1,u=-1,s=0,c=0,l=e,f=null;t:for(;;){for(var p;l!==t||0!==r&&3!==l.nodeType||(a=o+r),l!==i||0!==n&&3!==l.nodeType||(u=o+n),3===l.nodeType&&(o+=l.nodeValue.length),null!==(p=l.firstChild);)f=l,l=p;for(;;){if(l===e)break t;if(f===t&&++s===r&&(a=o),f===i&&++c===n&&(u=o),null!==(p=l.nextSibling))break;l=f,f=l.parentNode}l=p}t=-1===a||-1===u?null:{start:a,end:u}}else t=null}t=t||{start:0,end:0}}else t=null;ao={focusedElem:e,selectionRange:t},Pe(!1)},resetAfterCommit:function(){var e=ao,t=En(),n=e.focusedElem,r=e.selectionRange;if(t!==n&&jn(document.documentElement,n)){if(Ue(n))if(t=r.start,e=r.end,void 0===e&&(e=t),"selectionStart"in n)n.selectionStart=t,n.selectionEnd=Math.min(e,n.value.length);else if(window.getSelection){t=window.getSelection();var i=n[M()].length;e=Math.min(r.start,i),r=void 0===r.end?e:Math.min(r.end,i),!t.extend&&e>r&&(i=r,r=e,e=i),i=Ve(n,e);var o=Ve(n,r);if(i&&o&&(1!==t.rangeCount||t.anchorNode!==i.node||t.anchorOffset!==i.offset||t.focusNode!==o.node||t.focusOffset!==o.offset)){var a=document.createRange();a.setStart(i.node,i.offset),t.removeAllRanges(),e>r?(t.addRange(a),t.extend(o.node,o.offset)):(a.setEnd(o.node,o.offset),t.addRange(a))}}for(t=[],e=n;e=e.parentNode;)1===e.nodeType&&t.push({element:e,left:e.scrollLeft,top:e.scrollTop});for(kn(n),n=0;n<t.length;n++)e=t[n],e.element.scrollLeft=e.left,e.element.scrollTop=e.top}ao=null,Pe(oo),oo=null},createInstance:function(e,t,n,r,i){return e=un(e,t,n,r),e[or]=i,e[ar]=t,e},appendInitialChild:function(e,t){e.appendChild(t)},finalizeInitialChildren:function(e,t,n,r){cn(e,t,n,r);e:{switch(t){case"button":case"input":case"select":case"textarea":e=!!n.autoFocus;break e}e=!1}return e},prepareUpdate:function(e,t,n,r,i){return ln(e,t,n,r,i)},shouldSetTextContent:function(e,t){return"textarea"===e||"string"==typeof t.children||"number"==typeof t.children||"object"==typeof t.dangerouslySetInnerHTML&&null!==t.dangerouslySetInnerHTML&&"string"==typeof t.dangerouslySetInnerHTML.__html},shouldDeprioritizeSubtree:function(e,t){return!!t.hidden},createTextInstance:function(e,t,n,r){return e=sn(e,t),e[or]=r,e},now:Fi,mutation:{commitMount:function(e){e.focus()},commitUpdate:function(e,t,n,r,i){e[ar]=i,fn(e,t,n,r,i)},resetTextContent:function(e){e.textContent=""},commitTextUpdate:function(e,t,n){e.nodeValue=n},appendChild:function(e,t){e.appendChild(t)},appendChildToContainer:function(e,t){8===e.nodeType?e.parentNode.insertBefore(t,e):e.appendChild(t)},insertBefore:function(e,t,n){e.insertBefore(t,n)},insertInContainerBefore:function(e,t,n){8===e.nodeType?e.parentNode.insertBefore(t,n):e.insertBefore(t,n)},removeChild:function(e,t){e.removeChild(t)},removeChildFromContainer:function(e,t){8===e.nodeType?e.parentNode.removeChild(t):e.removeChild(t)}},hydration:{canHydrateInstance:function(e,t){return 1!==e.nodeType||t.toLowerCase()!==e.nodeName.toLowerCase()?null:e},canHydrateTextInstance:function(e,t){return""===t||3!==e.nodeType?null:e},getNextHydratableSibling:function(e){for(e=e.nextSibling;e&&1!==e.nodeType&&3!==e.nodeType;)e=e.nextSibling;return e},getFirstHydratableChild:function(e){for(e=e.firstChild;e&&1!==e.nodeType&&3!==e.nodeType;)e=e.nextSibling;return e},hydrateInstance:function(e,t,n,r,i,o){return e[or]=o,e[ar]=n,pn(e,t,n,i,r)},hydrateTextInstance:function(e,t,n){return e[or]=n,dn(e,t)},didNotMatchHydratedContainerTextInstance:function(){},didNotMatchHydratedTextInstance:function(){},didNotHydrateContainerInstance:function(){},didNotHydrateInstance:function(){},didNotFindHydratableContainerInstance:function(){},didNotFindHydratableContainerTextInstance:function(){},didNotFindHydratableInstance:function(){},didNotFindHydratableTextInstance:function(){}},scheduleDeferredCallback:Ii,cancelDeferredCallback:Ni,useSyncScheduling:!0});Z=uo.batchedUpdates,gn.prototype.render=function(e,t){uo.updateContainer(e,this._reactRootContainer,null,t)},gn.prototype.unmount=function(e){uo.updateContainer(null,this._reactRootContainer,null,e)};var so={createPortal:mn,findDOMNode:function(e){if(null==e)return null;if(1===e.nodeType)return e;var t=e._reactInternalFiber;if(t)return uo.findHostInstance(t);"function"==typeof e.render?r("188"):r("213",Object.keys(e))},hydrate:function(e,t,n){return yn(null,e,t,!0,n)},render:function(e,t,n){return yn(null,e,t,!1,n)},unstable_renderSubtreeIntoContainer:function(e,t,n,i){return(null==e||void 0===e._reactInternalFiber)&&r("38"),yn(e,t,n,!1,i)},unmountComponentAtNode:function(e){return hn(e)||r("40"),!!e._reactRootContainer&&(uo.unbatchedUpdates(function(){yn(null,null,e,!1,function(){e._reactRootContainer=null})}),!0)},unstable_createPortal:mn,unstable_batchedUpdates:X,unstable_deferredUpdates:uo.deferredUpdates,flushSync:uo.flushSync,__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED:{EventPluginHub:rr,EventPluginRegistry:Qn,EventPropagators:sr,ReactControlledComponent:Rr,ReactDOMComponentTree:ur,ReactDOMEventListener:Hr}};uo.injectIntoDevTools({findFiberByHostInstance:E,bundleType:0,version:"16.2.0",rendererPackageName:"react-dom"});var co=Object.freeze({default:so}),lo=co&&so||co;e.exports=lo.default?lo.default:lo},function(e,t,n){"use strict";function r(){if("undefined"!=typeof __REACT_DEVTOOLS_GLOBAL_HOOK__&&"function"==typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE)try{__REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE(r)}catch(e){console.error(e)}}r(),e.exports=n(532)},function(e,t,n){"use strict";function r(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function i(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function o(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}function a(){var e,t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"store",n=arguments[1],a=n||t+"Subscription",s=function(e){function n(o,a){r(this,n);var u=i(this,e.call(this,o,a));return u[t]=o.store,u}return o(n,e),n.prototype.getChildContext=function(){var e;return e={},e[t]=this[t],e[a]=null,e},n.prototype.render=function(){return u.Children.only(this.props.children)},n}(u.Component);return s.propTypes={store:l.a.isRequired,children:c.a.element.isRequired},s.childContextTypes=(e={},e[t]=l.a.isRequired,e[a]=l.b,e),s}t.b=a;var u=n(11),s=(n.n(u),n(17)),c=n.n(s),l=n(195);n(132);t.a=a()},function(e,t,n){"use strict";function r(e,t){var n={};for(var r in e)t.indexOf(r)>=0||Object.prototype.hasOwnProperty.call(e,r)&&(n[r]=e[r]);return n}function i(e,t,n){for(var r=t.length-1;r>=0;r--){var i=t[r](e);if(i)return i}return function(t,r){throw new Error("Invalid value of type "+typeof e+" for "+n+" argument when connecting component "+r.wrappedComponentName+".")}}function o(e,t){return e===t}var a=n(193),u=n(542),s=n(536),c=n(537),l=n(538),f=n(539),p=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e};t.a=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=e.connectHOC,n=void 0===t?a.a:t,d=e.mapStateToPropsFactories,h=void 0===d?c.a:d,v=e.mapDispatchToPropsFactories,y=void 0===v?s.a:v,m=e.mergePropsFactories,g=void 0===m?l.a:m,b=e.selectorFactory,O=void 0===b?f.a:b;return function(e,t,a){var s=arguments.length>3&&void 0!==arguments[3]?arguments[3]:{},c=s.pure,l=void 0===c||c,f=s.areStatesEqual,d=void 0===f?o:f,v=s.areOwnPropsEqual,m=void 0===v?u.a:v,b=s.areStatePropsEqual,w=void 0===b?u.a:b,_=s.areMergedPropsEqual,S=void 0===_?u.a:_,E=r(s,["pure","areStatesEqual","areOwnPropsEqual","areStatePropsEqual","areMergedPropsEqual"]),x=i(e,h,"mapStateToProps"),j=i(t,y,"mapDispatchToProps"),k=i(a,g,"mergeProps");return n(O,p({methodName:"connect",getDisplayName:function(e){return"Connect("+e+")"},shouldHandleStateChanges:Boolean(e),initMapStateToProps:x,initMapDispatchToProps:j,initMergeProps:k,pure:l,areStatesEqual:d,areOwnPropsEqual:m,areStatePropsEqual:w,areMergedPropsEqual:S},E))}}()},function(e,t,n){"use strict";function r(e){return"function"==typeof e?n.i(u.a)(e,"mapDispatchToProps"):void 0}function i(e){return e?void 0:n.i(u.b)(function(e){return{dispatch:e}})}function o(e){return e&&"object"==typeof e?n.i(u.b)(function(t){return n.i(a.bindActionCreators)(e,t)}):void 0}var a=n(88),u=n(194);t.a=[r,i,o]},function(e,t,n){"use strict";function r(e){return"function"==typeof e?n.i(o.a)(e,"mapStateToProps"):void 0}function i(e){return e?void 0:n.i(o.b)(function(){return{}})}var o=n(194);t.a=[r,i]},function(e,t,n){"use strict";function r(e,t,n){return u({},n,e,t)}function i(e){return function(t,n){var r=(n.displayName,n.pure),i=n.areMergedPropsEqual,o=!1,a=void 0;return function(t,n,u){var s=e(t,n,u);return o?r&&i(s,a)||(a=s):(o=!0,a=s),a}}}function o(e){return"function"==typeof e?i(e):void 0}function a(e){return e?void 0:function(){return r}}var u=(n(196),Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e});t.a=[o,a]},function(e,t,n){"use strict";function r(e,t){var n={};for(var r in e)t.indexOf(r)>=0||Object.prototype.hasOwnProperty.call(e,r)&&(n[r]=e[r]);return n}function i(e,t,n,r){return function(i,o){return n(e(i,o),t(r,o),o)}}function o(e,t,n,r,i){function o(i,o){return h=i,v=o,y=e(h,v),m=t(r,v),g=n(y,m,v),d=!0,g}function a(){return y=e(h,v),t.dependsOnOwnProps&&(m=t(r,v)),g=n(y,m,v)}function u(){return e.dependsOnOwnProps&&(y=e(h,v)),t.dependsOnOwnProps&&(m=t(r,v)),g=n(y,m,v)}function s(){var t=e(h,v),r=!p(t,y);return y=t,r&&(g=n(y,m,v)),g}function c(e,t){var n=!f(t,v),r=!l(e,h);return h=e,v=t,n&&r?a():n?u():r?s():g}var l=i.areStatesEqual,f=i.areOwnPropsEqual,p=i.areStatePropsEqual,d=!1,h=void 0,v=void 0,y=void 0,m=void 0,g=void 0;return function(e,t){return d?c(e,t):o(e,t)}}function a(e,t){var n=t.initMapStateToProps,a=t.initMapDispatchToProps,u=t.initMergeProps,s=r(t,["initMapStateToProps","initMapDispatchToProps","initMergeProps"]),c=n(e,s),l=a(e,s),f=u(e,s);return(s.pure?o:i)(c,l,f,e,s)}t.a=a;n(540)},function(e,t,n){"use strict";n(132)},function(e,t,n){"use strict";function r(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function i(){var e=[],t=[];return{clear:function(){t=o,e=o},notify:function(){for(var n=e=t,r=0;r<n.length;r++)n[r]()},get:function(){return t},subscribe:function(n){var r=!0;return t===e&&(t=e.slice()),t.push(n),function(){r&&e!==o&&(r=!1,t===e&&(t=e.slice()),t.splice(t.indexOf(n),1))}}}}n.d(t,"a",function(){return u});var o=null,a={notify:function(){}},u=function(){function e(t,n,i){r(this,e),this.store=t,this.parentSub=n,this.onStateChange=i,this.unsubscribe=null,this.listeners=a}return e.prototype.addNestedSub=function(e){return this.trySubscribe(),this.listeners.subscribe(e)},e.prototype.notifyNestedSubs=function(){this.listeners.notify()},e.prototype.isSubscribed=function(){return Boolean(this.unsubscribe)},e.prototype.trySubscribe=function(){this.unsubscribe||(this.unsubscribe=this.parentSub?this.parentSub.addNestedSub(this.onStateChange):this.store.subscribe(this.onStateChange),this.listeners=i())},e.prototype.tryUnsubscribe=function(){this.unsubscribe&&(this.unsubscribe(),this.unsubscribe=null,this.listeners.clear(),this.listeners=a)},e}()},function(e,t,n){"use strict";function r(e,t){return e===t?0!==e||0!==t||1/e==1/t:e!==e&&t!==t}function i(e,t){if(r(e,t))return!0;if("object"!=typeof e||null===e||"object"!=typeof t||null===t)return!1;var n=Object.keys(e),i=Object.keys(t);if(n.length!==i.length)return!1;for(var a=0;a<n.length;a++)if(!o.call(t,n[a])||!r(e[n[a]],t[n[a]]))return!1;return!0}t.a=i;var o=Object.prototype.hasOwnProperty},function(e,t,n){"use strict";function r(e){for(var t=arguments.length-1,n="Minified React error #"+e+"; visit http://facebook.github.io/react/docs/error-decoder.html?invariant="+e,r=0;r<t;r++)n+="&args[]="+encodeURIComponent(arguments[r+1]);throw t=Error(n+" for the full message or use the non-minified dev environment for full errors and additional helpful warnings."),t.name="Invariant Violation",t.framesToPop=1,t}function i(e,t,n){this.props=e,this.context=t,this.refs=b,this.updater=n||C}function o(e,t,n){this.props=e,this.context=t,this.refs=b,this.updater=n||C}function a(){}function u(e,t,n){this.props=e,this.context=t,this.refs=b,this.updater=n||C}function s(e,t,n){var r,i={},o=null,a=null;if(null!=t)for(r in void 0!==t.ref&&(a=t.ref),void 0!==t.key&&(o=""+t.key),t)T.call(t,r)&&!F.hasOwnProperty(r)&&(i[r]=t[r]);var u=arguments.length-2;if(1===u)i.children=n;else if(1<u){for(var s=Array(u),c=0;c<u;c++)s[c]=arguments[c+2];i.children=s}if(e&&e.defaultProps)for(r in u=e.defaultProps)void 0===i[r]&&(i[r]=u[r]);return{$$typeof:_,type:e,key:o,ref:a,props:i,_owner:A.current}}function c(e){return"object"==typeof e&&null!==e&&e.$$typeof===_}function l(e){var t={"=":"=0",":":"=2"};return"$"+(""+e).replace(/[=:]/g,function(e){return t[e]})}function f(e,t,n,r){if(N.length){var i=N.pop();return i.result=e,i.keyPrefix=t,i.func=n,i.context=r,i.count=0,i}return{result:e,keyPrefix:t,func:n,context:r,count:0}}function p(e){e.result=null,e.keyPrefix=null,e.func=null,e.context=null,e.count=0,10>N.length&&N.push(e)}function d(e,t,n,i){var o=typeof e;"undefined"!==o&&"boolean"!==o||(e=null);var a=!1;if(null===e)a=!0;else switch(o){case"string":case"number":a=!0;break;case"object":switch(e.$$typeof){case _:case S:case E:case x:a=!0}}if(a)return n(i,e,""===t?"."+h(e,0):t),1;if(a=0,t=""===t?".":t+":",Array.isArray(e))for(var u=0;u<e.length;u++){o=e[u];var s=t+h(o,u);a+=d(o,s,n,i)}else if(null===e||void 0===e?s=null:(s=k&&e[k]||e["@@iterator"],s="function"==typeof s?s:null),"function"==typeof s)for(e=s.call(e),u=0;!(o=e.next()).done;)o=o.value,s=t+h(o,u++),a+=d(o,s,n,i);else"object"===o&&(n=""+e,r("31","[object Object]"===n?"object with keys {"+Object.keys(e).join(", ")+"}":n,""));return a}function h(e,t){return"object"==typeof e&&null!==e&&null!=e.key?l(e.key):t.toString(36)}function v(e,t){e.func.call(e.context,t,e.count++)}function y(e,t,n){var r=e.result,i=e.keyPrefix;e=e.func.call(e.context,t,e.count++),Array.isArray(e)?m(e,r,n,O.thatReturnsArgument):null!=e&&(c(e)&&(t=i+(!e.key||t&&t.key===e.key?"":(""+e.key).replace(I,"$&/")+"/")+n,e={$$typeof:_,type:e.type,key:t,ref:e.ref,props:e.props,_owner:e._owner}),r.push(e))}function m(e,t,n,r,i){var o="";null!=n&&(o=(""+n).replace(I,"$&/")+"/"),t=f(t,o,r,i),null==e||d(e,"",y,t),p(t)}/** @license React v16.2.0 * react.production.min.js * * Copyright (c) 2013-present, Facebook, Inc. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ var g=n(192),b=n(169),O=n(77),w="function"==typeof Symbol&&Symbol.for,_=w?Symbol.for("react.element"):60103,S=w?Symbol.for("react.call"):60104,E=w?Symbol.for("react.return"):60105,x=w?Symbol.for("react.portal"):60106,j=w?Symbol.for("react.fragment"):60107,k="function"==typeof Symbol&&Symbol.iterator,C={isMounted:function(){return!1},enqueueForceUpdate:function(){},enqueueReplaceState:function(){},enqueueSetState:function(){}};i.prototype.isReactComponent={},i.prototype.setState=function(e,t){"object"!=typeof e&&"function"!=typeof e&&null!=e&&r("85"),this.updater.enqueueSetState(this,e,t,"setState")},i.prototype.forceUpdate=function(e){this.updater.enqueueForceUpdate(this,e,"forceUpdate")},a.prototype=i.prototype;var P=o.prototype=new a;P.constructor=o,g(P,i.prototype),P.isPureReactComponent=!0;var R=u.prototype=new a;R.constructor=u,g(R,i.prototype),R.unstable_isAsyncReactComponent=!0,R.render=function(){return this.props.children};var A={current:null},T=Object.prototype.hasOwnProperty,F={key:!0,ref:!0,__self:!0,__source:!0},I=/\/+/g,N=[],M={Children:{map:function(e,t,n){if(null==e)return e;var r=[];return m(e,r,null,t,n),r},forEach:function(e,t,n){if(null==e)return e;t=f(null,null,t,n),null==e||d(e,"",v,t),p(t)},count:function(e){return null==e?0:d(e,"",O.thatReturnsNull,null)},toArray:function(e){var t=[];return m(e,t,null,O.thatReturnsArgument),t},only:function(e){return c(e)||r("143"),e}},Component:i,PureComponent:o,unstable_AsyncComponent:u,Fragment:j,createElement:s,cloneElement:function(e,t,n){var r=g({},e.props),i=e.key,o=e.ref,a=e._owner;if(null!=t){if(void 0!==t.ref&&(o=t.ref,a=A.current),void 0!==t.key&&(i=""+t.key),e.type&&e.type.defaultProps)var u=e.type.defaultProps;for(s in t)T.call(t,s)&&!F.hasOwnProperty(s)&&(r[s]=void 0===t[s]&&void 0!==u?u[s]:t[s])}var s=arguments.length-2;if(1===s)r.children=n;else if(1<s){u=Array(s);for(var c=0;c<s;c++)u[c]=arguments[c+2];r.children=u}return{$$typeof:_,type:e.type,key:i,ref:o,props:r,_owner:a}},createFactory:function(e){var t=s.bind(null,e);return t.type=e,t},isValidElement:c,version:"16.2.0",__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED:{ReactCurrentOwner:A,assign:g}},V=Object.freeze({default:M}),U=V&&M||V;e.exports=U.default?U.default:U},function(e,t,n){!function(t,n){e.exports=n()}("undefined"!=typeof self&&self,function(){return function(e){function t(r){if(n[r])return n[r].exports;var i=n[r]={i:r,l:!1,exports:{}};return e[r].call(i.exports,i,i.exports,t),i.l=!0,i.exports}var n={};return t.m=e,t.c=n,t.d=function(e,n,r){t.o(e,n)||Object.defineProperty(e,n,{configurable:!1,enumerable:!0,get:r})},t.n=function(e){var n=e&&e.__esModule?function(){return e.default}:function(){return e};return t.d(n,"a",n),n},t.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},t.p="",t(t.s=95)}([function(e,t,n){"use strict";var r=n(156),i=n(157),o=n(182),a=n(183),u=n(218),s=n(219);t.a={allowsArrayErrors:!0,empty:{},emptyList:[],getIn:i.a,setIn:o.a,deepEqual:a.a,deleteIn:u.a,forEach:function(e,t){return e.forEach(t)},fromJS:function(e){return e},keys:s.a,size:function(e){return e?e.length:0},some:function(e,t){return e.some(t)},splice:r.a,toJS:function(e){return e}}},function(e,t,n){"use strict";e.exports=n(99)},function(e,t,n){e.exports=n(108)()},function(e,t,n){"use strict";var r=n(63),i="object"==typeof self&&self&&self.Object===Object&&self;t.a=r.a||i||Function("return this")()},function(e,t,n){"use strict";t.a=Array.isArray},function(e,t,n){"use strict";function r(e){var t=typeof e;return null!=e&&("object"==t||"function"==t)}t.a=r},function(e,t,n){"use strict";function r(e){return null!=e&&"object"==typeof e}t.a=r},function(e,t,n){"use strict";function r(e,t){var n=Object(o.a)(e,t);return Object(i.a)(n)?n:void 0}var i=n(163),o=n(166);t.a=r},function(e,t,n){"use strict";e.exports=function(e,t,n,r,i,o,a,u){if(!e){var s;if(void 0===t)s=Error("Minified exception occurred; use the non-minified dev environment for the full error message and additional helpful warnings.");else{var c=[n,r,i,o,a,u],l=0;s=Error(t.replace(/%s/g,function(){return c[l++]})),s.name="Invariant Violation"}throw s.framesToPop=1,s}}},function(e,t,n){"use strict";var r=(n(136),n(60),n(138));n.d(t,"a",function(){return r.a})},function(e,t,n){"use strict";function r(e){return null==e?void 0===e?s:u:c&&c in Object(e)?Object(o.a)(e):Object(a.a)(e)}var i=n(17),o=n(141),a=n(142),u="[object Null]",s="[object Undefined]",c=i.a?i.a.toStringTag:void 0;t.a=r},function(e,t){e.exports=function(e){if(!e.webpackPolyfill){var t=Object.create(e);t.children||(t.children=[]),Object.defineProperty(t,"loaded",{enumerable:!0,get:function(){return t.l}}),Object.defineProperty(t,"id",{enumerable:!0,get:function(){return t.i}}),Object.defineProperty(t,"exports",{enumerable:!0}),t.webpackPolyfill=1}return t}},function(e,t,n){"use strict";t.a=function(e,t){var n=e._reduxForm.sectionPrefix;return n?n+"."+t:t}},function(e,t,n){"use strict";function r(e,t){return e===t||e!==e&&t!==t}t.a=r},function(e,t,n){"use strict";function r(e){if("string"==typeof e||Object(i.a)(e))return e;var t=e+"";return"0"==t&&1/e==-o?"-0":t}var i=n(19),o=1/0;t.a=r},function(e,t){var n;n=function(){return this}();try{n=n||Function("return this")()||(0,eval)("this")}catch(e){"object"==typeof window&&(n=window)}e.exports=n},function(e,t,n){"use strict";function r(e){if(!Object(a.a)(e)||Object(i.a)(e)!=u)return!1;var t=Object(o.a)(e);if(null===t)return!0;var n=f.call(t,"constructor")&&t.constructor;return"function"==typeof n&&n instanceof n&&l.call(n)==p}var i=n(10),o=n(64),a=n(6),u="[object Object]",s=Function.prototype,c=Object.prototype,l=s.toString,f=c.hasOwnProperty,p=l.call(Object);t.a=r},function(e,t,n){"use strict";t.a=n(3).a.Symbol},function(e,t,n){"use strict";function r(e){return Object(a.a)(e)?Object(i.a)(e,c.a):Object(u.a)(e)?[e]:Object(o.a)(Object(s.a)(Object(l.a)(e)))}var i=n(74),o=n(75),a=n(4),u=n(19),s=n(76),c=n(14),l=n(78);t.a=r},function(e,t,n){"use strict";function r(e){return"symbol"==typeof e||Object(o.a)(e)&&Object(i.a)(e)==a}var i=n(10),o=n(6),a="[object Symbol]";t.a=r},function(e,t,n){"use strict";var r=n(7);t.a=Object(r.a)(Object,"create")},function(e,t,n){"use strict";function r(e){var t=-1,n=null==e?0:e.length;for(this.clear();++t<n;){var r=e[t];this.set(r[0],r[1])}}var i=n(171),o=n(172),a=n(173),u=n(174),s=n(175);r.prototype.clear=i.a,r.prototype.delete=o.a,r.prototype.get=a.a,r.prototype.has=u.a,r.prototype.set=s.a,t.a=r},function(e,t,n){"use strict";function r(e,t){for(var n=e.length;n--;)if(Object(i.a)(e[n][0],t))return n;return-1}var i=n(13);t.a=r},function(e,t,n){"use strict";function r(e,t){var n=e.__data__;return Object(i.a)(t)?n["string"==typeof t?"string":"hash"]:n.map}var i=n(177);t.a=r},function(e,t,n){"use strict";function r(e){return null!=e&&Object(o.a)(e.length)&&!Object(i.a)(e)}var i=n(32),o=n(41);t.a=r},function(e,t,n){"use strict";function r(e,t,n){"__proto__"==t&&i.a?Object(i.a)(e,t,{configurable:!0,enumerable:!0,value:n,writable:!0}):e[t]=n}var i=n(85);t.a=r},function(e,t,n){"use strict";function r(e){return function(){return e}}var i=function(){};i.thatReturns=r,i.thatReturnsFalse=r(!1),i.thatReturnsTrue=r(!0),i.thatReturnsNull=r(null),i.thatReturnsThis=function(){return this},i.thatReturnsArgument=function(e){return e},e.exports=i},function(e,t,n){(function(t){(function(){function t(e){this.tokens=[],this.tokens.links={},this.options=e||l.defaults,this.rules=f.normal,this.options.gfm&&(this.rules=this.options.tables?f.tables:f.gfm)}function n(e,t){if(this.options=t||l.defaults,this.links=e,this.rules=p.normal,this.renderer=this.options.renderer||new r,this.renderer.options=this.options,!this.links)throw Error("Tokens array requires a `links` property.");this.options.gfm?this.rules=this.options.breaks?p.breaks:p.gfm:this.options.pedantic&&(this.rules=p.pedantic)}function r(e){this.options=e||{}}function i(e){this.tokens=[],this.token=null,this.options=e||l.defaults,this.options.renderer=this.options.renderer||new r,this.renderer=this.options.renderer,this.renderer.options=this.options}function o(e,t){return e.replace(t?/&/g:/&(?!#?\w+;)/g,"&amp;").replace(/</g,"&lt;").replace(/>/g,"&gt;").replace(/"/g,"&quot;").replace(/'/g,"&#39;")}function a(e){return e.replace(/&(#(?:\d+)|(?:#x[0-9A-Fa-f]+)|(?:\w+));?/g,function(e,t){return t=t.toLowerCase(),"colon"===t?":":"#"===t.charAt(0)?"x"===t.charAt(1)?String.fromCharCode(parseInt(t.substring(2),16)):String.fromCharCode(+t.substring(1)):""})}function u(e,t){return e=e.source,t=t||"",function n(r,i){return r?(i=i.source||i,i=i.replace(/(^|[^\[])\^/g,"$1"),e=e.replace(r,i),n):RegExp(e,t)}}function s(){}function c(e){for(var t,n,r=1;arguments.length>r;r++){t=arguments[r];for(n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e}function l(e,n,r){if(r||"function"==typeof n){r||(r=n,n=null),n=c({},l.defaults,n||{});var a,u,s=n.highlight,f=0;try{a=t.lex(e,n)}catch(e){return r(e)}u=a.length;var p=function(e){if(e)return n.highlight=s,r(e);var t;try{t=i.parse(a,n)}catch(t){e=t}return n.highlight=s,e?r(e):r(null,t)};if(!s||3>s.length)return p();if(delete n.highlight,!u)return p();for(;a.length>f;f++)!function(e){"code"!==e.type?--u||p():s(e.text,e.lang,function(t,n){return t?p(t):null==n||n===e.text?--u||p():(e.text=n,e.escaped=!0,void(--u||p()))})}(a[f])}else try{return n&&(n=c({},l.defaults,n)),i.parse(t.lex(e,n),n)}catch(e){if(e.message+="\nPlease report this to https://github.com/chjj/marked.",(n||l.defaults).silent)return"<p>An error occured:</p><pre>"+o(e.message+"",!0)+"</pre>";throw e}}var f={newline:/^\n+/,code:/^( {4}[^\n]+\n*)+/,fences:s,hr:/^( *[-*_]){3,} *(?:\n+|$)/,heading:/^ *(#{1,6}) *([^\n]+?) *#* *(?:\n+|$)/,nptable:s,lheading:/^([^\n]+)\n *(=|-){2,} *(?:\n+|$)/,blockquote:/^( *>[^\n]+(\n(?!def)[^\n]+)*\n*)+/,list:/^( *)(bull) [\s\S]+?(?:hr|def|\n{2,}(?! )(?!\1bull )\n*|\s*$)/,html:/^ *(?:comment *(?:\n|\s*$)|closed *(?:\n{2,}|\s*$)|closing *(?:\n{2,}|\s*$))/,def:/^ *\[([^\]]+)\]: *<?([^\s>]+)>?(?: +["(]([^\n]+)[")])? *(?:\n+|$)/,table:s,paragraph:/^((?:[^\n]+\n?(?!hr|heading|lheading|blockquote|tag|def))+)\n*/,text:/^[^\n]+/};f.bullet=/(?:[*+-]|\d+\.)/,f.item=/^( *)(bull) [^\n]*(?:\n(?!\1bull )[^\n]*)*/,f.item=u(f.item,"gm")(/bull/g,f.bullet)(),f.list=u(f.list)(/bull/g,f.bullet)("hr","\\n+(?=\\1?(?:[-*_] *){3,}(?:\\n+|$))")("def","\\n+(?="+f.def.source+")")(),f.blockquote=u(f.blockquote)("def",f.def)(),f._tag="(?!(?:a|em|strong|small|s|cite|q|dfn|abbr|data|time|code|var|samp|kbd|sub|sup|i|b|u|mark|ruby|rt|rp|bdi|bdo|span|br|wbr|ins|del|img)\\b)\\w+(?!:/|[^\\w\\s@]*@)\\b",f.html=u(f.html)("comment",/<!--[\s\S]*?-->/)("closed",/<(tag)[\s\S]+?<\/\1>/)("closing",/<tag(?:"[^"]*"|'[^']*'|[^'">])*?>/)(/tag/g,f._tag)(),f.paragraph=u(f.paragraph)("hr",f.hr)("heading",f.heading)("lheading",f.lheading)("blockquote",f.blockquote)("tag","<"+f._tag)("def",f.def)(),f.normal=c({},f),f.gfm=c({},f.normal,{fences:/^ *(`{3,}|~{3,})[ \.]*(\S+)? *\n([\s\S]*?)\s*\1 *(?:\n+|$)/,paragraph:/^/,heading:/^ *(#{1,6}) +([^\n]+?) *#* *(?:\n+|$)/}),f.gfm.paragraph=u(f.paragraph)("(?!","(?!"+f.gfm.fences.source.replace("\\1","\\2")+"|"+f.list.source.replace("\\1","\\3")+"|")(),f.tables=c({},f.gfm,{nptable:/^ *(\S.*\|.*)\n *([-:]+ *\|[-| :]*)\n((?:.*\|.*(?:\n|$))*)\n*/,table:/^ *\|(.+)\n *\|( *[-:]+[-| :]*)\n((?: *\|.*(?:\n|$))*)\n*/}),t.rules=f,t.lex=function(e,n){return new t(n).lex(e)},t.prototype.lex=function(e){return e=e.replace(/\r\n|\r/g,"\n").replace(/\t/g," ").replace(/\u00a0/g," ").replace(/\u2424/g,"\n"),this.token(e,!0)},t.prototype.token=function(e,t,n){for(var r,i,o,a,u,s,c,l,p,e=e.replace(/^ +$/gm,"");e;)if((o=this.rules.newline.exec(e))&&(e=e.substring(o[0].length),o[0].length>1&&this.tokens.push({type:"space"})),o=this.rules.code.exec(e))e=e.substring(o[0].length),o=o[0].replace(/^ {4}/gm,""),this.tokens.push({type:"code",text:this.options.pedantic?o:o.replace(/\n+$/,"")});else if(o=this.rules.fences.exec(e))e=e.substring(o[0].length),this.tokens.push({type:"code",lang:o[2],text:o[3]||""});else if(o=this.rules.heading.exec(e))e=e.substring(o[0].length),this.tokens.push({type:"heading",depth:o[1].length,text:o[2]});else if(t&&(o=this.rules.nptable.exec(e))){for(e=e.substring(o[0].length),s={type:"table",header:o[1].replace(/^ *| *\| *$/g,"").split(/ *\| */),align:o[2].replace(/^ *|\| *$/g,"").split(/ *\| */),cells:o[3].replace(/\n$/,"").split("\n")},l=0;s.align.length>l;l++)s.align[l]=/^ *-+: *$/.test(s.align[l])?"right":/^ *:-+: *$/.test(s.align[l])?"center":/^ *:-+ *$/.test(s.align[l])?"left":null;for(l=0;s.cells.length>l;l++)s.cells[l]=s.cells[l].split(/ *\| */);this.tokens.push(s)}else if(o=this.rules.lheading.exec(e))e=e.substring(o[0].length),this.tokens.push({type:"heading",depth:"="===o[2]?1:2,text:o[1]});else if(o=this.rules.hr.exec(e))e=e.substring(o[0].length),this.tokens.push({type:"hr"});else if(o=this.rules.blockquote.exec(e))e=e.substring(o[0].length),this.tokens.push({type:"blockquote_start"}),o=o[0].replace(/^ *> ?/gm,""),this.token(o,t,!0),this.tokens.push({type:"blockquote_end"});else if(o=this.rules.list.exec(e)){for(e=e.substring(o[0].length),a=o[2],this.tokens.push({type:"list_start",ordered:a.length>1}),o=o[0].match(this.rules.item),r=!1,p=o.length,l=0;p>l;l++)s=o[l],c=s.length,s=s.replace(/^ *([*+-]|\d+\.) +/,""),~s.indexOf("\n ")&&(c-=s.length,s=this.options.pedantic?s.replace(/^ {1,4}/gm,""):s.replace(RegExp("^ {1,"+c+"}","gm"),"")),this.options.smartLists&&l!==p-1&&(u=f.bullet.exec(o[l+1])[0],a===u||a.length>1&&u.length>1||(e=o.slice(l+1).join("\n")+e,l=p-1)),i=r||/\n\n(?!\s*$)/.test(s),l!==p-1&&(r="\n"===s.charAt(s.length-1),i||(i=r)),this.tokens.push({type:i?"loose_item_start":"list_item_start"}),this.token(s,!1,n),this.tokens.push({type:"list_item_end"});this.tokens.push({type:"list_end"})}else if(o=this.rules.html.exec(e))e=e.substring(o[0].length),this.tokens.push({type:this.options.sanitize?"paragraph":"html",pre:!this.options.sanitizer&&("pre"===o[1]||"script"===o[1]||"style"===o[1]),text:o[0]});else if(!n&&t&&(o=this.rules.def.exec(e)))e=e.substring(o[0].length),this.tokens.links[o[1].toLowerCase()]={href:o[2],title:o[3]};else if(t&&(o=this.rules.table.exec(e))){for(e=e.substring(o[0].length),s={type:"table",header:o[1].replace(/^ *| *\| *$/g,"").split(/ *\| */),align:o[2].replace(/^ *|\| *$/g,"").split(/ *\| */),cells:o[3].replace(/(?: *\| *)?\n$/,"").split("\n")},l=0;s.align.length>l;l++)s.align[l]=/^ *-+: *$/.test(s.align[l])?"right":/^ *:-+: *$/.test(s.align[l])?"center":/^ *:-+ *$/.test(s.align[l])?"left":null;for(l=0;s.cells.length>l;l++)s.cells[l]=s.cells[l].replace(/^ *\| *| *\| *$/g,"").split(/ *\| */);this.tokens.push(s)}else if(t&&(o=this.rules.paragraph.exec(e)))e=e.substring(o[0].length),this.tokens.push({type:"paragraph",text:"\n"===o[1].charAt(o[1].length-1)?o[1].slice(0,-1):o[1]});else if(o=this.rules.text.exec(e))e=e.substring(o[0].length),this.tokens.push({type:"text",text:o[0]});else if(e)throw Error("Infinite loop on byte: "+e.charCodeAt(0));return this.tokens};var p={escape:/^\\([\\`*{}\[\]()#+\-.!_>])/,autolink:/^<([^ >]+(@|:\/)[^ >]+)>/,url:s,tag:/^<!--[\s\S]*?-->|^<\/?\w+(?:"[^"]*"|'[^']*'|[^'">])*?>/,link:/^!?\[(inside)\]\(href\)/,reflink:/^!?\[(inside)\]\s*\[([^\]]*)\]/,nolink:/^!?\[((?:\[[^\]]*\]|[^\[\]])*)\]/,strong:/^__([\s\S]+?)__(?!_)|^\*\*([\s\S]+?)\*\*(?!\*)/,em:/^\b_((?:[^_]|__)+?)_\b|^\*((?:\*\*|[\s\S])+?)\*(?!\*)/,code:/^(`+)\s*([\s\S]*?[^`])\s*\1(?!`)/,br:/^ {2,}\n(?!\s*$)/,del:s,text:/^[\s\S]+?(?=[\\<!\[_*`]| {2,}\n|$)/};p._inside=/(?:\[[^\]]*\]|[^\[\]]|\](?=[^\[]*\]))*/,p._href=/\s*<?([\s\S]*?)>?(?:\s+['"]([\s\S]*?)['"])?\s*/,p.link=u(p.link)("inside",p._inside)("href",p._href)(),p.reflink=u(p.reflink)("inside",p._inside)(),p.normal=c({},p),p.pedantic=c({},p.normal,{strong:/^__(?=\S)([\s\S]*?\S)__(?!_)|^\*\*(?=\S)([\s\S]*?\S)\*\*(?!\*)/,em:/^_(?=\S)([\s\S]*?\S)_(?!_)|^\*(?=\S)([\s\S]*?\S)\*(?!\*)/}),p.gfm=c({},p.normal,{escape:u(p.escape)("])","~|])")(),url:/^(https?:\/\/[^\s<]+[^<.,:;"')\]\s])/,del:/^~~(?=\S)([\s\S]*?\S)~~/,text:u(p.text)("]|","~]|")("|","|https?://|")()}),p.breaks=c({},p.gfm,{br:u(p.br)("{2,}","*")(),text:u(p.gfm.text)("{2,}","*")()}),n.rules=p,n.output=function(e,t,r){return new n(t,r).output(e)},n.prototype.output=function(e){for(var t,n,r,i,a="";e;)if(i=this.rules.escape.exec(e))e=e.substring(i[0].length),a+=i[1];else if(i=this.rules.autolink.exec(e))e=e.substring(i[0].length),"@"===i[2]?(n=this.mangle(":"===i[1].charAt(6)?i[1].substring(7):i[1]),r=this.mangle("mailto:")+n):(n=o(i[1]),r=n),a+=this.renderer.link(r,null,n);else if(this.inLink||!(i=this.rules.url.exec(e))){if(i=this.rules.tag.exec(e))!this.inLink&&/^<a /i.test(i[0])?this.inLink=!0:this.inLink&&/^<\/a>/i.test(i[0])&&(this.inLink=!1),e=e.substring(i[0].length),a+=this.options.sanitize?this.options.sanitizer?this.options.sanitizer(i[0]):o(i[0]):i[0];else if(i=this.rules.link.exec(e))e=e.substring(i[0].length),this.inLink=!0,a+=this.outputLink(i,{href:i[2],title:i[3]}),this.inLink=!1;else if((i=this.rules.reflink.exec(e))||(i=this.rules.nolink.exec(e))){if(e=e.substring(i[0].length),t=(i[2]||i[1]).replace(/\s+/g," "),!(t=this.links[t.toLowerCase()])||!t.href){a+=i[0].charAt(0),e=i[0].substring(1)+e;continue}this.inLink=!0,a+=this.outputLink(i,t),this.inLink=!1}else if(i=this.rules.strong.exec(e))e=e.substring(i[0].length),a+=this.renderer.strong(this.output(i[2]||i[1]));else if(i=this.rules.em.exec(e))e=e.substring(i[0].length),a+=this.renderer.em(this.output(i[2]||i[1]));else if(i=this.rules.code.exec(e))e=e.substring(i[0].length),a+=this.renderer.codespan(o(i[2],!0));else if(i=this.rules.br.exec(e))e=e.substring(i[0].length),a+=this.renderer.br();else if(i=this.rules.del.exec(e))e=e.substring(i[0].length),a+=this.renderer.del(this.output(i[1]));else if(i=this.rules.text.exec(e))e=e.substring(i[0].length),a+=this.renderer.text(o(this.smartypants(i[0])));else if(e)throw Error("Infinite loop on byte: "+e.charCodeAt(0))}else e=e.substring(i[0].length),n=o(i[1]),r=n,a+=this.renderer.link(r,null,n);return a},n.prototype.outputLink=function(e,t){var n=o(t.href),r=t.title?o(t.title):null;return"!"!==e[0].charAt(0)?this.renderer.link(n,r,this.output(e[1])):this.renderer.image(n,r,o(e[1]))},n.prototype.smartypants=function(e){return this.options.smartypants?e.replace(/---/g,"—").replace(/--/g,"–").replace(/(^|[-\u2014\/(\[{"\s])'/g,"$1‘").replace(/'/g,"’").replace(/(^|[-\u2014\/(\[{\u2018\s])"/g,"$1“").replace(/"/g,"”").replace(/\.{3}/g,"…"):e},n.prototype.mangle=function(e){if(!this.options.mangle)return e;for(var t,n="",r=e.length,i=0;r>i;i++)t=e.charCodeAt(i),Math.random()>.5&&(t="x"+t.toString(16)),n+="&#"+t+";";return n},r.prototype.code=function(e,t,n){if(this.options.highlight){var r=this.options.highlight(e,t);null!=r&&r!==e&&(n=!0,e=r)}return t?'<pre><code class="'+this.options.langPrefix+o(t,!0)+'">'+(n?e:o(e,!0))+"\n</code></pre>\n":"<pre><code>"+(n?e:o(e,!0))+"\n</code></pre>"},r.prototype.blockquote=function(e){return"<blockquote>\n"+e+"</blockquote>\n"},r.prototype.html=function(e){return e},r.prototype.heading=function(e,t,n){return"<h"+t+' id="'+this.options.headerPrefix+n.toLowerCase().replace(/[^\w]+/g,"-")+'">'+e+"</h"+t+">\n"},r.prototype.hr=function(){return this.options.xhtml?"<hr/>\n":"<hr>\n"},r.prototype.list=function(e,t){var n=t?"ol":"ul";return"<"+n+">\n"+e+"</"+n+">\n"},r.prototype.listitem=function(e){return"<li>"+e+"</li>\n"},r.prototype.paragraph=function(e){return"<p>"+e+"</p>\n"},r.prototype.table=function(e,t){return"<table>\n<thead>\n"+e+"</thead>\n<tbody>\n"+t+"</tbody>\n</table>\n"},r.prototype.tablerow=function(e){return"<tr>\n"+e+"</tr>\n"},r.prototype.tablecell=function(e,t){var n=t.header?"th":"td";return(t.align?"<"+n+' style="text-align:'+t.align+'">':"<"+n+">")+e+"</"+n+">\n"},r.prototype.strong=function(e){return"<strong>"+e+"</strong>"},r.prototype.em=function(e){return"<em>"+e+"</em>"},r.prototype.codespan=function(e){return"<code>"+e+"</code>"},r.prototype.br=function(){return this.options.xhtml?"<br/>":"<br>"},r.prototype.del=function(e){return"<del>"+e+"</del>"},r.prototype.link=function(e,t,n){if(this.options.sanitize){try{var r=decodeURIComponent(a(e)).replace(/[^\w:]/g,"").toLowerCase()}catch(e){return""}if(0===r.indexOf("javascript:")||0===r.indexOf("vbscript:"))return""}var i='<a href="'+e+'"';return t&&(i+=' title="'+t+'"'),i+=">"+n+"</a>"},r.prototype.image=function(e,t,n){var r='<img src="'+e+'" alt="'+n+'"';return t&&(r+=' title="'+t+'"'),r+=this.options.xhtml?"/>":">"},r.prototype.text=function(e){return e},i.parse=function(e,t,n){return new i(t,n).parse(e)},i.prototype.parse=function(e){this.inline=new n(e.links,this.options,this.renderer),this.tokens=e.reverse();for(var t="";this.next();)t+=this.tok();return t},i.prototype.next=function(){return this.token=this.tokens.pop()},i.prototype.peek=function(){return this.tokens[this.tokens.length-1]||0},i.prototype.parseText=function(){for(var e=this.token.text;"text"===this.peek().type;)e+="\n"+this.next().text;return this.inline.output(e)},i.prototype.tok=function(){switch(this.token.type){case"space":return"";case"hr":return this.renderer.hr();case"heading":return this.renderer.heading(this.inline.output(this.token.text),this.token.depth,this.token.text);case"code":return this.renderer.code(this.token.text,this.token.lang,this.token.escaped);case"table":var e,t,n,r,i="",o="";for(n="",e=0;this.token.header.length>e;e++)this.token.align[e],n+=this.renderer.tablecell(this.inline.output(this.token.header[e]),{header:!0,align:this.token.align[e]});for(i+=this.renderer.tablerow(n),e=0;this.token.cells.length>e;e++){for(t=this.token.cells[e],n="",r=0;t.length>r;r++)n+=this.renderer.tablecell(this.inline.output(t[r]),{header:!1,align:this.token.align[r]});o+=this.renderer.tablerow(n)}return this.renderer.table(i,o);case"blockquote_start":for(var o="";"blockquote_end"!==this.next().type;)o+=this.tok();return this.renderer.blockquote(o);case"list_start":for(var o="",a=this.token.ordered;"list_end"!==this.next().type;)o+=this.tok();return this.renderer.list(o,a);case"list_item_start":for(var o="";"list_item_end"!==this.next().type;)o+="text"===this.token.type?this.parseText():this.tok();return this.renderer.listitem(o);case"loose_item_start":for(var o="";"list_item_end"!==this.next().type;)o+=this.tok();return this.renderer.listitem(o);case"html":return this.renderer.html(this.token.pre||this.options.pedantic?this.token.text:this.inline.output(this.token.text));case"paragraph":return this.renderer.paragraph(this.inline.output(this.token.text));case"text":return this.renderer.paragraph(this.parseText())}},s.exec=s,l.options=l.setOptions=function(e){return c(l.defaults,e),l},l.defaults={gfm:!0,tables:!0,breaks:!1,pedantic:!1,sanitize:!1,sanitizer:null,mangle:!0,smartLists:!1,silent:!1,highlight:null,langPrefix:"lang-",smartypants:!1,headerPrefix:"",renderer:new r,xhtml:!1},l.Parser=i,l.parser=i.parse,l.Renderer=r,l.Lexer=t,l.lexer=t.lex,l.InlineLexer=n,l.inlineLexer=n.output,l.parse=l,e.exports=l}).call(function(){return this||("undefined"!=typeof window?window:t)}())}).call(t,n(15))},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),n.d(t,"prefix",function(){return r}),n.d(t,"ARRAY_INSERT",function(){return i}),n.d(t,"ARRAY_MOVE",function(){return o}),n.d(t,"ARRAY_POP",function(){return a}),n.d(t,"ARRAY_PUSH",function(){return u}),n.d(t,"ARRAY_REMOVE",function(){return s}),n.d(t,"ARRAY_REMOVE_ALL",function(){return c}),n.d(t,"ARRAY_SHIFT",function(){return l}),n.d(t,"ARRAY_SPLICE",function(){return f}),n.d(t,"ARRAY_UNSHIFT",function(){return p}),n.d(t,"ARRAY_SWAP",function(){return d}),n.d(t,"AUTOFILL",function(){return h}),n.d(t,"BLUR",function(){return v}),n.d(t,"CHANGE",function(){return y}),n.d(t,"CLEAR_FIELDS",function(){return m}),n.d(t,"CLEAR_SUBMIT",function(){return g}),n.d(t,"CLEAR_SUBMIT_ERRORS",function(){return b}),n.d(t,"CLEAR_ASYNC_ERROR",function(){return O}),n.d(t,"DESTROY",function(){return w}),n.d(t,"FOCUS",function(){return _}),n.d(t,"INITIALIZE",function(){return S}),n.d(t,"REGISTER_FIELD",function(){return E}),n.d(t,"RESET",function(){return x}),n.d(t,"SET_SUBMIT_FAILED",function(){return j}),n.d(t,"SET_SUBMIT_SUCCEEDED",function(){return k}),n.d(t,"START_ASYNC_VALIDATION",function(){return C}),n.d(t,"START_SUBMIT",function(){return P}),n.d(t,"STOP_ASYNC_VALIDATION",function(){return R}),n.d(t,"STOP_SUBMIT",function(){return A}),n.d(t,"SUBMIT",function(){return T}),n.d(t,"TOUCH",function(){return F}),n.d(t,"UNREGISTER_FIELD",function(){return I}),n.d(t,"UNTOUCH",function(){return N}),n.d(t,"UPDATE_SYNC_ERRORS",function(){return M}),n.d(t,"UPDATE_SYNC_WARNINGS",function(){return V});var r="@@redux-form/",i=r+"ARRAY_INSERT",o=r+"ARRAY_MOVE",a=r+"ARRAY_POP",u=r+"ARRAY_PUSH",s=r+"ARRAY_REMOVE",c=r+"ARRAY_REMOVE_ALL",l=r+"ARRAY_SHIFT",f=r+"ARRAY_SPLICE",p=r+"ARRAY_UNSHIFT",d=r+"ARRAY_SWAP",h=r+"AUTOFILL",v=r+"BLUR",y=r+"CHANGE",m=r+"CLEAR_FIELDS",g=r+"CLEAR_SUBMIT",b=r+"CLEAR_SUBMIT_ERRORS",O=r+"CLEAR_ASYNC_ERROR",w=r+"DESTROY",_=r+"FOCUS",S=r+"INITIALIZE",E=r+"REGISTER_FIELD",x=r+"RESET",j=r+"SET_SUBMIT_FAILED",k=r+"SET_SUBMIT_SUCCEEDED",C=r+"START_ASYNC_VALIDATION",P=r+"START_SUBMIT",R=r+"STOP_ASYNC_VALIDATION",A=r+"STOP_SUBMIT",T=r+"SUBMIT",F=r+"TOUCH",I=r+"UNREGISTER_FIELD",N=r+"UNTOUCH",M=r+"UPDATE_SYNC_ERRORS",V=r+"UPDATE_SYNC_WARNINGS"},function(e,t,n){"use strict";function r(e){"undefined"!=typeof console&&"function"==typeof console.error&&console.error(e);try{throw Error(e)}catch(e){}}t.a=r},function(e,t,n){"use strict";var r=(n(62),n(147),n(148));n(149),n(67),n(66),n.d(t,"a",function(){return r.a})},function(e,t,n){"use strict";function r(e){var t=-1,n=null==e?0:e.length;for(this.clear();++t<n;){var r=e[t];this.set(r[0],r[1])}}var i=n(160),o=n(176),a=n(178),u=n(179),s=n(180);r.prototype.clear=i.a,r.prototype.delete=o.a,r.prototype.get=a.a,r.prototype.has=u.a,r.prototype.set=s.a,t.a=r},function(e,t,n){"use strict";function r(e){if(!Object(o.a)(e))return!1;var t=Object(i.a)(e);return t==u||t==s||t==a||t==c}var i=n(10),o=n(5),a="[object AsyncFunction]",u="[object Function]",s="[object GeneratorFunction]",c="[object Proxy]";t.a=r},function(e,t,n){"use strict";var r=n(7),i=n(3);t.a=Object(r.a)(i.a,"Map")},function(e,t,n){"use strict";function r(e,t,n,a,u){return e===t||(null==e||null==t||!Object(o.a)(e)&&!Object(o.a)(t)?e!==e&&t!==t:Object(i.a)(e,t,n,a,r,u))}var i=n(184),o=n(6);t.a=r},function(e,t,n){"use strict";function r(e){this.size=(this.__data__=new i.a(e)).size}var i=n(21),o=n(185),a=n(186),u=n(187),s=n(188),c=n(189);r.prototype.clear=o.a,r.prototype.delete=a.a,r.prototype.get=u.a,r.prototype.has=s.a,r.prototype.set=c.a,t.a=r},function(e,t,n){"use strict";function r(e){return Object(a.a)(e)?Object(i.a)(e):Object(o.a)(e)}var i=n(82),o=n(211),a=n(24);t.a=r},function(e,t,n){"use strict";var r=n(206),i=n(6),o=Object.prototype,a=o.hasOwnProperty,u=o.propertyIsEnumerable;t.a=Object(r.a)(function(){return arguments}())?r.a:function(e){return Object(i.a)(e)&&a.call(e,"callee")&&!u.call(e,"callee")}},function(e,n,r){"use strict";(function(e){var i=r(3),o=r(207),a="object"==typeof t&&t&&!t.nodeType&&t,u=a&&"object"==typeof e&&e&&!e.nodeType&&e,s=u&&u.exports===a,c=s?i.a.Buffer:void 0;n.a=(c?c.isBuffer:void 0)||o.a}).call(n,r(11)(e))},function(e,t,n){"use strict";function r(e,t){return!!(t=null==t?i:t)&&("number"==typeof e||o.test(e))&&e>-1&&e%1==0&&t>e}var i=9007199254740991,o=/^(?:0|[1-9]\d*)$/;t.a=r},function(e,t,n){"use strict";var r=n(208),i=n(209),o=n(210),a=o.a&&o.a.isTypedArray;t.a=a?Object(i.a)(a):r.a},function(e,t,n){"use strict";function r(e){return"number"==typeof e&&e>-1&&e%1==0&&i>=e}var i=9007199254740991;t.a=r},function(e,t,n){"use strict";function r(e){var t=e&&e.constructor;return e===("function"==typeof t&&t.prototype||i)}var i=Object.prototype;t.a=r},function(e,t,n){"use strict";function r(e,t){if(Object(i.a)(e))return!1;var n=typeof e;return!("number"!=n&&"symbol"!=n&&"boolean"!=n&&null!=e&&!Object(o.a)(e))||u.test(e)||!a.test(e)||null!=t&&e in Object(t)}var i=n(4),o=n(19),a=/\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\\]|\\.)*?\1)\]/,u=/^\w*$/;t.a=r},function(e,t,n){"use strict";function r(e){return e}t.a=r},function(e,t,n){"use strict";var r=n(267);t.a=function(e){var t=e.getIn,n=e.keys,i=Object(r.a)(e);return function(e,r){var o=arguments.length>2&&void 0!==arguments[2]&&arguments[2];return function(a){var u=r||function(e){return t(e,"form")},s=u(a);if(t(s,e+".syncError"))return!1;if(!o&&t(s,e+".error"))return!1;var c=t(s,e+".syncErrors"),l=t(s,e+".asyncErrors"),f=o?void 0:t(s,e+".submitErrors");if(!c&&!l&&!f)return!0;var p=t(s,e+".registeredFields");return!p||!n(p).filter(function(e){return t(p,"['"+e+"'].count")>0}).some(function(e){return i(t(p,"['"+e+"']"),c,l,f)})}}}},function(e,t){function n(e){return!!e&&("object"==typeof e||"function"==typeof e)&&"function"==typeof e.then}e.exports=n},function(e,t,n){"use strict";function r(e){if(null===e||void 0===e)throw new TypeError("Object.assign cannot be called with null or undefined");return Object(e)}/* object-assign (c) Sindre Sorhus @license MIT */ var i=Object.getOwnPropertySymbols,o=Object.prototype.hasOwnProperty,a=Object.prototype.propertyIsEnumerable;e.exports=function(){try{if(!Object.assign)return!1;var e=new String("abc");if(e[5]="de","5"===Object.getOwnPropertyNames(e)[0])return!1;for(var t={},n=0;10>n;n++)t["_"+String.fromCharCode(n)]=n;if("0123456789"!==Object.getOwnPropertyNames(t).map(function(e){return t[e]}).join(""))return!1;var r={};return"abcdefghijklmnopqrst".split("").forEach(function(e){r[e]=e}),"abcdefghijklmnopqrst"===Object.keys(Object.assign({},r)).join("")}catch(e){return!1}}()?Object.assign:function(e,t){for(var n,u,s=r(e),c=1;arguments.length>c;c++){n=Object(arguments[c]);for(var l in n)o.call(n,l)&&(s[l]=n[l]);if(i){u=i(n);for(var f=0;u.length>f;f++)a.call(n,u[f])&&(s[u[f]]=n[u[f]])}}return s}},function(e,t,n){"use strict";var r={};e.exports=r},function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}function i(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}Object.defineProperty(t,"__esModule",{value:!0});var o=n(1),a=r(o),u=n(105),s=r(u),c=n(106),l=r(c),f=n(112),p=r(f),d=n(114),h=r(d),v=n(116),y=r(v),m=n(123),g=r(m),b=n(50),O=r(b);t.default=function(e){var t=e.children,n=e.path,r=e.version,o=e.breadcrumbs,u="/"===n,c="https://redux-form.com/"+r;return a.default.createElement("div",{className:(0,O.default)(s.default.app,i({},s.default.hasNav,!u))},!u&&a.default.createElement(p.default,{path:n,url:c}),a.default.createElement("div",{className:s.default.contentAndFooter},a.default.createElement("div",{className:s.default.topNav},a.default.createElement("a",{href:"https://redux-form.com",className:s.default.brand}),a.default.createElement("a",{className:s.default.github,href:"https://github.com/erikras/redux-form",title:"Github",target:"_blank"},a.default.createElement("i",{className:"fa fa-fw fa-github"}))),a.default.createElement("div",{className:(0,O.default)(s.default.content,i({},s.default.home,u))},u?a.default.createElement(l.default,{version:r}):a.default.createElement("div",null,a.default.createElement(h.default,{items:o}),t)),a.default.createElement("div",{className:s.default.footer},a.default.createElement(y.default,null),a.default.createElement("div",null,"Created by Erik Rasmussen"),a.default.createElement("div",null,"Got questions? Ask for help:",a.default.createElement("a",{className:s.default.help,href:"https://stackoverflow.com/questions/ask?tags=redux-form",title:"Stack Overflow",target:"_blank"},a.default.createElement("i",{className:"fa fa-fw fa-stack-overflow"})),a.default.createElement("a",{className:s.default.help,href:"https://github.com/erikras/redux-form/issues/new",title:"Github",target:"_blank"},a.default.createElement("i",{className:"fa fa-fw fa-github"}))),a.default.createElement("div",null,a.default.createElement(g.default,{username:"erikras",showUsername:!0,large:!0}),a.default.createElement(g.default,{username:"ReduxForm",showUsername:!0,large:!0})))))}},function(e,t,n){var r,i;/*! Copyright (c) 2016 Jed Watson. Licensed under the MIT License (MIT), see http://jedwatson.github.io/classnames */ !function(){"use strict";function n(){for(var e=[],t=0;arguments.length>t;t++){var r=arguments[t];if(r){var i=typeof r;if("string"===i||"number"===i)e.push(r);else if(Array.isArray(r))e.push(n.apply(null,r));else if("object"===i)for(var a in r)o.call(r,a)&&r[a]&&e.push(a)}}return e.join(" ")}var o={}.hasOwnProperty;void 0!==e&&e.exports?e.exports=n:(r=[],void 0!==(i=function(){return n}.apply(t,r))&&(e.exports=i))}()},function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}Object.defineProperty(t,"__esModule",{value:!0});var i=n(1),o=r(i),a=n(52),u=r(a),s=function(e){return o.default.createElement(u.default,{content:"```"+e.language+e.source+"```"})};s.defaultProps={language:"js"},t.default=s},function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}Object.defineProperty(t,"__esModule",{value:!0});var i=n(1),o=r(i),a=n(27),u=r(a),s=n(125),c=r(s),l=n(126),f=r(l),p=function(e){return e.replace(/```(?:javascript|jsx?)([\s\S]+?)```/g,function(e,t){return'<pre class="language-jsx"><code class="language-jsx">'+c.default.highlight(t,c.default.languages.jsx)+"</code></pre>"})},d=new u.default.Renderer;d.heading=function(e,t){var n=e.toLowerCase().replace(/[^\w]+/g,"-");return"<h"+t+' class="'+f.default.heading+'" id="'+n+'">'+e+' <a href="#'+n+'" class="'+f.default.anchor+'">#</a></h'+t+">"},t.default=function(e){return o.default.createElement("div",{dangerouslySetInnerHTML:{__html:(0,u.default)(p(e.content),{renderer:d})}})}},function(e,t,n){"use strict";var r=n(28),i=Object.assign||function(e){for(var t=1;arguments.length>t;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},o=function(e,t,n,i){return{type:r.ARRAY_INSERT,meta:{form:e,field:t,index:n},payload:i}},a=function(e,t,n,i){return{type:r.ARRAY_MOVE,meta:{form:e,field:t,from:n,to:i}}},u=function(e,t){return{type:r.ARRAY_POP,meta:{form:e,field:t}}},s=function(e,t,n){return{type:r.ARRAY_PUSH,meta:{form:e,field:t},payload:n}},c=function(e,t,n){return{type:r.ARRAY_REMOVE,meta:{form:e,field:t,index:n}}},l=function(e,t){return{type:r.ARRAY_REMOVE_ALL,meta:{form:e,field:t}}},f=function(e,t){return{type:r.ARRAY_SHIFT,meta:{form:e,field:t}}},p=function(e,t,n,i,o){var a={type:r.ARRAY_SPLICE,meta:{form:e,field:t,index:n,removeNum:i}};return void 0!==o&&(a.payload=o),a},d=function(e,t,n,i){if(n===i)throw Error("Swap indices cannot be equal");if(0>n||0>i)throw Error("Swap indices cannot be negative");return{type:r.ARRAY_SWAP,meta:{form:e,field:t,indexA:n,indexB:i}}},h=function(e,t,n){return{type:r.ARRAY_UNSHIFT,meta:{form:e,field:t},payload:n}},v=function(e,t,n){return{type:r.AUTOFILL,meta:{form:e,field:t},payload:n}},y=function(e,t,n,i){return{type:r.BLUR,meta:{form:e,field:t,touch:i},payload:n}},m=function(e,t,n,i,o){return{type:r.CHANGE,meta:{form:e,field:t,touch:i,persistentSubmitErrors:o},payload:n}},g=function(e){return{type:r.CLEAR_SUBMIT,meta:{form:e}}},b=function(e){return{type:r.CLEAR_SUBMIT_ERRORS,meta:{form:e}}},O=function(e,t){return{type:r.CLEAR_ASYNC_ERROR,meta:{form:e,field:t}}};t.a={arrayInsert:o,arrayMove:a,arrayPop:u,arrayPush:s,arrayRemove:c,arrayRemoveAll:l,arrayShift:f,arraySplice:p,arraySwap:d,arrayUnshift:h,autofill:v,blur:y,change:m,clearFields:function(e,t,n){for(var i=arguments.length,o=Array(i>3?i-3:0),a=3;i>a;a++)o[a-3]=arguments[a];return{type:r.CLEAR_FIELDS,meta:{form:e,keepTouched:t,persistentSubmitErrors:n,fields:o}}},clearSubmit:g,clearSubmitErrors:b,clearAsyncError:O,destroy:function(){for(var e=arguments.length,t=Array(e),n=0;e>n;n++)t[n]=arguments[n];return{type:r.DESTROY,meta:{form:t}}},focus:function(e,t){return{type:r.FOCUS,meta:{form:e,field:t}}},initialize:function(e,t,n){var o=arguments.length>3&&void 0!==arguments[3]?arguments[3]:{};return n instanceof Object&&(o=n,n=!1),{type:r.INITIALIZE,meta:i({form:e,keepDirty:n},o),payload:t}},registerField:function(e,t,n){return{type:r.REGISTER_FIELD,meta:{form:e},payload:{name:t,type:n}}},reset:function(e){return{type:r.RESET,meta:{form:e}}},startAsyncValidation:function(e,t){return{type:r.START_ASYNC_VALIDATION,meta:{form:e,field:t}}},startSubmit:function(e){return{type:r.START_SUBMIT,meta:{form:e}}},stopAsyncValidation:function(e,t){return{type:r.STOP_ASYNC_VALIDATION,meta:{form:e},payload:t,error:!(!t||!Object.keys(t).length)}},stopSubmit:function(e,t){return{type:r.STOP_SUBMIT,meta:{form:e},payload:t,error:!(!t||!Object.keys(t).length)}},submit:function(e){return{type:r.SUBMIT,meta:{form:e}}},setSubmitFailed:function(e){for(var t=arguments.length,n=Array(t>1?t-1:0),i=1;t>i;i++)n[i-1]=arguments[i];return{type:r.SET_SUBMIT_FAILED,meta:{form:e,fields:n},error:!0}},setSubmitSucceeded:function(e){for(var t=arguments.length,n=Array(t>1?t-1:0),i=1;t>i;i++)n[i-1]=arguments[i];return{type:r.SET_SUBMIT_SUCCEEDED,meta:{form:e,fields:n},error:!1}},touch:function(e){for(var t=arguments.length,n=Array(t>1?t-1:0),i=1;t>i;i++)n[i-1]=arguments[i];return{type:r.TOUCH,meta:{form:e,fields:n}}},unregisterField:function(e,t){return{type:r.UNREGISTER_FIELD,meta:{form:e},payload:{name:t,destroyOnUnmount:2>=arguments.length||void 0===arguments[2]||arguments[2]}}},untouch:function(e){for(var t=arguments.length,n=Array(t>1?t-1:0),i=1;t>i;i++)n[i-1]=arguments[i];return{type:r.UNTOUCH,meta:{form:e,fields:n}}},updateSyncErrors:function(e){return{type:r.UPDATE_SYNC_ERRORS,meta:{form:e},payload:{syncErrors:arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},error:arguments[2]}}},updateSyncWarnings:function(e){return{type:r.UPDATE_SYNC_WARNINGS,meta:{form:e},payload:{syncWarnings:arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},warning:arguments[2]}}}}},function(e,t,n){"use strict";t.a=function(e){var t=e.initialized,n=e.trigger,r=e.pristine;if(!e.syncValidationPasses)return!1;switch(n){case"blur":case"change":return!0;case"submit":return!r||!t;default:return!1}}},function(e,t,n){"use strict";t.a=function(e){var t=e.values,n=e.nextProps,r=e.initialRender,i=e.lastFieldValidatorKeys,o=e.fieldValidatorKeys,a=e.structure;return!!r||!a.deepEqual(t,n&&n.values)||!a.deepEqual(i,o)}},function(e,t,n){"use strict";t.a=function(e){var t=e.values,n=e.nextProps,r=e.initialRender,i=e.lastFieldValidatorKeys,o=e.fieldValidatorKeys,a=e.structure;return!!r||!a.deepEqual(t,n&&n.values)||!a.deepEqual(i,o)}},function(e,t,n){"use strict";t.a=function(e){var t=e.values,n=e.nextProps,r=e.initialRender,i=e.lastFieldValidatorKeys,o=e.fieldValidatorKeys,a=e.structure;return!!r||!a.deepEqual(t,n&&n.values)||!a.deepEqual(i,o)}},function(e,t,n){"use strict";function r(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function i(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function o(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}var a=n(131),u=n.n(a);t.a=function(e){function t(e){r(this,t);var n=i(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,"Submit Validation Failed"));return n.errors=e,n}return o(t,e),t}(u.a)},function(e,t,n){"use strict";n.d(t,"b",function(){return o}),n.d(t,"a",function(){return a});var r=n(2),i=n.n(r),o=i.a.shape({trySubscribe:i.a.func.isRequired,tryUnsubscribe:i.a.func.isRequired,notifyNestedSubs:i.a.func.isRequired,isSubscribed:i.a.func.isRequired}),a=i.a.shape({subscribe:i.a.func.isRequired,dispatch:i.a.func.isRequired,getState:i.a.func.isRequired})},function(e,t,n){"use strict";function r(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function i(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function o(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}function a(e,t){var n={};for(var r in e)0>t.indexOf(r)&&Object.prototype.hasOwnProperty.call(e,r)&&(n[r]=e[r]);return n}function u(){}function s(e,t){var n={run:function(r){try{var i=e(t.getState(),r);(i!==n.props||n.error)&&(n.shouldComponentUpdate=!0,n.props=i,n.error=null)}catch(e){n.shouldComponentUpdate=!0,n.error=e}}};return n}function c(e){var t,n,c=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},l=c.getDisplayName,p=void 0===l?function(e){return"ConnectAdvanced("+e+")"}:l,O=c.methodName,w=void 0===O?"connectAdvanced":O,_=c.renderCountProp,S=void 0===_?void 0:_,E=c.shouldHandleStateChanges,x=void 0===E||E,j=c.storeKey,k=void 0===j?"store":j,C=c.withRef,P=void 0!==C&&C,R=a(c,["getDisplayName","methodName","renderCountProp","shouldHandleStateChanges","storeKey","withRef"]),A=k+"Subscription",T=g++,F=(t={},t[k]=y.a,t[A]=y.b,t),I=(n={},n[A]=y.b,n);return function(t){d()("function"==typeof t,"You must pass a component to the function returned by connect. Instead received "+JSON.stringify(t));var n=t.displayName||t.name||"Component",a=p(n),c=m({},R,{getDisplayName:p,methodName:w,renderCountProp:S,shouldHandleStateChanges:x,storeKey:k,withRef:P,displayName:a,wrappedComponentName:n,WrappedComponent:t}),l=function(n){function l(e,t){r(this,l);var o=i(this,n.call(this,e,t));return o.version=T,o.state={},o.renderCount=0,o.store=e[k]||t[k],o.propsMode=!!e[k],o.setWrappedInstance=o.setWrappedInstance.bind(o),d()(o.store,'Could not find "'+k+'" in either the context or props of "'+a+'". Either wrap the root component in a <Provider>, or explicitly pass "'+k+'" as a prop to "'+a+'".'),o.initSelector(),o.initSubscription(),o}return o(l,n),l.prototype.getChildContext=function(){var e,t=this.propsMode?null:this.subscription;return e={},e[A]=t||this.context[A],e},l.prototype.componentDidMount=function(){x&&(this.subscription.trySubscribe(),this.selector.run(this.props),this.selector.shouldComponentUpdate&&this.forceUpdate())},l.prototype.componentWillReceiveProps=function(e){this.selector.run(e)},l.prototype.shouldComponentUpdate=function(){return this.selector.shouldComponentUpdate},l.prototype.componentWillUnmount=function(){this.subscription&&this.subscription.tryUnsubscribe(),this.subscription=null,this.notifyNestedSubs=u,this.store=null,this.selector.run=u,this.selector.shouldComponentUpdate=!1},l.prototype.getWrappedInstance=function(){return d()(P,"To access the wrapped instance, you need to specify { withRef: true } in the options argument of the "+w+"() call."),this.wrappedInstance},l.prototype.setWrappedInstance=function(e){this.wrappedInstance=e},l.prototype.initSelector=function(){this.selector=s(e(this.store.dispatch,c),this.store),this.selector.run(this.props)},l.prototype.initSubscription=function(){x&&(this.subscription=new v.a(this.store,(this.propsMode?this.props:this.context)[A],this.onStateChange.bind(this)),this.notifyNestedSubs=this.subscription.notifyNestedSubs.bind(this.subscription))},l.prototype.onStateChange=function(){this.selector.run(this.props),this.selector.shouldComponentUpdate?(this.componentDidUpdate=this.notifyNestedSubsOnComponentDidUpdate,this.setState(b)):this.notifyNestedSubs()},l.prototype.notifyNestedSubsOnComponentDidUpdate=function(){this.componentDidUpdate=void 0,this.notifyNestedSubs()},l.prototype.isSubscribed=function(){return!!this.subscription&&this.subscription.isSubscribed()},l.prototype.addExtraProps=function(e){if(!(P||S||this.propsMode&&this.subscription))return e;var t=m({},e);return P&&(t.ref=this.setWrappedInstance),S&&(t[S]=this.renderCount++),this.propsMode&&this.subscription&&(t[A]=this.subscription),t},l.prototype.render=function(){var e=this.selector;if(e.shouldComponentUpdate=!1,e.error)throw e.error;return Object(h.createElement)(t,this.addExtraProps(e.props))},l}(h.Component);return l.WrappedComponent=t,l.displayName=a,l.childContextTypes=I,l.contextTypes=F,l.propTypes=F,f()(l,t)}}t.a=c;var l=n(61),f=n.n(l),p=n(8),d=n.n(p),h=n(1),v=(n.n(h),n(137)),y=n(59),m=Object.assign||function(e){for(var t=1;arguments.length>t;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},g=0,b={}},function(e,t,n){"use strict";var r={childContextTypes:!0,contextTypes:!0,defaultProps:!0,displayName:!0,getDefaultProps:!0,mixins:!0,propTypes:!0,type:!0},i={name:!0,length:!0,prototype:!0,caller:!0,callee:!0,arguments:!0,arity:!0},o=Object.defineProperty,a=Object.getOwnPropertyNames,u=Object.getOwnPropertySymbols,s=Object.getOwnPropertyDescriptor,c=Object.getPrototypeOf,l=c&&c(Object);e.exports=function e(t,n,f){if("string"!=typeof n){if(l){var p=c(n);p&&p!==l&&e(t,p,f)}var d=a(n);u&&(d=d.concat(u(n)));for(var h=0;d.length>h;++h){var v=d[h];if(!(r[v]||i[v]||f&&f[v])){var y=s(n,v);try{o(t,v,y)}catch(e){}}}return t}return t}},function(e,t,n){"use strict";n.d(t,"a",function(){return i});var r=(n(16),n(143)),i=(n.n(r),{INIT:"@@redux/INIT"})},function(e,t,n){"use strict";(function(e){var n="object"==typeof e&&e&&e.Object===Object&&e;t.a=n}).call(t,n(15))},function(e,t,n){"use strict";var r=n(65);t.a=Object(r.a)(Object.getPrototypeOf,Object)},function(e,t,n){"use strict";function r(e,t){return function(n){return e(t(n))}}t.a=r},function(e,t,n){"use strict"},function(e,t,n){"use strict";function r(){for(var e=arguments.length,t=Array(e),n=0;e>n;n++)t[n]=arguments[n];return 0===t.length?function(e){return e}:1===t.length?t[0]:t.reduce(function(e,t){return function(){return e(t.apply(void 0,arguments))}})}t.a=r},function(e,t,n){"use strict";function r(e){return function(t,n){function r(){return i}var i=e(t,n);return r.dependsOnOwnProps=!1,r}}function i(e){return null!==e.dependsOnOwnProps&&void 0!==e.dependsOnOwnProps?!!e.dependsOnOwnProps:1!==e.length}function o(e,t){return function(t,n){var r=function(e,t){return r.dependsOnOwnProps?r.mapToProps(e,t):r.mapToProps(e)};return r.dependsOnOwnProps=!0,r.mapToProps=function(t,n){r.mapToProps=e,r.dependsOnOwnProps=i(e);var o=r(t,n);return"function"==typeof o&&(r.mapToProps=o,r.dependsOnOwnProps=i(o),o=r(t,n)),o},r}}t.a=r,t.b=o,n(69)},function(e,t,n){"use strict";n(16),n(29)},function(e,t,n){"use strict";function r(e,t){var n={};for(var r in e)0>t.indexOf(r)&&Object.prototype.hasOwnProperty.call(e,r)&&(n[r]=e[r]);return n}var i=Object.assign||function(e){for(var t=1;arguments.length>t;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},o=function(e,t,n,r){var o=t.value;return"checkbox"===e?i({},t,{checked:!!o}):"radio"===e?i({},t,{checked:r(o,n),value:n}):"select-multiple"===e?i({},t,{value:o||[]}):"file"===e?i({},t,{value:o||void 0}):t};t.a=function(e,t,n){var a=e.getIn,u=e.toJS,s=e.deepEqual,c=n.asyncError,l=n.asyncValidating,f=n.onBlur,p=n.onChange,d=n.onDrop,h=n.onDragStart,v=n.dirty,y=n.dispatch,m=n.onFocus,g=n.form,b=n.format,O=n.initial,w=n.pristine,_=n.props,S=n.state,E=n.submitError,x=n.submitFailed,j=n.submitting,k=n.syncError,C=n.syncWarning,P=n.value,R=n._value,A=r(n,["asyncError","asyncValidating","onBlur","onChange","onDrop","onDragStart","dirty","dispatch","onFocus","form","format","initial","parse","pristine","props","state","submitError","submitFailed","submitting","syncError","syncWarning","validate","value","_value","warn"]),T=k||c||E,F=C,I=function(e,n){if(null===n)return e;var r=null==e?"":e;return n?n(e,t):r}(P,b);return{input:o(A.type,{name:t,onBlur:f,onChange:p,onDragStart:h,onDrop:d,onFocus:m,value:I},R,s),meta:i({},u(S),{active:!(!S||!a(S,"active")),asyncValidating:l,autofilled:!(!S||!a(S,"autofilled")),dirty:v,dispatch:y,error:T,form:g,initial:O,warning:F,invalid:!!T,pristine:w,submitting:!!j,submitFailed:!!x,touched:!(!S||!a(S,"touched")),valid:!T,visited:!(!S||!a(S,"visited"))}),custom:i({},A,_)}}},function(e,t,n){"use strict";var r=n(154),i=n(73);t.a=function(e,t){var n=t.name,o=t.parse,a=t.normalize,u=Object(r.a)(e,i.a);return o&&(u=o(u,n)),a&&(u=a(n,u)),u}},function(e,t,n){"use strict";t.a=function(e){return!!(e&&e.stopPropagation&&e.preventDefault)}},function(e,t,n){"use strict";t.a="undefined"!=typeof window&&window.navigator&&window.navigator.product&&"ReactNative"===window.navigator.product},function(e,t,n){"use strict";function r(e,t){for(var n=-1,r=null==e?0:e.length,i=Array(r);++n<r;)i[n]=t(e[n],n,e);return i}t.a=r},function(e,t,n){"use strict";function r(e,t){var n=-1,r=e.length;for(t||(t=Array(r));++n<r;)t[n]=e[n];return t}t.a=r},function(e,t,n){"use strict";var r=n(158),i=/^\./,o=/[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|$))/g,a=/\\(\\)?/g;t.a=Object(r.a)(function(e){var t=[];return i.test(e)&&t.push(""),e.replace(o,function(e,n,r,i){t.push(r?i.replace(a,"$1"):n||e)}),t})},function(e,t,n){"use strict";function r(e){if(null!=e){try{return o.call(e)}catch(e){}try{return e+""}catch(e){}}return""}var i=Function.prototype,o=i.toString;t.a=r},function(e,t,n){"use strict";function r(e){return null==e?"":Object(i.a)(e)}var i=n(181);t.a=r},function(e,t,n){"use strict";function r(e,t,n){n="function"==typeof n?n:void 0;var r=n?n(e,t):void 0;return void 0===r?Object(i.a)(e,t,void 0,n):!!r}var i=n(34);t.a=r},function(e,t,n){"use strict";function r(e,t,n,r,c,l){var f=n&u,p=e.length,d=t.length;if(!(p==d||f&&d>p))return!1;var h=l.get(e);if(h&&l.get(t))return h==t;var v=-1,y=!0,m=n&s?new i.a:void 0;for(l.set(e,t),l.set(t,e);++v<p;){var g=e[v],b=t[v];if(r)var O=f?r(b,g,v,t,e,l):r(g,b,v,e,t,l);if(void 0!==O){if(O)continue;y=!1;break}if(m){if(!Object(o.a)(t,function(e,t){if(!Object(a.a)(m,t)&&(g===e||c(g,e,n,r,l)))return m.push(t)})){y=!1;break}}else if(g!==b&&!c(g,b,n,r,l)){y=!1;break}}return l.delete(e),l.delete(t),y}var i=n(190),o=n(193),a=n(194),u=1,s=2;t.a=r},function(e,t,n){"use strict";t.a=n(3).a.Uint8Array},function(e,t,n){"use strict";function r(e,t){var n=Object(a.a)(e),r=!n&&Object(o.a)(e),l=!n&&!r&&Object(u.a)(e),p=!n&&!r&&!l&&Object(c.a)(e),d=n||r||l||p,h=d?Object(i.a)(e.length,String):[],v=h.length;for(var y in e)!t&&!f.call(e,y)||d&&("length"==y||l&&("offset"==y||"parent"==y)||p&&("buffer"==y||"byteLength"==y||"byteOffset"==y)||Object(s.a)(y,v))||h.push(y);return h}var i=n(205),o=n(37),a=n(4),u=n(38),s=n(39),c=n(40),l=Object.prototype,f=l.hasOwnProperty;t.a=r},function(e,t,n){"use strict";var r=n(79),i=function(e,t,n,r,i,o){if(o)return e===t};t.a=function(e,t,n){return!Object(r.a)(e.props,t,i)||!Object(r.a)(e.state,n,i)}},function(e,t,n){"use strict";function r(e,t){var n={};return t=Object(a.a)(t,3),Object(o.a)(e,function(e,r,o){Object(i.a)(n,r,t(e,r,o))}),n}var i=n(25),o=n(226),a=n(228);t.a=r},function(e,t,n){"use strict";var r=n(7);t.a=function(){try{var e=Object(r.a)(Object,"defineProperty");return e({},"",{}),e}catch(e){}}()},function(e,t,n){"use strict";var r=n(227);t.a=Object(r.a)()},function(e,t,n){"use strict";function r(e){return e===e&&!Object(i.a)(e)}var i=n(5);t.a=r},function(e,t,n){"use strict";function r(e,t){return function(n){return null!=n&&n[e]===t&&(void 0!==t||e in Object(n))}}t.a=r},function(e,t,n){"use strict";function r(e,t){t=Object(i.a)(t,e);for(var n=0,r=t.length;null!=e&&r>n;)e=e[Object(o.a)(t[n++])];return n&&n==r?e:void 0}var i=n(90),o=n(14);t.a=r},function(e,t,n){"use strict";function r(e,t){return Object(i.a)(e)?e:Object(o.a)(e,t)?[e]:Object(a.a)(Object(u.a)(e))}var i=n(4),o=n(43),a=n(76),u=n(78);t.a=r},function(e,t,n){"use strict";t.a=function(e){var t=e.deepEqual,n=e.empty,r=e.getIn;return function(e,i){return function(o){var a=i||function(e){return r(e,"form")},u=a(o),s=r(u,e+".initial")||n,c=r(u,e+".values")||s;return t(s,c)}}}},function(e,t,n){"use strict";function r(e,t,n){(void 0===n||Object(o.a)(e[t],n))&&(void 0!==n||t in e)||Object(i.a)(e,t,n)}var i=n(25),o=n(13);t.a=r},function(e,t,n){"use strict";function r(e){return Object(a.a)(e)?Object(i.a)(e,!0):Object(o.a)(e)}var i=n(82),o=n(290),a=n(24);t.a=r},function(e,t,n){"use strict";var r=n(72);t.a=function(e){var t=Object(r.a)(e);return t&&e.preventDefault(),t}},function(e,t,n){n(96),e.exports=n(97)},function(e,t,n){"use strict";"undefined"!=typeof window&&(window.initReact=function(){})},function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}Object.defineProperty(t,"__esModule",{value:!0}),t.Values=t.Sponsor=t.Markdown=t.Code=t.App=t.generateExampleBreadcrumbs=t.render=void 0;var i=n(98),o=r(i),a=n(124),u=r(a),s=n(49),c=r(s),l=n(51),f=r(l),p=n(52),d=r(p),h=n(127),v=r(h),y=n(312),m=r(y);t.render=o.default,t.generateExampleBreadcrumbs=u.default,t.App=c.default,t.Code=f.default,t.Markdown=d.default,t.Sponsor=m.default,t.Values=v.default},function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}Object.defineProperty(t,"__esModule",{value:!0});var i=n(1),o=r(i),a=n(100),u=r(a),s=n(49),c=r(s);t.default=function(e){var t=e.component,n=e.title,r=e.path,i=e.version,a=e.breadcrumbs;return'<!DOCTYPE html>\n <html lang="en">\n <head>\n <meta charSet="utf-8"/>\n <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"/>\n <title>Redux Form'+(n&&" - "+n)+'</title>\n <link href="https://unpkg.com/redux-form-website-template/dist/bundle.css"\n media="screen, projection" rel="stylesheet" type="text/css"/>\n <link href="//cdnjs.cloudflare.com/ajax/libs/font-awesome/4.4.0/css/font-awesome.min.css"\n media="screen, projection" rel="stylesheet" type="text/css"/>\n <link href="/carbon.css" media="screen, projection" rel="stylesheet" type="text/css"/>\n <meta itemprop="name" content="Redux Form"/>\n <meta property="og:type" content="website"/>\n <meta property="og:title" content="Redux Form"/>\n <meta property="og:site_name" content="Redux Form"/>\n <meta property="og:description" content="The best way to manage your form state in Redux."/>\n <meta property="og:image" content="logo.png"/>\n <meta property="twitter:site" content="@erikras"/>\n <meta property="twitter:creator" content="@erikras"/>\n <style type="text/css">\n body {\n margin: 0;\n }\n </style>\n </head>\n <body>\n <div id="content">\n '+u.default.renderToStaticMarkup(o.default.createElement(c.default,{version:i,path:r,breadcrumbs:a},t))+'\n </div>\n <script src="https://unpkg.com/react@15.6.1/dist/react.min.js" integrity="sha384-u/3By6KAUETM5AnedAbB9xV0qLxlsRyVBi8mEekTeqD468SBVx2FXEm+1lf85M7c" crossorigin="anonymous"><\/script>\n <script src="https://unpkg.com/react-dom@15.6.1/dist/react-dom.min.js" integrity="sha384-GfT+iyYg21YqdPMH/FWlWLugDiK/neASGRCN8yWPB2Hlam+uP7J0lIgPcbCeHoVG" crossorigin="anonymous"><\/script>\n <script src="https://unpkg.com/redux-form-doc-version-checker/dist/doc-check.umd.min.js"><\/script>\n <script src="https://unpkg.com/redux-form-website-template/dist/bundle.js"><\/script>\n <script src="https://m.servedby-buysellads.com/monetization.js" type="text/javascript"><\/script>\n <script>\n (function(){\n if(typeof _bsa !== \'undefined\' && _bsa) {\n _bsa.init(\'default\', \'CKYDV5QM\', \'placement:reduxformcom\', {\n target: \'.bsa-cpc\',\n align: \'horizontal\',\n disable_css: \'true\'\n })\n }\n })()\n <\/script>\n <script>initReact('+JSON.stringify({version:i,path:r,breadcrumbs:a})+")<\/script>\n <script>\n (function(i,s,o,g,r,a,m){i[ 'GoogleAnalyticsObject' ] = r;i[r]=i[r]||function(){\n (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),\n m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)\n })(window,document,'script','//www.google-analytics.com/analytics.js','ga');\n ga('create', 'UA-69298417-1', 'auto');\n ga('send', 'pageview');\n <\/script>\n <script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+'://platform.twitter.com/widgets.js';fjs.parentNode.insertBefore(js,fjs);}}(document, 'script', 'twitter-wjs');<\/script>\n </body>\n </html>"}},function(e,t,n){"use strict";function r(e){for(var t=arguments.length-1,n="Minified React error #"+e+"; visit http://facebook.github.io/react/docs/error-decoder.html?invariant="+e,r=0;t>r;r++)n+="&args[]="+encodeURIComponent(arguments[r+1]);throw t=Error(n+" for the full message or use the non-minified dev environment for full errors and additional helpful warnings."),t.name="Invariant Violation",t.framesToPop=1,t}function i(e,t,n){this.props=e,this.context=t,this.refs=b,this.updater=n||C}function o(e,t,n){this.props=e,this.context=t,this.refs=b,this.updater=n||C}function a(){}function u(e,t,n){this.props=e,this.context=t,this.refs=b,this.updater=n||C}function s(e,t,n){var r,i={},o=null,a=null;if(null!=t)for(r in void 0!==t.ref&&(a=t.ref),void 0!==t.key&&(o=""+t.key),t)T.call(t,r)&&!F.hasOwnProperty(r)&&(i[r]=t[r]);var u=arguments.length-2;if(1===u)i.children=n;else if(u>1){for(var s=Array(u),c=0;u>c;c++)s[c]=arguments[c+2];i.children=s}if(e&&e.defaultProps)for(r in u=e.defaultProps)void 0===i[r]&&(i[r]=u[r]);return{$$typeof:_,type:e,key:o,ref:a,props:i,_owner:A.current}}function c(e){return"object"==typeof e&&null!==e&&e.$$typeof===_}function l(e){var t={"=":"=0",":":"=2"};return"$"+(""+e).replace(/[=:]/g,function(e){return t[e]})}function f(e,t,n,r){if(N.length){var i=N.pop();return i.result=e,i.keyPrefix=t,i.func=n,i.context=r,i.count=0,i}return{result:e,keyPrefix:t,func:n,context:r,count:0}}function p(e){e.result=null,e.keyPrefix=null,e.func=null,e.context=null,e.count=0,10>N.length&&N.push(e)}function d(e,t,n,i){var o=typeof e;"undefined"!==o&&"boolean"!==o||(e=null);var a=!1;if(null===e)a=!0;else switch(o){case"string":case"number":a=!0;break;case"object":switch(e.$$typeof){case _:case S:case E:case x:a=!0}}if(a)return n(i,e,""===t?"."+h(e,0):t),1;if(a=0,t=""===t?".":t+":",Array.isArray(e))for(var u=0;e.length>u;u++){o=e[u];var s=t+h(o,u);a+=d(o,s,n,i)}else if(null===e||void 0===e?s=null:(s=k&&e[k]||e["@@iterator"],s="function"==typeof s?s:null),"function"==typeof s)for(e=s.call(e),u=0;!(o=e.next()).done;)o=o.value,s=t+h(o,u++),a+=d(o,s,n,i);else"object"===o&&(n=""+e,r("31","[object Object]"===n?"object with keys {"+Object.keys(e).join(", ")+"}":n,""));return a}function h(e,t){return"object"==typeof e&&null!==e&&null!=e.key?l(e.key):t.toString(36)}function v(e,t){e.func.call(e.context,t,e.count++)}function y(e,t,n){var r=e.result,i=e.keyPrefix;e=e.func.call(e.context,t,e.count++),Array.isArray(e)?m(e,r,n,O.thatReturnsArgument):null!=e&&(c(e)&&(t=i+(!e.key||t&&t.key===e.key?"":(""+e.key).replace(I,"$&/")+"/")+n,e={$$typeof:_,type:e.type,key:t,ref:e.ref,props:e.props,_owner:e._owner}),r.push(e))}function m(e,t,n,r,i){var o="";null!=n&&(o=(""+n).replace(I,"$&/")+"/"),t=f(t,o,r,i),null==e||d(e,"",y,t),p(t)}/** @license React v16.2.0 * react.production.min.js * * Copyright (c) 2013-present, Facebook, Inc. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ var g=n(47),b=n(48),O=n(26),w="function"==typeof Symbol&&Symbol.for,_=w?Symbol.for("react.element"):60103,S=w?Symbol.for("react.call"):60104,E=w?Symbol.for("react.return"):60105,x=w?Symbol.for("react.portal"):60106,j=w?Symbol.for("react.fragment"):60107,k="function"==typeof Symbol&&Symbol.iterator,C={isMounted:function(){return!1},enqueueForceUpdate:function(){},enqueueReplaceState:function(){},enqueueSetState:function(){}};i.prototype.isReactComponent={},i.prototype.setState=function(e,t){"object"!=typeof e&&"function"!=typeof e&&null!=e&&r("85"),this.updater.enqueueSetState(this,e,t,"setState")},i.prototype.forceUpdate=function(e){this.updater.enqueueForceUpdate(this,e,"forceUpdate")},a.prototype=i.prototype;var P=o.prototype=new a;P.constructor=o,g(P,i.prototype),P.isPureReactComponent=!0;var R=u.prototype=new a;R.constructor=u,g(R,i.prototype),R.unstable_isAsyncReactComponent=!0,R.render=function(){return this.props.children};var A={current:null},T=Object.prototype.hasOwnProperty,F={key:!0,ref:!0,__self:!0,__source:!0},I=/\/+/g,N=[],M={Children:{map:function(e,t,n){if(null==e)return e;var r=[];return m(e,r,null,t,n),r},forEach:function(e,t,n){if(null==e)return e;t=f(null,null,t,n),null==e||d(e,"",v,t),p(t)},count:function(e){return null==e?0:d(e,"",O.thatReturnsNull,null)},toArray:function(e){var t=[];return m(e,t,null,O.thatReturnsArgument),t},only:function(e){return c(e)||r("143"),e}},Component:i,PureComponent:o,unstable_AsyncComponent:u,Fragment:j,createElement:s,cloneElement:function(e,t,n){var r=g({},e.props),i=e.key,o=e.ref,a=e._owner;if(null!=t){if(void 0!==t.ref&&(o=t.ref,a=A.current),void 0!==t.key&&(i=""+t.key),e.type&&e.type.defaultProps)var u=e.type.defaultProps;for(s in t)T.call(t,s)&&!F.hasOwnProperty(s)&&(r[s]=void 0===t[s]&&void 0!==u?u[s]:t[s])}var s=arguments.length-2;if(1===s)r.children=n;else if(s>1){u=Array(s);for(var c=0;s>c;c++)u[c]=arguments[c+2];r.children=u}return{$$typeof:_,type:e.type,key:i,ref:o,props:r,_owner:a}},createFactory:function(e){var t=s.bind(null,e);return t.type=e,t},isValidElement:c,version:"16.2.0",__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED:{ReactCurrentOwner:A,assign:g}},V=Object.freeze({default:M}),U=V&&M||V;e.exports=U.default?U.default:U},function(e,t,n){"use strict";e.exports=n(101)},function(e,t,n){"use strict";function r(e){for(var t=arguments.length-1,n="Minified React error #"+e+"; visit http://facebook.github.io/react/docs/error-decoder.html?invariant="+e,r=0;t>r;r++)n+="&args[]="+encodeURIComponent(arguments[r+1]);throw t=Error(n+" for the full message or use the non-minified dev environment for full errors and additional helpful warnings."),t.name="Invariant Violation",t.framesToPop=1,t}function i(e,t){return(e&t)===t}function o(e,t){if(E.hasOwnProperty(e)||e.length>2&&("o"===e[0]||"O"===e[0])&&("n"===e[1]||"N"===e[1]))return!1;if(null===t)return!0;switch(typeof t){case"boolean":return u(e);case"undefined":case"number":case"string":case"object":return!0;default:return!1}}function a(e){return j.hasOwnProperty(e)?j[e]:null}function u(e){if(E.hasOwnProperty(e))return!0;var t=a(e);return t?t.hasBooleanValue||t.hasStringBooleanValue||t.hasOverloadedBooleanValue:"data-"===(e=e.toLowerCase().slice(0,5))||"aria-"===e}function s(e){return e[1].toUpperCase()}function c(e){if("boolean"==typeof e||"number"==typeof e)return""+e;e=""+e;var t=L.exec(e);if(t){var n,r="",i=0;for(n=t.index;e.length>n;n++){switch(e.charCodeAt(n)){case 34:t="&quot;";break;case 38:t="&amp;";break;case 39:t="&#x27;";break;case 60:t="&lt;";break;case 62:t="&gt;";break;default:continue}i!==n&&(r+=e.substring(i,n)),i=n+1,r+=t}e=i!==n?r+e.substring(i,n):r}return e}function l(e){return!!z.hasOwnProperty(e)||!W.hasOwnProperty(e)&&(q.test(e)?z[e]=!0:(W[e]=!0,!1))}function f(e,t){var n=a(e);if(n){if(null==t||n.hasBooleanValue&&!t||n.hasNumericValue&&isNaN(t)||n.hasPositiveNumericValue&&1>t||n.hasOverloadedBooleanValue&&!1===t)return"";var r=n.attributeName;if(n.hasBooleanValue||n.hasOverloadedBooleanValue&&!0===t)return r+'=""';if("boolean"!=typeof t||u(e))return r+'="'+c(t)+'"'}else if(o(e,t))return null==t?"":e+'="'+c(t)+'"';return null}function p(e){switch(e){case"svg":return"http://www.w3.org/2000/svg";case"math":return"http://www.w3.org/1998/Math/MathML";default:return"http://www.w3.org/1999/xhtml"}}function d(e){return"string"==typeof e?e:"function"==typeof e?e.displayName||e.name:null}function h(e){var t="";return b.Children.forEach(e,function(e){null==e||"string"!=typeof e&&"number"!=typeof e||(t+=e)}),t}function v(e,t){if(e=e.contextTypes){var n,r={};for(n in e)r[n]=t[n];t=r}else t=w;return t}function y(e,t){void 0===e&&r("152",d(t)||"Component")}function m(e,t){for(;b.isValidElement(e);){var n=e,i=n.type;if("function"!=typeof i)break;e=v(i,t);var o=[],a=!1,u={isMounted:function(){return!1},enqueueForceUpdate:function(){if(null===o)return null},enqueueReplaceState:function(e,t){a=!0,o=[t]},enqueueSetState:function(e,t){if(null===o)return null;o.push(t)}};if(i.prototype&&i.prototype.isReactComponent)var s=new i(n.props,e,u);else if(null==(s=i(n.props,e,u))||null==s.render){e=s,y(e,i);continue}if(s.props=n.props,s.context=e,s.updater=u,u=s.state,void 0===u&&(s.state=u=null),s.componentWillMount)if(s.componentWillMount(),o.length){u=o;var c=a;if(o=null,a=!1,c&&1===u.length)s.state=u[0];else{var l=c?u[0]:s.state,f=!0;for(c=c?1:0;u.length>c;c++){var p=u[c];(p="function"==typeof p?p.call(s,l,n.props,e):p)&&(f?(f=!1,l=g({},l,p)):g(l,p))}s.state=l}}else o=null;if(e=s.render(),y(e,i),"function"==typeof s.getChildContext&&"object"==typeof(n=i.childContextTypes)){var h=s.getChildContext();for(var m in h)m in n||r("108",d(i)||"Unknown",m)}h&&(t=g({},t,h))}return{child:e,context:t}}/** @license React v16.2.0 * react-dom-server.browser.production.min.js * * Copyright (c) 2013-present, Facebook, Inc. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ var g=n(47),b=n(1),O=n(26),w=n(48),_=n(102),S=n(104),E={children:!0,dangerouslySetInnerHTML:!0,defaultValue:!0,defaultChecked:!0,innerHTML:!0,suppressContentEditableWarning:!0,suppressHydrationWarning:!0,style:!0},x={MUST_USE_PROPERTY:1,HAS_BOOLEAN_VALUE:4,HAS_NUMERIC_VALUE:8,HAS_POSITIVE_NUMERIC_VALUE:24,HAS_OVERLOADED_BOOLEAN_VALUE:32,HAS_STRING_BOOLEAN_VALUE:64,injectDOMPropertyConfig:function(e){var t=x,n=e.Properties||{},o=e.DOMAttributeNamespaces||{},a=e.DOMAttributeNames||{};e=e.DOMMutationMethods||{};for(var u in n){j.hasOwnProperty(u)&&r("48",u);var s=u.toLowerCase(),c=n[u];s={attributeName:s,attributeNamespace:null,propertyName:u,mutationMethod:null,mustUseProperty:i(c,t.MUST_USE_PROPERTY),hasBooleanValue:i(c,t.HAS_BOOLEAN_VALUE),hasNumericValue:i(c,t.HAS_NUMERIC_VALUE),hasPositiveNumericValue:i(c,t.HAS_POSITIVE_NUMERIC_VALUE),hasOverloadedBooleanValue:i(c,t.HAS_OVERLOADED_BOOLEAN_VALUE),hasStringBooleanValue:i(c,t.HAS_STRING_BOOLEAN_VALUE)},s.hasBooleanValue+s.hasNumericValue+s.hasOverloadedBooleanValue>1&&r("50",u),a.hasOwnProperty(u)&&(s.attributeName=a[u]),o.hasOwnProperty(u)&&(s.attributeNamespace=o[u]),e.hasOwnProperty(u)&&(s.mutationMethod=e[u]),j[u]=s}}},j={},k=x,C=k.MUST_USE_PROPERTY,P=k.HAS_BOOLEAN_VALUE,R=k.HAS_NUMERIC_VALUE,A=k.HAS_POSITIVE_NUMERIC_VALUE,T=k.HAS_OVERLOADED_BOOLEAN_VALUE,F=k.HAS_STRING_BOOLEAN_VALUE,I={Properties:{allowFullScreen:P,async:P,autoFocus:P,autoPlay:P,capture:T,checked:C|P,cols:A,contentEditable:F,controls:P,default:P,defer:P,disabled:P,download:T,draggable:F,formNoValidate:P,hidden:P,loop:P,multiple:C|P,muted:C|P,noValidate:P,open:P,playsInline:P,readOnly:P,required:P,reversed:P,rows:A,rowSpan:R,scoped:P,seamless:P,selected:C|P,size:A,start:R,span:A,spellCheck:F,style:0,tabIndex:0,itemScope:P,acceptCharset:0,className:0,htmlFor:0,httpEquiv:0,value:F},DOMAttributeNames:{acceptCharset:"accept-charset",className:"class",htmlFor:"for",httpEquiv:"http-equiv"},DOMMutationMethods:{value:function(e,t){if(null==t)return e.removeAttribute("value");"number"!==e.type||!1===e.hasAttribute("value")?e.setAttribute("value",""+t):e.validity&&!e.validity.badInput&&e.ownerDocument.activeElement!==e&&e.setAttribute("value",""+t)}}},N=k.HAS_STRING_BOOLEAN_VALUE,M={xlink:"http://www.w3.org/1999/xlink",xml:"http://www.w3.org/XML/1998/namespace"},V={Properties:{autoReverse:N,externalResourcesRequired:N,preserveAlpha:N},DOMAttributeNames:{autoReverse:"autoReverse",externalResourcesRequired:"externalResourcesRequired",preserveAlpha:"preserveAlpha"},DOMAttributeNamespaces:{xlinkActuate:M.xlink,xlinkArcrole:M.xlink,xlinkHref:M.xlink,xlinkRole:M.xlink,xlinkShow:M.xlink,xlinkTitle:M.xlink,xlinkType:M.xlink,xmlBase:M.xml,xmlLang:M.xml,xmlSpace:M.xml}},U=/[\-\:]([a-z])/g;"accent-height alignment-baseline arabic-form baseline-shift cap-height clip-path clip-rule color-interpolation color-interpolation-filters color-profile color-rendering dominant-baseline enable-background fill-opacity fill-rule flood-color flood-opacity font-family font-size font-size-adjust font-stretch font-style font-variant font-weight glyph-name glyph-orientation-horizontal glyph-orientation-vertical horiz-adv-x horiz-origin-x image-rendering letter-spacing lighting-color marker-end marker-mid marker-start overline-position overline-thickness paint-order panose-1 pointer-events rendering-intent shape-rendering stop-color stop-opacity strikethrough-position strikethrough-thickness stroke-dasharray stroke-dashoffset stroke-linecap stroke-linejoin stroke-miterlimit stroke-opacity stroke-width text-anchor text-decoration text-rendering underline-position underline-thickness unicode-bidi unicode-range units-per-em v-alphabetic v-hanging v-ideographic v-mathematical vector-effect vert-adv-y vert-origin-x vert-origin-y word-spacing writing-mode x-height xlink:actuate xlink:arcrole xlink:href xlink:role xlink:show xlink:title xlink:type xml:base xmlns:xlink xml:lang xml:space".split(" ").forEach(function(e){var t=e.replace(U,s);V.Properties[t]=0,V.DOMAttributeNames[t]=e}),k.injectDOMPropertyConfig(I),k.injectDOMPropertyConfig(V);var D="function"==typeof Symbol&&Symbol.for?Symbol.for("react.fragment"):60107,L=/["'&<>]/,q=/^[:A-Z_a-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD][:A-Z_a-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD\-.0-9\u00B7\u0300-\u036F\u203F-\u2040]*$/,W={},z={},B={html:"http://www.w3.org/1999/xhtml",mathml:"http://www.w3.org/1998/Math/MathML",svg:"http://www.w3.org/2000/svg"},H={area:!0,base:!0,br:!0,col:!0,embed:!0,hr:!0,img:!0,input:!0,keygen:!0,link:!0,meta:!0,param:!0,source:!0,track:!0,wbr:!0},Y=g({menuitem:!0},H),$={animationIterationCount:!0,borderImageOutset:!0,borderImageSlice:!0,borderImageWidth:!0,boxFlex:!0,boxFlexGroup:!0,boxOrdinalGroup:!0,columnCount:!0,columns:!0,flex:!0,flexGrow:!0,flexPositive:!0,flexShrink:!0,flexNegative:!0,flexOrder:!0,gridRow:!0,gridRowEnd:!0,gridRowSpan:!0,gridRowStart:!0,gridColumn:!0,gridColumnEnd:!0,gridColumnSpan:!0,gridColumnStart:!0,fontWeight:!0,lineClamp:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,tabSize:!0,widows:!0,zIndex:!0,zoom:!0,fillOpacity:!0,floodOpacity:!0,stopOpacity:!0,strokeDasharray:!0,strokeDashoffset:!0,strokeMiterlimit:!0,strokeOpacity:!0,strokeWidth:!0},G=["Webkit","ms","Moz","O"];Object.keys($).forEach(function(e){G.forEach(function(t){t=t+e.charAt(0).toUpperCase()+e.substring(1),$[t]=$[e]})});var K=b.Children.toArray,J=O.thatReturns(""),Q={listing:!0,pre:!0,textarea:!0},Z=/^[a-zA-Z][a-zA-Z:_\.\-\d]*$/,X={},ee=S(function(e){return _(e)}),te={children:null,dangerouslySetInnerHTML:null,suppressContentEditableWarning:null,suppressHydrationWarning:null},ne=function(){function e(t,n){if(!(this instanceof e))throw new TypeError("Cannot call a class as a function");b.isValidElement(t)?t.type!==D?t=[t]:(t=t.props.children,t=b.isValidElement(t)?[t]:K(t)):t=K(t),this.stack=[{domNamespace:B.html,children:t,childIndex:0,context:w,footer:""}],this.exhausted=!1,this.currentSelectValue=null,this.previousWasTextNode=!1,this.makeStaticMarkup=n}return e.prototype.read=function(e){if(this.exhausted)return null;for(var t="";e>t.length;){if(0===this.stack.length){this.exhausted=!0;break}var n=this.stack[this.stack.length-1];if(n.childIndex<n.children.length)r=n.children[n.childIndex++],t+=this.render(r,n.context,n.domNamespace);else{var r=n.footer;t+=r,""!==r&&(this.previousWasTextNode=!1),this.stack.pop(),"select"===n.tag&&(this.currentSelectValue=null)}}return t},e.prototype.render=function(e,t,n){return"string"==typeof e||"number"==typeof e?""==(n=""+e)?"":this.makeStaticMarkup?c(n):this.previousWasTextNode?"\x3c!-- --\x3e"+c(n):(this.previousWasTextNode=!0,c(n)):(t=m(e,t),e=t.child,t=t.context,null===e||!1===e?"":b.isValidElement(e)?e.type===D?(e=K(e.props.children),this.stack.push({domNamespace:n,children:e,childIndex:0,context:t,footer:""}),""):this.renderDOM(e,t,n):(e=K(e),this.stack.push({domNamespace:n,children:e,childIndex:0,context:t,footer:""}),""))},e.prototype.renderDOM=function(e,t,n){var i=e.type.toLowerCase();n===B.html&&p(i),X.hasOwnProperty(i)||(Z.test(i)||r("65",i),X[i]=!0);var o=e.props;if("input"===i)o=g({type:void 0},o,{defaultChecked:void 0,defaultValue:void 0,value:null!=o.value?o.value:o.defaultValue,checked:null!=o.checked?o.checked:o.defaultChecked});else if("textarea"===i){var a=o.value;if(null==a){a=o.defaultValue;var u=o.children;null!=u&&(null!=a&&r("92"),Array.isArray(u)&&(u.length>1&&r("93"),u=u[0]),a=""+u),null==a&&(a="")}o=g({},o,{value:void 0,children:""+a})}else if("select"===i)this.currentSelectValue=null!=o.value?o.value:o.defaultValue,o=g({},o,{value:void 0});else if("option"===i){u=this.currentSelectValue;var s=h(o.children);if(null!=u){var d=null!=o.value?o.value+"":s;if(a=!1,Array.isArray(u)){for(var v=0;u.length>v;v++)if(""+u[v]===d){a=!0;break}}else a=""+u===d;o=g({selected:void 0,children:void 0},o,{selected:a,children:s})}}(a=o)&&(Y[i]&&(null!=a.children||null!=a.dangerouslySetInnerHTML)&&r("137",i,J()),null!=a.dangerouslySetInnerHTML&&(null!=a.children&&r("60"),"object"==typeof a.dangerouslySetInnerHTML&&"__html"in a.dangerouslySetInnerHTML||r("61")),null!=a.style&&"object"!=typeof a.style&&r("62",J())),a=o,u=this.makeStaticMarkup,s=1===this.stack.length,d="<"+e.type;for(_ in a)if(a.hasOwnProperty(_)){var y=a[_];if(null!=y){if("style"===_){v=void 0;var m="",b="";for(v in y)if(y.hasOwnProperty(v)){var O=0===v.indexOf("--"),w=y[v];null!=w&&(m+=b+ee(v)+":",b=v,O=null==w||"boolean"==typeof w||""===w?"":O||"number"!=typeof w||0===w||$.hasOwnProperty(b)&&$[b]?(""+w).trim():w+"px",m+=O,b=";")}y=m||null}v=null;e:if(O=i,w=a,-1===O.indexOf("-"))O="string"==typeof w.is;else switch(O){case"annotation-xml":case"color-profile":case"font-face":case"font-face-src":case"font-face-uri":case"font-face-format":case"font-face-name":case"missing-glyph":O=!1;break e;default:O=!0}O?te.hasOwnProperty(_)||(v=_,v=l(v)&&null!=y?v+'="'+c(y)+'"':""):v=f(_,y),v&&(d+=" "+v)}}u||s&&(d+=' data-reactroot=""');var _=d;a="",H.hasOwnProperty(i)?_+="/>":(_+=">",a="</"+e.type+">");e:{if(null!=(u=o.dangerouslySetInnerHTML)){if(null!=u.__html){u=u.__html;break e}}else if("string"==typeof(u=o.children)||"number"==typeof u){u=c(u);break e}u=null}return null!=u?(o=[],Q[i]&&"\n"===u.charAt(0)&&(_+="\n"),_+=u):o=K(o.children),e=e.type,n=null==n||"http://www.w3.org/1999/xhtml"===n?p(e):"http://www.w3.org/2000/svg"===n&&"foreignObject"===e?"http://www.w3.org/1999/xhtml":n,this.stack.push({domNamespace:n,tag:i,children:o,childIndex:0,context:t,footer:a}),this.previousWasTextNode=!1,_},e}(),re={renderToString:function(e){return new ne(e,!1).read(1/0)},renderToStaticMarkup:function(e){return new ne(e,!0).read(1/0)},renderToNodeStream:function(){r("207")},renderToStaticNodeStream:function(){r("208")},version:"16.2.0"},ie=Object.freeze({default:re}),oe=ie&&re||ie;e.exports=oe.default?oe.default:oe},function(e,t,n){"use strict";function r(e){return i(e).replace(o,"-ms-")}var i=n(103),o=/^ms-/;e.exports=r},function(e,t,n){"use strict";function r(e){return e.replace(i,"-$1").toLowerCase()}var i=/([A-Z])/g;e.exports=r},function(e,t,n){"use strict";function r(e){var t={};return function(n){return t.hasOwnProperty(n)||(t[n]=e.call(this,n)),t[n]}}e.exports=r},function(e,t){e.exports={app:"app___3P8ep",topNav:"topNav___sBW8S",brand:"brand___YAZl-",github:"github___3-vRv",contentAndFooter:"contentAndFooter___kE2nt",content:"content___3TVHp",home:"home___2XyPG",hasNav:"hasNav___1KF_W",footer:"footer___1oh0h",help:"help___3OayI"}},function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}Object.defineProperty(t,"__esModule",{value:!0});var i=n(1),o=r(i),a=n(107),u=r(a);t.default=function(e){var t=e.version,r=n(111);return o.default.createElement("div",{className:r.home},o.default.createElement("div",{className:r.masthead},o.default.createElement("div",{className:r.logo}),o.default.createElement("h1",null,"Redux Form"),o.default.createElement("div",{className:r.version},"v",t),o.default.createElement("h2",null,"The best way to manage your form state in Redux."),o.default.createElement(u.default,{user:"erikras",repo:"redux-form",type:"star",width:160,height:30,count:!0,large:!0}),o.default.createElement(u.default,{user:"erikras",repo:"redux-form",type:"fork",width:160,height:30,count:!0,large:!0})),o.default.createElement("div",{className:r.options},o.default.createElement("a",{href:"docs/GettingStarted.md"},o.default.createElement("i",{className:r.start}),"Start Here"),o.default.createElement("a",{href:"docs/api"},o.default.createElement("i",{className:r.api}),"API"),o.default.createElement("a",{href:"examples"},o.default.createElement("i",{className:r.examples}),"Examples"),o.default.createElement("a",{href:"docs/faq"},o.default.createElement("i",{className:r.faq}),"FAQ")))}},function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}Object.defineProperty(t,"__esModule",{value:!0});var i=n(1),o=r(i),a=n(2),u=r(a),s=function(e){var t=e.user,n=e.repo,r=e.type,i=e.width,a=e.height,u=e.count,s=e.large,c="https://ghbtns.com/github-btn.html?user="+t+"&repo="+n+"&type="+r;return u&&(c+="&count=true"),s&&(c+="&size=large"),o.default.createElement("iframe",{src:c,title:"GitHub Buttons",frameBorder:"0",allowTransparency:"true",scrolling:"0",width:i,height:a,style:{border:"none",width:i,height:a}})};s.propTypes={user:u.default.string.isRequired,repo:u.default.string.isRequired,type:u.default.oneOf(["star","watch","fork","follow"]).isRequired,width:u.default.number.isRequired,height:u.default.number.isRequired,count:u.default.bool,large:u.default.bool},t.default=s},function(e,t,n){"use strict";var r=n(26),i=n(109),o=n(110);e.exports=function(){function e(e,t,n,r,a,u){u!==o&&i(!1,"Calling PropTypes validators directly is not supported by the `prop-types` package. Use PropTypes.checkPropTypes() to call them. Read more at http://fb.me/use-check-prop-types")}function t(){return e}e.isRequired=e;var n={array:e,bool:e,func:e,number:e,object:e,string:e,symbol:e,any:e,arrayOf:t,element:e,instanceOf:t,node:e,objectOf:t,oneOf:t,oneOfType:t,shape:t,exact:t};return n.checkPropTypes=r,n.PropTypes=n,n}},function(e,t,n){"use strict";function r(e,t,n,r,o,a,u,s){if(i(t),!e){var c;if(void 0===t)c=Error("Minified exception occurred; use the non-minified dev environment for the full error message and additional helpful warnings.");else{var l=[n,r,o,a,u,s],f=0;c=Error(t.replace(/%s/g,function(){return l[f++]})),c.name="Invariant Violation"}throw c.framesToPop=1,c}}var i=function(e){};e.exports=r},function(e,t,n){"use strict";e.exports="SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED"},function(e,t){e.exports={home:"home___381a9",masthead:"masthead___MGNF0",logo:"logo___hP7wi",content:"content___2vYdp",version:"version___2mbZo",github:"github___mrRv3",options:"options___2Tyc4",start:"start___1WlUb",api:"api___1hCrr",examples:"examples___2H_mp",faq:"faq___2mIT0"}},function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}function i(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function o(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function a(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function u(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}Object.defineProperty(t,"__esModule",{value:!0});var s=function(){function e(e,t){for(var n=0;t.length>n;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),c=n(1),l=r(c),f=n(2),p=r(f),d=n(50),h=r(d),v=n(27),y=r(v),m=n(113),g=r(m),b=function(e){return/<p>(.+)<\/p>/.exec((0,y.default)(e))[1]},O=function(e){function t(e){o(this,t);var n=a(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e));return n.open=n.open.bind(n),n.close=n.close.bind(n),n.state={open:!1},n}return u(t,e),s(t,[{key:"renderItem",value:function(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:0,r=this.props,o=r.path;return l.default.createElement("a",{href:""+(r.url||"")+e,className:(0,h.default)(g.default["indent"+n],i({},g.default.active,e===o)),dangerouslySetInnerHTML:{__html:b(t)}})}},{key:"open",value:function(){this.setState({open:!0})}},{key:"close",value:function(){this.setState({open:!1})}},{key:"render",value:function(){var e=this.state.open,t=this.props.url;return l.default.createElement("div",{className:(0,h.default)(g.default.nav,i({},g.default.open,e))},l.default.createElement("button",{type:"button",onClick:this.open}),l.default.createElement("div",{className:g.default.overlay,onClick:this.close},l.default.createElement("i",{className:"fa fa-times"})," Close"),l.default.createElement("div",{className:g.default.placeholder}),l.default.createElement("nav",{className:g.default.menu},l.default.createElement("a",{href:t,className:g.default.brand},"Redux Form"),l.default.createElement("div",{className:"bsa-cpc"}),this.renderItem("/docs/GettingStarted.md","Getting Started"),this.renderItem("/docs/MigrationGuide.md","`v6` Migration Guide"),this.renderItem("/docs/ValueLifecycle.md","Value Lifecycle"),this.renderItem("/docs/Flow.md","Flow"),this.renderItem("/docs/api","API"),this.renderItem("/docs/api/ReduxForm.md","`reduxForm()`",1),this.renderItem("/docs/api/Props.md","`props`",1),this.renderItem("/docs/api/Field.md","`Field`",1),this.renderItem("/docs/api/Fields.md","`Fields`",1),this.renderItem("/docs/api/FieldArray.md","`FieldArray`",1),this.renderItem("/docs/api/Form.md","`Form`",1),this.renderItem("/docs/api/FormSection.md","`FormSection`",1),this.renderItem("/docs/api/FormValues.md","`formValues()`",1),this.renderItem("/docs/api/FormValueSelector.md","`formValueSelector()`",1),this.renderItem("/docs/api/Reducer.md","`reducer`",1),this.renderItem("/docs/api/ReducerPlugin.md","`reducer.plugin()`",2),this.renderItem("/docs/api/SubmissionError.md","`SubmissionError`",1),this.renderItem("/docs/api/ActionCreators.md","Action Creators",1),this.renderItem("/docs/api/Selectors.md","Selectors",1),this.renderItem("/docs/faq","FAQ"),this.renderItem("/examples","Examples"),this.renderItem("/examples/simple","Simple Form",1),this.renderItem("/examples/syncValidation","Sync Validation",1),this.renderItem("/examples/fieldLevelValidation","Field-Level Validation",1),this.renderItem("/examples/submitValidation","Submit Validation",1),this.renderItem("/examples/asyncValidation","Async Validation",1),this.renderItem("/examples/initializeFromState","Initializing from State",1),this.renderItem("/examples/selectingFormValues","Selecting Form Values",1),this.renderItem("/examples/fieldArrays","Field Arrays",1),this.renderItem("/examples/remoteSubmit","Remote Submit",1),this.renderItem("/examples/normalizing","Normalizing",1),this.renderItem("/examples/immutable","Immutable JS",1),this.renderItem("/examples/wizard","Wizard Form",1),this.renderItem("/examples/material-ui","Material UI",1),this.renderItem("/examples/react-widgets","React Widgets",1),this.renderItem("/docs/DocumentationVersions.md","Older Versions")))}}]),t}(c.Component);O.propTypes={path:p.default.string.isRequired,url:p.default.string.isRequired},t.default=O},function(e,t){e.exports={nav:"nav___11xa5",placeholder:"placeholder___TzF1K",overlay:"overlay___1GMox",menu:"menu___12xDU",active:"active___2eU59",brand:"brand___1qRUu",indent1:"indent1___4iVnL",indent2:"indent2___2PiOO",open:"open___3Bk_k"}},function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}Object.defineProperty(t,"__esModule",{value:!0});var i=n(1),o=r(i),a=n(27),u=r(a),s=n(115),c=r(s),l=function(e){return/<p>(.+)<\/p>/.exec((0,u.default)(e))[1]};t.default=function(e){var t=e.items;return!(!t||!t.length)&&o.default.createElement("ol",{className:c.default.breadcrumbs},t.map(function(e,n){var r=e.path,i=e.title;return n===t.length-1?o.default.createElement("li",{key:n,dangerouslySetInnerHTML:{__html:l(i)}}):o.default.createElement("li",{key:n},o.default.createElement("a",{href:r,dangerouslySetInnerHTML:{__html:l(i)}}))}))}},function(e,t){e.exports={breadcrumbs:"breadcrumbs___1BHo6"}},function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}Object.defineProperty(t,"__esModule",{value:!0});var i=function(e,t){return Object.freeze(Object.defineProperties(e,{raw:{value:Object.freeze(t)}}))}(["\n #_default_ {\n position: relative;\n background-color: #efefef;\n font-family: Verdana, sans-serif;\n line-height: 1.5;\n border-radius: 5px;\n box-shadow: inset 1px 1px 5px rgba(0, 0, 0, 0.4);\n }\n\n .default-ad {\n position: absolute;\n top: 6px;\n right: 6px;\n padding: 1px 4px;\n color: hsla(0, 0%, 20%, 0.3);\n text-transform: uppercase;\n font-size: 10px;\n }\n\n ._default_ {\n display: block;\n overflow: hidden;\n padding: 1em;\n line-height: 1.5;\n }\n\n a {\n text-align: left;\n color: black;\n text-decoration: none;\n }\n\n a:hover {\n color: #900;\n }\n\n .default-image img {\n display: block;\n float: left;\n width: 40px;\n border-radius: 7.5%;\n }\n\n .default-title,\n .default-description {\n display: block;\n margin-left: calc(40px + 10px);\n max-width: calc(100% - 220px);\n }\n\n .default-title {\n font-weight: 600;\n font-size: 1em;\n }\n\n .default-description {\n font-size: 0.8em;\n }\n\n .default-image:after {\n position: absolute;\n top: calc(50% - 20px);\n right: 3em;\n padding: 0.5em 1em;\n border-radius: 3px;\n background-color: #cc0000;\n color: #fff;\n content: 'Learn More';\n }\n\n .default-image:hover:after {\n background-color: #900;\n }\n"],["\n #_default_ {\n position: relative;\n background-color: #efefef;\n font-family: Verdana, sans-serif;\n line-height: 1.5;\n border-radius: 5px;\n box-shadow: inset 1px 1px 5px rgba(0, 0, 0, 0.4);\n }\n\n .default-ad {\n position: absolute;\n top: 6px;\n right: 6px;\n padding: 1px 4px;\n color: hsla(0, 0%, 20%, 0.3);\n text-transform: uppercase;\n font-size: 10px;\n }\n\n ._default_ {\n display: block;\n overflow: hidden;\n padding: 1em;\n line-height: 1.5;\n }\n\n a {\n text-align: left;\n color: black;\n text-decoration: none;\n }\n\n a:hover {\n color: #900;\n }\n\n .default-image img {\n display: block;\n float: left;\n width: 40px;\n border-radius: 7.5%;\n }\n\n .default-title,\n .default-description {\n display: block;\n margin-left: calc(40px + 10px);\n max-width: calc(100% - 220px);\n }\n\n .default-title {\n font-weight: 600;\n font-size: 1em;\n }\n\n .default-description {\n font-size: 0.8em;\n }\n\n .default-image:after {\n position: absolute;\n top: calc(50% - 20px);\n right: 3em;\n padding: 0.5em 1em;\n border-radius: 3px;\n background-color: #cc0000;\n color: #fff;\n content: 'Learn More';\n }\n\n .default-image:hover:after {\n background-color: #900;\n }\n"]),o=n(1),a=r(o),u=n(117),s=r(u),c=function(e){return a.default.createElement(l,{className:"bsa-cpc"})},l=s.default.div(i);t.default=c},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),function(e){function r(e){return e.replace(x,"-$1").toLowerCase()}function i(e){return k(e).replace(C,"-ms-")}function o(e){return"string"==typeof e}function a(e){return"function"==typeof e&&"string"==typeof e.styledComponentId}function u(e){return e.displayName||e.name||"Component"}function s(e,t){for(var n=1540483477,r=t^e.length,i=e.length,o=0;i>=4;){var a=c(e,o);a=f(a,n),a^=a>>>24,a=f(a,n),r=f(r,n),r^=a,o+=4,i-=4}switch(i){case 3:r^=l(e,o),r^=e.charCodeAt(o+2)<<16,r=f(r,n);break;case 2:r^=l(e,o),r=f(r,n);break;case 1:r^=e.charCodeAt(o),r=f(r,n)}return r^=r>>>13,r=f(r,n),(r^=r>>>15)>>>0}function c(e,t){return e.charCodeAt(t++)+(e.charCodeAt(t++)<<8)+(e.charCodeAt(t++)<<16)+(e.charCodeAt(t)<<24)}function l(e,t){return e.charCodeAt(t++)+(e.charCodeAt(t++)<<8)}function f(e,t){return e|=0,t|=0,(65535&e)*t+(((e>>>16)*t&65535)<<16)|0}n.d(t,"css",function(){return U}),n.d(t,"keyframes",function(){return Ae}),n.d(t,"injectGlobal",function(){return Te}),n.d(t,"ThemeProvider",function(){return be}),n.d(t,"withTheme",function(){return ke}),n.d(t,"ServerStyleSheet",function(){return ae}),n.d(t,"StyleSheetManager",function(){return ne});var p,d=n(118),h=n.n(d),v=n(120),y=n.n(v),m=n(1),g=n.n(m),b=n(2),O=n.n(b),w=n(121),_=n.n(w),S=n(122),E=n.n(S),x=/([A-Z])/g,j=r,k=j,C=/^ms-/,P=i,R=function e(t,n){var r=Object.keys(t).filter(function(e){var n=t[e];return void 0!==n&&null!==n&&!1!==n&&""!==n}).map(function(n){return h()(t[n])?e(t[n],n):P(n)+": "+t[n]+";"}).join(" ");return n?n+" {\n "+r+"\n}":r},A=function e(t,n){return t.reduce(function(t,r){return void 0===r||null===r||!1===r||""===r?t:Array.isArray(r)?[].concat(t,e(r,n)):r.hasOwnProperty("styledComponentId")?[].concat(t,["."+r.styledComponentId]):"function"==typeof r?n?t.concat.apply(t,e([r(n)],n)):t.concat(r):t.concat(h()(r)?R(r):""+r)},[])},T=new y.a({global:!1,cascade:!0,keyframe:!1,prefix:!0,compress:!1,semicolon:!0}),F=function(e,t,n){var r=e.join("").replace(/^\s*\/\/.*$/gm,""),i=t&&n?n+" "+t+" { "+r+" }":r;return T(n||!t?"":t,i)},I="abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ".split(""),N=I.length,M=function(e){var t="",n=void 0;for(n=e;n>N;n=Math.floor(n/N))t=I[n%N]+t;return I[n%N]+t},V=function(e,t){return t.reduce(function(t,n,r){return t.concat(n,e[r+1])},[e[0]])},U=function(e){for(var t=arguments.length,n=Array(t>1?t-1:0),r=1;t>r;r++)n[r-1]=arguments[r];return A(V(e,n))},D=/^[^\S\n]*?\/\* sc-component-id:\s+(\S+)\s+\*\//gm,L=function(e){var t=""+(e||""),n=[];return t.replace(D,function(e,t,r){return n.push({componentId:t,matchIndex:r}),e}),n.map(function(e,r){var i=e.componentId,o=e.matchIndex,a=n[r+1];return{componentId:i,cssFromDOM:a?t.slice(o,a.matchIndex):t.slice(o)}})},q=function(){return n.nc},W=function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")},z=function(){function e(e,t){for(var n=0;t.length>n;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),B=Object.assign||function(e){for(var t=1;arguments.length>t;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},H=function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)},Y=function(e,t){var n={};for(var r in e)0>t.indexOf(r)&&Object.prototype.hasOwnProperty.call(e,r)&&(n[r]=e[r]);return n},$=function(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t},G=function(){function e(t,n){var r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:"";W(this,e),this.el=t,this.isLocal=n,this.ready=!1;var i=L(r);this.size=i.length,this.components=i.reduce(function(e,t){return e[t.componentId]=t,e},{})}return e.prototype.isFull=function(){return this.size>=40},e.prototype.addComponent=function(e){if(this.ready||this.replaceElement(),this.components[e])throw Error("Trying to add Component '"+e+"' twice!");var t={componentId:e,textNode:document.createTextNode("")};this.el.appendChild(t.textNode),this.size+=1,this.components[e]=t},e.prototype.inject=function(e,t,n){this.ready||this.replaceElement();var r=this.components[e];if(!r)throw Error("Must add a new component before you can inject css into it");if(""===r.textNode.data&&r.textNode.appendData("\n/* sc-component-id: "+e+" */\n"),r.textNode.appendData(t),n){var i=this.el.getAttribute(J);this.el.setAttribute(J,i?i+" "+n:n)}var o=q();o&&this.el.setAttribute("nonce",o)},e.prototype.toHTML=function(){return this.el.outerHTML},e.prototype.toReactElement=function(){throw Error("BrowserTag doesn't implement toReactElement!")},e.prototype.clone=function(){throw Error("BrowserTag cannot be cloned!")},e.prototype.replaceElement=function(){var e=this;if(this.ready=!0,0!==this.size){var t=this.el.cloneNode();if(t.appendChild(document.createTextNode("\n")),Object.keys(this.components).forEach(function(n){var r=e.components[n];r.textNode=document.createTextNode(r.cssFromDOM),t.appendChild(r.textNode)}),!this.el.parentNode)throw Error("Trying to replace an element that wasn't mounted!");this.el.parentNode.replaceChild(t,this.el),this.el=t}},e}(),K={create:function(){for(var e=[],t={},n=document.querySelectorAll("["+J+"]"),r=n.length,i=0;r>i;i+=1){var o=n[i];e.push(new G(o,"true"===o.getAttribute(Q),o.innerHTML));var a=o.getAttribute(J);a&&a.trim().split(/\s+/).forEach(function(e){t[e]=!0})}return new te(function(e){var t=document.createElement("style");if(t.type="text/css",t.setAttribute(J,""),t.setAttribute(Q,e?"true":"false"),!document.head)throw Error("Missing document <head>");return document.head.appendChild(t),new G(t,e)},e,t)}},J="data-styled-components",Q="data-styled-components-is-local",Z="__styled-components-stylesheet__",X=null,ee=[],te=function(){function e(t){var n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:[],r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};W(this,e),this.hashes={},this.deferredInjections={},this.stylesCacheable="undefined"!=typeof document,this.tagConstructor=t,this.tags=n,this.names=r,this.constructComponentTagMap()}return e.prototype.constructComponentTagMap=function(){var e=this;this.componentTags={},this.tags.forEach(function(t){Object.keys(t.components).forEach(function(n){e.componentTags[n]=t})})},e.prototype.getName=function(e){return this.hashes[""+e]},e.prototype.alreadyInjected=function(e,t){return!!this.names[t]&&(this.hashes[""+e]=t,!0)},e.prototype.hasInjectedComponent=function(e){return!!this.componentTags[e]},e.prototype.deferredInject=function(e,t,n){this===X&&ee.forEach(function(r){r.deferredInject(e,t,n)}),this.getOrCreateTag(e,t),this.deferredInjections[e]=n},e.prototype.inject=function(e,t,n,r,i){this===X&&ee.forEach(function(r){r.inject(e,t,n)});var o=this.getOrCreateTag(e,t),a=this.deferredInjections[e];a&&(o.inject(e,a),delete this.deferredInjections[e]),o.inject(e,n,i),r&&i&&(this.hashes[""+r]=i)},e.prototype.toHTML=function(){return this.tags.map(function(e){return e.toHTML()}).join("")},e.prototype.toReactElements=function(){return this.tags.map(function(e,t){return e.toReactElement("sc-"+t)})},e.prototype.getOrCreateTag=function(e,t){var n=this.componentTags[e];if(n)return n;var r=this.tags[this.tags.length-1],i=!r||r.isFull()||r.isLocal!==t?this.createNewTag(t):r;return this.componentTags[e]=i,i.addComponent(e),i},e.prototype.createNewTag=function(e){var t=this.tagConstructor(e);return this.tags.push(t),t},e.reset=function(t){X=e.create(t)},e.create=function(){return((arguments.length>0&&void 0!==arguments[0]?arguments[0]:"undefined"==typeof document)?ae:K).create()},e.clone=function(t){var n=new e(t.tagConstructor,t.tags.map(function(e){return e.clone()}),B({},t.names));return n.hashes=B({},t.hashes),n.deferredInjections=B({},t.deferredInjections),ee.push(n),n},z(e,null,[{key:"instance",get:function(){return X||(X=e.create())}}]),e}(),ne=function(e){function t(){return W(this,t),$(this,e.apply(this,arguments))}return H(t,e),t.prototype.getChildContext=function(){var e;return e={},e[Z]=this.props.sheet,e},t.prototype.render=function(){return g.a.Children.only(this.props.children)},t}(m.Component);ne.childContextTypes=(p={},p[Z]=O.a.oneOfType([O.a.instanceOf(te),O.a.instanceOf(ae)]).isRequired,p),ne.propTypes={sheet:O.a.oneOfType([O.a.instanceOf(te),O.a.instanceOf(ae)]).isRequired};var re,ie,oe=function(){function e(t){W(this,e),this.isLocal=t,this.components={},this.size=0,this.names=[]}return e.prototype.isFull=function(){return!1},e.prototype.addComponent=function(e){if(this.components[e])throw Error("Trying to add Component '"+e+"' twice!");this.components[e]={componentId:e,css:""},this.size+=1},e.prototype.concatenateCSS=function(){var e=this;return Object.keys(this.components).reduce(function(t,n){return t+e.components[n].css},"")},e.prototype.inject=function(e,t,n){var r=this.components[e];if(!r)throw Error("Must add a new component before you can inject css into it");""===r.css&&(r.css="/* sc-component-id: "+e+" */\n"),r.css+=t.replace(/\n*$/,"\n"),n&&this.names.push(n)},e.prototype.toHTML=function(){var e=['type="text/css"',J+'="'+this.names.join(" ")+'"',Q+'="'+(this.isLocal?"true":"false")+'"'],t=q();return t&&e.push('nonce="'+t+'"'),"<style "+e.join(" ")+">"+this.concatenateCSS()+"</style>"},e.prototype.toReactElement=function(e){var t,n=(t={},t[J]=this.names.join(" "),t[Q]=""+this.isLocal,t),r=q();return r&&(n.nonce=r),g.a.createElement("style",B({key:e,type:"text/css"},n,{dangerouslySetInnerHTML:{__html:this.concatenateCSS()}}))},e.prototype.clone=function(){var t=this,n=new e(this.isLocal);return n.names=[].concat(this.names),n.size=this.size,n.components=Object.keys(this.components).reduce(function(e,n){return e[n]=B({},t.components[n]),e},{}),n},e}(),ae=function(){function e(){W(this,e),this.instance=te.clone(te.instance)}return e.prototype.collectStyles=function(e){if(this.closed)throw Error("Can't collect styles once you've called getStyleTags!");return g.a.createElement(ne,{sheet:this.instance},e)},e.prototype.getStyleTags=function(){return this.closed||(ee.splice(ee.indexOf(this.instance),1),this.closed=!0),this.instance.toHTML()},e.prototype.getStyleElement=function(){return this.closed||(ee.splice(ee.indexOf(this.instance),1),this.closed=!0),this.instance.toReactElements()},e.create=function(){return new te(function(e){return new oe(e)})},e}(),ue={children:!0,dangerouslySetInnerHTML:!0,key:!0,ref:!0,autoFocus:!0,defaultValue:!0,valueLink:!0,defaultChecked:!0,checkedLink:!0,innerHTML:!0,suppressContentEditableWarning:!0,onFocusIn:!0,onFocusOut:!0,className:!0,onCopy:!0,onCut:!0,onPaste:!0,onCompositionEnd:!0,onCompositionStart:!0,onCompositionUpdate:!0,onKeyDown:!0,onKeyPress:!0,onKeyUp:!0,onFocus:!0,onBlur:!0,onChange:!0,onInput:!0,onSubmit:!0,onReset:!0,onClick:!0,onContextMenu:!0,onDoubleClick:!0,onDrag:!0,onDragEnd:!0,onDragEnter:!0,onDragExit:!0,onDragLeave:!0,onDragOver:!0,onDragStart:!0,onDrop:!0,onMouseDown:!0,onMouseEnter:!0,onMouseLeave:!0,onMouseMove:!0,onMouseOut:!0,onMouseOver:!0,onMouseUp:!0,onSelect:!0,onTouchCancel:!0,onTouchEnd:!0,onTouchMove:!0,onTouchStart:!0,onScroll:!0,onWheel:!0,onAbort:!0,onCanPlay:!0,onCanPlayThrough:!0,onDurationChange:!0,onEmptied:!0,onEncrypted:!0,onEnded:!0,onError:!0,onLoadedData:!0,onLoadedMetadata:!0,onLoadStart:!0,onPause:!0,onPlay:!0,onPlaying:!0,onProgress:!0,onRateChange:!0,onSeeked:!0,onSeeking:!0,onStalled:!0,onSuspend:!0,onTimeUpdate:!0,onVolumeChange:!0,onWaiting:!0,onLoad:!0,onAnimationStart:!0,onAnimationEnd:!0,onAnimationIteration:!0,onTransitionEnd:!0,onCopyCapture:!0,onCutCapture:!0,onPasteCapture:!0,onCompositionEndCapture:!0,onCompositionStartCapture:!0,onCompositionUpdateCapture:!0,onKeyDownCapture:!0,onKeyPressCapture:!0,onKeyUpCapture:!0,onFocusCapture:!0,onBlurCapture:!0,onChangeCapture:!0,onInputCapture:!0,onSubmitCapture:!0,onResetCapture:!0,onClickCapture:!0,onContextMenuCapture:!0,onDoubleClickCapture:!0,onDragCapture:!0,onDragEndCapture:!0,onDragEnterCapture:!0,onDragExitCapture:!0,onDragLeaveCapture:!0,onDragOverCapture:!0,onDragStartCapture:!0,onDropCapture:!0,onMouseDownCapture:!0,onMouseEnterCapture:!0,onMouseLeaveCapture:!0,onMouseMoveCapture:!0,onMouseOutCapture:!0,onMouseOverCapture:!0,onMouseUpCapture:!0,onSelectCapture:!0,onTouchCancelCapture:!0,onTouchEndCapture:!0,onTouchMoveCapture:!0,onTouchStartCapture:!0,onScrollCapture:!0,onWheelCapture:!0,onAbortCapture:!0,onCanPlayCapture:!0,onCanPlayThroughCapture:!0,onDurationChangeCapture:!0,onEmptiedCapture:!0,onEncryptedCapture:!0,onEndedCapture:!0,onErrorCapture:!0,onLoadedDataCapture:!0,onLoadedMetadataCapture:!0,onLoadStartCapture:!0,onPauseCapture:!0,onPlayCapture:!0,onPlayingCapture:!0,onProgressCapture:!0,onRateChangeCapture:!0,onSeekedCapture:!0,onSeekingCapture:!0,onStalledCapture:!0,onSuspendCapture:!0,onTimeUpdateCapture:!0,onVolumeChangeCapture:!0,onWaitingCapture:!0,onLoadCapture:!0,onAnimationStartCapture:!0,onAnimationEndCapture:!0,onAnimationIterationCapture:!0,onTransitionEndCapture:!0},se={accept:!0,acceptCharset:!0,accessKey:!0,action:!0,allowFullScreen:!0,allowTransparency:!0,alt:!0,as:!0,async:!0,autoComplete:!0,autoPlay:!0,capture:!0,cellPadding:!0,cellSpacing:!0,charSet:!0,challenge:!0,checked:!0,cite:!0,classID:!0,className:!0,cols:!0,colSpan:!0,content:!0,contentEditable:!0,contextMenu:!0,controls:!0,coords:!0,crossOrigin:!0,data:!0,dateTime:!0,default:!0,defer:!0,dir:!0,disabled:!0,download:!0,draggable:!0,encType:!0,form:!0,formAction:!0,formEncType:!0,formMethod:!0,formNoValidate:!0,formTarget:!0,frameBorder:!0,headers:!0,height:!0,hidden:!0,high:!0,href:!0,hrefLang:!0,htmlFor:!0,httpEquiv:!0,icon:!0,id:!0,inputMode:!0,integrity:!0,is:!0,keyParams:!0,keyType:!0,kind:!0,label:!0,lang:!0,list:!0,loop:!0,low:!0,manifest:!0,marginHeight:!0,marginWidth:!0,max:!0,maxLength:!0,media:!0,mediaGroup:!0,method:!0,min:!0,minLength:!0,multiple:!0,muted:!0,name:!0,nonce:!0,noValidate:!0,open:!0,optimum:!0,pattern:!0,placeholder:!0,playsInline:!0,poster:!0,preload:!0,profile:!0,radioGroup:!0,readOnly:!0,referrerPolicy:!0,rel:!0,required:!0,reversed:!0,role:!0,rows:!0,rowSpan:!0,sandbox:!0,scope:!0,scoped:!0,scrolling:!0,seamless:!0,selected:!0,shape:!0,size:!0,sizes:!0,span:!0,spellCheck:!0,src:!0,srcDoc:!0,srcLang:!0,srcSet:!0,start:!0,step:!0,style:!0,summary:!0,tabIndex:!0,target:!0,title:!0,type:!0,useMap:!0,value:!0,width:!0,wmode:!0,wrap:!0,about:!0,datatype:!0,inlist:!0,prefix:!0,property:!0,resource:!0,typeof:!0,vocab:!0,autoCapitalize:!0,autoCorrect:!0,autoSave:!0,color:!0,itemProp:!0,itemScope:!0,itemType:!0,itemID:!0,itemRef:!0,results:!0,security:!0,unselectable:0},ce={accentHeight:!0,accumulate:!0,additive:!0,alignmentBaseline:!0,allowReorder:!0,alphabetic:!0,amplitude:!0,arabicForm:!0,ascent:!0,attributeName:!0,attributeType:!0,autoReverse:!0,azimuth:!0,baseFrequency:!0,baseProfile:!0,baselineShift:!0,bbox:!0,begin:!0,bias:!0,by:!0,calcMode:!0,capHeight:!0,clip:!0,clipPath:!0,clipRule:!0,clipPathUnits:!0,colorInterpolation:!0,colorInterpolationFilters:!0,colorProfile:!0,colorRendering:!0,contentScriptType:!0,contentStyleType:!0,cursor:!0,cx:!0,cy:!0,d:!0,decelerate:!0,descent:!0,diffuseConstant:!0,direction:!0,display:!0,divisor:!0,dominantBaseline:!0,dur:!0,dx:!0,dy:!0,edgeMode:!0,elevation:!0,enableBackground:!0,end:!0,exponent:!0,externalResourcesRequired:!0,fill:!0,fillOpacity:!0,fillRule:!0,filter:!0,filterRes:!0,filterUnits:!0,floodColor:!0,floodOpacity:!0,focusable:!0,fontFamily:!0,fontSize:!0,fontSizeAdjust:!0,fontStretch:!0,fontStyle:!0,fontVariant:!0,fontWeight:!0,format:!0,from:!0,fx:!0,fy:!0,g1:!0,g2:!0,glyphName:!0,glyphOrientationHorizontal:!0,glyphOrientationVertical:!0,glyphRef:!0,gradientTransform:!0,gradientUnits:!0,hanging:!0,horizAdvX:!0,horizOriginX:!0,ideographic:!0,imageRendering:!0,in:!0,in2:!0,intercept:!0,k:!0,k1:!0,k2:!0,k3:!0,k4:!0,kernelMatrix:!0,kernelUnitLength:!0,kerning:!0,keyPoints:!0,keySplines:!0,keyTimes:!0,lengthAdjust:!0,letterSpacing:!0,lightingColor:!0,limitingConeAngle:!0,local:!0,markerEnd:!0,markerMid:!0,markerStart:!0,markerHeight:!0,markerUnits:!0,markerWidth:!0,mask:!0,maskContentUnits:!0,maskUnits:!0,mathematical:!0,mode:!0,numOctaves:!0,offset:!0,opacity:!0,operator:!0,order:!0,orient:!0,orientation:!0,origin:!0,overflow:!0,overlinePosition:!0,overlineThickness:!0,paintOrder:!0,panose1:!0,pathLength:!0,patternContentUnits:!0,patternTransform:!0,patternUnits:!0,pointerEvents:!0,points:!0,pointsAtX:!0,pointsAtY:!0,pointsAtZ:!0,preserveAlpha:!0,preserveAspectRatio:!0,primitiveUnits:!0,r:!0,radius:!0,refX:!0,refY:!0,renderingIntent:!0,repeatCount:!0,repeatDur:!0,requiredExtensions:!0,requiredFeatures:!0,restart:!0,result:!0,rotate:!0,rx:!0,ry:!0,scale:!0,seed:!0,shapeRendering:!0,slope:!0,spacing:!0,specularConstant:!0,specularExponent:!0,speed:!0,spreadMethod:!0,startOffset:!0,stdDeviation:!0,stemh:!0,stemv:!0,stitchTiles:!0,stopColor:!0,stopOpacity:!0,strikethroughPosition:!0,strikethroughThickness:!0,string:!0,stroke:!0,strokeDasharray:!0,strokeDashoffset:!0,strokeLinecap:!0,strokeLinejoin:!0,strokeMiterlimit:!0,strokeOpacity:!0,strokeWidth:!0,surfaceScale:!0,systemLanguage:!0,tableValues:!0,targetX:!0,targetY:!0,textAnchor:!0,textDecoration:!0,textRendering:!0,textLength:!0,to:!0,transform:!0,u1:!0,u2:!0,underlinePosition:!0,underlineThickness:!0,unicode:!0,unicodeBidi:!0,unicodeRange:!0,unitsPerEm:!0,vAlphabetic:!0,vHanging:!0,vIdeographic:!0,vMathematical:!0,values:!0,vectorEffect:!0,version:!0,vertAdvY:!0,vertOriginX:!0,vertOriginY:!0,viewBox:!0,viewTarget:!0,visibility:!0,widths:!0,wordSpacing:!0,writingMode:!0,x:!0,xHeight:!0,x1:!0,x2:!0,xChannelSelector:!0,xlinkActuate:!0,xlinkArcrole:!0,xlinkHref:!0,xlinkRole:!0,xlinkShow:!0,xlinkTitle:!0,xlinkType:!0,xmlBase:!0,xmlns:!0,xmlnsXlink:!0,xmlLang:!0,xmlSpace:!0,y:!0,y1:!0,y2:!0,yChannelSelector:!0,z:!0,zoomAndPan:!0},le=RegExp.prototype.test.bind(RegExp("^(data|aria)-[:A-Z_a-z\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u02FF\\u0370-\\u037D\\u037F-\\u1FFF\\u200C-\\u200D\\u2070-\\u218F\\u2C00-\\u2FEF\\u3001-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFFD\\-.0-9\\u00B7\\u0300-\\u036F\\u203F-\\u2040]*$")),fe={}.hasOwnProperty,pe=function(e){return fe.call(se,e)||fe.call(ce,e)||le(e.toLowerCase())||fe.call(ue,e)},de=function(e,t,n){var r=n&&e.theme===n.theme;return e.theme&&!r?e.theme:t},he=function(e){function t(e){a=e;for(var t in i){var n=i[t];void 0!==n&&n(a)}}function n(e){var t=o;return i[t]=e,o+=1,e(a),t}function r(e){i[e]=void 0}var i={},o=0,a=e;return{publish:t,subscribe:n,unsubscribe:r}},ve="__styled-components__",ye=ve+"next__",me=O.a.shape({getTheme:O.a.func,subscribe:O.a.func,unsubscribe:O.a.func}),ge=function(e){var t=!1;return function(){t||(t=!0,e())}}(function(){console.error("Warning: Usage of `context."+ve+"` as a function is deprecated. It will be replaced with the object on `.context."+ye+"` in a future version.")}),be=function(e){function t(){W(this,t);var n=$(this,e.call(this));return n.unsubscribeToOuterId=-1,n.getTheme=n.getTheme.bind(n),n}return H(t,e),t.prototype.componentWillMount=function(){var e=this,t=this.context[ye];void 0!==t&&(this.unsubscribeToOuterId=t.subscribe(function(t){e.outerTheme=t})),this.broadcast=he(this.getTheme())},t.prototype.getChildContext=function(){var e,t=this;return B({},this.context,(e={},e[ye]={getTheme:this.getTheme,subscribe:this.broadcast.subscribe,unsubscribe:this.broadcast.unsubscribe},e[ve]=function(e){ge();var n=t.broadcast.subscribe(e);return function(){return t.broadcast.unsubscribe(n)}},e))},t.prototype.componentWillReceiveProps=function(e){this.props.theme!==e.theme&&this.broadcast.publish(this.getTheme(e.theme))},t.prototype.componentWillUnmount=function(){-1!==this.unsubscribeToOuterId&&this.context[ye].unsubscribe(this.unsubscribeToOuterId)},t.prototype.getTheme=function(e){var t=e||this.props.theme;if(_()(t)){var n=t(this.outerTheme);if(!h()(n))throw Error("[ThemeProvider] Please return an object from your theme function, i.e. theme={() => ({})}!");return n}if(!h()(t))throw Error("[ThemeProvider] Please make your theme prop a plain object");return B({},this.outerTheme,t)},t.prototype.render=function(){return this.props.children?g.a.Children.only(this.props.children):null},t}(m.Component);be.childContextTypes=(re={},re[ve]=O.a.func,re[ye]=me,re),be.contextTypes=(ie={},ie[ye]=me,ie);var Oe=/[[\].#*$><+~=|^:(),"'`]/g,we=/--+/g,_e={},Se=function e(t,n){for(var r=0;t.length>r;r+=1){var i=t[r];if(Array.isArray(i)&&!e(i))return!1;if("function"==typeof i&&!a(i))return!1}if(void 0!==n)for(var o in n){var u=n[o];if("function"==typeof u)return!1}return!0},Ee=void 0!==e&&e.hot&&!1,xe=["a","abbr","address","area","article","aside","audio","b","base","bdi","bdo","big","blockquote","body","br","button","canvas","caption","cite","code","col","colgroup","data","datalist","dd","del","details","dfn","dialog","div","dl","dt","em","embed","fieldset","figcaption","figure","footer","form","h1","h2","h3","h4","h5","h6","head","header","hgroup","hr","html","i","iframe","img","input","ins","kbd","keygen","label","legend","li","link","main","map","mark","marquee","menu","menuitem","meta","meter","nav","noscript","object","ol","optgroup","option","output","p","param","picture","pre","progress","q","rp","rt","ruby","s","samp","script","section","select","small","source","span","strong","style","sub","summary","sup","table","tbody","td","textarea","tfoot","th","thead","time","title","tr","track","u","ul","var","video","wbr","circle","clipPath","defs","ellipse","g","image","line","linearGradient","mask","path","pattern","polygon","polyline","radialGradient","rect","stop","svg","text","tspan"],je=function(e){return e.replace(/\s|\\n/g,"")},ke=function(e){var t,n=e.displayName||e.name||"Component",r=a(e),i=function(t){function n(){var e,r,i;W(this,n);for(var o=arguments.length,a=Array(o),u=0;o>u;u++)a[u]=arguments[u];return e=r=$(this,t.call.apply(t,[this].concat(a))),r.state={},r.unsubscribeId=-1,i=e,$(r,i)}return H(n,t),n.prototype.componentWillMount=function(){var e=this,t=this.constructor.defaultProps,n=this.context[ye],r=de(this.props,void 0,t);void 0===n&&void 0!==r?this.setState({theme:r}):this.unsubscribeId=(0,n.subscribe)(function(n){var r=de(e.props,n,t);e.setState({theme:r})})},n.prototype.componentWillReceiveProps=function(e){var t=this.constructor.defaultProps;this.setState(function(n){return{theme:de(e,n.theme,t)}})},n.prototype.componentWillUnmount=function(){-1!==this.unsubscribeId&&this.context[ye].unsubscribe(this.unsubscribeId)},n.prototype.render=function(){var t=this.props.innerRef;return g.a.createElement(e,B({theme:this.state.theme},this.props,{innerRef:r?t:void 0,ref:r?void 0:t}))},n}(g.a.Component);return i.displayName="WithTheme("+n+")",i.styledComponentId="withTheme",i.contextTypes=(t={},t[ve]=O.a.func,t[ye]=me,t),E()(i,e)},Ce=function(e,t,n){return function(){function r(e,t,n){W(this,r),this.rules=e,this.isStatic=!Ee&&Se(e,t),this.componentId=n,te.instance.hasInjectedComponent(this.componentId)||te.instance.deferredInject(n,!0,"")}return r.prototype.generateAndInjectStyles=function(r,i){var o=this.isStatic,a=this.lastClassName;if(o&&void 0!==a)return a;var u=t(this.rules,r),c=s(this.componentId+u.join("")),l=i.getName(c);if(void 0!==l)return i.stylesCacheable&&(this.lastClassName=l),l;var f=e(c);return i.stylesCacheable&&(this.lastClassName=l),i.alreadyInjected(c,f)?f:(i.inject(this.componentId,!0,"\n"+n(u,"."+f),c,f),f)},r.generateName=function(t){return e(s(t))},r}()}(M,A,F),Pe=function(e){return function t(n,r){var i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};if("string"!=typeof r&&"function"!=typeof r)throw Error("Cannot create styled-component for component: "+r);var o=function(t){for(var o=arguments.length,a=Array(o>1?o-1:0),u=1;o>u;u++)a[u-1]=arguments[u];return n(r,i,e.apply(void 0,[t].concat(a)))};return o.withConfig=function(e){return t(n,r,B({},i,e))},o.attrs=function(e){return t(n,r,B({},i,{attrs:B({},i.attrs||{},e)}))},o}}(U),Re=function(e,t){var n={},r=function(t,r){var i="string"!=typeof t?"sc":t.replace(Oe,"-").replace(we,"-"),o=(n[i]||0)+1;n[i]=o;var a=e.generateName(i+o),u=i+"-"+a;return void 0!==r?r+"-"+u:u},i=function(e){function t(){var n,r,i;W(this,t);for(var o=arguments.length,a=Array(o),u=0;o>u;u++)a[u]=arguments[u];return n=r=$(this,e.call.apply(e,[this].concat(a))),r.attrs={},r.state={theme:null,generatedClassName:""},r.unsubscribeId=-1,i=n,$(r,i)}return H(t,e),t.prototype.unsubscribeFromContext=function(){-1!==this.unsubscribeId&&this.context[ye].unsubscribe(this.unsubscribeId)},t.prototype.buildExecutionContext=function(e,t){var n=this.constructor.attrs,r=B({},t,{theme:e});return void 0===n?r:(this.attrs=Object.keys(n).reduce(function(e,t){var i=n[t];return e[t]="function"==typeof i?i(r):i,e},{}),B({},r,this.attrs))},t.prototype.generateAndInjectStyles=function(e,t){var n=this.constructor,r=n.attrs,i=n.componentStyle,o=n.warnTooManyClasses,a=this.context[Z]||te.instance;if(i.isStatic&&void 0===r)return i.generateAndInjectStyles(_e,a);var u=this.buildExecutionContext(e,t),s=i.generateAndInjectStyles(u,a);return void 0!==o&&o(s),s},t.prototype.componentWillMount=function(){var e=this,t=this.constructor.componentStyle,n=this.context[ye];if(t.isStatic)this.setState({generatedClassName:this.generateAndInjectStyles(_e,this.props)});else if(void 0!==n){var r=n.subscribe;this.unsubscribeId=r(function(t){var n=de(e.props,t,e.constructor.defaultProps),r=e.generateAndInjectStyles(n,e.props);e.setState({theme:n,generatedClassName:r})})}else{var i=this.props.theme||{},o=this.generateAndInjectStyles(i,this.props);this.setState({theme:i,generatedClassName:o})}},t.prototype.componentWillReceiveProps=function(e){var t=this;this.constructor.componentStyle.isStatic||this.setState(function(n){var r=de(e,n.theme,t.constructor.defaultProps);return{theme:r,generatedClassName:t.generateAndInjectStyles(r,e)}})},t.prototype.componentWillUnmount=function(){this.unsubscribeFromContext()},t.prototype.render=function(){var e=this,t=this.props.innerRef,n=this.state.generatedClassName,r=this.constructor,i=r.styledComponentId,u=r.target,s=o(u),c=[this.props.className,i,this.attrs.className,n].filter(Boolean).join(" "),l=B({},this.attrs,{className:c});a(u)?l.innerRef=t:l.ref=t;var f=Object.keys(this.props).reduce(function(t,n){return"innerRef"===n||"className"===n||s&&!pe(n)||(t[n]=e.props[n]),t},l);return Object(m.createElement)(u,f)},t}(m.Component);return function n(a,s,c){var l,f=s.displayName,p=void 0===f?o(a)?"styled."+a:"Styled("+u(a)+")":f,d=s.componentId,h=void 0===d?r(s.displayName,s.parentComponentId):d,v=s.ParentComponent,y=void 0===v?i:v,m=s.rules,g=s.attrs,b=s.displayName&&s.componentId?s.displayName+"-"+s.componentId:h,w=new e(void 0===m?c:m.concat(c),g,b),_=function(e){function r(){return W(this,r),$(this,e.apply(this,arguments))}return H(r,e),r.withComponent=function(e){var t=s.componentId,i=Y(s,["componentId"]),a=t&&t+"-"+(o(e)?e:u(e)),l=B({},i,{componentId:a,ParentComponent:r});return n(e,l,c)},z(r,null,[{key:"extend",get:function(){var e=s.rules,i=s.componentId,o=Y(s,["rules","componentId"]),u=void 0===e?c:e.concat(c),l=B({},o,{rules:u,parentComponentId:i,ParentComponent:r});return t(n,a,l)}}]),r}(y);return _.contextTypes=(l={},l[ve]=O.a.func,l[ye]=me,l[Z]=O.a.oneOfType([O.a.instanceOf(te),O.a.instanceOf(ae)]),l),_.displayName=p,_.styledComponentId=b,_.attrs=g,_.componentStyle=w,_.warnTooManyClasses=void 0,_.target=a,_}}(Ce,Pe),Ae=function(e,t,n){return function(r){for(var i=arguments.length,o=Array(i>1?i-1:0),a=1;i>a;a++)o[a-1]=arguments[a];var u=n.apply(void 0,[r].concat(o)),c=s(je(JSON.stringify(u))),l=te.instance.getName(c);if(l)return l;var f=e(c);if(te.instance.alreadyInjected(c,f))return f;var p=t(u,f,"@keyframes");return te.instance.inject("sc-keyframes-"+f,!0,p,c,f),f}}(M,F,U),Te=function(e,t){return function(n){for(var r=arguments.length,i=Array(r>1?r-1:0),o=1;r>o;o++)i[o-1]=arguments[o];var a=t.apply(void 0,[n].concat(i)),u=s(JSON.stringify(a)),c="sc-global-"+u;te.instance.hasInjectedComponent(c)||te.instance.inject(c,!1,e(a))}}(F,U),Fe=function(e,t){var n=function(n){return t(e,n)};return xe.forEach(function(e){n[e]=n(e)}),n}(Re,Pe);t.default=Fe}.call(t,n(11)(e))},function(e,t,n){"use strict";function r(e){return!0===i(e)&&"[object Object]"===Object.prototype.toString.call(e)}/*! * is-plain-object <https://github.com/jonschlinkert/is-plain-object> * * Copyright (c) 2014-2017, Jon Schlinkert. * Released under the MIT License. */ var i=n(119);e.exports=function(e){var t,n;return!1!==r(e)&&"function"==typeof(t=e.constructor)&&(n=t.prototype,!1!==r(n)&&!1!==n.hasOwnProperty("isPrototypeOf"))}},function(e,t,n){"use strict";/*! * isobject <https://github.com/jonschlinkert/isobject> * * Copyright (c) 2014-2017, Jon Schlinkert. * Released under the MIT License. */ e.exports=function(e){return null!=e&&"object"==typeof e&&!1===Array.isArray(e)}},function(e,t,n){!function(t){e.exports=function e(t){"use strict";function n(e,t,i,s,f){for(var p,d,h=0,m=0,g=0,b=0,O=0,w=0,_=0,S=0,E=0,x=0,j=0,R=0,A=0,T=0,F=0,I=0,N=0,V=0,U=0,D=i.length,re=D-1,Re="",Ae="",Ne="",Ve="",Ue="",De="";D>F;){if(_=i.charCodeAt(F),F===re&&m+b+g+h!==0&&(0!==m&&(_=m===ce?J:ce),b=g=h=0,D++,re++),m+b+g+h===0){if(F===re&&(I>0&&(Ae=Ae.replace(y,"")),Ae.trim().length>0)){switch(_){case ee:case Z:case z:case Q:case J:break;default:Ae+=i.charAt(F)}_=z}if(1===N)switch(_){case H:case B:case z:case se:case ue:case Y:case $:case oe:N=0;case Z:case Q:case J:case ee:break;default:for(N=0,U=F,O=_,F--,_=z;D>U;)switch(i.charCodeAt(++U)){case J:case Q:case z:F++,_=O;case ae:case H:U=D}}switch(_){case H:for(Ae=Ae.trim(),O=Ae.charCodeAt(0),j=1,U=++F;D>F;){switch(_=i.charCodeAt(F)){case H:j++;break;case B:j--}if(0===j)break;F++}switch(Ne=i.substring(U,F),O===de&&(O=(Ae=Ae.replace(v,"").trim()).charCodeAt(0)),O){case X:switch(I>0&&(Ae=Ae.replace(y,"")),w=Ae.charCodeAt(1)){case Se:case me:case ge:case ne:p=t;break;default:p=Ie}if(Ne=n(t,p,Ne,w,f+1),U=Ne.length,Fe>0&&0===U&&(U=Ae.length),Me>0&&(p=r(Ie,Ae,V),d=l(ze,Ne,p,t,je,xe,U,w,f),Ae=p.join(""),void 0!==d&&0===(U=(Ne=d.trim()).length)&&(w=0,Ne="")),U>0)switch(w){case ge:Ae=Ae.replace(M,u);case Se:case me:case ne:Ne=Ae+"{"+Ne+"}";break;case ye:Ae=Ae.replace(k,"$1 $2"+(He>0?Ye:"")),Ne=Ae+"{"+Ne+"}",Ne=1===Pe||2===Pe&&a("@"+Ne,3)?"@"+L+Ne+"@"+Ne:"@"+Ne;break;default:Ne=Ae+Ne,s===Ee&&(Ve+=Ne,Ne="")}else Ne="";break;default:Ne=n(t,r(t,Ae,V),Ne,s,f+1)}Ue+=Ne,R=0,N=0,T=0,I=0,V=0,A=0,Ae="",Ne="",_=i.charCodeAt(++F);break;case B:case z:if(Ae=(I>0?Ae.replace(y,""):Ae).trim(),(U=Ae.length)>1)switch(0===T&&((O=Ae.charCodeAt(0))===ne||O>96&&123>O)&&(U=(Ae=Ae.replace(" ",":")).length),Me>0&&void 0!==(d=l(qe,Ae,t,e,je,xe,Ve.length,s,f))&&0===(U=(Ae=d.trim()).length)&&(Ae="\0\0"),O=Ae.charCodeAt(0),w=Ae.charCodeAt(1),O+w){case de:break;case we:case _e:De+=Ae+i.charAt(F);break;default:if(Ae.charCodeAt(U-1)===ae)break;Ve+=o(Ae,O,w,Ae.charCodeAt(2))}R=0,N=0,T=0,I=0,V=0,Ae="",_=i.charCodeAt(++F)}}switch(_){case Q:case J:if(m+b+g+h+Te===0)switch(x){case $:case ue:case se:case X:case pe:case le:case ie:case fe:case ce:case ne:case ae:case oe:case z:case H:case B:break;default:T>0&&(N=1)}m===ce?m=0:Ce+R===0&&(I=1,Ae+="\0"),Me*Be>0&&l(Le,Ae,t,e,je,xe,Ve.length,s,f),xe=1,je++;break;case z:case B:if(m+b+g+h===0){xe++;break}default:switch(xe++,Re=i.charAt(F),_){case Z:case ee:if(b+h+m===0)switch(S){case oe:case ae:case Z:case ee:Re="";break;default:_!==ee&&(Re=" ")}break;case de:Re="\\0";break;case he:Re="\\f";break;case ve:Re="\\v";break;case te:b+m+h===0&&Ce>0&&(V=1,I=1,Re="\f"+Re);break;case 108:if(b+m+h+ke===0&&T>0)switch(F-T){case 2:S===be&&i.charCodeAt(F-3)===ae&&(ke=S);case 8:E===Oe&&(ke=E)}break;case ae:b+m+h===0&&(T=F);break;case oe:m+g+b+h===0&&(I=1,Re+="\r");break;case se:case ue:0===m&&(b=b===_?0:0===b?_:b);break;case G:b+m+g===0&&h++;break;case K:b+m+g===0&&h--;break;case $:b+m+h===0&&g--;break;case Y:if(b+m+h===0){if(0===R)switch(2*S+3*E){case 533:break;default:j=0,R=1}g++}break;case X:m+g+b+h+T+A===0&&(A=1);break;case ie:case ce:if(b+h+g>0)break;switch(m){case 0:switch(2*_+3*i.charCodeAt(F+1)){case 235:m=ce;break;case 220:U=F,m=ie}break;case ie:_===ce&&S===ie&&(33===i.charCodeAt(U+2)&&(Ve+=i.substring(U,F+1)),Re="",m=0)}}if(0===m){if(Ce+b+h+A===0&&s!==ye&&_!==z)switch(_){case oe:case pe:case le:case fe:case $:case Y:if(0===R){switch(S){case Z:case ee:case J:case Q:Re+="\0";break;default:Re="\0"+Re+(_===oe?"":"\0")}I=1}else switch(_){case Y:R=++j;break;case $:0==(R=--j)&&(I=1,Re+="\0")}break;case Z:case ee:switch(S){case de:case H:case B:case z:case oe:case he:case Z:case ee:case J:case Q:break;default:0===R&&(I=1,Re+="\0")}}Ae+=Re,_!==ee&&_!==Z&&(x=_)}}E=S,S=_,F++}if(U=Ve.length,Fe>0&&0===U&&0===Ue.length&&0===t[0].length==0&&(s!==me||1===t.length&&(Ce>0?$e:Ge)===t[0])&&(U=t.join(",").length+2),U>0){if(p=0===Ce&&s!==ye?c(t):t,Me>0&&void 0!==(d=l(We,Ve,p,e,je,xe,U,s,f))&&0===(Ve=d).length)return De+Ve+Ue;if(Ve=p.join(",")+"{"+Ve+"}",Pe*ke!=0){switch(2!==Pe||a(Ve,2)||(ke=0),ke){case Oe:Ve=Ve.replace(P,":"+q+"$1")+Ve;break;case be:Ve=Ve.replace(C,"::"+L+"input-$1")+Ve.replace(C,"::"+q+"$1")+Ve.replace(C,":"+W+"input-$1")+Ve}ke=0}}return De+Ve+Ue}function r(e,t,n){var r=t.trim().split(S),o=r,a=r.length,u=e.length;switch(u){case 0:case 1:for(var s=0,c=0===u?"":e[0]+" ";a>s;++s)o[s]=i(c,o[s],n,u).trim();break;default:for(var s=0,l=0,o=[];a>s;++s)for(var f=0;u>f;++f)o[l++]=i(e[f]+" ",r[s],n,u).trim()}return o}function i(e,t,n,r){var i=t,o=i.charCodeAt(0);switch(33>o&&(o=(i=i.trim()).charCodeAt(0)),o){case te:switch(Ce+r){case 0:case 1:if(0===e.trim().length)break;default:return i.replace(E,"$1"+e.trim())}break;case ae:switch(i.charCodeAt(1)){case 103:if(Re>0&&Ce>0)return i.replace(x,"$1").replace(E,"$1"+Ge);break;default:return e.trim()+i}default:if(n*Ce>0&&i.indexOf("\f")>0)return i.replace(E,(e.charCodeAt(0)===ae?"":"$1")+e.trim())}return e+i}function o(e,t,n,r){var i,o=0,u=e+";",c=2*t+3*n+4*r;if(944===c)return s(u);if(0===Pe||2===Pe&&!a(u,1))return u;switch(c){case 1015:return u.charCodeAt(9)===ne?L+u+u:u;case 951:return 116===u.charCodeAt(3)?L+u+u:u;case 963:return 110===u.charCodeAt(5)?L+u+u:u;case 1009:if(100!==u.charCodeAt(4))break;case 969:case 942:return L+u+u;case 978:return L+u+q+u+u;case 1019:case 983:return L+u+q+u+W+u+u;case 883:return u.charCodeAt(8)===ne?L+u+u:u;case 932:if(u.charCodeAt(4)===ne)switch(u.charCodeAt(5)){case 103:return L+"box-"+u.replace("-grow","")+L+u+W+u.replace("grow","positive")+u;case 115:return L+u+W+u.replace("shrink","negative")+u;case 98:return L+u+W+u.replace("basis","preferred-size")+u}return L+u+W+u+u;case 964:return L+u+W+"flex-"+u+u;case 1023:if(99!==u.charCodeAt(8))break;return i=u.substring(u.indexOf(":",15)).replace("flex-","").replace("space-between","justify"),L+"box-pack"+i+L+u+W+"flex-pack"+i+u;case 1005:return g.test(u)?u.replace(m,":"+L)+u.replace(m,":"+q)+u:u;case 1e3:switch(i=u.substring(13).trim(),o=i.indexOf("-")+1,i.charCodeAt(0)+i.charCodeAt(o)){case 226:i=u.replace(N,"tb");break;case 232:i=u.replace(N,"tb-rl");break;case 220:i=u.replace(N,"lr");break;default:return u}return L+u+W+i+u;case 1017:if(-1===u.indexOf("sticky",9))return u;case 975:switch(o=(u=e).length-10,i=(33===u.charCodeAt(o)?u.substring(0,o):u).substring(e.indexOf(":",7)+1).trim(),c=i.charCodeAt(0)+(0|i.charCodeAt(7))){case 203:if(111>i.charCodeAt(8))break;case 115:u=u.replace(i,L+i)+";"+u;break;case 207:case 102:u=u.replace(i,L+(c>102?"inline-":"")+"box")+";"+u.replace(i,L+i)+";"+u.replace(i,W+i+"box")+";"+u}return u+";";case 938:if(u.charCodeAt(5)===ne)switch(u.charCodeAt(6)){case 105:return i=u.replace("-items",""),L+u+L+"box-"+i+W+"flex-"+i+u;case 115:return L+u+W+"flex-item-"+u.replace(U,"")+u;default:return L+u+W+"flex-line-pack"+u.replace("align-content","")+u}break;case 953:if((o=u.indexOf("-content",9))>0&&109===u.charCodeAt(o-3)&&45!==u.charCodeAt(o-4))return i=u.substring(o-3),"width:"+L+i+"width:"+q+i+"width:"+i;break;case 962:if(u=L+u+(102===u.charCodeAt(5)?W+u:"")+u,n+r===211&&105===u.charCodeAt(13)&&u.indexOf("transform",10)>0)return u.substring(0,u.indexOf(";",27)+1).replace(b,"$1"+L+"$2")+u}return u}function a(e,t){var n=e.indexOf(1===t?":":"{"),r=e.substring(0,3!==t?n:10),i=e.substring(n+1,e.length-1);return Ve(2!==t?r:r.replace(D,"$1"),i,t)}function u(e,t){var n=o(t,t.charCodeAt(0),t.charCodeAt(1),t.charCodeAt(2));return n!==t+";"?n.replace(V," or ($1)").substring(4):"("+t+")"}function s(e){var t=e.length,n=e.indexOf(":",9)+1,r=e.substring(0,n).trim(),i=e.substring(n,t-1).trim();switch(e.charCodeAt(9)*He){case 0:break;case ne:if(110!==e.charCodeAt(10))break;default:for(var o=i.split((i="",O)),u=0,n=0,t=o.length;t>u;n=0,++u){for(var s=o[u],c=s.split(w);s=c[n];){var l=s.charCodeAt(0);if(1===He&&(l>X&&90>l||l>96&&123>l||l===re||l===ne&&s.charCodeAt(1)!==ne))switch(isNaN(parseFloat(s))+(-1!==s.indexOf("("))){case 1:switch(s){case"infinite":case"alternate":case"backwards":case"running":case"normal":case"forwards":case"both":case"none":case"linear":case"ease":case"ease-in":case"ease-out":case"ease-in-out":case"paused":case"reverse":case"alternate-reverse":case"inherit":case"initial":case"unset":case"step-start":case"step-end":break;default:s+=Ye}}c[n++]=s}i+=(0===u?"":",")+c.join(" ")}}return i=r+i+";",1===Pe||2===Pe&&a(i,1)?L+i+i:i}function c(e){for(var t,n,r=0,i=e.length,o=Array(i);i>r;++r){for(var a=e[r].split(_),u="",s=0,c=0,l=0,f=0,p=a.length;p>s;++s)if(0!==(c=(n=a[s]).length)||1>=p){if(l=u.charCodeAt(u.length-1),f=n.charCodeAt(0),t="",0!==s)switch(l){case ie:case pe:case le:case fe:case ee:case Y:break;default:t=" "}switch(f){case te:n=t+$e;case pe:case le:case fe:case ee:case $:case Y:break;case G:n=t+n+$e;break;case ae:switch(2*n.charCodeAt(1)+3*n.charCodeAt(2)){case 530:if(Re>0){n=t+n.substring(8,c-1);break}default:(1>s||1>a[s-1].length)&&(n=t+$e+n)}break;case oe:t="";default:n=c>1&&n.indexOf(":")>0?t+n.replace(I,"$1"+$e+"$2"):t+n+$e}u+=n}o[r]=u.replace(y,"").trim()}return o}function l(e,t,n,r,i,o,a,u,s){for(var c,l=0,f=t;Me>l;++l)switch(c=Ne[l].call(h,e,f,n,r,i,o,a,u,s)){case void 0:case!1:case!0:case null:break;default:f=c}switch(f){case void 0:case!1:case!0:case null:case t:break;default:return f}}function f(e){return e.replace(y,"").replace(R,"").replace(A,"$1").replace(T,"$1").replace(F," ")}function p(e){switch(e){case void 0:case null:Me=Ne.length=0;break;default:switch(e.constructor){case Array:for(var t=0,n=e.length;n>t;++t)p(e[t]);break;case Function:Ne[Me++]=e;break;case Boolean:Be=0|!!e}}return p}function d(e){for(var t in e){var n=e[t];switch(t){case"keyframe":He=0|n;break;case"global":Re=0|n;break;case"cascade":Ce=0|n;break;case"compress":Ae=0|n;break;case"semicolon":Te=0|n;break;case"preserve":Fe=0|n;break;case"prefix":Ve=null,n?"function"!=typeof n?Pe=1:(Pe=2,Ve=n):Pe=0}}return d}function h(t,r){if(void 0!==this&&this.constructor===h)return e(t);var i=t,o=i.charCodeAt(0);33>o&&(o=(i=i.trim()).charCodeAt(0)),He>0&&(Ye=i.replace(j,o===G?"":"-")),o=1,1===Ce?Ge=i:$e=i;var a,u=[Ge];Me>0&&void 0!==(a=l(De,r,u,u,je,xe,0,0,0))&&"string"==typeof a&&(r=a);var s=n(Ie,u,r,0,0);return Me>0&&void 0!==(a=l(Ue,s,u,u,je,xe,s.length,0,0))&&"string"!=typeof(s=a)&&(o=0),Ye="",Ge="",$e="",ke=0,je=1,xe=1,Ae*o==0?s:f(s)}var v=/^\0+/g,y=/[\0\r\f]/g,m=/: */g,g=/zoo|gra/,b=/([,: ])(transform)/g,O=/,+\s*(?![^(]*[)])/g,w=/ +\s*(?![^(]*[)])/g,_=/ *[\0] */g,S=/,\r+?/g,E=/([\t\r\n ])*\f?&/g,x=/:global\(((?:[^\(\)\[\]]*|\[.*\]|\([^\(\)]*\))*)\)/g,j=/\W+/g,k=/@(k\w+)\s*(\S*)\s*/,C=/::(place)/g,P=/:(read-only)/g,R=/\s+(?=[{\];=:>])/g,A=/([[}=:>])\s+/g,T=/(\{[^{]+?);(?=\})/g,F=/\s{2,}/g,I=/([^\(])(:+) */g,N=/[svh]\w+-[tblr]{2}/,M=/\(\s*(.*)\s*\)/g,V=/([^]*?);/g,U=/-self|flex-/g,D=/[^]*?(:[rp][el]a[\w-]+)[^]*/,L="-webkit-",q="-moz-",W="-ms-",z=59,B=125,H=123,Y=40,$=41,G=91,K=93,J=10,Q=13,Z=9,X=64,ee=32,te=38,ne=45,re=95,ie=42,oe=44,ae=58,ue=39,se=34,ce=47,le=62,fe=43,pe=126,de=0,he=12,ve=11,ye=107,me=109,ge=115,be=112,Oe=111,we=169,_e=163,Se=100,Ee=112,xe=1,je=1,ke=0,Ce=1,Pe=1,Re=1,Ae=0,Te=0,Fe=0,Ie=[],Ne=[],Me=0,Ve=null,Ue=-2,De=-1,Le=0,qe=1,We=2,ze=3,Be=0,He=1,Ye="",$e="",Ge="";return h.use=p,h.set=d,void 0!==t&&d(t),h}(null)}()},function(e,t){function n(e){var t=r.call(e);return"[object Function]"===t||"function"==typeof e&&"[object RegExp]"!==t||"undefined"!=typeof window&&(e===window.setTimeout||e===window.alert||e===window.confirm||e===window.prompt)}e.exports=n;var r=Object.prototype.toString},function(e,t,n){"use strict";var r={childContextTypes:!0,contextTypes:!0,defaultProps:!0,displayName:!0,getDefaultProps:!0,mixins:!0,propTypes:!0,type:!0},i={name:!0,length:!0,prototype:!0,caller:!0,arguments:!0,arity:!0},o="function"==typeof Object.getOwnPropertySymbols;e.exports=function(e,t,n){if("string"!=typeof t){var a=Object.getOwnPropertyNames(t);o&&(a=a.concat(Object.getOwnPropertySymbols(t)));for(var u=0;a.length>u;++u)if(!(r[a[u]]||i[a[u]]||n&&n[a[u]]))try{e[a[u]]=t[a[u]]}catch(e){}}return e}},function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}Object.defineProperty(t,"__esModule",{value:!0});var i=Object.assign||function(e){for(var t=1;arguments.length>t;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},o=n(1),a=r(o),u=n(2),s=r(u),c=function(e){var t=e.username,n=e.showUsername,r=e.showCount,o=e.large,u={};return n||(u["data-show-screen-name"]="false"),r||(u["data-show-count"]="false"),o&&(u["data-size"]="large"),a.default.createElement("a",i({href:"https://twitter.com/"+t,className:"twitter-follow-button"},u),"Follow @",t)};c.propTypes={username:s.default.string.isRequired,showUserName:s.default.bool,showCount:s.default.bool,large:s.default.bool},t.default=c},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=function(e,t,n){return[{path:"https://redux-form.com/"+n+"/",title:"Redux Form"},{path:"https://redux-form.com/"+n+"/examples",title:"Examples"},{path:"https://redux-form.com/"+n+"/examples/"+e,title:t}]}},function(e,t,n){"use strict";(function(t){var n="undefined"!=typeof window?window:"undefined"!=typeof WorkerGlobalScope&&self instanceof WorkerGlobalScope?self:{},r=function(){var e=/\blang(?:uage)?-(\w+)\b/i,t=0,r=n.Prism={util:{encode:function(e){return e instanceof i?new i(e.type,r.util.encode(e.content),e.alias):"Array"===r.util.type(e)?e.map(r.util.encode):e.replace(/&/g,"&amp;").replace(/</g,"&lt;").replace(/\u00a0/g," ")},type:function(e){return Object.prototype.toString.call(e).match(/\[object (\w+)\]/)[1]},objId:function(e){return e.__id||Object.defineProperty(e,"__id",{value:++t}),e.__id},clone:function(e){switch(r.util.type(e)){case"Object":var t={};for(var n in e)e.hasOwnProperty(n)&&(t[n]=r.util.clone(e[n]));return t;case"Array":return e.map&&e.map(function(e){return r.util.clone(e)})}return e}},languages:{extend:function(e,t){var n=r.util.clone(r.languages[e]);for(var i in t)n[i]=t[i];return n},insertBefore:function(e,t,n,i){i=i||r.languages;var o=i[e];if(2==arguments.length){n=arguments[1];for(var a in n)n.hasOwnProperty(a)&&(o[a]=n[a]);return o}var u={};for(var s in o)if(o.hasOwnProperty(s)){if(s==t)for(var a in n)n.hasOwnProperty(a)&&(u[a]=n[a]);u[s]=o[s]}return r.languages.DFS(r.languages,function(t,n){n===i[e]&&t!=e&&(this[t]=u)}),i[e]=u},DFS:function(e,t,n,i){i=i||{};for(var o in e)e.hasOwnProperty(o)&&(t.call(e,o,e[o],n||o),"Object"!==r.util.type(e[o])||i[r.util.objId(e[o])]?"Array"!==r.util.type(e[o])||i[r.util.objId(e[o])]||(i[r.util.objId(e[o])]=!0,r.languages.DFS(e[o],t,o,i)):(i[r.util.objId(e[o])]=!0,r.languages.DFS(e[o],t,null,i)))}},plugins:{},highlightAll:function(e,t){var n={callback:t,selector:'code[class*="language-"], [class*="language-"] code, code[class*="lang-"], [class*="lang-"] code'};r.hooks.run("before-highlightall",n);for(var i,o=n.elements||document.querySelectorAll(n.selector),a=0;i=o[a++];)r.highlightElement(i,!0===e,n.callback)},highlightElement:function(t,i,o){for(var a,u,s=t;s&&!e.test(s.className);)s=s.parentNode;s&&(a=(s.className.match(e)||[,""])[1],u=r.languages[a]),t.className=t.className.replace(e,"").replace(/\s+/g," ")+" language-"+a,s=t.parentNode,/pre/i.test(s.nodeName)&&(s.className=s.className.replace(e,"").replace(/\s+/g," ")+" language-"+a);var c=t.textContent,l={element:t,language:a,grammar:u,code:c};if(!c||!u)return void r.hooks.run("complete",l);if(r.hooks.run("before-highlight",l),i&&n.Worker){var f=new Worker(r.filename);f.onmessage=function(e){l.highlightedCode=e.data,r.hooks.run("before-insert",l),l.element.innerHTML=l.highlightedCode,o&&o.call(l.element),r.hooks.run("after-highlight",l),r.hooks.run("complete",l)},f.postMessage(JSON.stringify({language:l.language,code:l.code,immediateClose:!0}))}else l.highlightedCode=r.highlight(l.code,l.grammar,l.language),r.hooks.run("before-insert",l),l.element.innerHTML=l.highlightedCode,o&&o.call(t),r.hooks.run("after-highlight",l),r.hooks.run("complete",l)},highlight:function(e,t,n){var o=r.tokenize(e,t);return i.stringify(r.util.encode(o),n)},tokenize:function(e,t){var n=r.Token,i=[e],o=t.rest;if(o){for(var a in o)t[a]=o[a];delete t.rest}e:for(var a in t)if(t.hasOwnProperty(a)&&t[a]){var u=t[a];u="Array"===r.util.type(u)?u:[u];for(var s=0;u.length>s;++s){var c=u[s],l=c.inside,f=!!c.lookbehind,p=!!c.greedy,d=0,h=c.alias;c=c.pattern||c;for(var v=0;i.length>v;v++){var y=i[v];if(i.length>e.length)break e;if(!(y instanceof n)){c.lastIndex=0;var m=c.exec(y),g=1;if(!m&&p&&v!=i.length-1){var b=i[v+1].matchedStr||i[v+1],O=y+b;if(i.length-2>v&&(O+=i[v+2].matchedStr||i[v+2]),c.lastIndex=0,!(m=c.exec(O)))continue;var w=m.index+(f?m[1].length:0);if(w>=y.length)continue;var _=m.index+m[0].length,S=y.length+b.length;g=3,S>=_&&(g=2,O=O.slice(0,S)),y=O}if(m){f&&(d=m[1].length);var w=m.index+d,m=m[0].slice(d),_=w+m.length,E=y.slice(0,w),x=y.slice(_),j=[v,g];E&&j.push(E);var k=new n(a,l?r.tokenize(m,l):m,h,m);j.push(k),x&&j.push(x),Array.prototype.splice.apply(i,j)}}}}}return i},hooks:{all:{},add:function(e,t){var n=r.hooks.all;n[e]=n[e]||[],n[e].push(t)},run:function(e,t){var n=r.hooks.all[e];if(n&&n.length)for(var i,o=0;i=n[o++];)i(t)}}},i=r.Token=function(e,t,n,r){this.type=e,this.content=t,this.alias=n,this.matchedStr=r||null};if(i.stringify=function(e,t,n){if("string"==typeof e)return e;if("Array"===r.util.type(e))return e.map(function(n){return i.stringify(n,t,e)}).join("");var o={type:e.type,content:i.stringify(e.content,t,n),tag:"span",classes:["token",e.type],attributes:{},language:t,parent:n};if("comment"==o.type&&(o.attributes.spellcheck="true"),e.alias){var a="Array"===r.util.type(e.alias)?e.alias:[e.alias];Array.prototype.push.apply(o.classes,a)}r.hooks.run("wrap",o);var u="";for(var s in o.attributes)u+=(u?" ":"")+s+'="'+(o.attributes[s]||"")+'"';return"<"+o.tag+' class="'+o.classes.join(" ")+'" '+u+">"+o.content+"</"+o.tag+">"},!n.document)return n.addEventListener?(n.addEventListener("message",function(e){var t=JSON.parse(e.data),i=t.language,o=t.code,a=t.immediateClose;n.postMessage(r.highlight(o,r.languages[i],i)),a&&n.close()},!1),n.Prism):n.Prism;var o=document.currentScript||[].slice.call(document.getElementsByTagName("script")).pop();return o&&(r.filename=o.src,document.addEventListener&&!o.hasAttribute("data-manual")&&document.addEventListener("DOMContentLoaded",r.highlightAll)),n.Prism}();void 0!==e&&e.exports&&(e.exports=r),void 0!==t&&(t.Prism=r),r.languages.markup={comment:/<!--[\w\W]*?-->/,prolog:/<\?[\w\W]+?\?>/,doctype:/<!DOCTYPE[\w\W]+?>/,cdata:/<!\[CDATA\[[\w\W]*?]]>/i,tag:{pattern:/<\/?(?!\d)[^\s>\/=.$<]+(?:\s+[^\s>\/=]+(?:=(?:("|')(?:\\\1|\\?(?!\1)[\w\W])*\1|[^\s'">=]+))?)*\s*\/?>/i,inside:{tag:{pattern:/^<\/?[^\s>\/]+/i,inside:{punctuation:/^<\/?/,namespace:/^[^\s>\/:]+:/}},"attr-value":{pattern:/=(?:('|")[\w\W]*?(\1)|[^\s>]+)/i,inside:{punctuation:/[=>"']/}},punctuation:/\/?>/,"attr-name":{pattern:/[^\s>\/]+/,inside:{namespace:/^[^\s>\/:]+:/}}}},entity:/&#?[\da-z]{1,8};/i},r.hooks.add("wrap",function(e){"entity"===e.type&&(e.attributes.title=e.content.replace(/&amp;/,"&"))}),r.languages.xml=r.languages.markup,r.languages.html=r.languages.markup,r.languages.mathml=r.languages.markup,r.languages.svg=r.languages.markup,r.languages.css={comment:/\/\*[\w\W]*?\*\//,atrule:{pattern:/@[\w-]+?.*?(;|(?=\s*\{))/i,inside:{rule:/@[\w-]+/}},url:/url\((?:(["'])(\\(?:\r\n|[\w\W])|(?!\1)[^\\\r\n])*\1|.*?)\)/i,selector:/[^\{\}\s][^\{\};]*?(?=\s*\{)/,string:/("|')(\\(?:\r\n|[\w\W])|(?!\1)[^\\\r\n])*\1/,property:/(\b|\B)[\w-]+(?=\s*:)/i,important:/\B!important\b/i,function:/[-a-z0-9]+(?=\()/i,punctuation:/[(){};:]/},r.languages.css.atrule.inside.rest=r.util.clone(r.languages.css),r.languages.markup&&(r.languages.insertBefore("markup","tag",{style:{pattern:/(<style[\w\W]*?>)[\w\W]*?(?=<\/style>)/i,lookbehind:!0,inside:r.languages.css,alias:"language-css"}}),r.languages.insertBefore("inside","attr-value",{"style-attr":{pattern:/\s*style=("|').*?\1/i,inside:{"attr-name":{pattern:/^\s*style/i,inside:r.languages.markup.tag.inside},punctuation:/^\s*=\s*['"]|['"]\s*$/,"attr-value":{pattern:/.+/i,inside:r.languages.css}},alias:"language-css"}},r.languages.markup.tag)),r.languages.clike={comment:[{pattern:/(^|[^\\])\/\*[\w\W]*?\*\//,lookbehind:!0},{pattern:/(^|[^\\:])\/\/.*/,lookbehind:!0}],string:{pattern:/(["'])(\\(?:\r\n|[\s\S])|(?!\1)[^\\\r\n])*\1/,greedy:!0},"class-name":{pattern:/((?:\b(?:class|interface|extends|implements|trait|instanceof|new)\s+)|(?:catch\s+\())[a-z0-9_\.\\]+/i,lookbehind:!0,inside:{punctuation:/(\.|\\)/}},keyword:/\b(if|else|while|do|for|return|in|instanceof|function|new|try|throw|catch|finally|null|break|continue)\b/,boolean:/\b(true|false)\b/,function:/[a-z0-9_]+(?=\()/i,number:/\b-?(?:0x[\da-f]+|\d*\.?\d+(?:e[+-]?\d+)?)\b/i,operator:/--?|\+\+?|!=?=?|<=?|>=?|==?=?|&&?|\|\|?|\?|\*|\/|~|\^|%/,punctuation:/[{}[\];(),.:]/},r.languages.javascript=r.languages.extend("clike",{keyword:/\b(as|async|await|break|case|catch|class|const|continue|debugger|default|delete|do|else|enum|export|extends|finally|for|from|function|get|if|implements|import|in|instanceof|interface|let|new|null|of|package|private|protected|public|return|set|static|super|switch|this|throw|try|typeof|var|void|while|with|yield)\b/,number:/\b-?(0x[\dA-Fa-f]+|0b[01]+|0o[0-7]+|\d*\.?\d+([Ee][+-]?\d+)?|NaN|Infinity)\b/,function:/[_$a-zA-Z\xA0-\uFFFF][_$a-zA-Z0-9\xA0-\uFFFF]*(?=\()/i}),r.languages.insertBefore("javascript","keyword",{regex:{pattern:/(^|[^\/])\/(?!\/)(\[.+?]|\\.|[^\/\\\r\n])+\/[gimyu]{0,5}(?=\s*($|[\r\n,.;})]))/,lookbehind:!0,greedy:!0}}),r.languages.insertBefore("javascript","class-name",{"template-string":{pattern:/`(?:\\\\|\\?[^\\])*?`/,inside:{interpolation:{pattern:/\$\{[^}]+\}/,inside:{"interpolation-punctuation":{pattern:/^\$\{|\}$/,alias:"punctuation"},rest:r.languages.javascript}},string:/[\s\S]+/}}}),r.languages.markup&&r.languages.insertBefore("markup","tag",{script:{pattern:/(<script[\w\W]*?>)[\w\W]*?(?=<\/script>)/i,lookbehind:!0,inside:r.languages.javascript,alias:"language-javascript"}}),r.languages.js=r.languages.javascript,r.languages.json={property:/".*?"(?=\s*:)/gi,string:/"(?!:)(\\?[^"])*?"(?!:)/g,number:/\b-?(0x[\dA-Fa-f]+|\d*\.?\d+([Ee]-?\d+)?)\b/g,punctuation:/[{}[\]);,]/g,operator:/:/g,boolean:/\b(true|false)\b/gi,null:/\bnull\b/gi},r.languages.jsonp=r.languages.json,function(e){e.languages.jsx=e.languages.extend("markup",e.util.clone(e.languages.javascript)),e.languages.jsx.tag.pattern=/<\/?[\w\.:-]+\s*(?:\s+[\w\.:-]+(?:=(?:("|')(\\?[\w\W])*?\1|[^\s'">=]+|(\{[\w\W]*?\})))?\s*)*\/?>/i,e.languages.jsx.tag.inside["attr-value"].pattern=/=[^\{](?:('|")[\w\W]*?(\1)|[^\s>]+)/i;var t=e.util.clone(e.languages.jsx);delete t.punctuation,t=e.languages.insertBefore("jsx","operator",{punctuation:/=(?={)|[{}[\];(),.:]/},{jsx:t}),e.languages.insertBefore("inside","attr-value",{script:{pattern:/=(\{(?:\{[^}]*\}|[^}])+\})/i,inside:t,alias:"language-javascript"}},e.languages.jsx.tag)}(r)}).call(t,n(15))},function(e,t){e.exports={heading:"heading___2W8-L",anchor:"anchor___j3LpN"}},function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}Object.defineProperty(t,"__esModule",{value:!0});var i=n(1),o=r(i),a=n(128),u=n(51),s=r(u);t.default=function(e){var t=e.form,n=e.format,r=void 0===n?function(e){return JSON.stringify(e,null,2)}:n,i=(0,a.values)({form:t}),u=function(e){var t=e.values;return o.default.createElement("div",null,o.default.createElement("h2",null,"Values"),o.default.createElement(s.default,{source:r(t)}))},c=i(u);return o.default.createElement(c,null)}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),n.d(t,"actionTypes",function(){return V}),n.d(t,"arrayInsert",function(){return U}),n.d(t,"arrayMove",function(){return D}),n.d(t,"arrayPop",function(){return L}),n.d(t,"arrayPush",function(){return q}),n.d(t,"arrayRemove",function(){return W}),n.d(t,"arrayRemoveAll",function(){return z}),n.d(t,"arrayShift",function(){return B}),n.d(t,"arraySplice",function(){return H}),n.d(t,"arraySwap",function(){return Y}),n.d(t,"arrayUnshift",function(){return $}),n.d(t,"autofill",function(){return G}),n.d(t,"blur",function(){return K}),n.d(t,"change",function(){return J}),n.d(t,"clearFields",function(){return Q}),n.d(t,"clearSubmitErrors",function(){return Z}),n.d(t,"destroy",function(){return X}),n.d(t,"focus",function(){return ee}),n.d(t,"initialize",function(){return te}),n.d(t,"registerField",function(){return ne}),n.d(t,"reset",function(){return re}),n.d(t,"setSubmitFailed",function(){return ie}),n.d(t,"setSubmitSucceeded",function(){return oe}),n.d(t,"startAsyncValidation",function(){return ae}),n.d(t,"startSubmit",function(){return ue}),n.d(t,"stopAsyncValidation",function(){return se}),n.d(t,"stopSubmit",function(){return ce}),n.d(t,"submit",function(){return le}),n.d(t,"touch",function(){return fe}),n.d(t,"unregisterField",function(){return pe}),n.d(t,"untouch",function(){return de}),n.d(t,"updateSyncWarnings",function(){return he});var r=n(53),i=n(28),o=n(54);n.d(t,"defaultShouldAsyncValidate",function(){return o.a});var a=n(55);n.d(t,"defaultShouldValidate",function(){return a.a});var u=n(56);n.d(t,"defaultShouldError",function(){return u.a});var s=n(57);n.d(t,"defaultShouldWarn",function(){return s.a});var c=n(129);n.d(t,"Form",function(){return c.a});var l=n(130);n.d(t,"FormSection",function(){return l.a});var f=n(58);n.d(t,"SubmissionError",function(){return f.a});var p=n(132);n.d(t,"propTypes",function(){return p.a}),n.d(t,"fieldInputPropTypes",function(){return p.e}),n.d(t,"fieldMetaPropTypes",function(){return p.f}),n.d(t,"fieldPropTypes",function(){return p.g}),n.d(t,"fieldArrayFieldsPropTypes",function(){return p.b}),n.d(t,"fieldArrayMetaPropTypes",function(){return p.c}),n.d(t,"fieldArrayPropTypes",function(){return p.d}),n.d(t,"formPropTypes",function(){return p.h});var d=n(133);n.d(t,"Field",function(){return d.a});var h=n(220);n.d(t,"Fields",function(){return h.a});var v=n(223);n.d(t,"FieldArray",function(){return v.a});var y=n(241);n.d(t,"formValueSelector",function(){return y.a});var m=n(243);n.d(t,"formValues",function(){return m.a});var g=n(245);n.d(t,"getFormError",function(){return g.a});var b=n(247);n.d(t,"getFormNames",function(){return b.a});var O=n(249);n.d(t,"getFormValues",function(){return O.a});var w=n(251);n.d(t,"getFormInitialValues",function(){return w.a});var _=n(253);n.d(t,"getFormSyncErrors",function(){return _.a});var S=n(255);n.d(t,"getFormMeta",function(){return S.a});var E=n(257);n.d(t,"getFormAsyncErrors",function(){return E.a});var x=n(259);n.d(t,"getFormSyncWarnings",function(){return x.a});var j=n(261);n.d(t,"getFormSubmitErrors",function(){return j.a});var k=n(263);n.d(t,"isDirty",function(){return k.a});var C=n(265);n.d(t,"isInvalid",function(){return C.a});var P=n(268);n.d(t,"isPristine",function(){return P.a});var R=n(269);n.d(t,"isValid",function(){return R.a});var A=n(270);n.d(t,"isSubmitting",function(){return A.a});var T=n(272);n.d(t,"hasSubmitSucceeded",function(){return T.a});var F=n(274);n.d(t,"hasSubmitFailed",function(){return F.a});var I=n(276);n.d(t,"reduxForm",function(){return I.a});var N=n(307);n.d(t,"reducer",function(){return N.a});var M=n(310);n.d(t,"values",function(){return M.a});var V=i,U=r.a.arrayInsert,D=r.a.arrayMove,L=r.a.arrayPop,q=r.a.arrayPush,W=r.a.arrayRemove,z=r.a.arrayRemoveAll,B=r.a.arrayShift,H=r.a.arraySplice,Y=r.a.arraySwap,$=r.a.arrayUnshift,G=r.a.autofill,K=r.a.blur,J=r.a.change,Q=r.a.clearFields,Z=r.a.clearSubmitErrors,X=r.a.destroy,ee=r.a.focus,te=r.a.initialize,ne=r.a.registerField,re=r.a.reset,ie=r.a.setSubmitFailed,oe=r.a.setSubmitSucceeded,ae=r.a.startAsyncValidation,ue=r.a.startSubmit,se=r.a.stopAsyncValidation,ce=r.a.stopSubmit,le=r.a.submit,fe=r.a.touch,pe=r.a.unregisterField,de=r.a.untouch,he=r.a.updateSyncWarnings},function(e,t,n){"use strict";function r(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function i(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function o(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}var a=n(1),u=n.n(a),s=n(2),c=n.n(s),l=function(){function e(e,t){for(var n=0;t.length>n;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),f=function(e){function t(e,n){r(this,t);var o=i(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e,n));if(!n._reduxForm)throw Error("Form must be inside a component decorated with reduxForm()");return o}return o(t,e),l(t,[{key:"componentWillMount",value:function(){this.context._reduxForm.registerInnerOnSubmit(this.props.onSubmit)}},{key:"render",value:function(){return u.a.createElement("form",this.props)}}]),t}(a.Component);f.propTypes={onSubmit:c.a.func.isRequired},f.contextTypes={_reduxForm:c.a.object},t.a=f},function(e,t,n){"use strict";function r(e,t){var n={};for(var r in e)0>t.indexOf(r)&&Object.prototype.hasOwnProperty.call(e,r)&&(n[r]=e[r]);return n}function i(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function o(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function a(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}var u=n(1),s=n.n(u),c=n(2),l=n.n(c),f=n(12),p=Object.assign||function(e){for(var t=1;arguments.length>t;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},d=function(){function e(e,t){for(var n=0;t.length>n;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),h=function(e){function t(e,n){i(this,t);var r=o(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e,n));if(!n._reduxForm)throw Error("FormSection must be inside a component decorated with reduxForm()");return r}return a(t,e),d(t,[{key:"getChildContext",value:function(){var e=this.context,t=this.props.name;return{_reduxForm:p({},e._reduxForm,{sectionPrefix:Object(f.a)(e,t)})}}},{key:"render",value:function(){var e=this.props,t=e.children,n=e.component,i=r(e,["children","name","component"]);return s.a.isValidElement(t)?t:Object(u.createElement)(n,p({},i,{children:t}))}}]),t}(u.Component);h.propTypes={name:l.a.string.isRequired,component:l.a.oneOfType([l.a.func,l.a.string])},h.defaultProps={component:"div"},h.childContextTypes={_reduxForm:l.a.object.isRequired},h.contextTypes={_reduxForm:l.a.object},t.a=h},function(e,t,n){"use strict";function r(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function i(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function o(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}Object.defineProperty(t,"__esModule",{value:!0}),t.default=function(e){function t(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"";r(this,t);var n=i(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e));return Object.defineProperty(n,"message",{configurable:!0,enumerable:!1,value:e,writable:!0}),Object.defineProperty(n,"name",{configurable:!0,enumerable:!1,value:n.constructor.name,writable:!0}),Error.hasOwnProperty("captureStackTrace")?(Error.captureStackTrace(n,n.constructor),i(n)):(Object.defineProperty(n,"stack",{configurable:!0,enumerable:!1,value:Error(e).stack,writable:!0}),n)}return o(t,e),t}(function(e){function t(){e.apply(this,arguments)}return t.prototype=Object.create(e.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),Object.setPrototypeOf?Object.setPrototypeOf(t,e):t.__proto__=e,t}(Error)),e.exports=t.default},function(e,t,n){"use strict";n.d(t,"h",function(){return d}),n.d(t,"e",function(){return h}),n.d(t,"f",function(){return v}),n.d(t,"c",function(){return y}),n.d(t,"b",function(){return m}),n.d(t,"g",function(){return g}),n.d(t,"d",function(){return b});var r=n(2),i=n.n(r),o=i.a.any,a=i.a.bool,u=i.a.func,s=i.a.shape,c=i.a.string,l=i.a.oneOfType,f=i.a.object,p=i.a.number,d={anyTouched:a.isRequired,asyncValidating:l([a,c]).isRequired,dirty:a.isRequired,error:o,form:c.isRequired,invalid:a.isRequired,initialized:a.isRequired,initialValues:f,pristine:a.isRequired,pure:a.isRequired,submitting:a.isRequired,submitFailed:a.isRequired,submitSucceeded:a.isRequired,valid:a.isRequired,warning:o,array:s({insert:u.isRequired,move:u.isRequired,pop:u.isRequired,push:u.isRequired,remove:u.isRequired,removeAll:u.isRequired,shift:u.isRequired,splice:u.isRequired,swap:u.isRequired,unshift:u.isRequired}),asyncValidate:u.isRequired,autofill:u.isRequired,blur:u.isRequired,change:u.isRequired,clearAsyncError:u.isRequired,destroy:u.isRequired,dispatch:u.isRequired,handleSubmit:u.isRequired,initialize:u.isRequired,reset:u.isRequired,touch:u.isRequired,submit:u.isRequired,untouch:u.isRequired,triggerSubmit:a,clearSubmit:u.isRequired},h={checked:a,name:c.isRequired,onBlur:u.isRequired,onChange:u.isRequired,onDragStart:u.isRequired,onDrop:u.isRequired,onFocus:u.isRequired,value:o},v={active:a.isRequired,asyncValidating:a.isRequired,autofilled:a.isRequired,dirty:a.isRequired,dispatch:u.isRequired,error:o,form:c.isRequired,invalid:a.isRequired,pristine:a.isRequired,submitting:a.isRequired,submitFailed:a.isRequired,touched:a.isRequired,valid:a.isRequired,visited:a.isRequired,warning:c},y={dirty:a.isRequired,error:o,form:c.isRequired,invalid:a.isRequired,pristine:a.isRequired,submitFailed:a,submitting:a,valid:a.isRequired,warning:c},m={name:c.isRequired,forEach:u.isRequired,get:u.isRequired,getAll:u.isRequired,insert:u.isRequired,length:p.isRequired,map:u.isRequired,move:u.isRequired,pop:u.isRequired,push:u.isRequired,reduce:u.isRequired,remove:u.isRequired,removeAll:u.isRequired,shift:u.isRequired,swap:u.isRequired,unshift:u.isRequired},g={input:s(h).isRequired,meta:s(v).isRequired},b={fields:s(m).isRequired,meta:s(y).isRequired};t.a=d},function(e,t,n){"use strict";var r=n(134),i=n(0);t.a=Object(r.a)(i.a)},function(e,t,n){"use strict";function r(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function i(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function o(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}var a=n(1),u=(n.n(a),n(2)),s=n.n(u),c=n(8),l=n.n(c),f=n(135),p=n(83),d=n(12),h=n(0),v=Object.assign||function(e){for(var t=1;arguments.length>t;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},y=function(){function e(e,t){for(var n=0;t.length>n;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}();t.a=function(e){var t=Object(f.a)(e),n=e.setIn,u=function(e){function u(e,t){r(this,u);var o=i(this,(u.__proto__||Object.getPrototypeOf(u)).call(this,e,t));if(o.saveRef=function(e){return o.ref=e},o.normalize=function(e,t){var r=o.props.normalize;if(!r)return t;var i=o.context._reduxForm.getValues();return r(t,o.value,n(i,e,t),i)},!t._reduxForm)throw Error("Field must be inside a component decorated with reduxForm()");return o}return o(u,e),y(u,[{key:"shouldComponentUpdate",value:function(e){return Object(p.a)(this,e)}},{key:"componentWillMount",value:function(){var e=this;this.context._reduxForm.register(this.name,"Field",function(){return e.props.validate},function(){return e.props.warn})}},{key:"componentWillReceiveProps",value:function(e,t){var n=Object(d.a)(this.context,this.props.name),r=Object(d.a)(t,e.name);n===r&&h.a.deepEqual(this.props.validate,e.validate)&&h.a.deepEqual(this.props.warn,e.warn)||(this.context._reduxForm.unregister(n),this.context._reduxForm.register(r,"Field",function(){return e.validate},function(){return e.warn}))}},{key:"componentWillUnmount",value:function(){this.context._reduxForm.unregister(this.name)}},{key:"getRenderedComponent",value:function(){return l()(this.props.withRef,"If you want to access getRenderedComponent(), you must specify a withRef prop to Field"),this.ref?this.ref.getWrappedInstance().getRenderedComponent():void 0}},{key:"render",value:function(){return Object(a.createElement)(t,v({},this.props,{name:this.name,normalize:this.normalize,_reduxForm:this.context._reduxForm,ref:this.saveRef}))}},{key:"name",get:function(){return Object(d.a)(this.context,this.props.name)}},{key:"dirty",get:function(){return!this.pristine}},{key:"pristine",get:function(){return!(!this.ref||!this.ref.getWrappedInstance().isPristine())}},{key:"value",get:function(){return this.ref&&this.ref.getWrappedInstance().getValue()}}]),u}(a.Component);return u.propTypes={name:s.a.string.isRequired,component:s.a.oneOfType([s.a.func,s.a.string]).isRequired,format:s.a.func,normalize:s.a.func,onBlur:s.a.func,onChange:s.a.func,onFocus:s.a.func,onDragStart:s.a.func,onDrop:s.a.func,parse:s.a.func,props:s.a.object,validate:s.a.oneOfType([s.a.func,s.a.arrayOf(s.a.func)]),warn:s.a.oneOfType([s.a.func,s.a.arrayOf(s.a.func)]),withRef:s.a.bool},u.contextTypes={_reduxForm:s.a.object},u}},function(e,t,n){"use strict";function r(e,t){var n={};for(var r in e)0>t.indexOf(r)&&Object.prototype.hasOwnProperty.call(e,r)&&(n[r]=e[r]);return n}function i(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function o(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function a(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}var u=n(1),s=(n.n(u),n(2)),c=n.n(s),l=n(9),f=n(70),p=n(71),d=n(155),h=n(0),v=n(73),y=Object.assign||function(e){for(var t=1;arguments.length>t;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},m=function(){function e(e,t){for(var n=0;t.length>n;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),g="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},b=["_reduxForm"],O=function(e){return e&&"object"===(void 0===e?"undefined":g(e))},w=function(e){return e&&"function"==typeof e},_=function(e){O(e)&&w(e.preventDefault)&&e.preventDefault()},S=function(e,t){if(O(e)&&O(e.dataTransfer)&&w(e.dataTransfer.getData))return e.dataTransfer.getData(t)},E=function(e,t,n){O(e)&&O(e.dataTransfer)&&w(e.dataTransfer.setData)&&e.dataTransfer.setData(t,n)};t.a=function(e){var t=e.deepEqual,n=e.getIn,s=function(e,t){var n=h.a.getIn(e,t);return n&&n._error?n._error:n},g=function(e,t){var r=n(e,t);return r&&r._warning?r._warning:r},O=function(n){function s(){var e,t,n,r;i(this,s);for(var a=arguments.length,u=Array(a),c=0;a>c;c++)u[c]=arguments[c];return t=n=o(this,(e=s.__proto__||Object.getPrototypeOf(s)).call.apply(e,[this].concat(u))),n.saveRef=function(e){return n.ref=e},n.isPristine=function(){return n.props.pristine},n.getValue=function(){return n.props.value},n.handleChange=function(e){var t=n.props,r=t.name,i=t.dispatch,o=t.parse,a=t.normalize,u=t.onChange,s=t._reduxForm,c=t.value,l=Object(p.a)(e,{name:r,parse:o,normalize:a}),f=!1;u&&(v.a?u(e,l,c):u(y({},e,{preventDefault:function(){return f=!0,_(e)}}),l,c)),f||(i(s.change(r,l)),s.asyncValidate&&s.asyncValidate(r,l,"change"))},n.handleFocus=function(e){var t=n.props,r=t.name,i=t.dispatch,o=t.onFocus,a=t._reduxForm,u=!1;o&&o(v.a?e:y({},e,{preventDefault:function(){return u=!0,_(e)}})),u||i(a.focus(r))},n.handleBlur=function(e){var t=n.props,r=t.name,i=t.dispatch,o=t.parse,a=t.normalize,u=t.onBlur,s=t._reduxForm,c=t._value,l=t.value,f=Object(p.a)(e,{name:r,parse:o,normalize:a});f===c&&void 0!==c&&(f=l);var d=!1;u&&(v.a?u(e,f,l):u(y({},e,{preventDefault:function(){return d=!0,_(e)}}),f,l)),d||(i(s.blur(r,f)),s.asyncValidate&&s.asyncValidate(r,f,"blur"))},n.handleDragStart=function(e){var t=n.props,r=t.onDragStart,i=t.value;E(e,d.a,null==i?"":i),r&&r(e)},n.handleDrop=function(e){var t=n.props,r=t.name,i=t.dispatch,o=t.onDrop,a=t._reduxForm,u=t.value,s=S(e,d.a),c=!1;o&&o(y({},e,{preventDefault:function(){return c=!0,_(e)}}),s,u),c||(i(a.change(r,s)),_(e))},r=t,o(n,r)}return a(s,n),m(s,[{key:"shouldComponentUpdate",value:function(e){var n=this,r=Object.keys(e),i=Object.keys(this.props);return!!(this.props.children||e.children||r.length!==i.length||r.some(function(r){return!~b.indexOf(r)&&!t(n.props[r],e[r])}))}},{key:"getRenderedComponent",value:function(){return this.ref}},{key:"render",value:function(){var t=this.props,n=t.component,i=t.withRef,o=t.name,a=t._reduxForm,s=r(t,["component","withRef","name","_reduxForm","normalize","onBlur","onChange","onFocus","onDragStart","onDrop"]),c=Object(f.a)(e,o,y({},s,{form:a.form,onBlur:this.handleBlur,onChange:this.handleChange,onDrop:this.handleDrop,onDragStart:this.handleDragStart,onFocus:this.handleFocus})),l=c.custom,p=r(c,["custom"]);if(i&&(l.ref=this.saveRef),"string"==typeof n){var d=p.input;return Object(u.createElement)(n,y({},d,l))}return Object(u.createElement)(n,y({},p,l))}}]),s}(u.Component);return O.propTypes={component:c.a.oneOfType([c.a.func,c.a.string]).isRequired,props:c.a.object},Object(l.a)(function(e,r){var i=r.name,o=r._reduxForm,a=o.initialValues,u=o.getFormState,c=u(e),l=n(c,"initial."+i),f=void 0!==l?l:a&&n(a,i),p=n(c,"values."+i),d=n(c,"submitting"),h=s(n(c,"syncErrors"),i),v=g(n(c,"syncWarnings"),i),y=t(p,f);return{asyncError:n(c,"asyncErrors."+i),asyncValidating:n(c,"asyncValidating")===i,dirty:!y,pristine:y,state:n(c,"fields."+i),submitError:n(c,"submitErrors."+i),submitFailed:n(c,"submitFailed"),submitting:d,syncError:h,syncWarning:v,initial:f,value:p,_value:r.value}},void 0,void 0,{withRef:!0})(O)}},function(e,t,n){"use strict";function r(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function i(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function o(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}var a=n(1),u=(n.n(a),n(2)),s=n.n(u),c=n(59);n(29),function(){var e,t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"store",n=arguments[1],u=n||t+"Subscription",l=function(e){function n(o,a){r(this,n);var u=i(this,e.call(this,o,a));return u[t]=o.store,u}return o(n,e),n.prototype.getChildContext=function(){var e;return e={},e[t]=this[t],e[u]=null,e},n.prototype.render=function(){return a.Children.only(this.props.children)},n}(a.Component);l.propTypes={store:c.a.isRequired,children:s.a.element.isRequired},l.childContextTypes=(e={},e[t]=c.a.isRequired,e[u]=c.b,e)}()},function(e,t,n){"use strict";function r(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function i(){var e=[],t=[];return{clear:function(){t=o,e=o},notify:function(){for(var n=e=t,r=0;n.length>r;r++)n[r]()},get:function(){return t},subscribe:function(n){var r=!0;return t===e&&(t=e.slice()),t.push(n),function(){r&&e!==o&&(r=!1,t===e&&(t=e.slice()),t.splice(t.indexOf(n),1))}}}}n.d(t,"a",function(){return u});var o=null,a={notify:function(){}},u=function(){function e(t,n,i){r(this,e),this.store=t,this.parentSub=n,this.onStateChange=i,this.unsubscribe=null,this.listeners=a}return e.prototype.addNestedSub=function(e){return this.trySubscribe(),this.listeners.subscribe(e)},e.prototype.notifyNestedSubs=function(){this.listeners.notify()},e.prototype.isSubscribed=function(){return!!this.unsubscribe},e.prototype.trySubscribe=function(){this.unsubscribe||(this.unsubscribe=this.parentSub?this.parentSub.addNestedSub(this.onStateChange):this.store.subscribe(this.onStateChange),this.listeners=i())},e.prototype.tryUnsubscribe=function(){this.unsubscribe&&(this.unsubscribe(),this.unsubscribe=null,this.listeners.clear(),this.listeners=a)},e}()},function(e,t,n){"use strict";function r(e,t){var n={};for(var r in e)0>t.indexOf(r)&&Object.prototype.hasOwnProperty.call(e,r)&&(n[r]=e[r]);return n}function i(e,t,n){for(var r=t.length-1;r>=0;r--){var i=t[r](e);if(i)return i}return function(t,r){throw Error("Invalid value of type "+typeof e+" for "+n+" argument when connecting component "+r.wrappedComponentName+".")}}function o(e,t){return e===t}var a=n(60),u=n(139),s=n(140),c=n(150),l=n(151),f=n(152),p=Object.assign||function(e){for(var t=1;arguments.length>t;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e};t.a=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=e.connectHOC,n=void 0===t?a.a:t,d=e.mapStateToPropsFactories,h=void 0===d?c.a:d,v=e.mapDispatchToPropsFactories,y=void 0===v?s.a:v,m=e.mergePropsFactories,g=void 0===m?l.a:m,b=e.selectorFactory,O=void 0===b?f.a:b;return function(e,t,a){var s=arguments.length>3&&void 0!==arguments[3]?arguments[3]:{},c=s.pure,l=void 0===c||c,f=s.areStatesEqual,d=void 0===f?o:f,v=s.areOwnPropsEqual,m=void 0===v?u.a:v,b=s.areStatePropsEqual,w=void 0===b?u.a:b,_=s.areMergedPropsEqual,S=void 0===_?u.a:_,E=r(s,["pure","areStatesEqual","areOwnPropsEqual","areStatePropsEqual","areMergedPropsEqual"]),x=i(e,h,"mapStateToProps"),j=i(t,y,"mapDispatchToProps"),k=i(a,g,"mergeProps");return n(O,p({methodName:"connect",getDisplayName:function(e){return"Connect("+e+")"},shouldHandleStateChanges:!!e,initMapStateToProps:x,initMapDispatchToProps:j,initMergeProps:k,pure:l,areStatesEqual:d,areOwnPropsEqual:m,areStatePropsEqual:w,areMergedPropsEqual:S},E))}}()},function(e,t,n){"use strict";function r(e,t){return e===t?0!==e||0!==t||1/e==1/t:e!==e&&t!==t}function i(e,t){if(r(e,t))return!0;if("object"!=typeof e||null===e||"object"!=typeof t||null===t)return!1;var n=Object.keys(e);if(n.length!==Object.keys(t).length)return!1;for(var i=0;n.length>i;i++)if(!o.call(t,n[i])||!r(e[n[i]],t[n[i]]))return!1;return!0}t.a=i;var o=Object.prototype.hasOwnProperty},function(e,t,n){"use strict";function r(e){return"function"==typeof e?Object(u.b)(e,"mapDispatchToProps"):void 0}function i(e){return e?void 0:Object(u.a)(function(e){return{dispatch:e}})}function o(e){return e&&"object"==typeof e?Object(u.a)(function(t){return Object(a.a)(e,t)}):void 0}var a=n(30),u=n(68);t.a=[r,i,o]},function(e,t,n){"use strict";function r(e){var t=a.call(e,s),n=e[s];try{e[s]=void 0;var r=!0}catch(e){}var i=u.call(e);return r&&(t?e[s]=n:delete e[s]),i}var i=n(17),o=Object.prototype,a=o.hasOwnProperty,u=o.toString,s=i.a?i.a.toStringTag:void 0;t.a=r},function(e,t,n){"use strict";function r(e){return o.call(e)}var i=Object.prototype,o=i.toString;t.a=r},function(e,t,n){e.exports=n(144)},function(e,t,n){"use strict";(function(e,r){Object.defineProperty(t,"__esModule",{value:!0});var i,o=n(146),a=function(e){return e&&e.__esModule?e:{default:e}}(o);i="undefined"!=typeof self?self:"undefined"!=typeof window?window:void 0!==e?e:r;var u=(0,a.default)(i);t.default=u}).call(t,n(15),n(145)(e))},function(e,t){e.exports=function(e){return e.webpackPolyfill||(e.deprecate=function(){},e.paths=[],e.children||(e.children=[]),Object.defineProperty(e,"loaded",{enumerable:!0,get:function(){return e.l}}),Object.defineProperty(e,"id",{enumerable:!0,get:function(){return e.i}}),e.webpackPolyfill=1),e}},function(e,t,n){"use strict";function r(e){var t,n=e.Symbol;return"function"==typeof n?n.observable?t=n.observable:(t=n("observable"),n.observable=t):t="@@observable",t}Object.defineProperty(t,"__esModule",{value:!0}),t.default=r},function(e,t,n){"use strict";n(62),n(16),n(66)},function(e,t,n){"use strict";function r(e,t){return function(){return t(e.apply(void 0,arguments))}}function i(e,t){if("function"==typeof e)return r(e,t);if("object"!=typeof e||null===e)throw Error("bindActionCreators expected an object or a function, instead received "+(null===e?"null":typeof e)+'. Did you write "import ActionCreators from" instead of "import * as ActionCreators from"?');for(var n=Object.keys(e),i={},o=0;n.length>o;o++){var a=n[o],u=e[a];"function"==typeof u&&(i[a]=r(u,t))}return i}t.a=i},function(e,t,n){"use strict";n(67),Object},function(e,t,n){"use strict";function r(e){return"function"==typeof e?Object(o.b)(e,"mapStateToProps"):void 0}function i(e){return e?void 0:Object(o.a)(function(){return{}})}var o=n(68);t.a=[r,i]},function(e,t,n){"use strict";function r(e,t,n){return u({},n,e,t)}function i(e){return function(t,n){var r=n.pure,i=n.areMergedPropsEqual,o=!1,a=void 0;return function(t,n,u){var s=e(t,n,u);return o?r&&i(s,a)||(a=s):(o=!0,a=s),a}}}function o(e){return"function"==typeof e?i(e):void 0}function a(e){return e?void 0:function(){return r}}var u=(n(69),Object.assign||function(e){for(var t=1;arguments.length>t;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e});t.a=[o,a]},function(e,t,n){"use strict";function r(e,t){var n={};for(var r in e)0>t.indexOf(r)&&Object.prototype.hasOwnProperty.call(e,r)&&(n[r]=e[r]);return n}function i(e,t,n,r){return function(i,o){return n(e(i,o),t(r,o),o)}}function o(e,t,n,r,i){function o(i,o){return h=i,v=o,y=e(h,v),m=t(r,v),g=n(y,m,v),d=!0,g}function a(){return y=e(h,v),t.dependsOnOwnProps&&(m=t(r,v)),g=n(y,m,v)}function u(){return e.dependsOnOwnProps&&(y=e(h,v)),t.dependsOnOwnProps&&(m=t(r,v)),g=n(y,m,v)}function s(){var t=e(h,v),r=!p(t,y);return y=t,r&&(g=n(y,m,v)),g}function c(e,t){var n=!f(t,v),r=!l(e,h);return h=e,v=t,n&&r?a():n?u():r?s():g}var l=i.areStatesEqual,f=i.areOwnPropsEqual,p=i.areStatePropsEqual,d=!1,h=void 0,v=void 0,y=void 0,m=void 0,g=void 0;return function(e,t){return d?c(e,t):o(e,t)}}function a(e,t){var n=t.initMapStateToProps,a=t.initMapDispatchToProps,u=t.initMergeProps,s=r(t,["initMapStateToProps","initMapDispatchToProps","initMergeProps"]),c=n(e,s),l=a(e,s),f=u(e,s);return(s.pure?o:i)(c,l,f,e,s)}t.a=a,n(153)},function(e,t,n){"use strict";n(29)},function(e,t,n){"use strict";var r=n(72),i=function(e){var t=[];if(e)for(var n=0;e.length>n;n++){var r=e[n];r.selected&&t.push(r.value)}return t};t.a=function(e,t){if(Object(r.a)(e)){if(!t&&e.nativeEvent&&void 0!==e.nativeEvent.text)return e.nativeEvent.text;if(t&&void 0!==e.nativeEvent)return e.nativeEvent.text;var n=e,o=n.target,a=o.type,u=o.value,s=o.checked,c=o.files,l=n.dataTransfer;return"checkbox"===a?!!s:"file"===a?c||l&&l.files:"select-multiple"===a?i(e.target.options):u}return e}},function(e,t,n){"use strict";n.d(t,"a",function(){return r});var r="text"},function(e,t,n){"use strict";function r(e){if(Array.isArray(e)){for(var t=0,n=Array(e.length);e.length>t;t++)n[t]=e[t];return n}return Array.from(e)}t.a=function(e,t,n,i){if(e=e||[],e.length>t){if(void 0===i&&!n){var o=[].concat(r(e));return o.splice(t,0,!0),o[t]=void 0,o}if(null!=i){var a=[].concat(r(e));return a.splice(t,n,i),a}var u=[].concat(r(e));return u.splice(t,n),u}if(n)return e;var s=[].concat(r(e));return s[t]=i,s}},function(e,t,n){"use strict";var r=n(18);t.a=function(e,t){if(!e)return e;var n=Object(r.a)(t),i=n.length;if(i){for(var o=e,a=0;i>a&&o;++a)o=o[n[a]];return o}}},function(e,t,n){"use strict";function r(e){var t=Object(i.a)(e,function(e){return n.size===o&&n.clear(),e}),n=t.cache;return t}var i=n(159),o=500;t.a=r},function(e,t,n){"use strict";function r(e,t){if("function"!=typeof e||null!=t&&"function"!=typeof t)throw new TypeError(o);var n=function(){var r=arguments,i=t?t.apply(this,r):r[0],o=n.cache;if(o.has(i))return o.get(i);var a=e.apply(this,r);return n.cache=o.set(i,a)||o,a};return n.cache=new(r.Cache||i.a),n}var i=n(31),o="Expected a function";r.Cache=i.a,t.a=r},function(e,t,n){"use strict";function r(){this.size=0,this.__data__={hash:new i.a,map:new(a.a||o.a),string:new i.a}}var i=n(161),o=n(21),a=n(33);t.a=r},function(e,t,n){"use strict";function r(e){var t=-1,n=null==e?0:e.length;for(this.clear();++t<n;){var r=e[t];this.set(r[0],r[1])}}var i=n(162),o=n(167),a=n(168),u=n(169),s=n(170);r.prototype.clear=i.a,r.prototype.delete=o.a,r.prototype.get=a.a,r.prototype.has=u.a,r.prototype.set=s.a,t.a=r},function(e,t,n){"use strict";function r(){this.__data__=i.a?Object(i.a)(null):{},this.size=0}var i=n(20);t.a=r},function(e,t,n){"use strict";function r(e){return!(!Object(a.a)(e)||Object(o.a)(e))&&(Object(i.a)(e)?h:c).test(Object(u.a)(e))}var i=n(32),o=n(164),a=n(5),u=n(77),s=/[\\^$.*+?()[\]{}|]/g,c=/^\[object .+?Constructor\]$/,l=Function.prototype,f=Object.prototype,p=l.toString,d=f.hasOwnProperty,h=RegExp("^"+p.call(d).replace(s,"\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g,"$1.*?")+"$");t.a=r},function(e,t,n){"use strict";function r(e){return!!o&&o in e}var i=n(165),o=function(){var e=/[^.]+$/.exec(i.a&&i.a.keys&&i.a.keys.IE_PROTO||"");return e?"Symbol(src)_1."+e:""}();t.a=r},function(e,t,n){"use strict";t.a=n(3).a["__core-js_shared__"]},function(e,t,n){"use strict";function r(e,t){return null==e?void 0:e[t]}t.a=r},function(e,t,n){"use strict";function r(e){var t=this.has(e)&&delete this.__data__[e];return this.size-=t?1:0,t}t.a=r},function(e,t,n){"use strict";function r(e){var t=this.__data__;if(i.a){var n=t[e];return n===o?void 0:n}return u.call(t,e)?t[e]:void 0}var i=n(20),o="__lodash_hash_undefined__",a=Object.prototype,u=a.hasOwnProperty;t.a=r},function(e,t,n){"use strict";function r(e){var t=this.__data__;return i.a?void 0!==t[e]:a.call(t,e)}var i=n(20),o=Object.prototype,a=o.hasOwnProperty;t.a=r},function(e,t,n){"use strict";function r(e,t){var n=this.__data__;return this.size+=this.has(e)?0:1,n[e]=i.a&&void 0===t?o:t,this}var i=n(20),o="__lodash_hash_undefined__";t.a=r},function(e,t,n){"use strict";function r(){this.__data__=[],this.size=0}t.a=r},function(e,t,n){"use strict";function r(e){var t=this.__data__,n=Object(i.a)(t,e);return n>=0&&(n==t.length-1?t.pop():a.call(t,n,1),--this.size,!0)}var i=n(22),o=Array.prototype,a=o.splice;t.a=r},function(e,t,n){"use strict";function r(e){var t=this.__data__,n=Object(i.a)(t,e);return 0>n?void 0:t[n][1]}var i=n(22);t.a=r},function(e,t,n){"use strict";function r(e){return Object(i.a)(this.__data__,e)>-1}var i=n(22);t.a=r},function(e,t,n){"use strict";function r(e,t){var n=this.__data__,r=Object(i.a)(n,e);return 0>r?(++this.size,n.push([e,t])):n[r][1]=t,this}var i=n(22);t.a=r},function(e,t,n){"use strict";function r(e){var t=Object(i.a)(this,e).delete(e);return this.size-=t?1:0,t}var i=n(23);t.a=r},function(e,t,n){"use strict";function r(e){var t=typeof e;return"string"==t||"number"==t||"symbol"==t||"boolean"==t?"__proto__"!==e:null===e}t.a=r},function(e,t,n){"use strict";function r(e){return Object(i.a)(this,e).get(e)}var i=n(23);t.a=r},function(e,t,n){"use strict";function r(e){return Object(i.a)(this,e).has(e)}var i=n(23);t.a=r},function(e,t,n){"use strict";function r(e,t){var n=Object(i.a)(this,e),r=n.size;return n.set(e,t),this.size+=n.size==r?0:1,this}var i=n(23);t.a=r},function(e,t,n){"use strict";function r(e){if("string"==typeof e)return e;if(Object(a.a)(e))return Object(o.a)(e,r)+"";if(Object(u.a)(e))return l?l.call(e):"";var t=e+"";return"0"==t&&1/e==-s?"-0":t}var i=n(17),o=n(74),a=n(4),u=n(19),s=1/0,c=i.a?i.a.prototype:void 0,l=c?c.toString:void 0;t.a=r},function(e,t,n){"use strict";function r(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var i=n(18),o=Object.assign||function(e){for(var t=1;arguments.length>t;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},a=function e(t,n,i,a){if(a>=i.length)return n;var u=i[a],s=t&&(Array.isArray(t)?t[+u]:t[u]),c=e(s,n,i,a+1);if(!t){if(isNaN(u))return r({},u,c);var l=[];return l[parseInt(u,10)]=c,l}if(Array.isArray(t)){var f=[].concat(t);return f[parseInt(u,10)]=c,f}return o({},t,r({},u,c))};t.a=function(e,t,n){return a(e,n,Object(i.a)(t),0)}},function(e,t,n){"use strict";var r=n(79),i=n(1),o=n.n(i),a=function(e,t){return e===t||(e||t?(!e||!t||e._error===t._error)&&(!e||!t||e._warning===t._warning)&&!o.a.isValidElement(e)&&!o.a.isValidElement(t)&&void 0:(null===e||void 0===e||""===e)==(null===t||void 0===t||""===t))};t.a=function(e,t){return Object(r.a)(e,t,a)}},function(e,t,n){"use strict";function r(e,t,n,r,y,g){var b=Object(c.a)(e),O=Object(c.a)(t),w=b?h:Object(s.a)(e),_=O?h:Object(s.a)(t);w=w==d?v:w,_=_==d?v:_;var S=w==v,E=_==v,x=w==_;if(x&&Object(l.a)(e)){if(!Object(l.a)(t))return!1;b=!0,S=!1}if(x&&!S)return g||(g=new i.a),b||Object(f.a)(e)?Object(o.a)(e,t,n,r,y,g):Object(a.a)(e,t,w,n,r,y,g);if(!(n&p)){var j=S&&m.call(e,"__wrapped__"),k=E&&m.call(t,"__wrapped__");if(j||k){var C=j?e.value():e,P=k?t.value():t;return g||(g=new i.a),y(C,P,n,r,g)}}return!!x&&(g||(g=new i.a),Object(u.a)(e,t,n,r,y,g))}var i=n(35),o=n(80),a=n(195),u=n(198),s=n(213),c=n(4),l=n(38),f=n(40),p=1,d="[object Arguments]",h="[object Array]",v="[object Object]",y=Object.prototype,m=y.hasOwnProperty;t.a=r},function(e,t,n){"use strict";function r(){this.__data__=new i.a,this.size=0}var i=n(21);t.a=r},function(e,t,n){"use strict";function r(e){var t=this.__data__,n=t.delete(e);return this.size=t.size,n}t.a=r},function(e,t,n){"use strict";function r(e){return this.__data__.get(e)}t.a=r},function(e,t,n){"use strict";function r(e){return this.__data__.has(e)}t.a=r},function(e,t,n){"use strict";function r(e,t){var n=this.__data__;if(n instanceof i.a){var r=n.__data__;if(!o.a||u-1>r.length)return r.push([e,t]),this.size=++n.size,this;n=this.__data__=new a.a(r)}return n.set(e,t),this.size=n.size,this}var i=n(21),o=n(33),a=n(31),u=200;t.a=r},function(e,t,n){"use strict";function r(e){var t=-1,n=null==e?0:e.length;for(this.__data__=new i.a;++t<n;)this.add(e[t])}var i=n(31),o=n(191),a=n(192);r.prototype.add=r.prototype.push=o.a,r.prototype.has=a.a,t.a=r},function(e,t,n){"use strict";function r(e){return this.__data__.set(e,i),this}var i="__lodash_hash_undefined__";t.a=r},function(e,t,n){"use strict";function r(e){return this.__data__.has(e)}t.a=r},function(e,t,n){"use strict";function r(e,t){for(var n=-1,r=null==e?0:e.length;++n<r;)if(t(e[n],n,e))return!0;return!1}t.a=r},function(e,t,n){"use strict";function r(e,t){return e.has(t)}t.a=r},function(e,t,n){"use strict";function r(e,t,n,r,i,S,x){switch(n){case _:if(e.byteLength!=t.byteLength||e.byteOffset!=t.byteOffset)return!1;e=e.buffer,t=t.buffer;case w:return!(e.byteLength!=t.byteLength||!S(new o.a(e),new o.a(t)));case p:case d:case y:return Object(a.a)(+e,+t);case h:return e.name==t.name&&e.message==t.message;case m:case b:return e==t+"";case v:var j=s.a;case g:var k=r&l;if(j||(j=c.a),e.size!=t.size&&!k)return!1;var C=x.get(e);if(C)return C==t;r|=f,x.set(e,t);var P=Object(u.a)(j(e),j(t),r,i,S,x);return x.delete(e),P;case O:if(E)return E.call(e)==E.call(t)}return!1}var i=n(17),o=n(81),a=n(13),u=n(80),s=n(196),c=n(197),l=1,f=2,p="[object Boolean]",d="[object Date]",h="[object Error]",v="[object Map]",y="[object Number]",m="[object RegExp]",g="[object Set]",b="[object String]",O="[object Symbol]",w="[object ArrayBuffer]",_="[object DataView]",S=i.a?i.a.prototype:void 0,E=S?S.valueOf:void 0;t.a=r},function(e,t,n){"use strict";function r(e){var t=-1,n=Array(e.size);return e.forEach(function(e,r){n[++t]=[r,e]}),n}t.a=r},function(e,t,n){"use strict";function r(e){var t=-1,n=Array(e.size);return e.forEach(function(e){n[++t]=e}),n}t.a=r},function(e,t,n){"use strict";function r(e,t,n,r,a,s){var c=n&o,l=Object(i.a)(e),f=l.length;if(f!=Object(i.a)(t).length&&!c)return!1;for(var p=f;p--;){var d=l[p];if(!(c?d in t:u.call(t,d)))return!1}var h=s.get(e);if(h&&s.get(t))return h==t;var v=!0;s.set(e,t),s.set(t,e);for(var y=c;++p<f;){d=l[p];var m=e[d],g=t[d];if(r)var b=c?r(g,m,d,t,e,s):r(m,g,d,e,t,s);if(!(void 0===b?m===g||a(m,g,n,r,s):b)){v=!1;break}y||(y="constructor"==d)}if(v&&!y){var O=e.constructor,w=t.constructor;O!=w&&"constructor"in e&&"constructor"in t&&!("function"==typeof O&&O instanceof O&&"function"==typeof w&&w instanceof w)&&(v=!1)}return s.delete(e),s.delete(t),v}var i=n(199),o=1,a=Object.prototype,u=a.hasOwnProperty;t.a=r},function(e,t,n){"use strict";function r(e){return Object(i.a)(e,a.a,o.a)}var i=n(200),o=n(202),a=n(36);t.a=r},function(e,t,n){"use strict";function r(e,t,n){var r=t(e);return Object(o.a)(e)?r:Object(i.a)(r,n(e))}var i=n(201),o=n(4);t.a=r},function(e,t,n){"use strict";function r(e,t){for(var n=-1,r=t.length,i=e.length;++n<r;)e[i+n]=t[n];return e}t.a=r},function(e,t,n){"use strict";var r=n(203),i=n(204),o=Object.prototype,a=o.propertyIsEnumerable,u=Object.getOwnPropertySymbols;t.a=u?function(e){return null==e?[]:(e=Object(e),Object(r.a)(u(e),function(t){return a.call(e,t)}))}:i.a},function(e,t,n){"use strict";function r(e,t){for(var n=-1,r=null==e?0:e.length,i=0,o=[];++n<r;){var a=e[n];t(a,n,e)&&(o[i++]=a)}return o}t.a=r},function(e,t,n){"use strict";function r(){return[]}t.a=r},function(e,t,n){"use strict";function r(e,t){for(var n=-1,r=Array(e);++n<e;)r[n]=t(n);return r}t.a=r},function(e,t,n){"use strict";function r(e){return Object(o.a)(e)&&Object(i.a)(e)==a}var i=n(10),o=n(6),a="[object Arguments]";t.a=r},function(e,t,n){"use strict";function r(){return!1}t.a=r},function(e,t,n){"use strict";function r(e){return Object(a.a)(e)&&Object(o.a)(e.length)&&!!u[Object(i.a)(e)]}var i=n(10),o=n(41),a=n(6),u={};u["[object Float32Array]"]=u["[object Float64Array]"]=u["[object Int8Array]"]=u["[object Int16Array]"]=u["[object Int32Array]"]=u["[object Uint8Array]"]=u["[object Uint8ClampedArray]"]=u["[object Uint16Array]"]=u["[object Uint32Array]"]=!0,u["[object Arguments]"]=u["[object Array]"]=u["[object ArrayBuffer]"]=u["[object Boolean]"]=u["[object DataView]"]=u["[object Date]"]=u["[object Error]"]=u["[object Function]"]=u["[object Map]"]=u["[object Number]"]=u["[object Object]"]=u["[object RegExp]"]=u["[object Set]"]=u["[object String]"]=u["[object WeakMap]"]=!1,t.a=r},function(e,t,n){"use strict";function r(e){return function(t){return e(t)}}t.a=r},function(e,n,r){"use strict";(function(e){var i=r(63),o="object"==typeof t&&t&&!t.nodeType&&t,a=o&&"object"==typeof e&&e&&!e.nodeType&&e,u=a&&a.exports===o,s=u&&i.a.process,c=function(){try{return s&&s.binding&&s.binding("util")}catch(e){}}();n.a=c}).call(n,r(11)(e))},function(e,t,n){"use strict";function r(e){if(!Object(i.a)(e))return Object(o.a)(e);var t=[];for(var n in Object(e))u.call(e,n)&&"constructor"!=n&&t.push(n);return t}var i=n(42),o=n(212),a=Object.prototype,u=a.hasOwnProperty;t.a=r},function(e,t,n){"use strict";var r=n(65);t.a=Object(r.a)(Object.keys,Object)},function(e,t,n){"use strict";var r=n(214),i=n(33),o=n(215),a=n(216),u=n(217),s=n(10),c=n(77),l=Object(c.a)(r.a),f=Object(c.a)(i.a),p=Object(c.a)(o.a),d=Object(c.a)(a.a),h=Object(c.a)(u.a),v=s.a;(r.a&&"[object DataView]"!=v(new r.a(new ArrayBuffer(1)))||i.a&&"[object Map]"!=v(new i.a)||o.a&&"[object Promise]"!=v(o.a.resolve())||a.a&&"[object Set]"!=v(new a.a)||u.a&&"[object WeakMap]"!=v(new u.a))&&(v=function(e){var t=Object(s.a)(e),n="[object Object]"==t?e.constructor:void 0,r=n?Object(c.a)(n):"";if(r)switch(r){case l:return"[object DataView]";case f:return"[object Map]";case p:return"[object Promise]";case d:return"[object Set]";case h:return"[object WeakMap]"}return t}),t.a=v},function(e,t,n){"use strict";var r=n(7),i=n(3);t.a=Object(r.a)(i.a,"DataView")},function(e,t,n){"use strict";var r=n(7),i=n(3);t.a=Object(r.a)(i.a,"Promise")},function(e,t,n){"use strict";var r=n(7),i=n(3);t.a=Object(r.a)(i.a,"Set")},function(e,t,n){"use strict";var r=n(7),i=n(3);t.a=Object(r.a)(i.a,"WeakMap")},function(e,t,n){"use strict";function r(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function i(e){if(Array.isArray(e)){for(var t=0,n=Array(e.length);e.length>t;t++)n[t]=e[t];return n}return Array.from(e)}function o(e,t){if(void 0===e||null===e||void 0===t||null===t)return e;for(var n=arguments.length,a=Array(n>2?n-2:0),s=2;n>s;s++)a[s-2]=arguments[s];if(a.length){if(Array.isArray(e)){if(isNaN(t))throw Error('Must access array elements with a number, not "'+t+'".');var c=+t;if(e.length>c){var l=o.apply(void 0,[e&&e[c]].concat(i(a)));if(l!==e[c]){var f=[].concat(i(e));return f[c]=l,f}}return e}if(t in e){var p=o.apply(void 0,[e&&e[t]].concat(i(a)));return e[t]===p?e:u({},e,r({},t,p))}return e}if(Array.isArray(e)){if(isNaN(t))throw Error('Cannot delete non-numerical index from an array. Given: "'+t);var d=+t;if(e.length>d){var h=[].concat(i(e));return h.splice(d,1),h}return e}if(t in e){var v=u({},e);return delete v[t],v}return e}var a=n(18),u=Object.assign||function(e){for(var t=1;arguments.length>t;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e};t.a=function(e,t){return o.apply(void 0,[e].concat(i(Object(a.a)(t))))}},function(e,t,n){"use strict";function r(e){return e?Array.isArray(e)?e.map(function(e){return e.name}):Object.keys(e):[]}t.a=r},function(e,t,n){"use strict";var r=n(221),i=n(0);t.a=Object(r.a)(i.a)},function(e,t,n){"use strict";function r(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function i(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function o(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}var a=n(1),u=(n.n(a),n(2)),s=n.n(u),c=n(8),l=n.n(c),f=n(222),p=n(83),d=n(0),h=n(12),v=Object.assign||function(e){for(var t=1;arguments.length>t;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},y=function(){function e(e,t){for(var n=0;t.length>n;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),m=function(e){return e?Array.isArray(e)||e._isFieldArray?void 0:Error('Invalid prop "names" supplied to <Fields/>. Must be either an array of strings or the fields array generated by FieldArray.'):Error('No "names" prop was specified <Fields/>')};t.a=function(e){var t=Object(f.a)(e),n=function(e){function n(e,t){r(this,n);var o=i(this,(n.__proto__||Object.getPrototypeOf(n)).call(this,e,t));if(!t._reduxForm)throw Error("Fields must be inside a component decorated with reduxForm()");return o}return o(n,e),y(n,[{key:"shouldComponentUpdate",value:function(e){return Object(p.a)(this,e)}},{key:"componentWillMount",value:function(){var e=m(this.props.names);if(e)throw e;var t=this.context,n=t._reduxForm.register;this.names.forEach(function(e){return n(e,"Field")})}},{key:"componentWillReceiveProps",value:function(e){if(!d.a.deepEqual(this.props.names,e.names)){var t=this.context,n=t._reduxForm,r=n.register,i=n.unregister;this.props.names.forEach(function(e){return i(Object(h.a)(t,e))}),e.names.forEach(function(e){return r(Object(h.a)(t,e),"Field")})}}},{key:"componentWillUnmount",value:function(){var e=this.context,t=e._reduxForm.unregister;this.props.names.forEach(function(n){return t(Object(h.a)(e,n))})}},{key:"getRenderedComponent",value:function(){return l()(this.props.withRef,"If you want to access getRenderedComponent(), you must specify a withRef prop to Fields"),this.refs.connected.getWrappedInstance().getRenderedComponent()}},{key:"render",value:function(){var e=this.context;return Object(a.createElement)(t,v({},this.props,{names:this.props.names.map(function(t){return Object(h.a)(e,t)}),_reduxForm:this.context._reduxForm,ref:"connected"}))}},{key:"names",get:function(){var e=this.context;return this.props.names.map(function(t){return Object(h.a)(e,t)})}},{key:"dirty",get:function(){return this.refs.connected.getWrappedInstance().isDirty()}},{key:"pristine",get:function(){return!this.dirty}},{key:"values",get:function(){return this.refs.connected&&this.refs.connected.getWrappedInstance().getValues()}}]),n}(a.Component);return n.propTypes={names:function(e,t){return m(e[t])},component:s.a.oneOfType([s.a.func,s.a.string]).isRequired,format:s.a.func,parse:s.a.func,props:s.a.object,withRef:s.a.bool},n.contextTypes={_reduxForm:s.a.object},n}},function(e,t,n){"use strict";function r(e,t){var n={};for(var r in e)0>t.indexOf(r)&&Object.prototype.hasOwnProperty.call(e,r)&&(n[r]=e[r]);return n}function i(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function o(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function a(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}var u=n(1),s=(n.n(u),n(2)),c=n.n(s),l=n(9),f=n(70),p=n(0),d=n(71),h=Object.assign||function(e){for(var t=1;arguments.length>t;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},v=function(){function e(e,t){for(var n=0;t.length>n;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),y=["_reduxForm"];t.a=function(e){var t=e.deepEqual,n=e.getIn,s=e.size,m=function(e,t){return p.a.getIn(e,t+"._error")||p.a.getIn(e,t)},g=function(e,t){var r=n(e,t);return r&&r._warning?r._warning:r},b=function(n){function c(e){i(this,c);var t=o(this,(c.__proto__||Object.getPrototypeOf(c)).call(this,e));return t.onChangeFns={},t.onFocusFns={},t.onBlurFns={},t.prepareEventHandlers=function(e){return e.names.forEach(function(e){t.onChangeFns[e]=function(n){return t.handleChange(e,n)},t.onFocusFns[e]=function(){return t.handleFocus(e)},t.onBlurFns[e]=function(n){return t.handleBlur(e,n)}})},t.handleChange=function(e,n){var r=t.props,i=r.dispatch,o=r.parse,a=r._reduxForm,u=Object(d.a)(n,{name:e,parse:o});i(a.change(e,u)),a.asyncValidate&&a.asyncValidate(e,u,"change")},t.handleFocus=function(e){var n=t.props;(0,n.dispatch)(n._reduxForm.focus(e))},t.handleBlur=function(e,n){var r=t.props,i=r.dispatch,o=r.parse,a=r._reduxForm,u=Object(d.a)(n,{name:e,parse:o});i(a.blur(e,u)),a.asyncValidate&&a.asyncValidate(e,u,"blur")},t.prepareEventHandlers(e),t}return a(c,n),v(c,[{key:"componentWillReceiveProps",value:function(e){var t=this;this.props.names===e.names||s(this.props.names)===s(e.names)&&!e.names.some(function(e){return!t.props._fields[e]})||this.prepareEventHandlers(e)}},{key:"shouldComponentUpdate",value:function(e){var n=this,r=Object.keys(e),i=Object.keys(this.props);return!!(this.props.children||e.children||r.length!==i.length||r.some(function(r){return!~y.indexOf(r)&&!t(n.props[r],e[r])}))}},{key:"isDirty",value:function(){var e=this.props._fields;return Object.keys(e).some(function(t){return e[t].dirty})}},{key:"getValues",value:function(){var e=this.props._fields;return Object.keys(e).reduce(function(t,n){return p.a.setIn(t,n,e[n].value)},{})}},{key:"getRenderedComponent",value:function(){return this.refs.renderedComponent}},{key:"render",value:function(){var t=this,n=this.props,i=n.component,o=n.withRef,a=n._fields,s=n._reduxForm,c=r(n,["component","withRef","_fields","_reduxForm"]),l=s.sectionPrefix,d=s.form,v=Object.keys(a).reduce(function(n,i){var o=a[i],u=Object(f.a)(e,i,h({},o,c,{form:d,onBlur:t.onBlurFns[i],onChange:t.onChangeFns[i],onFocus:t.onFocusFns[i]})),s=u.custom,v=r(u,["custom"]);n.custom=s;var y=l?i.replace(l+".",""):i;return p.a.setIn(n,y,v)},{}),y=v.custom,m=r(v,["custom"]);return o&&(m.ref="renderedComponent"),Object(u.createElement)(i,h({},m,y))}}]),c}(u.Component);return b.propTypes={component:c.a.oneOfType([c.a.func,c.a.string]).isRequired,_fields:c.a.object.isRequired,props:c.a.object},Object(l.a)(function(e,t){var r=t.names,i=t._reduxForm,o=i.initialValues,a=i.getFormState,u=a(e);return{_fields:r.reduce(function(e,r){var i=n(u,"initial."+r),a=void 0!==i?i:o&&n(o,r),s=n(u,"values."+r),c=m(n(u,"syncErrors"),r),l=g(n(u,"syncWarnings"),r),f=n(u,"submitting"),p=s===a;return e[r]={asyncError:n(u,"asyncErrors."+r),asyncValidating:n(u,"asyncValidating")===r,dirty:!p,initial:a,pristine:p,state:n(u,"fields."+r),submitError:n(u,"submitErrors."+r),submitFailed:n(u,"submitFailed"),submitting:f,syncError:c,syncWarning:l,value:s,_value:t.value},e},{})}},void 0,void 0,{withRef:!0})(b)}},function(e,t,n){"use strict";var r=n(224),i=n(0);t.a=Object(r.a)(i.a)},function(e,t,n){"use strict";function r(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function i(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function o(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}function a(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var u=n(1),s=(n.n(u),n(2)),c=n.n(s),l=n(8),f=n.n(l),p=n(225),d=n(12),h=Object.assign||function(e){for(var t=1;arguments.length>t;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},v=function(){function e(e,t){for(var n=0;t.length>n;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),y=function(e){return Array.isArray(e)?e:[e]},m=function(e,t){return e&&function(){for(var n=y(e),r=0;n.length>r;r++){var i=n[r].apply(n,arguments);if(i)return a({},t,i)}}};t.a=function(e){var t=Object(p.a)(e),n=function(e){function n(e,t){r(this,n);var o=i(this,(n.__proto__||Object.getPrototypeOf(n)).call(this,e,t));if(o.saveRef=function(e){o.ref=e},!t._reduxForm)throw Error("FieldArray must be inside a component decorated with reduxForm()");return o}return o(n,e),v(n,[{key:"componentWillMount",value:function(){var e=this;this.context._reduxForm.register(this.name,"FieldArray",function(){return m(e.props.validate,"_error")},function(){return m(e.props.warn,"_warning")})}},{key:"componentWillReceiveProps",value:function(e,t){var n=Object(d.a)(this.context,this.props.name),r=Object(d.a)(t,e.name);n!==r&&(this.context._reduxForm.unregister(n),this.context._reduxForm.register(r,"FieldArray"))}},{key:"componentWillUnmount",value:function(){this.context._reduxForm.unregister(this.name)}},{key:"getRenderedComponent",value:function(){return f()(this.props.withRef,"If you want to access getRenderedComponent(), you must specify a withRef prop to FieldArray"),this.ref&&this.ref.getWrappedInstance().getRenderedComponent()}},{key:"render",value:function(){return Object(u.createElement)(t,h({},this.props,{name:this.name,_reduxForm:this.context._reduxForm,ref:this.saveRef}))}},{key:"name",get:function(){return Object(d.a)(this.context,this.props.name)}},{key:"dirty",get:function(){return!this.ref||this.ref.getWrappedInstance().dirty}},{key:"pristine",get:function(){return!(!this.ref||!this.ref.getWrappedInstance().pristine)}},{key:"value",get:function(){return this.ref?this.ref.getWrappedInstance().value:void 0}}]),n}(u.Component);return n.propTypes={name:c.a.string.isRequired,component:c.a.func.isRequired,props:c.a.object,validate:c.a.oneOfType([c.a.func,c.a.arrayOf(c.a.func)]),warn:c.a.oneOfType([c.a.func,c.a.arrayOf(c.a.func)]),withRef:c.a.bool},n.contextTypes={_reduxForm:c.a.object},n}},function(e,t,n){"use strict";function r(e,t){var n={};for(var r in e)0>t.indexOf(r)&&Object.prototype.hasOwnProperty.call(e,r)&&(n[r]=e[r]);return n}function i(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function o(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function a(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}var u=n(84),s=n(1),c=(n.n(s),n(2)),l=n.n(c),f=n(9),p=n(30),d=n(240),h=n(0),v=function(){function e(e,t){for(var n=0;t.length>n;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),y=["_reduxForm","value"];t.a=function(e){var t=e.deepEqual,n=e.getIn,c=e.size,m=function(e,t){return h.a.getIn(e,t+"._error")},g=function(e,t){return n(e,t+"._warning")},b=function(u){function c(){var e,t,r,a;i(this,c);for(var u=arguments.length,s=Array(u),l=0;u>l;l++)s[l]=arguments[l];return t=r=o(this,(e=c.__proto__||Object.getPrototypeOf(c)).call.apply(e,[this].concat(s))),r.saveRef=function(e){r.ref=e},r.getValue=function(e){return r.props.value&&n(r.props.value,e+"")},a=t,o(r,a)}return a(c,u),v(c,[{key:"shouldComponentUpdate",value:function(e){var n=this,r=this.props.value,i=e.value;if(r&&i){var o=i.every(function(e){return~r.indexOf(e)}),a=i.some(function(e,t){return e!==r[t]});if(r.length!==i.length||o&&a||e.rerenderOnEveryChange&&r.some(function(e,n){return!t(e,i[n])}))return!0}var u=Object.keys(e),s=Object.keys(this.props);return!!(this.props.children||e.children||u.length!==s.length||u.some(function(r){return!~y.indexOf(r)&&!t(n.props[r],e[r])}))}},{key:"getRenderedComponent",value:function(){return this.ref}},{key:"render",value:function(){var t=this.props,n=t.component,i=t.withRef,o=t.name,a=t._reduxForm,u=r(t,["component","withRef","name","_reduxForm","validate","warn","rerenderOnEveryChange"]),c=Object(d.a)(e,o,a.form,a.sectionPrefix,this.getValue,u);return i&&(c.ref=this.saveRef),Object(s.createElement)(n,c)}},{key:"dirty",get:function(){return this.props.dirty}},{key:"pristine",get:function(){return this.props.pristine}},{key:"value",get:function(){return this.props.value}}]),c}(s.Component);return b.propTypes={component:l.a.oneOfType([l.a.func,l.a.string]).isRequired,props:l.a.object,rerenderOnEveryChange:l.a.bool},b.defaultProps={rerenderOnEveryChange:!1},b.contextTypes={_reduxForm:l.a.object},Object(f.a)(function(e,r){var i=r.name,o=r._reduxForm,a=o.initialValues,u=o.getFormState,s=u(e),l=n(s,"initial."+i)||a&&n(a,i),f=n(s,"values."+i),p=n(s,"submitting"),d=m(n(s,"syncErrors"),i),h=g(n(s,"syncWarnings"),i),v=t(f,l);return{asyncError:n(s,"asyncErrors."+i+"._error"),dirty:!v,pristine:v,state:n(s,"fields."+i),submitError:n(s,"submitErrors."+i+"._error"),submitFailed:n(s,"submitFailed"),submitting:p,syncError:d,syncWarning:h,value:f,length:c(f)}},function(e,t){var n=t.name,r=t._reduxForm,i=r.arrayInsert,o=r.arrayMove,a=r.arrayPop,s=r.arrayPush,c=r.arrayRemove,l=r.arrayRemoveAll,f=r.arrayShift,d=r.arraySplice,h=r.arraySwap,v=r.arrayUnshift;return Object(u.a)({arrayInsert:i,arrayMove:o,arrayPop:a,arrayPush:s,arrayRemove:c,arrayRemoveAll:l,arrayShift:f,arraySplice:d,arraySwap:h,arrayUnshift:v},function(t){return Object(p.a)(t.bind(null,n),e)})},void 0,{withRef:!0})(b)}},function(e,t,n){"use strict";function r(e,t){return e&&Object(i.a)(e,t,o.a)}var i=n(86),o=n(36);t.a=r},function(e,t,n){"use strict";function r(e){return function(t,n,r){for(var i=-1,o=Object(t),a=r(t),u=a.length;u--;){var s=a[e?u:++i];if(!1===n(o[s],s,o))break}return t}}t.a=r},function(e,t,n){"use strict";function r(e){return"function"==typeof e?e:null==e?a.a:"object"==typeof e?Object(u.a)(e)?Object(o.a)(e[0],e[1]):Object(i.a)(e):Object(s.a)(e)}var i=n(229),o=n(232),a=n(44),u=n(4),s=n(237);t.a=r},function(e,t,n){"use strict";function r(e){var t=Object(o.a)(e);return 1==t.length&&t[0][2]?Object(a.a)(t[0][0],t[0][1]):function(n){return n===e||Object(i.a)(n,e,t)}}var i=n(230),o=n(231),a=n(88);t.a=r},function(e,t,n){"use strict";function r(e,t,n,r){var s=n.length,c=s,l=!r;if(null==e)return!c;for(e=Object(e);s--;){var f=n[s];if(l&&f[2]?f[1]!==e[f[0]]:!(f[0]in e))return!1}for(;++s<c;){f=n[s];var p=f[0],d=e[p],h=f[1];if(l&&f[2]){if(void 0===d&&!(p in e))return!1}else{var v=new i.a;if(r)var y=r(d,h,p,e,t,v);if(!(void 0===y?Object(o.a)(h,d,a|u,r,v):y))return!1}}return!0}var i=n(35),o=n(34),a=1,u=2;t.a=r},function(e,t,n){"use strict";function r(e){for(var t=Object(o.a)(e),n=t.length;n--;){var r=t[n],a=e[r];t[n]=[r,a,Object(i.a)(a)]}return t}var i=n(87),o=n(36);t.a=r},function(e,t,n){"use strict";function r(e,t){return Object(u.a)(e)&&Object(s.a)(t)?Object(c.a)(Object(l.a)(e),t):function(n){var r=Object(o.a)(n,e);return void 0===r&&r===t?Object(a.a)(n,e):Object(i.a)(t,r,f|p)}}var i=n(34),o=n(233),a=n(234),u=n(43),s=n(87),c=n(88),l=n(14),f=1,p=2;t.a=r},function(e,t,n){"use strict";function r(e,t,n){var r=null==e?void 0:Object(i.a)(e,t);return void 0===r?n:r}var i=n(89);t.a=r},function(e,t,n){"use strict";function r(e,t){return null!=e&&Object(o.a)(e,t,i.a)}var i=n(235),o=n(236);t.a=r},function(e,t,n){"use strict";function r(e,t){return null!=e&&t in Object(e)}t.a=r},function(e,t,n){"use strict";function r(e,t,n){t=Object(i.a)(t,e);for(var r=-1,l=t.length,f=!1;++r<l;){var p=Object(c.a)(t[r]);if(!(f=null!=e&&n(e,p)))break;e=e[p]}return f||++r!=l?f:!!(l=null==e?0:e.length)&&Object(s.a)(l)&&Object(u.a)(p,l)&&(Object(a.a)(e)||Object(o.a)(e))}var i=n(90),o=n(37),a=n(4),u=n(39),s=n(41),c=n(14);t.a=r},function(e,t,n){"use strict";function r(e){return Object(a.a)(e)?Object(i.a)(Object(u.a)(e)):Object(o.a)(e)}var i=n(238),o=n(239),a=n(43),u=n(14);t.a=r},function(e,t,n){"use strict";function r(e){return function(t){return null==t?void 0:t[e]}}t.a=r},function(e,t,n){"use strict";function r(e){return function(t){return Object(i.a)(t,e)}}var i=n(89);t.a=r},function(e,t,n){"use strict";function r(e,t){var n={};for(var r in e)0>t.indexOf(r)&&Object.prototype.hasOwnProperty.call(e,r)&&(n[r]=e[r]);return n}var i=Object.assign||function(e){for(var t=1;arguments.length>t;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e};t.a=function(e,t,n,o,a,u){var s=e.getIn,c=u.arrayInsert,l=u.arrayMove,f=u.arrayPop,p=u.arrayPush,d=u.arrayRemove,h=u.arrayRemoveAll,v=u.arrayShift,y=u.arraySwap,m=u.arrayUnshift,g=u.asyncError,b=u.dirty,O=u.length,w=u.pristine,_=u.submitError,S=u.submitFailed,E=u.submitting,x=u.syncError,j=u.syncWarning,k=u.value,C=u.props,P=r(u,["arrayInsert","arrayMove","arrayPop","arrayPush","arrayRemove","arrayRemoveAll","arrayShift","arraySplice","arraySwap","arrayUnshift","asyncError","dirty","length","pristine","submitError","state","submitFailed","submitting","syncError","syncWarning","value","props"]),R=x||g||_,A=j,T=o?t.replace(o+".",""):t,F=i({fields:{_isFieldArray:!0,forEach:function(e){return(k||[]).forEach(function(t,n){return e(T+"["+n+"]",n,F.fields)})},get:a,getAll:function(){return k},insert:c,length:O,map:function(e){return(k||[]).map(function(t,n){return e(T+"["+n+"]",n,F.fields)})},move:l,name:t,pop:function(){return f(),s(k,O-1+"")},push:p,reduce:function(e,t){return(k||[]).reduce(function(t,n,r){return e(t,T+"["+r+"]",r,F.fields)},t)},remove:d,removeAll:h,shift:function(){return v(),s(k,"0")},swap:y,unshift:m},meta:{dirty:b,error:R,form:n,warning:A,invalid:!!R,pristine:w,submitting:E,submitFailed:S,valid:!R}},C,P);return F}},function(e,t,n){"use strict";var r=n(242),i=n(0);t.a=Object(r.a)(i.a)},function(e,t,n){"use strict";var r=n(8),i=n.n(r),o=n(0);t.a=function(e){var t=e.getIn;return function(e,n){i()(e,"Form value must be specified");var r=n||function(e){return t(e,"form")};return function(n){for(var a=arguments.length,u=Array(a>1?a-1:0),s=1;a>s;s++)u[s-1]=arguments[s];return i()(u.length,"No fields specified"),1===u.length?t(r(n),e+".values."+u[0]):u.reduce(function(i,a){var u=t(r(n),e+".values."+a);return void 0===u?i:o.a.setIn(i,a,u)},{})}}}},function(e,t,n){"use strict";var r=n(244),i=n(0);t.a=Object(r.a)(i.a)},function(e,t,n){"use strict";function r(e,t){var n={};for(var r in e)0>t.indexOf(r)&&Object.prototype.hasOwnProperty.call(e,r)&&(n[r]=e[r]);return n}function i(e){if(Array.isArray(e)){for(var t=0,n=Array(e.length);e.length>t;t++)n[t]=e[t];return n}return Array.from(e)}function o(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function a(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function u(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}var s=n(1),c=n.n(s),l=n(2),f=n.n(l),p=n(9),d=n(12),h=Object.assign||function(e){for(var t=1;arguments.length>t;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},v=function(){function e(e,t){for(var n=0;t.length>n;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}();t.a=function(e){var t=e.getIn;return function(e){for(var n=arguments.length,s=Array(n>1?n-1:0),l=1;n>l;l++)s[l-1]=arguments[l];return function(n){var l=function(l){function f(u,l){o(this,f);var h=a(this,(f.__proto__||Object.getPrototypeOf(f)).call(this,u,l));if(!l._reduxForm)throw Error("formValues() must be used inside a React tree decorated with reduxForm()");var v=void 0,y="function"==typeof e?e(u):e;if("string"==typeof y)v=[y].concat(i(s)).map(function(e){return{prop:e,path:e}});else{var m=y;v=Object.keys(m).map(function(e){return{prop:e,path:m[e]}})}if(!v.length)throw Error("formValues(): You must specify values to get as formValues(name1, name2, ...) or formValues({propName1: propPath1, ...}) or formValues((props) => name) or formValues((props) => ({propName1: propPath1, ...}))");var g=function(e,n){var r=h.context._reduxForm.getValues,i={},o=r();return v.forEach(function(e){var n=e.prop,r=e.path;return i[n]=t(o,Object(d.a)(h.context,r))}),i};return h.Component=Object(p.a)(g,function(){return{}})(function(e){var t=r(e,["sectionPrefix"]);return c.a.createElement(n,t)}),h}return u(f,l),v(f,[{key:"render",value:function(){return c.a.createElement(this.Component,h({sectionPrefix:this.context._reduxForm.sectionPrefix},this.props))}}]),f}(c.a.Component);return l.contextTypes={_reduxForm:f.a.object},l}}}},function(e,t,n){"use strict";var r=n(246),i=n(0);t.a=Object(r.a)(i.a)},function(e,t,n){"use strict";t.a=function(e){var t=e.getIn;return function(e,n){return function(r){return t((n||function(e){return t(e,"form")})(r),e+".error")}}}},function(e,t,n){"use strict";var r=n(248),i=n(0);t.a=Object(r.a)(i.a)},function(e,t,n){"use strict";function r(e){var t=e.getIn,n=e.keys;return function(e){return function(r){return n((e||function(e){return t(e,"form")})(r))}}}t.a=r},function(e,t,n){"use strict";var r=n(250),i=n(0);t.a=Object(r.a)(i.a)},function(e,t,n){"use strict";t.a=function(e){var t=e.getIn;return function(e,n){return function(r){return t((n||function(e){return t(e,"form")})(r),e+".values")}}}},function(e,t,n){"use strict";var r=n(252),i=n(0);t.a=Object(r.a)(i.a)},function(e,t,n){"use strict";t.a=function(e){var t=e.getIn;return function(e,n){return function(r){return t((n||function(e){return t(e,"form")})(r),e+".initial")}}}},function(e,t,n){"use strict";var r=n(254),i=n(0);t.a=Object(r.a)(i.a)},function(e,t,n){"use strict";t.a=function(e){var t=e.getIn,n=e.empty;return function(e,r){return function(i){return t((r||function(e){return t(e,"form")})(i),e+".syncErrors")||n}}}},function(e,t,n){"use strict";var r=n(256),i=n(0);t.a=Object(r.a)(i.a)},function(e,t,n){"use strict";t.a=function(e){var t=e.getIn,n=e.empty;return function(e,r){return function(i){return t((r||function(e){return t(e,"form")})(i),e+".fields")||n}}}},function(e,t,n){"use strict";var r=n(258),i=n(0);t.a=Object(r.a)(i.a)},function(e,t,n){"use strict";t.a=function(e){var t=e.getIn;return function(e,n){return function(r){return t((n||function(e){return t(e,"form")})(r),e+".asyncErrors")}}}},function(e,t,n){"use strict";var r=n(260),i=n(0);t.a=Object(r.a)(i.a)},function(e,t,n){"use strict";t.a=function(e){var t=e.getIn,n=e.empty;return function(e,r){return function(i){return t((r||function(e){return t(e,"form")})(i),e+".syncWarnings")||n}}}},function(e,t,n){"use strict";var r=n(262),i=n(0);t.a=Object(r.a)(i.a)},function(e,t,n){"use strict";t.a=function(e){var t=e.getIn,n=e.empty;return function(e,r){return function(i){return t((r||function(e){return t(e,"form")})(i),e+".submitErrors")||n}}}},function(e,t,n){"use strict";var r=n(264),i=n(0);t.a=Object(r.a)(i.a)},function(e,t,n){"use strict";var r=n(91);t.a=function(e){return function(t,n){var i=Object(r.a)(e)(t,n);return function(e){return!i(e)}}}},function(e,t,n){"use strict";var r=n(266),i=n(0);t.a=Object(r.a)(i.a)},function(e,t,n){"use strict";var r=n(45);t.a=function(e){return function(t,n){var i=Object(r.a)(e)(t,n);return function(e){return!i(e)}}}},function(e,t,n){"use strict";var r=function(e,t){switch(t){case"Field":return[e,e+"._error"];case"FieldArray":return[e+"._error"];default:throw Error("Unknown field type")}};t.a=function(e){var t=e.getIn;return function(e,n,i,o){if(!n&&!i&&!o)return!1;var a=t(e,"name"),u=t(e,"type");return r(a,u).some(function(e){return t(n,e)||t(i,e)||t(o,e)})}}},function(e,t,n){"use strict";var r=n(91),i=n(0);t.a=Object(r.a)(i.a)},function(e,t,n){"use strict";var r=n(45),i=n(0);t.a=Object(r.a)(i.a)},function(e,t,n){"use strict";var r=n(271),i=n(0);t.a=Object(r.a)(i.a)},function(e,t,n){"use strict";t.a=function(e){var t=e.getIn;return function(e,n){return function(r){return!!t((n||function(e){return t(e,"form")})(r),e+".submitting")}}}},function(e,t,n){"use strict";var r=n(273),i=n(0);t.a=Object(r.a)(i.a)},function(e,t,n){"use strict";t.a=function(e){var t=e.getIn;return function(e,n){return function(r){return!!t((n||function(e){return t(e,"form")})(r),e+".submitSucceeded")}}}},function(e,t,n){"use strict";var r=n(275),i=n(0);t.a=Object(r.a)(i.a)},function(e,t,n){"use strict";t.a=function(e){var t=e.getIn;return function(e,n){return function(r){return!!t((n||function(e){return t(e,"form")})(r),e+".submitFailed")}}}},function(e,t,n){"use strict";var r=n(277),i=n(0);t.a=Object(r.a)(i.a)},function(e,t,n){"use strict";function r(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function i(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function o(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function a(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}function u(e,t){var n={};for(var r in e)0>t.indexOf(r)&&Object.prototype.hasOwnProperty.call(e,r)&&(n[r]=e[r]);return n}var s=n(278),c=n(84),l=n(61),f=n.n(l),p=n(8),d=n.n(p),h=n(46),v=n.n(h),y=n(2),m=n.n(y),g=n(1),b=(n.n(g),n(9)),O=n(30),w=n(53),_=n(301),S=n(54),E=n(55),x=n(56),j=n(57),k=n(94),C=n(302),P=n(303),R=n(304),A=n(45),T=n(0),F=n(305),I=n(306),N=function(){function e(e,t){for(var n=0;t.length>n;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),M=Object.assign||function(e){for(var t=1;arguments.length>t;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},V="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},U=function(e){return!(!e||!e.prototype||"object"!==V(e.prototype.isReactComponent))},D=w.a.arrayInsert,L=w.a.arrayMove,q=w.a.arrayPop,W=w.a.arrayPush,z=w.a.arrayRemove,B=w.a.arrayRemoveAll,H=w.a.arrayShift,Y=w.a.arraySplice,$=w.a.arraySwap,G=w.a.arrayUnshift,K=w.a.blur,J=w.a.change,Q=w.a.focus,Z=u(w.a,["arrayInsert","arrayMove","arrayPop","arrayPush","arrayRemove","arrayRemoveAll","arrayShift","arraySplice","arraySwap","arrayUnshift","blur","change","focus"]),X={arrayInsert:D,arrayMove:L,arrayPop:q,arrayPush:W,arrayRemove:z,arrayRemoveAll:B,arrayShift:H,arraySplice:Y,arraySwap:$,arrayUnshift:G},ee=[].concat(function(e){if(Array.isArray(e)){for(var t=0,n=Array(e.length);e.length>t;t++)n[t]=e[t];return n}return Array.from(e)}(Object.keys(w.a)),["array","asyncErrors","initialValues","syncErrors","syncWarnings","values","registeredFields"]),te=function(e){if(!e||"function"!=typeof e)throw Error("You must either pass handleSubmit() an onSubmit function or pass onSubmit as a prop");return e};t.a=function(e){var t=e.deepEqual,n=e.empty,l=e.getIn,p=e.setIn,h=e.keys,y=e.fromJS,w=Object(A.a)(e);return function(A){var V=M({touchOnBlur:!0,touchOnChange:!1,persistentSubmitErrors:!1,destroyOnUnmount:!0,shouldAsyncValidate:S.a,shouldValidate:E.a,shouldError:x.a,shouldWarn:j.a,enableReinitialize:!1,keepDirtyOnReinitialize:!1,updateUnregisteredFields:!1,getFormState:function(e){return l(e,"form")},pure:!0,forceUnregisterOnUnmount:!1},A);return function(S){var E=function(n){function c(){var t,n,r,a;i(this,c);for(var u=arguments.length,s=Array(u),f=0;u>f;f++)s[f]=arguments[f];return n=r=o(this,(t=c.__proto__||Object.getPrototypeOf(c)).call.apply(t,[this].concat(s))),r.destroyed=!1,r.fieldValidators={},r.lastFieldValidatorKeys=[],r.fieldWarners={},r.lastFieldWarnerKeys=[],r.innerOnSubmit=void 0,r.submitPromise=void 0,r.getValues=function(){return r.props.values},r.isValid=function(){return r.props.valid},r.isPristine=function(){return r.props.pristine},r.register=function(e,t,n,i){r.props.registerField(e,t),n&&(r.fieldValidators[e]=n),i&&(r.fieldWarners[e]=i)},r.unregister=function(e){if(!r.destroyed){var t=r.props,n=t.destroyOnUnmount,i=t.forceUnregisterOnUnmount,o=t.unregisterField;n||i?(o(e,n),delete r.fieldValidators[e],delete r.fieldWarners[e]):o(e,!1)}},r.getFieldList=function(e){var t=r.props.registeredFields,n=[];if(!t)return n;var i=h(t);return e&&e.excludeFieldArray&&(i=i.filter(function(e){return"FieldArray"!==l(t,"['"+e+"'].type")})),y(i.reduce(function(e,t){return e.push(t),e},n))},r.getValidators=function(){var e={};return Object.keys(r.fieldValidators).forEach(function(t){var n=r.fieldValidators[t]();n&&(e[t]=n)}),e},r.generateValidator=function(){var t=r.getValidators();return Object.keys(t).length?Object(P.a)(t,e):void 0},r.getWarners=function(){var e={};return Object.keys(r.fieldWarners).forEach(function(t){var n=r.fieldWarners[t]();n&&(e[t]=n)}),e},r.generateWarner=function(){var t=r.getWarners();return Object.keys(t).length?Object(P.a)(t,e):void 0},r.asyncValidate=function(e,t,n){var i=r.props,o=i.asyncBlurFields,a=i.asyncChangeFields,u=i.asyncErrors,s=i.asyncValidate,c=i.dispatch,f=i.initialized,d=i.pristine,h=i.shouldAsyncValidate,v=i.startAsyncValidation,y=i.stopAsyncValidation,m=i.syncErrors,g=i.values,b=!e;if(s){var O=b?g:p(g,e,t),w=b||!l(m,e);if(((b||"blur"!==n?!a||~a.indexOf(e.replace(/\[[0-9]+\]/g,"[]")):!o||~o.indexOf(e.replace(/\[[0-9]+\]/g,"[]")))||b)&&h({asyncErrors:u,initialized:f,trigger:b?"submit":n,blurredField:e,pristine:d,syncValidationPasses:w}))return Object(_.a)(function(){return s(O,c,r.props,e)},v,y,e)}},r.submitCompleted=function(e){return delete r.submitPromise,e},r.submitFailed=function(e){return delete r.submitPromise,e},r.listenToSubmit=function(e){return v()(e)?(r.submitPromise=e,e.then(r.submitCompleted,r.submitFailed)):e},r.submit=function(e){var t=r.props,n=t.onSubmit,i=t.blur,o=t.change,a=t.dispatch;return e&&!Object(k.a)(e)?Object(C.a)(function(){return!r.submitPromise&&r.listenToSubmit(Object(R.a)(te(e),M({},r.props,Object(O.a)({blur:i,change:o},a)),r.props.validExceptSubmit,r.asyncValidate,r.getFieldList({excludeFieldArray:!0})))}):r.submitPromise?void 0:r.innerOnSubmit&&r.innerOnSubmit!==r.submit?r.innerOnSubmit():r.listenToSubmit(Object(R.a)(te(n),M({},r.props,Object(O.a)({blur:i,change:o},a)),r.props.validExceptSubmit,r.asyncValidate,r.getFieldList({excludeFieldArray:!0})))},r.reset=function(){return r.props.reset()},a=n,o(r,a)}return a(c,n),N(c,[{key:"getChildContext",value:function(){var e=this;return{_reduxForm:M({},this.props,{getFormState:function(t){return l(e.props.getFormState(t),e.props.form)},asyncValidate:this.asyncValidate,getValues:this.getValues,sectionPrefix:void 0,register:this.register,unregister:this.unregister,registerInnerOnSubmit:function(t){return e.innerOnSubmit=t}})}}},{key:"initIfNeeded",value:function(e){var n=this.props.enableReinitialize;if(e){if((n||!e.initialized)&&!t(this.props.initialValues,e.initialValues)){var r=e.initialized&&this.props.keepDirtyOnReinitialize;this.props.initialize(e.initialValues,r,{lastInitialValues:this.props.initialValues,updateUnregisteredFields:e.updateUnregisteredFields})}}else!this.props.initialValues||this.props.initialized&&!n||this.props.initialize(this.props.initialValues,this.props.keepDirtyOnReinitialize,{updateUnregisteredFields:this.props.updateUnregisteredFields})}},{key:"updateSyncErrorsIfNeeded",value:function(e,t,n){var r=this.props,i=r.error,o=r.updateSyncErrors,a=!(n&&Object.keys(n).length||i),u=!(e&&Object.keys(e).length||t);a&&u||T.a.deepEqual(n,e)&&T.a.deepEqual(i,t)||o(e,t)}},{key:"clearSubmitPromiseIfNeeded",value:function(e){var t=this.props.submitting;this.submitPromise&&t&&!e.submitting&&delete this.submitPromise}},{key:"submitIfNeeded",value:function(e){var t=this.props,n=t.clearSubmit;!t.triggerSubmit&&e.triggerSubmit&&(n(),this.submit())}},{key:"validateIfNeeded",value:function(t){var n=this.props,r=n.shouldValidate,i=n.shouldError,o=n.validate,a=n.values,c=this.generateValidator();if(o||c){var l=void 0===t,f=Object.keys(this.getValidators()),p={values:a,nextProps:t,props:this.props,initialRender:l,lastFieldValidatorKeys:this.lastFieldValidatorKeys,fieldValidatorKeys:f,structure:e},d=r(p),h=i(p);if(d||h){var v=l||!t?this.props:t,y=Object(s.a)(o?o(v.values,v)||{}:{},c?c(v.values,v)||{}:{}),m=y._error,g=u(y,["_error"]);this.lastFieldValidatorKeys=f,this.updateSyncErrorsIfNeeded(g,m,v.syncErrors)}}}},{key:"updateSyncWarningsIfNeeded",value:function(e,t,n){var r=this.props,i=r.warning,o=r.syncWarnings,a=r.updateSyncWarnings,u=!(o&&Object.keys(o).length||i),s=!(e&&Object.keys(e).length||t);u&&s||T.a.deepEqual(n,e)&&T.a.deepEqual(i,t)||a(e,t)}},{key:"warnIfNeeded",value:function(t){var n=this.props,r=n.shouldValidate,i=n.shouldWarn,o=n.warn,a=n.values,c=this.generateWarner();if(o||c){var l=void 0===t,f=Object.keys(this.getWarners()),p={values:a,nextProps:t,props:this.props,initialRender:l,lastFieldValidatorKeys:this.lastFieldWarnerKeys,fieldValidatorKeys:f,structure:e},d=i(p);if(r(p)||d){var h=l||!t?this.props:t,v=Object(s.a)(o?o(h.values,h):{},c?c(h.values,h):{}),y=v._warning,m=u(v,["_warning"]);this.lastFieldWarnerKeys=f,this.updateSyncWarningsIfNeeded(m,y,h.syncWarnings)}}}},{key:"componentWillMount",value:function(){Object(I.a)()||(this.initIfNeeded(),this.validateIfNeeded(),this.warnIfNeeded()),d()(this.props.shouldValidate,"shouldValidate() is deprecated and will be removed in v8.0.0. Use shouldWarn() or shouldError() instead.")}},{key:"componentWillReceiveProps",value:function(e){this.initIfNeeded(e),this.validateIfNeeded(e),this.warnIfNeeded(e),this.clearSubmitPromiseIfNeeded(e),this.submitIfNeeded(e);var n=e.onChange,r=e.values,i=e.dispatch;n&&!t(r,this.props.values)&&n(r,i,e,this.props.values)}},{key:"shouldComponentUpdate",value:function(e){var n=this;if(!this.props.pure)return!0;var r=V.immutableProps,i=void 0===r?[]:r;return!!(this.props.children||e.children||Object.keys(e).some(function(r){return~i.indexOf(r)?n.props[r]!==e[r]:!~ee.indexOf(r)&&!t(n.props[r],e[r])}))}},{key:"componentDidMount",value:function(){Object(I.a)()||(this.initIfNeeded(),this.validateIfNeeded(),this.warnIfNeeded()),d()(this.props.shouldValidate,"shouldValidate() is deprecated and will be removed in v8.0.0. Use shouldWarn() or shouldError() instead.")}},{key:"componentWillUnmount",value:function(){var e=this.props,t=e.destroyOnUnmount,n=e.destroy;t&&!Object(I.a)()&&(this.destroyed=!0,n())}},{key:"render",value:function(){var e=this.props,t=e.anyTouched,n=e.array,i=e.asyncValidating,o=e.blur,a=e.change,s=e.clearSubmit,c=e.destroy,l=e.dirty,f=e.dispatch,p=e.error,d=e.form,h=e.initialize,v=e.initialized,y=e.initialValues,m=e.invalid,b=e.pristine,w=e.propNamespace,_=e.reset,E=e.submitting,x=e.submitFailed,j=e.submitSucceeded,k=e.touch,C=e.untouch,P=e.valid,R=e.warning,A=u(e,["anyTouched","array","arrayInsert","arrayMove","arrayPop","arrayPush","arrayRemove","arrayRemoveAll","arrayShift","arraySplice","arraySwap","arrayUnshift","asyncErrors","asyncValidate","asyncValidating","blur","change","clearSubmit","destroy","destroyOnUnmount","forceUnregisterOnUnmount","dirty","dispatch","enableReinitialize","error","focus","form","getFormState","initialize","initialized","initialValues","invalid","keepDirtyOnReinitialize","updateUnregisteredFields","pristine","propNamespace","registeredFields","registerField","reset","setSubmitFailed","setSubmitSucceeded","shouldAsyncValidate","shouldValidate","shouldError","shouldWarn","startAsyncValidation","startSubmit","stopAsyncValidation","stopSubmit","submitting","submitFailed","submitSucceeded","touch","touchOnBlur","touchOnChange","persistentSubmitErrors","syncErrors","syncWarnings","unregisterField","untouch","updateSyncErrors","updateSyncWarnings","valid","validExceptSubmit","values","warning"]),T=M({array:n,anyTouched:t,asyncValidate:this.asyncValidate,asyncValidating:i},Object(O.a)({blur:o,change:a},f),{clearSubmit:s,destroy:c,dirty:l,dispatch:f,error:p,form:d,handleSubmit:this.submit,initialize:h,initialized:v,initialValues:y,invalid:m,pristine:b,reset:_,submitting:E,submitFailed:x,submitSucceeded:j,touch:k,untouch:C,valid:P,warning:R}),F=M({},w?r({},w,T):T,A);return U(S)&&(F.ref="wrapped"),Object(g.createElement)(S,F)}}]),c}(g.Component);E.displayName="Form("+Object(F.a)(S)+")",E.WrappedComponent=S,E.childContextTypes={_reduxForm:m.a.object.isRequired},E.propTypes={destroyOnUnmount:m.a.bool,forceUnregisterOnUnmount:m.a.bool,form:m.a.string.isRequired,initialValues:m.a.oneOfType([m.a.array,m.a.object]),getFormState:m.a.func,onSubmitFail:m.a.func,onSubmitSuccess:m.a.func,propNamespace:m.a.string,validate:m.a.func,warn:m.a.func,touchOnBlur:m.a.bool,touchOnChange:m.a.bool,triggerSubmit:m.a.bool,persistentSubmitErrors:m.a.bool,registeredFields:m.a.any};var x=Object(b.a)(function(e,r){var i=r.form,o=r.getFormState,a=r.initialValues,u=r.enableReinitialize,s=r.keepDirtyOnReinitialize,c=l(o(e)||n,i)||n,f=l(c,"initial"),p=!!f,d=u&&p&&!t(a,f),h=d&&!s,v=a||f||n;d&&(v=f||n);var y=l(c,"values")||v;h&&(y=v);var m=h||t(v,y),g=l(c,"asyncErrors"),b=l(c,"syncErrors")||{},O=l(c,"syncWarnings")||{},_=l(c,"registeredFields"),S=w(i,o,!1)(e),E=w(i,o,!0)(e),x=!!l(c,"anyTouched"),j=!!l(c,"submitting"),k=!!l(c,"submitFailed"),C=!!l(c,"submitSucceeded"),P=l(c,"error"),R=l(c,"warning"),A=l(c,"triggerSubmit");return{anyTouched:x,asyncErrors:g,asyncValidating:l(c,"asyncValidating")||!1,dirty:!m,error:P,initialized:p,invalid:!S,pristine:m,registeredFields:_,submitting:j,submitFailed:k,submitSucceeded:C,syncErrors:b,syncWarnings:O,triggerSubmit:A,values:y,valid:S,validExceptSubmit:E,warning:R}},function(e,t){var n=function(e){return e.bind(null,t.form)},r=Object(c.a)(Z,n),i=Object(c.a)(X,n),o=function(e,n){return K(t.form,e,n,!!t.touchOnBlur)},a=function(e,n){return J(t.form,e,n,!!t.touchOnChange,!!t.persistentSubmitErrors)},u=n(Q),s=Object(O.a)(r,e),l={insert:Object(O.a)(i.arrayInsert,e),move:Object(O.a)(i.arrayMove,e),pop:Object(O.a)(i.arrayPop,e),push:Object(O.a)(i.arrayPush,e),remove:Object(O.a)(i.arrayRemove,e),removeAll:Object(O.a)(i.arrayRemoveAll,e),shift:Object(O.a)(i.arrayShift,e),splice:Object(O.a)(i.arraySplice,e),swap:Object(O.a)(i.arraySwap,e),unshift:Object(O.a)(i.arrayUnshift,e)},f=M({},s,i,{blur:o,change:a,array:l,focus:u,dispatch:e});return function(){return f}},void 0,{withRef:!0}),j=f()(x(E),S);j.defaultProps=V;var A=function(e){function t(){return i(this,t),o(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}return a(t,e),N(t,[{key:"submit",value:function(){return this.ref&&this.ref.getWrappedInstance().submit()}},{key:"reset",value:function(){this.ref&&this.ref.getWrappedInstance().reset()}},{key:"render",value:function(){var e=this,t=this.props,n=t.initialValues,r=u(t,["initialValues"]);return Object(g.createElement)(j,M({},r,{ref:function(t){return e.ref=t},initialValues:y(n)}))}},{key:"valid",get:function(){return!(!this.ref||!this.ref.getWrappedInstance().isValid())}},{key:"invalid",get:function(){return!this.valid}},{key:"pristine",get:function(){return!(!this.ref||!this.ref.getWrappedInstance().isPristine())}},{key:"dirty",get:function(){return!this.pristine}},{key:"values",get:function(){return this.ref?this.ref.getWrappedInstance().getValues():n}},{key:"fieldList",get:function(){return this.ref?this.ref.getWrappedInstance().getFieldList():[]}},{key:"wrappedInstance",get:function(){return this.ref&&this.ref.getWrappedInstance().refs.wrapped}}]),t}(g.Component);return f()(A,S)}}}},function(e,t,n){"use strict";var r=n(279),i=n(292);t.a=Object(i.a)(function(e,t,n){Object(r.a)(e,t,n)})},function(e,t,n){"use strict";function r(e,t,n,l,f){e!==t&&Object(a.a)(t,function(a,c){if(Object(s.a)(a))f||(f=new i.a),Object(u.a)(e,t,c,n,r,l,f);else{var p=l?l(e[c],a,c+"",e,t,f):void 0;void 0===p&&(p=a),Object(o.a)(e,c,p)}},c.a)}var i=n(35),o=n(92),a=n(86),u=n(280),s=n(5),c=n(93);t.a=r},function(e,t,n){"use strict";function r(e,t,n,r,g,b,O){var w=e[n],_=t[n],S=O.get(_);if(S)return void Object(i.a)(e,n,S);var E=b?b(w,_,n+"",e,t,O):void 0,x=void 0===E;if(x){var j=Object(l.a)(_),k=!j&&Object(p.a)(_),C=!j&&!k&&Object(y.a)(_);E=_,j||k||C?Object(l.a)(w)?E=w:Object(f.a)(w)?E=Object(u.a)(w):k?(x=!1,E=Object(o.a)(_,!0)):C?(x=!1,E=Object(a.a)(_,!0)):E=[]:Object(v.a)(_)||Object(c.a)(_)?(E=w,Object(c.a)(w)?E=Object(m.a)(w):(!Object(h.a)(w)||r&&Object(d.a)(w))&&(E=Object(s.a)(_))):x=!1}x&&(O.set(_,E),g(E,_,r,b,O),O.delete(_)),Object(i.a)(e,n,E)}var i=n(92),o=n(281),a=n(282),u=n(75),s=n(284),c=n(37),l=n(4),f=n(286),p=n(38),d=n(32),h=n(5),v=n(16),y=n(40),m=n(287);t.a=r},function(e,n,r){"use strict";(function(e){function i(e,t){if(t)return e.slice();var n=e.length,r=l?l(n):new e.constructor(n);return e.copy(r),r}var o=r(3),a="object"==typeof t&&t&&!t.nodeType&&t,u=a&&"object"==typeof e&&e&&!e.nodeType&&e,s=u&&u.exports===a,c=s?o.a.Buffer:void 0,l=c?c.allocUnsafe:void 0;n.a=i}).call(n,r(11)(e))},function(e,t,n){"use strict";function r(e,t){return new e.constructor(t?Object(i.a)(e.buffer):e.buffer,e.byteOffset,e.length)}var i=n(283);t.a=r},function(e,t,n){"use strict";function r(e){var t=new e.constructor(e.byteLength);return new i.a(t).set(new i.a(e)),t}var i=n(81);t.a=r},function(e,t,n){"use strict";function r(e){return"function"!=typeof e.constructor||Object(a.a)(e)?{}:Object(i.a)(Object(o.a)(e))}var i=n(285),o=n(64),a=n(42);t.a=r},function(e,t,n){"use strict";var r=n(5),i=Object.create;t.a=function(){function e(){}return function(t){if(!Object(r.a)(t))return{};if(i)return i(t);e.prototype=t;var n=new e;return e.prototype=void 0,n}}()},function(e,t,n){"use strict";function r(e){return Object(o.a)(e)&&Object(i.a)(e)}var i=n(24),o=n(6);t.a=r},function(e,t,n){"use strict";function r(e){return Object(i.a)(e,Object(o.a)(e))}var i=n(288),o=n(93);t.a=r},function(e,t,n){"use strict";function r(e,t,n,r){var a=!n;n||(n={});for(var u=-1,s=t.length;++u<s;){var c=t[u],l=r?r(n[c],e[c],c,n,e):void 0;void 0===l&&(l=e[c]),a?Object(o.a)(n,c,l):Object(i.a)(n,c,l)}return n}var i=n(289),o=n(25);t.a=r},function(e,t,n){"use strict";function r(e,t,n){var r=e[t];u.call(e,t)&&Object(o.a)(r,n)&&(void 0!==n||t in e)||Object(i.a)(e,t,n)}var i=n(25),o=n(13),a=Object.prototype,u=a.hasOwnProperty;t.a=r},function(e,t,n){"use strict";function r(e){if(!Object(i.a)(e))return Object(a.a)(e);var t=Object(o.a)(e),n=[];for(var r in e)("constructor"!=r||!t&&s.call(e,r))&&n.push(r);return n}var i=n(5),o=n(42),a=n(291),u=Object.prototype,s=u.hasOwnProperty;t.a=r},function(e,t,n){"use strict";function r(e){var t=[];if(null!=e)for(var n in Object(e))t.push(n);return t}t.a=r},function(e,t,n){"use strict";function r(e){return Object(i.a)(function(t,n){var r=-1,i=n.length,a=i>1?n[i-1]:void 0,u=i>2?n[2]:void 0;for(a=e.length>3&&"function"==typeof a?(i--,a):void 0,u&&Object(o.a)(n[0],n[1],u)&&(a=3>i?void 0:a,i=1),t=Object(t);++r<i;){var s=n[r];s&&e(t,s,r,a)}return t})}var i=n(293),o=n(300);t.a=r},function(e,t,n){"use strict";function r(e,t){return Object(a.a)(Object(o.a)(e,t,i.a),e+"")}var i=n(44),o=n(294),a=n(296);t.a=r},function(e,t,n){"use strict";function r(e,t,n){return t=o(void 0===t?e.length-1:t,0),function(){for(var r=arguments,a=-1,u=o(r.length-t,0),s=Array(u);++a<u;)s[a]=r[t+a];a=-1;for(var c=Array(t+1);++a<t;)c[a]=r[a];return c[t]=n(s),Object(i.a)(e,this,c)}}var i=n(295),o=Math.max;t.a=r},function(e,t,n){"use strict";function r(e,t,n){switch(n.length){case 0:return e.call(t);case 1:return e.call(t,n[0]);case 2:return e.call(t,n[0],n[1]);case 3:return e.call(t,n[0],n[1],n[2])}return e.apply(t,n)}t.a=r},function(e,t,n){"use strict";var r=n(297),i=n(299);t.a=Object(i.a)(r.a)},function(e,t,n){"use strict";var r=n(298),i=n(85),o=n(44);t.a=i.a?function(e,t){return Object(i.a)(e,"toString",{configurable:!0,enumerable:!1,value:Object(r.a)(t),writable:!0})}:o.a},function(e,t,n){"use strict";function r(e){return function(){return e}}t.a=r},function(e,t,n){"use strict";function r(e){var t=0,n=0;return function(){var r=a(),u=o-(r-n);if(n=r,u>0){if(++t>=i)return arguments[0]}else t=0;return e.apply(void 0,arguments)}}var i=800,o=16,a=Date.now;t.a=r},function(e,t,n){"use strict";function r(e,t,n){if(!Object(u.a)(n))return!1;var r=typeof t;return!!("number"==r?Object(o.a)(n)&&Object(a.a)(t,n.length):"string"==r&&t in n)&&Object(i.a)(n[t],e)}var i=n(13),o=n(24),a=n(39),u=n(5);t.a=r},function(e,t,n){"use strict";var r=n(46),i=n.n(r);t.a=function(e,t,n,r){t(r);var o=e();if(!i()(o))throw Error("asyncValidate function passed to reduxForm must return a promise");var a=function(e){return function(t){if(t&&Object.keys(t).length)return n(t),t;if(e)throw n(),Error("Asynchronous validation promise was rejected without errors.");return n(),Promise.resolve()}};return o.then(a(!1),a(!0))}},function(e,t,n){"use strict";var r=n(94);t.a=function(e){return function(t){for(var n=arguments.length,i=Array(n>1?n-1:0),o=1;n>o;o++)i[o-1]=arguments[o];return Object(r.a)(t)?e.apply(void 0,i):e.apply(void 0,[t].concat(i))}}},function(e,t,n){"use strict";var r=n(0),i=function(e){return Array.isArray(e)?e:[e]},o=function(e,t,n,r,o){for(var a=i(r),u=0;a.length>u;u++){var s=a[u](e,t,n,o);if(s)return s}};t.a=function(e,t){var n=t.getIn;return function(t,i){var a={};return Object.keys(e).forEach(function(u){var s=n(t,u),c=o(s,t,i,e[u],u);c&&(a=r.a.setIn(a,u,c))}),a}}},function(e,t,n){"use strict";function r(e){if(Array.isArray(e)){for(var t=0,n=Array(e.length);e.length>t;t++)n[t]=e[t];return n}return Array.from(e)}var i=n(46),o=n.n(i),a=n(58),u=Object.assign||function(e){for(var t=1;arguments.length>t;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e};t.a=function(e,t,n,i,s){var c=t.dispatch,l=t.onSubmitFail,f=t.onSubmitSuccess,p=t.startSubmit,d=t.stopSubmit,h=t.setSubmitFailed,v=t.setSubmitSucceeded,y=t.syncErrors,m=t.asyncErrors,g=t.touch,b=t.values,O=t.persistentSubmitErrors;if(g.apply(void 0,r(s)),n||O){var w=function(){var n=void 0;try{n=e(b,c,t)}catch(e){var i=e instanceof a.a?e.errors:void 0;if(d(i),h.apply(void 0,r(s)),l&&l(i,c,e,t),i||l)return i;throw e}return o()(n)?(p(),n.then(function(e){return d(),v(),f&&f(e,c,t),e},function(e){var n=e instanceof a.a?e.errors:void 0;if(d(n),h.apply(void 0,r(s)),l&&l(n,c,e,t),n||l)return n;throw e})):(v(),f&&f(n,c,t),n)},_=i&&i();return _?_.then(function(e){if(e)throw e;return w()}).catch(function(e){return h.apply(void 0,r(s)),l&&l(e,c,null,t),Promise.reject(e)}):w()}h.apply(void 0,r(s));var S=u({},m,y);return l&&l(S,c,null,t),S}},function(e,t,n){"use strict";t.a=function(e){return e.displayName||e.name||"Component"}},function(e,t,n){"use strict";(function(e){t.a=function(){return!(void 0===e||!e.hot||"function"!=typeof e.hot.status||"apply"!==e.hot.status())}}).call(t,n(11)(e))},function(e,t,n){"use strict";var r=n(308),i=n(0);t.a=Object(r.a)(i.a)},function(e,t,n){"use strict";function r(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function i(e,t){var n={};for(var r in e)0>t.indexOf(r)&&Object.prototype.hasOwnProperty.call(e,r)&&(n[r]=e[r]);return n}function o(e){function t(e){return e.plugin=function(e){var n=this;return t(function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:l,r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{type:"NONE"},i=function(n,i){var o=p(n,i),a=e[i](o,r,p(t,i));return a!==o?d(n,i,a):n},o=n(t,r),a=r&&r.meta&&r.meta.form;return a?e[a]?i(o,a):o:Object.keys(e).reduce(i,o)})},e}var n,o=e.deepEqual,l=e.empty,f=e.forEach,p=e.getIn,d=e.setIn,h=e.deleteIn,v=e.fromJS,y=e.keys,m=e.size,g=e.some,b=e.splice,O=Object(u.a)(e),w=Object(u.a)(s.a),_=function(e,t,n,r,i,o,a){var u=p(e,t+"."+n);return u||a?d(e,t+"."+n,b(u,r,i,o)):e},S=function(e,t,n,r,i,o,a){var u=p(e,t),c=s.a.getIn(u,n);return c||a?d(e,t,s.a.setIn(u,n,s.a.splice(c,r,i,o))):e},E=["values","fields","submitErrors","asyncErrors"],x=function(e,t,n,r,i){var o=e,a=null!=i?l:void 0;return o=_(o,"values",t,n,r,i,!0),o=_(o,"fields",t,n,r,a),o=S(o,"syncErrors",t,n,r,void 0),o=S(o,"syncWarnings",t,n,r,void 0),o=_(o,"submitErrors",t,n,r,void 0),o=_(o,"asyncErrors",t,n,r,void 0)},j=(n={},r(n,a.ARRAY_INSERT,function(e,t){var n=t.meta;return x(e,n.field,n.index,0,t.payload)}),r(n,a.ARRAY_MOVE,function(e,t){var n=t.meta,r=n.field,i=n.from,o=n.to,a=p(e,"values."+r),u=a?m(a):0,s=e;return u&&E.forEach(function(e){var t=e+"."+r;if(p(s,t)){var n=p(s,t+"["+i+"]");s=d(s,t,b(p(s,t),i,1)),s=d(s,t,b(p(s,t),o,0,n))}}),s}),r(n,a.ARRAY_POP,function(e,t){var n=t.meta.field,r=p(e,"values."+n),i=r?m(r):0;return i?x(e,n,i-1,1):e}),r(n,a.ARRAY_PUSH,function(e,t){var n=t.meta.field,r=t.payload,i=p(e,"values."+n),o=i?m(i):0;return x(e,n,o,0,r)}),r(n,a.ARRAY_REMOVE,function(e,t){var n=t.meta;return x(e,n.field,n.index,1)}),r(n,a.ARRAY_REMOVE_ALL,function(e,t){var n=t.meta.field,r=p(e,"values."+n),i=r?m(r):0;return i?x(e,n,0,i):e}),r(n,a.ARRAY_SHIFT,function(e,t){return x(e,t.meta.field,0,1)}),r(n,a.ARRAY_SPLICE,function(e,t){var n=t.meta;return x(e,n.field,n.index,n.removeNum,t.payload)}),r(n,a.ARRAY_SWAP,function(e,t){var n=t.meta,r=n.field,i=n.indexA,o=n.indexB,a=e;return E.forEach(function(e){var t=p(a,e+"."+r+"["+i+"]"),n=p(a,e+"."+r+"["+o+"]");void 0===t&&void 0===n||(a=d(a,e+"."+r+"["+i+"]",n),a=d(a,e+"."+r+"["+o+"]",t))}),a}),r(n,a.ARRAY_UNSHIFT,function(e,t){return x(e,t.meta.field,0,0,t.payload)}),r(n,a.AUTOFILL,function(e,t){var n=t.meta.field,r=t.payload,i=e;return i=O(i,"asyncErrors."+n),i=O(i,"submitErrors."+n),i=d(i,"fields."+n+".autofilled",!0),i=d(i,"values."+n,r)}),r(n,a.BLUR,function(e,t){var n=t.meta,r=n.field,i=n.touch,o=t.payload,a=e;return void 0===p(a,"initial."+r)&&""===o?a=O(a,"values."+r):void 0!==o&&(a=d(a,"values."+r,o)),r===p(a,"active")&&(a=h(a,"active")),a=h(a,"fields."+r+".active"),i&&(a=d(a,"fields."+r+".touched",!0),a=d(a,"anyTouched",!0)),a}),r(n,a.CHANGE,function(e,t){var n=t.meta,r=n.field,i=n.touch,o=n.persistentSubmitErrors,a=t.payload,u=e;return void 0===p(u,"initial."+r)&&""===a?u=O(u,"values."+r):void 0!==a&&(u=d(u,"values."+r,a)),u=O(u,"asyncErrors."+r),o||(u=O(u,"submitErrors."+r)),u=O(u,"fields."+r+".autofilled"),i&&(u=d(u,"fields."+r+".touched",!0),u=d(u,"anyTouched",!0)),u}),r(n,a.CLEAR_SUBMIT,function(e){return h(e,"triggerSubmit")}),r(n,a.CLEAR_SUBMIT_ERRORS,function(e){var t=e;return t=O(t,"submitErrors"),t=h(t,"error")}),r(n,a.CLEAR_ASYNC_ERROR,function(e,t){return h(e,"asyncErrors."+t.meta.field)}),r(n,a.CLEAR_FIELDS,function(e,t){var n=t.meta,r=n.keepTouched,i=n.persistentSubmitErrors,o=n.fields,a=e;o.forEach(function(e){a=O(a,"values."+e),a=O(a,"asyncErrors."+e),i||(a=O(a,"submitErrors."+e)),a=O(a,"fields."+e+".autofilled"),r||(a=h(a,"fields."+e+".touched"))});var u=g(y(p(a,"registeredFields")),function(e){return p(a,"fields."+e+".touched")});return a=u?d(a,"anyTouched",!0):h(a,"anyTouched")}),r(n,a.FOCUS,function(e,t){var n=t.meta.field,r=e,i=p(e,"active");return r=h(r,"fields."+i+".active"),r=d(r,"fields."+n+".visited",!0),r=d(r,"fields."+n+".active",!0),r=d(r,"active",n)}),r(n,a.INITIALIZE,function(e,t){var n=t.payload,r=t.meta,i=r.keepDirty,a=r.keepSubmitSucceeded,u=r.updateUnregisteredFields,s=v(n),c=l,h=p(e,"warning");h&&(c=d(c,"warning",h));var m=p(e,"syncWarnings");m&&(c=d(c,"syncWarnings",m));var g=p(e,"error");g&&(c=d(c,"error",g));var b=p(e,"syncErrors");b&&(c=d(c,"syncErrors",b));var O=p(e,"registeredFields");O&&(c=d(c,"registeredFields",O));var w=p(e,"values"),_=p(e,"initial"),S=s,E=w;if(i&&O){if(!o(S,_)){var x=function(e){var t=p(_,e),n=p(w,e);if(o(n,t)){var r=p(S,e);p(E,e)!==r&&(E=d(E,e,r))}};u||f(y(O),function(e){return x(e)}),f(y(S),function(e){if(void 0===p(_,e)){var t=p(S,e);E=d(E,e,t)}u&&x(e)})}}else E=S;return a&&p(e,"submitSucceeded")&&(c=d(c,"submitSucceeded",!0)),c=d(c,"values",E),c=d(c,"initial",S)}),r(n,a.REGISTER_FIELD,function(e,t){var n=t.payload,r=n.name,i=n.type,o="registeredFields['"+r+"']",a=p(e,o);if(a){var u=p(a,"count")+1;a=d(a,"count",u)}else a=v({name:r,type:i,count:1});return d(e,o,a)}),r(n,a.RESET,function(e){var t=l,n=p(e,"registeredFields");n&&(t=d(t,"registeredFields",n));var r=p(e,"initial");return r&&(t=d(t,"values",r),t=d(t,"initial",r)),t}),r(n,a.SUBMIT,function(e){return d(e,"triggerSubmit",!0)}),r(n,a.START_ASYNC_VALIDATION,function(e,t){return d(e,"asyncValidating",t.meta.field||!0)}),r(n,a.START_SUBMIT,function(e){return d(e,"submitting",!0)}),r(n,a.STOP_ASYNC_VALIDATION,function(e,t){var n=t.payload,r=e;if(r=h(r,"asyncValidating"),n&&Object.keys(n).length){var o=n._error,a=i(n,["_error"]);o&&(r=d(r,"error",o)),Object.keys(a).length&&(r=d(r,"asyncErrors",v(a)))}else r=h(r,"error");return r}),r(n,a.STOP_SUBMIT,function(e,t){var n=t.payload,r=e;if(r=h(r,"submitting"),r=h(r,"submitFailed"),r=h(r,"submitSucceeded"),n&&Object.keys(n).length){var o=n._error,a=i(n,["_error"]);r=o?d(r,"error",o):h(r,"error"),r=Object.keys(a).length?d(r,"submitErrors",v(a)):h(r,"submitErrors"),r=d(r,"submitFailed",!0)}else r=d(r,"submitSucceeded",!0),r=h(r,"error"),r=h(r,"submitErrors");return r}),r(n,a.SET_SUBMIT_FAILED,function(e,t){var n=t.meta.fields,r=e;return r=d(r,"submitFailed",!0),r=h(r,"submitSucceeded"),r=h(r,"submitting"),n.forEach(function(e){return r=d(r,"fields."+e+".touched",!0)}),n.length&&(r=d(r,"anyTouched",!0)),r}),r(n,a.SET_SUBMIT_SUCCEEDED,function(e){var t=e;return t=h(t,"submitFailed"),t=d(t,"submitSucceeded",!0)}),r(n,a.TOUCH,function(e,t){var n=t.meta.fields,r=e;return n.forEach(function(e){return r=d(r,"fields."+e+".touched",!0)}),r=d(r,"anyTouched",!0)}),r(n,a.UNREGISTER_FIELD,function(e,t){var n=t.payload,r=n.name,i=n.destroyOnUnmount,a=e,u="registeredFields['"+r+"']",c=p(a,u);if(!c)return a;var f=p(c,"count")-1;if(0>=f&&i){a=h(a,u),o(p(a,"registeredFields"),l)&&(a=h(a,"registeredFields"));var v=p(a,"syncErrors");v&&(v=w(v,r),a=s.a.deepEqual(v,s.a.empty)?h(a,"syncErrors"):d(a,"syncErrors",v));var y=p(a,"syncWarnings");y&&(y=w(y,r),a=s.a.deepEqual(y,s.a.empty)?h(a,"syncWarnings"):d(a,"syncWarnings",y)),a=O(a,"submitErrors."+r),a=O(a,"asyncErrors."+r)}else c=d(c,"count",f),a=d(a,u,c);return a}),r(n,a.UNTOUCH,function(e,t){var n=t.meta.fields,r=e;n.forEach(function(e){return r=h(r,"fields."+e+".touched")});var i=g(y(p(r,"registeredFields")),function(e){return p(r,"fields."+e+".touched")});return r=i?d(r,"anyTouched",!0):h(r,"anyTouched")}),r(n,a.UPDATE_SYNC_ERRORS,function(e,t){var n=t.payload,r=n.syncErrors,i=n.error,o=e;return i?(o=d(o,"error",i),o=d(o,"syncError",!0)):(o=h(o,"error"),o=h(o,"syncError")),o=Object.keys(r).length?d(o,"syncErrors",r):h(o,"syncErrors")}),r(n,a.UPDATE_SYNC_WARNINGS,function(e,t){var n=t.payload,r=n.syncWarnings,i=n.warning,o=e;return o=i?d(o,"warning",i):h(o,"warning"),o=Object.keys(r).length?d(o,"syncWarnings",r):h(o,"syncWarnings")}),n),k=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:l,t=arguments[1],n=j[t.type];return n?n(e,t):e};return t(function(e){return function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:l,n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{type:"NONE"},r=n&&n.meta&&n.meta.form;if(!r||!c(n))return t;if(n.type===a.DESTROY&&n.meta&&n.meta.form)return n.meta.form.reduce(function(e,t){return O(e,t)},t);var i=p(t,r),o=e(i,n);return o===i?t:d(t,r,o)}}(k))}var a=n(28),u=n(309),s=n(0),c=function(e){return e&&e.type&&e.type.length>a.prefix.length&&e.type.substring(0,a.prefix.length)===a.prefix};t.a=o},function(e,t,n){"use strict";function r(e){var t=e.deepEqual,n=e.empty,r=e.getIn,o=e.deleteIn,a=e.setIn;return function e(u,s){if("]"===s[s.length-1]){var c=Object(i.a)(s);return c.pop(),r(u,c.join("."))?a(u,s):u}var l=u;void 0!==r(u,s)&&(l=o(u,s));var f=s.lastIndexOf(".");if(f>0){var p=s.substring(0,f);if("]"!==p[p.length-1]){var d=r(l,p);if(t(d,n))return e(l,p)}}return l}}var i=n(18);t.a=r},function(e,t,n){"use strict";var r=n(311),i=n(0);t.a=Object(r.a)(i.a)},function(e,t,n){"use strict";function r(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var i=n(9),o=Object.assign||function(e){for(var t=1;arguments.length>t;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e};t.a=function(e){var t=e.getIn;return function(e){var n=o({prop:"values",getFormState:function(e){return t(e,"form")}},e),a=n.form,u=n.prop,s=n.getFormState;return Object(i.a)(function(e){return r({},u,t(s(e),a+".values"))})}}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=n(1),i=function(e){return e&&e.__esModule?e:{default:e}}(r),o=function(e){var t=e.dark,n=e.width,r=e.height;return i.default.createElement("div",null,i.default.createElement("div",{id:"code-sponsor-widget",style:{backgroundColor:"#2d2d2d",width:n,height:r,marginLeft:"auto",marginRight:"auto"}}),i.default.createElement("script",{type:"text/javascript",src:"https://app.codesponsor.io/scripts/O6JC6ZWFGnkPaSiGV6rGzA?theme="+(t?"dark":"light")+"&width="+n+"&height="+r}))};o.defaultProps={width:250,height:250},t.default=o}])})},function(e,t,n){"use strict";function r(e,t){var n={};for(var r in e)t.indexOf(r)>=0||Object.prototype.hasOwnProperty.call(e,r)&&(n[r]=e[r]);return n}function i(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function o(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function a(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}var u=n(11),s=(n.n(u),n(17)),c=n.n(s),l=n(50),f=n(199),p=n(205),d=n(610),h=n(3),v=n(208),y=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},m=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),g="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},b=["_reduxForm"],O=function(e){return e&&"object"===(void 0===e?"undefined":g(e))},w=function(e){return e&&"function"==typeof e},_=function(e){O(e)&&w(e.preventDefault)&&e.preventDefault()},S=function(e,t){if(O(e)&&O(e.dataTransfer)&&w(e.dataTransfer.getData))return e.dataTransfer.getData(t)},E=function(e,t,n){O(e)&&O(e.dataTransfer)&&w(e.dataTransfer.setData)&&e.dataTransfer.setData(t,n)},x=function(e){var t=e.deepEqual,s=e.getIn,g=function(e,t){var n=h.a.getIn(e,t);return n&&n._error?n._error:n},O=function(e,t){var n=s(e,t);return n&&n._warning?n._warning:n},w=function(s){function c(){var e,t,r,a;i(this,c);for(var u=arguments.length,s=Array(u),l=0;l<u;l++)s[l]=arguments[l];return t=r=o(this,(e=c.__proto__||Object.getPrototypeOf(c)).call.apply(e,[this].concat(s))),r.saveRef=function(e){return r.ref=e},r.isPristine=function(){return r.props.pristine},r.getValue=function(){return r.props.value},r.handleChange=function(e){var t=r.props,i=t.name,o=t.dispatch,a=t.parse,u=t.normalize,s=t.onChange,c=t._reduxForm,l=t.value,f=n.i(p.a)(e,{name:i,parse:a,normalize:u}),d=!1;s&&(v.a?s(e,f,l):s(y({},e,{preventDefault:function(){return d=!0,_(e)}}),f,l)),d||(o(c.change(i,f)),c.asyncValidate&&c.asyncValidate(i,f,"change"))},r.handleFocus=function(e){var t=r.props,n=t.name,i=t.dispatch,o=t.onFocus,a=t._reduxForm,u=!1;o&&o(v.a?e:y({},e,{preventDefault:function(){return u=!0,_(e)}})),u||i(a.focus(n))},r.handleBlur=function(e){var t=r.props,i=t.name,o=t.dispatch,a=t.parse,u=t.normalize,s=t.onBlur,c=t._reduxForm,l=t._value,f=t.value,d=n.i(p.a)(e,{name:i,parse:a,normalize:u});d===l&&void 0!==l&&(d=f);var h=!1;s&&(v.a?s(e,d,f):s(y({},e,{preventDefault:function(){return h=!0,_(e)}}),d,f)),h||(o(c.blur(i,d)),c.asyncValidate&&c.asyncValidate(i,d,"blur"))},r.handleDragStart=function(e){var t=r.props,n=t.onDragStart,i=t.value;E(e,d.a,null==i?"":i),n&&n(e)},r.handleDrop=function(e){var t=r.props,n=t.name,i=t.dispatch,o=t.onDrop,a=t._reduxForm,u=t.value,s=S(e,d.a),c=!1;o&&o(y({},e,{preventDefault:function(){return c=!0,_(e)}}),s,u),c||(i(a.change(n,s)),_(e))},a=t,o(r,a)}return a(c,s),m(c,[{key:"shouldComponentUpdate",value:function(e){var n=this,r=Object.keys(e),i=Object.keys(this.props);return!!(this.props.children||e.children||r.length!==i.length||r.some(function(r){return!~b.indexOf(r)&&!t(n.props[r],e[r])}))}},{key:"getRenderedComponent",value:function(){return this.ref}},{key:"render",value:function(){var t=this.props,i=t.component,o=t.withRef,a=t.name,s=t._reduxForm,c=(t.normalize,t.onBlur,t.onChange,t.onFocus,t.onDragStart,t.onDrop,r(t,["component","withRef","name","_reduxForm","normalize","onBlur","onChange","onFocus","onDragStart","onDrop"])),l=n.i(f.a)(e,a,y({},c,{form:s.form,onBlur:this.handleBlur,onChange:this.handleChange,onDrop:this.handleDrop,onDragStart:this.handleDragStart,onFocus:this.handleFocus})),p=l.custom,d=r(l,["custom"]);if(o&&(p.ref=this.saveRef),"string"==typeof i){var h=d.input;d.meta;return n.i(u.createElement)(i,y({},h,p))}return n.i(u.createElement)(i,y({},d,p))}}]),c}(u.Component);return w.propTypes={component:c.a.oneOfType([c.a.func,c.a.string]).isRequired,props:c.a.object},n.i(l.connect)(function(e,n){var r=n.name,i=n._reduxForm,o=i.initialValues,a=i.getFormState,u=a(e),c=s(u,"initial."+r),l=void 0!==c?c:o&&s(o,r),f=s(u,"values."+r),p=s(u,"submitting"),d=g(s(u,"syncErrors"),r),h=O(s(u,"syncWarnings"),r),v=t(f,l);return{asyncError:s(u,"asyncErrors."+r),asyncValidating:s(u,"asyncValidating")===r,dirty:!v,pristine:v,state:s(u,"fields."+r),submitError:s(u,"submitErrors."+r),submitFailed:s(u,"submitFailed"),submitting:p,syncError:d,syncWarning:h,initial:l,value:f,_value:n.value}},void 0,void 0,{withRef:!0})(w)};t.a=x},function(e,t,n){"use strict";function r(e,t){var n={};for(var r in e)t.indexOf(r)>=0||Object.prototype.hasOwnProperty.call(e,r)&&(n[r]=e[r]);return n}function i(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function o(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function a(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}var u=n(190),s=n(11),c=(n.n(s),n(17)),l=n.n(c),f=n(50),p=n(88),d=n(556),h=n(3),v=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),y=["_reduxForm","value"],m=function(e){var t=e.deepEqual,c=e.getIn,m=e.size,g=function(e,t){return h.a.getIn(e,t+"._error")},b=function(e,t){return c(e,t+"._warning")},O=function(u){function l(){var e,t,n,r;i(this,l);for(var a=arguments.length,u=Array(a),s=0;s<a;s++)u[s]=arguments[s];return t=n=o(this,(e=l.__proto__||Object.getPrototypeOf(l)).call.apply(e,[this].concat(u))),n.saveRef=function(e){n.ref=e},n.getValue=function(e){return n.props.value&&c(n.props.value,String(e))},r=t,o(n,r)}return a(l,u),v(l,[{key:"shouldComponentUpdate",value:function(e){var n=this,r=this.props.value,i=e.value;if(r&&i){var o=i.every(function(e){return~r.indexOf(e)}),a=i.some(function(e,t){return e!==r[t]});if(r.length!==i.length||o&&a||e.rerenderOnEveryChange&&r.some(function(e,n){return!t(e,i[n])}))return!0}var u=Object.keys(e),s=Object.keys(this.props);return!!(this.props.children||e.children||u.length!==s.length||u.some(function(r){return!~y.indexOf(r)&&!t(n.props[r],e[r])}))}},{key:"getRenderedComponent",value:function(){return this.ref}},{key:"render",value:function(){var t=this.props,i=t.component,o=t.withRef,a=t.name,u=t._reduxForm,c=(t.validate,t.warn,t.rerenderOnEveryChange,r(t,["component","withRef","name","_reduxForm","validate","warn","rerenderOnEveryChange"])),l=n.i(d.a)(e,a,u.form,u.sectionPrefix,this.getValue,c);return o&&(l.ref=this.saveRef),n.i(s.createElement)(i,l)}},{key:"dirty",get:function(){return this.props.dirty}},{key:"pristine",get:function(){return this.props.pristine}},{key:"value",get:function(){return this.props.value}}]),l}(s.Component);return O.propTypes={component:l.a.oneOfType([l.a.func,l.a.string]).isRequired,props:l.a.object,rerenderOnEveryChange:l.a.bool},O.defaultProps={rerenderOnEveryChange:!1},O.contextTypes={_reduxForm:l.a.object},n.i(f.connect)(function(e,n){var r=n.name,i=n._reduxForm,o=i.initialValues,a=i.getFormState,u=a(e),s=c(u,"initial."+r)||o&&c(o,r),l=c(u,"values."+r),f=c(u,"submitting"),p=g(c(u,"syncErrors"),r),d=b(c(u,"syncWarnings"),r),h=t(l,s);return{asyncError:c(u,"asyncErrors."+r+"._error"),dirty:!h,pristine:h,state:c(u,"fields."+r),submitError:c(u,"submitErrors."+r+"._error"),submitFailed:c(u,"submitFailed"),submitting:f,syncError:p,syncWarning:d,value:l,length:m(l)}},function(e,t){var r=t.name,i=t._reduxForm,o=i.arrayInsert,a=i.arrayMove,s=i.arrayPop,c=i.arrayPush,l=i.arrayRemove,f=i.arrayRemoveAll,d=i.arrayShift,h=i.arraySplice,v=i.arraySwap,y=i.arrayUnshift;return n.i(u.a)({arrayInsert:o,arrayMove:a,arrayPop:s,arrayPush:c,arrayRemove:l,arrayRemoveAll:f,arrayShift:d,arraySplice:h,arraySwap:v,arrayUnshift:y},function(t){return n.i(p.bindActionCreators)(t.bind(null,r),e)})},void 0,{withRef:!0})(O)};t.a=m},function(e,t,n){"use strict";function r(e,t){var n={};for(var r in e)t.indexOf(r)>=0||Object.prototype.hasOwnProperty.call(e,r)&&(n[r]=e[r]);return n}function i(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function o(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function a(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}var u=n(11),s=(n.n(u),n(17)),c=n.n(s),l=n(50),f=n(199),p=n(3),d=n(205),h=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},v=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),y=["_reduxForm"],m=function(e){var t=e.deepEqual,s=e.getIn,m=e.size,g=function(e,t){return p.a.getIn(e,t+"._error")||p.a.getIn(e,t)},b=function(e,t){var n=s(e,t);return n&&n._warning?n._warning:n},O=function(s){function c(e){i(this,c);var t=o(this,(c.__proto__||Object.getPrototypeOf(c)).call(this,e));return t.onChangeFns={},t.onFocusFns={},t.onBlurFns={},t.prepareEventHandlers=function(e){return e.names.forEach(function(e){t.onChangeFns[e]=function(n){return t.handleChange(e,n)},t.onFocusFns[e]=function(){return t.handleFocus(e)},t.onBlurFns[e]=function(n){return t.handleBlur(e,n)}})},t.handleChange=function(e,r){var i=t.props,o=i.dispatch,a=i.parse,u=i._reduxForm,s=n.i(d.a)(r,{name:e,parse:a});o(u.change(e,s)),u.asyncValidate&&u.asyncValidate(e,s,"change")},t.handleFocus=function(e){var n=t.props;(0,n.dispatch)(n._reduxForm.focus(e))},t.handleBlur=function(e,r){var i=t.props,o=i.dispatch,a=i.parse,u=i._reduxForm,s=n.i(d.a)(r,{name:e,parse:a});o(u.blur(e,s)),u.asyncValidate&&u.asyncValidate(e,s,"blur")},t.prepareEventHandlers(e),t}return a(c,s),v(c,[{key:"componentWillReceiveProps",value:function(e){var t=this;this.props.names===e.names||m(this.props.names)===m(e.names)&&!e.names.some(function(e){return!t.props._fields[e]})||this.prepareEventHandlers(e)}},{key:"shouldComponentUpdate",value:function(e){var n=this,r=Object.keys(e),i=Object.keys(this.props);return!!(this.props.children||e.children||r.length!==i.length||r.some(function(r){return!~y.indexOf(r)&&!t(n.props[r],e[r])}))}},{key:"isDirty",value:function(){var e=this.props._fields;return Object.keys(e).some(function(t){return e[t].dirty})}},{key:"getValues",value:function(){var e=this.props._fields;return Object.keys(e).reduce(function(t,n){return p.a.setIn(t,n,e[n].value)},{})}},{key:"getRenderedComponent",value:function(){return this.refs.renderedComponent}},{key:"render",value:function(){var t=this,i=this.props,o=i.component,a=i.withRef,s=i._fields,c=i._reduxForm,l=r(i,["component","withRef","_fields","_reduxForm"]),d=c.sectionPrefix,v=c.form,y=Object.keys(s).reduce(function(i,o){var a=s[o],u=n.i(f.a)(e,o,h({},a,l,{form:v,onBlur:t.onBlurFns[o],onChange:t.onChangeFns[o],onFocus:t.onFocusFns[o]})),c=u.custom,y=r(u,["custom"]);i.custom=c;var m=d?o.replace(d+".",""):o;return p.a.setIn(i,m,y)},{}),m=y.custom,g=r(y,["custom"]);return a&&(g.ref="renderedComponent"),n.i(u.createElement)(o,h({},g,m))}}]),c}(u.Component);return O.propTypes={component:c.a.oneOfType([c.a.func,c.a.string]).isRequired,_fields:c.a.object.isRequired,props:c.a.object},n.i(l.connect)(function(e,t){var n=t.names,r=t._reduxForm,i=r.initialValues,o=r.getFormState,a=o(e);return{_fields:n.reduce(function(e,n){var r=s(a,"initial."+n),o=void 0!==r?r:i&&s(i,n),u=s(a,"values."+n),c=g(s(a,"syncErrors"),n),l=b(s(a,"syncWarnings"),n),f=s(a,"submitting"),p=u===o;return e[n]={asyncError:s(a,"asyncErrors."+n),asyncValidating:s(a,"asyncValidating")===n,dirty:!p,initial:o,pristine:p,state:s(a,"fields."+n),submitError:s(a,"submitErrors."+n),submitFailed:s(a,"submitFailed"),submitting:f,syncError:c,syncWarning:l,value:u,_value:t.value},e},{})}},void 0,void 0,{withRef:!0})(O)};t.a=m},function(e,t,n){"use strict";var r=n(554),i=n(3);t.a=n.i(r.a)(i.a)},function(e,t,n){"use strict";var r=n(555),i=n(3);t.a=n.i(r.a)(i.a)},function(e,t,n){"use strict";var r=n(557),i=n(3);t.a=n.i(r.a)(i.a)},function(e,t,n){"use strict";function r(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function i(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function o(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}var a=n(11),u=n.n(a),s=n(17),c=n.n(s),l=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),f=function(e){function t(e,n){r(this,t);var o=i(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e,n));if(!n._reduxForm)throw new Error("Form must be inside a component decorated with reduxForm()");return o}return o(t,e),l(t,[{key:"componentWillMount",value:function(){this.context._reduxForm.registerInnerOnSubmit(this.props.onSubmit)}},{key:"render",value:function(){return u.a.createElement("form",this.props)}}]),t}(a.Component);f.propTypes={onSubmit:c.a.func.isRequired},f.contextTypes={_reduxForm:c.a.object},t.a=f},function(e,t,n){"use strict";function r(e,t){var n={};for(var r in e)t.indexOf(r)>=0||Object.prototype.hasOwnProperty.call(e,r)&&(n[r]=e[r]);return n}function i(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function o(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function a(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}var u=n(11),s=n.n(u),c=n(17),l=n.n(c),f=n(62),p=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},d=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),h=function(e){function t(e,n){i(this,t);var r=o(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e,n));if(!n._reduxForm)throw new Error("FormSection must be inside a component decorated with reduxForm()");return r}return a(t,e),d(t,[{key:"getChildContext",value:function(){var e=this.context,t=this.props.name;return{_reduxForm:p({},e._reduxForm,{sectionPrefix:n.i(f.a)(e,t)})}}},{key:"render",value:function(){var e=this.props,t=e.children,i=(e.name,e.component),o=r(e,["children","name","component"]);return s.a.isValidElement(t)?t:n.i(u.createElement)(i,p({},o,{children:t}))}}]),t}(u.Component);h.propTypes={name:l.a.string.isRequired,component:l.a.oneOfType([l.a.func,l.a.string])},h.defaultProps={component:"div"},h.childContextTypes={_reduxForm:l.a.object.isRequired},h.contextTypes={_reduxForm:l.a.object},t.a=h},function(e,t,n){"use strict";var r=n(117),i=n.n(r),o=function(e,t,n,r){t(r);var o=e();if(!i()(o))throw new Error("asyncValidate function passed to reduxForm must return a promise");var a=function(e){return function(t){if(t&&Object.keys(t).length)return n(t),t;if(e)throw n(),new Error("Asynchronous validation promise was rejected without errors.");return n(),Promise.resolve()}};return o.then(a(!1),a(!0))};t.a=o},function(e,t,n){"use strict";function r(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function i(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function o(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}var a=n(11),u=(n.n(a),n(17)),s=n.n(u),c=n(55),l=n.n(c),f=n(545),p=n(210),d=n(62),h=n(3),v=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},y=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),m=function(e){var t=n.i(f.a)(e),u=e.setIn,c=function(e){function s(e,t){r(this,s);var n=i(this,(s.__proto__||Object.getPrototypeOf(s)).call(this,e,t));if(n.saveRef=function(e){return n.ref=e},n.normalize=function(e,t){var r=n.props.normalize;if(!r)return t;var i=n.context._reduxForm.getValues();return r(t,n.value,u(i,e,t),i)},!t._reduxForm)throw new Error("Field must be inside a component decorated with reduxForm()");return n}return o(s,e),y(s,[{key:"shouldComponentUpdate",value:function(e){return n.i(p.a)(this,e)}},{key:"componentWillMount",value:function(){var e=this;this.context._reduxForm.register(this.name,"Field",function(){return e.props.validate},function(){return e.props.warn})}},{key:"componentWillReceiveProps",value:function(e,t){var r=n.i(d.a)(this.context,this.props.name),i=n.i(d.a)(t,e.name);r===i&&h.a.deepEqual(this.props.validate,e.validate)&&h.a.deepEqual(this.props.warn,e.warn)||(this.context._reduxForm.unregister(r),this.context._reduxForm.register(i,"Field",function(){return e.validate},function(){return e.warn}))}},{key:"componentWillUnmount",value:function(){this.context._reduxForm.unregister(this.name)}},{key:"getRenderedComponent",value:function(){return l()(this.props.withRef,"If you want to access getRenderedComponent(), you must specify a withRef prop to Field"),this.ref?this.ref.getWrappedInstance().getRenderedComponent():void 0}},{key:"render",value:function(){return n.i(a.createElement)(t,v({},this.props,{name:this.name,normalize:this.normalize,_reduxForm:this.context._reduxForm,ref:this.saveRef}))}},{key:"name",get:function(){return n.i(d.a)(this.context,this.props.name)}},{key:"dirty",get:function(){return!this.pristine}},{key:"pristine",get:function(){return!(!this.ref||!this.ref.getWrappedInstance().isPristine())}},{key:"value",get:function(){return this.ref&&this.ref.getWrappedInstance().getValue()}}]),s}(a.Component);return c.propTypes={name:s.a.string.isRequired,component:s.a.oneOfType([s.a.func,s.a.string]).isRequired,format:s.a.func,normalize:s.a.func,onBlur:s.a.func,onChange:s.a.func,onFocus:s.a.func,onDragStart:s.a.func,onDrop:s.a.func,parse:s.a.func,props:s.a.object,validate:s.a.oneOfType([s.a.func,s.a.arrayOf(s.a.func)]),warn:s.a.oneOfType([s.a.func,s.a.arrayOf(s.a.func)]),withRef:s.a.bool},c.contextTypes={_reduxForm:s.a.object},c};t.a=m},function(e,t,n){"use strict";function r(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function i(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function o(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}function a(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var u=n(11),s=(n.n(u),n(17)),c=n.n(s),l=n(55),f=n.n(l),p=n(546),d=n(62),h=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},v=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),y=function(e){return Array.isArray(e)?e:[e]},m=function(e,t){return e&&function(){for(var n=y(e),r=0;r<n.length;r++){var i=n[r].apply(n,arguments);if(i)return a({},t,i)}}},g=function(e){var t=n.i(p.a)(e),a=function(e){function a(e,t){r(this,a);var n=i(this,(a.__proto__||Object.getPrototypeOf(a)).call(this,e,t));if(n.saveRef=function(e){n.ref=e},!t._reduxForm)throw new Error("FieldArray must be inside a component decorated with reduxForm()");return n}return o(a,e),v(a,[{key:"componentWillMount",value:function(){var e=this;this.context._reduxForm.register(this.name,"FieldArray",function(){return m(e.props.validate,"_error")},function(){return m(e.props.warn,"_warning")})}},{key:"componentWillReceiveProps",value:function(e,t){var r=n.i(d.a)(this.context,this.props.name),i=n.i(d.a)(t,e.name);r!==i&&(this.context._reduxForm.unregister(r),this.context._reduxForm.register(i,"FieldArray"))}},{key:"componentWillUnmount",value:function(){this.context._reduxForm.unregister(this.name)}},{key:"getRenderedComponent",value:function(){return f()(this.props.withRef,"If you want to access getRenderedComponent(), you must specify a withRef prop to FieldArray"),this.ref&&this.ref.getWrappedInstance().getRenderedComponent()}},{key:"render",value:function(){return n.i(u.createElement)(t,h({},this.props,{name:this.name,_reduxForm:this.context._reduxForm,ref:this.saveRef}))}},{key:"name",get:function(){return n.i(d.a)(this.context,this.props.name)}},{key:"dirty",get:function(){return!this.ref||this.ref.getWrappedInstance().dirty}},{key:"pristine",get:function(){return!(!this.ref||!this.ref.getWrappedInstance().pristine)}},{key:"value",get:function(){return this.ref?this.ref.getWrappedInstance().value:void 0}}]),a}(u.Component);return a.propTypes={name:c.a.string.isRequired,component:c.a.func.isRequired,props:c.a.object,validate:c.a.oneOfType([c.a.func,c.a.arrayOf(c.a.func)]),warn:c.a.oneOfType([c.a.func,c.a.arrayOf(c.a.func)]),withRef:c.a.bool},a.contextTypes={_reduxForm:c.a.object},a};t.a=g},function(e,t,n){"use strict";function r(e,t){var n={};for(var r in e)t.indexOf(r)>=0||Object.prototype.hasOwnProperty.call(e,r)&&(n[r]=e[r]);return n}var i=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},o=function(e,t,n,o,a,u){var s=e.getIn,c=u.arrayInsert,l=u.arrayMove,f=u.arrayPop,p=u.arrayPush,d=u.arrayRemove,h=u.arrayRemoveAll,v=u.arrayShift,y=(u.arraySplice,u.arraySwap),m=u.arrayUnshift,g=u.asyncError,b=u.dirty,O=u.length,w=u.pristine,_=u.submitError,S=(u.state,u.submitFailed),E=u.submitting,x=u.syncError,j=u.syncWarning,k=u.value,C=u.props,P=r(u,["arrayInsert","arrayMove","arrayPop","arrayPush","arrayRemove","arrayRemoveAll","arrayShift","arraySplice","arraySwap","arrayUnshift","asyncError","dirty","length","pristine","submitError","state","submitFailed","submitting","syncError","syncWarning","value","props"]),R=x||g||_,A=j,T=o?t.replace(o+".",""):t,F=i({fields:{_isFieldArray:!0,forEach:function(e){return(k||[]).forEach(function(t,n){return e(T+"["+n+"]",n,F.fields)})},get:a,getAll:function(){return k},insert:c,length:O,map:function(e){return(k||[]).map(function(t,n){return e(T+"["+n+"]",n,F.fields)})},move:l,name:t,pop:function(){return f(),s(k,String(O-1))},push:p,reduce:function(e,t){return(k||[]).reduce(function(t,n,r){return e(t,T+"["+r+"]",r,F.fields)},t)},remove:d,removeAll:h,shift:function(){return v(),s(k,"0")},swap:y,unshift:m},meta:{dirty:b,error:R,form:n,warning:A,invalid:!!R,pristine:w,submitting:E,submitFailed:S,valid:!R}},C,P);return F};t.a=o},function(e,t,n){"use strict";function r(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function i(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function o(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}var a=n(11),u=(n.n(a),n(17)),s=n.n(u),c=n(55),l=n.n(c),f=n(547),p=n(210),d=n(3),h=n(62),v=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},y=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),m=function(e){return e?Array.isArray(e)||e._isFieldArray?void 0:new Error('Invalid prop "names" supplied to <Fields/>. Must be either an array of strings or the fields array generated by FieldArray.'):new Error('No "names" prop was specified <Fields/>')},g=function(e){var t=n.i(f.a)(e),u=function(e){function u(e,t){r(this,u);var n=i(this,(u.__proto__||Object.getPrototypeOf(u)).call(this,e,t));if(!t._reduxForm)throw new Error("Fields must be inside a component decorated with reduxForm()");return n}return o(u,e),y(u,[{key:"shouldComponentUpdate",value:function(e){return n.i(p.a)(this,e)}},{key:"componentWillMount",value:function(){var e=m(this.props.names);if(e)throw e;var t=this.context,n=t._reduxForm.register;this.names.forEach(function(e){return n(e,"Field")})}},{key:"componentWillReceiveProps",value:function(e){if(!d.a.deepEqual(this.props.names,e.names)){var t=this.context,r=t._reduxForm,i=r.register,o=r.unregister;this.props.names.forEach(function(e){return o(n.i(h.a)(t,e))}),e.names.forEach(function(e){return i(n.i(h.a)(t,e),"Field")})}}},{key:"componentWillUnmount",value:function(){var e=this.context,t=e._reduxForm.unregister;this.props.names.forEach(function(r){return t(n.i(h.a)(e,r))})}},{key:"getRenderedComponent",value:function(){return l()(this.props.withRef,"If you want to access getRenderedComponent(), you must specify a withRef prop to Fields"),this.refs.connected.getWrappedInstance().getRenderedComponent()}},{key:"render",value:function(){var e=this.context;return n.i(a.createElement)(t,v({},this.props,{names:this.props.names.map(function(t){return n.i(h.a)(e,t)}),_reduxForm:this.context._reduxForm,ref:"connected"}))}},{key:"names",get:function(){var e=this.context;return this.props.names.map(function(t){return n.i(h.a)(e,t)})}},{key:"dirty",get:function(){return this.refs.connected.getWrappedInstance().isDirty()}},{key:"pristine",get:function(){return!this.dirty}},{key:"values",get:function(){return this.refs.connected&&this.refs.connected.getWrappedInstance().getValues()}}]),u}(a.Component);return u.propTypes={names:function(e,t){return m(e[t])},component:s.a.oneOfType([s.a.func,s.a.string]).isRequired,format:s.a.func,parse:s.a.func,props:s.a.object,withRef:s.a.bool},u.contextTypes={_reduxForm:s.a.object},u};t.a=g},function(e,t,n){"use strict";var r=n(55),i=n.n(r),o=n(3),a=function(e){var t=e.getIn;return function(e,n){i()(e,"Form value must be specified");var r=n||function(e){return t(e,"form")};return function(n){for(var a=arguments.length,u=Array(a>1?a-1:0),s=1;s<a;s++)u[s-1]=arguments[s];return i()(u.length,"No fields specified"),1===u.length?t(r(n),e+".values."+u[0]):u.reduce(function(i,a){var u=t(r(n),e+".values."+a);return void 0===u?i:o.a.setIn(i,a,u)},{})}}};t.a=a},function(e,t,n){"use strict";function r(e,t){var n={};for(var r in e)t.indexOf(r)>=0||Object.prototype.hasOwnProperty.call(e,r)&&(n[r]=e[r]);return n}function i(e){if(Array.isArray(e)){for(var t=0,n=Array(e.length);t<e.length;t++)n[t]=e[t];return n}return Array.from(e)}function o(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function a(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function u(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}var s=n(11),c=n.n(s),l=n(17),f=n.n(l),p=n(50),d=n(62),h=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},v=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),y=function(e){var t=e.getIn;return function(e){for(var s=arguments.length,l=Array(s>1?s-1:0),y=1;y<s;y++)l[y-1]=arguments[y];return function(s){var y=function(f){function y(u,f){o(this,y);var h=a(this,(y.__proto__||Object.getPrototypeOf(y)).call(this,u,f));if(!f._reduxForm)throw new Error("formValues() must be used inside a React tree decorated with reduxForm()");var v=void 0,m="function"==typeof e?e(u):e;if("string"==typeof m)v=[m].concat(i(l)).map(function(e){return{prop:e,path:e}});else{var g=m;v=Object.keys(g).map(function(e){return{prop:e,path:g[e]}})}if(!v.length)throw new Error("formValues(): You must specify values to get as formValues(name1, name2, ...) or formValues({propName1: propPath1, ...}) or formValues((props) => name) or formValues((props) => ({propName1: propPath1, ...}))");var b=function(e,r){var i=(r.sectionPrefix,h.context._reduxForm.getValues),o={},a=i();return v.forEach(function(e){var r=e.prop,i=e.path;return o[r]=t(a,n.i(d.a)(h.context,i))}),o};return h.Component=n.i(p.connect)(b,function(){return{}})(function(e){var t=(e.sectionPrefix,r(e,["sectionPrefix"]));return c.a.createElement(s,t)}),h}return u(y,f),v(y,[{key:"render",value:function(){var e=this.Component;return c.a.createElement(e,h({sectionPrefix:this.context._reduxForm.sectionPrefix},this.props))}}]),y}(c.a.Component);return y.contextTypes={_reduxForm:f.a.object},y}}};t.a=y},function(e,t,n){"use strict";function r(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function i(e,t){var n={};for(var r in e)t.indexOf(r)>=0||Object.prototype.hasOwnProperty.call(e,r)&&(n[r]=e[r]);return n}function o(e){function t(e){return e.plugin=function(e){var n=this;return t(function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:f,r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{type:"NONE"},i=function(n,i){var o=d(n,i),a=e[i](o,r,d(t,i));return a!==o?h(n,i,a):n},o=n(t,r),a=r&&r.meta&&r.meta.form;return a?e[a]?i(o,a):o:Object.keys(e).reduce(i,o)})},e}var o,l=e.deepEqual,f=e.empty,p=e.forEach,d=e.getIn,h=e.setIn,v=e.deleteIn,y=e.fromJS,m=e.keys,g=e.size,b=e.some,O=e.splice,w=n.i(u.a)(e),_=n.i(u.a)(s.a),S=function(e,t,n,r,i,o,a){var u=d(e,t+"."+n);return u||a?h(e,t+"."+n,O(u,r,i,o)):e},E=function(e,t,n,r,i,o,a){var u=d(e,t),c=s.a.getIn(u,n);return c||a?h(e,t,s.a.setIn(u,n,s.a.splice(c,r,i,o))):e},x=["values","fields","submitErrors","asyncErrors"],j=function(e,t,n,r,i){var o=e,a=null!=i?f:void 0;return o=S(o,"values",t,n,r,i,!0),o=S(o,"fields",t,n,r,a),o=E(o,"syncErrors",t,n,r,void 0),o=E(o,"syncWarnings",t,n,r,void 0),o=S(o,"submitErrors",t,n,r,void 0),o=S(o,"asyncErrors",t,n,r,void 0)},k=(o={},r(o,a.ARRAY_INSERT,function(e,t){var n=t.meta,r=n.field,i=n.index,o=t.payload;return j(e,r,i,0,o)}),r(o,a.ARRAY_MOVE,function(e,t){var n=t.meta,r=n.field,i=n.from,o=n.to,a=d(e,"values."+r),u=a?g(a):0,s=e;return u&&x.forEach(function(e){var t=e+"."+r;if(d(s,t)){var n=d(s,t+"["+i+"]");s=h(s,t,O(d(s,t),i,1)),s=h(s,t,O(d(s,t),o,0,n))}}),s}),r(o,a.ARRAY_POP,function(e,t){var n=t.meta.field,r=d(e,"values."+n),i=r?g(r):0;return i?j(e,n,i-1,1):e}),r(o,a.ARRAY_PUSH,function(e,t){var n=t.meta.field,r=t.payload,i=d(e,"values."+n),o=i?g(i):0;return j(e,n,o,0,r)}),r(o,a.ARRAY_REMOVE,function(e,t){var n=t.meta,r=n.field,i=n.index;return j(e,r,i,1)}),r(o,a.ARRAY_REMOVE_ALL,function(e,t){var n=t.meta.field,r=d(e,"values."+n),i=r?g(r):0;return i?j(e,n,0,i):e}),r(o,a.ARRAY_SHIFT,function(e,t){var n=t.meta.field;return j(e,n,0,1)}),r(o,a.ARRAY_SPLICE,function(e,t){var n=t.meta,r=n.field,i=n.index,o=n.removeNum,a=t.payload;return j(e,r,i,o,a)}),r(o,a.ARRAY_SWAP,function(e,t){var n=t.meta,r=n.field,i=n.indexA,o=n.indexB,a=e;return x.forEach(function(e){var t=d(a,e+"."+r+"["+i+"]"),n=d(a,e+"."+r+"["+o+"]");void 0===t&&void 0===n||(a=h(a,e+"."+r+"["+i+"]",n),a=h(a,e+"."+r+"["+o+"]",t))}),a}),r(o,a.ARRAY_UNSHIFT,function(e,t){var n=t.meta.field,r=t.payload;return j(e,n,0,0,r)}),r(o,a.AUTOFILL,function(e,t){var n=t.meta.field,r=t.payload,i=e;return i=w(i,"asyncErrors."+n),i=w(i,"submitErrors."+n),i=h(i,"fields."+n+".autofilled",!0),i=h(i,"values."+n,r)}),r(o,a.BLUR,function(e,t){var n=t.meta,r=n.field,i=n.touch,o=t.payload,a=e;return void 0===d(a,"initial."+r)&&""===o?a=w(a,"values."+r):void 0!==o&&(a=h(a,"values."+r,o)),r===d(a,"active")&&(a=v(a,"active")),a=v(a,"fields."+r+".active"),i&&(a=h(a,"fields."+r+".touched",!0),a=h(a,"anyTouched",!0)),a}),r(o,a.CHANGE,function(e,t){var n=t.meta,r=n.field,i=n.touch,o=n.persistentSubmitErrors,a=t.payload,u=e;return void 0===d(u,"initial."+r)&&""===a?u=w(u,"values."+r):void 0!==a&&(u=h(u,"values."+r,a)),u=w(u,"asyncErrors."+r),o||(u=w(u,"submitErrors."+r)),u=w(u,"fields."+r+".autofilled"),i&&(u=h(u,"fields."+r+".touched",!0),u=h(u,"anyTouched",!0)),u}),r(o,a.CLEAR_SUBMIT,function(e){return v(e,"triggerSubmit")}),r(o,a.CLEAR_SUBMIT_ERRORS,function(e){var t=e;return t=w(t,"submitErrors"),t=v(t,"error")}),r(o,a.CLEAR_ASYNC_ERROR,function(e,t){var n=t.meta.field;return v(e,"asyncErrors."+n)}),r(o,a.CLEAR_FIELDS,function(e,t){var n=t.meta,r=n.keepTouched,i=n.persistentSubmitErrors,o=n.fields,a=e;o.forEach(function(e){a=w(a,"values."+e),a=w(a,"asyncErrors."+e),i||(a=w(a,"submitErrors."+e)),a=w(a,"fields."+e+".autofilled"),r||(a=v(a,"fields."+e+".touched"))});var u=b(m(d(a,"registeredFields")),function(e){return d(a,"fields."+e+".touched")});return a=u?h(a,"anyTouched",!0):v(a,"anyTouched")}),r(o,a.FOCUS,function(e,t){var n=t.meta.field,r=e,i=d(e,"active");return r=v(r,"fields."+i+".active"),r=h(r,"fields."+n+".visited",!0),r=h(r,"fields."+n+".active",!0),r=h(r,"active",n)}),r(o,a.INITIALIZE,function(e,t){var n=t.payload,r=t.meta,i=r.keepDirty,o=r.keepSubmitSucceeded,a=r.updateUnregisteredFields,u=y(n),s=f,c=d(e,"warning");c&&(s=h(s,"warning",c));var v=d(e,"syncWarnings");v&&(s=h(s,"syncWarnings",v));var g=d(e,"error");g&&(s=h(s,"error",g));var b=d(e,"syncErrors");b&&(s=h(s,"syncErrors",b));var O=d(e,"registeredFields");O&&(s=h(s,"registeredFields",O));var w=d(e,"values"),_=d(e,"initial"),S=u,E=w;if(i&&O){if(!l(S,_)){var x=function(e){var t=d(_,e),n=d(w,e);if(l(n,t)){var r=d(S,e);d(E,e)!==r&&(E=h(E,e,r))}};a||p(m(O),function(e){return x(e)}),p(m(S),function(e){if(void 0===d(_,e)){var t=d(S,e);E=h(E,e,t)}a&&x(e)})}}else E=S;return o&&d(e,"submitSucceeded")&&(s=h(s,"submitSucceeded",!0)),s=h(s,"values",E),s=h(s,"initial",S)}),r(o,a.REGISTER_FIELD,function(e,t){var n=t.payload,r=n.name,i=n.type,o="registeredFields['"+r+"']",a=d(e,o);if(a){var u=d(a,"count")+1;a=h(a,"count",u)}else a=y({name:r,type:i,count:1});return h(e,o,a)}),r(o,a.RESET,function(e){var t=f,n=d(e,"registeredFields");n&&(t=h(t,"registeredFields",n));var r=d(e,"initial");return r&&(t=h(t,"values",r),t=h(t,"initial",r)),t}),r(o,a.SUBMIT,function(e){return h(e,"triggerSubmit",!0)}),r(o,a.START_ASYNC_VALIDATION,function(e,t){var n=t.meta.field;return h(e,"asyncValidating",n||!0)}),r(o,a.START_SUBMIT,function(e){return h(e,"submitting",!0)}),r(o,a.STOP_ASYNC_VALIDATION,function(e,t){var n=t.payload,r=e;if(r=v(r,"asyncValidating"),n&&Object.keys(n).length){var o=n._error,a=i(n,["_error"]);o&&(r=h(r,"error",o)),Object.keys(a).length&&(r=h(r,"asyncErrors",y(a)))}else r=v(r,"error");return r}),r(o,a.STOP_SUBMIT,function(e,t){var n=t.payload,r=e;if(r=v(r,"submitting"),r=v(r,"submitFailed"),r=v(r,"submitSucceeded"),n&&Object.keys(n).length){var o=n._error,a=i(n,["_error"]);r=o?h(r,"error",o):v(r,"error"),r=Object.keys(a).length?h(r,"submitErrors",y(a)):v(r,"submitErrors"),r=h(r,"submitFailed",!0)}else r=h(r,"submitSucceeded",!0),r=v(r,"error"),r=v(r,"submitErrors");return r}),r(o,a.SET_SUBMIT_FAILED,function(e,t){var n=t.meta.fields,r=e;return r=h(r,"submitFailed",!0),r=v(r,"submitSucceeded"),r=v(r,"submitting"),n.forEach(function(e){return r=h(r,"fields."+e+".touched",!0)}),n.length&&(r=h(r,"anyTouched",!0)),r}),r(o,a.SET_SUBMIT_SUCCEEDED,function(e){var t=e;return t=v(t,"submitFailed"),t=h(t,"submitSucceeded",!0)}),r(o,a.TOUCH,function(e,t){var n=t.meta.fields,r=e;return n.forEach(function(e){return r=h(r,"fields."+e+".touched",!0)}),r=h(r,"anyTouched",!0)}),r(o,a.UNREGISTER_FIELD,function(e,t){var n=t.payload,r=n.name,i=n.destroyOnUnmount,o=e,a="registeredFields['"+r+"']",u=d(o,a);if(!u)return o;var c=d(u,"count")-1;if(c<=0&&i){o=v(o,a),l(d(o,"registeredFields"),f)&&(o=v(o,"registeredFields"));var p=d(o,"syncErrors");p&&(p=_(p,r),o=s.a.deepEqual(p,s.a.empty)?v(o,"syncErrors"):h(o,"syncErrors",p));var y=d(o,"syncWarnings");y&&(y=_(y,r),o=s.a.deepEqual(y,s.a.empty)?v(o,"syncWarnings"):h(o,"syncWarnings",y)),o=w(o,"submitErrors."+r),o=w(o,"asyncErrors."+r)}else u=h(u,"count",c),o=h(o,a,u);return o}),r(o,a.UNTOUCH,function(e,t){var n=t.meta.fields,r=e;n.forEach(function(e){return r=v(r,"fields."+e+".touched")});var i=b(m(d(r,"registeredFields")),function(e){return d(r,"fields."+e+".touched")});return r=i?h(r,"anyTouched",!0):v(r,"anyTouched")}),r(o,a.UPDATE_SYNC_ERRORS,function(e,t){var n=t.payload,r=n.syncErrors,i=n.error,o=e;return i?(o=h(o,"error",i),o=h(o,"syncError",!0)):(o=v(o,"error"),o=v(o,"syncError")),o=Object.keys(r).length?h(o,"syncErrors",r):v(o,"syncErrors")}),r(o,a.UPDATE_SYNC_WARNINGS,function(e,t){var n=t.payload,r=n.syncWarnings,i=n.warning,o=e;return o=i?h(o,"warning",i):v(o,"warning"),o=Object.keys(r).length?h(o,"syncWarnings",r):v(o,"syncWarnings")}),o),C=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:f,t=arguments[1],n=k[t.type];return n?n(e,t):e};return t(function(e){return function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:f,n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{type:"NONE"},r=n&&n.meta&&n.meta.form;if(!r||!c(n))return t;if(n.type===a.DESTROY&&n.meta&&n.meta.form)return n.meta.form.reduce(function(e,t){return w(e,t)},t);var i=d(t,r),o=e(i,n);return o===i?t:h(t,r,o)}}(C))}var a=n(133),u=n(563),s=n(3),c=function(e){return e&&e.type&&e.type.length>a.prefix.length&&e.type.substring(0,a.prefix.length)===a.prefix};t.a=o},function(e,t,n){"use strict";function r(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function i(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function o(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function a(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}function u(e,t){var n={};for(var r in e)t.indexOf(r)>=0||Object.prototype.hasOwnProperty.call(e,r)&&(n[r]=e[r]);return n}var s=n(522),c=n(190),l=n(170),f=n.n(l),p=n(55),d=n.n(p),h=n(117),v=n.n(h),y=n(17),m=n.n(y),g=n(11),b=(n.n(g),n(50)),O=n(88),w=n(198),_=n(553),S=n(200),E=n(202),x=n(201),j=n(203),k=n(206),C=n(565),P=n(568),R=n(578),A=n(134),T=n(3),F=n(611),I=n(612),N=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),M=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},V="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},U=function(e){return Boolean(e&&e.prototype&&"object"===V(e.prototype.isReactComponent))},D=w.a.arrayInsert,L=w.a.arrayMove,q=w.a.arrayPop,W=w.a.arrayPush,z=w.a.arrayRemove,B=w.a.arrayRemoveAll,H=w.a.arrayShift,Y=w.a.arraySplice,$=w.a.arraySwap,G=w.a.arrayUnshift,K=w.a.blur,J=w.a.change,Q=w.a.focus,Z=u(w.a,["arrayInsert","arrayMove","arrayPop","arrayPush","arrayRemove","arrayRemoveAll","arrayShift","arraySplice","arraySwap","arrayUnshift","blur","change","focus"]),X={arrayInsert:D,arrayMove:L,arrayPop:q,arrayPush:W,arrayRemove:z,arrayRemoveAll:B,arrayShift:H,arraySplice:Y,arraySwap:$,arrayUnshift:G},ee=[].concat(function(e){if(Array.isArray(e)){for(var t=0,n=Array(e.length);t<e.length;t++)n[t]=e[t];return n}return Array.from(e)}(Object.keys(w.a)),["array","asyncErrors","initialValues","syncErrors","syncWarnings","values","registeredFields"]),te=function(e){if(!e||"function"!=typeof e)throw new Error("You must either pass handleSubmit() an onSubmit function or pass onSubmit as a prop");return e},ne=function(e){var t=e.deepEqual,l=e.empty,p=e.getIn,h=e.setIn,y=e.keys,w=e.fromJS,V=n.i(A.a)(e);return function(A){var D=M({touchOnBlur:!0,touchOnChange:!1,persistentSubmitErrors:!1,destroyOnUnmount:!0,shouldAsyncValidate:S.a,shouldValidate:E.a,shouldError:x.a,shouldWarn:j.a,enableReinitialize:!1,keepDirtyOnReinitialize:!1,updateUnregisteredFields:!1,getFormState:function(e){return p(e,"form")},pure:!0,forceUnregisterOnUnmount:!1},A);return function(S){var E=function(c){function l(){var t,r,a,u;i(this,l);for(var s=arguments.length,c=Array(s),f=0;f<s;f++)c[f]=arguments[f];return r=a=o(this,(t=l.__proto__||Object.getPrototypeOf(l)).call.apply(t,[this].concat(c))),a.destroyed=!1,a.fieldValidators={},a.lastFieldValidatorKeys=[],a.fieldWarners={},a.lastFieldWarnerKeys=[],a.innerOnSubmit=void 0,a.submitPromise=void 0,a.getValues=function(){return a.props.values},a.isValid=function(){return a.props.valid},a.isPristine=function(){return a.props.pristine},a.register=function(e,t,n,r){a.props.registerField(e,t),n&&(a.fieldValidators[e]=n),r&&(a.fieldWarners[e]=r)},a.unregister=function(e){if(!a.destroyed){var t=a.props,n=t.destroyOnUnmount,r=t.forceUnregisterOnUnmount,i=t.unregisterField;n||r?(i(e,n),delete a.fieldValidators[e],delete a.fieldWarners[e]):i(e,!1)}},a.getFieldList=function(e){var t=a.props.registeredFields,n=[];if(!t)return n;var r=y(t);return e&&e.excludeFieldArray&&(r=r.filter(function(e){return"FieldArray"!==p(t,"['"+e+"'].type")})),w(r.reduce(function(e,t){return e.push(t),e},n))},a.getValidators=function(){var e={};return Object.keys(a.fieldValidators).forEach(function(t){var n=a.fieldValidators[t]();n&&(e[t]=n)}),e},a.generateValidator=function(){var t=a.getValidators();return Object.keys(t).length?n.i(P.a)(t,e):void 0},a.getWarners=function(){var e={};return Object.keys(a.fieldWarners).forEach(function(t){var n=a.fieldWarners[t]();n&&(e[t]=n)}),e},a.generateWarner=function(){var t=a.getWarners();return Object.keys(t).length?n.i(P.a)(t,e):void 0},a.asyncValidate=function(e,t,r){var i=a.props,o=i.asyncBlurFields,u=i.asyncChangeFields,s=i.asyncErrors,c=i.asyncValidate,l=i.dispatch,f=i.initialized,d=i.pristine,v=i.shouldAsyncValidate,y=i.startAsyncValidation,m=i.stopAsyncValidation,g=i.syncErrors,b=i.values,O=!e;if(c){var w=O?b:h(b,e,t),S=O||!p(g,e);if(((O||"blur"!==r?!u||~u.indexOf(e.replace(/\[[0-9]+\]/g,"[]")):!o||~o.indexOf(e.replace(/\[[0-9]+\]/g,"[]")))||O)&&v({asyncErrors:s,initialized:f,trigger:O?"submit":r,blurredField:e,pristine:d,syncValidationPasses:S}))return n.i(_.a)(function(){return c(w,l,a.props,e)},y,m,e)}},a.submitCompleted=function(e){return delete a.submitPromise,e},a.submitFailed=function(e){return delete a.submitPromise,e},a.listenToSubmit=function(e){return v()(e)?(a.submitPromise=e,e.then(a.submitCompleted,a.submitFailed)):e},a.submit=function(e){var t=a.props,r=t.onSubmit,i=t.blur,o=t.change,u=t.dispatch;return e&&!n.i(k.a)(e)?n.i(C.a)(function(){return!a.submitPromise&&a.listenToSubmit(n.i(R.a)(te(e),M({},a.props,n.i(O.bindActionCreators)({blur:i,change:o},u)),a.props.validExceptSubmit,a.asyncValidate,a.getFieldList({excludeFieldArray:!0})))}):a.submitPromise?void 0:a.innerOnSubmit&&a.innerOnSubmit!==a.submit?a.innerOnSubmit():a.listenToSubmit(n.i(R.a)(te(r),M({},a.props,n.i(O.bindActionCreators)({blur:i,change:o},u)),a.props.validExceptSubmit,a.asyncValidate,a.getFieldList({excludeFieldArray:!0})))},a.reset=function(){return a.props.reset()},u=r,o(a,u)}return a(l,c),N(l,[{key:"getChildContext",value:function(){var e=this;return{_reduxForm:M({},this.props,{getFormState:function(t){return p(e.props.getFormState(t),e.props.form)},asyncValidate:this.asyncValidate,getValues:this.getValues,sectionPrefix:void 0,register:this.register,unregister:this.unregister,registerInnerOnSubmit:function(t){return e.innerOnSubmit=t}})}}},{key:"initIfNeeded",value:function(e){var n=this.props.enableReinitialize;if(e){if((n||!e.initialized)&&!t(this.props.initialValues,e.initialValues)){var r=e.initialized&&this.props.keepDirtyOnReinitialize;this.props.initialize(e.initialValues,r,{lastInitialValues:this.props.initialValues,updateUnregisteredFields:e.updateUnregisteredFields})}}else!this.props.initialValues||this.props.initialized&&!n||this.props.initialize(this.props.initialValues,this.props.keepDirtyOnReinitialize,{updateUnregisteredFields:this.props.updateUnregisteredFields})}},{key:"updateSyncErrorsIfNeeded",value:function(e,t,n){var r=this.props,i=r.error,o=r.updateSyncErrors,a=!(n&&Object.keys(n).length||i),u=!(e&&Object.keys(e).length||t);a&&u||T.a.deepEqual(n,e)&&T.a.deepEqual(i,t)||o(e,t)}},{key:"clearSubmitPromiseIfNeeded",value:function(e){var t=this.props.submitting;this.submitPromise&&t&&!e.submitting&&delete this.submitPromise}},{key:"submitIfNeeded",value:function(e){var t=this.props,n=t.clearSubmit;!t.triggerSubmit&&e.triggerSubmit&&(n(),this.submit())}},{key:"validateIfNeeded",value:function(t){var r=this.props,i=r.shouldValidate,o=r.shouldError,a=r.validate,c=r.values,l=this.generateValidator();if(a||l){var f=void 0===t,p=Object.keys(this.getValidators()),d={values:c,nextProps:t,props:this.props,initialRender:f,lastFieldValidatorKeys:this.lastFieldValidatorKeys,fieldValidatorKeys:p,structure:e},h=i(d),v=o(d);if(h||v){var y=f||!t?this.props:t,m=n.i(s.a)(a?a(y.values,y)||{}:{},l?l(y.values,y)||{}:{}),g=m._error,b=u(m,["_error"]);this.lastFieldValidatorKeys=p,this.updateSyncErrorsIfNeeded(b,g,y.syncErrors)}}}},{key:"updateSyncWarningsIfNeeded",value:function(e,t,n){var r=this.props,i=r.warning,o=r.syncWarnings,a=r.updateSyncWarnings,u=!(o&&Object.keys(o).length||i),s=!(e&&Object.keys(e).length||t);u&&s||T.a.deepEqual(n,e)&&T.a.deepEqual(i,t)||a(e,t)}},{key:"warnIfNeeded",value:function(t){var r=this.props,i=r.shouldValidate,o=r.shouldWarn,a=r.warn,c=r.values,l=this.generateWarner();if(a||l){var f=void 0===t,p=Object.keys(this.getWarners()),d={values:c,nextProps:t,props:this.props,initialRender:f,lastFieldValidatorKeys:this.lastFieldWarnerKeys,fieldValidatorKeys:p,structure:e},h=o(d);if(i(d)||h){var v=f||!t?this.props:t,y=n.i(s.a)(a?a(v.values,v):{},l?l(v.values,v):{}),m=y._warning,g=u(y,["_warning"]);this.lastFieldWarnerKeys=p,this.updateSyncWarningsIfNeeded(g,m,v.syncWarnings)}}}},{key:"componentWillMount",value:function(){n.i(I.a)()||(this.initIfNeeded(),this.validateIfNeeded(),this.warnIfNeeded()),d()(this.props.shouldValidate,"shouldValidate() is deprecated and will be removed in v8.0.0. Use shouldWarn() or shouldError() instead.")}},{key:"componentWillReceiveProps",value:function(e){this.initIfNeeded(e),this.validateIfNeeded(e),this.warnIfNeeded(e),this.clearSubmitPromiseIfNeeded(e),this.submitIfNeeded(e);var n=e.onChange,r=e.values,i=e.dispatch;n&&!t(r,this.props.values)&&n(r,i,e,this.props.values)}},{key:"shouldComponentUpdate",value:function(e){var n=this;if(!this.props.pure)return!0;var r=D.immutableProps,i=void 0===r?[]:r;return!!(this.props.children||e.children||Object.keys(e).some(function(r){return~i.indexOf(r)?n.props[r]!==e[r]:!~ee.indexOf(r)&&!t(n.props[r],e[r])}))}},{key:"componentDidMount",value:function(){n.i(I.a)()||(this.initIfNeeded(),this.validateIfNeeded(),this.warnIfNeeded()),d()(this.props.shouldValidate,"shouldValidate() is deprecated and will be removed in v8.0.0. Use shouldWarn() or shouldError() instead.")}},{key:"componentWillUnmount",value:function(){var e=this.props,t=e.destroyOnUnmount,r=e.destroy;t&&!n.i(I.a)()&&(this.destroyed=!0,r())}},{key:"render",value:function(){var e=this.props,t=e.anyTouched,i=e.array,o=(e.arrayInsert,e.arrayMove,e.arrayPop,e.arrayPush,e.arrayRemove,e.arrayRemoveAll,e.arrayShift,e.arraySplice,e.arraySwap,e.arrayUnshift,e.asyncErrors,e.asyncValidate,e.asyncValidating),a=e.blur,s=e.change,c=e.clearSubmit,l=e.destroy,f=(e.destroyOnUnmount,e.forceUnregisterOnUnmount,e.dirty),p=e.dispatch,d=(e.enableReinitialize,e.error),h=(e.focus,e.form),v=(e.getFormState,e.initialize),y=e.initialized,m=e.initialValues,b=e.invalid,w=(e.keepDirtyOnReinitialize,e.updateUnregisteredFields,e.pristine),_=e.propNamespace,E=(e.registeredFields,e.registerField,e.reset),x=(e.setSubmitFailed,e.setSubmitSucceeded,e.shouldAsyncValidate,e.shouldValidate,e.shouldError,e.shouldWarn,e.startAsyncValidation,e.startSubmit,e.stopAsyncValidation,e.stopSubmit,e.submitting),j=e.submitFailed,k=e.submitSucceeded,C=e.touch,P=(e.touchOnBlur,e.touchOnChange,e.persistentSubmitErrors,e.syncErrors,e.syncWarnings,e.unregisterField,e.untouch),R=(e.updateSyncErrors,e.updateSyncWarnings,e.valid),A=(e.validExceptSubmit,e.values,e.warning),T=u(e,["anyTouched","array","arrayInsert","arrayMove","arrayPop","arrayPush","arrayRemove","arrayRemoveAll","arrayShift","arraySplice","arraySwap","arrayUnshift","asyncErrors","asyncValidate","asyncValidating","blur","change","clearSubmit","destroy","destroyOnUnmount","forceUnregisterOnUnmount","dirty","dispatch","enableReinitialize","error","focus","form","getFormState","initialize","initialized","initialValues","invalid","keepDirtyOnReinitialize","updateUnregisteredFields","pristine","propNamespace","registeredFields","registerField","reset","setSubmitFailed","setSubmitSucceeded","shouldAsyncValidate","shouldValidate","shouldError","shouldWarn","startAsyncValidation","startSubmit","stopAsyncValidation","stopSubmit","submitting","submitFailed","submitSucceeded","touch","touchOnBlur","touchOnChange","persistentSubmitErrors","syncErrors","syncWarnings","unregisterField","untouch","updateSyncErrors","updateSyncWarnings","valid","validExceptSubmit","values","warning"]),F=M({array:i,anyTouched:t,asyncValidate:this.asyncValidate,asyncValidating:o},n.i(O.bindActionCreators)({blur:a,change:s},p),{clearSubmit:c,destroy:l,dirty:f,dispatch:p,error:d,form:h,handleSubmit:this.submit,initialize:v,initialized:y,initialValues:m,invalid:b,pristine:w,reset:E,submitting:x,submitFailed:j,submitSucceeded:k,touch:C,untouch:P,valid:R,warning:A}),I=M({},_?r({},_,F):F,T);return U(S)&&(I.ref="wrapped"),n.i(g.createElement)(S,I)}}]),l}(g.Component);E.displayName="Form("+n.i(F.a)(S)+")",E.WrappedComponent=S,E.childContextTypes={_reduxForm:m.a.object.isRequired},E.propTypes={destroyOnUnmount:m.a.bool,forceUnregisterOnUnmount:m.a.bool,form:m.a.string.isRequired,initialValues:m.a.oneOfType([m.a.array,m.a.object]),getFormState:m.a.func,onSubmitFail:m.a.func,onSubmitSuccess:m.a.func,propNamespace:m.a.string,validate:m.a.func,warn:m.a.func,touchOnBlur:m.a.bool,touchOnChange:m.a.bool,triggerSubmit:m.a.bool,persistentSubmitErrors:m.a.bool,registeredFields:m.a.any};var x=n.i(b.connect)(function(e,n){var r=n.form,i=n.getFormState,o=n.initialValues,a=n.enableReinitialize,u=n.keepDirtyOnReinitialize,s=p(i(e)||l,r)||l,c=p(s,"initial"),f=!!c,d=a&&f&&!t(o,c),h=d&&!u,v=o||c||l;d&&(v=c||l);var y=p(s,"values")||v;h&&(y=v);var m=h||t(v,y),g=p(s,"asyncErrors"),b=p(s,"syncErrors")||{},O=p(s,"syncWarnings")||{},w=p(s,"registeredFields"),_=V(r,i,!1)(e),S=V(r,i,!0)(e),E=!!p(s,"anyTouched"),x=!!p(s,"submitting"),j=!!p(s,"submitFailed"),k=!!p(s,"submitSucceeded"),C=p(s,"error"),P=p(s,"warning"),R=p(s,"triggerSubmit");return{anyTouched:E,asyncErrors:g,asyncValidating:p(s,"asyncValidating")||!1,dirty:!m,error:C,initialized:f,invalid:!_,pristine:m,registeredFields:w,submitting:x,submitFailed:j,submitSucceeded:k,syncErrors:b,syncWarnings:O,triggerSubmit:R,values:y,valid:_,validExceptSubmit:S,warning:P}},function(e,t){var r=function(e){return e.bind(null,t.form)},i=n.i(c.a)(Z,r),o=n.i(c.a)(X,r),a=function(e,n){return K(t.form,e,n,!!t.touchOnBlur)},u=function(e,n){return J(t.form,e,n,!!t.touchOnChange,!!t.persistentSubmitErrors)},s=r(Q),l=n.i(O.bindActionCreators)(i,e),f={insert:n.i(O.bindActionCreators)(o.arrayInsert,e),move:n.i(O.bindActionCreators)(o.arrayMove,e),pop:n.i(O.bindActionCreators)(o.arrayPop,e),push:n.i(O.bindActionCreators)(o.arrayPush,e),remove:n.i(O.bindActionCreators)(o.arrayRemove,e),removeAll:n.i(O.bindActionCreators)(o.arrayRemoveAll,e),shift:n.i(O.bindActionCreators)(o.arrayShift,e),splice:n.i(O.bindActionCreators)(o.arraySplice,e),swap:n.i(O.bindActionCreators)(o.arraySwap,e),unshift:n.i(O.bindActionCreators)(o.arrayUnshift,e)},p=M({},l,o,{blur:a,change:u,array:f,focus:s,dispatch:e});return function(){return p}},void 0,{withRef:!0}),j=f()(x(E),S);j.defaultProps=D;var A=function(e){function t(){return i(this,t),o(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}return a(t,e),N(t,[{key:"submit",value:function(){return this.ref&&this.ref.getWrappedInstance().submit()}},{key:"reset",value:function(){this.ref&&this.ref.getWrappedInstance().reset()}},{key:"render",value:function(){var e=this,t=this.props,r=t.initialValues,i=u(t,["initialValues"]);return n.i(g.createElement)(j,M({},i,{ref:function(t){return e.ref=t},initialValues:w(r)}))}},{key:"valid",get:function(){return!(!this.ref||!this.ref.getWrappedInstance().isValid())}},{key:"invalid",get:function(){return!this.valid}},{key:"pristine",get:function(){return!(!this.ref||!this.ref.getWrappedInstance().isPristine())}},{key:"dirty",get:function(){return!this.pristine}},{key:"values",get:function(){return this.ref?this.ref.getWrappedInstance().getValues():l}},{key:"fieldList",get:function(){return this.ref?this.ref.getWrappedInstance().getFieldList():[]}},{key:"wrappedInstance",get:function(){return this.ref&&this.ref.getWrappedInstance().refs.wrapped}}]),t}(g.Component);return f()(A,S)}}};t.a=ne},function(e,t,n){"use strict";function r(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var i=n(50),o=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},a=function(e){var t=e.getIn;return function(e){var a=o({prop:"values",getFormState:function(e){return t(e,"form")}},e),u=a.form,s=a.prop,c=a.getFormState;return n.i(i.connect)(function(e){return r({},s,t(c(e),u+".values"))})}};t.a=a},function(e,t,n){"use strict";function r(e){var t=e.deepEqual,r=e.empty,o=e.getIn,a=e.deleteIn,u=e.setIn;return function e(s,c){if("]"===c[c.length-1]){var l=n.i(i.a)(c);l.pop();return o(s,l.join("."))?u(s,c):s}var f=s;void 0!==o(s,c)&&(f=a(s,c));var p=c.lastIndexOf(".");if(p>0){var d=c.substring(0,p);if("]"!==d[d.length-1]){var h=o(f,d);if(t(h,r))return e(f,d)}}return f}}var i=n(87);t.a=r},function(e,t,n){"use strict";var r=n(204),i=function(e){var t=[];if(e)for(var n=0;n<e.length;n++){var r=e[n];r.selected&&t.push(r.value)}return t},o=function(e,t){if(n.i(r.a)(e)){if(!t&&e.nativeEvent&&void 0!==e.nativeEvent.text)return e.nativeEvent.text;if(t&&void 0!==e.nativeEvent)return e.nativeEvent.text;var o=e,a=o.target,u=a.type,s=a.value,c=a.checked,l=a.files,f=o.dataTransfer;return"checkbox"===u?!!c:"file"===u?l||f&&f.files:"select-multiple"===u?i(e.target.options):s}return e};t.a=o},function(e,t,n){"use strict";var r=n(206),i=function(e){return function(t){for(var i=arguments.length,o=Array(i>1?i-1:0),a=1;a<i;a++)o[a-1]=arguments[a];return n.i(r.a)(t)?e.apply(void 0,o):e.apply(void 0,[t].concat(o))}};t.a=i},function(e,t,n){"use strict";var r=n(558),i=n(3);t.a=n.i(r.a)(i.a)},function(e,t,n){"use strict";var r=n(559),i=n(3);t.a=n.i(r.a)(i.a)},function(e,t,n){"use strict";var r=n(3),i=function(e){return Array.isArray(e)?e:[e]},o=function(e,t,n,r,o){for(var a=i(r),u=0;u<a.length;u++){var s=a[u](e,t,n,o);if(s)return s}},a=function(e,t){var n=t.getIn;return function(t,i){var a={};return Object.keys(e).forEach(function(u){var s=n(t,u),c=o(s,t,i,e[u],u);c&&(a=r.a.setIn(a,u,c))}),a}};t.a=a},function(e,t,n){"use strict";var r=n(590),i=n(3);t.a=n.i(r.a)(i.a)},function(e,t,n){"use strict";var r=n(591),i=n(3);t.a=n.i(r.a)(i.a)},function(e,t,n){"use strict";var r=n(592),i=n(3);t.a=n.i(r.a)(i.a)},function(e,t,n){"use strict";var r=n(593),i=n(3);t.a=n.i(r.a)(i.a)},function(e,t,n){"use strict";var r=n(594),i=n(3);t.a=n.i(r.a)(i.a)},function(e,t,n){"use strict";var r=n(595),i=n(3);t.a=n.i(r.a)(i.a)},function(e,t,n){"use strict";var r=n(596),i=n(3);t.a=n.i(r.a)(i.a)},function(e,t,n){"use strict";var r=n(597),i=n(3);t.a=n.i(r.a)(i.a)},function(e,t,n){"use strict";var r=n(598),i=n(3);t.a=n.i(r.a)(i.a)},function(e,t,n){"use strict";function r(e){if(Array.isArray(e)){for(var t=0,n=Array(e.length);t<e.length;t++)n[t]=e[t];return n}return Array.from(e)}var i=n(117),o=n.n(i),a=n(197),u=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},s=function(e,t,n,i,s){var c=t.dispatch,l=t.onSubmitFail,f=t.onSubmitSuccess,p=t.startSubmit,d=t.stopSubmit,h=t.setSubmitFailed,v=t.setSubmitSucceeded,y=t.syncErrors,m=t.asyncErrors,g=t.touch,b=t.values,O=t.persistentSubmitErrors;if(g.apply(void 0,r(s)),n||O){var w=function(){var n=void 0;try{n=e(b,c,t)}catch(e){var i=e instanceof a.a?e.errors:void 0;if(d(i),h.apply(void 0,r(s)),l&&l(i,c,e,t),i||l)return i;throw e}return o()(n)?(p(),n.then(function(e){return d(),v(),f&&f(e,c,t),e},function(e){var n=e instanceof a.a?e.errors:void 0;if(d(n),h.apply(void 0,r(s)),l&&l(n,c,e,t),n||l)return n;throw e})):(v(),f&&f(n,c,t),n)},_=i&&i();return _?_.then(function(e){if(e)throw e;return w()}).catch(function(e){return h.apply(void 0,r(s)),l&&l(e,c,null,t),Promise.reject(e)}):w()}h.apply(void 0,r(s));var S=u({},m,y);return l&&l(S,c,null,t),S};t.a=s},function(e,t,n){"use strict";var r=function(e,t){switch(t){case"Field":return[e,e+"._error"];case"FieldArray":return[e+"._error"];default:throw new Error("Unknown field type")}},i=function(e){var t=e.getIn;return function(e,n,i,o){if(!n&&!i&&!o)return!1;var a=t(e,"name"),u=t(e,"type");return r(a,u).some(function(e){return t(n,e)||t(i,e)||t(o,e)})}};t.a=i},function(e,t,n){"use strict";var r=n(599),i=n(3);t.a=n.i(r.a)(i.a)},function(e,t,n){"use strict";var r=n(600),i=n(3);t.a=n.i(r.a)(i.a)},function(e,t,n){"use strict";var r=n(601),i=n(3);t.a=n.i(r.a)(i.a)},function(e,t,n){"use strict";var r=n(602),i=n(3);t.a=n.i(r.a)(i.a)},function(e,t,n){"use strict";var r=n(209),i=n(3);t.a=n.i(r.a)(i.a)},function(e,t,n){"use strict";var r=n(603),i=n(3);t.a=n.i(r.a)(i.a)},function(e,t,n){"use strict";var r=n(134),i=n(3);t.a=n.i(r.a)(i.a)},function(e,t,n){"use strict";n.d(t,"h",function(){return d}),n.d(t,"b",function(){return h}),n.d(t,"c",function(){return v}),n.d(t,"f",function(){return y}),n.d(t,"e",function(){return m}),n.d(t,"d",function(){return g}),n.d(t,"g",function(){return b});var r=n(17),i=n.n(r),o=i.a.any,a=i.a.bool,u=i.a.func,s=i.a.shape,c=i.a.string,l=i.a.oneOfType,f=i.a.object,p=i.a.number,d={anyTouched:a.isRequired,asyncValidating:l([a,c]).isRequired,dirty:a.isRequired,error:o,form:c.isRequired,invalid:a.isRequired,initialized:a.isRequired,initialValues:f,pristine:a.isRequired,pure:a.isRequired,submitting:a.isRequired,submitFailed:a.isRequired,submitSucceeded:a.isRequired,valid:a.isRequired,warning:o,array:s({insert:u.isRequired,move:u.isRequired,pop:u.isRequired,push:u.isRequired,remove:u.isRequired,removeAll:u.isRequired,shift:u.isRequired,splice:u.isRequired,swap:u.isRequired,unshift:u.isRequired}),asyncValidate:u.isRequired,autofill:u.isRequired,blur:u.isRequired,change:u.isRequired,clearAsyncError:u.isRequired,destroy:u.isRequired,dispatch:u.isRequired,handleSubmit:u.isRequired,initialize:u.isRequired,reset:u.isRequired,touch:u.isRequired,submit:u.isRequired,untouch:u.isRequired,triggerSubmit:a,clearSubmit:u.isRequired},h={checked:a,name:c.isRequired,onBlur:u.isRequired,onChange:u.isRequired,onDragStart:u.isRequired,onDrop:u.isRequired,onFocus:u.isRequired,value:o},v={active:a.isRequired,asyncValidating:a.isRequired,autofilled:a.isRequired,dirty:a.isRequired,dispatch:u.isRequired,error:o,form:c.isRequired,invalid:a.isRequired,pristine:a.isRequired,submitting:a.isRequired,submitFailed:a.isRequired,touched:a.isRequired,valid:a.isRequired,visited:a.isRequired,warning:c},y={dirty:a.isRequired,error:o,form:c.isRequired,invalid:a.isRequired,pristine:a.isRequired,submitFailed:a,submitting:a,valid:a.isRequired,warning:c},m={name:c.isRequired,forEach:u.isRequired,get:u.isRequired,getAll:u.isRequired,insert:u.isRequired,length:p.isRequired,map:u.isRequired,move:u.isRequired,pop:u.isRequired,push:u.isRequired,reduce:u.isRequired,remove:u.isRequired,removeAll:u.isRequired,shift:u.isRequired,swap:u.isRequired,unshift:u.isRequired},g={input:s(h).isRequired,meta:s(v).isRequired},b={fields:s(m).isRequired,meta:s(y).isRequired};t.a=d},function(e,t,n){"use strict";var r=n(560),i=n(3);t.a=n.i(r.a)(i.a)},function(e,t,n){"use strict";var r=n(561),i=n(3);t.a=n.i(r.a)(i.a)},function(e,t,n){"use strict";var r=function(e){var t=e.getIn;return function(e,n){return function(r){return t((n||function(e){return t(e,"form")})(r),e+".asyncErrors")}}};t.a=r},function(e,t,n){"use strict";var r=function(e){var t=e.getIn;return function(e,n){return function(r){return t((n||function(e){return t(e,"form")})(r),e+".error")}}};t.a=r},function(e,t,n){"use strict";var r=function(e){var t=e.getIn;return function(e,n){return function(r){return t((n||function(e){return t(e,"form")})(r),e+".initial")}}};t.a=r},function(e,t,n){"use strict";var r=function(e){var t=e.getIn,n=e.empty;return function(e,r){return function(i){return t((r||function(e){return t(e,"form")})(i),e+".fields")||n}}};t.a=r},function(e,t,n){"use strict";function r(e){var t=e.getIn,n=e.keys;return function(e){return function(r){return n((e||function(e){return t(e,"form")})(r))}}}t.a=r},function(e,t,n){"use strict";var r=function(e){var t=e.getIn,n=e.empty;return function(e,r){return function(i){return t((r||function(e){return t(e,"form")})(i),e+".submitErrors")||n}}};t.a=r},function(e,t,n){"use strict";var r=function(e){var t=e.getIn,n=e.empty;return function(e,r){return function(i){return t((r||function(e){return t(e,"form")})(i),e+".syncErrors")||n}}};t.a=r},function(e,t,n){"use strict";var r=function(e){var t=e.getIn,n=e.empty;return function(e,r){return function(i){return t((r||function(e){return t(e,"form")})(i),e+".syncWarnings")||n}}};t.a=r},function(e,t,n){"use strict";var r=function(e){var t=e.getIn;return function(e,n){return function(r){return t((n||function(e){return t(e,"form")})(r),e+".values")}}};t.a=r},function(e,t,n){"use strict";var r=function(e){var t=e.getIn;return function(e,n){return function(r){return!!t((n||function(e){return t(e,"form")})(r),e+".submitFailed")}}};t.a=r},function(e,t,n){"use strict";var r=function(e){var t=e.getIn;return function(e,n){return function(r){return!!t((n||function(e){return t(e,"form")})(r),e+".submitSucceeded")}}};t.a=r},function(e,t,n){"use strict";var r=n(209),i=function(e){return function(t,i){var o=n.i(r.a)(e)(t,i);return function(e){return!o(e)}}};t.a=i},function(e,t,n){"use strict";var r=n(134),i=function(e){return function(t,i){var o=n.i(r.a)(e)(t,i);return function(e){return!o(e)}}};t.a=i},function(e,t,n){"use strict";var r=function(e){var t=e.getIn;return function(e,n){return function(r){return!!t((n||function(e){return t(e,"form")})(r),e+".submitting")}}};t.a=r},function(e,t,n){"use strict";var r=n(188),i=n(11),o=n.n(i),a=function(e,t){if(e===t)return!0;if(!e&&!t){return(null===e||void 0===e||""===e)===(null===t||void 0===t||""===t)}return(!e||!t||e._error===t._error)&&((!e||!t||e._warning===t._warning)&&(!o.a.isValidElement(e)&&!o.a.isValidElement(t)&&void 0))},u=function(e,t){return n.i(r.a)(e,t,a)};t.a=u},function(e,t,n){"use strict";function r(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function i(e){if(Array.isArray(e)){for(var t=0,n=Array(e.length);t<e.length;t++)n[t]=e[t];return n}return Array.from(e)}function o(e,t){if(void 0===e||null===e||void 0===t||null===t)return e;for(var n=arguments.length,a=Array(n>2?n-2:0),s=2;s<n;s++)a[s-2]=arguments[s];if(a.length){if(Array.isArray(e)){if(isNaN(t))throw new Error('Must access array elements with a number, not "'+String(t)+'".');var c=Number(t);if(c<e.length){var l=o.apply(void 0,[e&&e[c]].concat(i(a)));if(l!==e[c]){var f=[].concat(i(e));return f[c]=l,f}}return e}if(t in e){var p=o.apply(void 0,[e&&e[t]].concat(i(a)));return e[t]===p?e:u({},e,r({},t,p))}return e}if(Array.isArray(e)){if(isNaN(t))throw new Error('Cannot delete non-numerical index from an array. Given: "'+String(t));var d=Number(t);if(d<e.length){var h=[].concat(i(e));return h.splice(d,1),h}return e}if(t in e){var v=u({},e);return delete v[t],v}return e}var a=n(87),u=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},s=function(e,t){return o.apply(void 0,[e].concat(i(n.i(a.a)(t))))};t.a=s},function(e,t,n){"use strict";var r=n(87),i=function(e,t){if(!e)return e;var i=n.i(r.a)(t),o=i.length;if(o){for(var a=e,u=0;u<o&&a;++u)a=a[i[u]];return a}};t.a=i},function(e,t,n){"use strict";function r(e){return e?Array.isArray(e)?e.map(function(e){return e.name}):Object.keys(e):[]}t.a=r},function(e,t,n){"use strict";function r(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var i=n(87),o=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},a=function e(t,n,i,a){if(a>=i.length)return n;var u=i[a],s=t&&(Array.isArray(t)?t[Number(u)]:t[u]),c=e(s,n,i,a+1);if(!t){if(isNaN(u))return r({},u,c);var l=[];return l[parseInt(u,10)]=c,l}if(Array.isArray(t)){var f=[].concat(t);return f[parseInt(u,10)]=c,f}return o({},t,r({},u,c))},u=function(e,t,r){return a(e,r,n.i(i.a)(t),0)};t.a=u},function(e,t,n){"use strict";function r(e){if(Array.isArray(e)){for(var t=0,n=Array(e.length);t<e.length;t++)n[t]=e[t];return n}return Array.from(e)}var i=function(e,t,n,i){if(e=e||[],t<e.length){if(void 0===i&&!n){var o=[].concat(r(e));return o.splice(t,0,!0),o[t]=void 0,o}if(null!=i){var a=[].concat(r(e));return a.splice(t,n,i),a}var u=[].concat(r(e));return u.splice(t,n),u}if(n)return e;var s=[].concat(r(e));return s[t]=i,s};t.a=i},function(e,t,n){"use strict";n.d(t,"a",function(){return r});var r="text"},function(e,t,n){"use strict";var r=function(e){return e.displayName||e.name||"Component"};t.a=r},function(e,t,n){"use strict";(function(e){var n=function(){return!(void 0===e||!e.hot||"function"!=typeof e.hot.status||"apply"!==e.hot.status())};t.a=n}).call(t,n(90)(e))},function(e,t,n){"use strict";var r=n(562),i=n(3);t.a=n.i(r.a)(i.a)},function(e,t,n){"use strict";function r(){for(var e=arguments.length,t=Array(e),n=0;n<e;n++)t[n]=arguments[n];return function(e){return function(n,r,a){var u=e(n,r,a),s=u.dispatch,c=[],l={getState:u.getState,dispatch:function(e){return s(e)}};return c=t.map(function(e){return e(l)}),s=i.a.apply(void 0,c)(u.dispatch),o({},u,{dispatch:s})}}}t.a=r;var i=n(211),o=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e}},function(e,t,n){"use strict";function r(e,t){return function(){return t(e.apply(void 0,arguments))}}function i(e,t){if("function"==typeof e)return r(e,t);if("object"!=typeof e||null===e)throw new Error("bindActionCreators expected an object or a function, instead received "+(null===e?"null":typeof e)+'. Did you write "import ActionCreators from" instead of "import * as ActionCreators from"?');for(var n=Object.keys(e),i={},o=0;o<n.length;o++){var a=n[o],u=e[a];"function"==typeof u&&(i[a]=r(u,t))}return i}t.a=i},function(e,t,n){"use strict";function r(e,t){var n=t&&t.type;return"Given action "+(n&&'"'+n.toString()+'"'||"an action")+', reducer "'+e+'" returned undefined. To ignore an action, you must explicitly return the previous state. If you want this reducer to hold no value, you can return null instead of undefined.'}function i(e){Object.keys(e).forEach(function(t){var n=e[t];if(void 0===n(void 0,{type:a.b.INIT}))throw new Error('Reducer "'+t+"\" returned undefined during initialization. If the state passed to the reducer is undefined, you must explicitly return the initial state. The initial state may not be undefined. If you don't want to set a value for this reducer, you can use null instead of undefined.");if(void 0===n(void 0,{type:"@@redux/PROBE_UNKNOWN_ACTION_"+Math.random().toString(36).substring(7).split("").join(".")}))throw new Error('Reducer "'+t+"\" returned undefined when probed with a random type. Don't try to handle "+a.b.INIT+' or other actions in "redux/*" namespace. They are considered private. Instead, you must return the current state for any unknown actions, unless it is undefined, in which case you must return the initial state, regardless of the action type. The initial state may not be undefined, but can be null.')})}function o(e){for(var t=Object.keys(e),n={},o=0;o<t.length;o++){var a=t[o];"function"==typeof e[a]&&(n[a]=e[a])}var u=Object.keys(n),s=void 0;try{i(n)}catch(e){s=e}return function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=arguments[1];if(s)throw s;for(var i=!1,o={},a=0;a<u.length;a++){var c=u[a],l=n[c],f=e[c],p=l(f,t);if(void 0===p){var d=r(c,t);throw new Error(d)}o[c]=p,i=i||p!==f}return i?o:e}}t.a=o;var a=n(212);n(85),n(213)},function(e,t,n){(function(t){!function(t){"use strict";function n(e,t,n,r){var o=t&&t.prototype instanceof i?t:i,a=Object.create(o.prototype),u=new d(r||[]);return a._invoke=c(e,n,u),a}function r(e,t,n){try{return{type:"normal",arg:e.call(t,n)}}catch(e){return{type:"throw",arg:e}}}function i(){}function o(){}function a(){}function u(e){["next","throw","return"].forEach(function(t){e[t]=function(e){return this._invoke(t,e)}})}function s(e){function n(t,i,o,a){var u=r(e[t],e,i);if("throw"!==u.type){var s=u.arg,c=s.value;return c&&"object"==typeof c&&g.call(c,"__await")?Promise.resolve(c.__await).then(function(e){n("next",e,o,a)},function(e){n("throw",e,o,a)}):Promise.resolve(c).then(function(e){s.value=e,o(s)},a)}a(u.arg)}function i(e,t){function r(){return new Promise(function(r,i){n(e,t,r,i)})}return o=o?o.then(r,r):r()}"object"==typeof t.process&&t.process.domain&&(n=t.process.domain.bind(n));var o;this._invoke=i}function c(e,t,n){var i=x;return function(o,a){if(i===k)throw new Error("Generator is already running");if(i===C){if("throw"===o)throw a;return v()}for(n.method=o,n.arg=a;;){var u=n.delegate;if(u){var s=l(u,n);if(s){if(s===P)continue;return s}}if("next"===n.method)n.sent=n._sent=n.arg;else if("throw"===n.method){if(i===x)throw i=C,n.arg;n.dispatchException(n.arg)}else"return"===n.method&&n.abrupt("return",n.arg);i=k;var c=r(e,t,n);if("normal"===c.type){if(i=n.done?C:j,c.arg===P)continue;return{value:c.arg,done:n.done}}"throw"===c.type&&(i=C,n.method="throw",n.arg=c.arg)}}}function l(e,t){var n=e.iterator[t.method];if(n===y){if(t.delegate=null,"throw"===t.method){if(e.iterator.return&&(t.method="return",t.arg=y,l(e,t),"throw"===t.method))return P;t.method="throw",t.arg=new TypeError("The iterator does not provide a 'throw' method")}return P}var i=r(n,e.iterator,t.arg);if("throw"===i.type)return t.method="throw",t.arg=i.arg,t.delegate=null,P;var o=i.arg;return o?o.done?(t[e.resultName]=o.value,t.next=e.nextLoc,"return"!==t.method&&(t.method="next",t.arg=y),t.delegate=null,P):o:(t.method="throw",t.arg=new TypeError("iterator result is not an object"),t.delegate=null,P)}function f(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function p(e){var t=e.completion||{};t.type="normal",delete t.arg,e.completion=t}function d(e){this.tryEntries=[{tryLoc:"root"}],e.forEach(f,this),this.reset(!0)}function h(e){if(e){var t=e[O];if(t)return t.call(e);if("function"==typeof e.next)return e;if(!isNaN(e.length)){var n=-1,r=function t(){for(;++n<e.length;)if(g.call(e,n))return t.value=e[n],t.done=!1,t;return t.value=y,t.done=!0,t};return r.next=r}}return{next:v}}function v(){return{value:y,done:!0}}var y,m=Object.prototype,g=m.hasOwnProperty,b="function"==typeof Symbol?Symbol:{},O=b.iterator||"@@iterator",w=b.asyncIterator||"@@asyncIterator",_=b.toStringTag||"@@toStringTag",S="object"==typeof e,E=t.regeneratorRuntime;if(E)return void(S&&(e.exports=E));E=t.regeneratorRuntime=S?e.exports:{},E.wrap=n;var x="suspendedStart",j="suspendedYield",k="executing",C="completed",P={},R={};R[O]=function(){return this};var A=Object.getPrototypeOf,T=A&&A(A(h([])));T&&T!==m&&g.call(T,O)&&(R=T);var F=a.prototype=i.prototype=Object.create(R);o.prototype=F.constructor=a,a.constructor=o,a[_]=o.displayName="GeneratorFunction",E.isGeneratorFunction=function(e){var t="function"==typeof e&&e.constructor;return!!t&&(t===o||"GeneratorFunction"===(t.displayName||t.name))},E.mark=function(e){return Object.setPrototypeOf?Object.setPrototypeOf(e,a):(e.__proto__=a,_ in e||(e[_]="GeneratorFunction")),e.prototype=Object.create(F),e},E.awrap=function(e){return{__await:e}},u(s.prototype),s.prototype[w]=function(){return this},E.AsyncIterator=s,E.async=function(e,t,r,i){var o=new s(n(e,t,r,i));return E.isGeneratorFunction(t)?o:o.next().then(function(e){return e.done?e.value:o.next()})},u(F),F[_]="Generator",F[O]=function(){return this},F.toString=function(){return"[object Generator]"},E.keys=function(e){var t=[];for(var n in e)t.push(n);return t.reverse(),function n(){for(;t.length;){var r=t.pop();if(r in e)return n.value=r,n.done=!1,n}return n.done=!0,n}},E.values=h,d.prototype={constructor:d,reset:function(e){if(this.prev=0,this.next=0,this.sent=this._sent=y,this.done=!1,this.delegate=null,this.method="next",this.arg=y,this.tryEntries.forEach(p),!e)for(var t in this)"t"===t.charAt(0)&&g.call(this,t)&&!isNaN(+t.slice(1))&&(this[t]=y)},stop:function(){this.done=!0;var e=this.tryEntries[0],t=e.completion;if("throw"===t.type)throw t.arg;return this.rval},dispatchException:function(e){function t(t,r){return o.type="throw",o.arg=e,n.next=t,r&&(n.method="next",n.arg=y),!!r}if(this.done)throw e;for(var n=this,r=this.tryEntries.length-1;r>=0;--r){var i=this.tryEntries[r],o=i.completion;if("root"===i.tryLoc)return t("end");if(i.tryLoc<=this.prev){var a=g.call(i,"catchLoc"),u=g.call(i,"finallyLoc");if(a&&u){if(this.prev<i.catchLoc)return t(i.catchLoc,!0);if(this.prev<i.finallyLoc)return t(i.finallyLoc)}else if(a){if(this.prev<i.catchLoc)return t(i.catchLoc,!0)}else{if(!u)throw new Error("try statement without catch or finally");if(this.prev<i.finallyLoc)return t(i.finallyLoc)}}}},abrupt:function(e,t){for(var n=this.tryEntries.length-1;n>=0;--n){var r=this.tryEntries[n];if(r.tryLoc<=this.prev&&g.call(r,"finallyLoc")&&this.prev<r.finallyLoc){var i=r;break}}i&&("break"===e||"continue"===e)&&i.tryLoc<=t&&t<=i.finallyLoc&&(i=null);var o=i?i.completion:{};return o.type=e,o.arg=t,i?(this.method="next",this.next=i.finallyLoc,P):this.complete(o)},complete:function(e,t){if("throw"===e.type)throw e.arg;return"break"===e.type||"continue"===e.type?this.next=e.arg:"return"===e.type?(this.rval=this.arg=e.arg,this.method="return",this.next="end"):"normal"===e.type&&t&&(this.next=t),P},finish:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),p(n),P}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var r=n.completion;if("throw"===r.type){var i=r.arg;p(n)}return i}}throw new Error("illegal catch attempt")},delegateYield:function(e,t,n){return this.delegate={iterator:h(e),resultName:t,nextLoc:n},"next"===this.method&&(this.arg=y),P}}}("object"==typeof t?t:"object"==typeof window?window:"object"==typeof self?self:this)}).call(t,n(89))},function(e,t,n){e.exports=n(619)},function(e,t,n){"use strict";(function(e,r){Object.defineProperty(t,"__esModule",{value:!0});var i,o=n(620),a=function(e){return e&&e.__esModule?e:{default:e}}(o);i="undefined"!=typeof self?self:"undefined"!=typeof window?window:void 0!==e?e:r;var u=(0,a.default)(i);t.default=u}).call(t,n(89),n(621)(e))},function(e,t,n){"use strict";function r(e){var t,n=e.Symbol;return"function"==typeof n?n.observable?t=n.observable:(t=n("observable"),n.observable=t):t="@@observable",t}Object.defineProperty(t,"__esModule",{value:!0}),t.default=r},function(e,t){e.exports=function(e){return e.webpackPolyfill||(e.deprecate=function(){},e.paths=[],e.children||(e.children=[]),Object.defineProperty(e,"loaded",{enumerable:!0,get:function(){return e.l}}),Object.defineProperty(e,"id",{enumerable:!0,get:function(){return e.i}}),e.webpackPolyfill=1),e}},function(e,t,n){n(215),e.exports=n(214)}]);
vendor/assets/anything-slider/js/jquery.min.js
sliaquat/spree_slider
/*! * jQuery JavaScript Library v1.6.2 * http://jquery.com/ * * Copyright 2011, John Resig * Dual licensed under the MIT or GPL Version 2 licenses. * http://jquery.org/license * * Includes Sizzle.js * http://sizzlejs.com/ * Copyright 2011, The Dojo Foundation * Released under the MIT, BSD, and GPL Licenses. * * Date: Thu Jun 30 14:16:56 2011 -0400 */ (function(a,b){function cv(a){return f.isWindow(a)?a:a.nodeType===9?a.defaultView||a.parentWindow:!1}function cs(a){if(!cg[a]){var b=c.body,d=f("<"+a+">").appendTo(b),e=d.css("display");d.remove();if(e==="none"||e===""){ch||(ch=c.createElement("iframe"),ch.frameBorder=ch.width=ch.height=0),b.appendChild(ch);if(!ci||!ch.createElement)ci=(ch.contentWindow||ch.contentDocument).document,ci.write((c.compatMode==="CSS1Compat"?"<!doctype html>":"")+"<html><body>"),ci.close();d=ci.createElement(a),ci.body.appendChild(d),e=f.css(d,"display"),b.removeChild(ch)}cg[a]=e}return cg[a]}function cr(a,b){var c={};f.each(cm.concat.apply([],cm.slice(0,b)),function(){c[this]=a});return c}function cq(){cn=b}function cp(){setTimeout(cq,0);return cn=f.now()}function cf(){try{return new a.ActiveXObject("Microsoft.XMLHTTP")}catch(b){}}function ce(){try{return new a.XMLHttpRequest}catch(b){}}function b$(a,c){a.dataFilter&&(c=a.dataFilter(c,a.dataType));var d=a.dataTypes,e={},g,h,i=d.length,j,k=d[0],l,m,n,o,p;for(g=1;g<i;g++){if(g===1)for(h in a.converters)typeof h=="string"&&(e[h.toLowerCase()]=a.converters[h]);l=k,k=d[g];if(k==="*")k=l;else if(l!=="*"&&l!==k){m=l+" "+k,n=e[m]||e["* "+k];if(!n){p=b;for(o in e){j=o.split(" ");if(j[0]===l||j[0]==="*"){p=e[j[1]+" "+k];if(p){o=e[o],o===!0?n=p:p===!0&&(n=o);break}}}}!n&&!p&&f.error("No conversion from "+m.replace(" "," to ")),n!==!0&&(c=n?n(c):p(o(c)))}}return c}function bZ(a,c,d){var e=a.contents,f=a.dataTypes,g=a.responseFields,h,i,j,k;for(i in g)i in d&&(c[g[i]]=d[i]);while(f[0]==="*")f.shift(),h===b&&(h=a.mimeType||c.getResponseHeader("content-type"));if(h)for(i in e)if(e[i]&&e[i].test(h)){f.unshift(i);break}if(f[0]in d)j=f[0];else{for(i in d){if(!f[0]||a.converters[i+" "+f[0]]){j=i;break}k||(k=i)}j=j||k}if(j){j!==f[0]&&f.unshift(j);return d[j]}}function bY(a,b,c,d){if(f.isArray(b))f.each(b,function(b,e){c||bC.test(a)?d(a,e):bY(a+"["+(typeof e=="object"||f.isArray(e)?b:"")+"]",e,c,d)});else if(!c&&b!=null&&typeof b=="object")for(var e in b)bY(a+"["+e+"]",b[e],c,d);else d(a,b)}function bX(a,c,d,e,f,g){f=f||c.dataTypes[0],g=g||{},g[f]=!0;var h=a[f],i=0,j=h?h.length:0,k=a===bR,l;for(;i<j&&(k||!l);i++)l=h[i](c,d,e),typeof l=="string"&&(!k||g[l]?l=b:(c.dataTypes.unshift(l),l=bX(a,c,d,e,l,g)));(k||!l)&&!g["*"]&&(l=bX(a,c,d,e,"*",g));return l}function bW(a){return function(b,c){typeof b!="string"&&(c=b,b="*");if(f.isFunction(c)){var d=b.toLowerCase().split(bN),e=0,g=d.length,h,i,j;for(;e<g;e++)h=d[e],j=/^\+/.test(h),j&&(h=h.substr(1)||"*"),i=a[h]=a[h]||[],i[j?"unshift":"push"](c)}}}function bA(a,b,c){var d=b==="width"?a.offsetWidth:a.offsetHeight,e=b==="width"?bv:bw;if(d>0){c!=="border"&&f.each(e,function(){c||(d-=parseFloat(f.css(a,"padding"+this))||0),c==="margin"?d+=parseFloat(f.css(a,c+this))||0:d-=parseFloat(f.css(a,"border"+this+"Width"))||0});return d+"px"}d=bx(a,b,b);if(d<0||d==null)d=a.style[b]||0;d=parseFloat(d)||0,c&&f.each(e,function(){d+=parseFloat(f.css(a,"padding"+this))||0,c!=="padding"&&(d+=parseFloat(f.css(a,"border"+this+"Width"))||0),c==="margin"&&(d+=parseFloat(f.css(a,c+this))||0)});return d+"px"}function bm(a,b){b.src?f.ajax({url:b.src,async:!1,dataType:"script"}):f.globalEval((b.text||b.textContent||b.innerHTML||"").replace(be,"/*$0*/")),b.parentNode&&b.parentNode.removeChild(b)}function bl(a){f.nodeName(a,"input")?bk(a):"getElementsByTagName"in a&&f.grep(a.getElementsByTagName("input"),bk)}function bk(a){if(a.type==="checkbox"||a.type==="radio")a.defaultChecked=a.checked}function bj(a){return"getElementsByTagName"in a?a.getElementsByTagName("*"):"querySelectorAll"in a?a.querySelectorAll("*"):[]}function bi(a,b){var c;if(b.nodeType===1){b.clearAttributes&&b.clearAttributes(),b.mergeAttributes&&b.mergeAttributes(a),c=b.nodeName.toLowerCase();if(c==="object")b.outerHTML=a.outerHTML;else if(c!=="input"||a.type!=="checkbox"&&a.type!=="radio"){if(c==="option")b.selected=a.defaultSelected;else if(c==="input"||c==="textarea")b.defaultValue=a.defaultValue}else a.checked&&(b.defaultChecked=b.checked=a.checked),b.value!==a.value&&(b.value=a.value);b.removeAttribute(f.expando)}}function bh(a,b){if(b.nodeType===1&&!!f.hasData(a)){var c=f.expando,d=f.data(a),e=f.data(b,d);if(d=d[c]){var g=d.events;e=e[c]=f.extend({},d);if(g){delete e.handle,e.events={};for(var h in g)for(var i=0,j=g[h].length;i<j;i++)f.event.add(b,h+(g[h][i].namespace?".":"")+g[h][i].namespace,g[h][i],g[h][i].data)}}}}function bg(a,b){return f.nodeName(a,"table")?a.getElementsByTagName("tbody")[0]||a.appendChild(a.ownerDocument.createElement("tbody")):a}function W(a,b,c){b=b||0;if(f.isFunction(b))return f.grep(a,function(a,d){var e=!!b.call(a,d,a);return e===c});if(b.nodeType)return f.grep(a,function(a,d){return a===b===c});if(typeof b=="string"){var d=f.grep(a,function(a){return a.nodeType===1});if(R.test(b))return f.filter(b,d,!c);b=f.filter(b,d)}return f.grep(a,function(a,d){return f.inArray(a,b)>=0===c})}function V(a){return!a||!a.parentNode||a.parentNode.nodeType===11}function N(a,b){return(a&&a!=="*"?a+".":"")+b.replace(z,"`").replace(A,"&")}function M(a){var b,c,d,e,g,h,i,j,k,l,m,n,o,p=[],q=[],r=f._data(this,"events");if(!(a.liveFired===this||!r||!r.live||a.target.disabled||a.button&&a.type==="click")){a.namespace&&(n=new RegExp("(^|\\.)"+a.namespace.split(".").join("\\.(?:.*\\.)?")+"(\\.|$)")),a.liveFired=this;var s=r.live.slice(0);for(i=0;i<s.length;i++)g=s[i],g.origType.replace(x,"")===a.type?q.push(g.selector):s.splice(i--,1);e=f(a.target).closest(q,a.currentTarget);for(j=0,k=e.length;j<k;j++){m=e[j];for(i=0;i<s.length;i++){g=s[i];if(m.selector===g.selector&&(!n||n.test(g.namespace))&&!m.elem.disabled){h=m.elem,d=null;if(g.preType==="mouseenter"||g.preType==="mouseleave")a.type=g.preType,d=f(a.relatedTarget).closest(g.selector)[0],d&&f.contains(h,d)&&(d=h);(!d||d!==h)&&p.push({elem:h,handleObj:g,level:m.level})}}}for(j=0,k=p.length;j<k;j++){e=p[j];if(c&&e.level>c)break;a.currentTarget=e.elem,a.data=e.handleObj.data,a.handleObj=e.handleObj,o=e.handleObj.origHandler.apply(e.elem,arguments);if(o===!1||a.isPropagationStopped()){c=e.level,o===!1&&(b=!1);if(a.isImmediatePropagationStopped())break}}return b}}function K(a,c,d){var e=f.extend({},d[0]);e.type=a,e.originalEvent={},e.liveFired=b,f.event.handle.call(c,e),e.isDefaultPrevented()&&d[0].preventDefault()}function E(){return!0}function D(){return!1}function m(a,c,d){var e=c+"defer",g=c+"queue",h=c+"mark",i=f.data(a,e,b,!0);i&&(d==="queue"||!f.data(a,g,b,!0))&&(d==="mark"||!f.data(a,h,b,!0))&&setTimeout(function(){!f.data(a,g,b,!0)&&!f.data(a,h,b,!0)&&(f.removeData(a,e,!0),i.resolve())},0)}function l(a){for(var b in a)if(b!=="toJSON")return!1;return!0}function k(a,c,d){if(d===b&&a.nodeType===1){var e="data-"+c.replace(j,"$1-$2").toLowerCase();d=a.getAttribute(e);if(typeof d=="string"){try{d=d==="true"?!0:d==="false"?!1:d==="null"?null:f.isNaN(d)?i.test(d)?f.parseJSON(d):d:parseFloat(d)}catch(g){}f.data(a,c,d)}else d=b}return d}var c=a.document,d=a.navigator,e=a.location,f=function(){function J(){if(!e.isReady){try{c.documentElement.doScroll("left")}catch(a){setTimeout(J,1);return}e.ready()}}var e=function(a,b){return new e.fn.init(a,b,h)},f=a.jQuery,g=a.$,h,i=/^(?:[^<]*(<[\w\W]+>)[^>]*$|#([\w\-]*)$)/,j=/\S/,k=/^\s+/,l=/\s+$/,m=/\d/,n=/^<(\w+)\s*\/?>(?:<\/\1>)?$/,o=/^[\],:{}\s]*$/,p=/\\(?:["\\\/bfnrt]|u[0-9a-fA-F]{4})/g,q=/"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g,r=/(?:^|:|,)(?:\s*\[)+/g,s=/(webkit)[ \/]([\w.]+)/,t=/(opera)(?:.*version)?[ \/]([\w.]+)/,u=/(msie) ([\w.]+)/,v=/(mozilla)(?:.*? rv:([\w.]+))?/,w=/-([a-z])/ig,x=function(a,b){return b.toUpperCase()},y=d.userAgent,z,A,B,C=Object.prototype.toString,D=Object.prototype.hasOwnProperty,E=Array.prototype.push,F=Array.prototype.slice,G=String.prototype.trim,H=Array.prototype.indexOf,I={};e.fn=e.prototype={constructor:e,init:function(a,d,f){var g,h,j,k;if(!a)return this;if(a.nodeType){this.context=this[0]=a,this.length=1;return this}if(a==="body"&&!d&&c.body){this.context=c,this[0]=c.body,this.selector=a,this.length=1;return this}if(typeof a=="string"){a.charAt(0)!=="<"||a.charAt(a.length-1)!==">"||a.length<3?g=i.exec(a):g=[null,a,null];if(g&&(g[1]||!d)){if(g[1]){d=d instanceof e?d[0]:d,k=d?d.ownerDocument||d:c,j=n.exec(a),j?e.isPlainObject(d)?(a=[c.createElement(j[1])],e.fn.attr.call(a,d,!0)):a=[k.createElement(j[1])]:(j=e.buildFragment([g[1]],[k]),a=(j.cacheable?e.clone(j.fragment):j.fragment).childNodes);return e.merge(this,a)}h=c.getElementById(g[2]);if(h&&h.parentNode){if(h.id!==g[2])return f.find(a);this.length=1,this[0]=h}this.context=c,this.selector=a;return this}return!d||d.jquery?(d||f).find(a):this.constructor(d).find(a)}if(e.isFunction(a))return f.ready(a);a.selector!==b&&(this.selector=a.selector,this.context=a.context);return e.makeArray(a,this)},selector:"",jquery:"1.6.2",length:0,size:function(){return this.length},toArray:function(){return F.call(this,0)},get:function(a){return a==null?this.toArray():a<0?this[this.length+a]:this[a]},pushStack:function(a,b,c){var d=this.constructor();e.isArray(a)?E.apply(d,a):e.merge(d,a),d.prevObject=this,d.context=this.context,b==="find"?d.selector=this.selector+(this.selector?" ":"")+c:b&&(d.selector=this.selector+"."+b+"("+c+")");return d},each:function(a,b){return e.each(this,a,b)},ready:function(a){e.bindReady(),A.done(a);return this},eq:function(a){return a===-1?this.slice(a):this.slice(a,+a+1)},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},slice:function(){return this.pushStack(F.apply(this,arguments),"slice",F.call(arguments).join(","))},map:function(a){return this.pushStack(e.map(this,function(b,c){return a.call(b,c,b)}))},end:function(){return this.prevObject||this.constructor(null)},push:E,sort:[].sort,splice:[].splice},e.fn.init.prototype=e.fn,e.extend=e.fn.extend=function(){var a,c,d,f,g,h,i=arguments[0]||{},j=1,k=arguments.length,l=!1;typeof i=="boolean"&&(l=i,i=arguments[1]||{},j=2),typeof i!="object"&&!e.isFunction(i)&&(i={}),k===j&&(i=this,--j);for(;j<k;j++)if((a=arguments[j])!=null)for(c in a){d=i[c],f=a[c];if(i===f)continue;l&&f&&(e.isPlainObject(f)||(g=e.isArray(f)))?(g?(g=!1,h=d&&e.isArray(d)?d:[]):h=d&&e.isPlainObject(d)?d:{},i[c]=e.extend(l,h,f)):f!==b&&(i[c]=f)}return i},e.extend({noConflict:function(b){a.$===e&&(a.$=g),b&&a.jQuery===e&&(a.jQuery=f);return e},isReady:!1,readyWait:1,holdReady:function(a){a?e.readyWait++:e.ready(!0)},ready:function(a){if(a===!0&&!--e.readyWait||a!==!0&&!e.isReady){if(!c.body)return setTimeout(e.ready,1);e.isReady=!0;if(a!==!0&&--e.readyWait>0)return;A.resolveWith(c,[e]),e.fn.trigger&&e(c).trigger("ready").unbind("ready")}},bindReady:function(){if(!A){A=e._Deferred();if(c.readyState==="complete")return setTimeout(e.ready,1);if(c.addEventListener)c.addEventListener("DOMContentLoaded",B,!1),a.addEventListener("load",e.ready,!1);else if(c.attachEvent){c.attachEvent("onreadystatechange",B),a.attachEvent("onload",e.ready);var b=!1;try{b=a.frameElement==null}catch(d){}c.documentElement.doScroll&&b&&J()}}},isFunction:function(a){return e.type(a)==="function"},isArray:Array.isArray||function(a){return e.type(a)==="array"},isWindow:function(a){return a&&typeof a=="object"&&"setInterval"in a},isNaN:function(a){return a==null||!m.test(a)||isNaN(a)},type:function(a){return a==null?String(a):I[C.call(a)]||"object"},isPlainObject:function(a){if(!a||e.type(a)!=="object"||a.nodeType||e.isWindow(a))return!1;if(a.constructor&&!D.call(a,"constructor")&&!D.call(a.constructor.prototype,"isPrototypeOf"))return!1;var c;for(c in a);return c===b||D.call(a,c)},isEmptyObject:function(a){for(var b in a)return!1;return!0},error:function(a){throw a},parseJSON:function(b){if(typeof b!="string"||!b)return null;b=e.trim(b);if(a.JSON&&a.JSON.parse)return a.JSON.parse(b);if(o.test(b.replace(p,"@").replace(q,"]").replace(r,"")))return(new Function("return "+b))();e.error("Invalid JSON: "+b)},parseXML:function(b,c,d){a.DOMParser?(d=new DOMParser,c=d.parseFromString(b,"text/xml")):(c=new ActiveXObject("Microsoft.XMLDOM"),c.async="false",c.loadXML(b)),d=c.documentElement,(!d||!d.nodeName||d.nodeName==="parsererror")&&e.error("Invalid XML: "+b);return c},noop:function(){},globalEval:function(b){b&&j.test(b)&&(a.execScript||function(b){a.eval.call(a,b)})(b)},camelCase:function(a){return a.replace(w,x)},nodeName:function(a,b){return a.nodeName&&a.nodeName.toUpperCase()===b.toUpperCase()},each:function(a,c,d){var f,g=0,h=a.length,i=h===b||e.isFunction(a);if(d){if(i){for(f in a)if(c.apply(a[f],d)===!1)break}else for(;g<h;)if(c.apply(a[g++],d)===!1)break}else if(i){for(f in a)if(c.call(a[f],f,a[f])===!1)break}else for(;g<h;)if(c.call(a[g],g,a[g++])===!1)break;return a},trim:G?function(a){return a==null?"":G.call(a)}:function(a){return a==null?"":(a+"").replace(k,"").replace(l,"")},makeArray:function(a,b){var c=b||[];if(a!=null){var d=e.type(a);a.length==null||d==="string"||d==="function"||d==="regexp"||e.isWindow(a)?E.call(c,a):e.merge(c,a)}return c},inArray:function(a,b){if(H)return H.call(b,a);for(var c=0,d=b.length;c<d;c++)if(b[c]===a)return c;return-1},merge:function(a,c){var d=a.length,e=0;if(typeof c.length=="number")for(var f=c.length;e<f;e++)a[d++]=c[e];else while(c[e]!==b)a[d++]=c[e++];a.length=d;return a},grep:function(a,b,c){var d=[],e;c=!!c;for(var f=0,g=a.length;f<g;f++)e=!!b(a[f],f),c!==e&&d.push(a[f]);return d},map:function(a,c,d){var f,g,h=[],i=0,j=a.length,k=a instanceof e||j!==b&&typeof j=="number"&&(j>0&&a[0]&&a[j-1]||j===0||e.isArray(a));if(k)for(;i<j;i++)f=c(a[i],i,d),f!=null&&(h[h.length]=f);else for(g in a)f=c(a[g],g,d),f!=null&&(h[h.length]=f);return h.concat.apply([],h)},guid:1,proxy:function(a,c){if(typeof c=="string"){var d=a[c];c=a,a=d}if(!e.isFunction(a))return b;var f=F.call(arguments,2),g=function(){return a.apply(c,f.concat(F.call(arguments)))};g.guid=a.guid=a.guid||g.guid||e.guid++;return g},access:function(a,c,d,f,g,h){var i=a.length;if(typeof c=="object"){for(var j in c)e.access(a,j,c[j],f,g,d);return a}if(d!==b){f=!h&&f&&e.isFunction(d);for(var k=0;k<i;k++)g(a[k],c,f?d.call(a[k],k,g(a[k],c)):d,h);return a}return i?g(a[0],c):b},now:function(){return(new Date).getTime()},uaMatch:function(a){a=a.toLowerCase();var b=s.exec(a)||t.exec(a)||u.exec(a)||a.indexOf("compatible")<0&&v.exec(a)||[];return{browser:b[1]||"",version:b[2]||"0"}},sub:function(){function a(b,c){return new a.fn.init(b,c)}e.extend(!0,a,this),a.superclass=this,a.fn=a.prototype=this(),a.fn.constructor=a,a.sub=this.sub,a.fn.init=function(d,f){f&&f instanceof e&&!(f instanceof a)&&(f=a(f));return e.fn.init.call(this,d,f,b)},a.fn.init.prototype=a.fn;var b=a(c);return a},browser:{}}),e.each("Boolean Number String Function Array Date RegExp Object".split(" "),function(a,b){I["[object "+b+"]"]=b.toLowerCase()}),z=e.uaMatch(y),z.browser&&(e.browser[z.browser]=!0,e.browser.version=z.version),e.browser.webkit&&(e.browser.safari=!0),j.test(" ")&&(k=/^[\s\xA0]+/,l=/[\s\xA0]+$/),h=e(c),c.addEventListener?B=function(){c.removeEventListener("DOMContentLoaded",B,!1),e.ready()}:c.attachEvent&&(B=function(){c.readyState==="complete"&&(c.detachEvent("onreadystatechange",B),e.ready())});return e}(),g="done fail isResolved isRejected promise then always pipe".split(" "),h=[].slice;f.extend({_Deferred:function(){var a=[],b,c,d,e={done:function(){if(!d){var c=arguments,g,h,i,j,k;b&&(k=b,b=0);for(g=0,h=c.length;g<h;g++)i=c[g],j=f.type(i),j==="array"?e.done.apply(e,i):j==="function"&&a.push(i);k&&e.resolveWith(k[0],k[1])}return this},resolveWith:function(e,f){if(!d&&!b&&!c){f=f||[],c=1;try{while(a[0])a.shift().apply(e,f)}finally{b=[e,f],c=0}}return this},resolve:function(){e.resolveWith(this,arguments);return this},isResolved:function(){return!!c||!!b},cancel:function(){d=1,a=[];return this}};return e},Deferred:function(a){var b=f._Deferred(),c=f._Deferred(),d;f.extend(b,{then:function(a,c){b.done(a).fail(c);return this},always:function(){return b.done.apply(b,arguments).fail.apply(this,arguments)},fail:c.done,rejectWith:c.resolveWith,reject:c.resolve,isRejected:c.isResolved,pipe:function(a,c){return f.Deferred(function(d){f.each({done:[a,"resolve"],fail:[c,"reject"]},function(a,c){var e=c[0],g=c[1],h;f.isFunction(e)?b[a](function(){h=e.apply(this,arguments),h&&f.isFunction(h.promise)?h.promise().then(d.resolve,d.reject):d[g](h)}):b[a](d[g])})}).promise()},promise:function(a){if(a==null){if(d)return d;d=a={}}var c=g.length;while(c--)a[g[c]]=b[g[c]];return a}}),b.done(c.cancel).fail(b.cancel),delete b.cancel,a&&a.call(b,b);return b},when:function(a){function i(a){return function(c){b[a]=arguments.length>1?h.call(arguments,0):c,--e||g.resolveWith(g,h.call(b,0))}}var b=arguments,c=0,d=b.length,e=d,g=d<=1&&a&&f.isFunction(a.promise)?a:f.Deferred();if(d>1){for(;c<d;c++)b[c]&&f.isFunction(b[c].promise)?b[c].promise().then(i(c),g.reject):--e;e||g.resolveWith(g,b)}else g!==a&&g.resolveWith(g,d?[a]:[]);return g.promise()}}),f.support=function(){var a=c.createElement("div"),b=c.documentElement,d,e,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u;a.setAttribute("className","t"),a.innerHTML=" <link/><table></table><a href='/a' style='top:1px;float:left;opacity:.55;'>a</a><input type='checkbox'/>",d=a.getElementsByTagName("*"),e=a.getElementsByTagName("a")[0];if(!d||!d.length||!e)return{};g=c.createElement("select"),h=g.appendChild(c.createElement("option")),i=a.getElementsByTagName("input")[0],k={leadingWhitespace:a.firstChild.nodeType===3,tbody:!a.getElementsByTagName("tbody").length,htmlSerialize:!!a.getElementsByTagName("link").length,style:/top/.test(e.getAttribute("style")),hrefNormalized:e.getAttribute("href")==="/a",opacity:/^0.55$/.test(e.style.opacity),cssFloat:!!e.style.cssFloat,checkOn:i.value==="on",optSelected:h.selected,getSetAttribute:a.className!=="t",submitBubbles:!0,changeBubbles:!0,focusinBubbles:!1,deleteExpando:!0,noCloneEvent:!0,inlineBlockNeedsLayout:!1,shrinkWrapBlocks:!1,reliableMarginRight:!0},i.checked=!0,k.noCloneChecked=i.cloneNode(!0).checked,g.disabled=!0,k.optDisabled=!h.disabled;try{delete a.test}catch(v){k.deleteExpando=!1}!a.addEventListener&&a.attachEvent&&a.fireEvent&&(a.attachEvent("onclick",function(){k.noCloneEvent=!1}),a.cloneNode(!0).fireEvent("onclick")),i=c.createElement("input"),i.value="t",i.setAttribute("type","radio"),k.radioValue=i.value==="t",i.setAttribute("checked","checked"),a.appendChild(i),l=c.createDocumentFragment(),l.appendChild(a.firstChild),k.checkClone=l.cloneNode(!0).cloneNode(!0).lastChild.checked,a.innerHTML="",a.style.width=a.style.paddingLeft="1px",m=c.getElementsByTagName("body")[0],o=c.createElement(m?"div":"body"),p={visibility:"hidden",width:0,height:0,border:0,margin:0},m&&f.extend(p,{position:"absolute",left:-1e3,top:-1e3});for(t in p)o.style[t]=p[t];o.appendChild(a),n=m||b,n.insertBefore(o,n.firstChild),k.appendChecked=i.checked,k.boxModel=a.offsetWidth===2,"zoom"in a.style&&(a.style.display="inline",a.style.zoom=1,k.inlineBlockNeedsLayout=a.offsetWidth===2,a.style.display="",a.innerHTML="<div style='width:4px;'></div>",k.shrinkWrapBlocks=a.offsetWidth!==2),a.innerHTML="<table><tr><td style='padding:0;border:0;display:none'></td><td>t</td></tr></table>",q=a.getElementsByTagName("td"),u=q[0].offsetHeight===0,q[0].style.display="",q[1].style.display="none",k.reliableHiddenOffsets=u&&q[0].offsetHeight===0,a.innerHTML="",c.defaultView&&c.defaultView.getComputedStyle&&(j=c.createElement("div"),j.style.width="0",j.style.marginRight="0",a.appendChild(j),k.reliableMarginRight=(parseInt((c.defaultView.getComputedStyle(j,null)||{marginRight:0}).marginRight,10)||0)===0),o.innerHTML="",n.removeChild(o);if(a.attachEvent)for(t in{submit:1,change:1,focusin:1})s="on"+t,u=s in a,u||(a.setAttribute(s,"return;"),u=typeof a[s]=="function"),k[t+"Bubbles"]=u;o=l=g=h=m=j=a=i=null;return k}(),f.boxModel=f.support.boxModel;var i=/^(?:\{.*\}|\[.*\])$/,j=/([a-z])([A-Z])/g;f.extend({cache:{},uuid:0,expando:"jQuery"+(f.fn.jquery+Math.random()).replace(/\D/g,""),noData:{embed:!0,object:"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000",applet:!0},hasData:function(a){a=a.nodeType?f.cache[a[f.expando]]:a[f.expando];return!!a&&!l(a)},data:function(a,c,d,e){if(!!f.acceptData(a)){var g=f.expando,h=typeof c=="string",i,j=a.nodeType,k=j?f.cache:a,l=j?a[f.expando]:a[f.expando]&&f.expando;if((!l||e&&l&&!k[l][g])&&h&&d===b)return;l||(j?a[f.expando]=l=++f.uuid:l=f.expando),k[l]||(k[l]={},j||(k[l].toJSON=f.noop));if(typeof c=="object"||typeof c=="function")e?k[l][g]=f.extend(k[l][g],c):k[l]=f.extend(k[l],c);i=k[l],e&&(i[g]||(i[g]={}),i=i[g]),d!==b&&(i[f.camelCase(c)]=d);if(c==="events"&&!i[c])return i[g]&&i[g].events;return h?i[f.camelCase(c)]||i[c]:i}},removeData:function(b,c,d){if(!!f.acceptData(b)){var e=f.expando,g=b.nodeType,h=g?f.cache:b,i=g?b[f.expando]:f.expando;if(!h[i])return;if(c){var j=d?h[i][e]:h[i];if(j){delete j[c];if(!l(j))return}}if(d){delete h[i][e];if(!l(h[i]))return}var k=h[i][e];f.support.deleteExpando||h!=a?delete h[i]:h[i]=null,k?(h[i]={},g||(h[i].toJSON=f.noop),h[i][e]=k):g&&(f.support.deleteExpando?delete b[f.expando]:b.removeAttribute?b.removeAttribute(f.expando):b[f.expando]=null)}},_data:function(a,b,c){return f.data(a,b,c,!0)},acceptData:function(a){if(a.nodeName){var b=f.noData[a.nodeName.toLowerCase()];if(b)return b!==!0&&a.getAttribute("classid")===b}return!0}}),f.fn.extend({data:function(a,c){var d=null;if(typeof a=="undefined"){if(this.length){d=f.data(this[0]);if(this[0].nodeType===1){var e=this[0].attributes,g;for(var h=0,i=e.length;h<i;h++)g=e[h].name,g.indexOf("data-")===0&&(g=f.camelCase(g.substring(5)),k(this[0],g,d[g]))}}return d}if(typeof a=="object")return this.each(function(){f.data(this,a)});var j=a.split(".");j[1]=j[1]?"."+j[1]:"";if(c===b){d=this.triggerHandler("getData"+j[1]+"!",[j[0]]),d===b&&this.length&&(d=f.data(this[0],a),d=k(this[0],a,d));return d===b&&j[1]?this.data(j[0]):d}return this.each(function(){var b=f(this),d=[j[0],c];b.triggerHandler("setData"+j[1]+"!",d),f.data(this,a,c),b.triggerHandler("changeData"+j[1]+"!",d)})},removeData:function(a){return this.each(function(){f.removeData(this,a)})}}),f.extend({_mark:function(a,c){a&&(c=(c||"fx")+"mark",f.data(a,c,(f.data(a,c,b,!0)||0)+1,!0))},_unmark:function(a,c,d){a!==!0&&(d=c,c=a,a=!1);if(c){d=d||"fx";var e=d+"mark",g=a?0:(f.data(c,e,b,!0)||1)-1;g?f.data(c,e,g,!0):(f.removeData(c,e,!0),m(c,d,"mark"))}},queue:function(a,c,d){if(a){c=(c||"fx")+"queue";var e=f.data(a,c,b,!0);d&&(!e||f.isArray(d)?e=f.data(a,c,f.makeArray(d),!0):e.push(d));return e||[]}},dequeue:function(a,b){b=b||"fx";var c=f.queue(a,b),d=c.shift(),e;d==="inprogress"&&(d=c.shift()),d&&(b==="fx"&&c.unshift("inprogress"),d.call(a,function(){f.dequeue(a,b)})),c.length||(f.removeData(a,b+"queue",!0),m(a,b,"queue"))}}),f.fn.extend({queue:function(a,c){typeof a!="string"&&(c=a,a="fx");if(c===b)return f.queue(this[0],a);return this.each(function(){var b=f.queue(this,a,c);a==="fx"&&b[0]!=="inprogress"&&f.dequeue(this,a)})},dequeue:function(a){return this.each(function(){f.dequeue(this,a)})},delay:function(a,b){a=f.fx?f.fx.speeds[a]||a:a,b=b||"fx";return this.queue(b,function(){var c=this;setTimeout(function(){f.dequeue(c,b)},a)})},clearQueue:function(a){return this.queue(a||"fx",[])},promise:function(a,c){function m(){--h||d.resolveWith(e,[e])}typeof a!="string"&&(c=a,a=b),a=a||"fx";var d=f.Deferred(),e=this,g=e.length,h=1,i=a+"defer",j=a+"queue",k=a+"mark",l;while(g--)if(l=f.data(e[g],i,b,!0)||(f.data(e[g],j,b,!0)||f.data(e[g],k,b,!0))&&f.data(e[g],i,f._Deferred(),!0))h++,l.done(m);m();return d.promise()}});var n=/[\n\t\r]/g,o=/\s+/,p=/\r/g,q=/^(?:button|input)$/i,r=/^(?:button|input|object|select|textarea)$/i,s=/^a(?:rea)?$/i,t=/^(?:autofocus|autoplay|async|checked|controls|defer|disabled|hidden|loop|multiple|open|readonly|required|scoped|selected)$/i,u=/\:|^on/,v,w;f.fn.extend({attr:function(a,b){return f.access(this,a,b,!0,f.attr)},removeAttr:function(a){return this.each(function(){f.removeAttr(this,a)})},prop:function(a,b){return f.access(this,a,b,!0,f.prop)},removeProp:function(a){a=f.propFix[a]||a;return this.each(function(){try{this[a]=b,delete this[a]}catch(c){}})},addClass:function(a){var b,c,d,e,g,h,i;if(f.isFunction(a))return this.each(function(b){f(this).addClass(a.call(this,b,this.className))});if(a&&typeof a=="string"){b=a.split(o);for(c=0,d=this.length;c<d;c++){e=this[c];if(e.nodeType===1)if(!e.className&&b.length===1)e.className=a;else{g=" "+e.className+" ";for(h=0,i=b.length;h<i;h++)~g.indexOf(" "+b[h]+" ")||(g+=b[h]+" ");e.className=f.trim(g)}}}return this},removeClass:function(a){var c,d,e,g,h,i,j;if(f.isFunction(a))return this.each(function(b){f(this).removeClass(a.call(this,b,this.className))});if(a&&typeof a=="string"||a===b){c=(a||"").split(o);for(d=0,e=this.length;d<e;d++){g=this[d];if(g.nodeType===1&&g.className)if(a){h=(" "+g.className+" ").replace(n," ");for(i=0,j=c.length;i<j;i++)h=h.replace(" "+c[i]+" "," ");g.className=f.trim(h)}else g.className=""}}return this},toggleClass:function(a,b){var c=typeof a,d=typeof b=="boolean";if(f.isFunction(a))return this.each(function(c){f(this).toggleClass(a.call(this,c,this.className,b),b)});return this.each(function(){if(c==="string"){var e,g=0,h=f(this),i=b,j=a.split(o);while(e=j[g++])i=d?i:!h.hasClass(e),h[i?"addClass":"removeClass"](e)}else if(c==="undefined"||c==="boolean")this.className&&f._data(this,"__className__",this.className),this.className=this.className||a===!1?"":f._data(this,"__className__")||""})},hasClass:function(a){var b=" "+a+" ";for(var c=0,d=this.length;c<d;c++)if((" "+this[c].className+" ").replace(n," ").indexOf(b)>-1)return!0;return!1},val:function(a){var c,d,e=this[0];if(!arguments.length){if(e){c=f.valHooks[e.nodeName.toLowerCase()]||f.valHooks[e.type];if(c&&"get"in c&&(d=c.get(e,"value"))!==b)return d;d=e.value;return typeof d=="string"?d.replace(p,""):d==null?"":d}return b}var g=f.isFunction(a);return this.each(function(d){var e=f(this),h;if(this.nodeType===1){g?h=a.call(this,d,e.val()):h=a,h==null?h="":typeof h=="number"?h+="":f.isArray(h)&&(h=f.map(h,function(a){return a==null?"":a+""})),c=f.valHooks[this.nodeName.toLowerCase()]||f.valHooks[this.type];if(!c||!("set"in c)||c.set(this,h,"value")===b)this.value=h}})}}),f.extend({valHooks:{option:{get:function(a){var b=a.attributes.value;return!b||b.specified?a.value:a.text}},select:{get:function(a){var b,c=a.selectedIndex,d=[],e=a.options,g=a.type==="select-one";if(c<0)return null;for(var h=g?c:0,i=g?c+1:e.length;h<i;h++){var j=e[h];if(j.selected&&(f.support.optDisabled?!j.disabled:j.getAttribute("disabled")===null)&&(!j.parentNode.disabled||!f.nodeName(j.parentNode,"optgroup"))){b=f(j).val();if(g)return b;d.push(b)}}if(g&&!d.length&&e.length)return f(e[c]).val();return d},set:function(a,b){var c=f.makeArray(b);f(a).find("option").each(function(){this.selected=f.inArray(f(this).val(),c)>=0}),c.length||(a.selectedIndex=-1);return c}}},attrFn:{val:!0,css:!0,html:!0,text:!0,data:!0,width:!0,height:!0,offset:!0},attrFix:{tabindex:"tabIndex"},attr:function(a,c,d,e){var g=a.nodeType;if(!a||g===3||g===8||g===2)return b;if(e&&c in f.attrFn)return f(a)[c](d);if(!("getAttribute"in a))return f.prop(a,c,d);var h,i,j=g!==1||!f.isXMLDoc(a);j&&(c=f.attrFix[c]||c,i=f.attrHooks[c],i||(t.test(c)?i=w:v&&c!=="className"&&(f.nodeName(a,"form")||u.test(c))&&(i=v)));if(d!==b){if(d===null){f.removeAttr(a,c);return b}if(i&&"set"in i&&j&&(h=i.set(a,d,c))!==b)return h;a.setAttribute(c,""+d);return d}if(i&&"get"in i&&j&&(h=i.get(a,c))!==null)return h;h=a.getAttribute(c);return h===null?b:h},removeAttr:function(a,b){var c;a.nodeType===1&&(b=f.attrFix[b]||b,f.support.getSetAttribute?a.removeAttribute(b):(f.attr(a,b,""),a.removeAttributeNode(a.getAttributeNode(b))),t.test(b)&&(c=f.propFix[b]||b)in a&&(a[c]=!1))},attrHooks:{type:{set:function(a,b){if(q.test(a.nodeName)&&a.parentNode)f.error("type property can't be changed");else if(!f.support.radioValue&&b==="radio"&&f.nodeName(a,"input")){var c=a.value;a.setAttribute("type",b),c&&(a.value=c);return b}}},tabIndex:{get:function(a){var c=a.getAttributeNode("tabIndex");return c&&c.specified?parseInt(c.value,10):r.test(a.nodeName)||s.test(a.nodeName)&&a.href?0:b}},value:{get:function(a,b){if(v&&f.nodeName(a,"button"))return v.get(a,b);return b in a?a.value:null},set:function(a,b,c){if(v&&f.nodeName(a,"button"))return v.set(a,b,c);a.value=b}}},propFix:{tabindex:"tabIndex",readonly:"readOnly","for":"htmlFor","class":"className",maxlength:"maxLength",cellspacing:"cellSpacing",cellpadding:"cellPadding",rowspan:"rowSpan",colspan:"colSpan",usemap:"useMap",frameborder:"frameBorder",contenteditable:"contentEditable"},prop:function(a,c,d){var e=a.nodeType;if(!a||e===3||e===8||e===2)return b;var g,h,i=e!==1||!f.isXMLDoc(a);i&&(c=f.propFix[c]||c,h=f.propHooks[c]);return d!==b?h&&"set"in h&&(g=h.set(a,d,c))!==b?g:a[c]=d:h&&"get"in h&&(g=h.get(a,c))!==b?g:a[c]},propHooks:{}}),w={get:function(a,c){return f.prop(a,c)?c.toLowerCase():b},set:function(a,b,c){var d;b===!1?f.removeAttr(a,c):(d=f.propFix[c]||c,d in a&&(a[d]=!0),a.setAttribute(c,c.toLowerCase()));return c}},f.support.getSetAttribute||(f.attrFix=f.propFix,v=f.attrHooks.name=f.attrHooks.title=f.valHooks.button={get:function(a,c){var d;d=a.getAttributeNode(c);return d&&d.nodeValue!==""?d.nodeValue:b},set:function(a,b,c){var d=a.getAttributeNode(c);if(d){d.nodeValue=b;return b}}},f.each(["width","height"],function(a,b){f.attrHooks[b]=f.extend(f.attrHooks[b],{set:function(a,c){if(c===""){a.setAttribute(b,"auto");return c}}})})),f.support.hrefNormalized||f.each(["href","src","width","height"],function(a,c){f.attrHooks[c]=f.extend(f.attrHooks[c],{get:function(a){var d=a.getAttribute(c,2);return d===null?b:d}})}),f.support.style||(f.attrHooks.style={get:function(a){return a.style.cssText.toLowerCase()||b},set:function(a,b){return a.style.cssText=""+b}}),f.support.optSelected||(f.propHooks.selected=f.extend(f.propHooks.selected,{get:function(a){var b=a.parentNode;b&&(b.selectedIndex,b.parentNode&&b.parentNode.selectedIndex)}})),f.support.checkOn||f.each(["radio","checkbox"],function(){f.valHooks[this]={get:function(a){return a.getAttribute("value")===null?"on":a.value}}}),f.each(["radio","checkbox"],function(){f.valHooks[this]=f.extend(f.valHooks[this],{set:function(a,b){if(f.isArray(b))return a.checked=f.inArray(f(a).val(),b)>=0}})});var x=/\.(.*)$/,y=/^(?:textarea|input|select)$/i,z=/\./g,A=/ /g,B=/[^\w\s.|`]/g,C=function(a){return a.replace(B,"\\$&")};f.event={add:function(a,c,d,e){if(a.nodeType!==3&&a.nodeType!==8){if(d===!1)d=D;else if(!d)return;var g,h;d.handler&&(g=d,d=g.handler),d.guid||(d.guid=f.guid++);var i=f._data(a);if(!i)return;var j=i.events,k=i.handle;j||(i.events=j={}),k||(i.handle=k=function(a){return typeof f!="undefined"&&(!a||f.event.triggered!==a.type)?f.event.handle.apply(k.elem,arguments):b}),k.elem=a,c=c.split(" ");var l,m=0,n;while(l=c[m++]){h=g?f.extend({},g):{handler:d,data:e},l.indexOf(".")>-1?(n=l.split("."),l=n.shift(),h.namespace=n.slice(0).sort().join(".")):(n=[],h.namespace=""),h.type=l,h.guid||(h.guid=d.guid);var o=j[l],p=f.event.special[l]||{};if(!o){o=j[l]=[];if(!p.setup||p.setup.call(a,e,n,k)===!1)a.addEventListener?a.addEventListener(l,k,!1):a.attachEvent&&a.attachEvent("on"+l,k)}p.add&&(p.add.call(a,h),h.handler.guid||(h.handler.guid=d.guid)),o.push(h),f.event.global[l]=!0}a=null}},global:{},remove:function(a,c,d,e){if(a.nodeType!==3&&a.nodeType!==8){d===!1&&(d=D);var g,h,i,j,k=0,l,m,n,o,p,q,r,s=f.hasData(a)&&f._data(a),t=s&&s.events;if(!s||!t)return;c&&c.type&&(d=c.handler,c=c.type);if(!c||typeof c=="string"&&c.charAt(0)==="."){c=c||"";for(h in t)f.event.remove(a,h+c);return}c=c.split(" ");while(h=c[k++]){r=h,q=null,l=h.indexOf(".")<0,m=[],l||(m=h.split("."),h=m.shift(),n=new RegExp("(^|\\.)"+f.map(m.slice(0).sort(),C).join("\\.(?:.*\\.)?")+"(\\.|$)")),p=t[h];if(!p)continue;if(!d){for(j=0;j<p.length;j++){q=p[j];if(l||n.test(q.namespace))f.event.remove(a,r,q.handler,j),p.splice(j--,1)}continue}o=f.event.special[h]||{};for(j=e||0;j<p.length;j++){q=p[j];if(d.guid===q.guid){if(l||n.test(q.namespace))e==null&&p.splice(j--,1),o.remove&&o.remove.call(a,q);if(e!=null)break}}if(p.length===0||e!=null&&p.length===1)(!o.teardown||o.teardown.call(a,m)===!1)&&f.removeEvent(a,h,s.handle),g=null,delete t[h]}if(f.isEmptyObject(t)){var u=s.handle;u&&(u.elem=null),delete s.events,delete s.handle,f.isEmptyObject(s)&&f.removeData(a,b,!0)}}},customEvent:{getData:!0,setData:!0,changeData:!0},trigger:function(c,d,e,g){var h=c.type||c,i=[],j;h.indexOf("!")>=0&&(h=h.slice(0,-1),j=!0),h.indexOf(".")>=0&&(i=h.split("."),h=i. shift(),i.sort());if(!!e&&!f.event.customEvent[h]||!!f.event.global[h]){c=typeof c=="object"?c[f.expando]?c:new f.Event(h,c):new f.Event(h),c.type=h,c.exclusive=j,c.namespace=i.join("."),c.namespace_re=new RegExp("(^|\\.)"+i.join("\\.(?:.*\\.)?")+"(\\.|$)");if(g||!e)c.preventDefault(),c.stopPropagation();if(!e){f.each(f.cache,function(){var a=f.expando,b=this[a];b&&b.events&&b.events[h]&&f.event.trigger(c,d,b.handle.elem)});return}if(e.nodeType===3||e.nodeType===8)return;c.result=b,c.target=e,d=d!=null?f.makeArray(d):[],d.unshift(c);var k=e,l=h.indexOf(":")<0?"on"+h:"";do{var m=f._data(k,"handle");c.currentTarget=k,m&&m.apply(k,d),l&&f.acceptData(k)&&k[l]&&k[l].apply(k,d)===!1&&(c.result=!1,c.preventDefault()),k=k.parentNode||k.ownerDocument||k===c.target.ownerDocument&&a}while(k&&!c.isPropagationStopped());if(!c.isDefaultPrevented()){var n,o=f.event.special[h]||{};if((!o._default||o._default.call(e.ownerDocument,c)===!1)&&(h!=="click"||!f.nodeName(e,"a"))&&f.acceptData(e)){try{l&&e[h]&&(n=e[l],n&&(e[l]=null),f.event.triggered=h,e[h]())}catch(p){}n&&(e[l]=n),f.event.triggered=b}}return c.result}},handle:function(c){c=f.event.fix(c||a.event);var d=((f._data(this,"events")||{})[c.type]||[]).slice(0),e=!c.exclusive&&!c.namespace,g=Array.prototype.slice.call(arguments,0);g[0]=c,c.currentTarget=this;for(var h=0,i=d.length;h<i;h++){var j=d[h];if(e||c.namespace_re.test(j.namespace)){c.handler=j.handler,c.data=j.data,c.handleObj=j;var k=j.handler.apply(this,g);k!==b&&(c.result=k,k===!1&&(c.preventDefault(),c.stopPropagation()));if(c.isImmediatePropagationStopped())break}}return c.result},props:"altKey attrChange attrName bubbles button cancelable charCode clientX clientY ctrlKey currentTarget data detail eventPhase fromElement handler keyCode layerX layerY metaKey newValue offsetX offsetY pageX pageY prevValue relatedNode relatedTarget screenX screenY shiftKey srcElement target toElement view wheelDelta which".split(" "),fix:function(a){if(a[f.expando])return a;var d=a;a=f.Event(d);for(var e=this.props.length,g;e;)g=this.props[--e],a[g]=d[g];a.target||(a.target=a.srcElement||c),a.target.nodeType===3&&(a.target=a.target.parentNode),!a.relatedTarget&&a.fromElement&&(a.relatedTarget=a.fromElement===a.target?a.toElement:a.fromElement);if(a.pageX==null&&a.clientX!=null){var h=a.target.ownerDocument||c,i=h.documentElement,j=h.body;a.pageX=a.clientX+(i&&i.scrollLeft||j&&j.scrollLeft||0)-(i&&i.clientLeft||j&&j.clientLeft||0),a.pageY=a.clientY+(i&&i.scrollTop||j&&j.scrollTop||0)-(i&&i.clientTop||j&&j.clientTop||0)}a.which==null&&(a.charCode!=null||a.keyCode!=null)&&(a.which=a.charCode!=null?a.charCode:a.keyCode),!a.metaKey&&a.ctrlKey&&(a.metaKey=a.ctrlKey),!a.which&&a.button!==b&&(a.which=a.button&1?1:a.button&2?3:a.button&4?2:0);return a},guid:1e8,proxy:f.proxy,special:{ready:{setup:f.bindReady,teardown:f.noop},live:{add:function(a){f.event.add(this,N(a.origType,a.selector),f.extend({},a,{handler:M,guid:a.handler.guid}))},remove:function(a){f.event.remove(this,N(a.origType,a.selector),a)}},beforeunload:{setup:function(a,b,c){f.isWindow(this)&&(this.onbeforeunload=c)},teardown:function(a,b){this.onbeforeunload===b&&(this.onbeforeunload=null)}}}},f.removeEvent=c.removeEventListener?function(a,b,c){a.removeEventListener&&a.removeEventListener(b,c,!1)}:function(a,b,c){a.detachEvent&&a.detachEvent("on"+b,c)},f.Event=function(a,b){if(!this.preventDefault)return new f.Event(a,b);a&&a.type?(this.originalEvent=a,this.type=a.type,this.isDefaultPrevented=a.defaultPrevented||a.returnValue===!1||a.getPreventDefault&&a.getPreventDefault()?E:D):this.type=a,b&&f.extend(this,b),this.timeStamp=f.now(),this[f.expando]=!0},f.Event.prototype={preventDefault:function(){this.isDefaultPrevented=E;var a=this.originalEvent;!a||(a.preventDefault?a.preventDefault():a.returnValue=!1)},stopPropagation:function(){this.isPropagationStopped=E;var a=this.originalEvent;!a||(a.stopPropagation&&a.stopPropagation(),a.cancelBubble=!0)},stopImmediatePropagation:function(){this.isImmediatePropagationStopped=E,this.stopPropagation()},isDefaultPrevented:D,isPropagationStopped:D,isImmediatePropagationStopped:D};var F=function(a){var b=a.relatedTarget,c=!1,d=a.type;a.type=a.data,b!==this&&(b&&(c=f.contains(this,b)),c||(f.event.handle.apply(this,arguments),a.type=d))},G=function(a){a.type=a.data,f.event.handle.apply(this,arguments)};f.each({mouseenter:"mouseover",mouseleave:"mouseout"},function(a,b){f.event.special[a]={setup:function(c){f.event.add(this,b,c&&c.selector?G:F,a)},teardown:function(a){f.event.remove(this,b,a&&a.selector?G:F)}}}),f.support.submitBubbles||(f.event.special.submit={setup:function(a,b){if(!f.nodeName(this,"form"))f.event.add(this,"click.specialSubmit",function(a){var b=a.target,c=b.type;(c==="submit"||c==="image")&&f(b).closest("form").length&&K("submit",this,arguments)}),f.event.add(this,"keypress.specialSubmit",function(a){var b=a.target,c=b.type;(c==="text"||c==="password")&&f(b).closest("form").length&&a.keyCode===13&&K("submit",this,arguments)});else return!1},teardown:function(a){f.event.remove(this,".specialSubmit")}});if(!f.support.changeBubbles){var H,I=function(a){var b=a.type,c=a.value;b==="radio"||b==="checkbox"?c=a.checked:b==="select-multiple"?c=a.selectedIndex>-1?f.map(a.options,function(a){return a.selected}).join("-"):"":f.nodeName(a,"select")&&(c=a.selectedIndex);return c},J=function(c){var d=c.target,e,g;if(!!y.test(d.nodeName)&&!d.readOnly){e=f._data(d,"_change_data"),g=I(d),(c.type!=="focusout"||d.type!=="radio")&&f._data(d,"_change_data",g);if(e===b||g===e)return;if(e!=null||g)c.type="change",c.liveFired=b,f.event.trigger(c,arguments[1],d)}};f.event.special.change={filters:{focusout:J,beforedeactivate:J,click:function(a){var b=a.target,c=f.nodeName(b,"input")?b.type:"";(c==="radio"||c==="checkbox"||f.nodeName(b,"select"))&&J.call(this,a)},keydown:function(a){var b=a.target,c=f.nodeName(b,"input")?b.type:"";(a.keyCode===13&&!f.nodeName(b,"textarea")||a.keyCode===32&&(c==="checkbox"||c==="radio")||c==="select-multiple")&&J.call(this,a)},beforeactivate:function(a){var b=a.target;f._data(b,"_change_data",I(b))}},setup:function(a,b){if(this.type==="file")return!1;for(var c in H)f.event.add(this,c+".specialChange",H[c]);return y.test(this.nodeName)},teardown:function(a){f.event.remove(this,".specialChange");return y.test(this.nodeName)}},H=f.event.special.change.filters,H.focus=H.beforeactivate}f.support.focusinBubbles||f.each({focus:"focusin",blur:"focusout"},function(a,b){function e(a){var c=f.event.fix(a);c.type=b,c.originalEvent={},f.event.trigger(c,null,c.target),c.isDefaultPrevented()&&a.preventDefault()}var d=0;f.event.special[b]={setup:function(){d++===0&&c.addEventListener(a,e,!0)},teardown:function(){--d===0&&c.removeEventListener(a,e,!0)}}}),f.each(["bind","one"],function(a,c){f.fn[c]=function(a,d,e){var g;if(typeof a=="object"){for(var h in a)this[c](h,d,a[h],e);return this}if(arguments.length===2||d===!1)e=d,d=b;c==="one"?(g=function(a){f(this).unbind(a,g);return e.apply(this,arguments)},g.guid=e.guid||f.guid++):g=e;if(a==="unload"&&c!=="one")this.one(a,d,e);else for(var i=0,j=this.length;i<j;i++)f.event.add(this[i],a,g,d);return this}}),f.fn.extend({unbind:function(a,b){if(typeof a=="object"&&!a.preventDefault)for(var c in a)this.unbind(c,a[c]);else for(var d=0,e=this.length;d<e;d++)f.event.remove(this[d],a,b);return this},delegate:function(a,b,c,d){return this.live(b,c,d,a)},undelegate:function(a,b,c){return arguments.length===0?this.unbind("live"):this.die(b,null,c,a)},trigger:function(a,b){return this.each(function(){f.event.trigger(a,b,this)})},triggerHandler:function(a,b){if(this[0])return f.event.trigger(a,b,this[0],!0)},toggle:function(a){var b=arguments,c=a.guid||f.guid++,d=0,e=function(c){var e=(f.data(this,"lastToggle"+a.guid)||0)%d;f.data(this,"lastToggle"+a.guid,e+1),c.preventDefault();return b[e].apply(this,arguments)||!1};e.guid=c;while(d<b.length)b[d++].guid=c;return this.click(e)},hover:function(a,b){return this.mouseenter(a).mouseleave(b||a)}});var L={focus:"focusin",blur:"focusout",mouseenter:"mouseover",mouseleave:"mouseout"};f.each(["live","die"],function(a,c){f.fn[c]=function(a,d,e,g){var h,i=0,j,k,l,m=g||this.selector,n=g?this:f(this.context);if(typeof a=="object"&&!a.preventDefault){for(var o in a)n[c](o,d,a[o],m);return this}if(c==="die"&&!a&&g&&g.charAt(0)==="."){n.unbind(g);return this}if(d===!1||f.isFunction(d))e=d||D,d=b;a=(a||"").split(" ");while((h=a[i++])!=null){j=x.exec(h),k="",j&&(k=j[0],h=h.replace(x,""));if(h==="hover"){a.push("mouseenter"+k,"mouseleave"+k);continue}l=h,L[h]?(a.push(L[h]+k),h=h+k):h=(L[h]||h)+k;if(c==="live")for(var p=0,q=n.length;p<q;p++)f.event.add(n[p],"live."+N(h,m),{data:d,selector:m,handler:e,origType:h,origHandler:e,preType:l});else n.unbind("live."+N(h,m),e)}return this}}),f.each("blur focus focusin focusout load resize scroll unload click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup error".split(" "),function(a,b){f.fn[b]=function(a,c){c==null&&(c=a,a=null);return arguments.length>0?this.bind(b,a,c):this.trigger(b)},f.attrFn&&(f.attrFn[b]=!0)}),function(){function u(a,b,c,d,e,f){for(var g=0,h=d.length;g<h;g++){var i=d[g];if(i){var j=!1;i=i[a];while(i){if(i.sizcache===c){j=d[i.sizset];break}if(i.nodeType===1){f||(i.sizcache=c,i.sizset=g);if(typeof b!="string"){if(i===b){j=!0;break}}else if(k.filter(b,[i]).length>0){j=i;break}}i=i[a]}d[g]=j}}}function t(a,b,c,d,e,f){for(var g=0,h=d.length;g<h;g++){var i=d[g];if(i){var j=!1;i=i[a];while(i){if(i.sizcache===c){j=d[i.sizset];break}i.nodeType===1&&!f&&(i.sizcache=c,i.sizset=g);if(i.nodeName.toLowerCase()===b){j=i;break}i=i[a]}d[g]=j}}}var a=/((?:\((?:\([^()]+\)|[^()]+)+\)|\[(?:\[[^\[\]]*\]|['"][^'"]*['"]|[^\[\]'"]+)+\]|\\.|[^ >+~,(\[\\]+)+|[>+~])(\s*,\s*)?((?:.|\r|\n)*)/g,d=0,e=Object.prototype.toString,g=!1,h=!0,i=/\\/g,j=/\W/;[0,0].sort(function(){h=!1;return 0});var k=function(b,d,f,g){f=f||[],d=d||c;var h=d;if(d.nodeType!==1&&d.nodeType!==9)return[];if(!b||typeof b!="string")return f;var i,j,n,o,q,r,s,t,u=!0,w=k.isXML(d),x=[],y=b;do{a.exec(""),i=a.exec(y);if(i){y=i[3],x.push(i[1]);if(i[2]){o=i[3];break}}}while(i);if(x.length>1&&m.exec(b))if(x.length===2&&l.relative[x[0]])j=v(x[0]+x[1],d);else{j=l.relative[x[0]]?[d]:k(x.shift(),d);while(x.length)b=x.shift(),l.relative[b]&&(b+=x.shift()),j=v(b,j)}else{!g&&x.length>1&&d.nodeType===9&&!w&&l.match.ID.test(x[0])&&!l.match.ID.test(x[x.length-1])&&(q=k.find(x.shift(),d,w),d=q.expr?k.filter(q.expr,q.set)[0]:q.set[0]);if(d){q=g?{expr:x.pop(),set:p(g)}:k.find(x.pop(),x.length===1&&(x[0]==="~"||x[0]==="+")&&d.parentNode?d.parentNode:d,w),j=q.expr?k.filter(q.expr,q.set):q.set,x.length>0?n=p(j):u=!1;while(x.length)r=x.pop(),s=r,l.relative[r]?s=x.pop():r="",s==null&&(s=d),l.relative[r](n,s,w)}else n=x=[]}n||(n=j),n||k.error(r||b);if(e.call(n)==="[object Array]")if(!u)f.push.apply(f,n);else if(d&&d.nodeType===1)for(t=0;n[t]!=null;t++)n[t]&&(n[t]===!0||n[t].nodeType===1&&k.contains(d,n[t]))&&f.push(j[t]);else for(t=0;n[t]!=null;t++)n[t]&&n[t].nodeType===1&&f.push(j[t]);else p(n,f);o&&(k(o,h,f,g),k.uniqueSort(f));return f};k.uniqueSort=function(a){if(r){g=h,a.sort(r);if(g)for(var b=1;b<a.length;b++)a[b]===a[b-1]&&a.splice(b--,1)}return a},k.matches=function(a,b){return k(a,null,null,b)},k.matchesSelector=function(a,b){return k(b,null,null,[a]).length>0},k.find=function(a,b,c){var d;if(!a)return[];for(var e=0,f=l.order.length;e<f;e++){var g,h=l.order[e];if(g=l.leftMatch[h].exec(a)){var j=g[1];g.splice(1,1);if(j.substr(j.length-1)!=="\\"){g[1]=(g[1]||"").replace(i,""),d=l.find[h](g,b,c);if(d!=null){a=a.replace(l.match[h],"");break}}}}d||(d=typeof b.getElementsByTagName!="undefined"?b.getElementsByTagName("*"):[]);return{set:d,expr:a}},k.filter=function(a,c,d,e){var f,g,h=a,i=[],j=c,m=c&&c[0]&&k.isXML(c[0]);while(a&&c.length){for(var n in l.filter)if((f=l.leftMatch[n].exec(a))!=null&&f[2]){var o,p,q=l.filter[n],r=f[1];g=!1,f.splice(1,1);if(r.substr(r.length-1)==="\\")continue;j===i&&(i=[]);if(l.preFilter[n]){f=l.preFilter[n](f,j,d,i,e,m);if(!f)g=o=!0;else if(f===!0)continue}if(f)for(var s=0;(p=j[s])!=null;s++)if(p){o=q(p,f,s,j);var t=e^!!o;d&&o!=null?t?g=!0:j[s]=!1:t&&(i.push(p),g=!0)}if(o!==b){d||(j=i),a=a.replace(l.match[n],"");if(!g)return[];break}}if(a===h)if(g==null)k.error(a);else break;h=a}return j},k.error=function(a){throw"Syntax error, unrecognized expression: "+a};var l=k.selectors={order:["ID","NAME","TAG"],match:{ID:/#((?:[\w\u00c0-\uFFFF\-]|\\.)+)/,CLASS:/\.((?:[\w\u00c0-\uFFFF\-]|\\.)+)/,NAME:/\[name=['"]*((?:[\w\u00c0-\uFFFF\-]|\\.)+)['"]*\]/,ATTR:/\[\s*((?:[\w\u00c0-\uFFFF\-]|\\.)+)\s*(?:(\S?=)\s*(?:(['"])(.*?)\3|(#?(?:[\w\u00c0-\uFFFF\-]|\\.)*)|)|)\s*\]/,TAG:/^((?:[\w\u00c0-\uFFFF\*\-]|\\.)+)/,CHILD:/:(only|nth|last|first)-child(?:\(\s*(even|odd|(?:[+\-]?\d+|(?:[+\-]?\d*)?n\s*(?:[+\-]\s*\d+)?))\s*\))?/,POS:/:(nth|eq|gt|lt|first|last|even|odd)(?:\((\d*)\))?(?=[^\-]|$)/,PSEUDO:/:((?:[\w\u00c0-\uFFFF\-]|\\.)+)(?:\((['"]?)((?:\([^\)]+\)|[^\(\)]*)+)\2\))?/},leftMatch:{},attrMap:{"class":"className","for":"htmlFor"},attrHandle:{href:function(a){return a.getAttribute("href")},type:function(a){return a.getAttribute("type")}},relative:{"+":function(a,b){var c=typeof b=="string",d=c&&!j.test(b),e=c&&!d;d&&(b=b.toLowerCase());for(var f=0,g=a.length,h;f<g;f++)if(h=a[f]){while((h=h.previousSibling)&&h.nodeType!==1);a[f]=e||h&&h.nodeName.toLowerCase()===b?h||!1:h===b}e&&k.filter(b,a,!0)},">":function(a,b){var c,d=typeof b=="string",e=0,f=a.length;if(d&&!j.test(b)){b=b.toLowerCase();for(;e<f;e++){c=a[e];if(c){var g=c.parentNode;a[e]=g.nodeName.toLowerCase()===b?g:!1}}}else{for(;e<f;e++)c=a[e],c&&(a[e]=d?c.parentNode:c.parentNode===b);d&&k.filter(b,a,!0)}},"":function(a,b,c){var e,f=d++,g=u;typeof b=="string"&&!j.test(b)&&(b=b.toLowerCase(),e=b,g=t),g("parentNode",b,f,a,e,c)},"~":function(a,b,c){var e,f=d++,g=u;typeof b=="string"&&!j.test(b)&&(b=b.toLowerCase(),e=b,g=t),g("previousSibling",b,f,a,e,c)}},find:{ID:function(a,b,c){if(typeof b.getElementById!="undefined"&&!c){var d=b.getElementById(a[1]);return d&&d.parentNode?[d]:[]}},NAME:function(a,b){if(typeof b.getElementsByName!="undefined"){var c=[],d=b.getElementsByName(a[1]);for(var e=0,f=d.length;e<f;e++)d[e].getAttribute("name")===a[1]&&c.push(d[e]);return c.length===0?null:c}},TAG:function(a,b){if(typeof b.getElementsByTagName!="undefined")return b.getElementsByTagName(a[1])}},preFilter:{CLASS:function(a,b,c,d,e,f){a=" "+a[1].replace(i,"")+" ";if(f)return a;for(var g=0,h;(h=b[g])!=null;g++)h&&(e^(h.className&&(" "+h.className+" ").replace(/[\t\n\r]/g," ").indexOf(a)>=0)?c||d.push(h):c&&(b[g]=!1));return!1},ID:function(a){return a[1].replace(i,"")},TAG:function(a,b){return a[1].replace(i,"").toLowerCase()},CHILD:function(a){if(a[1]==="nth"){a[2]||k.error(a[0]),a[2]=a[2].replace(/^\+|\s*/g,"");var b=/(-?)(\d*)(?:n([+\-]?\d*))?/.exec(a[2]==="even"&&"2n"||a[2]==="odd"&&"2n+1"||!/\D/.test(a[2])&&"0n+"+a[2]||a[2]);a[2]=b[1]+(b[2]||1)-0,a[3]=b[3]-0}else a[2]&&k.error(a[0]);a[0]=d++;return a},ATTR:function(a,b,c,d,e,f){var g=a[1]=a[1].replace(i,"");!f&&l.attrMap[g]&&(a[1]=l.attrMap[g]),a[4]=(a[4]||a[5]||"").replace(i,""),a[2]==="~="&&(a[4]=" "+a[4]+" ");return a},PSEUDO:function(b,c,d,e,f){if(b[1]==="not")if((a.exec(b[3])||"").length>1||/^\w/.test(b[3]))b[3]=k(b[3],null,null,c);else{var g=k.filter(b[3],c,d,!0^f);d||e.push.apply(e,g);return!1}else if(l.match.POS.test(b[0])||l.match.CHILD.test(b[0]))return!0;return b},POS:function(a){a.unshift(!0);return a}},filters:{enabled:function(a){return a.disabled===!1&&a.type!=="hidden"},disabled:function(a){return a.disabled===!0},checked:function(a){return a.checked===!0},selected:function(a){a.parentNode&&a.parentNode.selectedIndex;return a.selected===!0},parent:function(a){return!!a.firstChild},empty:function(a){return!a.firstChild},has:function(a,b,c){return!!k(c[3],a).length},header:function(a){return/h\d/i.test(a.nodeName)},text:function(a){var b=a.getAttribute("type"),c=a.type;return a.nodeName.toLowerCase()==="input"&&"text"===c&&(b===c||b===null)},radio:function(a){return a.nodeName.toLowerCase()==="input"&&"radio"===a.type},checkbox:function(a){return a.nodeName.toLowerCase()==="input"&&"checkbox"===a.type},file:function(a){return a.nodeName.toLowerCase()==="input"&&"file"===a.type},password:function(a){return a.nodeName.toLowerCase()==="input"&&"password"===a.type},submit:function(a){var b=a.nodeName.toLowerCase();return(b==="input"||b==="button")&&"submit"===a.type},image:function(a){return a.nodeName.toLowerCase()==="input"&&"image"===a.type},reset:function(a){var b=a.nodeName.toLowerCase();return(b==="input"||b==="button")&&"reset"===a.type},button:function(a){var b=a.nodeName.toLowerCase();return b==="input"&&"button"===a.type||b==="button"},input:function(a){return/input|select|textarea|button/i.test(a.nodeName)},focus:function(a){return a===a.ownerDocument.activeElement}},setFilters:{first:function(a,b){return b===0},last:function(a,b,c,d){return b===d.length-1},even:function(a,b){return b%2===0},odd:function(a,b){return b%2===1},lt:function(a,b,c){return b<c[3]-0},gt:function(a,b,c){return b>c[3]-0},nth:function(a,b,c){return c[3]-0===b},eq:function(a,b,c){return c[3]-0===b}},filter:{PSEUDO:function(a,b,c,d){var e=b[1],f=l.filters[e];if(f)return f(a,c,b,d);if(e==="contains")return(a.textContent||a.innerText||k.getText([a])||"").indexOf(b[3])>=0;if(e==="not"){var g=b[3];for(var h=0,i=g.length;h<i;h++)if(g[h]===a)return!1;return!0}k.error(e)},CHILD:function(a,b){var c=b[1],d=a;switch(c){case"only":case"first":while(d=d.previousSibling)if(d.nodeType===1)return!1;if(c==="first")return!0;d=a;case"last":while(d=d.nextSibling)if(d.nodeType===1)return!1;return!0;case"nth":var e=b[2],f=b[3];if(e===1&&f===0)return!0;var g=b[0],h=a.parentNode;if(h&&(h.sizcache!==g||!a.nodeIndex)){var i=0;for(d=h.firstChild;d;d=d.nextSibling)d.nodeType===1&&(d.nodeIndex=++i);h.sizcache=g}var j=a.nodeIndex-f;return e===0?j===0:j%e===0&&j/e>=0}},ID:function(a,b){return a.nodeType===1&&a.getAttribute("id")===b},TAG:function(a,b){return b==="*"&&a.nodeType===1||a.nodeName.toLowerCase()===b},CLASS:function(a,b){return(" "+(a.className||a.getAttribute("class"))+" ").indexOf(b)>-1},ATTR:function(a,b){var c=b[1],d=l.attrHandle[c]?l.attrHandle[c](a):a[c]!=null?a[c]:a.getAttribute(c),e=d+"",f=b[2],g=b[4];return d==null?f==="!=":f==="="?e===g:f==="*="?e.indexOf(g)>=0:f==="~="?(" "+e+" ").indexOf(g)>=0:g?f==="!="?e!==g:f==="^="?e.indexOf(g)===0:f==="$="?e.substr(e.length-g.length)===g:f==="|="?e===g||e.substr(0,g.length+1)===g+"-":!1:e&&d!==!1},POS:function(a,b,c,d){var e=b[2],f=l.setFilters[e];if(f)return f(a,c,b,d)}}},m=l.match.POS,n=function(a,b){return"\\"+(b-0+1)};for(var o in l.match)l.match[o]=new RegExp(l.match[o].source+/(?![^\[]*\])(?![^\(]*\))/.source),l.leftMatch[o]=new RegExp(/(^(?:.|\r|\n)*?)/.source+l.match[o].source.replace(/\\(\d+)/g,n));var p=function(a,b){a=Array.prototype.slice.call(a,0);if(b){b.push.apply(b,a);return b}return a};try{Array.prototype.slice.call(c.documentElement.childNodes,0)[0].nodeType}catch(q){p=function(a,b){var c=0,d=b||[];if(e.call(a)==="[object Array]")Array.prototype.push.apply(d,a);else if(typeof a.length=="number")for(var f=a.length;c<f;c++)d.push(a[c]);else for(;a[c];c++)d.push(a[c]);return d}}var r,s;c.documentElement.compareDocumentPosition?r=function(a,b){if(a===b){g=!0;return 0}if(!a.compareDocumentPosition||!b.compareDocumentPosition)return a.compareDocumentPosition?-1:1;return a.compareDocumentPosition(b)&4?-1:1}:(r=function(a,b){if(a===b){g=!0;return 0}if(a.sourceIndex&&b.sourceIndex)return a.sourceIndex-b.sourceIndex;var c,d,e=[],f=[],h=a.parentNode,i=b.parentNode,j=h;if(h===i)return s(a,b);if(!h)return-1;if(!i)return 1;while(j)e.unshift(j),j=j.parentNode;j=i;while(j)f.unshift(j),j=j.parentNode;c=e.length,d=f.length;for(var k=0;k<c&&k<d;k++)if(e[k]!==f[k])return s(e[k],f[k]);return k===c?s(a,f[k],-1):s(e[k],b,1)},s=function(a,b,c){if(a===b)return c;var d=a.nextSibling;while(d){if(d===b)return-1;d=d.nextSibling}return 1}),k.getText=function(a){var b="",c;for(var d=0;a[d];d++)c=a[d],c.nodeType===3||c.nodeType===4?b+=c.nodeValue:c.nodeType!==8&&(b+=k.getText(c.childNodes));return b},function(){var a=c.createElement("div"),d="script"+(new Date).getTime(),e=c.documentElement;a.innerHTML="<a name='"+d+"'/>",e.insertBefore(a,e.firstChild),c.getElementById(d)&&(l.find.ID=function(a,c,d){if(typeof c.getElementById!="undefined"&&!d){var e=c.getElementById(a[1]);return e?e.id===a[1]||typeof e.getAttributeNode!="undefined"&&e.getAttributeNode("id").nodeValue===a[1]?[e]:b:[]}},l.filter.ID=function(a,b){var c=typeof a.getAttributeNode!="undefined"&&a.getAttributeNode("id");return a.nodeType===1&&c&&c.nodeValue===b}),e.removeChild(a),e=a=null}(),function(){var a=c.createElement("div");a.appendChild(c.createComment("")),a.getElementsByTagName("*").length>0&&(l.find.TAG=function(a,b){var c=b.getElementsByTagName(a[1]);if(a[1]==="*"){var d=[];for(var e=0;c[e];e++)c[e].nodeType===1&&d.push(c[e]);c=d}return c}),a.innerHTML="<a href='#'></a>",a.firstChild&&typeof a.firstChild.getAttribute!="undefined"&&a.firstChild.getAttribute("href")!=="#"&&(l.attrHandle.href=function(a){return a.getAttribute("href",2)}),a=null}(),c.querySelectorAll&&function(){var a=k,b=c.createElement("div"),d="__sizzle__";b.innerHTML="<p class='TEST'></p>";if(!b.querySelectorAll||b.querySelectorAll(".TEST").length!==0){k=function(b,e,f,g){e=e||c;if(!g&&!k.isXML(e)){var h=/^(\w+$)|^\.([\w\-]+$)|^#([\w\-]+$)/.exec(b);if(h&&(e.nodeType===1||e.nodeType===9)){if(h[1])return p(e.getElementsByTagName(b),f);if(h[2]&&l.find.CLASS&&e.getElementsByClassName)return p(e.getElementsByClassName(h[2]),f)}if(e.nodeType===9){if(b==="body"&&e.body)return p([e.body],f);if(h&&h[3]){var i=e.getElementById(h[3]);if(!i||!i.parentNode)return p([],f);if(i.id===h[3])return p([i],f)}try{return p(e.querySelectorAll(b),f)}catch(j){}}else if(e.nodeType===1&&e.nodeName.toLowerCase()!=="object"){var m=e,n=e.getAttribute("id"),o=n||d,q=e.parentNode,r=/^\s*[+~]/.test(b);n?o=o.replace(/'/g,"\\$&"):e.setAttribute("id",o),r&&q&&(e=e.parentNode);try{if(!r||q)return p(e.querySelectorAll("[id='"+o+"'] "+b),f)}catch(s){}finally{n||m.removeAttribute("id")}}}return a(b,e,f,g)};for(var e in a)k[e]=a[e];b=null}}(),function(){var a=c.documentElement,b=a.matchesSelector||a.mozMatchesSelector||a.webkitMatchesSelector||a.msMatchesSelector;if(b){var d=!b.call(c.createElement("div"),"div"),e=!1;try{b.call(c.documentElement,"[test!='']:sizzle")}catch(f){e=!0}k.matchesSelector=function(a,c){c=c.replace(/\=\s*([^'"\]]*)\s*\]/g,"='$1']");if(!k.isXML(a))try{if(e||!l.match.PSEUDO.test(c)&&!/!=/.test(c)){var f=b.call(a,c);if(f||!d||a.document&&a.document.nodeType!==11)return f}}catch(g){}return k(c,null,null,[a]).length>0}}}(),function(){var a=c.createElement("div");a.innerHTML="<div class='test e'></div><div class='test'></div>";if(!!a.getElementsByClassName&&a.getElementsByClassName("e").length!==0){a.lastChild.className="e";if(a.getElementsByClassName("e").length===1)return;l.order.splice(1,0,"CLASS"),l.find.CLASS=function(a,b,c){if(typeof b.getElementsByClassName!="undefined"&&!c)return b.getElementsByClassName(a[1])},a=null}}(),c.documentElement.contains?k.contains=function(a,b){return a!==b&&(a.contains?a.contains(b):!0)}:c.documentElement.compareDocumentPosition?k.contains=function(a,b){return!!(a.compareDocumentPosition(b)&16)}:k.contains=function(){return!1},k.isXML=function(a){var b=(a?a.ownerDocument||a:0).documentElement;return b?b.nodeName!=="HTML":!1};var v=function(a,b){var c,d=[],e="",f=b.nodeType?[b]:b;while(c=l.match.PSEUDO.exec(a))e+=c[0],a=a.replace(l.match.PSEUDO,"");a=l.relative[a]?a+"*":a;for(var g=0,h=f.length;g<h;g++)k(a,f[g],d);return k.filter(e,d)};f.find=k,f.expr=k.selectors,f.expr[":"]=f.expr.filters,f.unique=k.uniqueSort,f.text=k.getText,f.isXMLDoc=k.isXML,f.contains=k.contains}();var O=/Until$/,P=/^(?:parents|prevUntil|prevAll)/,Q=/,/,R=/^.[^:#\[\.,]*$/,S=Array.prototype.slice,T=f.expr.match.POS,U={children:!0,contents:!0,next:!0,prev:!0};f.fn.extend({find:function(a){var b=this,c,d;if(typeof a!="string")return f(a).filter(function(){for(c=0,d=b.length;c<d;c++)if(f.contains(b[c],this))return!0});var e=this.pushStack("","find",a),g,h,i;for(c=0,d=this.length;c<d;c++){g=e.length,f.find(a,this[c],e);if(c>0)for(h=g;h<e.length;h++)for(i=0;i<g;i++)if(e[i]===e[h]){e.splice(h--,1);break}}return e},has:function(a){var b=f(a);return this.filter(function(){for(var a=0,c=b.length;a<c;a++)if(f.contains(this,b[a]))return!0})},not:function(a){return this.pushStack(W(this,a,!1),"not",a)},filter:function(a){return this.pushStack(W(this,a,!0),"filter",a)},is:function(a){return!!a&&(typeof a=="string"?f.filter(a,this).length>0:this.filter(a).length>0)},closest:function(a,b){var c=[],d,e,g=this[0];if(f.isArray(a)){var h,i,j={},k=1;if(g&&a.length){for(d=0,e=a.length;d<e;d++)i=a[d],j[i]||(j[i]=T.test(i)?f(i,b||this.context):i);while(g&&g.ownerDocument&&g!==b){for(i in j)h=j[i],(h.jquery?h.index(g)>-1:f(g).is(h))&&c.push({selector:i,elem:g,level:k});g=g.parentNode,k++}}return c}var l=T.test(a)||typeof a!="string"?f(a,b||this.context):0;for(d=0,e=this.length;d<e;d++){g=this[d];while(g){if(l?l.index(g)>-1:f.find.matchesSelector(g,a)){c.push(g);break}g=g.parentNode;if(!g||!g.ownerDocument||g===b||g.nodeType===11)break}}c=c.length>1?f.unique(c):c;return this.pushStack(c,"closest",a)},index:function(a){if(!a||typeof a=="string")return f.inArray(this[0],a?f(a):this.parent().children());return f.inArray(a.jquery?a[0]:a,this)},add:function(a,b){var c=typeof a=="string"?f(a,b):f.makeArray(a&&a.nodeType?[a]:a),d=f.merge(this.get(),c);return this.pushStack(V(c[0])||V(d[0])?d:f.unique(d))},andSelf:function(){return this.add(this.prevObject)}}),f.each({parent:function(a){var b=a.parentNode;return b&&b.nodeType!==11?b:null},parents:function(a){return f.dir(a,"parentNode")},parentsUntil:function(a,b,c){return f.dir(a,"parentNode",c)},next:function(a){return f.nth(a,2,"nextSibling")},prev:function(a){return f.nth(a,2,"previousSibling")},nextAll:function(a){return f.dir(a,"nextSibling")},prevAll:function(a){return f.dir(a,"previousSibling")},nextUntil:function(a,b,c){return f.dir(a,"nextSibling",c)},prevUntil:function(a,b,c){return f.dir(a,"previousSibling",c)},siblings:function(a){return f.sibling(a.parentNode.firstChild,a)},children:function(a){return f.sibling(a.firstChild)},contents:function(a){return f.nodeName(a,"iframe")?a.contentDocument||a.contentWindow.document:f.makeArray(a.childNodes)}},function(a,b){f.fn[a]=function(c,d){var e=f.map(this,b,c),g=S.call(arguments);O.test(a)||(d=c),d&&typeof d=="string"&&(e=f.filter(d,e)),e=this.length>1&&!U[a]?f.unique(e):e,(this.length>1||Q.test(d))&&P.test(a)&&(e=e.reverse());return this.pushStack(e,a,g.join(","))}}),f.extend({filter:function(a,b,c){c&&(a=":not("+a+")");return b.length===1?f.find.matchesSelector(b[0],a)?[b[0]]:[]:f.find.matches(a,b)},dir:function(a,c,d){var e=[],g=a[c];while(g&&g.nodeType!==9&&(d===b||g.nodeType!==1||!f(g).is(d)))g.nodeType===1&&e.push(g),g=g[c];return e},nth:function(a,b,c,d){b=b||1;var e=0;for(;a;a=a[c])if(a.nodeType===1&&++e===b)break;return a},sibling:function(a,b){var c=[];for(;a;a=a.nextSibling)a.nodeType===1&&a!==b&&c.push(a);return c}});var X=/ jQuery\d+="(?:\d+|null)"/g,Y=/^\s+/,Z=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/ig,$=/<([\w:]+)/,_=/<tbody/i,ba=/<|&#?\w+;/,bb=/<(?:script|object|embed|option|style)/i,bc=/checked\s*(?:[^=]|=\s*.checked.)/i,bd=/\/(java|ecma)script/i,be=/^\s*<!(?:\[CDATA\[|\-\-)/,bf={option:[1,"<select multiple='multiple'>","</select>"],legend:[1,"<fieldset>","</fieldset>"],thead:[1,"<table>","</table>"],tr:[2,"<table><tbody>","</tbody></table>"],td:[3,"<table><tbody><tr>","</tr></tbody></table>"],col:[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"],area:[1,"<map>","</map>"],_default:[0,"",""]};bf.optgroup=bf.option,bf.tbody=bf.tfoot=bf.colgroup=bf.caption=bf.thead,bf.th=bf.td,f.support.htmlSerialize||(bf._default=[1,"div<div>","</div>"]),f.fn.extend({text:function(a){if(f.isFunction(a))return this.each(function(b){var c=f(this);c.text(a.call(this,b,c.text()))});if(typeof a!="object"&&a!==b)return this.empty().append((this[0]&&this[0].ownerDocument||c).createTextNode(a));return f.text(this)},wrapAll:function(a){if(f.isFunction(a))return this.each(function(b){f(this).wrapAll(a.call(this,b))});if(this[0]){var b=f(a,this[0].ownerDocument).eq(0).clone(!0);this[0].parentNode&&b.insertBefore(this[0]),b.map(function(){var a=this;while(a.firstChild&&a.firstChild.nodeType===1)a=a.firstChild;return a}).append(this)}return this},wrapInner:function(a){if(f.isFunction(a))return this.each(function(b){f(this).wrapInner(a.call(this,b))});return this.each(function(){var b=f(this),c=b.contents();c.length?c.wrapAll(a):b.append(a)})},wrap:function(a){return this.each(function(){f(this).wrapAll(a)})},unwrap:function(){return this.parent().each(function(){f.nodeName(this,"body")||f(this).replaceWith(this.childNodes)}).end()},append:function(){return this.domManip(arguments,!0,function(a){this.nodeType===1&&this.appendChild(a)})},prepend:function(){return this.domManip(arguments,!0,function(a){this.nodeType===1&&this.insertBefore(a,this.firstChild)})},before:function(){if(this[0]&&this[0].parentNode)return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this)});if(arguments.length){var a=f(arguments[0]);a.push.apply(a,this.toArray());return this.pushStack(a,"before",arguments)}},after:function(){if(this[0]&&this[0].parentNode)return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this.nextSibling)});if(arguments.length){var a=this.pushStack(this,"after",arguments);a.push.apply(a,f(arguments[0]).toArray());return a}},remove:function(a,b){for(var c=0,d;(d=this[c])!=null;c++)if(!a||f.filter(a,[d]).length)!b&&d.nodeType===1&&(f.cleanData(d.getElementsByTagName("*")),f.cleanData([d])),d.parentNode&&d.parentNode.removeChild(d);return this},empty:function(){for(var a=0,b;(b=this[a])!=null;a++){b.nodeType===1&&f.cleanData(b.getElementsByTagName("*"));while(b.firstChild)b.removeChild(b.firstChild)}return this},clone:function(a,b){a=a==null?!1:a,b=b==null?a:b;return this.map(function(){return f.clone(this,a,b)})},html:function(a){if(a===b)return this[0]&&this[0].nodeType===1?this[0].innerHTML.replace(X,""):null;if(typeof a=="string"&&!bb.test(a)&&(f.support.leadingWhitespace||!Y.test(a))&&!bf[($.exec(a)||["",""])[1].toLowerCase()]){a=a.replace(Z,"<$1></$2>");try{for(var c=0,d=this.length;c<d;c++)this[c].nodeType===1&&(f.cleanData(this[c].getElementsByTagName("*")),this[c].innerHTML=a)}catch(e){this.empty().append(a)}}else f.isFunction(a)?this.each(function(b){var c=f(this);c.html(a.call(this,b,c.html()))}):this.empty().append(a);return this},replaceWith:function(a){if(this[0]&&this[0].parentNode){if(f.isFunction(a))return this.each(function(b){var c=f(this),d=c.html();c.replaceWith(a.call(this,b,d))});typeof a!="string"&&(a=f(a).detach());return this.each(function(){var b=this.nextSibling,c=this.parentNode;f(this).remove(),b?f(b).before(a):f(c).append(a)})}return this.length?this.pushStack(f(f.isFunction(a)?a():a),"replaceWith",a):this},detach:function(a){return this.remove(a,!0)},domManip:function(a,c,d){var e,g,h,i,j=a[0],k=[];if(!f.support.checkClone&&arguments.length===3&&typeof j=="string"&&bc.test(j))return this.each(function(){f(this).domManip(a,c,d,!0)});if(f.isFunction(j))return this.each(function(e){var g=f(this);a[0]=j.call(this,e,c?g.html():b),g.domManip(a,c,d)});if(this[0]){i=j&&j.parentNode,f.support.parentNode&&i&&i.nodeType===11&&i.childNodes.length===this.length?e={fragment:i}:e=f.buildFragment(a,this,k),h=e.fragment,h.childNodes.length===1?g=h=h.firstChild:g=h.firstChild;if(g){c=c&&f.nodeName(g,"tr");for(var l=0,m=this.length,n=m-1;l<m;l++)d.call(c?bg(this[l],g):this[l],e.cacheable||m>1&&l<n?f.clone(h,!0,!0):h)}k.length&&f.each(k,bm)}return this}}),f.buildFragment=function(a,b,d){var e,g,h,i;b&&b[0]&&(i=b[0].ownerDocument||b[0]),i.createDocumentFragment||(i=c),a.length===1&&typeof a[0]=="string"&&a[0].length<512&&i===c&&a[0].charAt(0)==="<"&&!bb.test(a[0])&&(f.support.checkClone||!bc.test(a[0]))&&(g=!0,h=f.fragments[a[0]],h&&h!==1&&(e=h)),e||(e=i.createDocumentFragment(),f.clean(a,i,e,d)),g&&(f.fragments[a[0]]=h?e:1);return{fragment:e,cacheable:g}},f.fragments={},f.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(a,b){f.fn[a]=function(c){var d=[],e=f(c),g=this.length===1&&this[0].parentNode;if(g&&g.nodeType===11&&g.childNodes.length===1&&e.length===1){e[b](this[0]);return this}for(var h=0,i=e.length;h<i;h++){var j=(h>0?this.clone(!0):this).get();f(e[h])[b](j),d=d.concat(j )}return this.pushStack(d,a,e.selector)}}),f.extend({clone:function(a,b,c){var d=a.cloneNode(!0),e,g,h;if((!f.support.noCloneEvent||!f.support.noCloneChecked)&&(a.nodeType===1||a.nodeType===11)&&!f.isXMLDoc(a)){bi(a,d),e=bj(a),g=bj(d);for(h=0;e[h];++h)bi(e[h],g[h])}if(b){bh(a,d);if(c){e=bj(a),g=bj(d);for(h=0;e[h];++h)bh(e[h],g[h])}}e=g=null;return d},clean:function(a,b,d,e){var g;b=b||c,typeof b.createElement=="undefined"&&(b=b.ownerDocument||b[0]&&b[0].ownerDocument||c);var h=[],i;for(var j=0,k;(k=a[j])!=null;j++){typeof k=="number"&&(k+="");if(!k)continue;if(typeof k=="string")if(!ba.test(k))k=b.createTextNode(k);else{k=k.replace(Z,"<$1></$2>");var l=($.exec(k)||["",""])[1].toLowerCase(),m=bf[l]||bf._default,n=m[0],o=b.createElement("div");o.innerHTML=m[1]+k+m[2];while(n--)o=o.lastChild;if(!f.support.tbody){var p=_.test(k),q=l==="table"&&!p?o.firstChild&&o.firstChild.childNodes:m[1]==="<table>"&&!p?o.childNodes:[];for(i=q.length-1;i>=0;--i)f.nodeName(q[i],"tbody")&&!q[i].childNodes.length&&q[i].parentNode.removeChild(q[i])}!f.support.leadingWhitespace&&Y.test(k)&&o.insertBefore(b.createTextNode(Y.exec(k)[0]),o.firstChild),k=o.childNodes}var r;if(!f.support.appendChecked)if(k[0]&&typeof (r=k.length)=="number")for(i=0;i<r;i++)bl(k[i]);else bl(k);k.nodeType?h.push(k):h=f.merge(h,k)}if(d){g=function(a){return!a.type||bd.test(a.type)};for(j=0;h[j];j++)if(e&&f.nodeName(h[j],"script")&&(!h[j].type||h[j].type.toLowerCase()==="text/javascript"))e.push(h[j].parentNode?h[j].parentNode.removeChild(h[j]):h[j]);else{if(h[j].nodeType===1){var s=f.grep(h[j].getElementsByTagName("script"),g);h.splice.apply(h,[j+1,0].concat(s))}d.appendChild(h[j])}}return h},cleanData:function(a){var b,c,d=f.cache,e=f.expando,g=f.event.special,h=f.support.deleteExpando;for(var i=0,j;(j=a[i])!=null;i++){if(j.nodeName&&f.noData[j.nodeName.toLowerCase()])continue;c=j[f.expando];if(c){b=d[c]&&d[c][e];if(b&&b.events){for(var k in b.events)g[k]?f.event.remove(j,k):f.removeEvent(j,k,b.handle);b.handle&&(b.handle.elem=null)}h?delete j[f.expando]:j.removeAttribute&&j.removeAttribute(f.expando),delete d[c]}}}});var bn=/alpha\([^)]*\)/i,bo=/opacity=([^)]*)/,bp=/([A-Z]|^ms)/g,bq=/^-?\d+(?:px)?$/i,br=/^-?\d/,bs=/^[+\-]=/,bt=/[^+\-\.\de]+/g,bu={position:"absolute",visibility:"hidden",display:"block"},bv=["Left","Right"],bw=["Top","Bottom"],bx,by,bz;f.fn.css=function(a,c){if(arguments.length===2&&c===b)return this;return f.access(this,a,c,!0,function(a,c,d){return d!==b?f.style(a,c,d):f.css(a,c)})},f.extend({cssHooks:{opacity:{get:function(a,b){if(b){var c=bx(a,"opacity","opacity");return c===""?"1":c}return a.style.opacity}}},cssNumber:{fillOpacity:!0,fontWeight:!0,lineHeight:!0,opacity:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{"float":f.support.cssFloat?"cssFloat":"styleFloat"},style:function(a,c,d,e){if(!!a&&a.nodeType!==3&&a.nodeType!==8&&!!a.style){var g,h,i=f.camelCase(c),j=a.style,k=f.cssHooks[i];c=f.cssProps[i]||i;if(d===b){if(k&&"get"in k&&(g=k.get(a,!1,e))!==b)return g;return j[c]}h=typeof d;if(h==="number"&&isNaN(d)||d==null)return;h==="string"&&bs.test(d)&&(d=+d.replace(bt,"")+parseFloat(f.css(a,c)),h="number"),h==="number"&&!f.cssNumber[i]&&(d+="px");if(!k||!("set"in k)||(d=k.set(a,d))!==b)try{j[c]=d}catch(l){}}},css:function(a,c,d){var e,g;c=f.camelCase(c),g=f.cssHooks[c],c=f.cssProps[c]||c,c==="cssFloat"&&(c="float");if(g&&"get"in g&&(e=g.get(a,!0,d))!==b)return e;if(bx)return bx(a,c)},swap:function(a,b,c){var d={};for(var e in b)d[e]=a.style[e],a.style[e]=b[e];c.call(a);for(e in b)a.style[e]=d[e]}}),f.curCSS=f.css,f.each(["height","width"],function(a,b){f.cssHooks[b]={get:function(a,c,d){var e;if(c){if(a.offsetWidth!==0)return bA(a,b,d);f.swap(a,bu,function(){e=bA(a,b,d)});return e}},set:function(a,b){if(!bq.test(b))return b;b=parseFloat(b);if(b>=0)return b+"px"}}}),f.support.opacity||(f.cssHooks.opacity={get:function(a,b){return bo.test((b&&a.currentStyle?a.currentStyle.filter:a.style.filter)||"")?parseFloat(RegExp.$1)/100+"":b?"1":""},set:function(a,b){var c=a.style,d=a.currentStyle;c.zoom=1;var e=f.isNaN(b)?"":"alpha(opacity="+b*100+")",g=d&&d.filter||c.filter||"";c.filter=bn.test(g)?g.replace(bn,e):g+" "+e}}),f(function(){f.support.reliableMarginRight||(f.cssHooks.marginRight={get:function(a,b){var c;f.swap(a,{display:"inline-block"},function(){b?c=bx(a,"margin-right","marginRight"):c=a.style.marginRight});return c}})}),c.defaultView&&c.defaultView.getComputedStyle&&(by=function(a,c){var d,e,g;c=c.replace(bp,"-$1").toLowerCase();if(!(e=a.ownerDocument.defaultView))return b;if(g=e.getComputedStyle(a,null))d=g.getPropertyValue(c),d===""&&!f.contains(a.ownerDocument.documentElement,a)&&(d=f.style(a,c));return d}),c.documentElement.currentStyle&&(bz=function(a,b){var c,d=a.currentStyle&&a.currentStyle[b],e=a.runtimeStyle&&a.runtimeStyle[b],f=a.style;!bq.test(d)&&br.test(d)&&(c=f.left,e&&(a.runtimeStyle.left=a.currentStyle.left),f.left=b==="fontSize"?"1em":d||0,d=f.pixelLeft+"px",f.left=c,e&&(a.runtimeStyle.left=e));return d===""?"auto":d}),bx=by||bz,f.expr&&f.expr.filters&&(f.expr.filters.hidden=function(a){var b=a.offsetWidth,c=a.offsetHeight;return b===0&&c===0||!f.support.reliableHiddenOffsets&&(a.style.display||f.css(a,"display"))==="none"},f.expr.filters.visible=function(a){return!f.expr.filters.hidden(a)});var bB=/%20/g,bC=/\[\]$/,bD=/\r?\n/g,bE=/#.*$/,bF=/^(.*?):[ \t]*([^\r\n]*)\r?$/mg,bG=/^(?:color|date|datetime|email|hidden|month|number|password|range|search|tel|text|time|url|week)$/i,bH=/^(?:about|app|app\-storage|.+\-extension|file|widget):$/,bI=/^(?:GET|HEAD)$/,bJ=/^\/\//,bK=/\?/,bL=/<script\b[^<]*(?:(?!<\/script>)<[^<]*)*<\/script>/gi,bM=/^(?:select|textarea)/i,bN=/\s+/,bO=/([?&])_=[^&]*/,bP=/^([\w\+\.\-]+:)(?:\/\/([^\/?#:]*)(?::(\d+))?)?/,bQ=f.fn.load,bR={},bS={},bT,bU;try{bT=e.href}catch(bV){bT=c.createElement("a"),bT.href="",bT=bT.href}bU=bP.exec(bT.toLowerCase())||[],f.fn.extend({load:function(a,c,d){if(typeof a!="string"&&bQ)return bQ.apply(this,arguments);if(!this.length)return this;var e=a.indexOf(" ");if(e>=0){var g=a.slice(e,a.length);a=a.slice(0,e)}var h="GET";c&&(f.isFunction(c)?(d=c,c=b):typeof c=="object"&&(c=f.param(c,f.ajaxSettings.traditional),h="POST"));var i=this;f.ajax({url:a,type:h,dataType:"html",data:c,complete:function(a,b,c){c=a.responseText,a.isResolved()&&(a.done(function(a){c=a}),i.html(g?f("<div>").append(c.replace(bL,"")).find(g):c)),d&&i.each(d,[c,b,a])}});return this},serialize:function(){return f.param(this.serializeArray())},serializeArray:function(){return this.map(function(){return this.elements?f.makeArray(this.elements):this}).filter(function(){return this.name&&!this.disabled&&(this.checked||bM.test(this.nodeName)||bG.test(this.type))}).map(function(a,b){var c=f(this).val();return c==null?null:f.isArray(c)?f.map(c,function(a,c){return{name:b.name,value:a.replace(bD,"\r\n")}}):{name:b.name,value:c.replace(bD,"\r\n")}}).get()}}),f.each("ajaxStart ajaxStop ajaxComplete ajaxError ajaxSuccess ajaxSend".split(" "),function(a,b){f.fn[b]=function(a){return this.bind(b,a)}}),f.each(["get","post"],function(a,c){f[c]=function(a,d,e,g){f.isFunction(d)&&(g=g||e,e=d,d=b);return f.ajax({type:c,url:a,data:d,success:e,dataType:g})}}),f.extend({getScript:function(a,c){return f.get(a,b,c,"script")},getJSON:function(a,b,c){return f.get(a,b,c,"json")},ajaxSetup:function(a,b){b?f.extend(!0,a,f.ajaxSettings,b):(b=a,a=f.extend(!0,f.ajaxSettings,b));for(var c in{context:1,url:1})c in b?a[c]=b[c]:c in f.ajaxSettings&&(a[c]=f.ajaxSettings[c]);return a},ajaxSettings:{url:bT,isLocal:bH.test(bU[1]),global:!0,type:"GET",contentType:"application/x-www-form-urlencoded",processData:!0,async:!0,accepts:{xml:"application/xml, text/xml",html:"text/html",text:"text/plain",json:"application/json, text/javascript","*":"*/*"},contents:{xml:/xml/,html:/html/,json:/json/},responseFields:{xml:"responseXML",text:"responseText"},converters:{"* text":a.String,"text html":!0,"text json":f.parseJSON,"text xml":f.parseXML}},ajaxPrefilter:bW(bR),ajaxTransport:bW(bS),ajax:function(a,c){function w(a,c,l,m){if(s!==2){s=2,q&&clearTimeout(q),p=b,n=m||"",v.readyState=a?4:0;var o,r,u,w=l?bZ(d,v,l):b,x,y;if(a>=200&&a<300||a===304){if(d.ifModified){if(x=v.getResponseHeader("Last-Modified"))f.lastModified[k]=x;if(y=v.getResponseHeader("Etag"))f.etag[k]=y}if(a===304)c="notmodified",o=!0;else try{r=b$(d,w),c="success",o=!0}catch(z){c="parsererror",u=z}}else{u=c;if(!c||a)c="error",a<0&&(a=0)}v.status=a,v.statusText=c,o?h.resolveWith(e,[r,c,v]):h.rejectWith(e,[v,c,u]),v.statusCode(j),j=b,t&&g.trigger("ajax"+(o?"Success":"Error"),[v,d,o?r:u]),i.resolveWith(e,[v,c]),t&&(g.trigger("ajaxComplete",[v,d]),--f.active||f.event.trigger("ajaxStop"))}}typeof a=="object"&&(c=a,a=b),c=c||{};var d=f.ajaxSetup({},c),e=d.context||d,g=e!==d&&(e.nodeType||e instanceof f)?f(e):f.event,h=f.Deferred(),i=f._Deferred(),j=d.statusCode||{},k,l={},m={},n,o,p,q,r,s=0,t,u,v={readyState:0,setRequestHeader:function(a,b){if(!s){var c=a.toLowerCase();a=m[c]=m[c]||a,l[a]=b}return this},getAllResponseHeaders:function(){return s===2?n:null},getResponseHeader:function(a){var c;if(s===2){if(!o){o={};while(c=bF.exec(n))o[c[1].toLowerCase()]=c[2]}c=o[a.toLowerCase()]}return c===b?null:c},overrideMimeType:function(a){s||(d.mimeType=a);return this},abort:function(a){a=a||"abort",p&&p.abort(a),w(0,a);return this}};h.promise(v),v.success=v.done,v.error=v.fail,v.complete=i.done,v.statusCode=function(a){if(a){var b;if(s<2)for(b in a)j[b]=[j[b],a[b]];else b=a[v.status],v.then(b,b)}return this},d.url=((a||d.url)+"").replace(bE,"").replace(bJ,bU[1]+"//"),d.dataTypes=f.trim(d.dataType||"*").toLowerCase().split(bN),d.crossDomain==null&&(r=bP.exec(d.url.toLowerCase()),d.crossDomain=!(!r||r[1]==bU[1]&&r[2]==bU[2]&&(r[3]||(r[1]==="http:"?80:443))==(bU[3]||(bU[1]==="http:"?80:443)))),d.data&&d.processData&&typeof d.data!="string"&&(d.data=f.param(d.data,d.traditional)),bX(bR,d,c,v);if(s===2)return!1;t=d.global,d.type=d.type.toUpperCase(),d.hasContent=!bI.test(d.type),t&&f.active++===0&&f.event.trigger("ajaxStart");if(!d.hasContent){d.data&&(d.url+=(bK.test(d.url)?"&":"?")+d.data),k=d.url;if(d.cache===!1){var x=f.now(),y=d.url.replace(bO,"$1_="+x);d.url=y+(y===d.url?(bK.test(d.url)?"&":"?")+"_="+x:"")}}(d.data&&d.hasContent&&d.contentType!==!1||c.contentType)&&v.setRequestHeader("Content-Type",d.contentType),d.ifModified&&(k=k||d.url,f.lastModified[k]&&v.setRequestHeader("If-Modified-Since",f.lastModified[k]),f.etag[k]&&v.setRequestHeader("If-None-Match",f.etag[k])),v.setRequestHeader("Accept",d.dataTypes[0]&&d.accepts[d.dataTypes[0]]?d.accepts[d.dataTypes[0]]+(d.dataTypes[0]!=="*"?", */*; q=0.01":""):d.accepts["*"]);for(u in d.headers)v.setRequestHeader(u,d.headers[u]);if(d.beforeSend&&(d.beforeSend.call(e,v,d)===!1||s===2)){v.abort();return!1}for(u in{success:1,error:1,complete:1})v[u](d[u]);p=bX(bS,d,c,v);if(!p)w(-1,"No Transport");else{v.readyState=1,t&&g.trigger("ajaxSend",[v,d]),d.async&&d.timeout>0&&(q=setTimeout(function(){v.abort("timeout")},d.timeout));try{s=1,p.send(l,w)}catch(z){status<2?w(-1,z):f.error(z)}}return v},param:function(a,c){var d=[],e=function(a,b){b=f.isFunction(b)?b():b,d[d.length]=encodeURIComponent(a)+"="+encodeURIComponent(b)};c===b&&(c=f.ajaxSettings.traditional);if(f.isArray(a)||a.jquery&&!f.isPlainObject(a))f.each(a,function(){e(this.name,this.value)});else for(var g in a)bY(g,a[g],c,e);return d.join("&").replace(bB,"+")}}),f.extend({active:0,lastModified:{},etag:{}});var b_=f.now(),ca=/(\=)\?(&|$)|\?\?/i;f.ajaxSetup({jsonp:"callback",jsonpCallback:function(){return f.expando+"_"+b_++}}),f.ajaxPrefilter("json jsonp",function(b,c,d){var e=b.contentType==="application/x-www-form-urlencoded"&&typeof b.data=="string";if(b.dataTypes[0]==="jsonp"||b.jsonp!==!1&&(ca.test(b.url)||e&&ca.test(b.data))){var g,h=b.jsonpCallback=f.isFunction(b.jsonpCallback)?b.jsonpCallback():b.jsonpCallback,i=a[h],j=b.url,k=b.data,l="$1"+h+"$2";b.jsonp!==!1&&(j=j.replace(ca,l),b.url===j&&(e&&(k=k.replace(ca,l)),b.data===k&&(j+=(/\?/.test(j)?"&":"?")+b.jsonp+"="+h))),b.url=j,b.data=k,a[h]=function(a){g=[a]},d.always(function(){a[h]=i,g&&f.isFunction(i)&&a[h](g[0])}),b.converters["script json"]=function(){g||f.error(h+" was not called");return g[0]},b.dataTypes[0]="json";return"script"}}),f.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/javascript|ecmascript/},converters:{"text script":function(a){f.globalEval(a);return a}}}),f.ajaxPrefilter("script",function(a){a.cache===b&&(a.cache=!1),a.crossDomain&&(a.type="GET",a.global=!1)}),f.ajaxTransport("script",function(a){if(a.crossDomain){var d,e=c.head||c.getElementsByTagName("head")[0]||c.documentElement;return{send:function(f,g){d=c.createElement("script"),d.async="async",a.scriptCharset&&(d.charset=a.scriptCharset),d.src=a.url,d.onload=d.onreadystatechange=function(a,c){if(c||!d.readyState||/loaded|complete/.test(d.readyState))d.onload=d.onreadystatechange=null,e&&d.parentNode&&e.removeChild(d),d=b,c||g(200,"success")},e.insertBefore(d,e.firstChild)},abort:function(){d&&d.onload(0,1)}}}});var cb=a.ActiveXObject?function(){for(var a in cd)cd[a](0,1)}:!1,cc=0,cd;f.ajaxSettings.xhr=a.ActiveXObject?function(){return!this.isLocal&&ce()||cf()}:ce,function(a){f.extend(f.support,{ajax:!!a,cors:!!a&&"withCredentials"in a})}(f.ajaxSettings.xhr()),f.support.ajax&&f.ajaxTransport(function(c){if(!c.crossDomain||f.support.cors){var d;return{send:function(e,g){var h=c.xhr(),i,j;c.username?h.open(c.type,c.url,c.async,c.username,c.password):h.open(c.type,c.url,c.async);if(c.xhrFields)for(j in c.xhrFields)h[j]=c.xhrFields[j];c.mimeType&&h.overrideMimeType&&h.overrideMimeType(c.mimeType),!c.crossDomain&&!e["X-Requested-With"]&&(e["X-Requested-With"]="XMLHttpRequest");try{for(j in e)h.setRequestHeader(j,e[j])}catch(k){}h.send(c.hasContent&&c.data||null),d=function(a,e){var j,k,l,m,n;try{if(d&&(e||h.readyState===4)){d=b,i&&(h.onreadystatechange=f.noop,cb&&delete cd[i]);if(e)h.readyState!==4&&h.abort();else{j=h.status,l=h.getAllResponseHeaders(),m={},n=h.responseXML,n&&n.documentElement&&(m.xml=n),m.text=h.responseText;try{k=h.statusText}catch(o){k=""}!j&&c.isLocal&&!c.crossDomain?j=m.text?200:404:j===1223&&(j=204)}}}catch(p){e||g(-1,p)}m&&g(j,k,m,l)},!c.async||h.readyState===4?d():(i=++cc,cb&&(cd||(cd={},f(a).unload(cb)),cd[i]=d),h.onreadystatechange=d)},abort:function(){d&&d(0,1)}}}});var cg={},ch,ci,cj=/^(?:toggle|show|hide)$/,ck=/^([+\-]=)?([\d+.\-]+)([a-z%]*)$/i,cl,cm=[["height","marginTop","marginBottom","paddingTop","paddingBottom"],["width","marginLeft","marginRight","paddingLeft","paddingRight"],["opacity"]],cn,co=a.webkitRequestAnimationFrame||a.mozRequestAnimationFrame||a.oRequestAnimationFrame;f.fn.extend({show:function(a,b,c){var d,e;if(a||a===0)return this.animate(cr("show",3),a,b,c);for(var g=0,h=this.length;g<h;g++)d=this[g],d.style&&(e=d.style.display,!f._data(d,"olddisplay")&&e==="none"&&(e=d.style.display=""),e===""&&f.css(d,"display")==="none"&&f._data(d,"olddisplay",cs(d.nodeName)));for(g=0;g<h;g++){d=this[g];if(d.style){e=d.style.display;if(e===""||e==="none")d.style.display=f._data(d,"olddisplay")||""}}return this},hide:function(a,b,c){if(a||a===0)return this.animate(cr("hide",3),a,b,c);for(var d=0,e=this.length;d<e;d++)if(this[d].style){var g=f.css(this[d],"display");g!=="none"&&!f._data(this[d],"olddisplay")&&f._data(this[d],"olddisplay",g)}for(d=0;d<e;d++)this[d].style&&(this[d].style.display="none");return this},_toggle:f.fn.toggle,toggle:function(a,b,c){var d=typeof a=="boolean";f.isFunction(a)&&f.isFunction(b)?this._toggle.apply(this,arguments):a==null||d?this.each(function(){var b=d?a:f(this).is(":hidden");f(this)[b?"show":"hide"]()}):this.animate(cr("toggle",3),a,b,c);return this},fadeTo:function(a,b,c,d){return this.filter(":hidden").css("opacity",0).show().end().animate({opacity:b},a,c,d)},animate:function(a,b,c,d){var e=f.speed(b,c,d);if(f.isEmptyObject(a))return this.each(e.complete,[!1]);a=f.extend({},a);return this[e.queue===!1?"each":"queue"](function(){e.queue===!1&&f._mark(this);var b=f.extend({},e),c=this.nodeType===1,d=c&&f(this).is(":hidden"),g,h,i,j,k,l,m,n,o;b.animatedProperties={};for(i in a){g=f.camelCase(i),i!==g&&(a[g]=a[i],delete a[i]),h=a[g],f.isArray(h)?(b.animatedProperties[g]=h[1],h=a[g]=h[0]):b.animatedProperties[g]=b.specialEasing&&b.specialEasing[g]||b.easing||"swing";if(h==="hide"&&d||h==="show"&&!d)return b.complete.call(this);c&&(g==="height"||g==="width")&&(b.overflow=[this.style.overflow,this.style.overflowX,this.style.overflowY],f.css(this,"display")==="inline"&&f.css(this,"float")==="none"&&(f.support.inlineBlockNeedsLayout?(j=cs(this.nodeName),j==="inline"?this.style.display="inline-block":(this.style.display="inline",this.style.zoom=1)):this.style.display="inline-block"))}b.overflow!=null&&(this.style.overflow="hidden");for(i in a)k=new f.fx(this,b,i),h=a[i],cj.test(h)?k[h==="toggle"?d?"show":"hide":h]():(l=ck.exec(h),m=k.cur(),l?(n=parseFloat(l[2]),o=l[3]||(f.cssNumber[i]?"":"px"),o!=="px"&&(f.style(this,i,(n||1)+o),m=(n||1)/k.cur()*m,f.style(this,i,m+o)),l[1]&&(n=(l[1]==="-="?-1:1)*n+m),k.custom(m,n,o)):k.custom(m,h,""));return!0})},stop:function(a,b){a&&this.queue([]),this.each(function(){var a=f.timers,c=a.length;b||f._unmark(!0,this);while(c--)a[c].elem===this&&(b&&a[c](!0),a.splice(c,1))}),b||this.dequeue();return this}}),f.each({slideDown:cr("show",1),slideUp:cr("hide",1),slideToggle:cr("toggle",1),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"},fadeToggle:{opacity:"toggle"}},function(a,b){f.fn[a]=function(a,c,d){return this.animate(b,a,c,d)}}),f.extend({speed:function(a,b,c){var d=a&&typeof a=="object"?f.extend({},a):{complete:c||!c&&b||f.isFunction(a)&&a,duration:a,easing:c&&b||b&&!f.isFunction(b)&&b};d.duration=f.fx.off?0:typeof d.duration=="number"?d.duration:d.duration in f.fx.speeds?f.fx.speeds[d.duration]:f.fx.speeds._default,d.old=d.complete,d.complete=function(a){f.isFunction(d.old)&&d.old.call(this),d.queue!==!1?f.dequeue(this):a!==!1&&f._unmark(this)};return d},easing:{linear:function(a,b,c,d){return c+d*a},swing:function(a,b,c,d){return(-Math.cos(a*Math.PI)/2+.5)*d+c}},timers:[],fx:function(a,b,c){this.options=b,this.elem=a,this.prop=c,b.orig=b.orig||{}}}),f.fx.prototype={update:function(){this.options.step&&this.options.step.call(this.elem,this.now,this),(f.fx.step[this.prop]||f.fx.step._default)(this)},cur:function(){if(this.elem[this.prop]!=null&&(!this.elem.style||this.elem.style[this.prop]==null))return this.elem[this.prop];var a,b=f.css(this.elem,this.prop);return isNaN(a=parseFloat(b))?!b||b==="auto"?0:b:a},custom:function(a,b,c){function h(a){return d.step(a)}var d=this,e=f.fx,g;this.startTime=cn||cp(),this.start=a,this.end=b,this.unit=c||this.unit||(f.cssNumber[this.prop]?"":"px"),this.now=this.start,this.pos=this.state=0,h.elem=this.elem,h()&&f.timers.push(h)&&!cl&&(co?(cl=!0,g=function(){cl&&(co(g),e.tick())},co(g)):cl=setInterval(e.tick,e.interval))},show:function(){this.options.orig[this.prop]=f.style(this.elem,this.prop),this.options.show=!0,this.custom(this.prop==="width"||this.prop==="height"?1:0,this.cur()),f(this.elem).show()},hide:function(){this.options.orig[this.prop]=f.style(this.elem,this.prop),this.options.hide=!0,this.custom(this.cur(),0)},step:function(a){var b=cn||cp(),c=!0,d=this.elem,e=this.options,g,h;if(a||b>=e.duration+this.startTime){this.now=this.end,this.pos=this.state=1,this.update(),e.animatedProperties[this.prop]=!0;for(g in e.animatedProperties)e.animatedProperties[g]!==!0&&(c=!1);if(c){e.overflow!=null&&!f.support.shrinkWrapBlocks&&f.each(["","X","Y"],function(a,b){d.style["overflow"+b]=e.overflow[a]}),e.hide&&f(d).hide();if(e.hide||e.show)for(var i in e.animatedProperties)f.style(d,i,e.orig[i]);e.complete.call(d)}return!1}e.duration==Infinity?this.now=b:(h=b-this.startTime,this.state=h/e.duration,this.pos=f.easing[e.animatedProperties[this.prop]](this.state,h,0,1,e.duration),this.now=this.start+(this.end-this.start)*this.pos),this.update();return!0}},f.extend(f.fx,{tick:function(){for(var a=f.timers,b=0;b<a.length;++b)a[b]()||a.splice(b--,1);a.length||f.fx.stop()},interval:13,stop:function(){clearInterval(cl),cl=null},speeds:{slow:600,fast:200,_default:400},step:{opacity:function(a){f.style(a.elem,"opacity",a.now)},_default:function(a){a.elem.style&&a.elem.style[a.prop]!=null?a.elem.style[a.prop]=(a.prop==="width"||a.prop==="height"?Math.max(0,a.now):a.now)+a.unit:a.elem[a.prop]=a.now}}}),f.expr&&f.expr.filters&&(f.expr.filters.animated=function(a){return f.grep(f.timers,function(b){return a===b.elem}).length});var ct=/^t(?:able|d|h)$/i,cu=/^(?:body|html)$/i;"getBoundingClientRect"in c.documentElement?f.fn.offset=function(a){var b=this[0],c;if(a)return this.each(function(b){f.offset.setOffset(this,a,b)});if(!b||!b.ownerDocument)return null;if(b===b.ownerDocument.body)return f.offset.bodyOffset(b);try{c=b.getBoundingClientRect()}catch(d){}var e=b.ownerDocument,g=e.documentElement;if(!c||!f.contains(g,b))return c?{top:c.top,left:c.left}:{top:0,left:0};var h=e.body,i=cv(e),j=g.clientTop||h.clientTop||0,k=g.clientLeft||h.clientLeft||0,l=i.pageYOffset||f.support.boxModel&&g.scrollTop||h.scrollTop,m=i.pageXOffset||f.support.boxModel&&g.scrollLeft||h.scrollLeft,n=c.top+l-j,o=c.left+m-k;return{top:n,left:o}}:f.fn.offset=function(a){var b=this[0];if(a)return this.each(function(b){f.offset.setOffset(this,a,b)});if(!b||!b.ownerDocument)return null;if(b===b.ownerDocument.body)return f.offset.bodyOffset(b);f.offset.initialize();var c,d=b.offsetParent,e=b,g=b.ownerDocument,h=g.documentElement,i=g.body,j=g.defaultView,k=j?j.getComputedStyle(b,null):b.currentStyle,l=b.offsetTop,m=b.offsetLeft;while((b=b.parentNode)&&b!==i&&b!==h){if(f.offset.supportsFixedPosition&&k.position==="fixed")break;c=j?j.getComputedStyle(b,null):b.currentStyle,l-=b.scrollTop,m-=b.scrollLeft,b===d&&(l+=b.offsetTop,m+=b.offsetLeft,f.offset.doesNotAddBorder&&(!f.offset.doesAddBorderForTableAndCells||!ct.test(b.nodeName))&&(l+=parseFloat(c.borderTopWidth)||0,m+=parseFloat(c.borderLeftWidth)||0),e=d,d=b.offsetParent),f.offset.subtractsBorderForOverflowNotVisible&&c.overflow!=="visible"&&(l+=parseFloat(c.borderTopWidth)||0,m+=parseFloat(c.borderLeftWidth)||0),k=c}if(k.position==="relative"||k.position==="static")l+=i.offsetTop,m+=i.offsetLeft;f.offset.supportsFixedPosition&&k.position==="fixed"&&(l+=Math.max(h.scrollTop,i.scrollTop),m+=Math.max(h.scrollLeft,i.scrollLeft));return{top:l,left:m}},f.offset={initialize:function(){var a=c.body,b=c.createElement("div"),d,e,g,h,i=parseFloat(f.css(a,"marginTop"))||0,j="<div style='position:absolute;top:0;left:0;margin:0;border:5px solid #000;padding:0;width:1px;height:1px;'><div></div></div><table style='position:absolute;top:0;left:0;margin:0;border:5px solid #000;padding:0;width:1px;height:1px;' cellpadding='0' cellspacing='0'><tr><td></td></tr></table>";f.extend(b.style,{position:"absolute",top:0,left:0,margin:0,border:0,width:"1px",height:"1px",visibility:"hidden"}),b.innerHTML=j,a.insertBefore(b,a.firstChild),d=b.firstChild,e=d.firstChild,h=d.nextSibling.firstChild.firstChild,this.doesNotAddBorder=e.offsetTop!==5,this.doesAddBorderForTableAndCells=h.offsetTop===5,e.style.position="fixed",e.style.top="20px",this.supportsFixedPosition=e.offsetTop===20||e.offsetTop===15,e.style.position=e.style.top="",d.style.overflow="hidden",d.style.position="relative",this.subtractsBorderForOverflowNotVisible=e.offsetTop===-5,this.doesNotIncludeMarginInBodyOffset=a.offsetTop!==i,a.removeChild(b),f.offset.initialize=f.noop},bodyOffset:function(a){var b=a.offsetTop,c=a.offsetLeft;f.offset.initialize(),f.offset.doesNotIncludeMarginInBodyOffset&&(b+=parseFloat(f.css(a,"marginTop"))||0,c+=parseFloat(f.css(a,"marginLeft"))||0);return{top:b,left:c}},setOffset:function(a,b,c){var d=f.css(a,"position");d==="static"&&(a.style.position="relative");var e=f(a),g=e.offset(),h=f.css(a,"top"),i=f.css(a,"left"),j=(d==="absolute"||d==="fixed")&&f.inArray("auto",[h,i])>-1,k={},l={},m,n;j?(l=e.position(),m=l.top,n=l.left):(m=parseFloat(h)||0,n=parseFloat(i)||0),f.isFunction(b)&&(b=b.call(a,c,g)),b.top!=null&&(k.top=b.top-g.top+m),b.left!=null&&(k.left=b.left-g.left+n),"using"in b?b.using.call(a,k):e.css(k)}},f.fn.extend({position:function(){if(!this[0])return null;var a=this[0],b=this.offsetParent(),c=this.offset(),d=cu.test(b[0].nodeName)?{top:0,left:0}:b.offset();c.top-=parseFloat(f.css(a,"marginTop"))||0,c.left-=parseFloat(f.css(a,"marginLeft"))||0,d.top+=parseFloat(f.css(b[0],"borderTopWidth"))||0,d.left+=parseFloat(f.css(b[0],"borderLeftWidth"))||0;return{top:c.top-d.top,left:c.left-d.left}},offsetParent:function(){return this.map(function(){var a=this.offsetParent||c.body;while(a&&!cu.test(a.nodeName)&&f.css(a,"position")==="static")a=a.offsetParent;return a})}}),f.each(["Left","Top"],function(a,c){var d="scroll"+c;f.fn[d]=function(c){var e,g;if(c===b){e=this[0];if(!e)return null;g=cv(e);return g?"pageXOffset"in g?g[a?"pageYOffset":"pageXOffset"]:f.support.boxModel&&g.document.documentElement[d]||g.document.body[d]:e[d]}return this.each(function(){g=cv(this),g?g.scrollTo(a?f(g).scrollLeft():c,a?c:f(g).scrollTop()):this[d]=c})}}),f.each(["Height","Width"],function(a,c){var d=c.toLowerCase();f.fn["inner"+c]=function(){var a=this[0];return a&&a.style?parseFloat(f.css(a,d,"padding")):null},f.fn["outer"+c]=function(a){var b=this[0];return b&&b.style?parseFloat(f.css(b,d,a?"margin":"border")):null},f.fn[d]=function(a){var e=this[0];if(!e)return a==null?null:this;if(f.isFunction(a))return this.each(function(b){var c=f(this);c[d](a.call(this,b,c[d]()))});if(f.isWindow(e)){var g=e.document.documentElement["client"+c];return e.document.compatMode==="CSS1Compat"&&g||e.document.body["client"+c]||g}if(e.nodeType===9)return Math.max(e.documentElement["client"+c],e.body["scroll"+c],e.documentElement["scroll"+c],e.body["offset"+c],e.documentElement["offset"+c]);if(a===b){var h=f.css(e,d),i=parseFloat(h);return f.isNaN(i)?h:i}return this.css(d,typeof a=="string"?a:a+"px")}}),a.jQuery=a.$=f})(window);
fields/types/text/TextColumn.js
matthewstyers/keystone
import React from 'react'; import ItemsTableCell from '../../components/ItemsTableCell'; import ItemsTableValue from '../../components/ItemsTableValue'; var TextColumn = React.createClass({ displayName: 'TextColumn', propTypes: { col: React.PropTypes.object, data: React.PropTypes.object, linkTo: React.PropTypes.string, }, getValue () { // cropping text is important for textarea, which uses this column const value = this.props.data.fields[this.props.col.path]; return value ? value.substr(0, 100) : null; }, render () { const value = this.getValue(); const empty = !value && this.props.linkTo ? true : false; const className = this.props.col.field.monospace ? 'ItemList__value--monospace' : undefined; return ( <ItemsTableCell> <ItemsTableValue className={className} to={this.props.linkTo} empty={empty} padded interior field={this.props.col.type}> {value} </ItemsTableValue> </ItemsTableCell> ); }, }); module.exports = TextColumn;
node_modules/react-bootstrap/es/Radio.js
saltypaul/SnipTodo
import _extends from 'babel-runtime/helpers/extends'; import _objectWithoutProperties from 'babel-runtime/helpers/objectWithoutProperties'; import _classCallCheck from 'babel-runtime/helpers/classCallCheck'; import _possibleConstructorReturn from 'babel-runtime/helpers/possibleConstructorReturn'; import _inherits from 'babel-runtime/helpers/inherits'; import classNames from 'classnames'; import React from 'react'; import warning from 'warning'; import { bsClass, getClassSet, prefix, splitBsProps } from './utils/bootstrapUtils'; var propTypes = { inline: React.PropTypes.bool, disabled: React.PropTypes.bool, /** * Only valid if `inline` is not set. */ validationState: React.PropTypes.oneOf(['success', 'warning', 'error', null]), /** * Attaches a ref to the `<input>` element. Only functions can be used here. * * ```js * <Radio inputRef={ref => { this.input = ref; }} /> * ``` */ inputRef: React.PropTypes.func }; var defaultProps = { inline: false, disabled: false }; var Radio = function (_React$Component) { _inherits(Radio, _React$Component); function Radio() { _classCallCheck(this, Radio); return _possibleConstructorReturn(this, _React$Component.apply(this, arguments)); } Radio.prototype.render = function render() { var _props = this.props, inline = _props.inline, disabled = _props.disabled, validationState = _props.validationState, inputRef = _props.inputRef, className = _props.className, style = _props.style, children = _props.children, props = _objectWithoutProperties(_props, ['inline', 'disabled', 'validationState', 'inputRef', 'className', 'style', 'children']); var _splitBsProps = splitBsProps(props), bsProps = _splitBsProps[0], elementProps = _splitBsProps[1]; var input = React.createElement('input', _extends({}, elementProps, { ref: inputRef, type: 'radio', disabled: disabled })); if (inline) { var _classes2; var _classes = (_classes2 = {}, _classes2[prefix(bsProps, 'inline')] = true, _classes2.disabled = disabled, _classes2); // Use a warning here instead of in propTypes to get better-looking // generated documentation. process.env.NODE_ENV !== 'production' ? warning(!validationState, '`validationState` is ignored on `<Radio inline>`. To display ' + 'validation state on an inline radio, set `validationState` on a ' + 'parent `<FormGroup>` or other element instead.') : void 0; return React.createElement( 'label', { className: classNames(className, _classes), style: style }, input, children ); } var classes = _extends({}, getClassSet(bsProps), { disabled: disabled }); if (validationState) { classes['has-' + validationState] = true; } return React.createElement( 'div', { className: classNames(className, classes), style: style }, React.createElement( 'label', null, input, children ) ); }; return Radio; }(React.Component); Radio.propTypes = propTypes; Radio.defaultProps = defaultProps; export default bsClass('radio', Radio);
src/components/Hosts.js
OpenCollective/frontend
import React from 'react'; import PropTypes from 'prop-types'; import Header from './Header'; import Body from './Body'; import Footer from './Footer'; import HostsWithData from './HostsWithData'; import HostsCover from './HostsCover'; import { defineMessages } from 'react-intl'; import withIntl from '../lib/withIntl'; class Hosts extends React.Component { static propTypes = { collective: PropTypes.object, }; constructor(props) { super(props); this.state = { status: 'idle', result: {} }; this.messages = defineMessages({ 'hosts.title': { id: 'hosts.title', defaultMessage: 'Open Collective Hosts', }, 'hosts.description': { id: 'hosts.description', defaultMessage: "Hosts are legal entities that collect money on behalf of open collectives so that they don't have to worry about accounting, taxes, etc. Some also provide extra services. {findOutMoreLink}", }, }); } render() { const { LoggedInUser, intl } = this.props; const title = intl.formatMessage(this.messages['hosts.title']); const description = intl.formatMessage(this.messages['hosts.description'], { findOutMoreLink: '', }); return ( <div className="Hosts"> <style jsx> {` .success { color: green; } .error { color: red; } .login { text-align: center; } .actions { text-align: center; margin-bottom: 5rem; } `} </style> <Header title={title} description={description} twitterHandle="opencollect" className={this.state.status} LoggedInUser={LoggedInUser} /> <Body> <HostsCover title={title} description={description} href="/hosts" className="small" /> <div className="content"> <HostsWithData LoggedInUser={LoggedInUser} /> </div> </Body> <Footer /> </div> ); } } export default withIntl(Hosts);
app/js/index.js
DawChihLiou/ci-boilerplate
import React from 'react' import { render } from 'react-dom' import { Provider } from 'react-redux' import { createStore, applyMiddleware } from 'redux' import createLogger from 'redux-logger' import reducer from './reducer' import AppRouter from './AppRouter' const logger = createLogger() const configureStore = () => { return createStore( reducer, applyMiddleware(logger) ) } const store = configureStore() render ( <Provider store={ store }> <AppRouter /> </Provider>, document.getElementById('root') )
deps/v8/test/mjsunit/es6/symbols.js
hellotomfan/v8-coroutine
// Copyright 2013 the V8 project authors. All rights reserved. // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code must retain the above copyright // notice, this list of conditions and the following disclaimer. // * Redistributions in binary form must reproduce the above // copyright notice, this list of conditions and the following // disclaimer in the documentation and/or other materials provided // with the distribution. // * Neither the name of Google Inc. nor the names of its // contributors may be used to endorse or promote products derived // from this software without specific prior written permission. // // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. // Flags: --expose-gc --allow-natives-syntax --harmony-tostring var symbols = [] // Returns true if the string is a valid // serialization of Symbols added to the 'symbols' // array. Adjust if you extend 'symbols' with other // values. function isValidSymbolString(s) { return ["Symbol(66)", "Symbol()"].indexOf(s) >= 0; } // Test different forms of constructor calls. function TestNew() { function indirectSymbol() { return Symbol() } function indirect() { return indirectSymbol() } for (var i = 0; i < 2; ++i) { for (var j = 0; j < 5; ++j) { symbols.push(Symbol()) symbols.push(Symbol(undefined)) symbols.push(Symbol("66")) symbols.push(Symbol(66)) symbols.push(Symbol().valueOf()) symbols.push(indirect()) } %OptimizeFunctionOnNextCall(indirect) indirect() // Call once before GC throws away type feedback. gc() // Promote existing symbols and then allocate some more. } assertThrows(function () { Symbol(Symbol()) }, TypeError) assertThrows(function () { new Symbol(66) }, TypeError) } TestNew() function TestType() { for (var i in symbols) { assertEquals("symbol", typeof symbols[i]) assertTrue(typeof symbols[i] === "symbol") assertFalse(%SymbolIsPrivate(symbols[i])) assertEquals(null, %_ClassOf(symbols[i])) assertEquals("Symbol", %_ClassOf(Object(symbols[i]))) } } TestType() function TestPrototype() { assertSame(Object.prototype, Symbol.prototype.__proto__) assertSame(Symbol.prototype, Symbol().__proto__) assertSame(Symbol.prototype, Object(Symbol()).__proto__) for (var i in symbols) { assertSame(Symbol.prototype, symbols[i].__proto__) } } TestPrototype() function TestConstructor() { assertSame(Function.prototype, Symbol.__proto__) assertFalse(Object === Symbol.prototype.constructor) assertFalse(Symbol === Object.prototype.constructor) assertSame(Symbol, Symbol.prototype.constructor) assertSame(Symbol, Symbol().__proto__.constructor) assertSame(Symbol, Object(Symbol()).__proto__.constructor) for (var i in symbols) { assertSame(Symbol, symbols[i].__proto__.constructor) } } TestConstructor() function TestValueOf() { for (var i in symbols) { assertTrue(symbols[i] === Object(symbols[i]).valueOf()) assertTrue(symbols[i] === symbols[i].valueOf()) assertTrue(Symbol.prototype.valueOf.call(Object(symbols[i])) === symbols[i]) assertTrue(Symbol.prototype.valueOf.call(symbols[i]) === symbols[i]) } } TestValueOf() function TestToString() { for (var i in symbols) { assertThrows(function() { new String(symbols[i]) }, TypeError) assertEquals(symbols[i].toString(), String(symbols[i])) assertThrows(function() { symbols[i] + "" }, TypeError) assertThrows(function() { String(Object(symbols[i])) }, TypeError) assertTrue(isValidSymbolString(symbols[i].toString())) assertTrue(isValidSymbolString(Object(symbols[i]).toString())) assertTrue( isValidSymbolString(Symbol.prototype.toString.call(symbols[i]))) assertEquals( "[object Symbol]", Object.prototype.toString.call(symbols[i])) } } TestToString() function TestToBoolean() { for (var i in symbols) { assertTrue(Boolean(Object(symbols[i]))) assertFalse(!Object(symbols[i])) assertTrue(Boolean(symbols[i]).valueOf()) assertFalse(!symbols[i]) assertTrue(!!symbols[i]) assertTrue(symbols[i] && true) assertFalse(!symbols[i] && false) assertTrue(!symbols[i] || true) assertEquals(1, symbols[i] ? 1 : 2) assertEquals(2, !symbols[i] ? 1 : 2) if (!symbols[i]) assertUnreachable(); if (symbols[i]) {} else assertUnreachable(); } } TestToBoolean() function TestToNumber() { for (var i in symbols) { assertThrows(function() { Number(Object(symbols[i])) }, TypeError) assertThrows(function() { +Object(symbols[i]) }, TypeError) assertThrows(function() { Number(symbols[i]) }, TypeError) assertThrows(function() { symbols[i] + 0 }, TypeError) } } TestToNumber() function TestEquality() { // Every symbol should equal itself, and non-strictly equal its wrapper. for (var i in symbols) { assertSame(symbols[i], symbols[i]) assertEquals(symbols[i], symbols[i]) assertTrue(Object.is(symbols[i], symbols[i])) assertTrue(symbols[i] === symbols[i]) assertTrue(symbols[i] == symbols[i]) assertFalse(symbols[i] === Object(symbols[i])) assertFalse(Object(symbols[i]) === symbols[i]) assertFalse(symbols[i] == Object(symbols[i])) assertFalse(Object(symbols[i]) == symbols[i]) assertTrue(symbols[i] === symbols[i].valueOf()) assertTrue(symbols[i].valueOf() === symbols[i]) assertTrue(symbols[i] == symbols[i].valueOf()) assertTrue(symbols[i].valueOf() == symbols[i]) assertFalse(Object(symbols[i]) === Object(symbols[i])) assertEquals(Object(symbols[i]).valueOf(), Object(symbols[i]).valueOf()) } // All symbols should be distinct. for (var i = 0; i < symbols.length; ++i) { for (var j = i + 1; j < symbols.length; ++j) { assertFalse(Object.is(symbols[i], symbols[j])) assertFalse(symbols[i] === symbols[j]) assertFalse(symbols[i] == symbols[j]) } } // Symbols should not be equal to any other value (and the test terminates). var values = [347, 1.275, NaN, "string", null, undefined, {}, function() {}] for (var i in symbols) { for (var j in values) { assertFalse(symbols[i] === values[j]) assertFalse(values[j] === symbols[i]) assertFalse(symbols[i] == values[j]) assertFalse(values[j] == symbols[i]) } } } TestEquality() function TestGet() { for (var i in symbols) { assertTrue(isValidSymbolString(symbols[i].toString())) assertEquals(symbols[i], symbols[i].valueOf()) assertEquals(undefined, symbols[i].a) assertEquals(undefined, symbols[i]["a" + "b"]) assertEquals(undefined, symbols[i]["" + "1"]) assertEquals(undefined, symbols[i][62]) } } TestGet() function TestSet() { for (var i in symbols) { symbols[i].toString = 0 assertTrue(isValidSymbolString(symbols[i].toString())) symbols[i].valueOf = 0 assertEquals(symbols[i], symbols[i].valueOf()) symbols[i].a = 0 assertEquals(undefined, symbols[i].a) symbols[i]["a" + "b"] = 0 assertEquals(undefined, symbols[i]["a" + "b"]) symbols[i][62] = 0 assertEquals(undefined, symbols[i][62]) } } TestSet() // Test Symbol wrapping/boxing over non-builtins. Symbol.prototype.getThisProto = function () { return Object.getPrototypeOf(this); } function TestCall() { for (var i in symbols) { assertTrue(symbols[i].getThisProto() === Symbol.prototype) } } TestCall() function TestCollections() { var set = new Set var map = new Map var weakmap = new WeakMap for (var i in symbols) { set.add(symbols[i]) map.set(symbols[i], i) weakmap.set(symbols[i], i) } assertEquals(symbols.length, set.size) assertEquals(symbols.length, map.size) for (var i in symbols) { assertTrue(set.has(symbols[i])) assertTrue(map.has(symbols[i])) assertTrue(weakmap.has(symbols[i])) assertEquals(i, map.get(symbols[i])) assertEquals(i, weakmap.get(symbols[i])) } for (var i in symbols) { assertTrue(set.delete(symbols[i])) assertTrue(map.delete(symbols[i])) assertTrue(weakmap.delete(symbols[i])) } assertEquals(0, set.size) assertEquals(0, map.size) } TestCollections() function TestKeySet(obj) { assertTrue(%HasFastProperties(obj)) // Set the even symbols via assignment. for (var i = 0; i < symbols.length; i += 2) { obj[symbols[i]] = i // Object should remain in fast mode until too many properties were added. assertTrue(%HasFastProperties(obj) || i >= 30) } } function TestKeyDefine(obj) { // Set the odd symbols via defineProperty (as non-enumerable). for (var i = 1; i < symbols.length; i += 2) { Object.defineProperty(obj, symbols[i], {value: i, configurable: true}) } } function TestKeyGet(obj) { var obj2 = Object.create(obj) for (var i in symbols) { assertEquals(i|0, obj[symbols[i]]) assertEquals(i|0, obj2[symbols[i]]) } } function TestKeyHas(obj) { for (var i in symbols) { assertTrue(symbols[i] in obj) assertTrue(Object.hasOwnProperty.call(obj, symbols[i])) } } function TestKeyEnum(obj) { for (var name in obj) { assertEquals("string", typeof name) } } function TestKeyNames(obj) { assertEquals(0, Object.keys(obj).length) var names = Object.getOwnPropertyNames(obj) for (var i in names) { assertEquals("string", typeof names[i]) } } function TestGetOwnPropertySymbols(obj) { var syms = Object.getOwnPropertySymbols(obj) assertEquals(syms.length, symbols.length) for (var i in syms) { assertEquals("symbol", typeof syms[i]) } } function TestKeyDescriptor(obj) { for (var i in symbols) { var desc = Object.getOwnPropertyDescriptor(obj, symbols[i]) assertEquals(i|0, desc.value) assertTrue(desc.configurable) assertEquals(i % 2 == 0, desc.writable) assertEquals(i % 2 == 0, desc.enumerable) assertEquals(i % 2 == 0, Object.prototype.propertyIsEnumerable.call(obj, symbols[i])) } } function TestKeyDelete(obj) { for (var i in symbols) { delete obj[symbols[i]] } for (var i in symbols) { assertEquals(undefined, Object.getOwnPropertyDescriptor(obj, symbols[i])) } } var objs = [{}, [], Object.create(null), Object(1), new Map, function(){}] for (var i in objs) { var obj = objs[i] TestKeySet(obj) TestKeyDefine(obj) TestKeyGet(obj) TestKeyHas(obj) TestKeyEnum(obj) TestKeyNames(obj) TestGetOwnPropertySymbols(obj) TestKeyDescriptor(obj) TestKeyDelete(obj) } function TestDefineProperties() { var properties = {} for (var i in symbols) { Object.defineProperty( properties, symbols[i], {value: {value: i}, enumerable: i % 2 === 0}) } var o = Object.defineProperties({}, properties) for (var i in symbols) { assertEquals(i % 2 === 0, symbols[i] in o) } } TestDefineProperties() function TestCreate() { var properties = {} for (var i in symbols) { Object.defineProperty( properties, symbols[i], {value: {value: i}, enumerable: i % 2 === 0}) } var o = Object.create(Object.prototype, properties) for (var i in symbols) { assertEquals(i % 2 === 0, symbols[i] in o) } } TestCreate() function TestCachedKeyAfterScavenge() { gc(); // Keyed property lookup are cached. Hereby we assume that the keys are // tenured, so that we only have to clear the cache between mark compacts, // but not between scavenges. This must also apply for symbol keys. var key = Symbol("key"); var a = {}; a[key] = "abc"; for (var i = 0; i < 100000; i++) { a[key] += "a"; // Allocations cause a scavenge. } } TestCachedKeyAfterScavenge(); function TestGetOwnPropertySymbolsWithProto() { // We need to be have fast properties to have insertion order for property // keys. The current limit is currently 30 properties. var syms = symbols.slice(0, 30); var proto = {} var object = Object.create(proto) for (var i = 0; i < syms.length; i++) { // Even on object, odd on proto. if (i % 2) { proto[syms[i]] = i } else { object[syms[i]] = i } } assertTrue(%HasFastProperties(object)); var objectOwnSymbols = Object.getOwnPropertySymbols(object) assertEquals(objectOwnSymbols.length, syms.length / 2) for (var i = 0; i < objectOwnSymbols.length; i++) { assertEquals(objectOwnSymbols[i], syms[i * 2]) } } TestGetOwnPropertySymbolsWithProto() function TestWellKnown() { var symbols = [ // TODO(rossberg): reactivate once implemented. // "hasInstance", "isConcatSpreadable", "isRegExp", "iterator", /* "toStringTag", */ "unscopables" ] for (var i in symbols) { var name = symbols[i] var desc = Object.getOwnPropertyDescriptor(Symbol, name) assertSame("symbol", typeof desc.value) assertSame("Symbol(Symbol." + name + ")", desc.value.toString()) assertFalse(desc.writable) assertFalse(desc.configurable) assertFalse(desc.enumerable) assertFalse(Symbol.for("Symbol." + name) === desc.value) assertTrue(Symbol.keyFor(desc.value) === undefined) } } TestWellKnown() function TestRegistry() { var symbol1 = Symbol.for("x1") var symbol2 = Symbol.for("x2") assertFalse(symbol1 === symbol2) assertSame(symbol1, Symbol.for("x1")) assertSame(symbol2, Symbol.for("x2")) assertSame("x1", Symbol.keyFor(symbol1)) assertSame("x2", Symbol.keyFor(symbol2)) assertSame(Symbol.for("1"), Symbol.for(1)) assertThrows(function() { Symbol.keyFor("bla") }, TypeError) assertThrows(function() { Symbol.keyFor({}) }, TypeError) var realm = Realm.create() assertFalse(Symbol === Realm.eval(realm, "Symbol")) assertFalse(Symbol.for === Realm.eval(realm, "Symbol.for")) assertFalse(Symbol.keyFor === Realm.eval(realm, "Symbol.keyFor")) assertSame(Symbol.create, Realm.eval(realm, "Symbol.create")) assertSame(Symbol.iterator, Realm.eval(realm, "Symbol.iterator")) assertSame(symbol1, Realm.eval(realm, "Symbol.for")("x1")) assertSame(symbol1, Realm.eval(realm, "Symbol.for('x1')")) assertSame("x1", Realm.eval(realm, "Symbol.keyFor")(symbol1)) Realm.shared = symbol1 assertSame("x1", Realm.eval(realm, "Symbol.keyFor(Realm.shared)")) var symbol3 = Realm.eval(realm, "Symbol.for('x3')") assertFalse(symbol1 === symbol3) assertFalse(symbol2 === symbol3) assertSame(symbol3, Symbol.for("x3")) assertSame("x3", Symbol.keyFor(symbol3)) } TestRegistry() function TestGetOwnPropertySymbolsOnPrimitives() { assertEquals(Object.getOwnPropertySymbols(true), []); assertEquals(Object.getOwnPropertySymbols(5000), []); assertEquals(Object.getOwnPropertySymbols("OK"), []); } TestGetOwnPropertySymbolsOnPrimitives();
ajax/libs/rxjs/2.3.21/rx.lite.js
noraesae/cdnjs
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information. ;(function (undefined) { var objectTypes = { 'boolean': false, 'function': true, 'object': true, 'number': false, 'string': false, 'undefined': false }; var root = (objectTypes[typeof window] && window) || this, freeExports = objectTypes[typeof exports] && exports && !exports.nodeType && exports, freeModule = objectTypes[typeof module] && module && !module.nodeType && module, moduleExports = freeModule && freeModule.exports === freeExports && freeExports, freeGlobal = objectTypes[typeof global] && global; if (freeGlobal && (freeGlobal.global === freeGlobal || freeGlobal.window === freeGlobal)) { root = freeGlobal; } var Rx = { internals: {}, config: { Promise: root.Promise, }, helpers: { } }; // Defaults var noop = Rx.helpers.noop = function () { }, notDefined = Rx.helpers.notDefined = function (x) { return typeof x === 'undefined'; }, isScheduler = Rx.helpers.isScheduler = function (x) { return x instanceof Rx.Scheduler; }, identity = Rx.helpers.identity = function (x) { return x; }, pluck = Rx.helpers.pluck = function (property) { return function (x) { return x[property]; }; }, just = Rx.helpers.just = function (value) { return function () { return value; }; }, defaultNow = Rx.helpers.defaultNow = Date.now, defaultComparer = Rx.helpers.defaultComparer = function (x, y) { return isEqual(x, y); }, defaultSubComparer = Rx.helpers.defaultSubComparer = function (x, y) { return x > y ? 1 : (x < y ? -1 : 0); }, defaultKeySerializer = Rx.helpers.defaultKeySerializer = function (x) { return x.toString(); }, defaultError = Rx.helpers.defaultError = function (err) { throw err; }, isPromise = Rx.helpers.isPromise = function (p) { return !!p && typeof p.then === 'function'; }, asArray = Rx.helpers.asArray = function () { return Array.prototype.slice.call(arguments); }, not = Rx.helpers.not = function (a) { return !a; }, isFunction = Rx.helpers.isFunction = (function () { var isFn = function (value) { return typeof value == 'function' || false; } // fallback for older versions of Chrome and Safari if (isFn(/x/)) { isFn = function(value) { return typeof value == 'function' && toString.call(value) == '[object Function]'; }; } return isFn; }()); // Errors var sequenceContainsNoElements = 'Sequence contains no elements.'; var argumentOutOfRange = 'Argument out of range'; var objectDisposed = 'Object has been disposed'; function checkDisposed() { if (this.isDisposed) { throw new Error(objectDisposed); } } Rx.config.longStackSupport = false; var hasStacks = false; try { throw new Error(); } catch (e) { hasStacks = !!e.stack; } // All code after this point will be filtered from stack traces reported by RxJS var rStartingLine = captureLine(), rFileName; var STACK_JUMP_SEPARATOR = "From previous event:"; function makeStackTraceLong(error, observable) { // If possible, transform the error stack trace by removing Node and RxJS // cruft, then concatenating with the stack trace of `observable`. if (hasStacks && observable.stack && typeof error === "object" && error !== null && error.stack && error.stack.indexOf(STACK_JUMP_SEPARATOR) === -1 ) { var stacks = []; for (var o = observable; !!o; o = o.source) { if (o.stack) { stacks.unshift(o.stack); } } stacks.unshift(error.stack); var concatedStacks = stacks.join("\n" + STACK_JUMP_SEPARATOR + "\n"); error.stack = filterStackString(concatedStacks); } } function filterStackString(stackString) { var lines = stackString.split("\n"), desiredLines = []; for (var i = 0, len = lines.length; i < len; i++) { var line = lines[i]; if (!isInternalFrame(line) && !isNodeFrame(line) && line) { desiredLines.push(line); } } return desiredLines.join("\n"); } function isInternalFrame(stackLine) { var fileNameAndLineNumber = getFileNameAndLineNumber(stackLine); if (!fileNameAndLineNumber) { return false; } var fileName = fileNameAndLineNumber[0], lineNumber = fileNameAndLineNumber[1]; return fileName === rFileName && lineNumber >= rStartingLine && lineNumber <= rEndingLine; } function isNodeFrame(stackLine) { return stackLine.indexOf("(module.js:") !== -1 || stackLine.indexOf("(node.js:") !== -1; } function captureLine() { if (!hasStacks) { return; } try { throw new Error(); } catch (e) { var lines = e.stack.split("\n"); var firstLine = lines[0].indexOf("@") > 0 ? lines[1] : lines[2]; var fileNameAndLineNumber = getFileNameAndLineNumber(firstLine); if (!fileNameAndLineNumber) { return; } rFileName = fileNameAndLineNumber[0]; return fileNameAndLineNumber[1]; } } function getFileNameAndLineNumber(stackLine) { // Named functions: "at functionName (filename:lineNumber:columnNumber)" var attempt1 = /at .+ \((.+):(\d+):(?:\d+)\)$/.exec(stackLine); if (attempt1) { return [attempt1[1], Number(attempt1[2])]; } // Anonymous functions: "at filename:lineNumber:columnNumber" var attempt2 = /at ([^ ]+):(\d+):(?:\d+)$/.exec(stackLine); if (attempt2) { return [attempt2[1], Number(attempt2[2])]; } // Firefox style: "function@filename:lineNumber or @filename:lineNumber" var attempt3 = /.*@(.+):(\d+)$/.exec(stackLine); if (attempt3) { return [attempt3[1], Number(attempt3[2])]; } } // Shim in iterator support var $iterator$ = (typeof Symbol === 'function' && Symbol.iterator) || '_es6shim_iterator_'; // Bug for mozilla version if (root.Set && typeof new root.Set()['@@iterator'] === 'function') { $iterator$ = '@@iterator'; } var doneEnumerator = Rx.doneEnumerator = { done: true, value: undefined }; var isIterable = Rx.helpers.isIterable = function (o) { return o[$iterator$] !== undefined; } var isArrayLike = Rx.helpers.isArrayLike = function (o) { return o && o.length !== undefined; } Rx.helpers.iterator = $iterator$; var deprecate = Rx.helpers.deprecate = function (name, alternative) { /*if (typeof console !== "undefined" && typeof console.warn === "function") { console.warn(name + ' is deprecated, use ' + alternative + ' instead.', new Error('').stack); }*/ } /** `Object#toString` result shortcuts */ var argsClass = '[object Arguments]', arrayClass = '[object Array]', boolClass = '[object Boolean]', dateClass = '[object Date]', errorClass = '[object Error]', funcClass = '[object Function]', numberClass = '[object Number]', objectClass = '[object Object]', regexpClass = '[object RegExp]', stringClass = '[object String]'; var toString = Object.prototype.toString, hasOwnProperty = Object.prototype.hasOwnProperty, supportsArgsClass = toString.call(arguments) == argsClass, // For less <IE9 && FF<4 supportNodeClass, errorProto = Error.prototype, objectProto = Object.prototype, stringProto = String.prototype, propertyIsEnumerable = objectProto.propertyIsEnumerable; // Fix for Tessel if (!propertyIsEnumerable) { propertyIsEnumerable = objectProto.propertyIsEnumerable = function (key) { for (var k in this) { if (k === key) { return true; } } return false; }; } try { supportNodeClass = !(toString.call(document) == objectClass && !({ 'toString': 0 } + '')); } catch (e) { supportNodeClass = true; } var shadowedProps = [ 'constructor', 'hasOwnProperty', 'isPrototypeOf', 'propertyIsEnumerable', 'toLocaleString', 'toString', 'valueOf' ]; var nonEnumProps = {}; nonEnumProps[arrayClass] = nonEnumProps[dateClass] = nonEnumProps[numberClass] = { 'constructor': true, 'toLocaleString': true, 'toString': true, 'valueOf': true }; nonEnumProps[boolClass] = nonEnumProps[stringClass] = { 'constructor': true, 'toString': true, 'valueOf': true }; nonEnumProps[errorClass] = nonEnumProps[funcClass] = nonEnumProps[regexpClass] = { 'constructor': true, 'toString': true }; nonEnumProps[objectClass] = { 'constructor': true }; var support = {}; (function () { var ctor = function() { this.x = 1; }, props = []; ctor.prototype = { 'valueOf': 1, 'y': 1 }; for (var key in new ctor) { props.push(key); } for (key in arguments) { } // Detect if `name` or `message` properties of `Error.prototype` are enumerable by default. support.enumErrorProps = propertyIsEnumerable.call(errorProto, 'message') || propertyIsEnumerable.call(errorProto, 'name'); // Detect if `prototype` properties are enumerable by default. support.enumPrototypes = propertyIsEnumerable.call(ctor, 'prototype'); // Detect if `arguments` object indexes are non-enumerable support.nonEnumArgs = key != 0; // Detect if properties shadowing those on `Object.prototype` are non-enumerable. support.nonEnumShadows = !/valueOf/.test(props); }(1)); function isObject(value) { // check if the value is the ECMAScript language type of Object // http://es5.github.io/#x8 // and avoid a V8 bug // https://code.google.com/p/v8/issues/detail?id=2291 var type = typeof value; return value && (type == 'function' || type == 'object') || false; } function keysIn(object) { var result = []; if (!isObject(object)) { return result; } if (support.nonEnumArgs && object.length && isArguments(object)) { object = slice.call(object); } var skipProto = support.enumPrototypes && typeof object == 'function', skipErrorProps = support.enumErrorProps && (object === errorProto || object instanceof Error); for (var key in object) { if (!(skipProto && key == 'prototype') && !(skipErrorProps && (key == 'message' || key == 'name'))) { result.push(key); } } if (support.nonEnumShadows && object !== objectProto) { var ctor = object.constructor, index = -1, length = shadowedProps.length; if (object === (ctor && ctor.prototype)) { var className = object === stringProto ? stringClass : object === errorProto ? errorClass : toString.call(object), nonEnum = nonEnumProps[className]; } while (++index < length) { key = shadowedProps[index]; if (!(nonEnum && nonEnum[key]) && hasOwnProperty.call(object, key)) { result.push(key); } } } return result; } function internalFor(object, callback, keysFunc) { var index = -1, props = keysFunc(object), length = props.length; while (++index < length) { var key = props[index]; if (callback(object[key], key, object) === false) { break; } } return object; } function internalForIn(object, callback) { return internalFor(object, callback, keysIn); } function isNode(value) { // IE < 9 presents DOM nodes as `Object` objects except they have `toString` // methods that are `typeof` "string" and still can coerce nodes to strings return typeof value.toString != 'function' && typeof (value + '') == 'string'; } var isArguments = function(value) { return (value && typeof value == 'object') ? toString.call(value) == argsClass : false; } // fallback for browsers that can't detect `arguments` objects by [[Class]] if (!supportsArgsClass) { isArguments = function(value) { return (value && typeof value == 'object') ? hasOwnProperty.call(value, 'callee') : false; }; } var isEqual = Rx.internals.isEqual = function (x, y) { return deepEquals(x, y, [], []); }; /** @private * Used for deep comparison **/ function deepEquals(a, b, stackA, stackB) { // exit early for identical values if (a === b) { // treat `+0` vs. `-0` as not equal return a !== 0 || (1 / a == 1 / b); } var type = typeof a, otherType = typeof b; // exit early for unlike primitive values if (a === a && (a == null || b == null || (type != 'function' && type != 'object' && otherType != 'function' && otherType != 'object'))) { return false; } // compare [[Class]] names var className = toString.call(a), otherClass = toString.call(b); if (className == argsClass) { className = objectClass; } if (otherClass == argsClass) { otherClass = objectClass; } if (className != otherClass) { return false; } switch (className) { case boolClass: case dateClass: // coerce dates and booleans to numbers, dates to milliseconds and booleans // to `1` or `0` treating invalid dates coerced to `NaN` as not equal return +a == +b; case numberClass: // treat `NaN` vs. `NaN` as equal return (a != +a) ? b != +b : // but treat `-0` vs. `+0` as not equal (a == 0 ? (1 / a == 1 / b) : a == +b); case regexpClass: case stringClass: // coerce regexes to strings (http://es5.github.io/#x15.10.6.4) // treat string primitives and their corresponding object instances as equal return a == String(b); } var isArr = className == arrayClass; if (!isArr) { // exit for functions and DOM nodes if (className != objectClass || (!support.nodeClass && (isNode(a) || isNode(b)))) { return false; } // in older versions of Opera, `arguments` objects have `Array` constructors var ctorA = !support.argsObject && isArguments(a) ? Object : a.constructor, ctorB = !support.argsObject && isArguments(b) ? Object : b.constructor; // non `Object` object instances with different constructors are not equal if (ctorA != ctorB && !(hasOwnProperty.call(a, 'constructor') && hasOwnProperty.call(b, 'constructor')) && !(isFunction(ctorA) && ctorA instanceof ctorA && isFunction(ctorB) && ctorB instanceof ctorB) && ('constructor' in a && 'constructor' in b) ) { return false; } } // assume cyclic structures are equal // the algorithm for detecting cyclic structures is adapted from ES 5.1 // section 15.12.3, abstract operation `JO` (http://es5.github.io/#x15.12.3) var initedStack = !stackA; stackA || (stackA = []); stackB || (stackB = []); var length = stackA.length; while (length--) { if (stackA[length] == a) { return stackB[length] == b; } } var size = 0; var result = true; // add `a` and `b` to the stack of traversed objects stackA.push(a); stackB.push(b); // recursively compare objects and arrays (susceptible to call stack limits) if (isArr) { // compare lengths to determine if a deep comparison is necessary length = a.length; size = b.length; result = size == length; if (result) { // deep compare the contents, ignoring non-numeric properties while (size--) { var index = length, value = b[size]; if (!(result = deepEquals(a[size], value, stackA, stackB))) { break; } } } } else { // deep compare objects using `forIn`, instead of `forOwn`, to avoid `Object.keys` // which, in this case, is more costly internalForIn(b, function(value, key, b) { if (hasOwnProperty.call(b, key)) { // count the number of properties. size++; // deep compare each property value. return (result = hasOwnProperty.call(a, key) && deepEquals(a[key], value, stackA, stackB)); } }); if (result) { // ensure both objects have the same number of properties internalForIn(a, function(value, key, a) { if (hasOwnProperty.call(a, key)) { // `size` will be `-1` if `a` has more properties than `b` return (result = --size > -1); } }); } } stackA.pop(); stackB.pop(); return result; } var slice = Array.prototype.slice; function argsOrArray(args, idx) { return args.length === 1 && Array.isArray(args[idx]) ? args[idx] : slice.call(args); } var hasProp = {}.hasOwnProperty; var inherits = this.inherits = Rx.internals.inherits = function (child, parent) { function __() { this.constructor = child; } __.prototype = parent.prototype; child.prototype = new __(); }; var addProperties = Rx.internals.addProperties = function (obj) { var sources = slice.call(arguments, 1); for (var i = 0, len = sources.length; i < len; i++) { var source = sources[i]; for (var prop in source) { obj[prop] = source[prop]; } } }; // Rx Utils var addRef = Rx.internals.addRef = function (xs, r) { return new AnonymousObservable(function (observer) { return new CompositeDisposable(r.getDisposable(), xs.subscribe(observer)); }); }; function arrayInitialize(count, factory) { var a = new Array(count); for (var i = 0; i < count; i++) { a[i] = factory(); } return a; } // Collections function IndexedItem(id, value) { this.id = id; this.value = value; } IndexedItem.prototype.compareTo = function (other) { var c = this.value.compareTo(other.value); c === 0 && (c = this.id - other.id); return c; }; // Priority Queue for Scheduling var PriorityQueue = Rx.internals.PriorityQueue = function (capacity) { this.items = new Array(capacity); this.length = 0; }; var priorityProto = PriorityQueue.prototype; priorityProto.isHigherPriority = function (left, right) { return this.items[left].compareTo(this.items[right]) < 0; }; priorityProto.percolate = function (index) { if (index >= this.length || index < 0) { return; } var parent = index - 1 >> 1; if (parent < 0 || parent === index) { return; } if (this.isHigherPriority(index, parent)) { var temp = this.items[index]; this.items[index] = this.items[parent]; this.items[parent] = temp; this.percolate(parent); } }; priorityProto.heapify = function (index) { +index || (index = 0); if (index >= this.length || index < 0) { return; } var left = 2 * index + 1, right = 2 * index + 2, first = index; if (left < this.length && this.isHigherPriority(left, first)) { first = left; } if (right < this.length && this.isHigherPriority(right, first)) { first = right; } if (first !== index) { var temp = this.items[index]; this.items[index] = this.items[first]; this.items[first] = temp; this.heapify(first); } }; priorityProto.peek = function () { return this.items[0].value; }; priorityProto.removeAt = function (index) { this.items[index] = this.items[--this.length]; delete this.items[this.length]; this.heapify(); }; priorityProto.dequeue = function () { var result = this.peek(); this.removeAt(0); return result; }; priorityProto.enqueue = function (item) { var index = this.length++; this.items[index] = new IndexedItem(PriorityQueue.count++, item); this.percolate(index); }; priorityProto.remove = function (item) { for (var i = 0; i < this.length; i++) { if (this.items[i].value === item) { this.removeAt(i); return true; } } return false; }; PriorityQueue.count = 0; /** * Represents a group of disposable resources that are disposed together. * @constructor */ var CompositeDisposable = Rx.CompositeDisposable = function () { this.disposables = argsOrArray(arguments, 0); this.isDisposed = false; this.length = this.disposables.length; }; var CompositeDisposablePrototype = CompositeDisposable.prototype; /** * Adds a disposable to the CompositeDisposable or disposes the disposable if the CompositeDisposable is disposed. * @param {Mixed} item Disposable to add. */ CompositeDisposablePrototype.add = function (item) { if (this.isDisposed) { item.dispose(); } else { this.disposables.push(item); this.length++; } }; /** * Removes and disposes the first occurrence of a disposable from the CompositeDisposable. * @param {Mixed} item Disposable to remove. * @returns {Boolean} true if found; false otherwise. */ CompositeDisposablePrototype.remove = function (item) { var shouldDispose = false; if (!this.isDisposed) { var idx = this.disposables.indexOf(item); if (idx !== -1) { shouldDispose = true; this.disposables.splice(idx, 1); this.length--; item.dispose(); } } return shouldDispose; }; /** * Disposes all disposables in the group and removes them from the group. */ CompositeDisposablePrototype.dispose = function () { if (!this.isDisposed) { this.isDisposed = true; var currentDisposables = this.disposables.slice(0); this.disposables = []; this.length = 0; for (var i = 0, len = currentDisposables.length; i < len; i++) { currentDisposables[i].dispose(); } } }; /** * Converts the existing CompositeDisposable to an array of disposables * @returns {Array} An array of disposable objects. */ CompositeDisposablePrototype.toArray = function () { return this.disposables.slice(0); }; /** * Provides a set of static methods for creating Disposables. * * @constructor * @param {Function} dispose Action to run during the first call to dispose. The action is guaranteed to be run at most once. */ var Disposable = Rx.Disposable = function (action) { this.isDisposed = false; this.action = action || noop; }; /** Performs the task of cleaning up resources. */ Disposable.prototype.dispose = function () { if (!this.isDisposed) { this.action(); this.isDisposed = true; } }; /** * Creates a disposable object that invokes the specified action when disposed. * @param {Function} dispose Action to run during the first call to dispose. The action is guaranteed to be run at most once. * @return {Disposable} The disposable object that runs the given action upon disposal. */ var disposableCreate = Disposable.create = function (action) { return new Disposable(action); }; /** * Gets the disposable that does nothing when disposed. */ var disposableEmpty = Disposable.empty = { dispose: noop }; var SingleAssignmentDisposable = Rx.SingleAssignmentDisposable = (function () { function BooleanDisposable () { this.isDisposed = false; this.current = null; } var booleanDisposablePrototype = BooleanDisposable.prototype; /** * Gets the underlying disposable. * @return The underlying disposable. */ booleanDisposablePrototype.getDisposable = function () { return this.current; }; /** * Sets the underlying disposable. * @param {Disposable} value The new underlying disposable. */ booleanDisposablePrototype.setDisposable = function (value) { var shouldDispose = this.isDisposed, old; if (!shouldDispose) { old = this.current; this.current = value; } old && old.dispose(); shouldDispose && value && value.dispose(); }; /** * Disposes the underlying disposable as well as all future replacements. */ booleanDisposablePrototype.dispose = function () { var old; if (!this.isDisposed) { this.isDisposed = true; old = this.current; this.current = null; } old && old.dispose(); }; return BooleanDisposable; }()); var SerialDisposable = Rx.SerialDisposable = SingleAssignmentDisposable; /** * Represents a disposable resource that only disposes its underlying disposable resource when all dependent disposable objects have been disposed. */ var RefCountDisposable = Rx.RefCountDisposable = (function () { function InnerDisposable(disposable) { this.disposable = disposable; this.disposable.count++; this.isInnerDisposed = false; } InnerDisposable.prototype.dispose = function () { if (!this.disposable.isDisposed) { if (!this.isInnerDisposed) { this.isInnerDisposed = true; this.disposable.count--; if (this.disposable.count === 0 && this.disposable.isPrimaryDisposed) { this.disposable.isDisposed = true; this.disposable.underlyingDisposable.dispose(); } } } }; /** * Initializes a new instance of the RefCountDisposable with the specified disposable. * @constructor * @param {Disposable} disposable Underlying disposable. */ function RefCountDisposable(disposable) { this.underlyingDisposable = disposable; this.isDisposed = false; this.isPrimaryDisposed = false; this.count = 0; } /** * Disposes the underlying disposable only when all dependent disposables have been disposed */ RefCountDisposable.prototype.dispose = function () { if (!this.isDisposed) { if (!this.isPrimaryDisposed) { this.isPrimaryDisposed = true; if (this.count === 0) { this.isDisposed = true; this.underlyingDisposable.dispose(); } } } }; /** * Returns a dependent disposable that when disposed decreases the refcount on the underlying disposable. * @returns {Disposable} A dependent disposable contributing to the reference count that manages the underlying disposable's lifetime. */ RefCountDisposable.prototype.getDisposable = function () { return this.isDisposed ? disposableEmpty : new InnerDisposable(this); }; return RefCountDisposable; })(); var ScheduledItem = Rx.internals.ScheduledItem = function (scheduler, state, action, dueTime, comparer) { this.scheduler = scheduler; this.state = state; this.action = action; this.dueTime = dueTime; this.comparer = comparer || defaultSubComparer; this.disposable = new SingleAssignmentDisposable(); } ScheduledItem.prototype.invoke = function () { this.disposable.setDisposable(this.invokeCore()); }; ScheduledItem.prototype.compareTo = function (other) { return this.comparer(this.dueTime, other.dueTime); }; ScheduledItem.prototype.isCancelled = function () { return this.disposable.isDisposed; }; ScheduledItem.prototype.invokeCore = function () { return this.action(this.scheduler, this.state); }; /** Provides a set of static properties to access commonly used schedulers. */ var Scheduler = Rx.Scheduler = (function () { function Scheduler(now, schedule, scheduleRelative, scheduleAbsolute) { this.now = now; this._schedule = schedule; this._scheduleRelative = scheduleRelative; this._scheduleAbsolute = scheduleAbsolute; } function invokeAction(scheduler, action) { action(); return disposableEmpty; } var schedulerProto = Scheduler.prototype; /** * Schedules an action to be executed. * @param {Function} action Action to execute. * @returns {Disposable} The disposable object used to cancel the scheduled action (best effort). */ schedulerProto.schedule = function (action) { return this._schedule(action, invokeAction); }; /** * Schedules an action to be executed. * @param state State passed to the action to be executed. * @param {Function} action Action to be executed. * @returns {Disposable} The disposable object used to cancel the scheduled action (best effort). */ schedulerProto.scheduleWithState = function (state, action) { return this._schedule(state, action); }; /** * Schedules an action to be executed after the specified relative due time. * @param {Function} action Action to execute. * @param {Number} dueTime Relative time after which to execute the action. * @returns {Disposable} The disposable object used to cancel the scheduled action (best effort). */ schedulerProto.scheduleWithRelative = function (dueTime, action) { return this._scheduleRelative(action, dueTime, invokeAction); }; /** * Schedules an action to be executed after dueTime. * @param state State passed to the action to be executed. * @param {Function} action Action to be executed. * @param {Number} dueTime Relative time after which to execute the action. * @returns {Disposable} The disposable object used to cancel the scheduled action (best effort). */ schedulerProto.scheduleWithRelativeAndState = function (state, dueTime, action) { return this._scheduleRelative(state, dueTime, action); }; /** * Schedules an action to be executed at the specified absolute due time. * @param {Function} action Action to execute. * @param {Number} dueTime Absolute time at which to execute the action. * @returns {Disposable} The disposable object used to cancel the scheduled action (best effort). */ schedulerProto.scheduleWithAbsolute = function (dueTime, action) { return this._scheduleAbsolute(action, dueTime, invokeAction); }; /** * Schedules an action to be executed at dueTime. * @param {Mixed} state State passed to the action to be executed. * @param {Function} action Action to be executed. * @param {Number}dueTime Absolute time at which to execute the action. * @returns {Disposable} The disposable object used to cancel the scheduled action (best effort). */ schedulerProto.scheduleWithAbsoluteAndState = function (state, dueTime, action) { return this._scheduleAbsolute(state, dueTime, action); }; /** Gets the current time according to the local machine's system clock. */ Scheduler.now = defaultNow; /** * Normalizes the specified TimeSpan value to a positive value. * @param {Number} timeSpan The time span value to normalize. * @returns {Number} The specified TimeSpan value if it is zero or positive; otherwise, 0 */ Scheduler.normalize = function (timeSpan) { timeSpan < 0 && (timeSpan = 0); return timeSpan; }; return Scheduler; }()); var normalizeTime = Scheduler.normalize; (function (schedulerProto) { function invokeRecImmediate(scheduler, pair) { var state = pair.first, action = pair.second, group = new CompositeDisposable(), recursiveAction = function (state1) { action(state1, function (state2) { var isAdded = false, isDone = false, d = scheduler.scheduleWithState(state2, function (scheduler1, state3) { if (isAdded) { group.remove(d); } else { isDone = true; } recursiveAction(state3); return disposableEmpty; }); if (!isDone) { group.add(d); isAdded = true; } }); }; recursiveAction(state); return group; } function invokeRecDate(scheduler, pair, method) { var state = pair.first, action = pair.second, group = new CompositeDisposable(), recursiveAction = function (state1) { action(state1, function (state2, dueTime1) { var isAdded = false, isDone = false, d = scheduler[method].call(scheduler, state2, dueTime1, function (scheduler1, state3) { if (isAdded) { group.remove(d); } else { isDone = true; } recursiveAction(state3); return disposableEmpty; }); if (!isDone) { group.add(d); isAdded = true; } }); }; recursiveAction(state); return group; } function scheduleInnerRecursive(action, self) { action(function(dt) { self(action, dt); }); } /** * Schedules an action to be executed recursively. * @param {Function} action Action to execute recursively. The parameter passed to the action is used to trigger recursive scheduling of the action. * @returns {Disposable} The disposable object used to cancel the scheduled action (best effort). */ schedulerProto.scheduleRecursive = function (action) { return this.scheduleRecursiveWithState(action, function (_action, self) { _action(function () { self(_action); }); }); }; /** * Schedules an action to be executed recursively. * @param {Mixed} state State passed to the action to be executed. * @param {Function} action Action to execute recursively. The last parameter passed to the action is used to trigger recursive scheduling of the action, passing in recursive invocation state. * @returns {Disposable} The disposable object used to cancel the scheduled action (best effort). */ schedulerProto.scheduleRecursiveWithState = function (state, action) { return this.scheduleWithState({ first: state, second: action }, invokeRecImmediate); }; /** * Schedules an action to be executed recursively after a specified relative due time. * @param {Function} action Action to execute recursively. The parameter passed to the action is used to trigger recursive scheduling of the action at the specified relative time. * @param {Number}dueTime Relative time after which to execute the action for the first time. * @returns {Disposable} The disposable object used to cancel the scheduled action (best effort). */ schedulerProto.scheduleRecursiveWithRelative = function (dueTime, action) { return this.scheduleRecursiveWithRelativeAndState(action, dueTime, scheduleInnerRecursive); }; /** * Schedules an action to be executed recursively after a specified relative due time. * @param {Mixed} state State passed to the action to be executed. * @param {Function} action Action to execute recursively. The last parameter passed to the action is used to trigger recursive scheduling of the action, passing in the recursive due time and invocation state. * @param {Number}dueTime Relative time after which to execute the action for the first time. * @returns {Disposable} The disposable object used to cancel the scheduled action (best effort). */ schedulerProto.scheduleRecursiveWithRelativeAndState = function (state, dueTime, action) { return this._scheduleRelative({ first: state, second: action }, dueTime, function (s, p) { return invokeRecDate(s, p, 'scheduleWithRelativeAndState'); }); }; /** * Schedules an action to be executed recursively at a specified absolute due time. * @param {Function} action Action to execute recursively. The parameter passed to the action is used to trigger recursive scheduling of the action at the specified absolute time. * @param {Number}dueTime Absolute time at which to execute the action for the first time. * @returns {Disposable} The disposable object used to cancel the scheduled action (best effort). */ schedulerProto.scheduleRecursiveWithAbsolute = function (dueTime, action) { return this.scheduleRecursiveWithAbsoluteAndState(action, dueTime, scheduleInnerRecursive); }; /** * Schedules an action to be executed recursively at a specified absolute due time. * @param {Mixed} state State passed to the action to be executed. * @param {Function} action Action to execute recursively. The last parameter passed to the action is used to trigger recursive scheduling of the action, passing in the recursive due time and invocation state. * @param {Number}dueTime Absolute time at which to execute the action for the first time. * @returns {Disposable} The disposable object used to cancel the scheduled action (best effort). */ schedulerProto.scheduleRecursiveWithAbsoluteAndState = function (state, dueTime, action) { return this._scheduleAbsolute({ first: state, second: action }, dueTime, function (s, p) { return invokeRecDate(s, p, 'scheduleWithAbsoluteAndState'); }); }; }(Scheduler.prototype)); (function (schedulerProto) { /** * Schedules a periodic piece of work by dynamically discovering the scheduler's capabilities. The periodic task will be scheduled using window.setInterval for the base implementation. * @param {Number} period Period for running the work periodically. * @param {Function} action Action to be executed. * @returns {Disposable} The disposable object used to cancel the scheduled recurring action (best effort). */ Scheduler.prototype.schedulePeriodic = function (period, action) { return this.schedulePeriodicWithState(null, period, action); }; /** * Schedules a periodic piece of work by dynamically discovering the scheduler's capabilities. The periodic task will be scheduled using window.setInterval for the base implementation. * @param {Mixed} state Initial state passed to the action upon the first iteration. * @param {Number} period Period for running the work periodically. * @param {Function} action Action to be executed, potentially updating the state. * @returns {Disposable} The disposable object used to cancel the scheduled recurring action (best effort). */ Scheduler.prototype.schedulePeriodicWithState = function(state, period, action) { if (typeof root.setInterval === 'undefined') { throw new Error('Periodic scheduling not supported.'); } var s = state; var id = root.setInterval(function () { s = action(s); }, period); return disposableCreate(function () { root.clearInterval(id); }); }; }(Scheduler.prototype)); /** Gets a scheduler that schedules work immediately on the current thread. */ var immediateScheduler = Scheduler.immediate = (function () { function scheduleNow(state, action) { return action(this, state); } function scheduleRelative(state, dueTime, action) { var dt = normalizeTime(dueTime); while (dt - this.now() > 0) { } return action(this, state); } function scheduleAbsolute(state, dueTime, action) { return this.scheduleWithRelativeAndState(state, dueTime - this.now(), action); } return new Scheduler(defaultNow, scheduleNow, scheduleRelative, scheduleAbsolute); }()); /** * Gets a scheduler that schedules work as soon as possible on the current thread. */ var currentThreadScheduler = Scheduler.currentThread = (function () { var queue; function runTrampoline (q) { var item; while (q.length > 0) { item = q.dequeue(); if (!item.isCancelled()) { // Note, do not schedule blocking work! while (item.dueTime - Scheduler.now() > 0) { } if (!item.isCancelled()) { item.invoke(); } } } } function scheduleNow(state, action) { return this.scheduleWithRelativeAndState(state, 0, action); } function scheduleRelative(state, dueTime, action) { var dt = this.now() + Scheduler.normalize(dueTime), si = new ScheduledItem(this, state, action, dt); if (!queue) { queue = new PriorityQueue(4); queue.enqueue(si); try { runTrampoline(queue); } catch (e) { throw e; } finally { queue = null; } } else { queue.enqueue(si); } return si.disposable; } function scheduleAbsolute(state, dueTime, action) { return this.scheduleWithRelativeAndState(state, dueTime - this.now(), action); } var currentScheduler = new Scheduler(defaultNow, scheduleNow, scheduleRelative, scheduleAbsolute); currentScheduler.scheduleRequired = function () { return !queue; }; currentScheduler.ensureTrampoline = function (action) { if (!queue) { this.schedule(action); } else { action(); } }; return currentScheduler; }()); var SchedulePeriodicRecursive = Rx.internals.SchedulePeriodicRecursive = (function () { function tick(command, recurse) { recurse(0, this._period); try { this._state = this._action(this._state); } catch (e) { this._cancel.dispose(); throw e; } } function SchedulePeriodicRecursive(scheduler, state, period, action) { this._scheduler = scheduler; this._state = state; this._period = period; this._action = action; } SchedulePeriodicRecursive.prototype.start = function () { var d = new SingleAssignmentDisposable(); this._cancel = d; d.setDisposable(this._scheduler.scheduleRecursiveWithRelativeAndState(0, this._period, tick.bind(this))); return d; }; return SchedulePeriodicRecursive; }()); var scheduleMethod, clearMethod = noop; var localTimer = (function () { var localSetTimeout, localClearTimeout = noop; if ('WScript' in this) { localSetTimeout = function (fn, time) { WScript.Sleep(time); fn(); }; } else if (!!root.setTimeout) { localSetTimeout = root.setTimeout; localClearTimeout = root.clearTimeout; } else { throw new Error('No concurrency detected!'); } return { setTimeout: localSetTimeout, clearTimeout: localClearTimeout }; }()); var localSetTimeout = localTimer.setTimeout, localClearTimeout = localTimer.clearTimeout; (function () { var reNative = RegExp('^' + String(toString) .replace(/[.*+?^${}()|[\]\\]/g, '\\$&') .replace(/toString| for [^\]]+/g, '.*?') + '$' ); var setImmediate = typeof (setImmediate = freeGlobal && moduleExports && freeGlobal.setImmediate) == 'function' && !reNative.test(setImmediate) && setImmediate, clearImmediate = typeof (clearImmediate = freeGlobal && moduleExports && freeGlobal.clearImmediate) == 'function' && !reNative.test(clearImmediate) && clearImmediate; function postMessageSupported () { // Ensure not in a worker if (!root.postMessage || root.importScripts) { return false; } var isAsync = false, oldHandler = root.onmessage; // Test for async root.onmessage = function () { isAsync = true; }; root.postMessage('', '*'); root.onmessage = oldHandler; return isAsync; } // Use in order, setImmediate, nextTick, postMessage, MessageChannel, script readystatechanged, setTimeout if (typeof setImmediate === 'function') { scheduleMethod = setImmediate; clearMethod = clearImmediate; } else if (typeof process !== 'undefined' && {}.toString.call(process) === '[object process]') { scheduleMethod = process.nextTick; } else if (postMessageSupported()) { var MSG_PREFIX = 'ms.rx.schedule' + Math.random(), tasks = {}, taskId = 0; var onGlobalPostMessage = function (event) { // Only if we're a match to avoid any other global events if (typeof event.data === 'string' && event.data.substring(0, MSG_PREFIX.length) === MSG_PREFIX) { var handleId = event.data.substring(MSG_PREFIX.length), action = tasks[handleId]; action(); delete tasks[handleId]; } } if (root.addEventListener) { root.addEventListener('message', onGlobalPostMessage, false); } else { root.attachEvent('onmessage', onGlobalPostMessage, false); } scheduleMethod = function (action) { var currentId = taskId++; tasks[currentId] = action; root.postMessage(MSG_PREFIX + currentId, '*'); }; } else if (!!root.MessageChannel) { var channel = new root.MessageChannel(), channelTasks = {}, channelTaskId = 0; channel.port1.onmessage = function (event) { var id = event.data, action = channelTasks[id]; action(); delete channelTasks[id]; }; scheduleMethod = function (action) { var id = channelTaskId++; channelTasks[id] = action; channel.port2.postMessage(id); }; } else if ('document' in root && 'onreadystatechange' in root.document.createElement('script')) { scheduleMethod = function (action) { var scriptElement = root.document.createElement('script'); scriptElement.onreadystatechange = function () { action(); scriptElement.onreadystatechange = null; scriptElement.parentNode.removeChild(scriptElement); scriptElement = null; }; root.document.documentElement.appendChild(scriptElement); }; } else { scheduleMethod = function (action) { return localSetTimeout(action, 0); }; clearMethod = localClearTimeout; } }()); /** * Gets a scheduler that schedules work via a timed callback based upon platform. */ var timeoutScheduler = Scheduler.timeout = (function () { function scheduleNow(state, action) { var scheduler = this, disposable = new SingleAssignmentDisposable(); var id = scheduleMethod(function () { if (!disposable.isDisposed) { disposable.setDisposable(action(scheduler, state)); } }); return new CompositeDisposable(disposable, disposableCreate(function () { clearMethod(id); })); } function scheduleRelative(state, dueTime, action) { var scheduler = this, dt = Scheduler.normalize(dueTime); if (dt === 0) { return scheduler.scheduleWithState(state, action); } var disposable = new SingleAssignmentDisposable(); var id = localSetTimeout(function () { if (!disposable.isDisposed) { disposable.setDisposable(action(scheduler, state)); } }, dt); return new CompositeDisposable(disposable, disposableCreate(function () { localClearTimeout(id); })); } function scheduleAbsolute(state, dueTime, action) { return this.scheduleWithRelativeAndState(state, dueTime - this.now(), action); } return new Scheduler(defaultNow, scheduleNow, scheduleRelative, scheduleAbsolute); })(); /** * Represents a notification to an observer. */ var Notification = Rx.Notification = (function () { function Notification(kind, hasValue) { this.hasValue = hasValue == null ? false : hasValue; this.kind = kind; } /** * Invokes the delegate corresponding to the notification or the observer's method corresponding to the notification and returns the produced result. * * @memberOf Notification * @param {Any} observerOrOnNext Delegate to invoke for an OnNext notification or Observer to invoke the notification on.. * @param {Function} onError Delegate to invoke for an OnError notification. * @param {Function} onCompleted Delegate to invoke for an OnCompleted notification. * @returns {Any} Result produced by the observation. */ Notification.prototype.accept = function (observerOrOnNext, onError, onCompleted) { return observerOrOnNext && typeof observerOrOnNext === 'object' ? this._acceptObservable(observerOrOnNext) : this._accept(observerOrOnNext, onError, onCompleted); }; /** * Returns an observable sequence with a single notification. * * @memberOf Notifications * @param {Scheduler} [scheduler] Scheduler to send out the notification calls on. * @returns {Observable} The observable sequence that surfaces the behavior of the notification upon subscription. */ Notification.prototype.toObservable = function (scheduler) { var notification = this; isScheduler(scheduler) || (scheduler = immediateScheduler); return new AnonymousObservable(function (observer) { return scheduler.schedule(function () { notification._acceptObservable(observer); notification.kind === 'N' && observer.onCompleted(); }); }); }; return Notification; })(); /** * Creates an object that represents an OnNext notification to an observer. * @param {Any} value The value contained in the notification. * @returns {Notification} The OnNext notification containing the value. */ var notificationCreateOnNext = Notification.createOnNext = (function () { function _accept (onNext) { return onNext(this.value); } function _acceptObservable(observer) { return observer.onNext(this.value); } function toString () { return 'OnNext(' + this.value + ')'; } return function (value) { var notification = new Notification('N', true); notification.value = value; notification._accept = _accept; notification._acceptObservable = _acceptObservable; notification.toString = toString; return notification; }; }()); /** * Creates an object that represents an OnError notification to an observer. * @param {Any} error The exception contained in the notification. * @returns {Notification} The OnError notification containing the exception. */ var notificationCreateOnError = Notification.createOnError = (function () { function _accept (onNext, onError) { return onError(this.exception); } function _acceptObservable(observer) { return observer.onError(this.exception); } function toString () { return 'OnError(' + this.exception + ')'; } return function (e) { var notification = new Notification('E'); notification.exception = e; notification._accept = _accept; notification._acceptObservable = _acceptObservable; notification.toString = toString; return notification; }; }()); /** * Creates an object that represents an OnCompleted notification to an observer. * @returns {Notification} The OnCompleted notification. */ var notificationCreateOnCompleted = Notification.createOnCompleted = (function () { function _accept (onNext, onError, onCompleted) { return onCompleted(); } function _acceptObservable(observer) { return observer.onCompleted(); } function toString () { return 'OnCompleted()'; } return function () { var notification = new Notification('C'); notification._accept = _accept; notification._acceptObservable = _acceptObservable; notification.toString = toString; return notification; }; }()); var Enumerator = Rx.internals.Enumerator = function (next) { this._next = next; }; Enumerator.prototype.next = function () { return this._next(); }; Enumerator.prototype[$iterator$] = function () { return this; } var Enumerable = Rx.internals.Enumerable = function (iterator) { this._iterator = iterator; }; Enumerable.prototype[$iterator$] = function () { return this._iterator(); }; Enumerable.prototype.concat = function () { var sources = this; return new AnonymousObservable(function (observer) { var e; try { e = sources[$iterator$](); } catch (err) { observer.onError(err); return; } var isDisposed, subscription = new SerialDisposable(); var cancelable = immediateScheduler.scheduleRecursive(function (self) { var currentItem; if (isDisposed) { return; } try { currentItem = e.next(); } catch (ex) { observer.onError(ex); return; } if (currentItem.done) { observer.onCompleted(); return; } // Check if promise var currentValue = currentItem.value; isPromise(currentValue) && (currentValue = observableFromPromise(currentValue)); var d = new SingleAssignmentDisposable(); subscription.setDisposable(d); d.setDisposable(currentValue.subscribe( observer.onNext.bind(observer), observer.onError.bind(observer), function () { self(); }) ); }); return new CompositeDisposable(subscription, cancelable, disposableCreate(function () { isDisposed = true; })); }); }; Enumerable.prototype.catchError = function () { var sources = this; return new AnonymousObservable(function (observer) { var e; try { e = sources[$iterator$](); } catch (err) { observer.onError(err); return; } var isDisposed, lastException, subscription = new SerialDisposable(); var cancelable = immediateScheduler.scheduleRecursive(function (self) { if (isDisposed) { return; } var currentItem; try { currentItem = e.next(); } catch (ex) { observer.onError(ex); return; } if (currentItem.done) { if (lastException) { observer.onError(lastException); } else { observer.onCompleted(); } return; } // Check if promise var currentValue = currentItem.value; isPromise(currentValue) && (currentValue = observableFromPromise(currentValue)); var d = new SingleAssignmentDisposable(); subscription.setDisposable(d); d.setDisposable(currentValue.subscribe( observer.onNext.bind(observer), function (exn) { lastException = exn; self(); }, observer.onCompleted.bind(observer))); }); return new CompositeDisposable(subscription, cancelable, disposableCreate(function () { isDisposed = true; })); }); }; var enumerableRepeat = Enumerable.repeat = function (value, repeatCount) { if (repeatCount == null) { repeatCount = -1; } return new Enumerable(function () { var left = repeatCount; return new Enumerator(function () { if (left === 0) { return doneEnumerator; } if (left > 0) { left--; } return { done: false, value: value }; }); }); }; var enumerableOf = Enumerable.of = function (source, selector, thisArg) { selector || (selector = identity); return new Enumerable(function () { var index = -1; return new Enumerator( function () { return ++index < source.length ? { done: false, value: selector.call(thisArg, source[index], index, source) } : doneEnumerator; }); }); }; /** * Supports push-style iteration over an observable sequence. */ var Observer = Rx.Observer = function () { }; /** * Creates a notification callback from an observer. * @returns The action that forwards its input notification to the underlying observer. */ Observer.prototype.toNotifier = function () { var observer = this; return function (n) { return n.accept(observer); }; }; /** * Hides the identity of an observer. * @returns An observer that hides the identity of the specified observer. */ Observer.prototype.asObserver = function () { return new AnonymousObserver(this.onNext.bind(this), this.onError.bind(this), this.onCompleted.bind(this)); }; /** * Creates an observer from the specified OnNext, along with optional OnError, and OnCompleted actions. * @param {Function} [onNext] Observer's OnNext action implementation. * @param {Function} [onError] Observer's OnError action implementation. * @param {Function} [onCompleted] Observer's OnCompleted action implementation. * @returns {Observer} The observer object implemented using the given actions. */ var observerCreate = Observer.create = function (onNext, onError, onCompleted) { onNext || (onNext = noop); onError || (onError = defaultError); onCompleted || (onCompleted = noop); return new AnonymousObserver(onNext, onError, onCompleted); }; /** * Creates an observer from a notification callback. * @param {Function} handler Action that handles a notification. * @returns The observer object that invokes the specified handler using a notification corresponding to each message it receives. */ Observer.fromNotifier = function (handler, thisArg) { return new AnonymousObserver(function (x) { return handler.call(thisArg, notificationCreateOnNext(x)); }, function (e) { return handler.call(thisArg, notificationCreateOnError(e)); }, function () { return handler.call(thisArg, notificationCreateOnCompleted()); }); }; /** * Abstract base class for implementations of the Observer class. * This base class enforces the grammar of observers where OnError and OnCompleted are terminal messages. */ var AbstractObserver = Rx.internals.AbstractObserver = (function (__super__) { inherits(AbstractObserver, __super__); /** * Creates a new observer in a non-stopped state. */ function AbstractObserver() { this.isStopped = false; __super__.call(this); } /** * Notifies the observer of a new element in the sequence. * @param {Any} value Next element in the sequence. */ AbstractObserver.prototype.onNext = function (value) { if (!this.isStopped) { this.next(value); } }; /** * Notifies the observer that an exception has occurred. * @param {Any} error The error that has occurred. */ AbstractObserver.prototype.onError = function (error) { if (!this.isStopped) { this.isStopped = true; this.error(error); } }; /** * Notifies the observer of the end of the sequence. */ AbstractObserver.prototype.onCompleted = function () { if (!this.isStopped) { this.isStopped = true; this.completed(); } }; /** * Disposes the observer, causing it to transition to the stopped state. */ AbstractObserver.prototype.dispose = function () { this.isStopped = true; }; AbstractObserver.prototype.fail = function (e) { if (!this.isStopped) { this.isStopped = true; this.error(e); return true; } return false; }; return AbstractObserver; }(Observer)); /** * Class to create an Observer instance from delegate-based implementations of the on* methods. */ var AnonymousObserver = Rx.AnonymousObserver = (function (__super__) { inherits(AnonymousObserver, __super__); /** * Creates an observer from the specified OnNext, OnError, and OnCompleted actions. * @param {Any} onNext Observer's OnNext action implementation. * @param {Any} onError Observer's OnError action implementation. * @param {Any} onCompleted Observer's OnCompleted action implementation. */ function AnonymousObserver(onNext, onError, onCompleted) { __super__.call(this); this._onNext = onNext; this._onError = onError; this._onCompleted = onCompleted; } /** * Calls the onNext action. * @param {Any} value Next element in the sequence. */ AnonymousObserver.prototype.next = function (value) { this._onNext(value); }; /** * Calls the onError action. * @param {Any} error The error that has occurred. */ AnonymousObserver.prototype.error = function (error) { this._onError(error); }; /** * Calls the onCompleted action. */ AnonymousObserver.prototype.completed = function () { this._onCompleted(); }; return AnonymousObserver; }(AbstractObserver)); var observableProto; /** * Represents a push-style collection. */ var Observable = Rx.Observable = (function () { function Observable(subscribe) { if (Rx.config.longStackSupport && hasStacks) { try { throw new Error(); } catch (e) { this.stack = e.stack.substring(e.stack.indexOf("\n") + 1); } var self = this; this._subscribe = function (observer) { var oldOnError = observer.onError.bind(observer); observer.onError = function (err) { makeStackTraceLong(err, self); oldOnError(err); }; return subscribe(observer); }; } else { this._subscribe = subscribe; } } observableProto = Observable.prototype; /** * Subscribes an observer to the observable sequence. * @param {Mixed} [observerOrOnNext] The object that is to receive notifications or an action to invoke for each element in the observable sequence. * @param {Function} [onError] Action to invoke upon exceptional termination of the observable sequence. * @param {Function} [onCompleted] Action to invoke upon graceful termination of the observable sequence. * @returns {Diposable} A disposable handling the subscriptions and unsubscriptions. */ observableProto.subscribe = observableProto.forEach = function (observerOrOnNext, onError, onCompleted) { return this._subscribe(typeof observerOrOnNext === 'object' ? observerOrOnNext : observerCreate(observerOrOnNext, onError, onCompleted)); }; /** * Subscribes to the next value in the sequence with an optional "this" argument. * @param {Function} onNext The function to invoke on each element in the observable sequence. * @param {Any} [thisArg] Object to use as this when executing callback. * @returns {Disposable} A disposable handling the subscriptions and unsubscriptions. */ observableProto.subscribeOnNext = function (onNext, thisArg) { return this._subscribe(observerCreate(arguments.length === 2 ? function(x) { onNext.call(thisArg, x); } : onNext)); }; /** * Subscribes to an exceptional condition in the sequence with an optional "this" argument. * @param {Function} onError The function to invoke upon exceptional termination of the observable sequence. * @param {Any} [thisArg] Object to use as this when executing callback. * @returns {Disposable} A disposable handling the subscriptions and unsubscriptions. */ observableProto.subscribeOnError = function (onError, thisArg) { return this._subscribe(observerCreate(null, arguments.length === 2 ? function(e) { onError.call(thisArg, e); } : onError)); }; /** * Subscribes to the next value in the sequence with an optional "this" argument. * @param {Function} onCompleted The function to invoke upon graceful termination of the observable sequence. * @param {Any} [thisArg] Object to use as this when executing callback. * @returns {Disposable} A disposable handling the subscriptions and unsubscriptions. */ observableProto.subscribeOnCompleted = function (onCompleted, thisArg) { return this._subscribe(observerCreate(null, null, arguments.length === 2 ? function() { onCompleted.call(thisArg); } : onCompleted)); }; return Observable; })(); var ScheduledObserver = Rx.internals.ScheduledObserver = (function (__super__) { inherits(ScheduledObserver, __super__); function ScheduledObserver(scheduler, observer) { __super__.call(this); this.scheduler = scheduler; this.observer = observer; this.isAcquired = false; this.hasFaulted = false; this.queue = []; this.disposable = new SerialDisposable(); } ScheduledObserver.prototype.next = function (value) { var self = this; this.queue.push(function () { self.observer.onNext(value); }); }; ScheduledObserver.prototype.error = function (e) { var self = this; this.queue.push(function () { self.observer.onError(e); }); }; ScheduledObserver.prototype.completed = function () { var self = this; this.queue.push(function () { self.observer.onCompleted(); }); }; ScheduledObserver.prototype.ensureActive = function () { var isOwner = false, parent = this; if (!this.hasFaulted && this.queue.length > 0) { isOwner = !this.isAcquired; this.isAcquired = true; } if (isOwner) { this.disposable.setDisposable(this.scheduler.scheduleRecursive(function (self) { var work; if (parent.queue.length > 0) { work = parent.queue.shift(); } else { parent.isAcquired = false; return; } try { work(); } catch (ex) { parent.queue = []; parent.hasFaulted = true; throw ex; } self(); })); } }; ScheduledObserver.prototype.dispose = function () { __super__.prototype.dispose.call(this); this.disposable.dispose(); }; return ScheduledObserver; }(AbstractObserver)); /** * Creates an array from an observable sequence. * @returns {Observable} An observable sequence containing a single element with a list containing all the elements of the source sequence. */ observableProto.toArray = function () { var source = this; return new AnonymousObservable(function(observer) { var arr = []; return source.subscribe( arr.push.bind(arr), observer.onError.bind(observer), function () { observer.onNext(arr); observer.onCompleted(); }); }, source); }; /** * Creates an observable sequence from a specified subscribe method implementation. * @example * var res = Rx.Observable.create(function (observer) { return function () { } ); * var res = Rx.Observable.create(function (observer) { return Rx.Disposable.empty; } ); * var res = Rx.Observable.create(function (observer) { } ); * @param {Function} subscribe Implementation of the resulting observable sequence's subscribe method, returning a function that will be wrapped in a Disposable. * @returns {Observable} The observable sequence with the specified implementation for the Subscribe method. */ Observable.create = Observable.createWithDisposable = function (subscribe, parent) { return new AnonymousObservable(subscribe, parent); }; /** * Returns an observable sequence that invokes the specified factory function whenever a new observer subscribes. * * @example * var res = Rx.Observable.defer(function () { return Rx.Observable.fromArray([1,2,3]); }); * @param {Function} observableFactory Observable factory function to invoke for each observer that subscribes to the resulting sequence or Promise. * @returns {Observable} An observable sequence whose observers trigger an invocation of the given observable factory function. */ var observableDefer = Observable.defer = function (observableFactory) { return new AnonymousObservable(function (observer) { var result; try { result = observableFactory(); } catch (e) { return observableThrow(e).subscribe(observer); } isPromise(result) && (result = observableFromPromise(result)); return result.subscribe(observer); }); }; /** * Returns an empty observable sequence, using the specified scheduler to send out the single OnCompleted message. * * @example * var res = Rx.Observable.empty(); * var res = Rx.Observable.empty(Rx.Scheduler.timeout); * @param {Scheduler} [scheduler] Scheduler to send the termination call on. * @returns {Observable} An observable sequence with no elements. */ var observableEmpty = Observable.empty = function (scheduler) { isScheduler(scheduler) || (scheduler = immediateScheduler); return new AnonymousObservable(function (observer) { return scheduler.schedule(function () { observer.onCompleted(); }); }); }; var maxSafeInteger = Math.pow(2, 53) - 1; function StringIterable(str) { this._s = s; } StringIterable.prototype[$iterator$] = function () { return new StringIterator(this._s); }; function StringIterator(str) { this._s = s; this._l = s.length; this._i = 0; } StringIterator.prototype[$iterator$] = function () { return this; }; StringIterator.prototype.next = function () { if (this._i < this._l) { var val = this._s.charAt(this._i++); return { done: false, value: val }; } else { return doneEnumerator; } }; function ArrayIterable(a) { this._a = a; } ArrayIterable.prototype[$iterator$] = function () { return new ArrayIterator(this._a); }; function ArrayIterator(a) { this._a = a; this._l = toLength(a); this._i = 0; } ArrayIterator.prototype[$iterator$] = function () { return this; }; ArrayIterator.prototype.next = function () { if (this._i < this._l) { var val = this._a[this._i++]; return { done: false, value: val }; } else { return doneEnumerator; } }; function numberIsFinite(value) { return typeof value === 'number' && root.isFinite(value); } function isNan(n) { return n !== n; } function getIterable(o) { var i = o[$iterator$], it; if (!i && typeof o === 'string') { it = new StringIterable(o); return it[$iterator$](); } if (!i && o.length !== undefined) { it = new ArrayIterable(o); return it[$iterator$](); } if (!i) { throw new TypeError('Object is not iterable'); } return o[$iterator$](); } function sign(value) { var number = +value; if (number === 0) { return number; } if (isNaN(number)) { return number; } return number < 0 ? -1 : 1; } function toLength(o) { var len = +o.length; if (isNaN(len)) { return 0; } if (len === 0 || !numberIsFinite(len)) { return len; } len = sign(len) * Math.floor(Math.abs(len)); if (len <= 0) { return 0; } if (len > maxSafeInteger) { return maxSafeInteger; } return len; } /** * This method creates a new Observable sequence from an array-like or iterable object. * @param {Any} arrayLike An array-like or iterable object to convert to an Observable sequence. * @param {Function} [mapFn] Map function to call on every element of the array. * @param {Any} [thisArg] The context to use calling the mapFn if provided. * @param {Scheduler} [scheduler] Optional scheduler to use for scheduling. If not provided, defaults to Scheduler.currentThread. */ var observableFrom = Observable.from = function (iterable, mapFn, thisArg, scheduler) { if (iterable == null) { throw new Error('iterable cannot be null.') } if (mapFn && !isFunction(mapFn)) { throw new Error('mapFn when provided must be a function'); } isScheduler(scheduler) || (scheduler = currentThreadScheduler); var list = Object(iterable), it = getIterable(list); return new AnonymousObservable(function (observer) { var i = 0; return scheduler.scheduleRecursive(function (self) { var next; try { next = it.next(); } catch (e) { observer.onError(e); return; } if (next.done) { observer.onCompleted(); return; } var result = next.value; if (mapFn && isFunction(mapFn)) { try { result = mapFn.call(thisArg, result, i); } catch (e) { observer.onError(e); return; } } observer.onNext(result); i++; self(); }); }); }; /** * Converts an array to an observable sequence, using an optional scheduler to enumerate the array. * @deprecated use Observable.from or Observable.of * @param {Scheduler} [scheduler] Scheduler to run the enumeration of the input sequence on. * @returns {Observable} The observable sequence whose elements are pulled from the given enumerable sequence. */ var observableFromArray = Observable.fromArray = function (array, scheduler) { deprecate('fromArray', 'from'); isScheduler(scheduler) || (scheduler = currentThreadScheduler); return new AnonymousObservable(function (observer) { var count = 0, len = array.length; return scheduler.scheduleRecursive(function (self) { if (count < len) { observer.onNext(array[count++]); self(); } else { observer.onCompleted(); } }); }); }; /** * Returns a non-terminating observable sequence, which can be used to denote an infinite duration (e.g. when using reactive joins). * @returns {Observable} An observable sequence whose observers will never get called. */ var observableNever = Observable.never = function () { return new AnonymousObservable(function () { return disposableEmpty; }); }; function observableOf (scheduler, array) { isScheduler(scheduler) || (scheduler = currentThreadScheduler); return new AnonymousObservable(function (observer) { var count = 0, len = array.length; return scheduler.scheduleRecursive(function (self) { if (count < len) { observer.onNext(array[count++]); self(); } else { observer.onCompleted(); } }); }); } /** * This method creates a new Observable instance with a variable number of arguments, regardless of number or type of the arguments. * @returns {Observable} The observable sequence whose elements are pulled from the given arguments. */ Observable.of = function () { return observableOf(null, arguments); }; /** * This method creates a new Observable instance with a variable number of arguments, regardless of number or type of the arguments. * @param {Scheduler} scheduler A scheduler to use for scheduling the arguments. * @returns {Observable} The observable sequence whose elements are pulled from the given arguments. */ Observable.ofWithScheduler = function (scheduler) { return observableOf(scheduler, slice.call(arguments, 1)); }; /** * Generates an observable sequence of integral numbers within a specified range, using the specified scheduler to send out observer messages. * * @example * var res = Rx.Observable.range(0, 10); * var res = Rx.Observable.range(0, 10, Rx.Scheduler.timeout); * @param {Number} start The value of the first integer in the sequence. * @param {Number} count The number of sequential integers to generate. * @param {Scheduler} [scheduler] Scheduler to run the generator loop on. If not specified, defaults to Scheduler.currentThread. * @returns {Observable} An observable sequence that contains a range of sequential integral numbers. */ Observable.range = function (start, count, scheduler) { isScheduler(scheduler) || (scheduler = currentThreadScheduler); return new AnonymousObservable(function (observer) { return scheduler.scheduleRecursiveWithState(0, function (i, self) { if (i < count) { observer.onNext(start + i); self(i + 1); } else { observer.onCompleted(); } }); }); }; /** * Generates an observable sequence that repeats the given element the specified number of times, using the specified scheduler to send out observer messages. * * @example * var res = Rx.Observable.repeat(42); * var res = Rx.Observable.repeat(42, 4); * 3 - res = Rx.Observable.repeat(42, 4, Rx.Scheduler.timeout); * 4 - res = Rx.Observable.repeat(42, null, Rx.Scheduler.timeout); * @param {Mixed} value Element to repeat. * @param {Number} repeatCount [Optiona] Number of times to repeat the element. If not specified, repeats indefinitely. * @param {Scheduler} scheduler Scheduler to run the producer loop on. If not specified, defaults to Scheduler.immediate. * @returns {Observable} An observable sequence that repeats the given element the specified number of times. */ Observable.repeat = function (value, repeatCount, scheduler) { isScheduler(scheduler) || (scheduler = currentThreadScheduler); return observableReturn(value, scheduler).repeat(repeatCount == null ? -1 : repeatCount); }; /** * Returns an observable sequence that contains a single element, using the specified scheduler to send out observer messages. * There is an alias called 'just', and 'returnValue' for browsers <IE9. * * @example * var res = Rx.Observable.return(42); * var res = Rx.Observable.return(42, Rx.Scheduler.timeout); * @param {Mixed} value Single element in the resulting observable sequence. * @param {Scheduler} scheduler Scheduler to send the single element on. If not specified, defaults to Scheduler.immediate. * @returns {Observable} An observable sequence containing the single specified element. */ var observableReturn = Observable['return'] = Observable.just = function (value, scheduler) { isScheduler(scheduler) || (scheduler = immediateScheduler); return new AnonymousObservable(function (observer) { return scheduler.schedule(function () { observer.onNext(value); observer.onCompleted(); }); }); }; /** @deprecated use return or just */ Observable.returnValue = function () { deprecate('returnValue', 'return or just'); return observableReturn.apply(null, arguments); }; /** * Returns an observable sequence that terminates with an exception, using the specified scheduler to send out the single onError message. * There is an alias to this method called 'throwError' for browsers <IE9. * @param {Mixed} exception An object used for the sequence's termination. * @param {Scheduler} scheduler Scheduler to send the exceptional termination call on. If not specified, defaults to Scheduler.immediate. * @returns {Observable} The observable sequence that terminates exceptionally with the specified exception object. */ var observableThrow = Observable['throw'] = Observable.throwException = Observable.throwError = function (exception, scheduler) { isScheduler(scheduler) || (scheduler = immediateScheduler); return new AnonymousObservable(function (observer) { return scheduler.schedule(function () { observer.onError(exception); }); }); }; function observableCatchHandler(source, handler) { return new AnonymousObservable(function (observer) { var d1 = new SingleAssignmentDisposable(), subscription = new SerialDisposable(); subscription.setDisposable(d1); d1.setDisposable(source.subscribe(observer.onNext.bind(observer), function (exception) { var d, result; try { result = handler(exception); } catch (ex) { observer.onError(ex); return; } isPromise(result) && (result = observableFromPromise(result)); d = new SingleAssignmentDisposable(); subscription.setDisposable(d); d.setDisposable(result.subscribe(observer)); }, observer.onCompleted.bind(observer))); return subscription; }, source); } /** * Continues an observable sequence that is terminated by an exception with the next observable sequence. * @example * 1 - xs.catchException(ys) * 2 - xs.catchException(function (ex) { return ys(ex); }) * @param {Mixed} handlerOrSecond Exception handler function that returns an observable sequence given the error that occurred in the first sequence, or a second observable sequence used to produce results when an error occurred in the first sequence. * @returns {Observable} An observable sequence containing the first sequence's elements, followed by the elements of the handler sequence in case an exception occurred. */ observableProto['catch'] = observableProto.catchError = function (handlerOrSecond) { return typeof handlerOrSecond === 'function' ? observableCatchHandler(this, handlerOrSecond) : observableCatch([this, handlerOrSecond]); }; /** * @deprecated use #catch or #catchError instead. */ observableProto.catchException = function (handlerOrSecond) { deprecate('catchException', 'catch or catchError'); return this.catchError(handlerOrSecond); }; /** * Continues an observable sequence that is terminated by an exception with the next observable sequence. * @param {Array | Arguments} args Arguments or an array to use as the next sequence if an error occurs. * @returns {Observable} An observable sequence containing elements from consecutive source sequences until a source sequence terminates successfully. */ var observableCatch = Observable.catchError = Observable['catch'] = function () { return enumerableOf(argsOrArray(arguments, 0)).catchError(); }; /** * @deprecated use #catch or #catchError instead. */ Observable.catchException = function () { deprecate('catchException', 'catch or catchError'); return observableCatch.apply(null, arguments); }; /** * Merges the specified observable sequences into one observable sequence by using the selector function whenever any of the observable sequences or Promises produces an element. * This can be in the form of an argument list of observables or an array. * * @example * 1 - obs = observable.combineLatest(obs1, obs2, obs3, function (o1, o2, o3) { return o1 + o2 + o3; }); * 2 - obs = observable.combineLatest([obs1, obs2, obs3], function (o1, o2, o3) { return o1 + o2 + o3; }); * @returns {Observable} An observable sequence containing the result of combining elements of the sources using the specified result selector function. */ observableProto.combineLatest = function () { var args = slice.call(arguments); if (Array.isArray(args[0])) { args[0].unshift(this); } else { args.unshift(this); } return combineLatest.apply(this, args); }; /** * Merges the specified observable sequences into one observable sequence by using the selector function whenever any of the observable sequences or Promises produces an element. * * @example * 1 - obs = Rx.Observable.combineLatest(obs1, obs2, obs3, function (o1, o2, o3) { return o1 + o2 + o3; }); * 2 - obs = Rx.Observable.combineLatest([obs1, obs2, obs3], function (o1, o2, o3) { return o1 + o2 + o3; }); * @returns {Observable} An observable sequence containing the result of combining elements of the sources using the specified result selector function. */ var combineLatest = Observable.combineLatest = function () { var args = slice.call(arguments), resultSelector = args.pop(); if (Array.isArray(args[0])) { args = args[0]; } return new AnonymousObservable(function (observer) { var falseFactory = function () { return false; }, n = args.length, hasValue = arrayInitialize(n, falseFactory), hasValueAll = false, isDone = arrayInitialize(n, falseFactory), values = new Array(n); function next(i) { var res; hasValue[i] = true; if (hasValueAll || (hasValueAll = hasValue.every(identity))) { try { res = resultSelector.apply(null, values); } catch (ex) { observer.onError(ex); return; } observer.onNext(res); } else if (isDone.filter(function (x, j) { return j !== i; }).every(identity)) { observer.onCompleted(); } } function done (i) { isDone[i] = true; if (isDone.every(identity)) { observer.onCompleted(); } } var subscriptions = new Array(n); for (var idx = 0; idx < n; idx++) { (function (i) { var source = args[i], sad = new SingleAssignmentDisposable(); isPromise(source) && (source = observableFromPromise(source)); sad.setDisposable(source.subscribe(function (x) { values[i] = x; next(i); }, observer.onError.bind(observer), function () { done(i); })); subscriptions[i] = sad; }(idx)); } return new CompositeDisposable(subscriptions); }, this); }; /** * Concatenates all the observable sequences. This takes in either an array or variable arguments to concatenate. * * @example * 1 - concatenated = xs.concat(ys, zs); * 2 - concatenated = xs.concat([ys, zs]); * @returns {Observable} An observable sequence that contains the elements of each given sequence, in sequential order. */ observableProto.concat = function () { var items = slice.call(arguments, 0); items.unshift(this); return observableConcat.apply(this, items); }; /** * Concatenates all the observable sequences. * @param {Array | Arguments} args Arguments or an array to concat to the observable sequence. * @returns {Observable} An observable sequence that contains the elements of each given sequence, in sequential order. */ var observableConcat = Observable.concat = function () { return enumerableOf(argsOrArray(arguments, 0)).concat(); }; /** * Concatenates an observable sequence of observable sequences. * @returns {Observable} An observable sequence that contains the elements of each observed inner sequence, in sequential order. */ observableProto.concatAll = function () { return this.merge(1); }; /** @deprecated Use `concatAll` instead. */ observableProto.concatObservable = function () { deprecate('concatObservable', 'concatAll'); return this.merge(1); }; /** * Merges an observable sequence of observable sequences into an observable sequence, limiting the number of concurrent subscriptions to inner sequences. * Or merges two observable sequences into a single observable sequence. * * @example * 1 - merged = sources.merge(1); * 2 - merged = source.merge(otherSource); * @param {Mixed} [maxConcurrentOrOther] Maximum number of inner observable sequences being subscribed to concurrently or the second observable sequence. * @returns {Observable} The observable sequence that merges the elements of the inner sequences. */ observableProto.merge = function (maxConcurrentOrOther) { if (typeof maxConcurrentOrOther !== 'number') { return observableMerge(this, maxConcurrentOrOther); } var sources = this; return new AnonymousObservable(function (observer) { var activeCount = 0, group = new CompositeDisposable(), isStopped = false, q = []; function subscribe(xs) { var subscription = new SingleAssignmentDisposable(); group.add(subscription); // Check for promises support isPromise(xs) && (xs = observableFromPromise(xs)); subscription.setDisposable(xs.subscribe(observer.onNext.bind(observer), observer.onError.bind(observer), function () { group.remove(subscription); if (q.length > 0) { subscribe(q.shift()); } else { activeCount--; isStopped && activeCount === 0 && observer.onCompleted(); } })); } group.add(sources.subscribe(function (innerSource) { if (activeCount < maxConcurrentOrOther) { activeCount++; subscribe(innerSource); } else { q.push(innerSource); } }, observer.onError.bind(observer), function () { isStopped = true; activeCount === 0 && observer.onCompleted(); })); return group; }, sources); }; /** * Merges all the observable sequences into a single observable sequence. * The scheduler is optional and if not specified, the immediate scheduler is used. * @returns {Observable} The observable sequence that merges the elements of the observable sequences. */ var observableMerge = Observable.merge = function () { var scheduler, sources; if (!arguments[0]) { scheduler = immediateScheduler; sources = slice.call(arguments, 1); } else if (isScheduler(arguments[0])) { scheduler = arguments[0]; sources = slice.call(arguments, 1); } else { scheduler = immediateScheduler; sources = slice.call(arguments, 0); } if (Array.isArray(sources[0])) { sources = sources[0]; } return observableOf(scheduler, sources).mergeAll(); }; /** * Merges an observable sequence of observable sequences into an observable sequence. * @returns {Observable} The observable sequence that merges the elements of the inner sequences. */ observableProto.mergeAll = function () { var sources = this; return new AnonymousObservable(function (observer) { var group = new CompositeDisposable(), isStopped = false, m = new SingleAssignmentDisposable(); group.add(m); m.setDisposable(sources.subscribe(function (innerSource) { var innerSubscription = new SingleAssignmentDisposable(); group.add(innerSubscription); // Check for promises support isPromise(innerSource) && (innerSource = observableFromPromise(innerSource)); innerSubscription.setDisposable(innerSource.subscribe(observer.onNext.bind(observer), observer.onError.bind(observer), function () { group.remove(innerSubscription); isStopped && group.length === 1 && observer.onCompleted(); })); }, observer.onError.bind(observer), function () { isStopped = true; group.length === 1 && observer.onCompleted(); })); return group; }, sources); }; /** * @deprecated use #mergeAll instead. */ observableProto.mergeObservable = function () { deprecate('mergeObservable', 'mergeAll'); return this.mergeAll.apply(this, arguments); }; /** * Returns the values from the source observable sequence only after the other observable sequence produces a value. * @param {Observable | Promise} other The observable sequence or Promise that triggers propagation of elements of the source sequence. * @returns {Observable} An observable sequence containing the elements of the source sequence starting from the point the other sequence triggered propagation. */ observableProto.skipUntil = function (other) { var source = this; return new AnonymousObservable(function (observer) { var isOpen = false; var disposables = new CompositeDisposable(source.subscribe(function (left) { isOpen && observer.onNext(left); }, observer.onError.bind(observer), function () { isOpen && observer.onCompleted(); })); isPromise(other) && (other = observableFromPromise(other)); var rightSubscription = new SingleAssignmentDisposable(); disposables.add(rightSubscription); rightSubscription.setDisposable(other.subscribe(function () { isOpen = true; rightSubscription.dispose(); }, observer.onError.bind(observer), function () { rightSubscription.dispose(); })); return disposables; }, source); }; /** * Transforms an observable sequence of observable sequences into an observable sequence producing values only from the most recent observable sequence. * @returns {Observable} The observable sequence that at any point in time produces the elements of the most recent inner observable sequence that has been received. */ observableProto['switch'] = observableProto.switchLatest = function () { var sources = this; return new AnonymousObservable(function (observer) { var hasLatest = false, innerSubscription = new SerialDisposable(), isStopped = false, latest = 0, subscription = sources.subscribe( function (innerSource) { var d = new SingleAssignmentDisposable(), id = ++latest; hasLatest = true; innerSubscription.setDisposable(d); // Check if Promise or Observable isPromise(innerSource) && (innerSource = observableFromPromise(innerSource)); d.setDisposable(innerSource.subscribe( function (x) { latest === id && observer.onNext(x); }, function (e) { latest === id && observer.onError(e); }, function () { if (latest === id) { hasLatest = false; isStopped && observer.onCompleted(); } })); }, observer.onError.bind(observer), function () { isStopped = true; !hasLatest && observer.onCompleted(); }); return new CompositeDisposable(subscription, innerSubscription); }, sources); }; /** * Returns the values from the source observable sequence until the other observable sequence produces a value. * @param {Observable | Promise} other Observable sequence or Promise that terminates propagation of elements of the source sequence. * @returns {Observable} An observable sequence containing the elements of the source sequence up to the point the other sequence interrupted further propagation. */ observableProto.takeUntil = function (other) { var source = this; return new AnonymousObservable(function (observer) { isPromise(other) && (other = observableFromPromise(other)); return new CompositeDisposable( source.subscribe(observer), other.subscribe(observer.onCompleted.bind(observer), observer.onError.bind(observer), noop) ); }, source); }; function zipArray(second, resultSelector) { var first = this; return new AnonymousObservable(function (observer) { var index = 0, len = second.length; return first.subscribe(function (left) { if (index < len) { var right = second[index++], result; try { result = resultSelector(left, right); } catch (e) { observer.onError(e); return; } observer.onNext(result); } else { observer.onCompleted(); } }, observer.onError.bind(observer), observer.onCompleted.bind(observer)); }, first); } /** * Merges the specified observable sequences into one observable sequence by using the selector function whenever all of the observable sequences or an array have produced an element at a corresponding index. * The last element in the arguments must be a function to invoke for each series of elements at corresponding indexes in the sources. * * @example * 1 - res = obs1.zip(obs2, fn); * 1 - res = x1.zip([1,2,3], fn); * @returns {Observable} An observable sequence containing the result of combining elements of the sources using the specified result selector function. */ observableProto.zip = function () { if (Array.isArray(arguments[0])) { return zipArray.apply(this, arguments); } var parent = this, sources = slice.call(arguments), resultSelector = sources.pop(); sources.unshift(parent); return new AnonymousObservable(function (observer) { var n = sources.length, queues = arrayInitialize(n, function () { return []; }), isDone = arrayInitialize(n, function () { return false; }); function next(i) { var res, queuedValues; if (queues.every(function (x) { return x.length > 0; })) { try { queuedValues = queues.map(function (x) { return x.shift(); }); res = resultSelector.apply(parent, queuedValues); } catch (ex) { observer.onError(ex); return; } observer.onNext(res); } else if (isDone.filter(function (x, j) { return j !== i; }).every(identity)) { observer.onCompleted(); } }; function done(i) { isDone[i] = true; if (isDone.every(function (x) { return x; })) { observer.onCompleted(); } } var subscriptions = new Array(n); for (var idx = 0; idx < n; idx++) { (function (i) { var source = sources[i], sad = new SingleAssignmentDisposable(); isPromise(source) && (source = observableFromPromise(source)); sad.setDisposable(source.subscribe(function (x) { queues[i].push(x); next(i); }, observer.onError.bind(observer), function () { done(i); })); subscriptions[i] = sad; })(idx); } return new CompositeDisposable(subscriptions); }, parent); }; /** * Merges the specified observable sequences into one observable sequence by using the selector function whenever all of the observable sequences have produced an element at a corresponding index. * @param arguments Observable sources. * @param {Function} resultSelector Function to invoke for each series of elements at corresponding indexes in the sources. * @returns {Observable} An observable sequence containing the result of combining elements of the sources using the specified result selector function. */ Observable.zip = function () { var args = slice.call(arguments, 0), first = args.shift(); return first.zip.apply(first, args); }; /** * Merges the specified observable sequences into one observable sequence by emitting a list with the elements of the observable sequences at corresponding indexes. * @param arguments Observable sources. * @returns {Observable} An observable sequence containing lists of elements at corresponding indexes. */ Observable.zipArray = function () { var sources = argsOrArray(arguments, 0); return new AnonymousObservable(function (observer) { var n = sources.length, queues = arrayInitialize(n, function () { return []; }), isDone = arrayInitialize(n, function () { return false; }); function next(i) { if (queues.every(function (x) { return x.length > 0; })) { var res = queues.map(function (x) { return x.shift(); }); observer.onNext(res); } else if (isDone.filter(function (x, j) { return j !== i; }).every(identity)) { observer.onCompleted(); return; } }; function done(i) { isDone[i] = true; if (isDone.every(identity)) { observer.onCompleted(); return; } } var subscriptions = new Array(n); for (var idx = 0; idx < n; idx++) { (function (i) { subscriptions[i] = new SingleAssignmentDisposable(); subscriptions[i].setDisposable(sources[i].subscribe(function (x) { queues[i].push(x); next(i); }, observer.onError.bind(observer), function () { done(i); })); })(idx); } var compositeDisposable = new CompositeDisposable(subscriptions); compositeDisposable.add(disposableCreate(function () { for (var qIdx = 0, qLen = queues.length; qIdx < qLen; qIdx++) { queues[qIdx] = []; } })); return compositeDisposable; }); }; /** * Hides the identity of an observable sequence. * @returns {Observable} An observable sequence that hides the identity of the source sequence. */ observableProto.asObservable = function () { return new AnonymousObservable(this.subscribe.bind(this), this); }; /** * Dematerializes the explicit notification values of an observable sequence as implicit notifications. * @returns {Observable} An observable sequence exhibiting the behavior corresponding to the source sequence's notification values. */ observableProto.dematerialize = function () { var source = this; return new AnonymousObservable(function (observer) { return source.subscribe(function (x) { return x.accept(observer); }, observer.onError.bind(observer), observer.onCompleted.bind(observer)); }, this); }; /** * Returns an observable sequence that contains only distinct contiguous elements according to the keySelector and the comparer. * * var obs = observable.distinctUntilChanged(); * var obs = observable.distinctUntilChanged(function (x) { return x.id; }); * var obs = observable.distinctUntilChanged(function (x) { return x.id; }, function (x, y) { return x === y; }); * * @param {Function} [keySelector] A function to compute the comparison key for each element. If not provided, it projects the value. * @param {Function} [comparer] Equality comparer for computed key values. If not provided, defaults to an equality comparer function. * @returns {Observable} An observable sequence only containing the distinct contiguous elements, based on a computed key value, from the source sequence. */ observableProto.distinctUntilChanged = function (keySelector, comparer) { var source = this; keySelector || (keySelector = identity); comparer || (comparer = defaultComparer); return new AnonymousObservable(function (observer) { var hasCurrentKey = false, currentKey; return source.subscribe(function (value) { var comparerEquals = false, key; try { key = keySelector(value); } catch (e) { observer.onError(e); return; } if (hasCurrentKey) { try { comparerEquals = comparer(currentKey, key); } catch (e) { observer.onError(e); return; } } if (!hasCurrentKey || !comparerEquals) { hasCurrentKey = true; currentKey = key; observer.onNext(value); } }, observer.onError.bind(observer), observer.onCompleted.bind(observer)); }, this); }; /** * Invokes an action for each element in the observable sequence and invokes an action upon graceful or exceptional termination of the observable sequence. * This method can be used for debugging, logging, etc. of query behavior by intercepting the message stream to run arbitrary actions for messages on the pipeline. * @param {Function | Observer} observerOrOnNext Action to invoke for each element in the observable sequence or an observer. * @param {Function} [onError] Action to invoke upon exceptional termination of the observable sequence. Used if only the observerOrOnNext parameter is also a function. * @param {Function} [onCompleted] Action to invoke upon graceful termination of the observable sequence. Used if only the observerOrOnNext parameter is also a function. * @returns {Observable} The source sequence with the side-effecting behavior applied. */ observableProto['do'] = observableProto.tap = function (observerOrOnNext, onError, onCompleted) { var source = this, onNextFunc; if (typeof observerOrOnNext === 'function') { onNextFunc = observerOrOnNext; } else { onNextFunc = observerOrOnNext.onNext.bind(observerOrOnNext); onError = observerOrOnNext.onError.bind(observerOrOnNext); onCompleted = observerOrOnNext.onCompleted.bind(observerOrOnNext); } return new AnonymousObservable(function (observer) { return source.subscribe(function (x) { try { onNextFunc(x); } catch (e) { observer.onError(e); } observer.onNext(x); }, function (err) { if (onError) { try { onError(err); } catch (e) { observer.onError(e); } } observer.onError(err); }, function () { if (onCompleted) { try { onCompleted(); } catch (e) { observer.onError(e); } } observer.onCompleted(); }); }, this); }; /** @deprecated use #do or #tap instead. */ observableProto.doAction = function () { deprecate('doAction', 'do or tap'); return this.tap.apply(this, arguments); }; /** * Invokes an action for each element in the observable sequence. * This method can be used for debugging, logging, etc. of query behavior by intercepting the message stream to run arbitrary actions for messages on the pipeline. * @param {Function} onNext Action to invoke for each element in the observable sequence. * @param {Any} [thisArg] Object to use as this when executing callback. * @returns {Observable} The source sequence with the side-effecting behavior applied. */ observableProto.doOnNext = observableProto.tapOnNext = function (onNext, thisArg) { return this.tap(arguments.length === 2 ? function (x) { onNext.call(thisArg, x); } : onNext); }; /** * Invokes an action upon exceptional termination of the observable sequence. * This method can be used for debugging, logging, etc. of query behavior by intercepting the message stream to run arbitrary actions for messages on the pipeline. * @param {Function} onError Action to invoke upon exceptional termination of the observable sequence. * @param {Any} [thisArg] Object to use as this when executing callback. * @returns {Observable} The source sequence with the side-effecting behavior applied. */ observableProto.doOnError = observableProto.tapOnError = function (onError, thisArg) { return this.tap(noop, arguments.length === 2 ? function (e) { onError.call(thisArg, e); } : onError); }; /** * Invokes an action upon graceful termination of the observable sequence. * This method can be used for debugging, logging, etc. of query behavior by intercepting the message stream to run arbitrary actions for messages on the pipeline. * @param {Function} onCompleted Action to invoke upon graceful termination of the observable sequence. * @param {Any} [thisArg] Object to use as this when executing callback. * @returns {Observable} The source sequence with the side-effecting behavior applied. */ observableProto.doOnCompleted = observableProto.tapOnCompleted = function (onCompleted, thisArg) { return this.tap(noop, null, arguments.length === 2 ? function () { onCompleted.call(thisArg); } : onCompleted); }; /** * Invokes a specified action after the source observable sequence terminates gracefully or exceptionally. * @param {Function} finallyAction Action to invoke after the source observable sequence terminates. * @returns {Observable} Source sequence with the action-invoking termination behavior applied. */ observableProto['finally'] = observableProto.ensure = function (action) { var source = this; return new AnonymousObservable(function (observer) { var subscription; try { subscription = source.subscribe(observer); } catch (e) { action(); throw e; } return disposableCreate(function () { try { subscription.dispose(); } catch (e) { throw e; } finally { action(); } }); }, this); }; /** * @deprecated use #finally or #ensure instead. */ observableProto.finallyAction = function (action) { deprecate('finallyAction', 'finally or ensure'); return this.ensure(action); }; /** * Ignores all elements in an observable sequence leaving only the termination messages. * @returns {Observable} An empty observable sequence that signals termination, successful or exceptional, of the source sequence. */ observableProto.ignoreElements = function () { var source = this; return new AnonymousObservable(function (observer) { return source.subscribe(noop, observer.onError.bind(observer), observer.onCompleted.bind(observer)); }, source); }; /** * Materializes the implicit notifications of an observable sequence as explicit notification values. * @returns {Observable} An observable sequence containing the materialized notification values from the source sequence. */ observableProto.materialize = function () { var source = this; return new AnonymousObservable(function (observer) { return source.subscribe(function (value) { observer.onNext(notificationCreateOnNext(value)); }, function (e) { observer.onNext(notificationCreateOnError(e)); observer.onCompleted(); }, function () { observer.onNext(notificationCreateOnCompleted()); observer.onCompleted(); }); }, source); }; /** * Repeats the observable sequence a specified number of times. If the repeat count is not specified, the sequence repeats indefinitely. * @param {Number} [repeatCount] Number of times to repeat the sequence. If not provided, repeats the sequence indefinitely. * @returns {Observable} The observable sequence producing the elements of the given sequence repeatedly. */ observableProto.repeat = function (repeatCount) { return enumerableRepeat(this, repeatCount).concat(); }; /** * Repeats the source observable sequence the specified number of times or until it successfully terminates. If the retry count is not specified, it retries indefinitely. * Note if you encounter an error and want it to retry once, then you must use .retry(2); * * @example * var res = retried = retry.repeat(); * var res = retried = retry.repeat(2); * @param {Number} [retryCount] Number of times to retry the sequence. If not provided, retry the sequence indefinitely. * @returns {Observable} An observable sequence producing the elements of the given sequence repeatedly until it terminates successfully. */ observableProto.retry = function (retryCount) { return enumerableRepeat(this, retryCount).catchError(); }; /** * Applies an accumulator function over an observable sequence and returns each intermediate result. The optional seed value is used as the initial accumulator value. * For aggregation behavior with no intermediate results, see Observable.aggregate. * @example * var res = source.scan(function (acc, x) { return acc + x; }); * var res = source.scan(0, function (acc, x) { return acc + x; }); * @param {Mixed} [seed] The initial accumulator value. * @param {Function} accumulator An accumulator function to be invoked on each element. * @returns {Observable} An observable sequence containing the accumulated values. */ observableProto.scan = function () { var hasSeed = false, seed, accumulator, source = this; if (arguments.length === 2) { hasSeed = true; seed = arguments[0]; accumulator = arguments[1]; } else { accumulator = arguments[0]; } return new AnonymousObservable(function (observer) { var hasAccumulation, accumulation, hasValue; return source.subscribe ( function (x) { !hasValue && (hasValue = true); try { if (hasAccumulation) { accumulation = accumulator(accumulation, x); } else { accumulation = hasSeed ? accumulator(seed, x) : x; hasAccumulation = true; } } catch (e) { observer.onError(e); return; } observer.onNext(accumulation); }, observer.onError.bind(observer), function () { !hasValue && hasSeed && observer.onNext(seed); observer.onCompleted(); } ); }, source); }; /** * Bypasses a specified number of elements at the end of an observable sequence. * @description * This operator accumulates a queue with a length enough to store the first `count` elements. As more elements are * received, elements are taken from the front of the queue and produced on the result sequence. This causes elements to be delayed. * @param count Number of elements to bypass at the end of the source sequence. * @returns {Observable} An observable sequence containing the source sequence elements except for the bypassed ones at the end. */ observableProto.skipLast = function (count) { var source = this; return new AnonymousObservable(function (observer) { var q = []; return source.subscribe(function (x) { q.push(x); q.length > count && observer.onNext(q.shift()); }, observer.onError.bind(observer), observer.onCompleted.bind(observer)); }, source); }; /** * Prepends a sequence of values to an observable sequence with an optional scheduler and an argument list of values to prepend. * @example * var res = source.startWith(1, 2, 3); * var res = source.startWith(Rx.Scheduler.timeout, 1, 2, 3); * @param {Arguments} args The specified values to prepend to the observable sequence * @returns {Observable} The source sequence prepended with the specified values. */ observableProto.startWith = function () { var values, scheduler, start = 0; if (!!arguments.length && isScheduler(arguments[0])) { scheduler = arguments[0]; start = 1; } else { scheduler = immediateScheduler; } values = slice.call(arguments, start); return enumerableOf([observableFromArray(values, scheduler), this]).concat(); }; /** * Returns a specified number of contiguous elements from the end of an observable sequence. * @description * This operator accumulates a buffer with a length enough to store elements count elements. Upon completion of * the source sequence, this buffer is drained on the result sequence. This causes the elements to be delayed. * @param {Number} count Number of elements to take from the end of the source sequence. * @returns {Observable} An observable sequence containing the specified number of elements from the end of the source sequence. */ observableProto.takeLast = function (count) { var source = this; return new AnonymousObservable(function (observer) { var q = []; return source.subscribe(function (x) { q.push(x); q.length > count && q.shift(); }, observer.onError.bind(observer), function () { while (q.length > 0) { observer.onNext(q.shift()); } observer.onCompleted(); }); }, source); }; function concatMap(source, selector, thisArg) { return source.map(function (x, i) { var result = selector.call(thisArg, x, i, source); isPromise(result) && (result = observableFromPromise(result)); (isArrayLike(result) || isIterable(result)) && (result = observableFrom(result)); return result; }).concatAll(); } /** * One of the Following: * Projects each element of an observable sequence to an observable sequence and merges the resulting observable sequences into one observable sequence. * * @example * var res = source.concatMap(function (x) { return Rx.Observable.range(0, x); }); * Or: * Projects each element of an observable sequence to an observable sequence, invokes the result selector for the source element and each of the corresponding inner sequence's elements, and merges the results into one observable sequence. * * var res = source.concatMap(function (x) { return Rx.Observable.range(0, x); }, function (x, y) { return x + y; }); * Or: * Projects each element of the source observable sequence to the other observable sequence and merges the resulting observable sequences into one observable sequence. * * var res = source.concatMap(Rx.Observable.fromArray([1,2,3])); * @param {Function} selector A transform function to apply to each element or an observable sequence to project each element from the * source sequence onto which could be either an observable or Promise. * @param {Function} [resultSelector] A transform function to apply to each element of the intermediate sequence. * @returns {Observable} An observable sequence whose elements are the result of invoking the one-to-many transform function collectionSelector on each element of the input sequence and then mapping each of those sequence elements and their corresponding source element to a result element. */ observableProto.selectConcat = observableProto.concatMap = function (selector, resultSelector, thisArg) { if (isFunction(selector) && isFunction(resultSelector)) { return this.concatMap(function (x, i) { var selectorResult = selector(x, i); isPromise(selectorResult) && (selectorResult = observableFromPromise(selectorResult)); (isArrayLike(selectorResult) || isIterable(selectorResult)) && (selectorResult = observableFrom(selectorResult)); return selectorResult.map(function (y, i2) { return resultSelector(x, y, i, i2); }); }); } return isFunction(selector) ? concatMap(this, selector, thisArg) : concatMap(this, function () { return selector; }); }; /** * Projects each element of an observable sequence into a new form by incorporating the element's index. * @param {Function} selector A transform function to apply to each source element; the second parameter of the function represents the index of the source element. * @param {Any} [thisArg] Object to use as this when executing callback. * @returns {Observable} An observable sequence whose elements are the result of invoking the transform function on each element of source. */ observableProto.select = observableProto.map = function (selector, thisArg) { var selectorFn = isFunction(selector) ? selector : function () { return selector; }, source = this; return new AnonymousObservable(function (observer) { var count = 0; return source.subscribe(function (value) { var result; try { result = selectorFn.call(thisArg, value, count++, source); } catch (e) { observer.onError(e); return; } observer.onNext(result); }, observer.onError.bind(observer), observer.onCompleted.bind(observer)); }, source); }; /** * Retrieves the value of a specified property from all elements in the Observable sequence. * @param {String} prop The property to pluck. * @returns {Observable} Returns a new Observable sequence of property values. */ observableProto.pluck = function (prop) { return this.map(function (x) { return x[prop]; }); }; function flatMap(source, selector, thisArg) { return source.map(function (x, i) { var result = selector.call(thisArg, x, i, source); isPromise(result) && (result = observableFromPromise(result)); (isArrayLike(result) || isIterable(result)) && (result = observableFrom(result)); return result; }).mergeAll(); } /** * One of the Following: * Projects each element of an observable sequence to an observable sequence and merges the resulting observable sequences into one observable sequence. * * @example * var res = source.selectMany(function (x) { return Rx.Observable.range(0, x); }); * Or: * Projects each element of an observable sequence to an observable sequence, invokes the result selector for the source element and each of the corresponding inner sequence's elements, and merges the results into one observable sequence. * * var res = source.selectMany(function (x) { return Rx.Observable.range(0, x); }, function (x, y) { return x + y; }); * Or: * Projects each element of the source observable sequence to the other observable sequence and merges the resulting observable sequences into one observable sequence. * * var res = source.selectMany(Rx.Observable.fromArray([1,2,3])); * @param {Function} selector A transform function to apply to each element or an observable sequence to project each element from the source sequence onto which could be either an observable or Promise. * @param {Function} [resultSelector] A transform function to apply to each element of the intermediate sequence. * @param {Any} [thisArg] Object to use as this when executing callback. * @returns {Observable} An observable sequence whose elements are the result of invoking the one-to-many transform function collectionSelector on each element of the input sequence and then mapping each of those sequence elements and their corresponding source element to a result element. */ observableProto.selectMany = observableProto.flatMap = function (selector, resultSelector, thisArg) { if (isFunction(selector) && isFunction(resultSelector)) { return this.flatMap(function (x, i) { var selectorResult = selector(x, i); isPromise(selectorResult) && (selectorResult = observableFromPromise(selectorResult)); (isArrayLike(selectorResult) || isIterable(selectorResult)) && (selectorResult = observableFrom(selectorResult)); return selectorResult.map(function (y, i2) { return resultSelector(x, y, i, i2); }); }, thisArg); } return isFunction(selector) ? flatMap(this, selector, thisArg) : flatMap(this, function () { return selector; }); }; /** * Projects each element of an observable sequence into a new sequence of observable sequences by incorporating the element's index and then * transforms an observable sequence of observable sequences into an observable sequence producing values only from the most recent observable sequence. * @param {Function} selector A transform function to apply to each source element; the second parameter of the function represents the index of the source element. * @param {Any} [thisArg] Object to use as this when executing callback. * @returns {Observable} An observable sequence whose elements are the result of invoking the transform function on each element of source producing an Observable of Observable sequences * and that at any point in time produces the elements of the most recent inner observable sequence that has been received. */ observableProto.selectSwitch = observableProto.flatMapLatest = observableProto.switchMap = function (selector, thisArg) { return this.select(selector, thisArg).switchLatest(); }; /** * Bypasses a specified number of elements in an observable sequence and then returns the remaining elements. * @param {Number} count The number of elements to skip before returning the remaining elements. * @returns {Observable} An observable sequence that contains the elements that occur after the specified index in the input sequence. */ observableProto.skip = function (count) { if (count < 0) { throw new Error(argumentOutOfRange); } var source = this; return new AnonymousObservable(function (observer) { var remaining = count; return source.subscribe(function (x) { if (remaining <= 0) { observer.onNext(x); } else { remaining--; } }, observer.onError.bind(observer), observer.onCompleted.bind(observer)); }, source); }; /** * Bypasses elements in an observable sequence as long as a specified condition is true and then returns the remaining elements. * The element's index is used in the logic of the predicate function. * * var res = source.skipWhile(function (value) { return value < 10; }); * var res = source.skipWhile(function (value, index) { return value < 10 || index < 10; }); * @param {Function} predicate A function to test each element for a condition; the second parameter of the function represents the index of the source element. * @param {Any} [thisArg] Object to use as this when executing callback. * @returns {Observable} An observable sequence that contains the elements from the input sequence starting at the first element in the linear series that does not pass the test specified by predicate. */ observableProto.skipWhile = function (predicate, thisArg) { var source = this; return new AnonymousObservable(function (observer) { var i = 0, running = false; return source.subscribe(function (x) { if (!running) { try { running = !predicate.call(thisArg, x, i++, source); } catch (e) { observer.onError(e); return; } } running && observer.onNext(x); }, observer.onError.bind(observer), observer.onCompleted.bind(observer)); }, source); }; /** * Returns a specified number of contiguous elements from the start of an observable sequence, using the specified scheduler for the edge case of take(0). * * var res = source.take(5); * var res = source.take(0, Rx.Scheduler.timeout); * @param {Number} count The number of elements to return. * @param {Scheduler} [scheduler] Scheduler used to produce an OnCompleted message in case <paramref name="count count</paramref> is set to 0. * @returns {Observable} An observable sequence that contains the specified number of elements from the start of the input sequence. */ observableProto.take = function (count, scheduler) { if (count < 0) { throw new RangeError(argumentOutOfRange); } if (count === 0) { return observableEmpty(scheduler); } var source = this; return new AnonymousObservable(function (observer) { var remaining = count; return source.subscribe(function (x) { if (remaining-- > 0) { observer.onNext(x); remaining === 0 && observer.onCompleted(); } }, observer.onError.bind(observer), observer.onCompleted.bind(observer)); }, source); }; /** * Returns elements from an observable sequence as long as a specified condition is true. * The element's index is used in the logic of the predicate function. * @param {Function} predicate A function to test each element for a condition; the second parameter of the function represents the index of the source element. * @param {Any} [thisArg] Object to use as this when executing callback. * @returns {Observable} An observable sequence that contains the elements from the input sequence that occur before the element at which the test no longer passes. */ observableProto.takeWhile = function (predicate, thisArg) { var source = this; return new AnonymousObservable(function (observer) { var i = 0, running = true; return source.subscribe(function (x) { if (running) { try { running = predicate.call(thisArg, x, i++, source); } catch (e) { observer.onError(e); return; } if (running) { observer.onNext(x); } else { observer.onCompleted(); } } }, observer.onError.bind(observer), observer.onCompleted.bind(observer)); }, source); }; /** * Filters the elements of an observable sequence based on a predicate by incorporating the element's index. * * @example * var res = source.where(function (value) { return value < 10; }); * var res = source.where(function (value, index) { return value < 10 || index < 10; }); * @param {Function} predicate A function to test each source element for a condition; the second parameter of the function represents the index of the source element. * @param {Any} [thisArg] Object to use as this when executing callback. * @returns {Observable} An observable sequence that contains elements from the input sequence that satisfy the condition. */ observableProto.where = observableProto.filter = function (predicate, thisArg) { var source = this; return new AnonymousObservable(function (observer) { var count = 0; return source.subscribe(function (value) { var shouldRun; try { shouldRun = predicate.call(thisArg, value, count++, parent); } catch (e) { observer.onError(e); return; } shouldRun && observer.onNext(value); }, observer.onError.bind(observer), observer.onCompleted.bind(observer)); }, source); }; /** * Converts a callback function to an observable sequence. * * @param {Function} function Function with a callback as the last parameter to convert to an Observable sequence. * @param {Mixed} [context] The context for the func parameter to be executed. If not specified, defaults to undefined. * @param {Function} [selector] A selector which takes the arguments from the callback to produce a single item to yield on next. * @returns {Function} A function, when executed with the required parameters minus the callback, produces an Observable sequence with a single value of the arguments to the callback as an array. */ Observable.fromCallback = function (func, context, selector) { return function () { var args = slice.call(arguments, 0); return new AnonymousObservable(function (observer) { function handler() { var results = arguments; if (selector) { try { results = selector(results); } catch (err) { observer.onError(err); return; } observer.onNext(results); } else { if (results.length <= 1) { observer.onNext.apply(observer, results); } else { observer.onNext(results); } } observer.onCompleted(); } args.push(handler); func.apply(context, args); }).publishLast().refCount(); }; }; /** * Converts a Node.js callback style function to an observable sequence. This must be in function (err, ...) format. * @param {Function} func The function to call * @param {Mixed} [context] The context for the func parameter to be executed. If not specified, defaults to undefined. * @param {Function} [selector] A selector which takes the arguments from the callback minus the error to produce a single item to yield on next. * @returns {Function} An async function which when applied, returns an observable sequence with the callback arguments as an array. */ Observable.fromNodeCallback = function (func, context, selector) { return function () { var args = slice.call(arguments, 0); return new AnonymousObservable(function (observer) { function handler(err) { if (err) { observer.onError(err); return; } var results = slice.call(arguments, 1); if (selector) { try { results = selector(results); } catch (e) { observer.onError(e); return; } observer.onNext(results); } else { if (results.length <= 1) { observer.onNext.apply(observer, results); } else { observer.onNext(results); } } observer.onCompleted(); } args.push(handler); func.apply(context, args); }).publishLast().refCount(); }; }; function createListener (element, name, handler) { if (element.addEventListener) { element.addEventListener(name, handler, false); return disposableCreate(function () { element.removeEventListener(name, handler, false); }); } throw new Error('No listener found'); } function createEventListener (el, eventName, handler) { var disposables = new CompositeDisposable(); // Asume NodeList if (Object.prototype.toString.call(el) === '[object NodeList]') { for (var i = 0, len = el.length; i < len; i++) { disposables.add(createEventListener(el.item(i), eventName, handler)); } } else if (el) { disposables.add(createListener(el, eventName, handler)); } return disposables; } /** * Configuration option to determine whether to use native events only */ Rx.config.useNativeEvents = false; // Check for Angular/jQuery/Zepto support var jq = !!root.angular && !!angular.element ? angular.element : (!!root.jQuery ? root.jQuery : ( !!root.Zepto ? root.Zepto : null)); // Check for ember var ember = !!root.Ember && typeof root.Ember.addListener === 'function'; // Check for Backbone.Marionette. Note if using AMD add Marionette as a dependency of rxjs // for proper loading order! var marionette = !!root.Backbone && !!root.Backbone.Marionette; /** * Creates an observable sequence by adding an event listener to the matching DOMElement or each item in the NodeList. * * @example * var source = Rx.Observable.fromEvent(element, 'mouseup'); * * @param {Object} element The DOMElement or NodeList to attach a listener. * @param {String} eventName The event name to attach the observable sequence. * @param {Function} [selector] A selector which takes the arguments from the event handler to produce a single item to yield on next. * @returns {Observable} An observable sequence of events from the specified element and the specified event. */ Observable.fromEvent = function (element, eventName, selector) { // Node.js specific if (element.addListener) { return fromEventPattern( function (h) { element.addListener(eventName, h); }, function (h) { element.removeListener(eventName, h); }, selector); } // Use only if non-native events are allowed if (!Rx.config.useNativeEvents) { if (marionette) { return fromEventPattern( function (h) { element.on(eventName, h); }, function (h) { element.off(eventName, h); }, selector); } if (ember) { return fromEventPattern( function (h) { Ember.addListener(element, eventName, h); }, function (h) { Ember.removeListener(element, eventName, h); }, selector); } if (jq) { var $elem = jq(element); return fromEventPattern( function (h) { $elem.on(eventName, h); }, function (h) { $elem.off(eventName, h); }, selector); } } return new AnonymousObservable(function (observer) { return createEventListener( element, eventName, function handler (e) { var results = e; if (selector) { try { results = selector(arguments); } catch (err) { observer.onError(err); return } } observer.onNext(results); }); }).publish().refCount(); }; /** * Creates an observable sequence from an event emitter via an addHandler/removeHandler pair. * @param {Function} addHandler The function to add a handler to the emitter. * @param {Function} [removeHandler] The optional function to remove a handler from an emitter. * @param {Function} [selector] A selector which takes the arguments from the event handler to produce a single item to yield on next. * @returns {Observable} An observable sequence which wraps an event from an event emitter */ var fromEventPattern = Observable.fromEventPattern = function (addHandler, removeHandler, selector) { return new AnonymousObservable(function (observer) { function innerHandler (e) { var result = e; if (selector) { try { result = selector(arguments); } catch (err) { observer.onError(err); return; } } observer.onNext(result); } var returnValue = addHandler(innerHandler); return disposableCreate(function () { if (removeHandler) { removeHandler(innerHandler, returnValue); } }); }).publish().refCount(); }; /** * Converts a Promise to an Observable sequence * @param {Promise} An ES6 Compliant promise. * @returns {Observable} An Observable sequence which wraps the existing promise success and failure. */ var observableFromPromise = Observable.fromPromise = function (promise) { return observableDefer(function () { var subject = new Rx.AsyncSubject(); promise.then( function (value) { subject.onNext(value); subject.onCompleted(); }, subject.onError.bind(subject)); return subject; }); }; /* * Converts an existing observable sequence to an ES6 Compatible Promise * @example * var promise = Rx.Observable.return(42).toPromise(RSVP.Promise); * * // With config * Rx.config.Promise = RSVP.Promise; * var promise = Rx.Observable.return(42).toPromise(); * @param {Function} [promiseCtor] The constructor of the promise. If not provided, it looks for it in Rx.config.Promise. * @returns {Promise} An ES6 compatible promise with the last value from the observable sequence. */ observableProto.toPromise = function (promiseCtor) { promiseCtor || (promiseCtor = Rx.config.Promise); if (!promiseCtor) { throw new TypeError('Promise type not provided nor in Rx.config.Promise'); } var source = this; return new promiseCtor(function (resolve, reject) { // No cancellation can be done var value, hasValue = false; source.subscribe(function (v) { value = v; hasValue = true; }, reject, function () { hasValue && resolve(value); }); }); }; /** * Invokes the asynchronous function, surfacing the result through an observable sequence. * @param {Function} functionAsync Asynchronous function which returns a Promise to run. * @returns {Observable} An observable sequence exposing the function's result value, or an exception. */ Observable.startAsync = function (functionAsync) { var promise; try { promise = functionAsync(); } catch (e) { return observableThrow(e); } return observableFromPromise(promise); } /** * Multicasts the source sequence notifications through an instantiated subject into all uses of the sequence within a selector function. Each * subscription to the resulting sequence causes a separate multicast invocation, exposing the sequence resulting from the selector function's * invocation. For specializations with fixed subject types, see Publish, PublishLast, and Replay. * * @example * 1 - res = source.multicast(observable); * 2 - res = source.multicast(function () { return new Subject(); }, function (x) { return x; }); * * @param {Function|Subject} subjectOrSubjectSelector * Factory function to create an intermediate subject through which the source sequence's elements will be multicast to the selector function. * Or: * Subject to push source elements into. * * @param {Function} [selector] Optional selector function which can use the multicasted source sequence subject to the policies enforced by the created subject. Specified only if <paramref name="subjectOrSubjectSelector" is a factory function. * @returns {Observable} An observable sequence that contains the elements of a sequence produced by multicasting the source sequence within a selector function. */ observableProto.multicast = function (subjectOrSubjectSelector, selector) { var source = this; return typeof subjectOrSubjectSelector === 'function' ? new AnonymousObservable(function (observer) { var connectable = source.multicast(subjectOrSubjectSelector()); return new CompositeDisposable(selector(connectable).subscribe(observer), connectable.connect()); }, source) : new ConnectableObservable(source, subjectOrSubjectSelector); }; /** * Returns an observable sequence that is the result of invoking the selector on a connectable observable sequence that shares a single subscription to the underlying sequence. * This operator is a specialization of Multicast using a regular Subject. * * @example * var resres = source.publish(); * var res = source.publish(function (x) { return x; }); * * @param {Function} [selector] Selector function which can use the multicasted source sequence as many times as needed, without causing multiple subscriptions to the source sequence. Subscribers to the given source will receive all notifications of the source from the time of the subscription on. * @returns {Observable} An observable sequence that contains the elements of a sequence produced by multicasting the source sequence within a selector function. */ observableProto.publish = function (selector) { return selector && isFunction(selector) ? this.multicast(function () { return new Subject(); }, selector) : this.multicast(new Subject()); }; /** * Returns an observable sequence that shares a single subscription to the underlying sequence. * This operator is a specialization of publish which creates a subscription when the number of observers goes from zero to one, then shares that subscription with all subsequent observers until the number of observers returns to zero, at which point the subscription is disposed. * @returns {Observable} An observable sequence that contains the elements of a sequence produced by multicasting the source sequence. */ observableProto.share = function () { return this.publish().refCount(); }; /** * Returns an observable sequence that is the result of invoking the selector on a connectable observable sequence that shares a single subscription to the underlying sequence containing only the last notification. * This operator is a specialization of Multicast using a AsyncSubject. * * @example * var res = source.publishLast(); * var res = source.publishLast(function (x) { return x; }); * * @param selector [Optional] Selector function which can use the multicasted source sequence as many times as needed, without causing multiple subscriptions to the source sequence. Subscribers to the given source will only receive the last notification of the source. * @returns {Observable} An observable sequence that contains the elements of a sequence produced by multicasting the source sequence within a selector function. */ observableProto.publishLast = function (selector) { return selector && isFunction(selector) ? this.multicast(function () { return new AsyncSubject(); }, selector) : this.multicast(new AsyncSubject()); }; /** * Returns an observable sequence that is the result of invoking the selector on a connectable observable sequence that shares a single subscription to the underlying sequence and starts with initialValue. * This operator is a specialization of Multicast using a BehaviorSubject. * * @example * var res = source.publishValue(42); * var res = source.publishValue(function (x) { return x.select(function (y) { return y * y; }) }, 42); * * @param {Function} [selector] Optional selector function which can use the multicasted source sequence as many times as needed, without causing multiple subscriptions to the source sequence. Subscribers to the given source will receive immediately receive the initial value, followed by all notifications of the source from the time of the subscription on. * @param {Mixed} initialValue Initial value received by observers upon subscription. * @returns {Observable} An observable sequence that contains the elements of a sequence produced by multicasting the source sequence within a selector function. */ observableProto.publishValue = function (initialValueOrSelector, initialValue) { return arguments.length === 2 ? this.multicast(function () { return new BehaviorSubject(initialValue); }, initialValueOrSelector) : this.multicast(new BehaviorSubject(initialValueOrSelector)); }; /** * Returns an observable sequence that shares a single subscription to the underlying sequence and starts with an initialValue. * This operator is a specialization of publishValue which creates a subscription when the number of observers goes from zero to one, then shares that subscription with all subsequent observers until the number of observers returns to zero, at which point the subscription is disposed. * @param {Mixed} initialValue Initial value received by observers upon subscription. * @returns {Observable} An observable sequence that contains the elements of a sequence produced by multicasting the source sequence. */ observableProto.shareValue = function (initialValue) { return this.publishValue(initialValue).refCount(); }; /** * Returns an observable sequence that is the result of invoking the selector on a connectable observable sequence that shares a single subscription to the underlying sequence replaying notifications subject to a maximum time length for the replay buffer. * This operator is a specialization of Multicast using a ReplaySubject. * * @example * var res = source.replay(null, 3); * var res = source.replay(null, 3, 500); * var res = source.replay(null, 3, 500, scheduler); * var res = source.replay(function (x) { return x.take(6).repeat(); }, 3, 500, scheduler); * * @param selector [Optional] Selector function which can use the multicasted source sequence as many times as needed, without causing multiple subscriptions to the source sequence. Subscribers to the given source will receive all the notifications of the source subject to the specified replay buffer trimming policy. * @param bufferSize [Optional] Maximum element count of the replay buffer. * @param window [Optional] Maximum time length of the replay buffer. * @param scheduler [Optional] Scheduler where connected observers within the selector function will be invoked on. * @returns {Observable} An observable sequence that contains the elements of a sequence produced by multicasting the source sequence within a selector function. */ observableProto.replay = function (selector, bufferSize, window, scheduler) { return selector && isFunction(selector) ? this.multicast(function () { return new ReplaySubject(bufferSize, window, scheduler); }, selector) : this.multicast(new ReplaySubject(bufferSize, window, scheduler)); }; /** * Returns an observable sequence that shares a single subscription to the underlying sequence replaying notifications subject to a maximum time length for the replay buffer. * This operator is a specialization of replay which creates a subscription when the number of observers goes from zero to one, then shares that subscription with all subsequent observers until the number of observers returns to zero, at which point the subscription is disposed. * * @example * var res = source.shareReplay(3); * var res = source.shareReplay(3, 500); * var res = source.shareReplay(3, 500, scheduler); * * @param bufferSize [Optional] Maximum element count of the replay buffer. * @param window [Optional] Maximum time length of the replay buffer. * @param scheduler [Optional] Scheduler where connected observers within the selector function will be invoked on. * @returns {Observable} An observable sequence that contains the elements of a sequence produced by multicasting the source sequence. */ observableProto.shareReplay = function (bufferSize, window, scheduler) { return this.replay(null, bufferSize, window, scheduler).refCount(); }; var ConnectableObservable = Rx.ConnectableObservable = (function (__super__) { inherits(ConnectableObservable, __super__); function ConnectableObservable(source, subject) { var hasSubscription = false, subscription, sourceObservable = source.asObservable(); this.connect = function () { if (!hasSubscription) { hasSubscription = true; subscription = new CompositeDisposable(sourceObservable.subscribe(subject), disposableCreate(function () { hasSubscription = false; })); } return subscription; }; __super__.call(this, subject.subscribe.bind(subject)); } ConnectableObservable.prototype.refCount = function () { var connectableSubscription, count = 0, source = this; return new AnonymousObservable(function (observer) { var shouldConnect = ++count === 1, subscription = source.subscribe(observer); shouldConnect && (connectableSubscription = source.connect()); return function () { subscription.dispose(); --count === 0 && connectableSubscription.dispose(); }; }); }; return ConnectableObservable; }(Observable)); function observableTimerDate(dueTime, scheduler) { return new AnonymousObservable(function (observer) { return scheduler.scheduleWithAbsolute(dueTime, function () { observer.onNext(0); observer.onCompleted(); }); }); } function observableTimerDateAndPeriod(dueTime, period, scheduler) { return new AnonymousObservable(function (observer) { var count = 0, d = dueTime, p = normalizeTime(period); return scheduler.scheduleRecursiveWithAbsolute(d, function (self) { if (p > 0) { var now = scheduler.now(); d = d + p; d <= now && (d = now + p); } observer.onNext(count++); self(d); }); }); } function observableTimerTimeSpan(dueTime, scheduler) { return new AnonymousObservable(function (observer) { return scheduler.scheduleWithRelative(normalizeTime(dueTime), function () { observer.onNext(0); observer.onCompleted(); }); }); } function observableTimerTimeSpanAndPeriod(dueTime, period, scheduler) { return dueTime === period ? new AnonymousObservable(function (observer) { return scheduler.schedulePeriodicWithState(0, period, function (count) { observer.onNext(count); return count + 1; }); }) : observableDefer(function () { return observableTimerDateAndPeriod(scheduler.now() + dueTime, period, scheduler); }); } /** * Returns an observable sequence that produces a value after each period. * * @example * 1 - res = Rx.Observable.interval(1000); * 2 - res = Rx.Observable.interval(1000, Rx.Scheduler.timeout); * * @param {Number} period Period for producing the values in the resulting sequence (specified as an integer denoting milliseconds). * @param {Scheduler} [scheduler] Scheduler to run the timer on. If not specified, Rx.Scheduler.timeout is used. * @returns {Observable} An observable sequence that produces a value after each period. */ var observableinterval = Observable.interval = function (period, scheduler) { return observableTimerTimeSpanAndPeriod(period, period, isScheduler(scheduler) ? scheduler : timeoutScheduler); }; /** * Returns an observable sequence that produces a value after dueTime has elapsed and then after each period. * @param {Number} dueTime Absolute (specified as a Date object) or relative time (specified as an integer denoting milliseconds) at which to produce the first value. * @param {Mixed} [periodOrScheduler] Period to produce subsequent values (specified as an integer denoting milliseconds), or the scheduler to run the timer on. If not specified, the resulting timer is not recurring. * @param {Scheduler} [scheduler] Scheduler to run the timer on. If not specified, the timeout scheduler is used. * @returns {Observable} An observable sequence that produces a value after due time has elapsed and then each period. */ var observableTimer = Observable.timer = function (dueTime, periodOrScheduler, scheduler) { var period; isScheduler(scheduler) || (scheduler = timeoutScheduler); if (periodOrScheduler !== undefined && typeof periodOrScheduler === 'number') { period = periodOrScheduler; } else if (isScheduler(periodOrScheduler)) { scheduler = periodOrScheduler; } if (dueTime instanceof Date && period === undefined) { return observableTimerDate(dueTime.getTime(), scheduler); } if (dueTime instanceof Date && period !== undefined) { period = periodOrScheduler; return observableTimerDateAndPeriod(dueTime.getTime(), period, scheduler); } return period === undefined ? observableTimerTimeSpan(dueTime, scheduler) : observableTimerTimeSpanAndPeriod(dueTime, period, scheduler); }; function observableDelayTimeSpan(source, dueTime, scheduler) { return new AnonymousObservable(function (observer) { var active = false, cancelable = new SerialDisposable(), exception = null, q = [], running = false, subscription; subscription = source.materialize().timestamp(scheduler).subscribe(function (notification) { var d, shouldRun; if (notification.value.kind === 'E') { q = []; q.push(notification); exception = notification.value.exception; shouldRun = !running; } else { q.push({ value: notification.value, timestamp: notification.timestamp + dueTime }); shouldRun = !active; active = true; } if (shouldRun) { if (exception !== null) { observer.onError(exception); } else { d = new SingleAssignmentDisposable(); cancelable.setDisposable(d); d.setDisposable(scheduler.scheduleRecursiveWithRelative(dueTime, function (self) { var e, recurseDueTime, result, shouldRecurse; if (exception !== null) { return; } running = true; do { result = null; if (q.length > 0 && q[0].timestamp - scheduler.now() <= 0) { result = q.shift().value; } if (result !== null) { result.accept(observer); } } while (result !== null); shouldRecurse = false; recurseDueTime = 0; if (q.length > 0) { shouldRecurse = true; recurseDueTime = Math.max(0, q[0].timestamp - scheduler.now()); } else { active = false; } e = exception; running = false; if (e !== null) { observer.onError(e); } else if (shouldRecurse) { self(recurseDueTime); } })); } } }); return new CompositeDisposable(subscription, cancelable); }, source); } function observableDelayDate(source, dueTime, scheduler) { return observableDefer(function () { return observableDelayTimeSpan(source, dueTime - scheduler.now(), scheduler); }); } /** * Time shifts the observable sequence by dueTime. The relative time intervals between the values are preserved. * * @example * 1 - res = Rx.Observable.delay(new Date()); * 2 - res = Rx.Observable.delay(new Date(), Rx.Scheduler.timeout); * * 3 - res = Rx.Observable.delay(5000); * 4 - res = Rx.Observable.delay(5000, 1000, Rx.Scheduler.timeout); * @memberOf Observable# * @param {Number} dueTime Absolute (specified as a Date object) or relative time (specified as an integer denoting milliseconds) by which to shift the observable sequence. * @param {Scheduler} [scheduler] Scheduler to run the delay timers on. If not specified, the timeout scheduler is used. * @returns {Observable} Time-shifted sequence. */ observableProto.delay = function (dueTime, scheduler) { isScheduler(scheduler) || (scheduler = timeoutScheduler); return dueTime instanceof Date ? observableDelayDate(this, dueTime.getTime(), scheduler) : observableDelayTimeSpan(this, dueTime, scheduler); }; /** * Ignores values from an observable sequence which are followed by another value before dueTime. * @param {Number} dueTime Duration of the debounce period for each value (specified as an integer denoting milliseconds). * @param {Scheduler} [scheduler] Scheduler to run the debounce timers on. If not specified, the timeout scheduler is used. * @returns {Observable} The debounced sequence. */ observableProto.debounce = observableProto.throttleWithTimeout = function (dueTime, scheduler) { isScheduler(scheduler) || (scheduler = timeoutScheduler); var source = this; return new AnonymousObservable(function (observer) { var cancelable = new SerialDisposable(), hasvalue = false, value, id = 0; var subscription = source.subscribe( function (x) { hasvalue = true; value = x; id++; var currentId = id, d = new SingleAssignmentDisposable(); cancelable.setDisposable(d); d.setDisposable(scheduler.scheduleWithRelative(dueTime, function () { hasvalue && id === currentId && observer.onNext(value); hasvalue = false; })); }, function (e) { cancelable.dispose(); observer.onError(e); hasvalue = false; id++; }, function () { cancelable.dispose(); hasvalue && observer.onNext(value); observer.onCompleted(); hasvalue = false; id++; }); return new CompositeDisposable(subscription, cancelable); }, this); }; /** * @deprecated use #debounce or #throttleWithTimeout instead. */ observableProto.throttle = function(dueTime, scheduler) { deprecate('throttle', 'debounce or throttleWithTimeout'); return this.debounce(dueTime, scheduler); }; /** * Records the timestamp for each value in an observable sequence. * * @example * 1 - res = source.timestamp(); // produces { value: x, timestamp: ts } * 2 - res = source.timestamp(Rx.Scheduler.timeout); * * @param {Scheduler} [scheduler] Scheduler used to compute timestamps. If not specified, the timeout scheduler is used. * @returns {Observable} An observable sequence with timestamp information on values. */ observableProto.timestamp = function (scheduler) { isScheduler(scheduler) || (scheduler = timeoutScheduler); return this.map(function (x) { return { value: x, timestamp: scheduler.now() }; }); }; function sampleObservable(source, sampler) { return new AnonymousObservable(function (observer) { var atEnd, value, hasValue; function sampleSubscribe() { if (hasValue) { hasValue = false; observer.onNext(value); } atEnd && observer.onCompleted(); } return new CompositeDisposable( source.subscribe(function (newValue) { hasValue = true; value = newValue; }, observer.onError.bind(observer), function () { atEnd = true; }), sampler.subscribe(sampleSubscribe, observer.onError.bind(observer), sampleSubscribe) ); }, source); } /** * Samples the observable sequence at each interval. * * @example * 1 - res = source.sample(sampleObservable); // Sampler tick sequence * 2 - res = source.sample(5000); // 5 seconds * 2 - res = source.sample(5000, Rx.Scheduler.timeout); // 5 seconds * * @param {Mixed} intervalOrSampler Interval at which to sample (specified as an integer denoting milliseconds) or Sampler Observable. * @param {Scheduler} [scheduler] Scheduler to run the sampling timer on. If not specified, the timeout scheduler is used. * @returns {Observable} Sampled observable sequence. */ observableProto.sample = observableProto.throttleLatest = function (intervalOrSampler, scheduler) { isScheduler(scheduler) || (scheduler = timeoutScheduler); return typeof intervalOrSampler === 'number' ? sampleObservable(this, observableinterval(intervalOrSampler, scheduler)) : sampleObservable(this, intervalOrSampler); }; /** * Returns the source observable sequence or the other observable sequence if dueTime elapses. * @param {Number} dueTime Absolute (specified as a Date object) or relative time (specified as an integer denoting milliseconds) when a timeout occurs. * @param {Observable} [other] Sequence to return in case of a timeout. If not specified, a timeout error throwing sequence will be used. * @param {Scheduler} [scheduler] Scheduler to run the timeout timers on. If not specified, the timeout scheduler is used. * @returns {Observable} The source sequence switching to the other sequence in case of a timeout. */ observableProto.timeout = function (dueTime, other, scheduler) { (other == null || typeof other === 'string') && (other = observableThrow(new Error(other || 'Timeout'))); isScheduler(scheduler) || (scheduler = timeoutScheduler); var source = this, schedulerMethod = dueTime instanceof Date ? 'scheduleWithAbsolute' : 'scheduleWithRelative'; return new AnonymousObservable(function (observer) { var id = 0, original = new SingleAssignmentDisposable(), subscription = new SerialDisposable(), switched = false, timer = new SerialDisposable(); subscription.setDisposable(original); function createTimer() { var myId = id; timer.setDisposable(scheduler[schedulerMethod](dueTime, function () { if (id === myId) { isPromise(other) && (other = observableFromPromise(other)); subscription.setDisposable(other.subscribe(observer)); } })); } createTimer(); original.setDisposable(source.subscribe(function (x) { if (!switched) { id++; observer.onNext(x); createTimer(); } }, function (e) { if (!switched) { id++; observer.onError(e); } }, function () { if (!switched) { id++; observer.onCompleted(); } })); return new CompositeDisposable(subscription, timer); }, source); }; /** * Returns an Observable that emits only the first item emitted by the source Observable during sequential time windows of a specified duration. * @param {Number} windowDuration time to wait before emitting another item after emitting the last item * @param {Scheduler} [scheduler] the Scheduler to use internally to manage the timers that handle timeout for each item. If not provided, defaults to Scheduler.timeout. * @returns {Observable} An Observable that performs the throttle operation. */ observableProto.throttleFirst = function (windowDuration, scheduler) { isScheduler(scheduler) || (scheduler = timeoutScheduler); var duration = +windowDuration || 0; if (duration <= 0) { throw new RangeError('windowDuration cannot be less or equal zero.'); } var source = this; return new AnonymousObservable(function (observer) { var lastOnNext = 0; return source.subscribe( function (x) { var now = scheduler.now(); if (lastOnNext === 0 || now - lastOnNext >= duration) { lastOnNext = now; observer.onNext(x); } }, observer.onError.bind(observer), observer.onCompleted.bind(observer) ); }, source); }; var PausableObservable = (function (__super__) { inherits(PausableObservable, __super__); function subscribe(observer) { var conn = this.source.publish(), subscription = conn.subscribe(observer), connection = disposableEmpty; var pausable = this.pauser.distinctUntilChanged().subscribe(function (b) { if (b) { connection = conn.connect(); } else { connection.dispose(); connection = disposableEmpty; } }); return new CompositeDisposable(subscription, connection, pausable); } function PausableObservable(source, pauser) { this.source = source; this.controller = new Subject(); if (pauser && pauser.subscribe) { this.pauser = this.controller.merge(pauser); } else { this.pauser = this.controller; } __super__.call(this, subscribe, source); } PausableObservable.prototype.pause = function () { this.controller.onNext(false); }; PausableObservable.prototype.resume = function () { this.controller.onNext(true); }; return PausableObservable; }(Observable)); /** * Pauses the underlying observable sequence based upon the observable sequence which yields true/false. * @example * var pauser = new Rx.Subject(); * var source = Rx.Observable.interval(100).pausable(pauser); * @param {Observable} pauser The observable sequence used to pause the underlying sequence. * @returns {Observable} The observable sequence which is paused based upon the pauser. */ observableProto.pausable = function (pauser) { return new PausableObservable(this, pauser); }; function combineLatestSource(source, subject, resultSelector) { return new AnonymousObservable(function (observer) { var hasValue = [false, false], hasValueAll = false, isDone = false, values = new Array(2), err; function next(x, i) { values[i] = x var res; hasValue[i] = true; if (hasValueAll || (hasValueAll = hasValue.every(identity))) { if (err) { observer.onError(err); return; } try { res = resultSelector.apply(null, values); } catch (ex) { observer.onError(ex); return; } observer.onNext(res); } if (isDone && values[1]) { observer.onCompleted(); } } return new CompositeDisposable( source.subscribe( function (x) { next(x, 0); }, function (e) { if (values[1]) { observer.onError(e); } else { err = e; } }, function () { isDone = true; values[1] && observer.onCompleted(); }), subject.subscribe( function (x) { next(x, 1); }, observer.onError.bind(observer), function () { isDone = true; next(true, 1); }) ); }, source); } var PausableBufferedObservable = (function (__super__) { inherits(PausableBufferedObservable, __super__); function subscribe(observer) { var q = [], previousShouldFire; var subscription = combineLatestSource( this.source, this.pauser.distinctUntilChanged().startWith(false), function (data, shouldFire) { return { data: data, shouldFire: shouldFire }; }) .subscribe( function (results) { if (previousShouldFire !== undefined && results.shouldFire != previousShouldFire) { previousShouldFire = results.shouldFire; // change in shouldFire if (results.shouldFire) { while (q.length > 0) { observer.onNext(q.shift()); } } } else { previousShouldFire = results.shouldFire; // new data if (results.shouldFire) { observer.onNext(results.data); } else { q.push(results.data); } } }, function (err) { // Empty buffer before sending error while (q.length > 0) { observer.onNext(q.shift()); } observer.onError(err); }, function () { // Empty buffer before sending completion while (q.length > 0) { observer.onNext(q.shift()); } observer.onCompleted(); } ); return subscription; } function PausableBufferedObservable(source, pauser) { this.source = source; this.controller = new Subject(); if (pauser && pauser.subscribe) { this.pauser = this.controller.merge(pauser); } else { this.pauser = this.controller; } __super__.call(this, subscribe, source); } PausableBufferedObservable.prototype.pause = function () { this.controller.onNext(false); }; PausableBufferedObservable.prototype.resume = function () { this.controller.onNext(true); }; return PausableBufferedObservable; }(Observable)); /** * Pauses the underlying observable sequence based upon the observable sequence which yields true/false, * and yields the values that were buffered while paused. * @example * var pauser = new Rx.Subject(); * var source = Rx.Observable.interval(100).pausableBuffered(pauser); * @param {Observable} pauser The observable sequence used to pause the underlying sequence. * @returns {Observable} The observable sequence which is paused based upon the pauser. */ observableProto.pausableBuffered = function (subject) { return new PausableBufferedObservable(this, subject); }; var ControlledObservable = (function (__super__) { inherits(ControlledObservable, __super__); function subscribe (observer) { return this.source.subscribe(observer); } function ControlledObservable (source, enableQueue) { __super__.call(this, subscribe, source); this.subject = new ControlledSubject(enableQueue); this.source = source.multicast(this.subject).refCount(); } ControlledObservable.prototype.request = function (numberOfItems) { if (numberOfItems == null) { numberOfItems = -1; } return this.subject.request(numberOfItems); }; return ControlledObservable; }(Observable)); var ControlledSubject = (function (__super__) { function subscribe (observer) { return this.subject.subscribe(observer); } inherits(ControlledSubject, __super__); function ControlledSubject(enableQueue) { enableQueue == null && (enableQueue = true); __super__.call(this, subscribe); this.subject = new Subject(); this.enableQueue = enableQueue; this.queue = enableQueue ? [] : null; this.requestedCount = 0; this.requestedDisposable = disposableEmpty; this.error = null; this.hasFailed = false; this.hasCompleted = false; this.controlledDisposable = disposableEmpty; } addProperties(ControlledSubject.prototype, Observer, { onCompleted: function () { this.hasCompleted = true; (!this.enableQueue || this.queue.length === 0) && this.subject.onCompleted(); }, onError: function (error) { this.hasFailed = true; this.error = error; (!this.enableQueue || this.queue.length === 0) && this.subject.onError(error); }, onNext: function (value) { var hasRequested = false; if (this.requestedCount === 0) { this.enableQueue && this.queue.push(value); } else { (this.requestedCount !== -1 && this.requestedCount-- === 0) && this.disposeCurrentRequest(); hasRequested = true; } hasRequested && this.subject.onNext(value); }, _processRequest: function (numberOfItems) { if (this.enableQueue) { while (this.queue.length >= numberOfItems && numberOfItems > 0) { this.subject.onNext(this.queue.shift()); numberOfItems--; } return this.queue.length !== 0 ? { numberOfItems: numberOfItems, returnValue: true } : { numberOfItems: numberOfItems, returnValue: false }; } if (this.hasFailed) { this.subject.onError(this.error); this.controlledDisposable.dispose(); this.controlledDisposable = disposableEmpty; } else if (this.hasCompleted) { this.subject.onCompleted(); this.controlledDisposable.dispose(); this.controlledDisposable = disposableEmpty; } return { numberOfItems: numberOfItems, returnValue: false }; }, request: function (number) { this.disposeCurrentRequest(); var self = this, r = this._processRequest(number); var number = r.numberOfItems; if (!r.returnValue) { this.requestedCount = number; this.requestedDisposable = disposableCreate(function () { self.requestedCount = 0; }); return this.requestedDisposable } else { return disposableEmpty; } }, disposeCurrentRequest: function () { this.requestedDisposable.dispose(); this.requestedDisposable = disposableEmpty; } }); return ControlledSubject; }(Observable)); /** * Attaches a controller to the observable sequence with the ability to queue. * @example * var source = Rx.Observable.interval(100).controlled(); * source.request(3); // Reads 3 values * @param {Observable} pauser The observable sequence used to pause the underlying sequence. * @returns {Observable} The observable sequence which is paused based upon the pauser. */ observableProto.controlled = function (enableQueue) { if (enableQueue == null) { enableQueue = true; } return new ControlledObservable(this, enableQueue); }; /** * Executes a transducer to transform the observable sequence * @param {Transducer} transducer A transducer to execute * @returns {Observable} An Observable sequence containing the results from the transducer. */ observableProto.transduce = function(transducer) { var source = this; function transformForObserver(observer) { return { init: function() { return observer; }, step: function(obs, input) { return obs.onNext(input); }, result: function(obs) { return obs.onCompleted(); } }; } return new AnonymousObservable(function(observer) { var xform = transducer(transformForObserver(observer)); return source.subscribe( function(v) { try { xform.step(observer, v); } catch (e) { observer.onError(e); } }, observer.onError.bind(observer), function() { xform.result(observer); } ); }, source); }; var AnonymousObservable = Rx.AnonymousObservable = (function (__super__) { inherits(AnonymousObservable, __super__); // Fix subscriber to check for undefined or function returned to decorate as Disposable function fixSubscriber(subscriber) { if (subscriber && typeof subscriber.dispose === 'function') { return subscriber; } return typeof subscriber === 'function' ? disposableCreate(subscriber) : disposableEmpty; } function AnonymousObservable(subscribe, parent) { this.source = parent; if (!(this instanceof AnonymousObservable)) { return new AnonymousObservable(subscribe); } function s(observer) { var setDisposable = function () { try { autoDetachObserver.setDisposable(fixSubscriber(subscribe(autoDetachObserver))); } catch (e) { if (!autoDetachObserver.fail(e)) { throw e; } } }; var autoDetachObserver = new AutoDetachObserver(observer); if (currentThreadScheduler.scheduleRequired()) { currentThreadScheduler.schedule(setDisposable); } else { setDisposable(); } return autoDetachObserver; } __super__.call(this, s); } return AnonymousObservable; }(Observable)); var AutoDetachObserver = (function (__super__) { inherits(AutoDetachObserver, __super__); function AutoDetachObserver(observer) { __super__.call(this); this.observer = observer; this.m = new SingleAssignmentDisposable(); } var AutoDetachObserverPrototype = AutoDetachObserver.prototype; AutoDetachObserverPrototype.next = function (value) { var noError = false; try { this.observer.onNext(value); noError = true; } catch (e) { throw e; } finally { !noError && this.dispose(); } }; AutoDetachObserverPrototype.error = function (err) { try { this.observer.onError(err); } catch (e) { throw e; } finally { this.dispose(); } }; AutoDetachObserverPrototype.completed = function () { try { this.observer.onCompleted(); } catch (e) { throw e; } finally { this.dispose(); } }; AutoDetachObserverPrototype.setDisposable = function (value) { this.m.setDisposable(value); }; AutoDetachObserverPrototype.getDisposable = function () { return this.m.getDisposable(); }; AutoDetachObserverPrototype.dispose = function () { __super__.prototype.dispose.call(this); this.m.dispose(); }; return AutoDetachObserver; }(AbstractObserver)); /** @private */ var InnerSubscription = function (subject, observer) { this.subject = subject; this.observer = observer; }; /** * @private * @memberOf InnerSubscription */ InnerSubscription.prototype.dispose = function () { if (!this.subject.isDisposed && this.observer !== null) { var idx = this.subject.observers.indexOf(this.observer); this.subject.observers.splice(idx, 1); this.observer = null; } }; /** * Represents an object that is both an observable sequence as well as an observer. * Each notification is broadcasted to all subscribed observers. */ var Subject = Rx.Subject = (function (_super) { function subscribe(observer) { checkDisposed.call(this); if (!this.isStopped) { this.observers.push(observer); return new InnerSubscription(this, observer); } if (this.exception) { observer.onError(this.exception); return disposableEmpty; } observer.onCompleted(); return disposableEmpty; } inherits(Subject, _super); /** * Creates a subject. * @constructor */ function Subject() { _super.call(this, subscribe); this.isDisposed = false, this.isStopped = false, this.observers = []; } addProperties(Subject.prototype, Observer, { /** * Indicates whether the subject has observers subscribed to it. * @returns {Boolean} Indicates whether the subject has observers subscribed to it. */ hasObservers: function () { return this.observers.length > 0; }, /** * Notifies all subscribed observers about the end of the sequence. */ onCompleted: function () { checkDisposed.call(this); if (!this.isStopped) { var os = this.observers.slice(0); this.isStopped = true; for (var i = 0, len = os.length; i < len; i++) { os[i].onCompleted(); } this.observers = []; } }, /** * Notifies all subscribed observers about the exception. * @param {Mixed} error The exception to send to all observers. */ onError: function (exception) { checkDisposed.call(this); if (!this.isStopped) { var os = this.observers.slice(0); this.isStopped = true; this.exception = exception; for (var i = 0, len = os.length; i < len; i++) { os[i].onError(exception); } this.observers = []; } }, /** * Notifies all subscribed observers about the arrival of the specified element in the sequence. * @param {Mixed} value The value to send to all observers. */ onNext: function (value) { checkDisposed.call(this); if (!this.isStopped) { var os = this.observers.slice(0); for (var i = 0, len = os.length; i < len; i++) { os[i].onNext(value); } } }, /** * Unsubscribe all observers and release resources. */ dispose: function () { this.isDisposed = true; this.observers = null; } }); /** * Creates a subject from the specified observer and observable. * @param {Observer} observer The observer used to send messages to the subject. * @param {Observable} observable The observable used to subscribe to messages sent from the subject. * @returns {Subject} Subject implemented using the given observer and observable. */ Subject.create = function (observer, observable) { return new AnonymousSubject(observer, observable); }; return Subject; }(Observable)); /** * Represents the result of an asynchronous operation. * The last value before the OnCompleted notification, or the error received through OnError, is sent to all subscribed observers. */ var AsyncSubject = Rx.AsyncSubject = (function (__super__) { function subscribe(observer) { checkDisposed.call(this); if (!this.isStopped) { this.observers.push(observer); return new InnerSubscription(this, observer); } var ex = this.exception, hv = this.hasValue, v = this.value; if (ex) { observer.onError(ex); } else if (hv) { observer.onNext(v); observer.onCompleted(); } else { observer.onCompleted(); } return disposableEmpty; } inherits(AsyncSubject, __super__); /** * Creates a subject that can only receive one value and that value is cached for all future observations. * @constructor */ function AsyncSubject() { __super__.call(this, subscribe); this.isDisposed = false; this.isStopped = false; this.value = null; this.hasValue = false; this.observers = []; this.exception = null; } addProperties(AsyncSubject.prototype, Observer, { /** * Indicates whether the subject has observers subscribed to it. * @returns {Boolean} Indicates whether the subject has observers subscribed to it. */ hasObservers: function () { checkDisposed.call(this); return this.observers.length > 0; }, /** * Notifies all subscribed observers about the end of the sequence, also causing the last received value to be sent out (if any). */ onCompleted: function () { var o, i, len; checkDisposed.call(this); if (!this.isStopped) { this.isStopped = true; var os = this.observers.slice(0), v = this.value, hv = this.hasValue; if (hv) { for (i = 0, len = os.length; i < len; i++) { o = os[i]; o.onNext(v); o.onCompleted(); } } else { for (i = 0, len = os.length; i < len; i++) { os[i].onCompleted(); } } this.observers = []; } }, /** * Notifies all subscribed observers about the error. * @param {Mixed} error The Error to send to all observers. */ onError: function (error) { checkDisposed.call(this); if (!this.isStopped) { var os = this.observers.slice(0); this.isStopped = true; this.exception = error; for (var i = 0, len = os.length; i < len; i++) { os[i].onError(error); } this.observers = []; } }, /** * Sends a value to the subject. The last value received before successful termination will be sent to all subscribed and future observers. * @param {Mixed} value The value to store in the subject. */ onNext: function (value) { checkDisposed.call(this); if (this.isStopped) { return; } this.value = value; this.hasValue = true; }, /** * Unsubscribe all observers and release resources. */ dispose: function () { this.isDisposed = true; this.observers = null; this.exception = null; this.value = null; } }); return AsyncSubject; }(Observable)); var AnonymousSubject = Rx.AnonymousSubject = (function (__super__) { inherits(AnonymousSubject, __super__); function AnonymousSubject(observer, observable) { this.observer = observer; this.observable = observable; __super__.call(this, this.observable.subscribe.bind(this.observable)); } addProperties(AnonymousSubject.prototype, Observer, { onCompleted: function () { this.observer.onCompleted(); }, onError: function (exception) { this.observer.onError(exception); }, onNext: function (value) { this.observer.onNext(value); } }); return AnonymousSubject; }(Observable)); /** * Represents a value that changes over time. * Observers can subscribe to the subject to receive the last (or initial) value and all subsequent notifications. */ var BehaviorSubject = Rx.BehaviorSubject = (function (__super__) { function subscribe(observer) { checkDisposed.call(this); if (!this.isStopped) { this.observers.push(observer); observer.onNext(this.value); return new InnerSubscription(this, observer); } var ex = this.exception; if (ex) { observer.onError(ex); } else { observer.onCompleted(); } return disposableEmpty; } inherits(BehaviorSubject, __super__); /** * @constructor * Initializes a new instance of the BehaviorSubject class which creates a subject that caches its last value and starts with the specified value. * @param {Mixed} value Initial value sent to observers when no other value has been received by the subject yet. */ function BehaviorSubject(value) { __super__.call(this, subscribe); this.value = value, this.observers = [], this.isDisposed = false, this.isStopped = false, this.exception = null; } addProperties(BehaviorSubject.prototype, Observer, { /** * Indicates whether the subject has observers subscribed to it. * @returns {Boolean} Indicates whether the subject has observers subscribed to it. */ hasObservers: function () { return this.observers.length > 0; }, /** * Notifies all subscribed observers about the end of the sequence. */ onCompleted: function () { checkDisposed.call(this); if (this.isStopped) { return; } this.isStopped = true; for (var i = 0, os = this.observers.slice(0), len = os.length; i < len; i++) { os[i].onCompleted(); } this.observers = []; }, /** * Notifies all subscribed observers about the exception. * @param {Mixed} error The exception to send to all observers. */ onError: function (error) { checkDisposed.call(this); if (this.isStopped) { return; } this.isStopped = true; this.exception = error; for (var i = 0, os = this.observers.slice(0), len = os.length; i < len; i++) { os[i].onError(error); } this.observers = []; }, /** * Notifies all subscribed observers about the arrival of the specified element in the sequence. * @param {Mixed} value The value to send to all observers. */ onNext: function (value) { checkDisposed.call(this); if (this.isStopped) { return; } this.value = value; for (var i = 0, os = this.observers.slice(0), len = os.length; i < len; i++) { os[i].onNext(value); } }, /** * Unsubscribe all observers and release resources. */ dispose: function () { this.isDisposed = true; this.observers = null; this.value = null; this.exception = null; } }); return BehaviorSubject; }(Observable)); /** * Represents an object that is both an observable sequence as well as an observer. * Each notification is broadcasted to all subscribed and future observers, subject to buffer trimming policies. */ var ReplaySubject = Rx.ReplaySubject = (function (__super__) { function createRemovableDisposable(subject, observer) { return disposableCreate(function () { observer.dispose(); !subject.isDisposed && subject.observers.splice(subject.observers.indexOf(observer), 1); }); } function subscribe(observer) { var so = new ScheduledObserver(this.scheduler, observer), subscription = createRemovableDisposable(this, so); checkDisposed.call(this); this._trim(this.scheduler.now()); this.observers.push(so); for (var i = 0, len = this.q.length; i < len; i++) { so.onNext(this.q[i].value); } if (this.hasError) { so.onError(this.error); } else if (this.isStopped) { so.onCompleted(); } so.ensureActive(); return subscription; } inherits(ReplaySubject, __super__); /** * Initializes a new instance of the ReplaySubject class with the specified buffer size, window size and scheduler. * @param {Number} [bufferSize] Maximum element count of the replay buffer. * @param {Number} [windowSize] Maximum time length of the replay buffer. * @param {Scheduler} [scheduler] Scheduler the observers are invoked on. */ function ReplaySubject(bufferSize, windowSize, scheduler) { this.bufferSize = bufferSize == null ? Number.MAX_VALUE : bufferSize; this.windowSize = windowSize == null ? Number.MAX_VALUE : windowSize; this.scheduler = scheduler || currentThreadScheduler; this.q = []; this.observers = []; this.isStopped = false; this.isDisposed = false; this.hasError = false; this.error = null; __super__.call(this, subscribe); } addProperties(ReplaySubject.prototype, Observer, { /** * Indicates whether the subject has observers subscribed to it. * @returns {Boolean} Indicates whether the subject has observers subscribed to it. */ hasObservers: function () { return this.observers.length > 0; }, _trim: function (now) { while (this.q.length > this.bufferSize) { this.q.shift(); } while (this.q.length > 0 && (now - this.q[0].interval) > this.windowSize) { this.q.shift(); } }, /** * Notifies all subscribed observers about the arrival of the specified element in the sequence. * @param {Mixed} value The value to send to all observers. */ onNext: function (value) { checkDisposed.call(this); if (this.isStopped) { return; } var now = this.scheduler.now(); this.q.push({ interval: now, value: value }); this._trim(now); var o = this.observers.slice(0); for (var i = 0, len = o.length; i < len; i++) { var observer = o[i]; observer.onNext(value); observer.ensureActive(); } }, /** * Notifies all subscribed observers about the exception. * @param {Mixed} error The exception to send to all observers. */ onError: function (error) { checkDisposed.call(this); if (this.isStopped) { return; } this.isStopped = true; this.error = error; this.hasError = true; var now = this.scheduler.now(); this._trim(now); var o = this.observers.slice(0); for (var i = 0, len = o.length; i < len; i++) { var observer = o[i]; observer.onError(error); observer.ensureActive(); } this.observers = []; }, /** * Notifies all subscribed observers about the end of the sequence. */ onCompleted: function () { checkDisposed.call(this); if (this.isStopped) { return; } this.isStopped = true; var now = this.scheduler.now(); this._trim(now); var o = this.observers.slice(0); for (var i = 0, len = o.length; i < len; i++) { var observer = o[i]; observer.onCompleted(); observer.ensureActive(); } this.observers = []; }, /** * Unsubscribe all observers and release resources. */ dispose: function () { this.isDisposed = true; this.observers = null; } }); return ReplaySubject; }(Observable)); if (typeof define == 'function' && typeof define.amd == 'object' && define.amd) { root.Rx = Rx; define(function() { return Rx; }); } else if (freeExports && freeModule) { // in Node.js or RingoJS if (moduleExports) { (freeModule.exports = Rx).Rx = Rx; } else { freeExports.Rx = Rx; } } else { // in a browser or Rhino root.Rx = Rx; } // All code before this point will be filtered from stack traces. var rEndingLine = captureLine(); }.call(this));
admin/client/App/screens/List/components/ItemsTable/ItemsTableDragDrop.js
linhanyang/keystone
import React from 'react'; import { DragDropContext } from 'react-dnd'; import HTML5Backend from 'react-dnd-html5-backend'; import { Sortable } from './ItemsTableRow'; import DropZone from './ItemsTableDragDropZone'; var ItemsTableDragDrop = React.createClass({ displayName: 'ItemsTableDragDrop', propTypes: { columns: React.PropTypes.array, id: React.PropTypes.any, index: React.PropTypes.number, items: React.PropTypes.object, list: React.PropTypes.object, }, render () { return ( <tbody > {this.props.items.results.map((item, i) => { return ( <Sortable key={item.id} index={i} sortOrder={item.sortOrder || 0} id={item.id} item={item} {...this.props} /> ); })} <DropZone {...this.props} /> </tbody> ); }, }); module.exports = DragDropContext(HTML5Backend)(ItemsTableDragDrop);
app/components/Home.js
SixSecondMonks/sos-electron
import React, { Component } from 'react'; import 'phaser-shim'; class Game extends Phaser.Game { constructor (height, width, type, element, funcs) { super(height, width, type, element, funcs); } } export default class Home extends Component { constructor(props) { super(props); this.game = new Game(800, 600, Phaser.AUTO, 'game-div', {create: this.phaserCreate, render: this.phaserRender, update: this.phaserUpdate}); console.log("done initializing game instance"); } render() { console.log("calling component render"); return ( <div> <div> Super Cool PhaserIO Game Engine <div id="game-div"></div> </div> </div> ); } phaserCreate() { if(this.game) { console.log("Creating game object: ", this.game); var text = "- phaser -\n with a sprinkle of \n pixi dust."; var style = {font: "65px Arial", fill: "#ff0044", align: "center"}; var t = this.game.add.text(this.game.world.centerX - 300, 0, text, style); } else { console.log("Error: phaser game object not defined (this.game is null)"); } } phaserUpdate() { } phaserRender() { if(this.game) { this.game.debug.inputInfo(32, 32); } } }
client/components/GalleryComponent.js
foxichu/reactgur
import React from 'react'; import {Glyphicon} from 'react-bootstrap'; import xhttp from 'xhttp'; import MediaComponent from './../components/MediaComponent.js'; import ee from '../Emitter.js'; import Scroll from '../Scroll.js'; export default class GalleryComponent extends React.Component { constructor(props) { super(props); this.state = {images: []} this.columns = 5; } componentWillMount() { this.calculateMaxSize(); } componentDidMount() { ee.addListener('resize', this.handleWindowResize.bind(this)); ee.addListener('wrapper_scroll', this.handleScroll.bind(this)); ee.addListener('media_uploaded', this.handleMediaUploaded.bind(this)); this.csrfToken = document.querySelector('meta[name="csrf-token"]').content; this.page_wrapper = React.findDOMNode(this.refs.mainContainer).parentNode; this.scroll = new Scroll(page_wrapper); this.createIsoContainer(); } componentDidUpdate() { this.createIsoContainer(); if (!this.refs.isoContainer) return; var new_media = []; var items = this.refs.isoContainer.getDOMNode().children; for (var x = 0; x < items.length; x++) { if (items[x].style.top === "") new_media.push(items[x]); } if (new_media.length > 0) this.prependMedia ? this.iso.prepended(new_media) : this.iso.appended(new_media); this.iso.arrange(); this.prependMedia = false; } calculateExpandedPosition() { var item_column = ((parseInt(this.expanded.item.style.left) - 74) + 198) / 198; if (item_column >= (this.columns - 2)) { var offset = 0; if (item_column < this.columns) { offset = this.columns - item_column; while ((this.expanded_width + (this.expanded_margin_lr * 2) + 18) > (198 * (this.columns - offset))) { offset --; } } this.expanded.item.style.right = (74 + (198 * (offset))) + 'px'; this.expanded.item.style.left = ''; } } calculateExpandedSize() { if (!this.expanded) return; var img = this.expanded.img; var item = this.expanded.item; var width = parseInt(item.dataset.width); var height = parseInt(item.dataset.height); if (width > this.max_width) { height = (this.max_width * height)/width; width = this.max_width; } if (height > this.max_height) { width = (this.max_height * width)/height; height = this.max_height; } var total_width = width + 18; var total_height = height + 18; var margin_lr = 0; var margin_tb = 0; if (width < 380 && height < 380) margin_tb = ((380 - height) / 2); else margin_tb = Math.floor((((Math.ceil(total_height / 198) * 198) - total_height) / 2)); if (item.dataset.width >= 380) margin_lr = Math.floor((((Math.ceil(total_width / 198) * 198) - total_width) / 2)); if ((width + (margin_lr * 2)) >= this.max_width) margin_tb = 4; this.setExpandedSize(margin_tb, margin_lr, height, width) // Save for preparing expanded item position this.expanded_margin_lr = margin_lr; this.expanded_width = width; } calculateMaxSize() { this.mobile = false; this.columns = 5; if (window.innerWidth <= 1200) this.columns = 4; else if (window.innerWidth <= 992) this.columns = 3; else if (window.innerWidth <= 768) this.mobile = true; this.max_width = (this.columns * 192) + 4; this.max_height = window.innerHeight - 130; } createIsoContainer() { if (this.iso || !this.refs.isoContainer) return; this.iso = new Isotope(this.refs.isoContainer.getDOMNode(), { layoutMode: 'packery', sortBy:'created', sortAscending: false, getSortData: { created: '[data-created] parseInt' } }); this.iso.on('layoutComplete', this.handleLayoutComplete.bind(this)); this.iso.arrange(); } closeExpanded() { this.expanded.item.className = 'media-item well'; this.expanded.img.src = this.expanded.item.dataset.thumbnail; this.setExpandedSize(0, 0, 180, 180); this.expanded.item.style.right = ''; } expand(item) { if (this.expanded) { this.closeExpanded(); if (this.expanded.id === item.dataset.id) { this.scrollTo = this.expanded; this.shrunkTo = this.expanded.img.src; this.expanded = null; return; } } this.expanded = this.scrollTo = { id: item.dataset.id, item: item, img: item.firstChild } this.expanded.item.className = 'media-item well expanded'; this.expanded.img.src = this.expanded.item.dataset.href; this.calculateExpandedSize(); this.calculateExpandedPosition(); this.iso.arrange(); } handleImageLoad(e) { if (this.expanded || this.shrunkTo) { this.shrunkTo = null; this.iso.arrange(); } } handleItemClick(e) { var node = e.target; var bottom_overlay = null; var item = null; while (!item) { if (node.className.indexOf('media-api-button') !== -1) return; if (node.className.indexOf('media-overlay-bottom') !== -1) bottom_overlay = node; if (node.className.indexOf('media-item') !== -1) item = node; node = node.parentNode; } if (bottom_overlay && item.className.indexOf('expanded') !== -1) return; this.expand(item); } handleItemDelete(mediaItemNode) { mediaItemNode.style.display = 'none'; this.iso.arrange(); } handleLayoutComplete() { if (this.scrollTo) { var height = this.scrollTo.item.getBoundingClientRect().height; var marginTop = parseInt(this.scrollTo.img.style.marginTop); var topPos = parseInt(this.scrollTo.item.style.top) var scrollPos = topPos - ((window.innerHeight - (height + (marginTop * 2))) / 2) + 42; if (this.scrollTo.img.height == this.max_height) scrollPos = topPos + marginTop - 4; this.scroll.scrollToPos(scrollPos); this.scrollTo = false; } if (this.expanded) { this.expanded.item.style.right = ''; } } handleLoadError(data) { this.loadLock = false; } handleLoadSuccess(data) { this.refs.loadingBar.getDOMNode().style.display = 'none'; this.setState({images: this.state.images.concat(data)}); this.loadLock = false; } handleMediaUploaded(data) { this.prependMedia = true; this.setState({images: data.concat(this.state.images)}) } handleScroll(e, page_wrapper) { var container = this.refs.isoContainer.getDOMNode(); var height = container.getBoundingClientRect().height + 61; if (this.scroll.position() >= height - window.innerHeight) { this.fetchMedia(); } } handleWindowResize() { this.calculateMaxSize(); this.calculateExpandedSize(); this.iso.arrange(); } fetchMedia() { if (this.loadLock) return; this.refs.loadingBar.getDOMNode().style.display = 'block'; this.loadLock = true; xhttp({ url: '/api/v1/media', method: 'get', headers: { 'X-CSRFToken': this.csrfToken }, params: { after: this.state.images[this.state.images.length - 1].href } }) .then(this.handleLoadSuccess.bind(this)) .catch(this.handleLoadError.bind(this)); } prependMedia(media) { this.setState({images: [].concat(media, this.state.images)}); } setExpandedSize(margin_tb, margin_lr, height, width) { this.expanded.img.style.marginTop = margin_tb + 'px'; this.expanded.img.style.marginBottom = margin_tb + 'px'; this.expanded.img.style.marginLeft = margin_lr + 'px'; this.expanded.img.style.marginRight = margin_lr + 'px'; this.expanded.img.style.height = height + 'px'; this.expanded.img.style.width = width + 'px'; } render() { return this.state.images.length == 0 ? ( <div ref="mainContainer" className="jumbotron text-center"> <h1 className="text-center">{"There's no images here!"}</h1> <p>Upload some images!</p> <p> <a href="/upload" className="btn btn-success btn-lg"> <Glyphicon glyp='cloud-upload' /> <span> Upload Images</span> </a> </p> </div> ) : ( <div ref="mainContainer"> <div ref="isoContainer" className="panel media-component text-center" onScroll={this.handleScroll.bind(this)}> {this.state.images.map((image) => { return ( <MediaComponent key={image.href} image={image} onClick={this.handleItemClick.bind(this)} onDelete={this.handleItemDelete.bind(this)} onImageLoad={this.handleImageLoad.bind(this)} user={this.props.user} /> ); })} </div> <div id="loading_bar" className="text-center" ref='loadingBar'> <Glyphicon glyph='refresh' className='glyphicon-spin' /> </div> </div> ); } }
app/jsx/calendar/scheduler/components/appointment_groups/EditPage.js
djbender/canvas-lms
/* * Copyright (C) 2016 - present Instructure, Inc. * * This file is part of Canvas. * * Canvas is free software: you can redistribute it and/or modify it under * the terms of the GNU Affero General Public License as published by the Free * Software Foundation, version 3 of the License. * * Canvas is distributed in the hope that it will be useful, but WITHOUT ANY * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR * A PARTICULAR PURPOSE. See the GNU Affero General Public License for more * details. * * You should have received a copy of the GNU Affero General Public License along * with this program. If not, see <http://www.gnu.org/licenses/>. */ import $ from 'jquery' import React from 'react' import PropTypes from 'prop-types' import I18n from 'i18n!appointment_groups' import {Breadcrumb} from '@instructure/ui-breadcrumb' import {Button} from '@instructure/ui-buttons' import {Grid} from '@instructure/ui-layout' import {FormFieldGroup} from '@instructure/ui-form-field' import {ScreenReaderContent} from '@instructure/ui-a11y' import {TextArea, TextInput, Checkbox} from '@instructure/ui-forms' import 'compiled/jquery.rails_flash_notifications' import 'jquery.instructure_forms' import 'jquery.instructure_date_and_time' import EventDataSource from 'compiled/calendar/EventDataSource' import MessageParticipantsDialog from 'compiled/calendar/MessageParticipantsDialog' import axios from 'axios' import AppointmentGroupList from './AppointmentGroupList' import ContextSelector from './ContextSelector' import TimeBlockSelector from './TimeBlockSelector' const parseFormValues = data => ({ description: data.description, location: data.location_name, title: data.title, limitUsersPerSlot: data.participants_per_appointment, limitSlotsPerUser: data.max_appointments_per_participant, allowStudentsToView: data.participant_visibility === 'protected' }) const parseTimeData = appointmentGroup => { if (!appointmentGroup.appointments) { return [] } return appointmentGroup.appointments.map(appointment => ({ timeData: { date: appointment.start_at, startTime: appointment.start_at, endTime: appointment.end_at }, slotEventId: appointment.id.toString() })) } const nullTimeFilter = timeBlock => timeBlock.timeData.date != null || timeBlock.timeData.startTime != null || timeBlock.timeData.endTime != null class EditPage extends React.Component { static propTypes = { appointment_group_id: PropTypes.string } constructor(props) { super(props) this.state = { appointmentGroup: { title: '', context_codes: [], sub_context_codes: [] }, formValues: {}, contexts: [], isDeleting: false, eventDataSource: null } } componentDidMount() { axios .get( `/api/v1/appointment_groups/${this.props.appointment_group_id}?include[]=appointments&include[]=child_events` ) .then(response => { const formValues = parseFormValues(response.data) this.setState( { formValues, appointmentGroup: response.data }, () => { // Handle setting some pesky values $('.EditPage__Options-LimitUsersPerSlot', this.optionFields).val( formValues.limitUsersPerSlot ) $('.EditPage__Options-LimitSlotsPerUser', this.optionFields).val( formValues.limitSlotsPerUser ) } ) }) axios.get('/api/v1/calendar_events/visible_contexts').then(response => { const contexts = response.data.contexts.filter(context => context.asset_string.match(/^course_/) ) this.setState({ contexts, eventDataSource: new EventDataSource(contexts) }) }) } setTimeBlocks = (newTimeBlocks = []) => { const formValues = Object.assign(this.state.formValues, {timeblocks: newTimeBlocks}) this.setState({formValues}) } handleChange = e => { const formValues = Object.assign(this.state.formValues, { [e.target.name]: e.target.value }) this.setState({formValues}) } handleCheckboxChange = e => { const formValues = Object.assign(this.state.formValues, { [e.target.name]: e.target.checked }) this.setState({formValues}) } messageStudents = () => { const messageStudentsDialog = new MessageParticipantsDialog({ group: this.state.appointmentGroup, dataSource: this.state.eventDataSource }) messageStudentsDialog.show() } deleteGroup = () => { if (!this.state.isDeleting) { this.setState({isDeleting: true}, () => { axios .delete(`/api/v1/appointment_groups/${this.props.appointment_group_id}`) .then(() => { window.location = '/calendar' }) .catch(() => { $.flashError(I18n.t('An error ocurred while deleting the appointment group')) this.setState({isDeleting: false}) }) }) } } handleSave = () => { const formValues = {...this.state.formValues} if (formValues.limitUsersPerSlot) { const $element = $('.EditPage__Options-LimitUsersPerSlot', this.optionFields) const value = $element.val() if (!value) { $element.errorBox(I18n.t('You must provide a value or unselect the option.')) return } else if (value < 1) { $element.errorBox(I18n.t('You must allow at least one appointment per time slot.')) return } formValues.usersPerSlotLimit = value } else { formValues.usersPerSlotLimit = null } if (formValues.limitSlotsPerUser) { const $element = $('.EditPage__Options-LimitSlotsPerUser', this.optionFields) const value = $element.val() if (!value) { $element.errorBox(I18n.t('You must provide a value or unselect the option.')) return } else if (value < 1) { $element.errorBox(I18n.t('You must allow at least one appointment per participant.')) return } formValues.slotsPerUserLimit = value } else { formValues.slotsPerUserLimit = null } const url = `/api/v1/appointment_groups/${this.props.appointment_group_id}` formValues.timeblocks = formValues.timeblocks || [] const requestObj = { appointment_group: { title: formValues.title, description: formValues.description, location_name: formValues.location, participants_per_appointment: formValues.usersPerSlotLimit, participant_visibility: formValues.allowStudentsToView ? 'protected' : 'private', max_appointments_per_participant: formValues.slotsPerUserLimit, new_appointments: formValues.timeblocks .filter(nullTimeFilter) .map(tb => [ $.unfudgeDateForProfileTimezone(tb.timeData.startTime), $.unfudgeDateForProfileTimezone(tb.timeData.endTime) ]), context_codes: [...this.contextSelector.state.selectedContexts], sub_context_codes: [...this.contextSelector.state.selectedSubContexts] } } axios .put(url, requestObj) .then(() => { window.location.href = '/calendar?edit_appointment_group_success=1' }) .catch(() => { $.flashError(I18n.t('An error ocurred while saving the appointment group')) }) } render() { return ( <div className="EditPage"> <Breadcrumb label={I18n.t('You are here:')}> <Breadcrumb.Link href="/calendar">{I18n.t('Calendar')}</Breadcrumb.Link> {this.state.appointmentGroup.title && ( <Breadcrumb.Link> {I18n.t('Edit %{pageTitle}', {pageTitle: this.state.appointmentGroup.title})} </Breadcrumb.Link> )} </Breadcrumb> <ScreenReaderContent> <h1> {I18n.t('Edit %{pageTitle}', { pageTitle: this.state.appointmentGroup.title })} </h1> </ScreenReaderContent> <div className="EditPage__Header"> <Grid vAlign="middle"> <Grid.Row hAlign="end"> <Grid.Col width="auto"> <Button onClick={this.deleteGroup} disabled={this.state.isDeleting}> {I18n.t('Delete Group')} </Button> &nbsp; <Button href="/calendar">{I18n.t('Cancel')}</Button> &nbsp; <Button onClick={this.handleSave} variant="primary"> {I18n.t('Save')} </Button> </Grid.Col> </Grid.Row> </Grid> </div> <FormFieldGroup description={<ScreenReaderContent>{I18n.t('Edit Assignment Group')}</ScreenReaderContent>} > <FormFieldGroup description={I18n.t('Calendars')} layout="inline" vAlign="top"> <ContextSelector ref={c => { this.contextSelector = c }} id="context" appointmentGroup={this.state.appointmentGroup} contexts={this.state.contexts} /> </FormFieldGroup> <TextInput label={I18n.t('Title')} name="title" value={this.state.formValues.title} onChange={this.handleChange} layout="inline" vAlign="top" /> <FormFieldGroup description={I18n.t('Time Block')} layout="inline" vAlign="top"> <TimeBlockSelector timeData={parseTimeData(this.state.appointmentGroup)} onChange={this.setTimeBlocks} /> </FormFieldGroup> <TextInput label={I18n.t('Location')} name="location" value={this.state.formValues.location} onChange={this.handleChange} layout="inline" vAlign="top" /> <TextArea resize="vertical" layout="inline" label={I18n.t('Details')} name="description" value={this.state.formValues.description} onChange={this.handleChange} /> <div ref={c => { this.optionFields = c }} className="EditPage__Options" > <FormFieldGroup description={I18n.t('Options')} rowSpacing="small" layout="inline" vAlign="top" > <div className="ic-Form-control ic-Form-control--checkbox"> <input type="checkbox" checked={this.state.formValues.limitUsersPerSlot} id="limit_users_per_slot" name="limitUsersPerSlot" onChange={this.handleCheckboxChange} /> <label className="ic-Label" htmlFor="limit_users_per_slot" dangerouslySetInnerHTML={{ __html: I18n.t('Limit each time slot to %{input_value} user(s). ', { input_value: '<input class="ic-Input EditPage__Options-Input EditPage__Options-LimitUsersPerSlot" />' }) }} /> </div> <Checkbox label={I18n.t( 'Allow students to see who was signed up for time slots that are still available' )} checked={this.state.formValues.allowStudentsToView} name="allowStudentsToView" onChange={this.handleCheckboxChange} /> <div className="ic-Form-control ic-Form-control--checkbox"> <input type="checkbox" checked={this.state.formValues.limitSlotsPerUser} id="limit_slots_per_user" name="limitSlotsPerUser" onChange={this.handleCheckboxChange} /> <label className="ic-Label" htmlFor="limit_slots_per_user" dangerouslySetInnerHTML={{ __html: I18n.t('Limit students to attend %{input_value} slot(s). ', { input_value: '<input class="ic-Input EditPage__Options-Input EditPage__Options-LimitSlotsPerUser" />' }) }} /> </div> </FormFieldGroup> </div> <FormFieldGroup description={I18n.t('Appointments')} layout="inline" rowSpacing="small" vAlign="top" > <Button ref={c => { this.messageStudentsButton = c }} onClick={this.messageStudents} disabled={this.state.appointmentGroup.appointments_count === 0} > {I18n.t('Message Students')} </Button> <AppointmentGroupList appointmentGroup={this.state.appointmentGroup} /> </FormFieldGroup> </FormFieldGroup> </div> ) } } export default EditPage
src/views/Icons/GlyphiconsSocial/GlyphiconsSocial.js
hungtruongquoc/shipper_front
import React, { Component } from 'react'; class GlyphiconsSocial extends Component { render() { return ( <div className="animated fadeIn"> <div className="card"> <div className="card-header"> <strong>GLYPHICONS</strong> Social </div> <div className="card-block text-center"> <div className="row"> <div className="col-6 col-sm-4 col-md-3 py-1"> <i className="social social-pinterest x2"></i><br/> .social.social-pinterest </div> <div className="col-6 col-sm-4 col-md-3 py-1"> <i className="social social-dropbox x2"></i><br/> .social.social-dropbox </div> <div className="col-6 col-sm-4 col-md-3 py-1"> <i className="social social-google-plus x2"></i><br/> .social.social-google-plus </div> <div className="col-6 col-sm-4 col-md-3 py-1"> <i className="social social-jolicloud x2"></i><br/> .social.social-jolicloud </div> <div className="col-6 col-sm-4 col-md-3 py-1"> <i className="social social-yahoo x2"></i><br/> .social.social-yahoo </div> <div className="col-6 col-sm-4 col-md-3 py-1"> <i className="social social-blogger x2"></i><br/> .social.social-blogger </div> <div className="col-6 col-sm-4 col-md-3 py-1"> <i className="social social-picasa x2"></i><br/> .social.social-picasa </div> <div className="col-6 col-sm-4 col-md-3 py-1"> <i className="social social-amazon x2"></i><br/> .social.social-amazon </div> <div className="col-6 col-sm-4 col-md-3 py-1"> <i className="social social-tumblr x2"></i><br/> .social.social-tumblr </div> <div className="col-6 col-sm-4 col-md-3 py-1"> <i className="social social-wordpress x2"></i><br/> .social.social-wordpress </div> <div className="col-6 col-sm-4 col-md-3 py-1"> <i className="social social-instapaper x2"></i><br/> .social.social-instapaper </div> <div className="col-6 col-sm-4 col-md-3 py-1"> <i className="social social-evernote x2"></i><br/> .social.social-evernote </div> <div className="col-6 col-sm-4 col-md-3 py-1"> <i className="social social-xing x2"></i><br/> .social.social-xing </div> <div className="col-6 col-sm-4 col-md-3 py-1"> <i className="social social-e-mail-envelope x2"></i><br/> .social.social-e-mail-envelope </div> <div className="col-6 col-sm-4 col-md-3 py-1"> <i className="social social-dribbble x2"></i><br/> .social.social-dribbble </div> <div className="col-6 col-sm-4 col-md-3 py-1"> <i className="social social-deviantart x2"></i><br/> .social.social-deviantart </div> <div className="col-6 col-sm-4 col-md-3 py-1"> <i className="social social-read-it-later x2"></i><br/> .social.social-read-it-later </div> <div className="col-6 col-sm-4 col-md-3 py-1"> <i className="social social-linked-in x2"></i><br/> .social.social-linked-in </div> <div className="col-6 col-sm-4 col-md-3 py-1"> <i className="social social-gmail x2"></i><br/> .social.social-gmail </div> <div className="col-6 col-sm-4 col-md-3 py-1"> <i className="social social-pinboard x2"></i><br/> .social.social-pinboard </div> <div className="col-6 col-sm-4 col-md-3 py-1"> <i className="social social-behance x2"></i><br/> .social.social-behance </div> <div className="col-6 col-sm-4 col-md-3 py-1"> <i className="social social-github x2"></i><br/> .social.social-github </div> <div className="col-6 col-sm-4 col-md-3 py-1"> <i className="social social-youtube x2"></i><br/> .social.social-youtube </div> <div className="col-6 col-sm-4 col-md-3 py-1"> <i className="social social-open-id x2"></i><br/> .social.social-open-id </div> <div className="col-6 col-sm-4 col-md-3 py-1"> <i className="social social-foursquare x2"></i><br/> .social.social-foursquare </div> <div className="col-6 col-sm-4 col-md-3 py-1"> <i className="social social-quora x2"></i><br/> .social.social-quora </div> <div className="col-6 col-sm-4 col-md-3 py-1"> <i className="social social-badoo x2"></i><br/> .social.social-badoo </div> <div className="col-6 col-sm-4 col-md-3 py-1"> <i className="social social-spotify x2"></i><br/> .social.social-spotify </div> <div className="col-6 col-sm-4 col-md-3 py-1"> <i className="social social-stumbleupon x2"></i><br/> .social.social-stumbleupon </div> <div className="col-6 col-sm-4 col-md-3 py-1"> <i className="social social-readability x2"></i><br/> .social.social-readability </div> <div className="col-6 col-sm-4 col-md-3 py-1"> <i className="social social-facebook x2"></i><br/> .social.social-facebook </div> <div className="col-6 col-sm-4 col-md-3 py-1"> <i className="social social-twitter x2"></i><br/> .social.social-twitter </div> <div className="col-6 col-sm-4 col-md-3 py-1"> <i className="social social-instagram x2"></i><br/> .social.social-instagram </div> <div className="col-6 col-sm-4 col-md-3 py-1"> <i className="social social-posterous-spaces x2"></i><br/> .social.social-posterous-spaces </div> <div className="col-6 col-sm-4 col-md-3 py-1"> <i className="social social-vimeo x2"></i><br/> .social.social-vimeo </div> <div className="col-6 col-sm-4 col-md-3 py-1"> <i className="social social-flickr x2"></i><br/> .social.social-flickr </div> <div className="col-6 col-sm-4 col-md-3 py-1"> <i className="social social-last-fm x2"></i><br/> .social.social-last-fm </div> <div className="col-6 col-sm-4 col-md-3 py-1"> <i className="social social-rss x2"></i><br/> .social.social-rss </div> <div className="col-6 col-sm-4 col-md-3 py-1"> <i className="social social-skype x2"></i><br/> .social.social-skype </div> <div className="col-6 col-sm-4 col-md-3 py-1"> <i className="social social-e-mail x2"></i><br/> .social.social-e-mail </div> <div className="col-6 col-sm-4 col-md-3 py-1"> <i className="social social-vine x2"></i><br/> .social.social-vine </div> <div className="col-6 col-sm-4 col-md-3 py-1"> <i className="social social-myspace x2"></i><br/> .social.social-myspace </div> <div className="col-6 col-sm-4 col-md-3 py-1"> <i className="social social-goodreads x2"></i><br/> .social.social-goodreads </div> <div className="col-6 col-sm-4 col-md-3 py-1"> <i className="social social-apple x2"></i><br/> .social.social-apple </div> <div className="col-6 col-sm-4 col-md-3 py-1"> <i className="social social-windows x2"></i><br/> .social.social-windows </div> <div className="col-6 col-sm-4 col-md-3 py-1"> <i className="social social-yelp x2"></i><br/> .social.social-yelp </div> <div className="col-6 col-sm-4 col-md-3 py-1"> <i className="social social-playstation x2"></i><br/> .social.social-playstation </div> <div className="col-6 col-sm-4 col-md-3 py-1"> <i className="social social-xbox x2"></i><br/> .social.social-xbox </div> <div className="col-6 col-sm-4 col-md-3 py-1"> <i className="social social-android x2"></i><br/> .social.social-android </div> <div className="col-6 col-sm-4 col-md-3 py-1"> <i className="social social-ios x2"></i><br/> .social.social-ios </div> <div className="col-6 col-sm-4 col-md-3 py-1"> <i className="social social-wikipedia x2"></i><br/> .social.social-wikipedia </div> <div className="col-6 col-sm-4 col-md-3 py-1"> <i className="social social-pocket x2"></i><br/> .social.social-pocket </div> <div className="col-6 col-sm-4 col-md-3 py-1"> <i className="social social-steam x2"></i><br/> .social.social-steam </div> <div className="col-6 col-sm-4 col-md-3 py-1"> <i className="social social-soundcloud x2"></i><br/> .social.social-soundcloud </div> <div className="col-6 col-sm-4 col-md-3 py-1"> <i className="social social-slideshare x2"></i><br/> .social.social-slideshare </div> <div className="col-6 col-sm-4 col-md-3 py-1"> <i className="social social-netflix x2"></i><br/> .social.social-netflix </div> <div className="col-6 col-sm-4 col-md-3 py-1"> <i className="social social-paypal x2"></i><br/> .social.social-paypal </div> <div className="col-6 col-sm-4 col-md-3 py-1"> <i className="social social-google-drive x2"></i><br/> .social.social-google-drive </div> <div className="col-6 col-sm-4 col-md-3 py-1"> <i className="social social-linux-foundation x2"></i><br/> .social.social-linux-foundation </div> <div className="col-6 col-sm-4 col-md-3 py-1"> <i className="social social-ebay x2"></i><br/> .social.social-ebay </div> <div className="col-6 col-sm-4 col-md-3 py-1"> <i className="social social-bitbucket x2"></i><br/> .social.social-bitbucket </div> <div className="col-6 col-sm-4 col-md-3 py-1"> <i className="social social-whatsapp x2"></i><br/> .social.social-whatsapp </div> <div className="col-6 col-sm-4 col-md-3 py-1"> <i className="social social-buffer x2"></i><br/> .social.social-buffer </div> <div className="col-6 col-sm-4 col-md-3 py-1"> <i className="social social-medium x2"></i><br/> .social.social-medium </div> <div className="col-6 col-sm-4 col-md-3 py-1"> <i className="social social-stackoverflow x2"></i><br/> .social.social-stackoverflow </div> <div className="col-6 col-sm-4 col-md-3 py-1"> <i className="social social-linux x2"></i><br/> .social.social-linux </div> <div className="col-6 col-sm-4 col-md-3 py-1"> <i className="social social-vk x2"></i><br/> .social.social-vk </div> <div className="col-6 col-sm-4 col-md-3 py-1"> <i className="social social-snapchat x2"></i><br/> .social.social-snapchat </div> <div className="col-6 col-sm-4 col-md-3 py-1"> <i className="social social-etsy x2"></i><br/> .social.social-etsy </div> <div className="col-6 col-sm-4 col-md-3 py-1"> <i className="social social-stackexchange x2"></i><br/> .social.social-stackexchange </div> </div> </div> </div> </div> ) } } export default GlyphiconsSocial;
src/js/components/RadioButton/stories/Simple.js
grommet/grommet
import React from 'react'; import { Box, Button, RadioButton } from 'grommet'; export const Simple = () => { const [selected, setSelected] = React.useState(); return ( <Box align="center" pad="large" gap="large"> <RadioButton label="option 1" name="name" value="option 1" checked={selected === 'option 1'} onChange={(event) => setSelected(event.target.value)} /> <Button label="clear" onClick={() => setSelected(undefined)} /> </Box> ); }; export default { title: 'Input/RadioButton/Simple', };
tpJpa/src/main/webapp/bower_components/swagger-ui/lib/jquery-1.8.0.min.js
CherifAbdoul/TpSirM1MIAGE_Ierlomenko-Kinfack-Haidara
/*! jQuery v@1.8.0 jquery.com | jquery.org/license */ (function(a,b){function G(a){var b=F[a]={};return p.each(a.split(s),function(a,c){b[c]=!0}),b}function J(a,c,d){if(d===b&&a.nodeType===1){var e="data-"+c.replace(I,"-$1").toLowerCase();d=a.getAttribute(e);if(typeof d=="string"){try{d=d==="true"?!0:d==="false"?!1:d==="null"?null:+d+""===d?+d:H.test(d)?p.parseJSON(d):d}catch(f){}p.data(a,c,d)}else d=b}return d}function K(a){var b;for(b in a){if(b==="data"&&p.isEmptyObject(a[b]))continue;if(b!=="toJSON")return!1}return!0}function ba(){return!1}function bb(){return!0}function bh(a){return!a||!a.parentNode||a.parentNode.nodeType===11}function bi(a,b){do a=a[b];while(a&&a.nodeType!==1);return a}function bj(a,b,c){b=b||0;if(p.isFunction(b))return p.grep(a,function(a,d){var e=!!b.call(a,d,a);return e===c});if(b.nodeType)return p.grep(a,function(a,d){return a===b===c});if(typeof b=="string"){var d=p.grep(a,function(a){return a.nodeType===1});if(be.test(b))return p.filter(b,d,!c);b=p.filter(b,d)}return p.grep(a,function(a,d){return p.inArray(a,b)>=0===c})}function bk(a){var b=bl.split("|"),c=a.createDocumentFragment();if(c.createElement)while(b.length)c.createElement(b.pop());return c}function bC(a,b){return a.getElementsByTagName(b)[0]||a.appendChild(a.ownerDocument.createElement(b))}function bD(a,b){if(b.nodeType!==1||!p.hasData(a))return;var c,d,e,f=p._data(a),g=p._data(b,f),h=f.events;if(h){delete g.handle,g.events={};for(c in h)for(d=0,e=h[c].length;d<e;d++)p.event.add(b,c,h[c][d])}g.data&&(g.data=p.extend({},g.data))}function bE(a,b){var c;if(b.nodeType!==1)return;b.clearAttributes&&b.clearAttributes(),b.mergeAttributes&&b.mergeAttributes(a),c=b.nodeName.toLowerCase(),c==="object"?(b.parentNode&&(b.outerHTML=a.outerHTML),p.support.html5Clone&&a.innerHTML&&!p.trim(b.innerHTML)&&(b.innerHTML=a.innerHTML)):c==="input"&&bv.test(a.type)?(b.defaultChecked=b.checked=a.checked,b.value!==a.value&&(b.value=a.value)):c==="option"?b.selected=a.defaultSelected:c==="input"||c==="textarea"?b.defaultValue=a.defaultValue:c==="script"&&b.text!==a.text&&(b.text=a.text),b.removeAttribute(p.expando)}function bF(a){return typeof a.getElementsByTagName!="undefined"?a.getElementsByTagName("*"):typeof a.querySelectorAll!="undefined"?a.querySelectorAll("*"):[]}function bG(a){bv.test(a.type)&&(a.defaultChecked=a.checked)}function bX(a,b){if(b in a)return b;var c=b.charAt(0).toUpperCase()+b.slice(1),d=b,e=bV.length;while(e--){b=bV[e]+c;if(b in a)return b}return d}function bY(a,b){return a=b||a,p.css(a,"display")==="none"||!p.contains(a.ownerDocument,a)}function bZ(a,b){var c,d,e=[],f=0,g=a.length;for(;f<g;f++){c=a[f];if(!c.style)continue;e[f]=p._data(c,"olddisplay"),b?(!e[f]&&c.style.display==="none"&&(c.style.display=""),c.style.display===""&&bY(c)&&(e[f]=p._data(c,"olddisplay",cb(c.nodeName)))):(d=bH(c,"display"),!e[f]&&d!=="none"&&p._data(c,"olddisplay",d))}for(f=0;f<g;f++){c=a[f];if(!c.style)continue;if(!b||c.style.display==="none"||c.style.display==="")c.style.display=b?e[f]||"":"none"}return a}function b$(a,b,c){var d=bO.exec(b);return d?Math.max(0,d[1]-(c||0))+(d[2]||"px"):b}function b_(a,b,c,d){var e=c===(d?"border":"content")?4:b==="width"?1:0,f=0;for(;e<4;e+=2)c==="margin"&&(f+=p.css(a,c+bU[e],!0)),d?(c==="content"&&(f-=parseFloat(bH(a,"padding"+bU[e]))||0),c!=="margin"&&(f-=parseFloat(bH(a,"border"+bU[e]+"Width"))||0)):(f+=parseFloat(bH(a,"padding"+bU[e]))||0,c!=="padding"&&(f+=parseFloat(bH(a,"border"+bU[e]+"Width"))||0));return f}function ca(a,b,c){var d=b==="width"?a.offsetWidth:a.offsetHeight,e=!0,f=p.support.boxSizing&&p.css(a,"boxSizing")==="border-box";if(d<=0){d=bH(a,b);if(d<0||d==null)d=a.style[b];if(bP.test(d))return d;e=f&&(p.support.boxSizingReliable||d===a.style[b]),d=parseFloat(d)||0}return d+b_(a,b,c||(f?"border":"content"),e)+"px"}function cb(a){if(bR[a])return bR[a];var b=p("<"+a+">").appendTo(e.body),c=b.css("display");b.remove();if(c==="none"||c===""){bI=e.body.appendChild(bI||p.extend(e.createElement("iframe"),{frameBorder:0,width:0,height:0}));if(!bJ||!bI.createElement)bJ=(bI.contentWindow||bI.contentDocument).document,bJ.write("<!doctype html><html><body>"),bJ.close();b=bJ.body.appendChild(bJ.createElement(a)),c=bH(b,"display"),e.body.removeChild(bI)}return bR[a]=c,c}function ch(a,b,c,d){var e;if(p.isArray(b))p.each(b,function(b,e){c||cd.test(a)?d(a,e):ch(a+"["+(typeof e=="object"?b:"")+"]",e,c,d)});else if(!c&&p.type(b)==="object")for(e in b)ch(a+"["+e+"]",b[e],c,d);else d(a,b)}function cy(a){return function(b,c){typeof b!="string"&&(c=b,b="*");var d,e,f,g=b.toLowerCase().split(s),h=0,i=g.length;if(p.isFunction(c))for(;h<i;h++)d=g[h],f=/^\+/.test(d),f&&(d=d.substr(1)||"*"),e=a[d]=a[d]||[],e[f?"unshift":"push"](c)}}function cz(a,c,d,e,f,g){f=f||c.dataTypes[0],g=g||{},g[f]=!0;var h,i=a[f],j=0,k=i?i.length:0,l=a===cu;for(;j<k&&(l||!h);j++)h=i[j](c,d,e),typeof h=="string"&&(!l||g[h]?h=b:(c.dataTypes.unshift(h),h=cz(a,c,d,e,h,g)));return(l||!h)&&!g["*"]&&(h=cz(a,c,d,e,"*",g)),h}function cA(a,c){var d,e,f=p.ajaxSettings.flatOptions||{};for(d in c)c[d]!==b&&((f[d]?a:e||(e={}))[d]=c[d]);e&&p.extend(!0,a,e)}function cB(a,c,d){var e,f,g,h,i=a.contents,j=a.dataTypes,k=a.responseFields;for(f in k)f in d&&(c[k[f]]=d[f]);while(j[0]==="*")j.shift(),e===b&&(e=a.mimeType||c.getResponseHeader("content-type"));if(e)for(f in i)if(i[f]&&i[f].test(e)){j.unshift(f);break}if(j[0]in d)g=j[0];else{for(f in d){if(!j[0]||a.converters[f+" "+j[0]]){g=f;break}h||(h=f)}g=g||h}if(g)return g!==j[0]&&j.unshift(g),d[g]}function cC(a,b){var c,d,e,f,g=a.dataTypes.slice(),h=g[0],i={},j=0;a.dataFilter&&(b=a.dataFilter(b,a.dataType));if(g[1])for(c in a.converters)i[c.toLowerCase()]=a.converters[c];for(;e=g[++j];)if(e!=="*"){if(h!=="*"&&h!==e){c=i[h+" "+e]||i["* "+e];if(!c)for(d in i){f=d.split(" ");if(f[1]===e){c=i[h+" "+f[0]]||i["* "+f[0]];if(c){c===!0?c=i[d]:i[d]!==!0&&(e=f[0],g.splice(j--,0,e));break}}}if(c!==!0)if(c&&a["throws"])b=c(b);else try{b=c(b)}catch(k){return{state:"parsererror",error:c?k:"No conversion from "+h+" to "+e}}}h=e}return{state:"success",data:b}}function cK(){try{return new a.XMLHttpRequest}catch(b){}}function cL(){try{return new a.ActiveXObject("Microsoft.XMLHTTP")}catch(b){}}function cT(){return setTimeout(function(){cM=b},0),cM=p.now()}function cU(a,b){p.each(b,function(b,c){var d=(cS[b]||[]).concat(cS["*"]),e=0,f=d.length;for(;e<f;e++)if(d[e].call(a,b,c))return})}function cV(a,b,c){var d,e=0,f=0,g=cR.length,h=p.Deferred().always(function(){delete i.elem}),i=function(){var b=cM||cT(),c=Math.max(0,j.startTime+j.duration-b),d=1-(c/j.duration||0),e=0,f=j.tweens.length;for(;e<f;e++)j.tweens[e].run(d);return h.notifyWith(a,[j,d,c]),d<1&&f?c:(h.resolveWith(a,[j]),!1)},j=h.promise({elem:a,props:p.extend({},b),opts:p.extend(!0,{specialEasing:{}},c),originalProperties:b,originalOptions:c,startTime:cM||cT(),duration:c.duration,tweens:[],createTween:function(b,c,d){var e=p.Tween(a,j.opts,b,c,j.opts.specialEasing[b]||j.opts.easing);return j.tweens.push(e),e},stop:function(b){var c=0,d=b?j.tweens.length:0;for(;c<d;c++)j.tweens[c].run(1);return b?h.resolveWith(a,[j,b]):h.rejectWith(a,[j,b]),this}}),k=j.props;cW(k,j.opts.specialEasing);for(;e<g;e++){d=cR[e].call(j,a,k,j.opts);if(d)return d}return cU(j,k),p.isFunction(j.opts.start)&&j.opts.start.call(a,j),p.fx.timer(p.extend(i,{anim:j,queue:j.opts.queue,elem:a})),j.progress(j.opts.progress).done(j.opts.done,j.opts.complete).fail(j.opts.fail).always(j.opts.always)}function cW(a,b){var c,d,e,f,g;for(c in a){d=p.camelCase(c),e=b[d],f=a[c],p.isArray(f)&&(e=f[1],f=a[c]=f[0]),c!==d&&(a[d]=f,delete a[c]),g=p.cssHooks[d];if(g&&"expand"in g){f=g.expand(f),delete a[d];for(c in f)c in a||(a[c]=f[c],b[c]=e)}else b[d]=e}}function cX(a,b,c){var d,e,f,g,h,i,j,k,l=this,m=a.style,n={},o=[],q=a.nodeType&&bY(a);c.queue||(j=p._queueHooks(a,"fx"),j.unqueued==null&&(j.unqueued=0,k=j.empty.fire,j.empty.fire=function(){j.unqueued||k()}),j.unqueued++,l.always(function(){l.always(function(){j.unqueued--,p.queue(a,"fx").length||j.empty.fire()})})),a.nodeType===1&&("height"in b||"width"in b)&&(c.overflow=[m.overflow,m.overflowX,m.overflowY],p.css(a,"display")==="inline"&&p.css(a,"float")==="none"&&(!p.support.inlineBlockNeedsLayout||cb(a.nodeName)==="inline"?m.display="inline-block":m.zoom=1)),c.overflow&&(m.overflow="hidden",p.support.shrinkWrapBlocks||l.done(function(){m.overflow=c.overflow[0],m.overflowX=c.overflow[1],m.overflowY=c.overflow[2]}));for(d in b){f=b[d];if(cO.exec(f)){delete b[d];if(f===(q?"hide":"show"))continue;o.push(d)}}g=o.length;if(g){h=p._data(a,"fxshow")||p._data(a,"fxshow",{}),q?p(a).show():l.done(function(){p(a).hide()}),l.done(function(){var b;p.removeData(a,"fxshow",!0);for(b in n)p.style(a,b,n[b])});for(d=0;d<g;d++)e=o[d],i=l.createTween(e,q?h[e]:0),n[e]=h[e]||p.style(a,e),e in h||(h[e]=i.start,q&&(i.end=i.start,i.start=e==="width"||e==="height"?1:0))}}function cY(a,b,c,d,e){return new cY.prototype.init(a,b,c,d,e)}function cZ(a,b){var c,d={height:a},e=0;for(;e<4;e+=2-b)c=bU[e],d["margin"+c]=d["padding"+c]=a;return b&&(d.opacity=d.width=a),d}function c_(a){return p.isWindow(a)?a:a.nodeType===9?a.defaultView||a.parentWindow:!1}var c,d,e=a.document,f=a.location,g=a.navigator,h=a.jQuery,i=a.$,j=Array.prototype.push,k=Array.prototype.slice,l=Array.prototype.indexOf,m=Object.prototype.toString,n=Object.prototype.hasOwnProperty,o=String.prototype.trim,p=function(a,b){return new p.fn.init(a,b,c)},q=/[\-+]?(?:\d*\.|)\d+(?:[eE][\-+]?\d+|)/.source,r=/\S/,s=/\s+/,t=r.test(" ")?/^[\s\xA0]+|[\s\xA0]+$/g:/^\s+|\s+$/g,u=/^(?:[^#<]*(<[\w\W]+>)[^>]*$|#([\w\-]*)$)/,v=/^<(\w+)\s*\/?>(?:<\/\1>|)$/,w=/^[\],:{}\s]*$/,x=/(?:^|:|,)(?:\s*\[)+/g,y=/\\(?:["\\\/bfnrt]|u[\da-fA-F]{4})/g,z=/"[^"\\\r\n]*"|true|false|null|-?(?:\d\d*\.|)\d+(?:[eE][\-+]?\d+|)/g,A=/^-ms-/,B=/-([\da-z])/gi,C=function(a,b){return(b+"").toUpperCase()},D=function(){e.addEventListener?(e.removeEventListener("DOMContentLoaded",D,!1),p.ready()):e.readyState==="complete"&&(e.detachEvent("onreadystatechange",D),p.ready())},E={};p.fn=p.prototype={constructor:p,init:function(a,c,d){var f,g,h,i;if(!a)return this;if(a.nodeType)return this.context=this[0]=a,this.length=1,this;if(typeof a=="string"){a.charAt(0)==="<"&&a.charAt(a.length-1)===">"&&a.length>=3?f=[null,a,null]:f=u.exec(a);if(f&&(f[1]||!c)){if(f[1])return c=c instanceof p?c[0]:c,i=c&&c.nodeType?c.ownerDocument||c:e,a=p.parseHTML(f[1],i,!0),v.test(f[1])&&p.isPlainObject(c)&&this.attr.call(a,c,!0),p.merge(this,a);g=e.getElementById(f[2]);if(g&&g.parentNode){if(g.id!==f[2])return d.find(a);this.length=1,this[0]=g}return this.context=e,this.selector=a,this}return!c||c.jquery?(c||d).find(a):this.constructor(c).find(a)}return p.isFunction(a)?d.ready(a):(a.selector!==b&&(this.selector=a.selector,this.context=a.context),p.makeArray(a,this))},selector:"",jquery:"1.8.0",length:0,size:function(){return this.length},toArray:function(){return k.call(this)},get:function(a){return a==null?this.toArray():a<0?this[this.length+a]:this[a]},pushStack:function(a,b,c){var d=p.merge(this.constructor(),a);return d.prevObject=this,d.context=this.context,b==="find"?d.selector=this.selector+(this.selector?" ":"")+c:b&&(d.selector=this.selector+"."+b+"("+c+")"),d},each:function(a,b){return p.each(this,a,b)},ready:function(a){return p.ready.promise().done(a),this},eq:function(a){return a=+a,a===-1?this.slice(a):this.slice(a,a+1)},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},slice:function(){return this.pushStack(k.apply(this,arguments),"slice",k.call(arguments).join(","))},map:function(a){return this.pushStack(p.map(this,function(b,c){return a.call(b,c,b)}))},end:function(){return this.prevObject||this.constructor(null)},push:j,sort:[].sort,splice:[].splice},p.fn.init.prototype=p.fn,p.extend=p.fn.extend=function(){var a,c,d,e,f,g,h=arguments[0]||{},i=1,j=arguments.length,k=!1;typeof h=="boolean"&&(k=h,h=arguments[1]||{},i=2),typeof h!="object"&&!p.isFunction(h)&&(h={}),j===i&&(h=this,--i);for(;i<j;i++)if((a=arguments[i])!=null)for(c in a){d=h[c],e=a[c];if(h===e)continue;k&&e&&(p.isPlainObject(e)||(f=p.isArray(e)))?(f?(f=!1,g=d&&p.isArray(d)?d:[]):g=d&&p.isPlainObject(d)?d:{},h[c]=p.extend(k,g,e)):e!==b&&(h[c]=e)}return h},p.extend({noConflict:function(b){return a.$===p&&(a.$=i),b&&a.jQuery===p&&(a.jQuery=h),p},isReady:!1,readyWait:1,holdReady:function(a){a?p.readyWait++:p.ready(!0)},ready:function(a){if(a===!0?--p.readyWait:p.isReady)return;if(!e.body)return setTimeout(p.ready,1);p.isReady=!0;if(a!==!0&&--p.readyWait>0)return;d.resolveWith(e,[p]),p.fn.trigger&&p(e).trigger("ready").off("ready")},isFunction:function(a){return p.type(a)==="function"},isArray:Array.isArray||function(a){return p.type(a)==="array"},isWindow:function(a){return a!=null&&a==a.window},isNumeric:function(a){return!isNaN(parseFloat(a))&&isFinite(a)},type:function(a){return a==null?String(a):E[m.call(a)]||"object"},isPlainObject:function(a){if(!a||p.type(a)!=="object"||a.nodeType||p.isWindow(a))return!1;try{if(a.constructor&&!n.call(a,"constructor")&&!n.call(a.constructor.prototype,"isPrototypeOf"))return!1}catch(c){return!1}var d;for(d in a);return d===b||n.call(a,d)},isEmptyObject:function(a){var b;for(b in a)return!1;return!0},error:function(a){throw new Error(a)},parseHTML:function(a,b,c){var d;return!a||typeof a!="string"?null:(typeof b=="boolean"&&(c=b,b=0),b=b||e,(d=v.exec(a))?[b.createElement(d[1])]:(d=p.buildFragment([a],b,c?null:[]),p.merge([],(d.cacheable?p.clone(d.fragment):d.fragment).childNodes)))},parseJSON:function(b){if(!b||typeof b!="string")return null;b=p.trim(b);if(a.JSON&&a.JSON.parse)return a.JSON.parse(b);if(w.test(b.replace(y,"@").replace(z,"]").replace(x,"")))return(new Function("return "+b))();p.error("Invalid JSON: "+b)},parseXML:function(c){var d,e;if(!c||typeof c!="string")return null;try{a.DOMParser?(e=new DOMParser,d=e.parseFromString(c,"text/xml")):(d=new ActiveXObject("Microsoft.XMLDOM"),d.async="false",d.loadXML(c))}catch(f){d=b}return(!d||!d.documentElement||d.getElementsByTagName("parsererror").length)&&p.error("Invalid XML: "+c),d},noop:function(){},globalEval:function(b){b&&r.test(b)&&(a.execScript||function(b){a.eval.call(a,b)})(b)},camelCase:function(a){return a.replace(A,"ms-").replace(B,C)},nodeName:function(a,b){return a.nodeName&&a.nodeName.toUpperCase()===b.toUpperCase()},each:function(a,c,d){var e,f=0,g=a.length,h=g===b||p.isFunction(a);if(d){if(h){for(e in a)if(c.apply(a[e],d)===!1)break}else for(;f<g;)if(c.apply(a[f++],d)===!1)break}else if(h){for(e in a)if(c.call(a[e],e,a[e])===!1)break}else for(;f<g;)if(c.call(a[f],f,a[f++])===!1)break;return a},trim:o?function(a){return a==null?"":o.call(a)}:function(a){return a==null?"":a.toString().replace(t,"")},makeArray:function(a,b){var c,d=b||[];return a!=null&&(c=p.type(a),a.length==null||c==="string"||c==="function"||c==="regexp"||p.isWindow(a)?j.call(d,a):p.merge(d,a)),d},inArray:function(a,b,c){var d;if(b){if(l)return l.call(b,a,c);d=b.length,c=c?c<0?Math.max(0,d+c):c:0;for(;c<d;c++)if(c in b&&b[c]===a)return c}return-1},merge:function(a,c){var d=c.length,e=a.length,f=0;if(typeof d=="number")for(;f<d;f++)a[e++]=c[f];else while(c[f]!==b)a[e++]=c[f++];return a.length=e,a},grep:function(a,b,c){var d,e=[],f=0,g=a.length;c=!!c;for(;f<g;f++)d=!!b(a[f],f),c!==d&&e.push(a[f]);return e},map:function(a,c,d){var e,f,g=[],h=0,i=a.length,j=a instanceof p||i!==b&&typeof i=="number"&&(i>0&&a[0]&&a[i-1]||i===0||p.isArray(a));if(j)for(;h<i;h++)e=c(a[h],h,d),e!=null&&(g[g.length]=e);else for(f in a)e=c(a[f],f,d),e!=null&&(g[g.length]=e);return g.concat.apply([],g)},guid:1,proxy:function(a,c){var d,e,f;return typeof c=="string"&&(d=a[c],c=a,a=d),p.isFunction(a)?(e=k.call(arguments,2),f=function(){return a.apply(c,e.concat(k.call(arguments)))},f.guid=a.guid=a.guid||f.guid||p.guid++,f):b},access:function(a,c,d,e,f,g,h){var i,j=d==null,k=0,l=a.length;if(d&&typeof d=="object"){for(k in d)p.access(a,c,k,d[k],1,g,e);f=1}else if(e!==b){i=h===b&&p.isFunction(e),j&&(i?(i=c,c=function(a,b,c){return i.call(p(a),c)}):(c.call(a,e),c=null));if(c)for(;k<l;k++)c(a[k],d,i?e.call(a[k],k,c(a[k],d)):e,h);f=1}return f?a:j?c.call(a):l?c(a[0],d):g},now:function(){return(new Date).getTime()}}),p.ready.promise=function(b){if(!d){d=p.Deferred();if(e.readyState==="complete"||e.readyState!=="loading"&&e.addEventListener)setTimeout(p.ready,1);else if(e.addEventListener)e.addEventListener("DOMContentLoaded",D,!1),a.addEventListener("load",p.ready,!1);else{e.attachEvent("onreadystatechange",D),a.attachEvent("onload",p.ready);var c=!1;try{c=a.frameElement==null&&e.documentElement}catch(f){}c&&c.doScroll&&function g(){if(!p.isReady){try{c.doScroll("left")}catch(a){return setTimeout(g,50)}p.ready()}}()}}return d.promise(b)},p.each("Boolean Number String Function Array Date RegExp Object".split(" "),function(a,b){E["[object "+b+"]"]=b.toLowerCase()}),c=p(e);var F={};p.Callbacks=function(a){a=typeof a=="string"?F[a]||G(a):p.extend({},a);var c,d,e,f,g,h,i=[],j=!a.once&&[],k=function(b){c=a.memory&&b,d=!0,h=f||0,f=0,g=i.length,e=!0;for(;i&&h<g;h++)if(i[h].apply(b[0],b[1])===!1&&a.stopOnFalse){c=!1;break}e=!1,i&&(j?j.length&&k(j.shift()):c?i=[]:l.disable())},l={add:function(){if(i){var b=i.length;(function d(b){p.each(b,function(b,c){p.isFunction(c)&&(!a.unique||!l.has(c))?i.push(c):c&&c.length&&d(c)})})(arguments),e?g=i.length:c&&(f=b,k(c))}return this},remove:function(){return i&&p.each(arguments,function(a,b){var c;while((c=p.inArray(b,i,c))>-1)i.splice(c,1),e&&(c<=g&&g--,c<=h&&h--)}),this},has:function(a){return p.inArray(a,i)>-1},empty:function(){return i=[],this},disable:function(){return i=j=c=b,this},disabled:function(){return!i},lock:function(){return j=b,c||l.disable(),this},locked:function(){return!j},fireWith:function(a,b){return b=b||[],b=[a,b.slice?b.slice():b],i&&(!d||j)&&(e?j.push(b):k(b)),this},fire:function(){return l.fireWith(this,arguments),this},fired:function(){return!!d}};return l},p.extend({Deferred:function(a){var b=[["resolve","done",p.Callbacks("once memory"),"resolved"],["reject","fail",p.Callbacks("once memory"),"rejected"],["notify","progress",p.Callbacks("memory")]],c="pending",d={state:function(){return c},always:function(){return e.done(arguments).fail(arguments),this},then:function(){var a=arguments;return p.Deferred(function(c){p.each(b,function(b,d){var f=d[0],g=a[b];e[d[1]](p.isFunction(g)?function(){var a=g.apply(this,arguments);a&&p.isFunction(a.promise)?a.promise().done(c.resolve).fail(c.reject).progress(c.notify):c[f+"With"](this===e?c:this,[a])}:c[f])}),a=null}).promise()},promise:function(a){return typeof a=="object"?p.extend(a,d):d}},e={};return d.pipe=d.then,p.each(b,function(a,f){var g=f[2],h=f[3];d[f[1]]=g.add,h&&g.add(function(){c=h},b[a^1][2].disable,b[2][2].lock),e[f[0]]=g.fire,e[f[0]+"With"]=g.fireWith}),d.promise(e),a&&a.call(e,e),e},when:function(a){var b=0,c=k.call(arguments),d=c.length,e=d!==1||a&&p.isFunction(a.promise)?d:0,f=e===1?a:p.Deferred(),g=function(a,b,c){return function(d){b[a]=this,c[a]=arguments.length>1?k.call(arguments):d,c===h?f.notifyWith(b,c):--e||f.resolveWith(b,c)}},h,i,j;if(d>1){h=new Array(d),i=new Array(d),j=new Array(d);for(;b<d;b++)c[b]&&p.isFunction(c[b].promise)?c[b].promise().done(g(b,j,c)).fail(f.reject).progress(g(b,i,h)):--e}return e||f.resolveWith(j,c),f.promise()}}),p.support=function(){var b,c,d,f,g,h,i,j,k,l,m,n=e.createElement("div");n.setAttribute("className","t"),n.innerHTML=" <link/><table></table><a href='/a'>a</a><input type='checkbox'/>",c=n.getElementsByTagName("*"),d=n.getElementsByTagName("a")[0],d.style.cssText="top:1px;float:left;opacity:.5";if(!c||!c.length||!d)return{};f=e.createElement("select"),g=f.appendChild(e.createElement("option")),h=n.getElementsByTagName("input")[0],b={leadingWhitespace:n.firstChild.nodeType===3,tbody:!n.getElementsByTagName("tbody").length,htmlSerialize:!!n.getElementsByTagName("link").length,style:/top/.test(d.getAttribute("style")),hrefNormalized:d.getAttribute("href")==="/a",opacity:/^0.5/.test(d.style.opacity),cssFloat:!!d.style.cssFloat,checkOn:h.value==="on",optSelected:g.selected,getSetAttribute:n.className!=="t",enctype:!!e.createElement("form").enctype,html5Clone:e.createElement("nav").cloneNode(!0).outerHTML!=="<:nav></:nav>",boxModel:e.compatMode==="CSS1Compat",submitBubbles:!0,changeBubbles:!0,focusinBubbles:!1,deleteExpando:!0,noCloneEvent:!0,inlineBlockNeedsLayout:!1,shrinkWrapBlocks:!1,reliableMarginRight:!0,boxSizingReliable:!0,pixelPosition:!1},h.checked=!0,b.noCloneChecked=h.cloneNode(!0).checked,f.disabled=!0,b.optDisabled=!g.disabled;try{delete n.test}catch(o){b.deleteExpando=!1}!n.addEventListener&&n.attachEvent&&n.fireEvent&&(n.attachEvent("onclick",m=function(){b.noCloneEvent=!1}),n.cloneNode(!0).fireEvent("onclick"),n.detachEvent("onclick",m)),h=e.createElement("input"),h.value="t",h.setAttribute("type","radio"),b.radioValue=h.value==="t",h.setAttribute("checked","checked"),h.setAttribute("name","t"),n.appendChild(h),i=e.createDocumentFragment(),i.appendChild(n.lastChild),b.checkClone=i.cloneNode(!0).cloneNode(!0).lastChild.checked,b.appendChecked=h.checked,i.removeChild(h),i.appendChild(n);if(n.attachEvent)for(k in{submit:!0,change:!0,focusin:!0})j="on"+k,l=j in n,l||(n.setAttribute(j,"return;"),l=typeof n[j]=="function"),b[k+"Bubbles"]=l;return p(function(){var c,d,f,g,h="padding:0;margin:0;border:0;display:block;overflow:hidden;",i=e.getElementsByTagName("body")[0];if(!i)return;c=e.createElement("div"),c.style.cssText="visibility:hidden;border:0;width:0;height:0;position:static;top:0;margin-top:1px",i.insertBefore(c,i.firstChild),d=e.createElement("div"),c.appendChild(d),d.innerHTML="<table><tr><td></td><td>t</td></tr></table>",f=d.getElementsByTagName("td"),f[0].style.cssText="padding:0;margin:0;border:0;display:none",l=f[0].offsetHeight===0,f[0].style.display="",f[1].style.display="none",b.reliableHiddenOffsets=l&&f[0].offsetHeight===0,d.innerHTML="",d.style.cssText="box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;padding:1px;border:1px;display:block;width:4px;margin-top:1%;position:absolute;top:1%;",b.boxSizing=d.offsetWidth===4,b.doesNotIncludeMarginInBodyOffset=i.offsetTop!==1,a.getComputedStyle&&(b.pixelPosition=(a.getComputedStyle(d,null)||{}).top!=="1%",b.boxSizingReliable=(a.getComputedStyle(d,null)||{width:"4px"}).width==="4px",g=e.createElement("div"),g.style.cssText=d.style.cssText=h,g.style.marginRight=g.style.width="0",d.style.width="1px",d.appendChild(g),b.reliableMarginRight=!parseFloat((a.getComputedStyle(g,null)||{}).marginRight)),typeof d.style.zoom!="undefined"&&(d.innerHTML="",d.style.cssText=h+"width:1px;padding:1px;display:inline;zoom:1",b.inlineBlockNeedsLayout=d.offsetWidth===3,d.style.display="block",d.style.overflow="visible",d.innerHTML="<div></div>",d.firstChild.style.width="5px",b.shrinkWrapBlocks=d.offsetWidth!==3,c.style.zoom=1),i.removeChild(c),c=d=f=g=null}),i.removeChild(n),c=d=f=g=h=i=n=null,b}();var H=/^(?:\{.*\}|\[.*\])$/,I=/([A-Z])/g;p.extend({cache:{},deletedIds:[],uuid:0,expando:"jQuery"+(p.fn.jquery+Math.random()).replace(/\D/g,""),noData:{embed:!0,object:"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000",applet:!0},hasData:function(a){return a=a.nodeType?p.cache[a[p.expando]]:a[p.expando],!!a&&!K(a)},data:function(a,c,d,e){if(!p.acceptData(a))return;var f,g,h=p.expando,i=typeof c=="string",j=a.nodeType,k=j?p.cache:a,l=j?a[h]:a[h]&&h;if((!l||!k[l]||!e&&!k[l].data)&&i&&d===b)return;l||(j?a[h]=l=p.deletedIds.pop()||++p.uuid:l=h),k[l]||(k[l]={},j||(k[l].toJSON=p.noop));if(typeof c=="object"||typeof c=="function")e?k[l]=p.extend(k[l],c):k[l].data=p.extend(k[l].data,c);return f=k[l],e||(f.data||(f.data={}),f=f.data),d!==b&&(f[p.camelCase(c)]=d),i?(g=f[c],g==null&&(g=f[p.camelCase(c)])):g=f,g},removeData:function(a,b,c){if(!p.acceptData(a))return;var d,e,f,g=a.nodeType,h=g?p.cache:a,i=g?a[p.expando]:p.expando;if(!h[i])return;if(b){d=c?h[i]:h[i].data;if(d){p.isArray(b)||(b in d?b=[b]:(b=p.camelCase(b),b in d?b=[b]:b=b.split(" ")));for(e=0,f=b.length;e<f;e++)delete d[b[e]];if(!(c?K:p.isEmptyObject)(d))return}}if(!c){delete h[i].data;if(!K(h[i]))return}g?p.cleanData([a],!0):p.support.deleteExpando||h!=h.window?delete h[i]:h[i]=null},_data:function(a,b,c){return p.data(a,b,c,!0)},acceptData:function(a){var b=a.nodeName&&p.noData[a.nodeName.toLowerCase()];return!b||b!==!0&&a.getAttribute("classid")===b}}),p.fn.extend({data:function(a,c){var d,e,f,g,h,i=this[0],j=0,k=null;if(a===b){if(this.length){k=p.data(i);if(i.nodeType===1&&!p._data(i,"parsedAttrs")){f=i.attributes;for(h=f.length;j<h;j++)g=f[j].name,g.indexOf("data-")===0&&(g=p.camelCase(g.substring(5)),J(i,g,k[g]));p._data(i,"parsedAttrs",!0)}}return k}return typeof a=="object"?this.each(function(){p.data(this,a)}):(d=a.split(".",2),d[1]=d[1]?"."+d[1]:"",e=d[1]+"!",p.access(this,function(c){if(c===b)return k=this.triggerHandler("getData"+e,[d[0]]),k===b&&i&&(k=p.data(i,a),k=J(i,a,k)),k===b&&d[1]?this.data(d[0]):k;d[1]=c,this.each(function(){var b=p(this);b.triggerHandler("setData"+e,d),p.data(this,a,c),b.triggerHandler("changeData"+e,d)})},null,c,arguments.length>1,null,!1))},removeData:function(a){return this.each(function(){p.removeData(this,a)})}}),p.extend({queue:function(a,b,c){var d;if(a)return b=(b||"fx")+"queue",d=p._data(a,b),c&&(!d||p.isArray(c)?d=p._data(a,b,p.makeArray(c)):d.push(c)),d||[]},dequeue:function(a,b){b=b||"fx";var c=p.queue(a,b),d=c.shift(),e=p._queueHooks(a,b),f=function(){p.dequeue(a,b)};d==="inprogress"&&(d=c.shift()),d&&(b==="fx"&&c.unshift("inprogress"),delete e.stop,d.call(a,f,e)),!c.length&&e&&e.empty.fire()},_queueHooks:function(a,b){var c=b+"queueHooks";return p._data(a,c)||p._data(a,c,{empty:p.Callbacks("once memory").add(function(){p.removeData(a,b+"queue",!0),p.removeData(a,c,!0)})})}}),p.fn.extend({queue:function(a,c){var d=2;return typeof a!="string"&&(c=a,a="fx",d--),arguments.length<d?p.queue(this[0],a):c===b?this:this.each(function(){var b=p.queue(this,a,c);p._queueHooks(this,a),a==="fx"&&b[0]!=="inprogress"&&p.dequeue(this,a)})},dequeue:function(a){return this.each(function(){p.dequeue(this,a)})},delay:function(a,b){return a=p.fx?p.fx.speeds[a]||a:a,b=b||"fx",this.queue(b,function(b,c){var d=setTimeout(b,a);c.stop=function(){clearTimeout(d)}})},clearQueue:function(a){return this.queue(a||"fx",[])},promise:function(a,c){var d,e=1,f=p.Deferred(),g=this,h=this.length,i=function(){--e||f.resolveWith(g,[g])};typeof a!="string"&&(c=a,a=b),a=a||"fx";while(h--)(d=p._data(g[h],a+"queueHooks"))&&d.empty&&(e++,d.empty.add(i));return i(),f.promise(c)}});var L,M,N,O=/[\t\r\n]/g,P=/\r/g,Q=/^(?:button|input)$/i,R=/^(?:button|input|object|select|textarea)$/i,S=/^a(?:rea|)$/i,T=/^(?:autofocus|autoplay|async|checked|controls|defer|disabled|hidden|loop|multiple|open|readonly|required|scoped|selected)$/i,U=p.support.getSetAttribute;p.fn.extend({attr:function(a,b){return p.access(this,p.attr,a,b,arguments.length>1)},removeAttr:function(a){return this.each(function(){p.removeAttr(this,a)})},prop:function(a,b){return p.access(this,p.prop,a,b,arguments.length>1)},removeProp:function(a){return a=p.propFix[a]||a,this.each(function(){try{this[a]=b,delete this[a]}catch(c){}})},addClass:function(a){var b,c,d,e,f,g,h;if(p.isFunction(a))return this.each(function(b){p(this).addClass(a.call(this,b,this.className))});if(a&&typeof a=="string"){b=a.split(s);for(c=0,d=this.length;c<d;c++){e=this[c];if(e.nodeType===1)if(!e.className&&b.length===1)e.className=a;else{f=" "+e.className+" ";for(g=0,h=b.length;g<h;g++)~f.indexOf(" "+b[g]+" ")||(f+=b[g]+" ");e.className=p.trim(f)}}}return this},removeClass:function(a){var c,d,e,f,g,h,i;if(p.isFunction(a))return this.each(function(b){p(this).removeClass(a.call(this,b,this.className))});if(a&&typeof a=="string"||a===b){c=(a||"").split(s);for(h=0,i=this.length;h<i;h++){e=this[h];if(e.nodeType===1&&e.className){d=(" "+e.className+" ").replace(O," ");for(f=0,g=c.length;f<g;f++)while(d.indexOf(" "+c[f]+" ")>-1)d=d.replace(" "+c[f]+" "," ");e.className=a?p.trim(d):""}}}return this},toggleClass:function(a,b){var c=typeof a,d=typeof b=="boolean";return p.isFunction(a)?this.each(function(c){p(this).toggleClass(a.call(this,c,this.className,b),b)}):this.each(function(){if(c==="string"){var e,f=0,g=p(this),h=b,i=a.split(s);while(e=i[f++])h=d?h:!g.hasClass(e),g[h?"addClass":"removeClass"](e)}else if(c==="undefined"||c==="boolean")this.className&&p._data(this,"__className__",this.className),this.className=this.className||a===!1?"":p._data(this,"__className__")||""})},hasClass:function(a){var b=" "+a+" ",c=0,d=this.length;for(;c<d;c++)if(this[c].nodeType===1&&(" "+this[c].className+" ").replace(O," ").indexOf(b)>-1)return!0;return!1},val:function(a){var c,d,e,f=this[0];if(!arguments.length){if(f)return c=p.valHooks[f.type]||p.valHooks[f.nodeName.toLowerCase()],c&&"get"in c&&(d=c.get(f,"value"))!==b?d:(d=f.value,typeof d=="string"?d.replace(P,""):d==null?"":d);return}return e=p.isFunction(a),this.each(function(d){var f,g=p(this);if(this.nodeType!==1)return;e?f=a.call(this,d,g.val()):f=a,f==null?f="":typeof f=="number"?f+="":p.isArray(f)&&(f=p.map(f,function(a){return a==null?"":a+""})),c=p.valHooks[this.type]||p.valHooks[this.nodeName.toLowerCase()];if(!c||!("set"in c)||c.set(this,f,"value")===b)this.value=f})}}),p.extend({valHooks:{option:{get:function(a){var b=a.attributes.value;return!b||b.specified?a.value:a.text}},select:{get:function(a){var b,c,d,e,f=a.selectedIndex,g=[],h=a.options,i=a.type==="select-one";if(f<0)return null;c=i?f:0,d=i?f+1:h.length;for(;c<d;c++){e=h[c];if(e.selected&&(p.support.optDisabled?!e.disabled:e.getAttribute("disabled")===null)&&(!e.parentNode.disabled||!p.nodeName(e.parentNode,"optgroup"))){b=p(e).val();if(i)return b;g.push(b)}}return i&&!g.length&&h.length?p(h[f]).val():g},set:function(a,b){var c=p.makeArray(b);return p(a).find("option").each(function(){this.selected=p.inArray(p(this).val(),c)>=0}),c.length||(a.selectedIndex=-1),c}}},attrFn:{},attr:function(a,c,d,e){var f,g,h,i=a.nodeType;if(!a||i===3||i===8||i===2)return;if(e&&p.isFunction(p.fn[c]))return p(a)[c](d);if(typeof a.getAttribute=="undefined")return p.prop(a,c,d);h=i!==1||!p.isXMLDoc(a),h&&(c=c.toLowerCase(),g=p.attrHooks[c]||(T.test(c)?M:L));if(d!==b){if(d===null){p.removeAttr(a,c);return}return g&&"set"in g&&h&&(f=g.set(a,d,c))!==b?f:(a.setAttribute(c,""+d),d)}return g&&"get"in g&&h&&(f=g.get(a,c))!==null?f:(f=a.getAttribute(c),f===null?b:f)},removeAttr:function(a,b){var c,d,e,f,g=0;if(b&&a.nodeType===1){d=b.split(s);for(;g<d.length;g++)e=d[g],e&&(c=p.propFix[e]||e,f=T.test(e),f||p.attr(a,e,""),a.removeAttribute(U?e:c),f&&c in a&&(a[c]=!1))}},attrHooks:{type:{set:function(a,b){if(Q.test(a.nodeName)&&a.parentNode)p.error("type property can't be changed");else if(!p.support.radioValue&&b==="radio"&&p.nodeName(a,"input")){var c=a.value;return a.setAttribute("type",b),c&&(a.value=c),b}}},value:{get:function(a,b){return L&&p.nodeName(a,"button")?L.get(a,b):b in a?a.value:null},set:function(a,b,c){if(L&&p.nodeName(a,"button"))return L.set(a,b,c);a.value=b}}},propFix:{tabindex:"tabIndex",readonly:"readOnly","for":"htmlFor","class":"className",maxlength:"maxLength",cellspacing:"cellSpacing",cellpadding:"cellPadding",rowspan:"rowSpan",colspan:"colSpan",usemap:"useMap",frameborder:"frameBorder",contenteditable:"contentEditable"},prop:function(a,c,d){var e,f,g,h=a.nodeType;if(!a||h===3||h===8||h===2)return;return g=h!==1||!p.isXMLDoc(a),g&&(c=p.propFix[c]||c,f=p.propHooks[c]),d!==b?f&&"set"in f&&(e=f.set(a,d,c))!==b?e:a[c]=d:f&&"get"in f&&(e=f.get(a,c))!==null?e:a[c]},propHooks:{tabIndex:{get:function(a){var c=a.getAttributeNode("tabindex");return c&&c.specified?parseInt(c.value,10):R.test(a.nodeName)||S.test(a.nodeName)&&a.href?0:b}}}}),M={get:function(a,c){var d,e=p.prop(a,c);return e===!0||typeof e!="boolean"&&(d=a.getAttributeNode(c))&&d.nodeValue!==!1?c.toLowerCase():b},set:function(a,b,c){var d;return b===!1?p.removeAttr(a,c):(d=p.propFix[c]||c,d in a&&(a[d]=!0),a.setAttribute(c,c.toLowerCase())),c}},U||(N={name:!0,id:!0,coords:!0},L=p.valHooks.button={get:function(a,c){var d;return d=a.getAttributeNode(c),d&&(N[c]?d.value!=="":d.specified)?d.value:b},set:function(a,b,c){var d=a.getAttributeNode(c);return d||(d=e.createAttribute(c),a.setAttributeNode(d)),d.value=b+""}},p.each(["width","height"],function(a,b){p.attrHooks[b]=p.extend(p.attrHooks[b],{set:function(a,c){if(c==="")return a.setAttribute(b,"auto"),c}})}),p.attrHooks.contenteditable={get:L.get,set:function(a,b,c){b===""&&(b="false"),L.set(a,b,c)}}),p.support.hrefNormalized||p.each(["href","src","width","height"],function(a,c){p.attrHooks[c]=p.extend(p.attrHooks[c],{get:function(a){var d=a.getAttribute(c,2);return d===null?b:d}})}),p.support.style||(p.attrHooks.style={get:function(a){return a.style.cssText.toLowerCase()||b},set:function(a,b){return a.style.cssText=""+b}}),p.support.optSelected||(p.propHooks.selected=p.extend(p.propHooks.selected,{get:function(a){var b=a.parentNode;return b&&(b.selectedIndex,b.parentNode&&b.parentNode.selectedIndex),null}})),p.support.enctype||(p.propFix.enctype="encoding"),p.support.checkOn||p.each(["radio","checkbox"],function(){p.valHooks[this]={get:function(a){return a.getAttribute("value")===null?"on":a.value}}}),p.each(["radio","checkbox"],function(){p.valHooks[this]=p.extend(p.valHooks[this],{set:function(a,b){if(p.isArray(b))return a.checked=p.inArray(p(a).val(),b)>=0}})});var V=/^(?:textarea|input|select)$/i,W=/^([^\.]*|)(?:\.(.+)|)$/,X=/(?:^|\s)hover(\.\S+|)\b/,Y=/^key/,Z=/^(?:mouse|contextmenu)|click/,$=/^(?:focusinfocus|focusoutblur)$/,_=function(a){return p.event.special.hover?a:a.replace(X,"mouseenter$1 mouseleave$1")};p.event={add:function(a,c,d,e,f){var g,h,i,j,k,l,m,n,o,q,r;if(a.nodeType===3||a.nodeType===8||!c||!d||!(g=p._data(a)))return;d.handler&&(o=d,d=o.handler,f=o.selector),d.guid||(d.guid=p.guid++),i=g.events,i||(g.events=i={}),h=g.handle,h||(g.handle=h=function(a){return typeof p!="undefined"&&(!a||p.event.triggered!==a.type)?p.event.dispatch.apply(h.elem,arguments):b},h.elem=a),c=p.trim(_(c)).split(" ");for(j=0;j<c.length;j++){k=W.exec(c[j])||[],l=k[1],m=(k[2]||"").split(".").sort(),r=p.event.special[l]||{},l=(f?r.delegateType:r.bindType)||l,r=p.event.special[l]||{},n=p.extend({type:l,origType:k[1],data:e,handler:d,guid:d.guid,selector:f,namespace:m.join(".")},o),q=i[l];if(!q){q=i[l]=[],q.delegateCount=0;if(!r.setup||r.setup.call(a,e,m,h)===!1)a.addEventListener?a.addEventListener(l,h,!1):a.attachEvent&&a.attachEvent("on"+l,h)}r.add&&(r.add.call(a,n),n.handler.guid||(n.handler.guid=d.guid)),f?q.splice(q.delegateCount++,0,n):q.push(n),p.event.global[l]=!0}a=null},global:{},remove:function(a,b,c,d,e){var f,g,h,i,j,k,l,m,n,o,q,r=p.hasData(a)&&p._data(a);if(!r||!(m=r.events))return;b=p.trim(_(b||"")).split(" ");for(f=0;f<b.length;f++){g=W.exec(b[f])||[],h=i=g[1],j=g[2];if(!h){for(h in m)p.event.remove(a,h+b[f],c,d,!0);continue}n=p.event.special[h]||{},h=(d?n.delegateType:n.bindType)||h,o=m[h]||[],k=o.length,j=j?new RegExp("(^|\\.)"+j.split(".").sort().join("\\.(?:.*\\.|)")+"(\\.|$)"):null;for(l=0;l<o.length;l++)q=o[l],(e||i===q.origType)&&(!c||c.guid===q.guid)&&(!j||j.test(q.namespace))&&(!d||d===q.selector||d==="**"&&q.selector)&&(o.splice(l--,1),q.selector&&o.delegateCount--,n.remove&&n.remove.call(a,q));o.length===0&&k!==o.length&&((!n.teardown||n.teardown.call(a,j,r.handle)===!1)&&p.removeEvent(a,h,r.handle),delete m[h])}p.isEmptyObject(m)&&(delete r.handle,p.removeData(a,"events",!0))},customEvent:{getData:!0,setData:!0,changeData:!0},trigger:function(c,d,f,g){if(!f||f.nodeType!==3&&f.nodeType!==8){var h,i,j,k,l,m,n,o,q,r,s=c.type||c,t=[];if($.test(s+p.event.triggered))return;s.indexOf("!")>=0&&(s=s.slice(0,-1),i=!0),s.indexOf(".")>=0&&(t=s.split("."),s=t.shift(),t.sort());if((!f||p.event.customEvent[s])&&!p.event.global[s])return;c=typeof c=="object"?c[p.expando]?c:new p.Event(s,c):new p.Event(s),c.type=s,c.isTrigger=!0,c.exclusive=i,c.namespace=t.join("."),c.namespace_re=c.namespace?new RegExp("(^|\\.)"+t.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,m=s.indexOf(":")<0?"on"+s:"";if(!f){h=p.cache;for(j in h)h[j].events&&h[j].events[s]&&p.event.trigger(c,d,h[j].handle.elem,!0);return}c.result=b,c.target||(c.target=f),d=d!=null?p.makeArray(d):[],d.unshift(c),n=p.event.special[s]||{};if(n.trigger&&n.trigger.apply(f,d)===!1)return;q=[[f,n.bindType||s]];if(!g&&!n.noBubble&&!p.isWindow(f)){r=n.delegateType||s,k=$.test(r+s)?f:f.parentNode;for(l=f;k;k=k.parentNode)q.push([k,r]),l=k;l===(f.ownerDocument||e)&&q.push([l.defaultView||l.parentWindow||a,r])}for(j=0;j<q.length&&!c.isPropagationStopped();j++)k=q[j][0],c.type=q[j][1],o=(p._data(k,"events")||{})[c.type]&&p._data(k,"handle"),o&&o.apply(k,d),o=m&&k[m],o&&p.acceptData(k)&&o.apply(k,d)===!1&&c.preventDefault();return c.type=s,!g&&!c.isDefaultPrevented()&&(!n._default||n._default.apply(f.ownerDocument,d)===!1)&&(s!=="click"||!p.nodeName(f,"a"))&&p.acceptData(f)&&m&&f[s]&&(s!=="focus"&&s!=="blur"||c.target.offsetWidth!==0)&&!p.isWindow(f)&&(l=f[m],l&&(f[m]=null),p.event.triggered=s,f[s](),p.event.triggered=b,l&&(f[m]=l)),c.result}return},dispatch:function(c){c=p.event.fix(c||a.event);var d,e,f,g,h,i,j,k,l,m,n,o=(p._data(this,"events")||{})[c.type]||[],q=o.delegateCount,r=[].slice.call(arguments),s=!c.exclusive&&!c.namespace,t=p.event.special[c.type]||{},u=[];r[0]=c,c.delegateTarget=this;if(t.preDispatch&&t.preDispatch.call(this,c)===!1)return;if(q&&(!c.button||c.type!=="click")){g=p(this),g.context=this;for(f=c.target;f!=this;f=f.parentNode||this)if(f.disabled!==!0||c.type!=="click"){i={},k=[],g[0]=f;for(d=0;d<q;d++)l=o[d],m=l.selector,i[m]===b&&(i[m]=g.is(m)),i[m]&&k.push(l);k.length&&u.push({elem:f,matches:k})}}o.length>q&&u.push({elem:this,matches:o.slice(q)});for(d=0;d<u.length&&!c.isPropagationStopped();d++){j=u[d],c.currentTarget=j.elem;for(e=0;e<j.matches.length&&!c.isImmediatePropagationStopped();e++){l=j.matches[e];if(s||!c.namespace&&!l.namespace||c.namespace_re&&c.namespace_re.test(l.namespace))c.data=l.data,c.handleObj=l,h=((p.event.special[l.origType]||{}).handle||l.handler).apply(j.elem,r),h!==b&&(c.result=h,h===!1&&(c.preventDefault(),c.stopPropagation()))}}return t.postDispatch&&t.postDispatch.call(this,c),c.result},props:"attrChange attrName relatedNode srcElement altKey bubbles cancelable ctrlKey currentTarget eventPhase metaKey relatedTarget shiftKey target timeStamp view which".split(" "),fixHooks:{},keyHooks:{props:"char charCode key keyCode".split(" "),filter:function(a,b){return a.which==null&&(a.which=b.charCode!=null?b.charCode:b.keyCode),a}},mouseHooks:{props:"button buttons clientX clientY fromElement offsetX offsetY pageX pageY screenX screenY toElement".split(" "),filter:function(a,c){var d,f,g,h=c.button,i=c.fromElement;return a.pageX==null&&c.clientX!=null&&(d=a.target.ownerDocument||e,f=d.documentElement,g=d.body,a.pageX=c.clientX+(f&&f.scrollLeft||g&&g.scrollLeft||0)-(f&&f.clientLeft||g&&g.clientLeft||0),a.pageY=c.clientY+(f&&f.scrollTop||g&&g.scrollTop||0)-(f&&f.clientTop||g&&g.clientTop||0)),!a.relatedTarget&&i&&(a.relatedTarget=i===a.target?c.toElement:i),!a.which&&h!==b&&(a.which=h&1?1:h&2?3:h&4?2:0),a}},fix:function(a){if(a[p.expando])return a;var b,c,d=a,f=p.event.fixHooks[a.type]||{},g=f.props?this.props.concat(f.props):this.props;a=p.Event(d);for(b=g.length;b;)c=g[--b],a[c]=d[c];return a.target||(a.target=d.srcElement||e),a.target.nodeType===3&&(a.target=a.target.parentNode),a.metaKey=!!a.metaKey,f.filter?f.filter(a,d):a},special:{ready:{setup:p.bindReady},load:{noBubble:!0},focus:{delegateType:"focusin"},blur:{delegateType:"focusout"},beforeunload:{setup:function(a,b,c){p.isWindow(this)&&(this.onbeforeunload=c)},teardown:function(a,b){this.onbeforeunload===b&&(this.onbeforeunload=null)}}},simulate:function(a,b,c,d){var e=p.extend(new p.Event,c,{type:a,isSimulated:!0,originalEvent:{}});d?p.event.trigger(e,null,b):p.event.dispatch.call(b,e),e.isDefaultPrevented()&&c.preventDefault()}},p.event.handle=p.event.dispatch,p.removeEvent=e.removeEventListener?function(a,b,c){a.removeEventListener&&a.removeEventListener(b,c,!1)}:function(a,b,c){var d="on"+b;a.detachEvent&&(typeof a[d]=="undefined"&&(a[d]=null),a.detachEvent(d,c))},p.Event=function(a,b){if(this instanceof p.Event)a&&a.type?(this.originalEvent=a,this.type=a.type,this.isDefaultPrevented=a.defaultPrevented||a.returnValue===!1||a.getPreventDefault&&a.getPreventDefault()?bb:ba):this.type=a,b&&p.extend(this,b),this.timeStamp=a&&a.timeStamp||p.now(),this[p.expando]=!0;else return new p.Event(a,b)},p.Event.prototype={preventDefault:function(){this.isDefaultPrevented=bb;var a=this.originalEvent;if(!a)return;a.preventDefault?a.preventDefault():a.returnValue=!1},stopPropagation:function(){this.isPropagationStopped=bb;var a=this.originalEvent;if(!a)return;a.stopPropagation&&a.stopPropagation(),a.cancelBubble=!0},stopImmediatePropagation:function(){this.isImmediatePropagationStopped=bb,this.stopPropagation()},isDefaultPrevented:ba,isPropagationStopped:ba,isImmediatePropagationStopped:ba},p.each({mouseenter:"mouseover",mouseleave:"mouseout"},function(a,b){p.event.special[a]={delegateType:b,bindType:b,handle:function(a){var c,d=this,e=a.relatedTarget,f=a.handleObj,g=f.selector;if(!e||e!==d&&!p.contains(d,e))a.type=f.origType,c=f.handler.apply(this,arguments),a.type=b;return c}}}),p.support.submitBubbles||(p.event.special.submit={setup:function(){if(p.nodeName(this,"form"))return!1;p.event.add(this,"click._submit keypress._submit",function(a){var c=a.target,d=p.nodeName(c,"input")||p.nodeName(c,"button")?c.form:b;d&&!p._data(d,"_submit_attached")&&(p.event.add(d,"submit._submit",function(a){a._submit_bubble=!0}),p._data(d,"_submit_attached",!0))})},postDispatch:function(a){a._submit_bubble&&(delete a._submit_bubble,this.parentNode&&!a.isTrigger&&p.event.simulate("submit",this.parentNode,a,!0))},teardown:function(){if(p.nodeName(this,"form"))return!1;p.event.remove(this,"._submit")}}),p.support.changeBubbles||(p.event.special.change={setup:function(){if(V.test(this.nodeName)){if(this.type==="checkbox"||this.type==="radio")p.event.add(this,"propertychange._change",function(a){a.originalEvent.propertyName==="checked"&&(this._just_changed=!0)}),p.event.add(this,"click._change",function(a){this._just_changed&&!a.isTrigger&&(this._just_changed=!1),p.event.simulate("change",this,a,!0)});return!1}p.event.add(this,"beforeactivate._change",function(a){var b=a.target;V.test(b.nodeName)&&!p._data(b,"_change_attached")&&(p.event.add(b,"change._change",function(a){this.parentNode&&!a.isSimulated&&!a.isTrigger&&p.event.simulate("change",this.parentNode,a,!0)}),p._data(b,"_change_attached",!0))})},handle:function(a){var b=a.target;if(this!==b||a.isSimulated||a.isTrigger||b.type!=="radio"&&b.type!=="checkbox")return a.handleObj.handler.apply(this,arguments)},teardown:function(){return p.event.remove(this,"._change"),V.test(this.nodeName)}}),p.support.focusinBubbles||p.each({focus:"focusin",blur:"focusout"},function(a,b){var c=0,d=function(a){p.event.simulate(b,a.target,p.event.fix(a),!0)};p.event.special[b]={setup:function(){c++===0&&e.addEventListener(a,d,!0)},teardown:function(){--c===0&&e.removeEventListener(a,d,!0)}}}),p.fn.extend({on:function(a,c,d,e,f){var g,h;if(typeof a=="object"){typeof c!="string"&&(d=d||c,c=b);for(h in a)this.on(h,c,d,a[h],f);return this}d==null&&e==null?(e=c,d=c=b):e==null&&(typeof c=="string"?(e=d,d=b):(e=d,d=c,c=b));if(e===!1)e=ba;else if(!e)return this;return f===1&&(g=e,e=function(a){return p().off(a),g.apply(this,arguments)},e.guid=g.guid||(g.guid=p.guid++)),this.each(function(){p.event.add(this,a,e,d,c)})},one:function(a,b,c,d){return this.on(a,b,c,d,1)},off:function(a,c,d){var e,f;if(a&&a.preventDefault&&a.handleObj)return e=a.handleObj,p(a.delegateTarget).off(e.namespace?e.origType+"."+e.namespace:e.origType,e.selector,e.handler),this;if(typeof a=="object"){for(f in a)this.off(f,c,a[f]);return this}if(c===!1||typeof c=="function")d=c,c=b;return d===!1&&(d=ba),this.each(function(){p.event.remove(this,a,d,c)})},bind:function(a,b,c){return this.on(a,null,b,c)},unbind:function(a,b){return this.off(a,null,b)},live:function(a,b,c){return p(this.context).on(a,this.selector,b,c),this},die:function(a,b){return p(this.context).off(a,this.selector||"**",b),this},delegate:function(a,b,c,d){return this.on(b,a,c,d)},undelegate:function(a,b,c){return arguments.length==1?this.off(a,"**"):this.off(b,a||"**",c)},trigger:function(a,b){return this.each(function(){p.event.trigger(a,b,this)})},triggerHandler:function(a,b){if(this[0])return p.event.trigger(a,b,this[0],!0)},toggle:function(a){var b=arguments,c=a.guid||p.guid++,d=0,e=function(c){var e=(p._data(this,"lastToggle"+a.guid)||0)%d;return p._data(this,"lastToggle"+a.guid,e+1),c.preventDefault(),b[e].apply(this,arguments)||!1};e.guid=c;while(d<b.length)b[d++].guid=c;return this.click(e)},hover:function(a,b){return this.mouseenter(a).mouseleave(b||a)}}),p.each("blur focus focusin focusout load resize scroll unload click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup error contextmenu".split(" "),function(a,b){p.fn[b]=function(a,c){return c==null&&(c=a,a=null),arguments.length>0?this.on(b,null,a,c):this.trigger(b)},Y.test(b)&&(p.event.fixHooks[b]=p.event.keyHooks),Z.test(b)&&(p.event.fixHooks[b]=p.event.mouseHooks)}),function(a,b){function bd(a,b,c,d){var e=0,f=b.length;for(;e<f;e++)Z(a,b[e],c,d)}function be(a,b,c,d,e,f){var g,h=$.setFilters[b.toLowerCase()];return h||Z.error(b),(a||!(g=e))&&bd(a||"*",d,g=[],e),g.length>0?h(g,c,f):[]}function bf(a,c,d,e,f){var g,h,i,j,k,l,m,n,p=0,q=f.length,s=L.POS,t=new RegExp("^"+s.source+"(?!"+r+")","i"),u=function(){var a=1,c=arguments.length-2;for(;a<c;a++)arguments[a]===b&&(g[a]=b)};for(;p<q;p++){s.exec(""),a=f[p],j=[],i=0,k=e;while(g=s.exec(a)){n=s.lastIndex=g.index+g[0].length;if(n>i){m=a.slice(i,g.index),i=n,l=[c],B.test(m)&&(k&&(l=k),k=e);if(h=H.test(m))m=m.slice(0,-5).replace(B,"$&*");g.length>1&&g[0].replace(t,u),k=be(m,g[1],g[2],l,k,h)}}k?(j=j.concat(k),(m=a.slice(i))&&m!==")"?B.test(m)?bd(m,j,d,e):Z(m,c,d,e?e.concat(k):k):o.apply(d,j)):Z(a,c,d,e)}return q===1?d:Z.uniqueSort(d)}function bg(a,b,c){var d,e,f,g=[],i=0,j=D.exec(a),k=!j.pop()&&!j.pop(),l=k&&a.match(C)||[""],m=$.preFilter,n=$.filter,o=!c&&b!==h;for(;(e=l[i])!=null&&k;i++){g.push(d=[]),o&&(e=" "+e);while(e){k=!1;if(j=B.exec(e))e=e.slice(j[0].length),k=d.push({part:j.pop().replace(A," "),captures:j});for(f in n)(j=L[f].exec(e))&&(!m[f]||(j=m[f](j,b,c)))&&(e=e.slice(j.shift().length),k=d.push({part:f,captures:j}));if(!k)break}}return k||Z.error(a),g}function bh(a,b,e){var f=b.dir,g=m++;return a||(a=function(a){return a===e}),b.first?function(b,c){while(b=b[f])if(b.nodeType===1)return a(b,c)&&b}:function(b,e){var h,i=g+"."+d,j=i+"."+c;while(b=b[f])if(b.nodeType===1){if((h=b[q])===j)return b.sizset;if(typeof h=="string"&&h.indexOf(i)===0){if(b.sizset)return b}else{b[q]=j;if(a(b,e))return b.sizset=!0,b;b.sizset=!1}}}}function bi(a,b){return a?function(c,d){var e=b(c,d);return e&&a(e===!0?c:e,d)}:b}function bj(a,b,c){var d,e,f=0;for(;d=a[f];f++)$.relative[d.part]?e=bh(e,$.relative[d.part],b):(d.captures.push(b,c),e=bi(e,$.filter[d.part].apply(null,d.captures)));return e}function bk(a){return function(b,c){var d,e=0;for(;d=a[e];e++)if(d(b,c))return!0;return!1}}var c,d,e,f,g,h=a.document,i=h.documentElement,j="undefined",k=!1,l=!0,m=0,n=[].slice,o=[].push,q=("sizcache"+Math.random()).replace(".",""),r="[\\x20\\t\\r\\n\\f]",s="(?:\\\\.|[-\\w]|[^\\x00-\\xa0])+",t=s.replace("w","w#"),u="([*^$|!~]?=)",v="\\["+r+"*("+s+")"+r+"*(?:"+u+r+"*(?:(['\"])((?:\\\\.|[^\\\\])*?)\\3|("+t+")|)|)"+r+"*\\]",w=":("+s+")(?:\\((?:(['\"])((?:\\\\.|[^\\\\])*?)\\2|((?:[^,]|\\\\,|(?:,(?=[^\\[]*\\]))|(?:,(?=[^\\(]*\\))))*))\\)|)",x=":(nth|eq|gt|lt|first|last|even|odd)(?:\\((\\d*)\\)|)(?=[^-]|$)",y=r+"*([\\x20\\t\\r\\n\\f>+~])"+r+"*",z="(?=[^\\x20\\t\\r\\n\\f])(?:\\\\.|"+v+"|"+w.replace(2,7)+"|[^\\\\(),])+",A=new RegExp("^"+r+"+|((?:^|[^\\\\])(?:\\\\.)*)"+r+"+$","g"),B=new RegExp("^"+y),C=new RegExp(z+"?(?="+r+"*,|$)","g"),D=new RegExp("^(?:(?!,)(?:(?:^|,)"+r+"*"+z+")*?|"+r+"*(.*?))(\\)|$)"),E=new RegExp(z.slice(19,-6)+"\\x20\\t\\r\\n\\f>+~])+|"+y,"g"),F=/^(?:#([\w\-]+)|(\w+)|\.([\w\-]+))$/,G=/[\x20\t\r\n\f]*[+~]/,H=/:not\($/,I=/h\d/i,J=/input|select|textarea|button/i,K=/\\(?!\\)/g,L={ID:new RegExp("^#("+s+")"),CLASS:new RegExp("^\\.("+s+")"),NAME:new RegExp("^\\[name=['\"]?("+s+")['\"]?\\]"),TAG:new RegExp("^("+s.replace("[-","[-\\*")+")"),ATTR:new RegExp("^"+v),PSEUDO:new RegExp("^"+w),CHILD:new RegExp("^:(only|nth|last|first)-child(?:\\("+r+"*(even|odd|(([+-]|)(\\d*)n|)"+r+"*(?:([+-]|)"+r+"*(\\d+)|))"+r+"*\\)|)","i"),POS:new RegExp(x,"ig"),needsContext:new RegExp("^"+r+"*[>+~]|"+x,"i")},M={},N=[],O={},P=[],Q=function(a){return a.sizzleFilter=!0,a},R=function(a){return function(b){return b.nodeName.toLowerCase()==="input"&&b.type===a}},S=function(a){return function(b){var c=b.nodeName.toLowerCase();return(c==="input"||c==="button")&&b.type===a}},T=function(a){var b=!1,c=h.createElement("div");try{b=a(c)}catch(d){}return c=null,b},U=T(function(a){a.innerHTML="<select></select>";var b=typeof a.lastChild.getAttribute("multiple");return b!=="boolean"&&b!=="string"}),V=T(function(a){a.id=q+0,a.innerHTML="<a name='"+q+"'></a><div name='"+q+"'></div>",i.insertBefore(a,i.firstChild);var b=h.getElementsByName&&h.getElementsByName(q).length===2+h.getElementsByName(q+0).length;return g=!h.getElementById(q),i.removeChild(a),b}),W=T(function(a){return a.appendChild(h.createComment("")),a.getElementsByTagName("*").length===0}),X=T(function(a){return a.innerHTML="<a href='#'></a>",a.firstChild&&typeof a.firstChild.getAttribute!==j&&a.firstChild.getAttribute("href")==="#"}),Y=T(function(a){return a.innerHTML="<div class='hidden e'></div><div class='hidden'></div>",!a.getElementsByClassName||a.getElementsByClassName("e").length===0?!1:(a.lastChild.className="e",a.getElementsByClassName("e").length!==1)}),Z=function(a,b,c,d){c=c||[],b=b||h;var e,f,g,i,j=b.nodeType;if(j!==1&&j!==9)return[];if(!a||typeof a!="string")return c;g=ba(b);if(!g&&!d)if(e=F.exec(a))if(i=e[1]){if(j===9){f=b.getElementById(i);if(!f||!f.parentNode)return c;if(f.id===i)return c.push(f),c}else if(b.ownerDocument&&(f=b.ownerDocument.getElementById(i))&&bb(b,f)&&f.id===i)return c.push(f),c}else{if(e[2])return o.apply(c,n.call(b.getElementsByTagName(a),0)),c;if((i=e[3])&&Y&&b.getElementsByClassName)return o.apply(c,n.call(b.getElementsByClassName(i),0)),c}return bm(a,b,c,d,g)},$=Z.selectors={cacheLength:50,match:L,order:["ID","TAG"],attrHandle:{},createPseudo:Q,find:{ID:g?function(a,b,c){if(typeof b.getElementById!==j&&!c){var d=b.getElementById(a);return d&&d.parentNode?[d]:[]}}:function(a,c,d){if(typeof c.getElementById!==j&&!d){var e=c.getElementById(a);return e?e.id===a||typeof e.getAttributeNode!==j&&e.getAttributeNode("id").value===a?[e]:b:[]}},TAG:W?function(a,b){if(typeof b.getElementsByTagName!==j)return b.getElementsByTagName(a)}:function(a,b){var c=b.getElementsByTagName(a);if(a==="*"){var d,e=[],f=0;for(;d=c[f];f++)d.nodeType===1&&e.push(d);return e}return c}},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(a){return a[1]=a[1].replace(K,""),a[3]=(a[4]||a[5]||"").replace(K,""),a[2]==="~="&&(a[3]=" "+a[3]+" "),a.slice(0,4)},CHILD:function(a){return a[1]=a[1].toLowerCase(),a[1]==="nth"?(a[2]||Z.error(a[0]),a[3]=+(a[3]?a[4]+(a[5]||1):2*(a[2]==="even"||a[2]==="odd")),a[4]=+(a[6]+a[7]||a[2]==="odd")):a[2]&&Z.error(a[0]),a},PSEUDO:function(a){var b,c=a[4];return L.CHILD.test(a[0])?null:(c&&(b=D.exec(c))&&b.pop()&&(a[0]=a[0].slice(0,b[0].length-c.length-1),c=b[0].slice(0,-1)),a.splice(2,3,c||a[3]),a)}},filter:{ID:g?function(a){return a=a.replace(K,""),function(b){return b.getAttribute("id")===a}}:function(a){return a=a.replace(K,""),function(b){var c=typeof b.getAttributeNode!==j&&b.getAttributeNode("id");return c&&c.value===a}},TAG:function(a){return a==="*"?function(){return!0}:(a=a.replace(K,"").toLowerCase(),function(b){return b.nodeName&&b.nodeName.toLowerCase()===a})},CLASS:function(a){var b=M[a];return b||(b=M[a]=new RegExp("(^|"+r+")"+a+"("+r+"|$)"),N.push(a),N.length>$.cacheLength&&delete M[N.shift()]),function(a){return b.test(a.className||typeof a.getAttribute!==j&&a.getAttribute("class")||"")}},ATTR:function(a,b,c){return b?function(d){var e=Z.attr(d,a),f=e+"";if(e==null)return b==="!=";switch(b){case"=":return f===c;case"!=":return f!==c;case"^=":return c&&f.indexOf(c)===0;case"*=":return c&&f.indexOf(c)>-1;case"$=":return c&&f.substr(f.length-c.length)===c;case"~=":return(" "+f+" ").indexOf(c)>-1;case"|=":return f===c||f.substr(0,c.length+1)===c+"-"}}:function(b){return Z.attr(b,a)!=null}},CHILD:function(a,b,c,d){if(a==="nth"){var e=m++;return function(a){var b,f,g=0,h=a;if(c===1&&d===0)return!0;b=a.parentNode;if(b&&(b[q]!==e||!a.sizset)){for(h=b.firstChild;h;h=h.nextSibling)if(h.nodeType===1){h.sizset=++g;if(h===a)break}b[q]=e}return f=a.sizset-d,c===0?f===0:f%c===0&&f/c>=0}}return function(b){var c=b;switch(a){case"only":case"first":while(c=c.previousSibling)if(c.nodeType===1)return!1;if(a==="first")return!0;c=b;case"last":while(c=c.nextSibling)if(c.nodeType===1)return!1;return!0}}},PSEUDO:function(a,b,c,d){var e=$.pseudos[a]||$.pseudos[a.toLowerCase()];return e||Z.error("unsupported pseudo: "+a),e.sizzleFilter?e(b,c,d):e}},pseudos:{not:Q(function(a,b,c){var d=bl(a.replace(A,"$1"),b,c);return function(a){return!d(a)}}),enabled:function(a){return a.disabled===!1},disabled:function(a){return a.disabled===!0},checked:function(a){var b=a.nodeName.toLowerCase();return b==="input"&&!!a.checked||b==="option"&&!!a.selected},selected:function(a){return a.parentNode&&a.parentNode.selectedIndex,a.selected===!0},parent:function(a){return!$.pseudos.empty(a)},empty:function(a){var b;a=a.firstChild;while(a){if(a.nodeName>"@"||(b=a.nodeType)===3||b===4)return!1;a=a.nextSibling}return!0},contains:Q(function(a){return function(b){return(b.textContent||b.innerText||bc(b)).indexOf(a)>-1}}),has:Q(function(a){return function(b){return Z(a,b).length>0}}),header:function(a){return I.test(a.nodeName)},text:function(a){var b,c;return a.nodeName.toLowerCase()==="input"&&(b=a.type)==="text"&&((c=a.getAttribute("type"))==null||c.toLowerCase()===b)},radio:R("radio"),checkbox:R("checkbox"),file:R("file"),password:R("password"),image:R("image"),submit:S("submit"),reset:S("reset"),button:function(a){var b=a.nodeName.toLowerCase();return b==="input"&&a.type==="button"||b==="button"},input:function(a){return J.test(a.nodeName)},focus:function(a){var b=a.ownerDocument;return a===b.activeElement&&(!b.hasFocus||b.hasFocus())&&(!!a.type||!!a.href)},active:function(a){return a===a.ownerDocument.activeElement}},setFilters:{first:function(a,b,c){return c?a.slice(1):[a[0]]},last:function(a,b,c){var d=a.pop();return c?a:[d]},even:function(a,b,c){var d=[],e=c?1:0,f=a.length;for(;e<f;e=e+2)d.push(a[e]);return d},odd:function(a,b,c){var d=[],e=c?0:1,f=a.length;for(;e<f;e=e+2)d.push(a[e]);return d},lt:function(a,b,c){return c?a.slice(+b):a.slice(0,+b)},gt:function(a,b,c){return c?a.slice(0,+b+1):a.slice(+b+1)},eq:function(a,b,c){var d=a.splice(+b,1);return c?a:d}}};$.setFilters.nth=$.setFilters.eq,$.filters=$.pseudos,X||($.attrHandle={href:function(a){return a.getAttribute("href",2)},type:function(a){return a.getAttribute("type")}}),V&&($.order.push("NAME"),$.find.NAME=function(a,b){if(typeof b.getElementsByName!==j)return b.getElementsByName(a)}),Y&&($.order.splice(1,0,"CLASS"),$.find.CLASS=function(a,b,c){if(typeof b.getElementsByClassName!==j&&!c)return b.getElementsByClassName(a)});try{n.call(i.childNodes,0)[0].nodeType}catch(_){n=function(a){var b,c=[];for(;b=this[a];a++)c.push(b);return c}}var ba=Z.isXML=function(a){var b=a&&(a.ownerDocument||a).documentElement;return b?b.nodeName!=="HTML":!1},bb=Z.contains=i.compareDocumentPosition?function(a,b){return!!(a.compareDocumentPosition(b)&16)}:i.contains?function(a,b){var c=a.nodeType===9?a.documentElement:a,d=b.parentNode;return a===d||!!(d&&d.nodeType===1&&c.contains&&c.contains(d))}:function(a,b){while(b=b.parentNode)if(b===a)return!0;return!1},bc=Z.getText=function(a){var b,c="",d=0,e=a.nodeType;if(e){if(e===1||e===9||e===11){if(typeof a.textContent=="string")return a.textContent;for(a=a.firstChild;a;a=a.nextSibling)c+=bc(a)}else if(e===3||e===4)return a.nodeValue}else for(;b=a[d];d++)c+=bc(b);return c};Z.attr=function(a,b){var c,d=ba(a);return d||(b=b.toLowerCase()),$.attrHandle[b]?$.attrHandle[b](a):U||d?a.getAttribute(b):(c=a.getAttributeNode(b),c?typeof a[b]=="boolean"?a[b]?b:null:c.specified?c.value:null:null)},Z.error=function(a){throw new Error("Syntax error, unrecognized expression: "+a)},[0,0].sort(function(){return l=0}),i.compareDocumentPosition?e=function(a,b){return a===b?(k=!0,0):(!a.compareDocumentPosition||!b.compareDocumentPosition?a.compareDocumentPosition:a.compareDocumentPosition(b)&4)?-1:1}:(e=function(a,b){if(a===b)return k=!0,0;if(a.sourceIndex&&b.sourceIndex)return a.sourceIndex-b.sourceIndex;var c,d,e=[],g=[],h=a.parentNode,i=b.parentNode,j=h;if(h===i)return f(a,b);if(!h)return-1;if(!i)return 1;while(j)e.unshift(j),j=j.parentNode;j=i;while(j)g.unshift(j),j=j.parentNode;c=e.length,d=g.length;for(var l=0;l<c&&l<d;l++)if(e[l]!==g[l])return f(e[l],g[l]);return l===c?f(a,g[l],-1):f(e[l],b,1)},f=function(a,b,c){if(a===b)return c;var d=a.nextSibling;while(d){if(d===b)return-1;d=d.nextSibling}return 1}),Z.uniqueSort=function(a){var b,c=1;if(e){k=l,a.sort(e);if(k)for(;b=a[c];c++)b===a[c-1]&&a.splice(c--,1)}return a};var bl=Z.compile=function(a,b,c){var d,e,f,g=O[a];if(g&&g.context===b)return g;e=bg(a,b,c);for(f=0;d=e[f];f++)e[f]=bj(d,b,c);return g=O[a]=bk(e),g.context=b,g.runs=g.dirruns=0,P.push(a),P.length>$.cacheLength&&delete O[P.shift()],g};Z.matches=function(a,b){return Z(a,null,null,b)},Z.matchesSelector=function(a,b){return Z(b,null,null,[a]).length>0};var bm=function(a,b,e,f,g){a=a.replace(A,"$1");var h,i,j,k,l,m,p,q,r,s=a.match(C),t=a.match(E),u=b.nodeType;if(L.POS.test(a))return bf(a,b,e,f,s);if(f)h=n.call(f,0);else if(s&&s.length===1){if(t.length>1&&u===9&&!g&&(s=L.ID.exec(t[0]))){b=$.find.ID(s[1],b,g)[0];if(!b)return e;a=a.slice(t.shift().length)}q=(s=G.exec(t[0]))&&!s.index&&b.parentNode||b,r=t.pop(),m=r.split(":not")[0];for(j=0,k=$.order.length;j<k;j++){p=$.order[j];if(s=L[p].exec(m)){h=$.find[p]((s[1]||"").replace(K,""),q,g);if(h==null)continue;m===r&&(a=a.slice(0,a.length-r.length)+m.replace(L[p],""),a||o.apply(e,n.call(h,0)));break}}}if(a){i=bl(a,b,g),d=i.dirruns++,h==null&&(h=$.find.TAG("*",G.test(a)&&b.parentNode||b));for(j=0;l=h[j];j++)c=i.runs++,i(l,b)&&e.push(l)}return e};h.querySelectorAll&&function(){var a,b=bm,c=/'|\\/g,d=/\=[\x20\t\r\n\f]*([^'"\]]*)[\x20\t\r\n\f]*\]/g,e=[],f=[":active"],g=i.matchesSelector||i.mozMatchesSelector||i.webkitMatchesSelector||i.oMatchesSelector||i.msMatchesSelector;T(function(a){a.innerHTML="<select><option selected></option></select>",a.querySelectorAll("[selected]").length||e.push("\\["+r+"*(?:checked|disabled|ismap|multiple|readonly|selected|value)"),a.querySelectorAll(":checked").length||e.push(":checked")}),T(function(a){a.innerHTML="<p test=''></p>",a.querySelectorAll("[test^='']").length&&e.push("[*^$]="+r+"*(?:\"\"|'')"),a.innerHTML="<input type='hidden'>",a.querySelectorAll(":enabled").length||e.push(":enabled",":disabled")}),e=e.length&&new RegExp(e.join("|")),bm=function(a,d,f,g,h){if(!g&&!h&&(!e||!e.test(a)))if(d.nodeType===9)try{return o.apply(f,n.call(d.querySelectorAll(a),0)),f}catch(i){}else if(d.nodeType===1&&d.nodeName.toLowerCase()!=="object"){var j=d.getAttribute("id"),k=j||q,l=G.test(a)&&d.parentNode||d;j?k=k.replace(c,"\\$&"):d.setAttribute("id",k);try{return o.apply(f,n.call(l.querySelectorAll(a.replace(C,"[id='"+k+"'] $&")),0)),f}catch(i){}finally{j||d.removeAttribute("id")}}return b(a,d,f,g,h)},g&&(T(function(b){a=g.call(b,"div");try{g.call(b,"[test!='']:sizzle"),f.push($.match.PSEUDO)}catch(c){}}),f=new RegExp(f.join("|")),Z.matchesSelector=function(b,c){c=c.replace(d,"='$1']");if(!ba(b)&&!f.test(c)&&(!e||!e.test(c)))try{var h=g.call(b,c);if(h||a||b.document&&b.document.nodeType!==11)return h}catch(i){}return Z(c,null,null,[b]).length>0})}(),Z.attr=p.attr,p.find=Z,p.expr=Z.selectors,p.expr[":"]=p.expr.pseudos,p.unique=Z.uniqueSort,p.text=Z.getText,p.isXMLDoc=Z.isXML,p.contains=Z.contains}(a);var bc=/Until$/,bd=/^(?:parents|prev(?:Until|All))/,be=/^.[^:#\[\.,]*$/,bf=p.expr.match.needsContext,bg={children:!0,contents:!0,next:!0,prev:!0};p.fn.extend({find:function(a){var b,c,d,e,f,g,h=this;if(typeof a!="string")return p(a).filter(function(){for(b=0,c=h.length;b<c;b++)if(p.contains(h[b],this))return!0});g=this.pushStack("","find",a);for(b=0,c=this.length;b<c;b++){d=g.length,p.find(a,this[b],g);if(b>0)for(e=d;e<g.length;e++)for(f=0;f<d;f++)if(g[f]===g[e]){g.splice(e--,1);break}}return g},has:function(a){var b,c=p(a,this),d=c.length;return this.filter(function(){for(b=0;b<d;b++)if(p.contains(this,c[b]))return!0})},not:function(a){return this.pushStack(bj(this,a,!1),"not",a)},filter:function(a){return this.pushStack(bj(this,a,!0),"filter",a)},is:function(a){return!!a&&(typeof a=="string"?bf.test(a)?p(a,this.context).index(this[0])>=0:p.filter(a,this).length>0:this.filter(a).length>0)},closest:function(a,b){var c,d=0,e=this.length,f=[],g=bf.test(a)||typeof a!="string"?p(a,b||this.context):0;for(;d<e;d++){c=this[d];while(c&&c.ownerDocument&&c!==b&&c.nodeType!==11){if(g?g.index(c)>-1:p.find.matchesSelector(c,a)){f.push(c);break}c=c.parentNode}}return f=f.length>1?p.unique(f):f,this.pushStack(f,"closest",a)},index:function(a){return a?typeof a=="string"?p.inArray(this[0],p(a)):p.inArray(a.jquery?a[0]:a,this):this[0]&&this[0].parentNode?this.prevAll().length:-1},add:function(a,b){var c=typeof a=="string"?p(a,b):p.makeArray(a&&a.nodeType?[a]:a),d=p.merge(this.get(),c);return this.pushStack(bh(c[0])||bh(d[0])?d:p.unique(d))},addBack:function(a){return this.add(a==null?this.prevObject:this.prevObject.filter(a))}}),p.fn.andSelf=p.fn.addBack,p.each({parent:function(a){var b=a.parentNode;return b&&b.nodeType!==11?b:null},parents:function(a){return p.dir(a,"parentNode")},parentsUntil:function(a,b,c){return p.dir(a,"parentNode",c)},next:function(a){return bi(a,"nextSibling")},prev:function(a){return bi(a,"previousSibling")},nextAll:function(a){return p.dir(a,"nextSibling")},prevAll:function(a){return p.dir(a,"previousSibling")},nextUntil:function(a,b,c){return p.dir(a,"nextSibling",c)},prevUntil:function(a,b,c){return p.dir(a,"previousSibling",c)},siblings:function(a){return p.sibling((a.parentNode||{}).firstChild,a)},children:function(a){return p.sibling(a.firstChild)},contents:function(a){return p.nodeName(a,"iframe")?a.contentDocument||a.contentWindow.document:p.merge([],a.childNodes)}},function(a,b){p.fn[a]=function(c,d){var e=p.map(this,b,c);return bc.test(a)||(d=c),d&&typeof d=="string"&&(e=p.filter(d,e)),e=this.length>1&&!bg[a]?p.unique(e):e,this.length>1&&bd.test(a)&&(e=e.reverse()),this.pushStack(e,a,k.call(arguments).join(","))}}),p.extend({filter:function(a,b,c){return c&&(a=":not("+a+")"),b.length===1?p.find.matchesSelector(b[0],a)?[b[0]]:[]:p.find.matches(a,b)},dir:function(a,c,d){var e=[],f=a[c];while(f&&f.nodeType!==9&&(d===b||f.nodeType!==1||!p(f).is(d)))f.nodeType===1&&e.push(f),f=f[c];return e},sibling:function(a,b){var c=[];for(;a;a=a.nextSibling)a.nodeType===1&&a!==b&&c.push(a);return c}});var bl="abbr|article|aside|audio|bdi|canvas|data|datalist|details|figcaption|figure|footer|header|hgroup|mark|meter|nav|output|progress|section|summary|time|video",bm=/ jQuery\d+="(?:null|\d+)"/g,bn=/^\s+/,bo=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/gi,bp=/<([\w:]+)/,bq=/<tbody/i,br=/<|&#?\w+;/,bs=/<(?:script|style|link)/i,bt=/<(?:script|object|embed|option|style)/i,bu=new RegExp("<(?:"+bl+")[\\s/>]","i"),bv=/^(?:checkbox|radio)$/,bw=/checked\s*(?:[^=]|=\s*.checked.)/i,bx=/\/(java|ecma)script/i,by=/^\s*<!(?:\[CDATA\[|\-\-)|[\]\-]{2}>\s*$/g,bz={option:[1,"<select multiple='multiple'>","</select>"],legend:[1,"<fieldset>","</fieldset>"],thead:[1,"<table>","</table>"],tr:[2,"<table><tbody>","</tbody></table>"],td:[3,"<table><tbody><tr>","</tr></tbody></table>"],col:[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"],area:[1,"<map>","</map>"],_default:[0,"",""]},bA=bk(e),bB=bA.appendChild(e.createElement("div"));bz.optgroup=bz.option,bz.tbody=bz.tfoot=bz.colgroup=bz.caption=bz.thead,bz.th=bz.td,p.support.htmlSerialize||(bz._default=[1,"X<div>","</div>"]),p.fn.extend({text:function(a){return p.access(this,function(a){return a===b?p.text(this):this.empty().append((this[0]&&this[0].ownerDocument||e).createTextNode(a))},null,a,arguments.length)},wrapAll:function(a){if(p.isFunction(a))return this.each(function(b){p(this).wrapAll(a.call(this,b))});if(this[0]){var b=p(a,this[0].ownerDocument).eq(0).clone(!0);this[0].parentNode&&b.insertBefore(this[0]),b.map(function(){var a=this;while(a.firstChild&&a.firstChild.nodeType===1)a=a.firstChild;return a}).append(this)}return this},wrapInner:function(a){return p.isFunction(a)?this.each(function(b){p(this).wrapInner(a.call(this,b))}):this.each(function(){var b=p(this),c=b.contents();c.length?c.wrapAll(a):b.append(a)})},wrap:function(a){var b=p.isFunction(a);return this.each(function(c){p(this).wrapAll(b?a.call(this,c):a)})},unwrap:function(){return this.parent().each(function(){p.nodeName(this,"body")||p(this).replaceWith(this.childNodes)}).end()},append:function(){return this.domManip(arguments,!0,function(a){(this.nodeType===1||this.nodeType===11)&&this.appendChild(a)})},prepend:function(){return this.domManip(arguments,!0,function(a){(this.nodeType===1||this.nodeType===11)&&this.insertBefore(a,this.firstChild)})},before:function(){if(!bh(this[0]))return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this)});if(arguments.length){var a=p.clean(arguments);return this.pushStack(p.merge(a,this),"before",this.selector)}},after:function(){if(!bh(this[0]))return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this.nextSibling)});if(arguments.length){var a=p.clean(arguments);return this.pushStack(p.merge(this,a),"after",this.selector)}},remove:function(a,b){var c,d=0;for(;(c=this[d])!=null;d++)if(!a||p.filter(a,[c]).length)!b&&c.nodeType===1&&(p.cleanData(c.getElementsByTagName("*")),p.cleanData([c])),c.parentNode&&c.parentNode.removeChild(c);return this},empty:function(){var a,b=0;for(;(a=this[b])!=null;b++){a.nodeType===1&&p.cleanData(a.getElementsByTagName("*"));while(a.firstChild)a.removeChild(a.firstChild)}return this},clone:function(a,b){return a=a==null?!1:a,b=b==null?a:b,this.map(function(){return p.clone(this,a,b)})},html:function(a){return p.access(this,function(a){var c=this[0]||{},d=0,e=this.length;if(a===b)return c.nodeType===1?c.innerHTML.replace(bm,""):b;if(typeof a=="string"&&!bs.test(a)&&(p.support.htmlSerialize||!bu.test(a))&&(p.support.leadingWhitespace||!bn.test(a))&&!bz[(bp.exec(a)||["",""])[1].toLowerCase()]){a=a.replace(bo,"<$1></$2>");try{for(;d<e;d++)c=this[d]||{},c.nodeType===1&&(p.cleanData(c.getElementsByTagName("*")),c.innerHTML=a);c=0}catch(f){}}c&&this.empty().append(a)},null,a,arguments.length)},replaceWith:function(a){return bh(this[0])?this.length?this.pushStack(p(p.isFunction(a)?a():a),"replaceWith",a):this:p.isFunction(a)?this.each(function(b){var c=p(this),d=c.html();c.replaceWith(a.call(this,b,d))}):(typeof a!="string"&&(a=p(a).detach()),this.each(function(){var b=this.nextSibling,c=this.parentNode;p(this).remove(),b?p(b).before(a):p(c).append(a)}))},detach:function(a){return this.remove(a,!0)},domManip:function(a,c,d){a=[].concat.apply([],a);var e,f,g,h,i=0,j=a[0],k=[],l=this.length;if(!p.support.checkClone&&l>1&&typeof j=="string"&&bw.test(j))return this.each(function(){p(this).domManip(a,c,d)});if(p.isFunction(j))return this.each(function(e){var f=p(this);a[0]=j.call(this,e,c?f.html():b),f.domManip(a,c,d)});if(this[0]){e=p.buildFragment(a,this,k),g=e.fragment,f=g.firstChild,g.childNodes.length===1&&(g=f);if(f){c=c&&p.nodeName(f,"tr");for(h=e.cacheable||l-1;i<l;i++)d.call(c&&p.nodeName(this[i],"table")?bC(this[i],"tbody"):this[i],i===h?g:p.clone(g,!0,!0))}g=f=null,k.length&&p.each(k,function(a,b){b.src?p.ajax?p.ajax({url:b.src,type:"GET",dataType:"script",async:!1,global:!1,"throws":!0}):p.error("no ajax"):p.globalEval((b.text||b.textContent||b.innerHTML||"").replace(by,"")),b.parentNode&&b.parentNode.removeChild(b)})}return this}}),p.buildFragment=function(a,c,d){var f,g,h,i=a[0];return c=c||e,c=(c[0]||c).ownerDocument||c[0]||c,typeof c.createDocumentFragment=="undefined"&&(c=e),a.length===1&&typeof i=="string"&&i.length<512&&c===e&&i.charAt(0)==="<"&&!bt.test(i)&&(p.support.checkClone||!bw.test(i))&&(p.support.html5Clone||!bu.test(i))&&(g=!0,f=p.fragments[i],h=f!==b),f||(f=c.createDocumentFragment(),p.clean(a,c,f,d),g&&(p.fragments[i]=h&&f)),{fragment:f,cacheable:g}},p.fragments={},p.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(a,b){p.fn[a]=function(c){var d,e=0,f=[],g=p(c),h=g.length,i=this.length===1&&this[0].parentNode;if((i==null||i&&i.nodeType===11&&i.childNodes.length===1)&&h===1)return g[b](this[0]),this;for(;e<h;e++)d=(e>0?this.clone(!0):this).get(),p(g[e])[b](d),f=f.concat(d);return this.pushStack(f,a,g.selector)}}),p.extend({clone:function(a,b,c){var d,e,f,g;p.support.html5Clone||p.isXMLDoc(a)||!bu.test("<"+a.nodeName+">")?g=a.cloneNode(!0):(bB.innerHTML=a.outerHTML,bB.removeChild(g=bB.firstChild));if((!p.support.noCloneEvent||!p.support.noCloneChecked)&&(a.nodeType===1||a.nodeType===11)&&!p.isXMLDoc(a)){bE(a,g),d=bF(a),e=bF(g);for(f=0;d[f];++f)e[f]&&bE(d[f],e[f])}if(b){bD(a,g);if(c){d=bF(a),e=bF(g);for(f=0;d[f];++f)bD(d[f],e[f])}}return d=e=null,g},clean:function(a,b,c,d){var f,g,h,i,j,k,l,m,n,o,q,r,s=0,t=[];if(!b||typeof b.createDocumentFragment=="undefined")b=e;for(g=b===e&&bA;(h=a[s])!=null;s++){typeof h=="number"&&(h+="");if(!h)continue;if(typeof h=="string")if(!br.test(h))h=b.createTextNode(h);else{g=g||bk(b),l=l||g.appendChild(b.createElement("div")),h=h.replace(bo,"<$1></$2>"),i=(bp.exec(h)||["",""])[1].toLowerCase(),j=bz[i]||bz._default,k=j[0],l.innerHTML=j[1]+h+j[2];while(k--)l=l.lastChild;if(!p.support.tbody){m=bq.test(h),n=i==="table"&&!m?l.firstChild&&l.firstChild.childNodes:j[1]==="<table>"&&!m?l.childNodes:[];for(f=n.length-1;f>=0;--f)p.nodeName(n[f],"tbody")&&!n[f].childNodes.length&&n[f].parentNode.removeChild(n[f])}!p.support.leadingWhitespace&&bn.test(h)&&l.insertBefore(b.createTextNode(bn.exec(h)[0]),l.firstChild),h=l.childNodes,l=g.lastChild}h.nodeType?t.push(h):t=p.merge(t,h)}l&&(g.removeChild(l),h=l=g=null);if(!p.support.appendChecked)for(s=0;(h=t[s])!=null;s++)p.nodeName(h,"input")?bG(h):typeof h.getElementsByTagName!="undefined"&&p.grep(h.getElementsByTagName("input"),bG);if(c){q=function(a){if(!a.type||bx.test(a.type))return d?d.push(a.parentNode?a.parentNode.removeChild(a):a):c.appendChild(a)};for(s=0;(h=t[s])!=null;s++)if(!p.nodeName(h,"script")||!q(h))c.appendChild(h),typeof h.getElementsByTagName!="undefined"&&(r=p.grep(p.merge([],h.getElementsByTagName("script")),q),t.splice.apply(t,[s+1,0].concat(r)),s+=r.length)}return t},cleanData:function(a,b){var c,d,e,f,g=0,h=p.expando,i=p.cache,j=p.support.deleteExpando,k=p.event.special;for(;(e=a[g])!=null;g++)if(b||p.acceptData(e)){d=e[h],c=d&&i[d];if(c){if(c.events)for(f in c.events)k[f]?p.event.remove(e,f):p.removeEvent(e,f,c.handle);i[d]&&(delete i[d],j?delete e[h]:e.removeAttribute?e.removeAttribute(h):e[h]=null,p.deletedIds.push(d))}}}}),function(){var a,b;p.uaMatch=function(a){a=a.toLowerCase();var b=/(chrome)[ \/]([\w.]+)/.exec(a)||/(webkit)[ \/]([\w.]+)/.exec(a)||/(opera)(?:.*version|)[ \/]([\w.]+)/.exec(a)||/(msie) ([\w.]+)/.exec(a)||a.indexOf("compatible")<0&&/(mozilla)(?:.*? rv:([\w.]+)|)/.exec(a)||[];return{browser:b[1]||"",version:b[2]||"0"}},a=p.uaMatch(g.userAgent),b={},a.browser&&(b[a.browser]=!0,b.version=a.version),b.webkit&&(b.safari=!0),p.browser=b,p.sub=function(){function a(b,c){return new a.fn.init(b,c)}p.extend(!0,a,this),a.superclass=this,a.fn=a.prototype=this(),a.fn.constructor=a,a.sub=this.sub,a.fn.init=function c(c,d){return d&&d instanceof p&&!(d instanceof a)&&(d=a(d)),p.fn.init.call(this,c,d,b)},a.fn.init.prototype=a.fn;var b=a(e);return a}}();var bH,bI,bJ,bK=/alpha\([^)]*\)/i,bL=/opacity=([^)]*)/,bM=/^(top|right|bottom|left)$/,bN=/^margin/,bO=new RegExp("^("+q+")(.*)$","i"),bP=new RegExp("^("+q+")(?!px)[a-z%]+$","i"),bQ=new RegExp("^([-+])=("+q+")","i"),bR={},bS={position:"absolute",visibility:"hidden",display:"block"},bT={letterSpacing:0,fontWeight:400,lineHeight:1},bU=["Top","Right","Bottom","Left"],bV=["Webkit","O","Moz","ms"],bW=p.fn.toggle;p.fn.extend({css:function(a,c){return p.access(this,function(a,c,d){return d!==b?p.style(a,c,d):p.css(a,c)},a,c,arguments.length>1)},show:function(){return bZ(this,!0)},hide:function(){return bZ(this)},toggle:function(a,b){var c=typeof a=="boolean";return p.isFunction(a)&&p.isFunction(b)?bW.apply(this,arguments):this.each(function(){(c?a:bY(this))?p(this).show():p(this).hide()})}}),p.extend({cssHooks:{opacity:{get:function(a,b){if(b){var c=bH(a,"opacity");return c===""?"1":c}}}},cssNumber:{fillOpacity:!0,fontWeight:!0,lineHeight:!0,opacity:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{"float":p.support.cssFloat?"cssFloat":"styleFloat"},style:function(a,c,d,e){if(!a||a.nodeType===3||a.nodeType===8||!a.style)return;var f,g,h,i=p.camelCase(c),j=a.style;c=p.cssProps[i]||(p.cssProps[i]=bX(j,i)),h=p.cssHooks[c]||p.cssHooks[i];if(d===b)return h&&"get"in h&&(f=h.get(a,!1,e))!==b?f:j[c];g=typeof d,g==="string"&&(f=bQ.exec(d))&&(d=(f[1]+1)*f[2]+parseFloat(p.css(a,c)),g="number");if(d==null||g==="number"&&isNaN(d))return;g==="number"&&!p.cssNumber[i]&&(d+="px");if(!h||!("set"in h)||(d=h.set(a,d,e))!==b)try{j[c]=d}catch(k){}},css:function(a,c,d,e){var f,g,h,i=p.camelCase(c);return c=p.cssProps[i]||(p.cssProps[i]=bX(a.style,i)),h=p.cssHooks[c]||p.cssHooks[i],h&&"get"in h&&(f=h.get(a,!0,e)),f===b&&(f=bH(a,c)),f==="normal"&&c in bT&&(f=bT[c]),d||e!==b?(g=parseFloat(f),d||p.isNumeric(g)?g||0:f):f},swap:function(a,b,c){var d,e,f={};for(e in b)f[e]=a.style[e],a.style[e]=b[e];d=c.call(a);for(e in b)a.style[e]=f[e];return d}}),a.getComputedStyle?bH=function(a,b){var c,d,e,f,g=getComputedStyle(a,null),h=a.style;return g&&(c=g[b],c===""&&!p.contains(a.ownerDocument.documentElement,a)&&(c=p.style(a,b)),bP.test(c)&&bN.test(b)&&(d=h.width,e=h.minWidth,f=h.maxWidth,h.minWidth=h.maxWidth=h.width=c,c=g.width,h.width=d,h.minWidth=e,h.maxWidth=f)),c}:e.documentElement.currentStyle&&(bH=function(a,b){var c,d,e=a.currentStyle&&a.currentStyle[b],f=a.style;return e==null&&f&&f[b]&&(e=f[b]),bP.test(e)&&!bM.test(b)&&(c=f.left,d=a.runtimeStyle&&a.runtimeStyle.left,d&&(a.runtimeStyle.left=a.currentStyle.left),f.left=b==="fontSize"?"1em":e,e=f.pixelLeft+"px",f.left=c,d&&(a.runtimeStyle.left=d)),e===""?"auto":e}),p.each(["height","width"],function(a,b){p.cssHooks[b]={get:function(a,c,d){if(c)return a.offsetWidth!==0||bH(a,"display")!=="none"?ca(a,b,d):p.swap(a,bS,function(){return ca(a,b,d)})},set:function(a,c,d){return b$(a,c,d?b_(a,b,d,p.support.boxSizing&&p.css(a,"boxSizing")==="border-box"):0)}}}),p.support.opacity||(p.cssHooks.opacity={get:function(a,b){return bL.test((b&&a.currentStyle?a.currentStyle.filter:a.style.filter)||"")?.01*parseFloat(RegExp.$1)+"":b?"1":""},set:function(a,b){var c=a.style,d=a.currentStyle,e=p.isNumeric(b)?"alpha(opacity="+b*100+")":"",f=d&&d.filter||c.filter||"";c.zoom=1;if(b>=1&&p.trim(f.replace(bK,""))===""&&c.removeAttribute){c.removeAttribute("filter");if(d&&!d.filter)return}c.filter=bK.test(f)?f.replace(bK,e):f+" "+e}}),p(function(){p.support.reliableMarginRight||(p.cssHooks.marginRight={get:function(a,b){return p.swap(a,{display:"inline-block"},function(){if(b)return bH(a,"marginRight")})}}),!p.support.pixelPosition&&p.fn.position&&p.each(["top","left"],function(a,b){p.cssHooks[b]={get:function(a,c){if(c){var d=bH(a,b);return bP.test(d)?p(a).position()[b]+"px":d}}}})}),p.expr&&p.expr.filters&&(p.expr.filters.hidden=function(a){return a.offsetWidth===0&&a.offsetHeight===0||!p.support.reliableHiddenOffsets&&(a.style&&a.style.display||bH(a,"display"))==="none"},p.expr.filters.visible=function(a){return!p.expr.filters.hidden(a)}),p.each({margin:"",padding:"",border:"Width"},function(a,b){p.cssHooks[a+b]={expand:function(c){var d,e=typeof c=="string"?c.split(" "):[c],f={};for(d=0;d<4;d++)f[a+bU[d]+b]=e[d]||e[d-2]||e[0];return f}},bN.test(a)||(p.cssHooks[a+b].set=b$)});var cc=/%20/g,cd=/\[\]$/,ce=/\r?\n/g,cf=/^(?:color|date|datetime|datetime-local|email|hidden|month|number|password|range|search|tel|text|time|url|week)$/i,cg=/^(?:select|textarea)/i;p.fn.extend({serialize:function(){return p.param(this.serializeArray())},serializeArray:function(){return this.map(function(){return this.elements?p.makeArray(this.elements):this}).filter(function(){return this.name&&!this.disabled&&(this.checked||cg.test(this.nodeName)||cf.test(this.type))}).map(function(a,b){var c=p(this).val();return c==null?null:p.isArray(c)?p.map(c,function(a,c){return{name:b.name,value:a.replace(ce,"\r\n")}}):{name:b.name,value:c.replace(ce,"\r\n")}}).get()}}),p.param=function(a,c){var d,e=[],f=function(a,b){b=p.isFunction(b)?b():b==null?"":b,e[e.length]=encodeURIComponent(a)+"="+encodeURIComponent(b)};c===b&&(c=p.ajaxSettings&&p.ajaxSettings.traditional);if(p.isArray(a)||a.jquery&&!p.isPlainObject(a))p.each(a,function(){f(this.name,this.value)});else for(d in a)ch(d,a[d],c,f);return e.join("&").replace(cc,"+")};var ci,cj,ck=/#.*$/,cl=/^(.*?):[ \t]*([^\r\n]*)\r?$/mg,cm=/^(?:about|app|app\-storage|.+\-extension|file|res|widget):$/,cn=/^(?:GET|HEAD)$/,co=/^\/\//,cp=/\?/,cq=/<script\b[^<]*(?:(?!<\/script>)<[^<]*)*<\/script>/gi,cr=/([?&])_=[^&]*/,cs=/^([\w\+\.\-]+:)(?:\/\/([^\/?#:]*)(?::(\d+)|)|)/,ct=p.fn.load,cu={},cv={},cw=["*/"]+["*"];try{ci=f.href}catch(cx){ci=e.createElement("a"),ci.href="",ci=ci.href}cj=cs.exec(ci.toLowerCase())||[],p.fn.load=function(a,c,d){if(typeof a!="string"&&ct)return ct.apply(this,arguments);if(!this.length)return this;var e,f,g,h=this,i=a.indexOf(" ");return i>=0&&(e=a.slice(i,a.length),a=a.slice(0,i)),p.isFunction(c)?(d=c,c=b):typeof c=="object"&&(f="POST"),p.ajax({url:a,type:f,dataType:"html",data:c,complete:function(a,b){d&&h.each(d,g||[a.responseText,b,a])}}).done(function(a){g=arguments,h.html(e?p("<div>").append(a.replace(cq,"")).find(e):a)}),this},p.each("ajaxStart ajaxStop ajaxComplete ajaxError ajaxSuccess ajaxSend".split(" "),function(a,b){p.fn[b]=function(a){return this.on(b,a)}}),p.each(["get","post"],function(a,c){p[c]=function(a,d,e,f){return p.isFunction(d)&&(f=f||e,e=d,d=b),p.ajax({type:c,url:a,data:d,success:e,dataType:f})}}),p.extend({getScript:function(a,c){return p.get(a,b,c,"script")},getJSON:function(a,b,c){return p.get(a,b,c,"json")},ajaxSetup:function(a,b){return b?cA(a,p.ajaxSettings):(b=a,a=p.ajaxSettings),cA(a,b),a},ajaxSettings:{url:ci,isLocal:cm.test(cj[1]),global:!0,type:"GET",contentType:"application/x-www-form-urlencoded; charset=UTF-8",processData:!0,async:!0,accepts:{xml:"application/xml, text/xml",html:"text/html",text:"text/plain",json:"application/json, text/javascript","*":cw},contents:{xml:/xml/,html:/html/,json:/json/},responseFields:{xml:"responseXML",text:"responseText"},converters:{"* text":a.String,"text html":!0,"text json":p.parseJSON,"text xml":p.parseXML},flatOptions:{context:!0,url:!0}},ajaxPrefilter:cy(cu),ajaxTransport:cy(cv),ajax:function(a,c){function y(a,c,f,i){var k,s,t,u,w,y=c;if(v===2)return;v=2,h&&clearTimeout(h),g=b,e=i||"",x.readyState=a>0?4:0,f&&(u=cB(l,x,f));if(a>=200&&a<300||a===304)l.ifModified&&(w=x.getResponseHeader("Last-Modified"),w&&(p.lastModified[d]=w),w=x.getResponseHeader("Etag"),w&&(p.etag[d]=w)),a===304?(y="notmodified",k=!0):(k=cC(l,u),y=k.state,s=k.data,t=k.error,k=!t);else{t=y;if(!y||a)y="error",a<0&&(a=0)}x.status=a,x.statusText=""+(c||y),k?o.resolveWith(m,[s,y,x]):o.rejectWith(m,[x,y,t]),x.statusCode(r),r=b,j&&n.trigger("ajax"+(k?"Success":"Error"),[x,l,k?s:t]),q.fireWith(m,[x,y]),j&&(n.trigger("ajaxComplete",[x,l]),--p.active||p.event.trigger("ajaxStop"))}typeof a=="object"&&(c=a,a=b),c=c||{};var d,e,f,g,h,i,j,k,l=p.ajaxSetup({},c),m=l.context||l,n=m!==l&&(m.nodeType||m instanceof p)?p(m):p.event,o=p.Deferred(),q=p.Callbacks("once memory"),r=l.statusCode||{},t={},u={},v=0,w="canceled",x={readyState:0,setRequestHeader:function(a,b){if(!v){var c=a.toLowerCase();a=u[c]=u[c]||a,t[a]=b}return this},getAllResponseHeaders:function(){return v===2?e:null},getResponseHeader:function(a){var c;if(v===2){if(!f){f={};while(c=cl.exec(e))f[c[1].toLowerCase()]=c[2]}c=f[a.toLowerCase()]}return c===b?null:c},overrideMimeType:function(a){return v||(l.mimeType=a),this},abort:function(a){return a=a||w,g&&g.abort(a),y(0,a),this}};o.promise(x),x.success=x.done,x.error=x.fail,x.complete=q.add,x.statusCode=function(a){if(a){var b;if(v<2)for(b in a)r[b]=[r[b],a[b]];else b=a[x.status],x.always(b)}return this},l.url=((a||l.url)+"").replace(ck,"").replace(co,cj[1]+"//"),l.dataTypes=p.trim(l.dataType||"*").toLowerCase().split(s),l.crossDomain==null&&(i=cs.exec(l.url.toLowerCase()),l.crossDomain=!(!i||i[1]==cj[1]&&i[2]==cj[2]&&(i[3]||(i[1]==="http:"?80:443))==(cj[3]||(cj[1]==="http:"?80:443)))),l.data&&l.processData&&typeof l.data!="string"&&(l.data=p.param(l.data,l.traditional)),cz(cu,l,c,x);if(v===2)return x;j=l.global,l.type=l.type.toUpperCase(),l.hasContent=!cn.test(l.type),j&&p.active++===0&&p.event.trigger("ajaxStart");if(!l.hasContent){l.data&&(l.url+=(cp.test(l.url)?"&":"?")+l.data,delete l.data),d=l.url;if(l.cache===!1){var z=p.now(),A=l.url.replace(cr,"$1_="+z);l.url=A+(A===l.url?(cp.test(l.url)?"&":"?")+"_="+z:"")}}(l.data&&l.hasContent&&l.contentType!==!1||c.contentType)&&x.setRequestHeader("Content-Type",l.contentType),l.ifModified&&(d=d||l.url,p.lastModified[d]&&x.setRequestHeader("If-Modified-Since",p.lastModified[d]),p.etag[d]&&x.setRequestHeader("If-None-Match",p.etag[d])),x.setRequestHeader("Accept",l.dataTypes[0]&&l.accepts[l.dataTypes[0]]?l.accepts[l.dataTypes[0]]+(l.dataTypes[0]!=="*"?", "+cw+"; q=0.01":""):l.accepts["*"]);for(k in l.headers)x.setRequestHeader(k,l.headers[k]);if(!l.beforeSend||l.beforeSend.call(m,x,l)!==!1&&v!==2){w="abort";for(k in{success:1,error:1,complete:1})x[k](l[k]);g=cz(cv,l,c,x);if(!g)y(-1,"No Transport");else{x.readyState=1,j&&n.trigger("ajaxSend",[x,l]),l.async&&l.timeout>0&&(h=setTimeout(function(){x.abort("timeout")},l.timeout));try{v=1,g.send(t,y)}catch(B){if(v<2)y(-1,B);else throw B}}return x}return x.abort()},active:0,lastModified:{},etag:{}});var cD=[],cE=/\?/,cF=/(=)\?(?=&|$)|\?\?/,cG=p.now();p.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var a=cD.pop()||p.expando+"_"+cG++;return this[a]=!0,a}}),p.ajaxPrefilter("json jsonp",function(c,d,e){var f,g,h,i=c.data,j=c.url,k=c.jsonp!==!1,l=k&&cF.test(j),m=k&&!l&&typeof i=="string"&&!(c.contentType||"").indexOf("application/x-www-form-urlencoded")&&cF.test(i);if(c.dataTypes[0]==="jsonp"||l||m)return f=c.jsonpCallback=p.isFunction(c.jsonpCallback)?c.jsonpCallback():c.jsonpCallback,g=a[f],l?c.url=j.replace(cF,"$1"+f):m?c.data=i.replace(cF,"$1"+f):k&&(c.url+=(cE.test(j)?"&":"?")+c.jsonp+"="+f),c.converters["script json"]=function(){return h||p.error(f+" was not called"),h[0]},c.dataTypes[0]="json",a[f]=function(){h=arguments},e.always(function(){a[f]=g,c[f]&&(c.jsonpCallback=d.jsonpCallback,cD.push(f)),h&&p.isFunction(g)&&g(h[0]),h=g=b}),"script"}),p.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/javascript|ecmascript/},converters:{"text script":function(a){return p.globalEval(a),a}}}),p.ajaxPrefilter("script",function(a){a.cache===b&&(a.cache=!1),a.crossDomain&&(a.type="GET",a.global=!1)}),p.ajaxTransport("script",function(a){if(a.crossDomain){var c,d=e.head||e.getElementsByTagName("head")[0]||e.documentElement;return{send:function(f,g){c=e.createElement("script"),c.async="async",a.scriptCharset&&(c.charset=a.scriptCharset),c.src=a.url,c.onload=c.onreadystatechange=function(a,e){if(e||!c.readyState||/loaded|complete/.test(c.readyState))c.onload=c.onreadystatechange=null,d&&c.parentNode&&d.removeChild(c),c=b,e||g(200,"success")},d.insertBefore(c,d.firstChild)},abort:function(){c&&c.onload(0,1)}}}});var cH,cI=a.ActiveXObject?function(){for(var a in cH)cH[a](0,1)}:!1,cJ=0;p.ajaxSettings.xhr=a.ActiveXObject?function(){return!this.isLocal&&cK()||cL()}:cK,function(a){p.extend(p.support,{ajax:!!a,cors:!!a&&"withCredentials"in a})}(p.ajaxSettings.xhr()),p.support.ajax&&p.ajaxTransport(function(c){if(!c.crossDomain||p.support.cors){var d;return{send:function(e,f){var g,h,i=c.xhr();c.username?i.open(c.type,c.url,c.async,c.username,c.password):i.open(c.type,c.url,c.async);if(c.xhrFields)for(h in c.xhrFields)i[h]=c.xhrFields[h];c.mimeType&&i.overrideMimeType&&i.overrideMimeType(c.mimeType),!c.crossDomain&&!e["X-Requested-With"]&&(e["X-Requested-With"]="XMLHttpRequest");try{for(h in e)i.setRequestHeader(h,e[h])}catch(j){}i.send(c.hasContent&&c.data||null),d=function(a,e){var h,j,k,l,m;try{if(d&&(e||i.readyState===4)){d=b,g&&(i.onreadystatechange=p.noop,cI&&delete cH[g]);if(e)i.readyState!==4&&i.abort();else{h=i.status,k=i.getAllResponseHeaders(),l={},m=i.responseXML,m&&m.documentElement&&(l.xml=m);try{l.text=i.responseText}catch(a){}try{j=i.statusText}catch(n){j=""}!h&&c.isLocal&&!c.crossDomain?h=l.text?200:404:h===1223&&(h=204)}}}catch(o){e||f(-1,o)}l&&f(h,j,l,k)},c.async?i.readyState===4?setTimeout(d,0):(g=++cJ,cI&&(cH||(cH={},p(a).unload(cI)),cH[g]=d),i.onreadystatechange=d):d()},abort:function(){d&&d(0,1)}}}});var cM,cN,cO=/^(?:toggle|show|hide)$/,cP=new RegExp("^(?:([-+])=|)("+q+")([a-z%]*)$","i"),cQ=/queueHooks$/,cR=[cX],cS={"*":[function(a,b){var c,d,e,f=this.createTween(a,b),g=cP.exec(b),h=f.cur(),i=+h||0,j=1;if(g){c=+g[2],d=g[3]||(p.cssNumber[a]?"":"px");if(d!=="px"&&i){i=p.css(f.elem,a,!0)||c||1;do e=j=j||".5",i=i/j,p.style(f.elem,a,i+d),j=f.cur()/h;while(j!==1&&j!==e)}f.unit=d,f.start=i,f.end=g[1]?i+(g[1]+1)*c:c}return f}]};p.Animation=p.extend(cV,{tweener:function(a,b){p.isFunction(a)?(b=a,a=["*"]):a=a.split(" ");var c,d=0,e=a.length;for(;d<e;d++)c=a[d],cS[c]=cS[c]||[],cS[c].unshift(b)},prefilter:function(a,b){b?cR.unshift(a):cR.push(a)}}),p.Tween=cY,cY.prototype={constructor:cY,init:function(a,b,c,d,e,f){this.elem=a,this.prop=c,this.easing=e||"swing",this.options=b,this.start=this.now=this.cur(),this.end=d,this.unit=f||(p.cssNumber[c]?"":"px")},cur:function(){var a=cY.propHooks[this.prop];return a&&a.get?a.get(this):cY.propHooks._default.get(this)},run:function(a){var b,c=cY.propHooks[this.prop];return this.pos=b=p.easing[this.easing](a,this.options.duration*a,0,1,this.options.duration),this.now=(this.end-this.start)*b+this.start,this.options.step&&this.options.step.call(this.elem,this.now,this),c&&c.set?c.set(this):cY.propHooks._default.set(this),this}},cY.prototype.init.prototype=cY.prototype,cY.propHooks={_default:{get:function(a){var b;return a.elem[a.prop]==null||!!a.elem.style&&a.elem.style[a.prop]!=null?(b=p.css(a.elem,a.prop,!1,""),!b||b==="auto"?0:b):a.elem[a.prop]},set:function(a){p.fx.step[a.prop]?p.fx.step[a.prop](a):a.elem.style&&(a.elem.style[p.cssProps[a.prop]]!=null||p.cssHooks[a.prop])?p.style(a.elem,a.prop,a.now+a.unit):a.elem[a.prop]=a.now}}},cY.propHooks.scrollTop=cY.propHooks.scrollLeft={set:function(a){a.elem.nodeType&&a.elem.parentNode&&(a.elem[a.prop]=a.now)}},p.each(["toggle","show","hide"],function(a,b){var c=p.fn[b];p.fn[b]=function(d,e,f){return d==null||typeof d=="boolean"||!a&&p.isFunction(d)&&p.isFunction(e)?c.apply(this,arguments):this.animate(cZ(b,!0),d,e,f)}}),p.fn.extend({fadeTo:function(a,b,c,d){return this.filter(bY).css("opacity",0).show().end().animate({opacity:b},a,c,d)},animate:function(a,b,c,d){var e=p.isEmptyObject(a),f=p.speed(b,c,d),g=function(){var b=cV(this,p.extend({},a),f);e&&b.stop(!0)};return e||f.queue===!1?this.each(g):this.queue(f.queue,g)},stop:function(a,c,d){var e=function(a){var b=a.stop;delete a.stop,b(d)};return typeof a!="string"&&(d=c,c=a,a=b),c&&a!==!1&&this.queue(a||"fx",[]),this.each(function(){var b=!0,c=a!=null&&a+"queueHooks",f=p.timers,g=p._data(this);if(c)g[c]&&g[c].stop&&e(g[c]);else for(c in g)g[c]&&g[c].stop&&cQ.test(c)&&e(g[c]);for(c=f.length;c--;)f[c].elem===this&&(a==null||f[c].queue===a)&&(f[c].anim.stop(d),b=!1,f.splice(c,1));(b||!d)&&p.dequeue(this,a)})}}),p.each({slideDown:cZ("show"),slideUp:cZ("hide"),slideToggle:cZ("toggle"),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"},fadeToggle:{opacity:"toggle"}},function(a,b){p.fn[a]=function(a,c,d){return this.animate(b,a,c,d)}}),p.speed=function(a,b,c){var d=a&&typeof a=="object"?p.extend({},a):{complete:c||!c&&b||p.isFunction(a)&&a,duration:a,easing:c&&b||b&&!p.isFunction(b)&&b};d.duration=p.fx.off?0:typeof d.duration=="number"?d.duration:d.duration in p.fx.speeds?p.fx.speeds[d.duration]:p.fx.speeds._default;if(d.queue==null||d.queue===!0)d.queue="fx";return d.old=d.complete,d.complete=function(){p.isFunction(d.old)&&d.old.call(this),d.queue&&p.dequeue(this,d.queue)},d},p.easing={linear:function(a){return a},swing:function(a){return.5-Math.cos(a*Math.PI)/2}},p.timers=[],p.fx=cY.prototype.init,p.fx.tick=function(){var a,b=p.timers,c=0;for(;c<b.length;c++)a=b[c],!a()&&b[c]===a&&b.splice(c--,1);b.length||p.fx.stop()},p.fx.timer=function(a){a()&&p.timers.push(a)&&!cN&&(cN=setInterval(p.fx.tick,p.fx.interval))},p.fx.interval=13,p.fx.stop=function(){clearInterval(cN),cN=null},p.fx.speeds={slow:600,fast:200,_default:400},p.fx.step={},p.expr&&p.expr.filters&&(p.expr.filters.animated=function(a){return p.grep(p.timers,function(b){return a===b.elem}).length});var c$=/^(?:body|html)$/i;p.fn.offset=function(a){if(arguments.length)return a===b?this:this.each(function(b){p.offset.setOffset(this,a,b)});var c,d,e,f,g,h,i,j,k,l,m=this[0],n=m&&m.ownerDocument;if(!n)return;return(e=n.body)===m?p.offset.bodyOffset(m):(d=n.documentElement,p.contains(d,m)?(c=m.getBoundingClientRect(),f=c_(n),g=d.clientTop||e.clientTop||0,h=d.clientLeft||e.clientLeft||0,i=f.pageYOffset||d.scrollTop,j=f.pageXOffset||d.scrollLeft,k=c.top+i-g,l=c.left+j-h,{top:k,left:l}):{top:0,left:0})},p.offset={bodyOffset:function(a){var b=a.offsetTop,c=a.offsetLeft;return p.support.doesNotIncludeMarginInBodyOffset&&(b+=parseFloat(p.css(a,"marginTop"))||0,c+=parseFloat(p.css(a,"marginLeft"))||0),{top:b,left:c}},setOffset:function(a,b,c){var d=p.css(a,"position");d==="static"&&(a.style.position="relative");var e=p(a),f=e.offset(),g=p.css(a,"top"),h=p.css(a,"left"),i=(d==="absolute"||d==="fixed")&&p.inArray("auto",[g,h])>-1,j={},k={},l,m;i?(k=e.position(),l=k.top,m=k.left):(l=parseFloat(g)||0,m=parseFloat(h)||0),p.isFunction(b)&&(b=b.call(a,c,f)),b.top!=null&&(j.top=b.top-f.top+l),b.left!=null&&(j.left=b.left-f.left+m),"using"in b?b.using.call(a,j):e.css(j)}},p.fn.extend({position:function(){if(!this[0])return;var a=this[0],b=this.offsetParent(),c=this.offset(),d=c$.test(b[0].nodeName)?{top:0,left:0}:b.offset();return c.top-=parseFloat(p.css(a,"marginTop"))||0,c.left-=parseFloat(p.css(a,"marginLeft"))||0,d.top+=parseFloat(p.css(b[0],"borderTopWidth"))||0,d.left+=parseFloat(p.css(b[0],"borderLeftWidth"))||0,{top:c.top-d.top,left:c.left-d.left}},offsetParent:function(){return this.map(function(){var a=this.offsetParent||e.body;while(a&&!c$.test(a.nodeName)&&p.css(a,"position")==="static")a=a.offsetParent;return a||e.body})}}),p.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(a,c){var d=/Y/.test(c);p.fn[a]=function(e){return p.access(this,function(a,e,f){var g=c_(a);if(f===b)return g?c in g?g[c]:g.document.documentElement[e]:a[e];g?g.scrollTo(d?p(g).scrollLeft():f,d?f:p(g).scrollTop()):a[e]=f},a,e,arguments.length,null)}}),p.each({Height:"height",Width:"width"},function(a,c){p.each({padding:"inner"+a,content:c,"":"outer"+a},function(d,e){p.fn[e]=function(e,f){var g=arguments.length&&(d||typeof e!="boolean"),h=d||(e===!0||f===!0?"margin":"border");return p.access(this,function(c,d,e){var f;return p.isWindow(c)?c.document.documentElement["client"+a]:c.nodeType===9?(f=c.documentElement,Math.max(c.body["scroll"+a],f["scroll"+a],c.body["offset"+a],f["offset"+a],f["client"+a])):e===b?p.css(c,d,e,h):p.style(c,d,e,h)},c,g?e:b,g)}})}),a.jQuery=a.$=p,typeof define=="function"&&define.amd&&define.amd.jQuery&&define("jquery",[],function(){return p})})(window);
packages/material-ui-icons/src/IsoRounded.js
allanalexandre/material-ui
import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( <React.Fragment><path fill="none" d="M0 0h24v24H0V0z" /><g><path d="M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM6.25 7.5H7.5V6.25c0-.41.34-.75.75-.75s.75.34.75.75V7.5h1.25c.41 0 .75.34.75.75s-.34.75-.75.75H9v1.25c0 .41-.34.75-.75.75s-.75-.34-.75-.75V9H6.25c-.41 0-.75-.34-.75-.75s.34-.75.75-.75zM18 19H5L19 5v13c0 .55-.45 1-1 1zm-1-2.75c0-.41-.34-.75-.75-.75h-3.5c-.41 0-.75.34-.75.75s.34.75.75.75h3.5c.41 0 .75-.34.75-.75z" /></g></React.Fragment> , 'IsoRounded');
src/views/index.js
wiki1024/sam-bs
import React from 'react'; import ReactDOM from 'react-dom'; import App from '../App'; import selectionList from './selectionList' // import menu from './menu' import navbar from './navbar' import fileManagerDemo from './fileManagerDemo' import SimpleDropdown from '../components/SimpleDropdown' export default function view(viewModel) { ReactDOM.render(<App selectionList={ selectionList(viewModel) } navbar = { navbar(viewModel) } fileManagerDemo = { fileManagerDemo(viewModel) } router={ viewModel.router } />, document.getElementById('root')) }
packages/material-ui-icons/src/FreeBreakfastRounded.js
kybarg/material-ui
import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( <path d="M20 3H6c-1.1 0-2 .9-2 2v8c0 2.21 1.79 4 4 4h6c2.21 0 4-1.79 4-4v-3h2c1.11 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 5h-2V5h2v3zM5 19h14c.55 0 1 .45 1 1s-.45 1-1 1H5c-.55 0-1-.45-1-1s.45-1 1-1z" /> , 'FreeBreakfastRounded');
src/js/pages/ProfessionalProfilePage.js
nekuno/client
import PropTypes from 'prop-types'; import React, { Component } from 'react'; import connectToStores from '../utils/connectToStores'; import translate from '../i18n/Translate'; import LocaleStore from '../stores/LocaleStore'; import RegisterStore from '../stores/RegisterStore'; import Button from '../components/ui/Button/Button.js'; import Overlay from '../components/ui/Overlay/Overlay.js'; import TopNavBar from '../components/TopNavBar/TopNavBar.js'; import '../../scss/pages/professional-profile.scss'; function getState() { const interfaceLanguage = LocaleStore.locale; const user = RegisterStore.user; const username = user && user.username ? user.username : null; return { interfaceLanguage, username }; } @translate('ProfessionalProfilePage') @connectToStores([LocaleStore, RegisterStore], getState) export default class ProfessionalProfilePage extends Component { static propTypes = { // Injected by @translate: strings : PropTypes.object, // Injected by @connectToStores: interfaceLanguage: PropTypes.string, username : PropTypes.string }; static contextTypes = { router: PropTypes.object.isRequired }; constructor(props) { super(props); this.goToProfessionalProfileIndustryPage = this.goToProfessionalProfileIndustryPage.bind(this); this.goToLeisureProfilePage = this.goToLeisureProfilePage.bind(this); } componentDidMount() { if (!this.props.username) { this.context.router.push('/answer-username'); } } goToLeisureProfilePage() { this.context.router.push('/leisure-profile'); } goToProfessionalProfileIndustryPage() { this.context.router.push('/professional-profile-industry'); } render() { const {strings} = this.props; return ( <div className="views"> <div className="view view-main professional-profile-view"> <TopNavBar background={'transparent'} color={'white'} iconLeft={'arrow-left'} textCenter={strings.yourAccount} position={'absolute'} textSize={'small'}/> <div className="professional-profile-wrapper"> <Overlay/> <div className="image-wrapper"> <img src="/img/proposals/Trabajo.png"/> </div> <h1>{strings.title}</h1> <div className="resume">{strings.description}</div> <div className="skip-wrapper-center small" onClick={this.goToProfessionalProfileIndustryPage}> <span className="skip-text">{strings.fillProfile}&nbsp;</span> </div> <div className="skip-wrapper small" onClick={this.goToLeisureProfilePage}> <span className="skip-text">{strings.skip}&nbsp;</span> <span className="icon-arrow-right" /> </div> </div> </div> </div> ); } } ProfessionalProfilePage.defaultProps = { strings: { yourAccount: 'Your account at Nekuno', title : 'Fill your professional profile', description: 'We need to know your industry and professional skills to recommend you people and projects', fillProfile: 'Fill profile', skip : 'Not now' } };
examples/huge-apps/routes/Course/routes/Grades/components/Grades.js
freeyiyi1993/react-router
import React from 'react'; class Grades extends React.Component { //static loadProps (params, cb) { //cb(null, { //assignments: COURSES[params.courseId].assignments //}); //} render () { //var { assignments } = this.props; var assignments = COURSES[this.props.params.courseId].assignments; return ( <div> <h3>Grades</h3> <ul> {assignments.map(assignment => ( <li key={assignment.id}>{assignment.grade} - {assignment.title}</li> ))} </ul> </div> ); } } export default Grades;
docs/public/static/examples/v38.0.0/map-view.js
exponent/exponent
import React from 'react'; import MapView from 'react-native-maps'; import { StyleSheet, View, Dimensions } from 'react-native'; export default function App() { return ( <View style={styles.container}> <MapView style={styles.mapStyle} /> </View> ); } const styles = StyleSheet.create({ container: { flex: 1, backgroundColor: '#fff', alignItems: 'center', justifyContent: 'center', }, mapStyle: { width: Dimensions.get('window').width, height: Dimensions.get('window').height, }, });
ajax/libs/yasr/1.1.3/yasr.min.js
chinakids/cdnjs
!function(e){if("object"==typeof exports)module.exports=e();else if("function"==typeof define&&define.amd)define(e);else{var t;"undefined"!=typeof window?t=window:"undefined"!=typeof global?t=global:"undefined"!=typeof self&&(t=self),t.YASR=e()}}(function(){var e;return function t(e,n,r){function i(a,s){if(!n[a]){if(!e[a]){var l="function"==typeof require&&require;if(!s&&l)return l(a,!0);if(o)return o(a,!0);throw new Error("Cannot find module '"+a+"'")}var u=n[a]={exports:{}};e[a][0].call(u.exports,function(t){var n=e[a][1][t];return i(n?n:t)},u,u.exports,t,e,n,r)}return n[a].exports}for(var o="function"==typeof require&&require,a=0;a<r.length;a++)i(r[a]);return i}({1:[function(t,n,r){!function(n,i,o){!function(n){"use strict";"function"==typeof e&&e.amd?e("datatables",["jquery"],n):"object"==typeof r?n(t("jquery")):jQuery&&!jQuery.fn.dataTable&&n(jQuery)}(function(e){"use strict";function t(n){var r,i,o="a aa ai ao as b fn i m o s ",a={};e.each(n,function(e){r=e.match(/^([^A-Z]+?)([A-Z])/),r&&-1!==o.indexOf(r[1]+" ")&&(i=e.replace(r[0],r[2].toLowerCase()),a[i]=e,"o"===r[1]&&t(n[e]))}),n._hungarianMap=a}function r(n,i,a){n._hungarianMap||t(n);var s;e.each(i,function(t){s=n._hungarianMap[t],s===o||!a&&i[s]!==o||("o"===s.charAt(0)?(i[s]||(i[s]={}),e.extend(!0,i[s],i[t]),r(n[s],i[s],a)):i[s]=i[t])})}function a(e){var t=Xt.defaults.oLanguage,n=e.sZeroRecords;!e.sEmptyTable&&n&&"No data available in table"===t.sEmptyTable&&It(e,e,"sZeroRecords","sEmptyTable"),!e.sLoadingRecords&&n&&"Loading..."===t.sLoadingRecords&&It(e,e,"sZeroRecords","sLoadingRecords"),e.sInfoThousands&&(e.sThousands=e.sInfoThousands);var r=e.sDecimal;r&&Vt(r)}function s(e){gn(e,"ordering","bSort"),gn(e,"orderMulti","bSortMulti"),gn(e,"orderClasses","bSortClasses"),gn(e,"orderCellsTop","bSortCellsTop"),gn(e,"order","aaSorting"),gn(e,"orderFixed","aaSortingFixed"),gn(e,"paging","bPaginate"),gn(e,"pagingType","sPaginationType"),gn(e,"pageLength","iDisplayLength"),gn(e,"searching","bFilter")}function l(e){gn(e,"orderable","bSortable"),gn(e,"orderData","aDataSort"),gn(e,"orderSequence","asSorting"),gn(e,"orderDataType","sortDataType")}function u(t){var n=t.oBrowser,r=e("<div/>").css({position:"absolute",top:0,left:0,height:1,width:1,overflow:"hidden"}).append(e("<div/>").css({position:"absolute",top:1,left:1,width:100,overflow:"scroll"}).append(e('<div class="test"/>').css({width:"100%",height:10}))).appendTo("body"),i=r.find(".test");n.bScrollOversize=100===i[0].offsetWidth,n.bScrollbarLeft=1!==i.offset().left,r.remove()}function c(e,t,n,r,i,a){var s,l=r,u=!1;for(n!==o&&(s=n,u=!0);l!==i;)e.hasOwnProperty(l)&&(s=u?t(s,e[l],l,e):e[l],u=!0,l+=a);return s}function f(t,n){var r=Xt.defaults.column,o=t.aoColumns.length,a=e.extend({},Xt.models.oColumn,r,{nTh:n?n:i.createElement("th"),sTitle:r.sTitle?r.sTitle:n?n.innerHTML:"",aDataSort:r.aDataSort?r.aDataSort:[o],mData:r.mData?r.mData:o,idx:o});t.aoColumns.push(a);var s=t.aoPreSearchCols;s[o]=e.extend({},Xt.models.oSearch,s[o]),d(t,o,null)}function d(t,n,i){var a=t.aoColumns[n],s=t.oClasses,u=e(a.nTh);if(!a.sWidthOrig){a.sWidthOrig=u.attr("width")||null;var c=(u.attr("style")||"").match(/width:\s*(\d+[pxem%])/);c&&(a.sWidthOrig=c[1])}i!==o&&null!==i&&(l(i),r(Xt.defaults.column,i),i.mDataProp===o||i.mData||(i.mData=i.mDataProp),i.sType&&(a._sManualType=i.sType),i.className&&!i.sClass&&(i.sClass=i.className),e.extend(a,i),It(a,i,"sWidth","sWidthOrig"),"number"==typeof i.iDataSort&&(a.aDataSort=[i.iDataSort]),It(a,i,"aDataSort"));var f=a.mData,d=L(f),h=a.mRender?L(a.mRender):null,p=function(e){return"string"==typeof e&&-1!==e.indexOf("@")};a._bAttrSrc=e.isPlainObject(f)&&(p(f.sort)||p(f.type)||p(f.filter)),a.fnGetData=function(e,t){var n=d(e,t);return a.mRender&&t&&""!==t?h(n,t,e):n},a.fnSetData=N(f),t.oFeatures.bSort||(a.bSortable=!1,u.addClass(s.sSortableNone));var g=-1!==e.inArray("asc",a.asSorting),m=-1!==e.inArray("desc",a.asSorting);a.bSortable&&(g||m)?g&&!m?(a.sSortingClass=s.sSortableAsc,a.sSortingClassJUI=s.sSortJUIAscAllowed):!g&&m?(a.sSortingClass=s.sSortableDesc,a.sSortingClassJUI=s.sSortJUIDescAllowed):(a.sSortingClass=s.sSortable,a.sSortingClassJUI=s.sSortJUI):(a.sSortingClass=s.sSortableNone,a.sSortingClassJUI="")}function h(e){if(e.oFeatures.bAutoWidth!==!1){var t=e.aoColumns;mt(e);for(var n=0,r=t.length;r>n;n++)t[n].nTh.style.width=t[n].sWidth}var i=e.oScroll;(""!==i.sY||""!==i.sX)&&pt(e),Rt(e,null,"column-sizing",[e])}function p(e,t){var n=v(e,"bVisible");return"number"==typeof n[t]?n[t]:null}function g(t,n){var r=v(t,"bVisible"),i=e.inArray(n,r);return-1!==i?i:null}function m(e){return v(e,"bVisible").length}function v(t,n){var r=[];return e.map(t.aoColumns,function(e,t){e[n]&&r.push(t)}),r}function y(e){var t,n,r,i,a,s,l,u,c,f=e.aoColumns,d=e.aoData,h=Xt.ext.type.detect;for(t=0,n=f.length;n>t;t++)if(l=f[t],c=[],!l.sType&&l._sManualType)l.sType=l._sManualType;else if(!l.sType){for(r=0,i=h.length;i>r;r++){for(a=0,s=d.length;s>a&&(c[a]===o&&(c[a]=T(e,a,t,"type")),u=h[r](c[a],e),u&&"html"!==u);a++);if(u){l.sType=u;break}}l.sType||(l.sType="string")}}function b(t,n,r,i){var a,s,l,u,c,d,h,p=t.aoColumns;if(n)for(a=n.length-1;a>=0;a--){h=n[a];var g=h.targets!==o?h.targets:h.aTargets;for(e.isArray(g)||(g=[g]),l=0,u=g.length;u>l;l++)if("number"==typeof g[l]&&g[l]>=0){for(;p.length<=g[l];)f(t);i(g[l],h)}else if("number"==typeof g[l]&&g[l]<0)i(p.length+g[l],h);else if("string"==typeof g[l])for(c=0,d=p.length;d>c;c++)("_all"==g[l]||e(p[c].nTh).hasClass(g[l]))&&i(c,h)}if(r)for(a=0,s=r.length;s>a;a++)i(a,r[a])}function x(t,n,r,i){var o=t.aoData.length,a=e.extend(!0,{},Xt.models.oRow,{src:r?"dom":"data"});a._aData=n,t.aoData.push(a);for(var s=t.aoColumns,l=0,u=s.length;u>l;l++)r&&D(t,o,l,T(t,o,l)),s[l].sType=null;return t.aiDisplayMaster.push(o),t.oFeatures.bDeferRender||j(t,o,r,i),o}function w(t,n){var r;return n instanceof e||(n=e(n)),n.map(function(e,n){return r=H(t,n),x(t,r.data,n,r.cells)})}function C(e,t){return t._DT_RowIndex!==o?t._DT_RowIndex:null}function S(t,n,r){return e.inArray(r,t.aoData[n].anCells)}function T(e,t,n,r){var i=e.aoColumns[n],a=e.aoData[t]._aData,s=i.fnGetData(a,r);if(s===o)return e.iDrawError!=e.iDraw&&null===i.sDefaultContent&&(jt(e,0,"Requested unknown parameter "+("function"==typeof i.mData?"{function}":"'"+i.mData+"'")+" for row "+t,4),e.iDrawError=e.iDraw),i.sDefaultContent;if(s!==a&&null!==s||null===i.sDefaultContent){if("function"==typeof s)return s()}else s=i.sDefaultContent;return null===s&&"display"==r?"":s}function D(e,t,n,r){var i=e.aoColumns[n],o=e.aoData[t]._aData;i.fnSetData(o,r)}function k(t){return e.map(t.match(/(\\.|[^\.])+/g),function(e){return e.replace("\\.",".")})}function L(t){if(e.isPlainObject(t)){var n={};return e.each(t,function(e,t){t&&(n[e]=L(t))}),function(e,t,r){var i=n[t]||n._;return i!==o?i(e,t,r):e}}if(null===t)return function(e){return e};if("function"==typeof t)return function(e,n,r){return t(e,n,r)};if("string"!=typeof t||-1===t.indexOf(".")&&-1===t.indexOf("[")&&-1===t.indexOf("("))return function(e){return e[t]};var r=function(e,t,n){var i,a,s,l;if(""!==n)for(var u=k(n),c=0,f=u.length;f>c;c++){if(i=u[c].match(mn),a=u[c].match(vn),i){u[c]=u[c].replace(mn,""),""!==u[c]&&(e=e[u[c]]),s=[],u.splice(0,c+1),l=u.join(".");for(var d=0,h=e.length;h>d;d++)s.push(r(e[d],t,l));var p=i[0].substring(1,i[0].length-1);e=""===p?s:s.join(p);break}if(a)u[c]=u[c].replace(vn,""),e=e[u[c]]();else{if(null===e||e[u[c]]===o)return o;e=e[u[c]]}}return e};return function(e,n){return r(e,n,t)}}function N(t){if(e.isPlainObject(t))return N(t._);if(null===t)return function(){};if("function"==typeof t)return function(e,n){t(e,"set",n)};if("string"!=typeof t||-1===t.indexOf(".")&&-1===t.indexOf("[")&&-1===t.indexOf("("))return function(e,n){e[t]=n};var n=function(e,t,r){for(var i,a,s,l,u,c=k(r),f=c[c.length-1],d=0,h=c.length-1;h>d;d++){if(a=c[d].match(mn),s=c[d].match(vn),a){c[d]=c[d].replace(mn,""),e[c[d]]=[],i=c.slice(),i.splice(0,d+1),u=i.join(".");for(var p=0,g=t.length;g>p;p++)l={},n(l,t[p],u),e[c[d]].push(l);return}s&&(c[d]=c[d].replace(vn,""),e=e[c[d]](t)),(null===e[c[d]]||e[c[d]]===o)&&(e[c[d]]={}),e=e[c[d]]}f.match(vn)?e=e[f.replace(vn,"")](t):e[f.replace(mn,"")]=t};return function(e,r){return n(e,r,t)}}function A(e){return cn(e.aoData,"_aData")}function _(e){e.aoData.length=0,e.aiDisplayMaster.length=0,e.aiDisplay.length=0}function M(e,t,n){for(var r=-1,i=0,a=e.length;a>i;i++)e[i]==t?r=i:e[i]>t&&e[i]--;-1!=r&&n===o&&e.splice(r,1)}function E(e,t,n,r){var i,a,s=e.aoData[t];if("dom"!==n&&(n&&"auto"!==n||"dom"!==s.src)){var l=s.anCells;if(l)for(i=0,a=l.length;a>i;i++)l[i].innerHTML=T(e,t,i,"display")}else s._aData=H(e,s).data;s._aSortData=null,s._aFilterData=null;var u=e.aoColumns;if(r!==o)u[r].sType=null;else for(i=0,a=u.length;a>i;i++)u[i].sType=null;I(s)}function H(t,n){var r,i,o,a,s=[],l=[],u=n.firstChild,c=0,f=t.aoColumns,d=function(e,t,n){if("string"==typeof e){var r=e.indexOf("@");if(-1!==r){var i=e.substring(r+1);o["@"+i]=n.getAttribute(i)}}},h=function(t){i=f[c],a=e.trim(t.innerHTML),i&&i._bAttrSrc?(o={display:a},d(i.mData.sort,o,t),d(i.mData.type,o,t),d(i.mData.filter,o,t),s.push(o)):s.push(a),l.push(t),c++};if(u)for(;u;)r=u.nodeName.toUpperCase(),("TD"==r||"TH"==r)&&h(u),u=u.nextSibling;else{l=n.anCells;for(var p=0,g=l.length;g>p;p++)h(l[p])}return{data:s,cells:l}}function j(e,t,n,r){var o,a,s,l,u,c=e.aoData[t],f=c._aData,d=[];if(null===c.nTr){for(o=n||i.createElement("tr"),c.nTr=o,c.anCells=d,o._DT_RowIndex=t,I(c),l=0,u=e.aoColumns.length;u>l;l++)s=e.aoColumns[l],a=n?r[l]:i.createElement(s.sCellType),d.push(a),(!n||s.mRender||s.mData!==l)&&(a.innerHTML=T(e,t,l,"display")),s.sClass&&(a.className+=" "+s.sClass),s.bVisible&&!n?o.appendChild(a):!s.bVisible&&n&&a.parentNode.removeChild(a),s.fnCreatedCell&&s.fnCreatedCell.call(e.oInstance,a,T(e,t,l,"display"),f,t,l);Rt(e,"aoRowCreatedCallback",null,[o,f,t])}c.nTr.setAttribute("role","row")}function I(t){var n=t.nTr,r=t._aData;if(n){if(r.DT_RowId&&(n.id=r.DT_RowId),r.DT_RowClass){var i=r.DT_RowClass.split(" ");t.__rowc=t.__rowc?pn(t.__rowc.concat(i)):i,e(n).removeClass(t.__rowc.join(" ")).addClass(r.DT_RowClass)}r.DT_RowData&&e(n).data(r.DT_RowData)}}function O(t){var n,r,i,o,a,s=t.nTHead,l=t.nTFoot,u=0===e("th, td",s).length,c=t.oClasses,f=t.aoColumns;for(u&&(o=e("<tr/>").appendTo(s)),n=0,r=f.length;r>n;n++)a=f[n],i=e(a.nTh).addClass(a.sClass),u&&i.appendTo(o),t.oFeatures.bSort&&(i.addClass(a.sSortingClass),a.bSortable!==!1&&(i.attr("tabindex",t.iTabIndex).attr("aria-controls",t.sTableId),Nt(t,a.nTh,n))),a.sTitle!=i.html()&&i.html(a.sTitle),zt(t,"header")(t,i,a,c);if(u&&z(t.aoHeader,s),e(s).find(">tr").attr("role","row"),e(s).find(">tr>th, >tr>td").addClass(c.sHeaderTH),e(l).find(">tr>th, >tr>td").addClass(c.sFooterTH),null!==l){var d=t.aoFooter[0];for(n=0,r=d.length;r>n;n++)a=f[n],a.nTf=d[n].cell,a.sClass&&e(a.nTf).addClass(a.sClass)}}function F(t,n,r){var i,a,s,l,u,c,f,d,h,p=[],g=[],m=t.aoColumns.length;if(n){for(r===o&&(r=!1),i=0,a=n.length;a>i;i++){for(p[i]=n[i].slice(),p[i].nTr=n[i].nTr,s=m-1;s>=0;s--)t.aoColumns[s].bVisible||r||p[i].splice(s,1);g.push([])}for(i=0,a=p.length;a>i;i++){if(f=p[i].nTr)for(;c=f.firstChild;)f.removeChild(c);for(s=0,l=p[i].length;l>s;s++)if(d=1,h=1,g[i][s]===o){for(f.appendChild(p[i][s].cell),g[i][s]=1;p[i+d]!==o&&p[i][s].cell==p[i+d][s].cell;)g[i+d][s]=1,d++;for(;p[i][s+h]!==o&&p[i][s].cell==p[i][s+h].cell;){for(u=0;d>u;u++)g[i+u][s+h]=1;h++}e(p[i][s].cell).attr("rowspan",d).attr("colspan",h)}}}}function P(t){var n=Rt(t,"aoPreDrawCallback","preDraw",[t]);if(-1!==e.inArray(!1,n))return void dt(t,!1);var r=[],i=0,a=t.asStripeClasses,s=a.length,l=(t.aoOpenRows.length,t.oLanguage),u=t.iInitDisplayStart,c="ssp"==Bt(t),f=t.aiDisplay;t.bDrawing=!0,u!==o&&-1!==u&&(t._iDisplayStart=c?u:u>=t.fnRecordsDisplay()?0:u,t.iInitDisplayStart=-1);var d=t._iDisplayStart,h=t.fnDisplayEnd();if(t.bDeferLoading)t.bDeferLoading=!1,t.iDraw++,dt(t,!1);else if(c){if(!t.bDestroying&&!V(t))return}else t.iDraw++;if(0!==f.length)for(var p=c?0:d,g=c?t.aoData.length:h,v=p;g>v;v++){var y=f[v],b=t.aoData[y];null===b.nTr&&j(t,y);var x=b.nTr;if(0!==s){var w=a[i%s];b._sRowStripe!=w&&(e(x).removeClass(b._sRowStripe).addClass(w),b._sRowStripe=w)}Rt(t,"aoRowCallback",null,[x,b._aData,i,v]),r.push(x),i++}else{var C=l.sZeroRecords;1==t.iDraw&&"ajax"==Bt(t)?C=l.sLoadingRecords:l.sEmptyTable&&0===t.fnRecordsTotal()&&(C=l.sEmptyTable),r[0]=e("<tr/>",{"class":s?a[0]:""}).append(e("<td />",{valign:"top",colSpan:m(t),"class":t.oClasses.sRowEmpty}).html(C))[0]}Rt(t,"aoHeaderCallback","header",[e(t.nTHead).children("tr")[0],A(t),d,h,f]),Rt(t,"aoFooterCallback","footer",[e(t.nTFoot).children("tr")[0],A(t),d,h,f]);var S=e(t.nTBody);S.children().detach(),S.append(e(r)),Rt(t,"aoDrawCallback","draw",[t]),t.bSorted=!1,t.bFiltered=!1,t.bDrawing=!1}function R(e,t){var n=e.oFeatures,r=n.bSort,i=n.bFilter;r&&Dt(e),i?J(e,e.oPreviousSearch):e.aiDisplay=e.aiDisplayMaster.slice(),t!==!0&&(e._iDisplayStart=0),P(e)}function W(t){var n=t.oClasses,r=e(t.nTable),i=e("<div/>").insertBefore(r),o=t.oFeatures,a=e("<div/>",{id:t.sTableId+"_wrapper","class":n.sWrapper+(t.nTFoot?"":" "+n.sNoFooter)});t.nHolding=i[0],t.nTableWrapper=a[0],t.nTableReinsertBefore=t.nTable.nextSibling;for(var s,l,u,c,f,d,h=t.sDom.split(""),p=0;p<h.length;p++){if(s=null,l=h[p],"<"==l){if(u=e("<div/>")[0],c=h[p+1],"'"==c||'"'==c){for(f="",d=2;h[p+d]!=c;)f+=h[p+d],d++;if("H"==f?f=n.sJUIHeader:"F"==f&&(f=n.sJUIFooter),-1!=f.indexOf(".")){var g=f.split(".");u.id=g[0].substr(1,g[0].length-1),u.className=g[1]}else"#"==f.charAt(0)?u.id=f.substr(1,f.length-1):u.className=f;p+=d}a.append(u),a=e(u)}else if(">"==l)a=a.parent();else if("l"==l&&o.bPaginate&&o.bLengthChange)s=lt(t);else if("f"==l&&o.bFilter)s=G(t);else if("r"==l&&o.bProcessing)s=ft(t);else if("t"==l)s=ht(t);else if("i"==l&&o.bInfo)s=nt(t);else if("p"==l&&o.bPaginate)s=ut(t);else if(0!==Xt.ext.feature.length)for(var m=Xt.ext.feature,v=0,y=m.length;y>v;v++)if(l==m[v].cFeature){s=m[v].fnInit(t);break}if(s){var b=t.aanFeatures;b[l]||(b[l]=[]),b[l].push(s),a.append(s)}}i.replaceWith(a)}function z(t,n){var r,i,o,a,s,l,u,c,f,d,h,p=e(n).children("tr"),g=function(e,t,n){for(var r=e[t];r[n];)n++;return n};for(t.splice(0,t.length),o=0,l=p.length;l>o;o++)t.push([]);for(o=0,l=p.length;l>o;o++)for(r=p[o],c=0,i=r.firstChild;i;){if("TD"==i.nodeName.toUpperCase()||"TH"==i.nodeName.toUpperCase())for(f=1*i.getAttribute("colspan"),d=1*i.getAttribute("rowspan"),f=f&&0!==f&&1!==f?f:1,d=d&&0!==d&&1!==d?d:1,u=g(t,o,c),h=1===f?!0:!1,s=0;f>s;s++)for(a=0;d>a;a++)t[o+a][u+s]={cell:i,unique:h},t[o+a].nTr=r;i=i.nextSibling}}function B(e,t,n){var r=[];n||(n=e.aoHeader,t&&(n=[],z(n,t)));for(var i=0,o=n.length;o>i;i++)for(var a=0,s=n[i].length;s>a;a++)!n[i][a].unique||r[a]&&e.bSortCellsTop||(r[a]=n[i][a].cell);return r}function q(t,n,r){if(Rt(t,"aoServerParams","serverParams",[n]),n&&e.isArray(n)){var i={},o=/(.*?)\[\]$/;e.each(n,function(e,t){var n=t.name.match(o);if(n){var r=n[0];i[r]||(i[r]=[]),i[r].push(t.value)}else i[t.name]=t.value}),n=i}var a,s=t.ajax,l=t.oInstance;if(e.isPlainObject(s)&&s.data){a=s.data;var u=e.isFunction(a)?a(n):a;n=e.isFunction(a)&&u?u:e.extend(!0,n,u),delete s.data}var c={data:n,success:function(e){var n=e.error||e.sError;n&&t.oApi._fnLog(t,0,n),t.json=e,Rt(t,null,"xhr",[t,e]),r(e)},dataType:"json",cache:!1,type:t.sServerMethod,error:function(e,n){var r=t.oApi._fnLog;"parsererror"==n?r(t,0,"Invalid JSON response",1):4===e.readyState&&r(t,0,"Ajax error",7),dt(t,!1)}};t.oAjaxData=n,Rt(t,null,"preXhr",[t,n]),t.fnServerData?t.fnServerData.call(l,t.sAjaxSource,e.map(n,function(e,t){return{name:t,value:e}}),r,t):t.sAjaxSource||"string"==typeof s?t.jqXHR=e.ajax(e.extend(c,{url:s||t.sAjaxSource})):e.isFunction(s)?t.jqXHR=s.call(l,n,r,t):(t.jqXHR=e.ajax(e.extend(c,s)),s.data=a)}function V(e){if(e.bAjaxDataGet){e.iDraw++,dt(e,!0);var t=(e.aoColumns.length,U(e));return q(e,t,function(t){X(e,t)},e),!1}return!0}function U(t){var n,r,i,o,a=t.aoColumns,s=a.length,l=t.oFeatures,u=t.oPreviousSearch,c=t.aoPreSearchCols,f=[],d=Tt(t),h=t._iDisplayStart,p=l.bPaginate!==!1?t._iDisplayLength:-1,g=function(e,t){f.push({name:e,value:t})};g("sEcho",t.iDraw),g("iColumns",s),g("sColumns",cn(a,"sName").join(",")),g("iDisplayStart",h),g("iDisplayLength",p);var m={draw:t.iDraw,columns:[],order:[],start:h,length:p,search:{value:u.sSearch,regex:u.bRegex}};for(n=0;s>n;n++)i=a[n],o=c[n],r="function"==typeof i.mData?"function":i.mData,m.columns.push({data:r,name:i.sName,searchable:i.bSearchable,orderable:i.bSortable,search:{value:o.sSearch,regex:o.bRegex}}),g("mDataProp_"+n,r),l.bFilter&&(g("sSearch_"+n,o.sSearch),g("bRegex_"+n,o.bRegex),g("bSearchable_"+n,i.bSearchable)),l.bSort&&g("bSortable_"+n,i.bSortable);l.bFilter&&(g("sSearch",u.sSearch),g("bRegex",u.bRegex)),l.bSort&&(e.each(d,function(e,t){m.order.push({column:t.col,dir:t.dir}),g("iSortCol_"+e,t.col),g("sSortDir_"+e,t.dir)}),g("iSortingCols",d.length));var v=Xt.ext.legacy.ajax;return null===v?t.sAjaxSource?f:m:v?f:m}function X(e,t){var n=function(e,n){return t[e]!==o?t[e]:t[n]},r=n("sEcho","draw"),i=n("iTotalRecords","recordsTotal"),a=n("iTotalDisplayRecords","recordsFiltered");if(r){if(1*r<e.iDraw)return;e.iDraw=1*r}_(e),e._iRecordsTotal=parseInt(i,10),e._iRecordsDisplay=parseInt(a,10);for(var s=$(e,t),l=0,u=s.length;u>l;l++)x(e,s[l]);e.aiDisplay=e.aiDisplayMaster.slice(),e.bAjaxDataGet=!1,P(e),e._bInitComplete||at(e,t),e.bAjaxDataGet=!0,dt(e,!1)}function $(t,n){var r=e.isPlainObject(t.ajax)&&t.ajax.dataSrc!==o?t.ajax.dataSrc:t.sAjaxDataProp;return"data"===r?n.aaData||n[r]:""!==r?L(r)(n):n}function G(t){var n=t.oClasses,r=t.sTableId,o=t.oPreviousSearch,a=t.aanFeatures,s='<input type="search" class="'+n.sFilterInput+'"/>',l=t.oLanguage.sSearch;l=l.match(/_INPUT_/)?l.replace("_INPUT_",s):l+s;var u=e("<div/>",{id:a.f?null:r+"_filter","class":n.sFilter}).append(e("<label/>").append(l)),c=function(){var e=(a.f,this.value?this.value:"");e!=o.sSearch&&(J(t,{sSearch:e,bRegex:o.bRegex,bSmart:o.bSmart,bCaseInsensitive:o.bCaseInsensitive}),t._iDisplayStart=0,P(t))},f=e("input",u).val(o.sSearch.replace('"',"&quot;")).bind("keyup.DT search.DT input.DT paste.DT cut.DT","ssp"===Bt(t)?vt(c,400):c).bind("keypress.DT",function(e){return 13==e.keyCode?!1:void 0}).attr("aria-controls",r);return e(t.nTable).on("filter.DT",function(){try{f[0]!==i.activeElement&&f.val(o.sSearch)}catch(e){}}),u[0]}function J(e,t,n){var r=e.oPreviousSearch,i=e.aoPreSearchCols,a=function(e){r.sSearch=e.sSearch,r.bRegex=e.bRegex,r.bSmart=e.bSmart,r.bCaseInsensitive=e.bCaseInsensitive},s=function(e){return e.bEscapeRegex!==o?!e.bEscapeRegex:e.bRegex};if(y(e),"ssp"!=Bt(e)){Q(e,t.sSearch,n,s(t),t.bSmart,t.bCaseInsensitive),a(t);for(var l=0;l<i.length;l++)K(e,i[l].sSearch,l,s(i[l]),i[l].bSmart,i[l].bCaseInsensitive);Y(e)}else a(t);e.bFiltered=!0,Rt(e,null,"search",[e])}function Y(e){for(var t,n,r=Xt.ext.search,i=e.aiDisplay,o=0,a=r.length;a>o;o++)for(var s=i.length-1;s>=0;s--)n=i[s],t=e.aoData[n],r[o](e,t._aFilterData,n,t._aData)||i.splice(s,1)}function K(e,t,n,r,i,o){if(""!==t)for(var a,s=e.aiDisplay,l=Z(t,r,i,o),u=s.length-1;u>=0;u--)a=e.aoData[s[u]]._aFilterData[n],l.test(a)||s.splice(u,1)}function Q(e,t,n,r,i,o){var a,s,l,u=Z(t,r,i,o),c=e.oPreviousSearch.sSearch,f=e.aiDisplayMaster;if(0!==Xt.ext.search.length&&(n=!0),s=tt(e),t.length<=0)e.aiDisplay=f.slice();else for((s||n||c.length>t.length||0!==t.indexOf(c)||e.bSorted)&&(e.aiDisplay=f.slice()),a=e.aiDisplay,l=a.length-1;l>=0;l--)u.test(e.aoData[a[l]]._sFilterRow)||a.splice(l,1)}function Z(t,n,r,i){if(t=n?t:et(t),r){var o=e.map(t.match(/"[^"]+"|[^ ]+/g)||"",function(e){return'"'===e.charAt(0)?e.match(/^"(.*)"$/)[1]:e});t="^(?=.*?"+o.join(")(?=.*?")+").*$"}return new RegExp(t,i?"i":"")}function et(e){return e.replace(tn,"\\$1")}function tt(e){var t,n,r,i,o,a,s,l,u=e.aoColumns,c=Xt.ext.type.search,f=!1;for(n=0,i=e.aoData.length;i>n;n++)if(l=e.aoData[n],!l._aFilterData){for(a=[],r=0,o=u.length;o>r;r++)t=u[r],t.bSearchable?(s=T(e,n,r,"filter"),s=c[t.sType]?c[t.sType](s):null!==s?s:""):s="",s.indexOf&&-1!==s.indexOf("&")&&(yn.innerHTML=s,s=bn?yn.textContent:yn.innerText),s.replace&&(s=s.replace(/[\r\n]/g,"")),a.push(s);l._aFilterData=a,l._sFilterRow=a.join(" "),f=!0}return f}function nt(t){var n=t.sTableId,r=t.aanFeatures.i,i=e("<div/>",{"class":t.oClasses.sInfo,id:r?null:n+"_info"});return r||(t.aoDrawCallback.push({fn:rt,sName:"information"}),i.attr("role","status").attr("aria-live","polite"),e(t.nTable).attr("aria-describedby",n+"_info")),i[0]}function rt(t){var n=t.aanFeatures.i;if(0!==n.length){var r=t.oLanguage,i=t._iDisplayStart+1,o=t.fnDisplayEnd(),a=t.fnRecordsTotal(),s=t.fnRecordsDisplay(),l=s?r.sInfo:r.sInfoEmpty;s!==a&&(l+=" "+r.sInfoFiltered),l+=r.sInfoPostFix,l=it(t,l);var u=r.fnInfoCallback;null!==u&&(l=u.call(t.oInstance,t,i,o,a,s,l)),e(n).html(l)}}function it(e,t){var n=e.fnFormatNumber,r=e._iDisplayStart+1,i=e._iDisplayLength,o=e.fnRecordsDisplay(),a=-1===i;return t.replace(/_START_/g,n.call(e,r)).replace(/_END_/g,n.call(e,e.fnDisplayEnd())).replace(/_MAX_/g,n.call(e,e.fnRecordsTotal())).replace(/_TOTAL_/g,n.call(e,o)).replace(/_PAGE_/g,n.call(e,a?1:Math.ceil(r/i))).replace(/_PAGES_/g,n.call(e,a?1:Math.ceil(o/i)))}function ot(e){var t,n,r,i=e.iInitDisplayStart,o=e.aoColumns,a=e.oFeatures;if(!e.bInitialised)return void setTimeout(function(){ot(e)},200);for(W(e),O(e),F(e,e.aoHeader),F(e,e.aoFooter),dt(e,!0),a.bAutoWidth&&mt(e),t=0,n=o.length;n>t;t++)r=o[t],r.sWidth&&(r.nTh.style.width=Ct(r.sWidth));R(e);var s=Bt(e);"ssp"!=s&&("ajax"==s?q(e,[],function(n){var r=$(e,n);for(t=0;t<r.length;t++)x(e,r[t]);e.iInitDisplayStart=i,R(e),dt(e,!1),at(e,n)},e):(dt(e,!1),at(e)))}function at(e,t){e._bInitComplete=!0,t&&h(e),Rt(e,"aoInitComplete","init",[e,t])}function st(e,t){var n=parseInt(t,10);e._iDisplayLength=n,Wt(e),Rt(e,null,"length",[e,n])}function lt(t){for(var n=t.oClasses,r=t.sTableId,i=t.aLengthMenu,o=e.isArray(i[0]),a=o?i[0]:i,s=o?i[1]:i,l=e("<select/>",{name:r+"_length","aria-controls":r,"class":n.sLengthSelect}),u=0,c=a.length;c>u;u++)l[0][u]=new Option(s[u],a[u]);var f=e("<div><label/></div>").addClass(n.sLength);t.aanFeatures.l||(f[0].id=r+"_length");var d=t.oLanguage.sLengthMenu.split(/(_MENU_)/);return f.children().append(d.length>1?[d[0],l,d[2]]:d[0]),e("select",f).val(t._iDisplayLength).bind("change.DT",function(){st(t,e(this).val()),P(t)}),e(t.nTable).bind("length.dt.DT",function(t,n,r){e("select",f).val(r)}),f[0]}function ut(t){var n=t.sPaginationType,r=Xt.ext.pager[n],i="function"==typeof r,o=function(e){P(e)},a=e("<div/>").addClass(t.oClasses.sPaging+n)[0],s=t.aanFeatures;return i||r.fnInit(t,a,o),s.p||(a.id=t.sTableId+"_paginate",t.aoDrawCallback.push({fn:function(e){if(i){var t,n,a=e._iDisplayStart,l=e._iDisplayLength,u=e.fnRecordsDisplay(),c=-1===l,f=c?0:Math.ceil(a/l),d=c?1:Math.ceil(u/l),h=r(f,d);for(t=0,n=s.p.length;n>t;t++)zt(e,"pageButton")(e,s.p[t],t,h,f,d)}else r.fnUpdate(e,o)},sName:"pagination"})),a}function ct(e,t,n){var r=e._iDisplayStart,i=e._iDisplayLength,o=e.fnRecordsDisplay();0===o||-1===i?r=0:"number"==typeof t?(r=t*i,r>o&&(r=0)):"first"==t?r=0:"previous"==t?(r=i>=0?r-i:0,0>r&&(r=0)):"next"==t?o>r+i&&(r+=i):"last"==t?r=Math.floor((o-1)/i)*i:jt(e,0,"Unknown paging action: "+t,5);var a=e._iDisplayStart!==r;return e._iDisplayStart=r,a&&(Rt(e,null,"page",[e]),n&&P(e)),a}function ft(t){return e("<div/>",{id:t.aanFeatures.r?null:t.sTableId+"_processing","class":t.oClasses.sProcessing}).html(t.oLanguage.sProcessing).insertBefore(t.nTable)[0]}function dt(t,n){t.oFeatures.bProcessing&&e(t.aanFeatures.r).css("display",n?"block":"none"),Rt(t,null,"processing",[t,n])}function ht(t){var n=e(t.nTable);n.attr("role","grid");var r=t.oScroll;if(""===r.sX&&""===r.sY)return t.nTable;var i=r.sX,o=r.sY,a=t.oClasses,s=n.children("caption"),l=s.length?s[0]._captionSide:null,u=e(n[0].cloneNode(!1)),c=e(n[0].cloneNode(!1)),f=n.children("tfoot"),d="<div/>",h=function(e){return e?Ct(e):null};r.sX&&"100%"===n.attr("width")&&n.removeAttr("width"),f.length||(f=null);var p=e(d,{"class":a.sScrollWrapper}).append(e(d,{"class":a.sScrollHead}).css({overflow:"hidden",position:"relative",border:0,width:i?h(i):"100%"}).append(e(d,{"class":a.sScrollHeadInner}).css({"box-sizing":"content-box",width:r.sXInner||"100%"}).append(u.removeAttr("id").css("margin-left",0).append(n.children("thead")))).append("top"===l?s:null)).append(e(d,{"class":a.sScrollBody}).css({overflow:"auto",height:h(o),width:h(i)}).append(n));f&&p.append(e(d,{"class":a.sScrollFoot}).css({overflow:"hidden",border:0,width:i?h(i):"100%"}).append(e(d,{"class":a.sScrollFootInner}).append(c.removeAttr("id").css("margin-left",0).append(n.children("tfoot")))).append("bottom"===l?s:null));var g=p.children(),m=g[0],v=g[1],y=f?g[2]:null;return i&&e(v).scroll(function(){var e=this.scrollLeft;m.scrollLeft=e,f&&(y.scrollLeft=e)}),t.nScrollHead=m,t.nScrollBody=v,t.nScrollFoot=y,t.aoDrawCallback.push({fn:pt,sName:"scrolling"}),p[0]}function pt(t){var n,r,i,o,a,s,l,u,c,f=t.oScroll,d=f.sX,h=f.sXInner,g=f.sY,m=f.iBarWidth,v=e(t.nScrollHead),y=v[0].style,b=v.children("div"),x=b[0].style,w=b.children("table"),C=t.nScrollBody,S=e(C),T=C.style,D=e(t.nScrollFoot),k=D.children("div"),L=k.children("table"),N=e(t.nTHead),A=e(t.nTable),_=A[0],M=_.style,E=t.nTFoot?e(t.nTFoot):null,H=t.oBrowser,j=H.bScrollOversize,I=[],O=[],F=[],P=function(e){var t=e.style;t.paddingTop="0",t.paddingBottom="0",t.borderTopWidth="0",t.borderBottomWidth="0",t.height=0};if(A.children("thead, tfoot").remove(),a=N.clone().prependTo(A),n=N.find("tr"),i=a.find("tr"),a.find("th, td").removeAttr("tabindex"),E&&(s=E.clone().prependTo(A),r=E.find("tr"),o=s.find("tr")),d||(T.width="100%",v[0].style.width="100%"),e.each(B(t,a),function(e,n){l=p(t,e),n.style.width=t.aoColumns[l].sWidth}),E&&gt(function(e){e.style.width=""},o),f.bCollapse&&""!==g&&(T.height=S[0].offsetHeight+N[0].offsetHeight+"px"),c=A.outerWidth(),""===d?(M.width="100%",j&&(A.find("tbody").height()>C.offsetHeight||"scroll"==S.css("overflow-y"))&&(M.width=Ct(A.outerWidth()-m))):""!==h?M.width=Ct(h):c==S.width()&&S.height()<A.height()?(M.width=Ct(c-m),A.outerWidth()>c-m&&(M.width=Ct(c))):M.width=Ct(c),c=A.outerWidth(),gt(P,i),gt(function(t){F.push(t.innerHTML),I.push(Ct(e(t).css("width")))},i),gt(function(e,t){e.style.width=I[t]},n),e(i).height(0),E&&(gt(P,o),gt(function(t){O.push(Ct(e(t).css("width")))},o),gt(function(e,t){e.style.width=O[t]},r),e(o).height(0)),gt(function(e,t){e.innerHTML='<div class="dataTables_sizing" style="height:0;overflow:hidden;">'+F[t]+"</div>",e.style.width=I[t]},i),E&&gt(function(e,t){e.innerHTML="",e.style.width=O[t]},o),A.outerWidth()<c?(u=C.scrollHeight>C.offsetHeight||"scroll"==S.css("overflow-y")?c+m:c,j&&(C.scrollHeight>C.offsetHeight||"scroll"==S.css("overflow-y"))&&(M.width=Ct(u-m)),(""===d||""!==h)&&jt(t,1,"Possible column misalignment",6)):u="100%",T.width=Ct(u),y.width=Ct(u),E&&(t.nScrollFoot.style.width=Ct(u)),g||j&&(T.height=Ct(_.offsetHeight+m)),g&&f.bCollapse){T.height=Ct(g);var R=d&&_.offsetWidth>C.offsetWidth?m:0;_.offsetHeight<C.offsetHeight&&(T.height=Ct(_.offsetHeight+R))}var W=A.outerWidth();w[0].style.width=Ct(W),x.width=Ct(W);var z=A.height()>C.clientHeight||"scroll"==S.css("overflow-y"),q="padding"+(H.bScrollbarLeft?"Left":"Right");x[q]=z?m+"px":"0px",E&&(L[0].style.width=Ct(W),k[0].style.width=Ct(W),k[0].style[q]=z?m+"px":"0px"),S.scroll(),(t.bSorted||t.bFiltered)&&(C.scrollTop=0)}function gt(e,t,n){for(var r,i,o=0,a=0,s=t.length;s>a;){for(r=t[a].firstChild,i=n?n[a].firstChild:null;r;)1===r.nodeType&&(n?e(r,i,o):e(r,o),o++),r=r.nextSibling,i=n?i.nextSibling:null;a++}}function mt(t){var r,i,o,a,s,l=t.nTable,u=t.aoColumns,c=t.oScroll,f=c.sY,d=c.sX,p=c.sXInner,g=u.length,y=v(t,"bVisible"),b=e("th",t.nTHead),x=l.getAttribute("width"),w=l.parentNode,C=!1;for(r=0;r<y.length;r++)i=u[y[r]],null!==i.sWidth&&(i.sWidth=yt(i.sWidthOrig,w),C=!0);if(C||d||f||g!=m(t)||g!=b.length){var S=e(l.cloneNode(!1)).css("visibility","hidden").removeAttr("id").append(e(t.nTHead).clone(!1)).append(e(t.nTFoot).clone(!1)).append(e("<tbody><tr/></tbody>"));S.find("tfoot th, tfoot td").css("width","");var T=S.find("tbody tr");for(b=B(t,S.find("thead")[0]),r=0;r<y.length;r++)i=u[y[r]],b[r].style.width=null!==i.sWidthOrig&&""!==i.sWidthOrig?Ct(i.sWidthOrig):"";if(t.aoData.length)for(r=0;r<y.length;r++)o=y[r],i=u[o],e(xt(t,o)).clone(!1).append(i.sContentPadding).appendTo(T);if(S.appendTo(w),d&&p?S.width(p):d?(S.css("width","auto"),S.width()<w.offsetWidth&&S.width(w.offsetWidth)):f?S.width(w.offsetWidth):x&&S.width(x),bt(t,S[0]),d){var D=0;for(r=0;r<y.length;r++)i=u[y[r]],s=e(b[r]).outerWidth(),D+=null===i.sWidthOrig?s:parseInt(i.sWidth,10)+s-e(b[r]).width();S.width(Ct(D)),l.style.width=Ct(D)}for(r=0;r<y.length;r++)i=u[y[r]],a=e(b[r]).width(),a&&(i.sWidth=Ct(a));l.style.width=Ct(S.css("width")),S.remove()}else for(r=0;g>r;r++)u[r].sWidth=Ct(b.eq(r).width());x&&(l.style.width=Ct(x)),!x&&!d||t._reszEvt||(e(n).bind("resize.DT-"+t.sInstance,vt(function(){h(t)})),t._reszEvt=!0)}function vt(e,t){var n,r,i=t||200;return function(){var t=this,a=+new Date,s=arguments;n&&n+i>a?(clearTimeout(r),r=setTimeout(function(){n=o,e.apply(t,s)},i)):n?(n=a,e.apply(t,s)):n=a}}function yt(t,n){if(!t)return 0;var r=e("<div/>").css("width",Ct(t)).appendTo(n||i.body),o=r[0].offsetWidth;return r.remove(),o}function bt(t,n){var r=t.oScroll;if(r.sX||r.sY){var i=r.sX?0:r.iBarWidth;n.style.width=Ct(e(n).outerWidth()-i)}}function xt(t,n){var r=wt(t,n);if(0>r)return null;var i=t.aoData[r];return i.nTr?i.anCells[n]:e("<td/>").html(T(t,r,n,"display"))[0]}function wt(e,t){for(var n,r=-1,i=-1,o=0,a=e.aoData.length;a>o;o++)n=T(e,o,t,"display")+"",n=n.replace(xn,""),n.length>r&&(r=n.length,i=o);return i}function Ct(e){return null===e?"0px":"number"==typeof e?0>e?"0px":e+"px":e.match(/\d$/)?e+"px":e}function St(){if(!Xt.__scrollbarWidth){var t=e("<p/>").css({width:"100%",height:200,padding:0})[0],n=e("<div/>").css({position:"absolute",top:0,left:0,width:200,height:150,padding:0,overflow:"hidden",visibility:"hidden"}).append(t).appendTo("body"),r=t.offsetWidth;n.css("overflow","scroll");var i=t.offsetWidth;r===i&&(i=n[0].clientWidth),n.remove(),Xt.__scrollbarWidth=r-i}return Xt.__scrollbarWidth}function Tt(t){var n,r,i,o,a,s,l,u=[],c=t.aoColumns,f=t.aaSortingFixed,d=e.isPlainObject(f),h=[],p=function(t){t.length&&!e.isArray(t[0])?h.push(t):h.push.apply(h,t)};for(e.isArray(f)&&p(f),d&&f.pre&&p(f.pre),p(t.aaSorting),d&&f.post&&p(f.post),n=0;n<h.length;n++)for(l=h[n][0],o=c[l].aDataSort,r=0,i=o.length;i>r;r++)a=o[r],s=c[a].sType||"string",u.push({src:l,col:a,dir:h[n][1],index:h[n][2],type:s,formatter:Xt.ext.type.order[s+"-pre"]});return u}function Dt(e){var t,n,r,i,o,a=[],s=Xt.ext.type.order,l=e.aoData,u=(e.aoColumns,0),c=e.aiDisplayMaster;for(y(e),o=Tt(e),t=0,n=o.length;n>t;t++)i=o[t],i.formatter&&u++,_t(e,i.col);if("ssp"!=Bt(e)&&0!==o.length){for(t=0,r=c.length;r>t;t++)a[c[t]]=t;c.sort(u===o.length?function(e,t){var n,r,i,s,u,c=o.length,f=l[e]._aSortData,d=l[t]._aSortData;for(i=0;c>i;i++)if(u=o[i],n=f[u.col],r=d[u.col],s=r>n?-1:n>r?1:0,0!==s)return"asc"===u.dir?s:-s;return n=a[e],r=a[t],r>n?-1:n>r?1:0}:function(e,t){var n,r,i,u,c,f,d=o.length,h=l[e]._aSortData,p=l[t]._aSortData;for(i=0;d>i;i++)if(c=o[i],n=h[c.col],r=p[c.col],f=s[c.type+"-"+c.dir]||s["string-"+c.dir],u=f(n,r),0!==u)return u;return n=a[e],r=a[t],r>n?-1:n>r?1:0})}e.bSorted=!0}function kt(e){for(var t,n,r=e.aoColumns,i=Tt(e),o=e.oLanguage.oAria,a=0,s=r.length;s>a;a++){var l=r[a],u=l.asSorting,c=l.sTitle.replace(/<.*?>/g,""),f=l.nTh;f.removeAttribute("aria-sort"),l.bSortable?(i.length>0&&i[0].col==a?(f.setAttribute("aria-sort","asc"==i[0].dir?"ascending":"descending"),n=u[i[0].index+1]||u[0]):n=u[0],t=c+("asc"===n?o.sSortAscending:o.sSortDescending)):t=c,f.setAttribute("aria-label",t)}}function Lt(t,n,r,i){var a,s=t.aoColumns[n],l=t.aaSorting,u=s.asSorting,c=function(t){var n=t._idx;return n===o&&(n=e.inArray(t[1],u)),n+1>=u.length?0:n+1};if(r&&t.oFeatures.bSortMulti){var f=e.inArray(n,cn(l,"0"));-1!==f?(a=c(l[f]),l[f][1]=u[a],l[f]._idx=a):(l.push([n,u[0],0]),l[l.length-1]._idx=0) }else l.length&&l[0][0]==n?(a=c(l[0]),l.length=1,l[0][1]=u[a],l[0]._idx=a):(l.length=0,l.push([n,u[0]]),l[0]._idx=0);R(t),"function"==typeof i&&i(t)}function Nt(e,t,n,r){var i=e.aoColumns[n];Ft(t,{},function(t){i.bSortable!==!1&&(e.oFeatures.bProcessing?(dt(e,!0),setTimeout(function(){Lt(e,n,t.shiftKey,r),"ssp"!==Bt(e)&&dt(e,!1)},0)):Lt(e,n,t.shiftKey,r))})}function At(t){var n,r,i,o=t.aLastSort,a=t.oClasses.sSortColumn,s=Tt(t),l=t.oFeatures;if(l.bSort&&l.bSortClasses){for(n=0,r=o.length;r>n;n++)i=o[n].src,e(cn(t.aoData,"anCells",i)).removeClass(a+(2>n?n+1:3));for(n=0,r=s.length;r>n;n++)i=s[n].src,e(cn(t.aoData,"anCells",i)).addClass(a+(2>n?n+1:3))}t.aLastSort=s}function _t(e,t){var n,r=e.aoColumns[t],i=Xt.ext.order[r.sSortDataType];i&&(n=i.call(e.oInstance,e,t,g(e,t)));for(var o,a,s=Xt.ext.type.order[r.sType+"-pre"],l=0,u=e.aoData.length;u>l;l++)o=e.aoData[l],o._aSortData||(o._aSortData=[]),(!o._aSortData[t]||i)&&(a=i?n[l]:T(e,l,t,"sort"),o._aSortData[t]=s?s(a):a)}function Mt(t){if(t.oFeatures.bStateSave&&!t.bDestroying){var n={iCreate:+new Date,iStart:t._iDisplayStart,iLength:t._iDisplayLength,aaSorting:e.extend(!0,[],t.aaSorting),oSearch:e.extend(!0,{},t.oPreviousSearch),aoSearchCols:e.extend(!0,[],t.aoPreSearchCols),abVisCols:cn(t.aoColumns,"bVisible")};Rt(t,"aoStateSaveParams","stateSaveParams",[t,n]),t.fnStateSaveCallback.call(t.oInstance,t,n)}}function Et(t){var n,r,i=t.aoColumns;if(t.oFeatures.bStateSave){var o=t.fnStateLoadCallback.call(t.oInstance,t);if(o){var a=Rt(t,"aoStateLoadParams","stateLoadParams",[t,o]);if(-1===e.inArray(!1,a)){var s=t.iStateDuration;if(!(s>0&&o.iCreate<+new Date-1e3*s)&&i.length===o.aoSearchCols.length){t.oLoadedState=e.extend(!0,{},o),t._iDisplayStart=o.iStart,t.iInitDisplayStart=o.iStart,t._iDisplayLength=o.iLength,t.aaSorting=e.map(o.aaSorting,function(e){return e[0]>=i.length?[0,e[1]]:e}),e.extend(t.oPreviousSearch,o.oSearch),e.extend(!0,t.aoPreSearchCols,o.aoSearchCols);var l=o.abVisCols;for(n=0,r=l.length;r>n;n++)i[n].bVisible=l[n];Rt(t,"aoStateLoaded","stateLoaded",[t,o])}}}}}function Ht(t){var n=Xt.settings,r=e.inArray(t,cn(n,"nTable"));return-1!==r?n[r]:null}function jt(e,t,r,i){if(r="DataTables warning: "+(null!==e?"table id="+e.sTableId+" - ":"")+r,i&&(r+=". For more information about this error, please see http://datatables.net/tn/"+i),t)n.console&&console.log&&console.log(r);else{var o=Xt.ext,a=o.sErrMode||o.errMode;if("alert"!=a)throw new Error(r);alert(r)}}function It(t,n,r,i){return e.isArray(r)?void e.each(r,function(r,i){e.isArray(i)?It(t,n,i[0],i[1]):It(t,n,i)}):(i===o&&(i=r),void(n[r]!==o&&(t[i]=n[r])))}function Ot(t,n,r){var i;for(var o in n)n.hasOwnProperty(o)&&(i=n[o],e.isPlainObject(i)?(e.isPlainObject(t[o])||(t[o]={}),e.extend(!0,t[o],i)):t[o]=r&&"data"!==o&&"aaData"!==o&&e.isArray(i)?i.slice():i);return t}function Ft(t,n,r){e(t).bind("click.DT",n,function(e){t.blur(),r(e)}).bind("keypress.DT",n,function(e){13===e.which&&(e.preventDefault(),r(e))}).bind("selectstart.DT",function(){return!1})}function Pt(e,t,n,r){n&&e[t].push({fn:n,sName:r})}function Rt(t,n,r,i){var o=[];return n&&(o=e.map(t[n].slice().reverse(),function(e){return e.fn.apply(t.oInstance,i)})),null!==r&&e(t.nTable).trigger(r+".dt",i),o}function Wt(e){var t=e._iDisplayStart,n=e.fnDisplayEnd(),r=e._iDisplayLength;n===e.fnRecordsDisplay()&&(t=n-r),(-1===r||0>t)&&(t=0),e._iDisplayStart=t}function zt(t,n){var r=t.renderer,i=Xt.ext.renderer[n];return e.isPlainObject(r)&&r[n]?i[r[n]]||i._:"string"==typeof r?i[r]||i._:i._}function Bt(e){return e.oFeatures.bServerSide?"ssp":e.ajax||e.sAjaxSource?"ajax":"dom"}function qt(e,t){var n=[],r=Pn.numbers_length,i=Math.floor(r/2);return r>=t?n=dn(0,t):i>=e?(n=dn(0,r-2),n.push("ellipsis"),n.push(t-1)):e>=t-1-i?(n=dn(t-(r-2),t),n.splice(0,0,"ellipsis"),n.splice(0,0,0)):(n=dn(e-1,e+2),n.push("ellipsis"),n.push(t-1),n.splice(0,0,"ellipsis"),n.splice(0,0,0)),n.DT_el="span",n}function Vt(t){e.each({num:function(e){return Rn(e,t)},"num-fmt":function(e){return Rn(e,t,nn)},"html-num":function(e){return Rn(e,t,Zt)},"html-num-fmt":function(e){return Rn(e,t,Zt,nn)}},function(e,n){$t.type.order[e+t+"-pre"]=n})}function Ut(e){return function(){var t=[Ht(this[Xt.ext.iApiIndex])].concat(Array.prototype.slice.call(arguments));return Xt.ext.internal[e].apply(this,t)}}var Xt,$t,Gt,Jt,Yt,Kt={},Qt=/[\r\n]/g,Zt=/<.*?>/g,en=/^[\d\+\-a-zA-Z]/,tn=new RegExp("(\\"+["/",".","*","+","?","|","(",")","[","]","{","}","\\","$","^","-"].join("|\\")+")","g"),nn=/[',$£€¥%\u2009\u202F]/g,rn=function(e){return e&&"-"!==e?!1:!0},on=function(e){var t=parseInt(e,10);return!isNaN(t)&&isFinite(e)?t:null},an=function(e,t){return Kt[t]||(Kt[t]=new RegExp(et(t),"g")),"string"==typeof e?e.replace(/\./g,"").replace(Kt[t],"."):e},sn=function(e,t,n){var r="string"==typeof e;return t&&r&&(e=an(e,t)),n&&r&&(e=e.replace(nn,"")),!e||"-"===e||!isNaN(parseFloat(e))&&isFinite(e)},ln=function(e){return!e||"string"==typeof e},un=function(e,t,n){if(rn(e))return!0;var r=ln(e);return r&&sn(hn(e),t,n)?!0:null},cn=function(e,t,n){var r=[],i=0,a=e.length;if(n!==o)for(;a>i;i++)e[i]&&e[i][t]&&r.push(e[i][t][n]);else for(;a>i;i++)e[i]&&r.push(e[i][t]);return r},fn=function(e,t,n,r){var i=[],a=0,s=t.length;if(r!==o)for(;s>a;a++)i.push(e[t[a]][n][r]);else for(;s>a;a++)i.push(e[t[a]][n]);return i},dn=function(e,t){var n,r=[];t===o?(t=0,n=e):(n=t,t=e);for(var i=t;n>i;i++)r.push(i);return r},hn=function(e){return e.replace(Zt,"")},pn=function(e){var t,n,r,i=[],o=e.length,a=0;e:for(n=0;o>n;n++){for(t=e[n],r=0;a>r;r++)if(i[r]===t)continue e;i.push(t),a++}return i},gn=function(e,t,n){e[t]!==o&&(e[n]=e[t])},mn=/\[.*?\]$/,vn=/\(\)$/,yn=e("<div>")[0],bn=yn.textContent!==o,xn=/<.*?>/g;Xt=function(t){this.$=function(e,t){return this.api(!0).$(e,t)},this._=function(e,t){return this.api(!0).rows(e,t).data()},this.api=function(e){return new Gt(e?Ht(this[$t.iApiIndex]):this)},this.fnAddData=function(t,n){var r=this.api(!0),i=e.isArray(t)&&(e.isArray(t[0])||e.isPlainObject(t[0]))?r.rows.add(t):r.row.add(t);return(n===o||n)&&r.draw(),i.flatten().toArray()},this.fnAdjustColumnSizing=function(e){var t=this.api(!0).columns.adjust(),n=t.settings()[0],r=n.oScroll;e===o||e?t.draw(!1):(""!==r.sX||""!==r.sY)&&pt(n)},this.fnClearTable=function(e){var t=this.api(!0).clear();(e===o||e)&&t.draw()},this.fnClose=function(e){this.api(!0).row(e).child.hide()},this.fnDeleteRow=function(e,t,n){var r=this.api(!0),i=r.rows(e),a=i.settings()[0],s=a.aoData[i[0][0]];return i.remove(),t&&t.call(this,a,s),(n===o||n)&&r.draw(),s},this.fnDestroy=function(e){this.api(!0).destroy(e)},this.fnDraw=function(e){this.api(!0).draw(!e)},this.fnFilter=function(e,t,n,r,i,a){var s=this.api(!0);null===t||t===o?s.search(e,n,r,a):s.column(t).search(e,n,r,a),s.draw()},this.fnGetData=function(e,t){var n=this.api(!0);if(e!==o){var r=e.nodeName?e.nodeName.toLowerCase():"";return t!==o||"td"==r||"th"==r?n.cell(e,t).data():n.row(e).data()||null}return n.data().toArray()},this.fnGetNodes=function(e){var t=this.api(!0);return e!==o?t.row(e).node():t.rows().nodes().flatten().toArray()},this.fnGetPosition=function(e){var t=this.api(!0),n=e.nodeName.toUpperCase();if("TR"==n)return t.row(e).index();if("TD"==n||"TH"==n){var r=t.cell(e).index();return[r.row,r.columnVisible,r.column]}return null},this.fnIsOpen=function(e){return this.api(!0).row(e).child.isShown()},this.fnOpen=function(e,t,n){return this.api(!0).row(e).child(t,n).show().child()[0]},this.fnPageChange=function(e,t){var n=this.api(!0).page(e);(t===o||t)&&n.draw(!1)},this.fnSetColumnVis=function(e,t,n){var r=this.api(!0).column(e).visible(t);(n===o||n)&&r.columns.adjust().draw()},this.fnSettings=function(){return Ht(this[$t.iApiIndex])},this.fnSort=function(e){this.api(!0).order(e).draw()},this.fnSortListener=function(e,t,n){this.api(!0).order.listener(e,t,n)},this.fnUpdate=function(e,t,n,r,i){var a=this.api(!0);return n===o||null===n?a.row(t).data(e):a.cell(t,n).data(e),(i===o||i)&&a.columns.adjust(),(r===o||r)&&a.draw(),0},this.fnVersionCheck=$t.fnVersionCheck;var n=this,i=t===o,c=this.length;i&&(t={}),this.oApi=this.internal=$t.internal;for(var h in Xt.ext.internal)h&&(this[h]=Ut(h));return this.each(function(){var h,p={},g=c>1?Ot(p,t,!0):t,m=0,v=this.getAttribute("id"),y=!1,C=Xt.defaults;if("table"!=this.nodeName.toLowerCase())return void jt(null,0,"Non-table node initialisation ("+this.nodeName+")",2);s(C),l(C.column),r(C,C,!0),r(C.column,C.column,!0),r(C,g);var S=Xt.settings;for(m=0,h=S.length;h>m;m++){if(S[m].nTable==this){var T=g.bRetrieve!==o?g.bRetrieve:C.bRetrieve,D=g.bDestroy!==o?g.bDestroy:C.bDestroy;if(i||T)return S[m].oInstance;if(D){S[m].oInstance.fnDestroy();break}return void jt(S[m],0,"Cannot reinitialise DataTable",3)}if(S[m].sTableId==this.id){S.splice(m,1);break}}(null===v||""===v)&&(v="DataTables_Table_"+Xt.ext._unique++,this.id=v);var k=e.extend(!0,{},Xt.models.oSettings,{nTable:this,oApi:n.internal,oInit:g,sDestroyWidth:e(this)[0].style.width,sInstance:v,sTableId:v});S.push(k),k.oInstance=1===n.length?n:e(this).dataTable(),s(g),g.oLanguage&&a(g.oLanguage),g.aLengthMenu&&!g.iDisplayLength&&(g.iDisplayLength=e.isArray(g.aLengthMenu[0])?g.aLengthMenu[0][0]:g.aLengthMenu[0]),g=Ot(e.extend(!0,{},C),g),It(k.oFeatures,g,["bPaginate","bLengthChange","bFilter","bSort","bSortMulti","bInfo","bProcessing","bAutoWidth","bSortClasses","bServerSide","bDeferRender"]),It(k,g,["asStripeClasses","ajax","fnServerData","fnFormatNumber","sServerMethod","aaSorting","aaSortingFixed","aLengthMenu","sPaginationType","sAjaxSource","sAjaxDataProp","iStateDuration","sDom","bSortCellsTop","iTabIndex","fnStateLoadCallback","fnStateSaveCallback","renderer",["iCookieDuration","iStateDuration"],["oSearch","oPreviousSearch"],["aoSearchCols","aoPreSearchCols"],["iDisplayLength","_iDisplayLength"],["bJQueryUI","bJUI"]]),It(k.oScroll,g,[["sScrollX","sX"],["sScrollXInner","sXInner"],["sScrollY","sY"],["bScrollCollapse","bCollapse"]]),It(k.oLanguage,g,"fnInfoCallback"),Pt(k,"aoDrawCallback",g.fnDrawCallback,"user"),Pt(k,"aoServerParams",g.fnServerParams,"user"),Pt(k,"aoStateSaveParams",g.fnStateSaveParams,"user"),Pt(k,"aoStateLoadParams",g.fnStateLoadParams,"user"),Pt(k,"aoStateLoaded",g.fnStateLoaded,"user"),Pt(k,"aoRowCallback",g.fnRowCallback,"user"),Pt(k,"aoRowCreatedCallback",g.fnCreatedRow,"user"),Pt(k,"aoHeaderCallback",g.fnHeaderCallback,"user"),Pt(k,"aoFooterCallback",g.fnFooterCallback,"user"),Pt(k,"aoInitComplete",g.fnInitComplete,"user"),Pt(k,"aoPreDrawCallback",g.fnPreDrawCallback,"user");var L=k.oClasses;if(g.bJQueryUI?(e.extend(L,Xt.ext.oJUIClasses,g.oClasses),g.sDom===C.sDom&&"lfrtip"===C.sDom&&(k.sDom='<"H"lfr>t<"F"ip>'),k.renderer?e.isPlainObject(k.renderer)&&!k.renderer.header&&(k.renderer.header="jqueryui"):k.renderer="jqueryui"):e.extend(L,Xt.ext.classes,g.oClasses),e(this).addClass(L.sTable),(""!==k.oScroll.sX||""!==k.oScroll.sY)&&(k.oScroll.iBarWidth=St()),k.oScroll.sX===!0&&(k.oScroll.sX="100%"),k.iInitDisplayStart===o&&(k.iInitDisplayStart=g.iDisplayStart,k._iDisplayStart=g.iDisplayStart),null!==g.iDeferLoading){k.bDeferLoading=!0;var N=e.isArray(g.iDeferLoading);k._iRecordsDisplay=N?g.iDeferLoading[0]:g.iDeferLoading,k._iRecordsTotal=N?g.iDeferLoading[1]:g.iDeferLoading}""!==g.oLanguage.sUrl?(k.oLanguage.sUrl=g.oLanguage.sUrl,e.getJSON(k.oLanguage.sUrl,null,function(t){a(t),r(C.oLanguage,t),e.extend(!0,k.oLanguage,g.oLanguage,t),ot(k)}),y=!0):e.extend(!0,k.oLanguage,g.oLanguage),null===g.asStripeClasses&&(k.asStripeClasses=[L.sStripeOdd,L.sStripeEven]);var A=k.asStripeClasses,_=e("tbody tr:eq(0)",this);-1!==e.inArray(!0,e.map(A,function(e){return _.hasClass(e)}))&&(e("tbody tr",this).removeClass(A.join(" ")),k.asDestroyStripes=A.slice());var M,E=[],j=this.getElementsByTagName("thead");if(0!==j.length&&(z(k.aoHeader,j[0]),E=B(k)),null===g.aoColumns)for(M=[],m=0,h=E.length;h>m;m++)M.push(null);else M=g.aoColumns;for(m=0,h=M.length;h>m;m++)f(k,E?E[m]:null);if(b(k,g.aoColumnDefs,M,function(e,t){d(k,e,t)}),_.length){var I=function(e,t){return e.getAttribute("data-"+t)?t:null};e.each(H(k,_[0]).cells,function(e,t){var n=k.aoColumns[e];if(n.mData===e){var r=I(t,"sort")||I(t,"order"),i=I(t,"filter")||I(t,"search");(null!==r||null!==i)&&(n.mData={_:e+".display",sort:null!==r?e+".@data-"+r:o,type:null!==r?e+".@data-"+r:o,filter:null!==i?e+".@data-"+i:o},d(k,e))}})}var O=k.oFeatures;if(g.bStateSave&&(O.bStateSave=!0,Et(k,g),Pt(k,"aoDrawCallback",Mt,"state_save")),g.aaSorting===o){var F=k.aaSorting;for(m=0,h=F.length;h>m;m++)F[m][1]=k.aoColumns[m].asSorting[0]}At(k),O.bSort&&Pt(k,"aoDrawCallback",function(){if(k.bSorted){var t=Tt(k),n={};e.each(t,function(e,t){n[t.src]=t.dir}),Rt(k,null,"order",[k,t,n]),kt(k)}}),Pt(k,"aoDrawCallback",function(){(k.bSorted||"ssp"===Bt(k)||O.bDeferRender)&&At(k)},"sc"),u(k);var P=e(this).children("caption").each(function(){this._captionSide=e(this).css("caption-side")}),R=e(this).children("thead");0===R.length&&(R=e("<thead/>").appendTo(this)),k.nTHead=R[0];var W=e(this).children("tbody");0===W.length&&(W=e("<tbody/>").appendTo(this)),k.nTBody=W[0];var q=e(this).children("tfoot");if(0===q.length&&P.length>0&&(""!==k.oScroll.sX||""!==k.oScroll.sY)&&(q=e("<tfoot/>").appendTo(this)),0===q.length||0===q.children().length?e(this).addClass(L.sNoFooter):q.length>0&&(k.nTFoot=q[0],z(k.aoFooter,k.nTFoot)),g.aaData)for(m=0;m<g.aaData.length;m++)x(k,g.aaData[m]);else(k.bDeferLoading||"dom"==Bt(k))&&w(k,e(k.nTBody).children("tr"));k.aiDisplay=k.aiDisplayMaster.slice(),k.bInitialised=!0,y===!1&&ot(k)}),n=null,this};var wn=[],Cn=Array.prototype,Sn=function(t){var n,r,i=Xt.settings,o=e.map(i,function(e){return e.nTable});return t?t.nTable&&t.oApi?[t]:t.nodeName&&"table"===t.nodeName.toLowerCase()?(n=e.inArray(t,o),-1!==n?[i[n]]:null):t&&"function"==typeof t.settings?t.settings().toArray():("string"==typeof t?r=e(t):t instanceof e&&(r=t),r?r.map(function(){return n=e.inArray(this,o),-1!==n?i[n]:null}).toArray():void 0):[]};Xt.Api=Gt=function(t,n){if(!this instanceof Gt)throw"DT API must be constructed as a new object";var r=[],i=function(e){var t=Sn(e);t&&r.push.apply(r,t)};if(e.isArray(t))for(var o=0,a=t.length;a>o;o++)i(t[o]);else i(t);this.context=pn(r),n&&this.push.apply(this,n.toArray?n.toArray():n),this.selector={rows:null,cols:null,opts:null},Gt.extend(this,this,wn)},Gt.prototype={concat:Cn.concat,context:[],each:function(e){if(Cn.forEach)Cn.forEach.call(this,e,this);else for(var t=0,n=this.length;n>t;t++)e.call(this,this[t],t,this);return this},eq:function(e){var t=this.context;return t.length>e?new Gt(t[e],this[e]):null},filter:function(e){var t=[];if(Cn.filter)t=Cn.filter.call(this,e,this);else for(var n=0,r=this.length;r>n;n++)e.call(this,this[n],n,this)&&t.push(this[n]);return new Gt(this.context,t)},flatten:function(){var e=[];return new Gt(this.context,e.concat.apply(e,this.toArray()))},join:Cn.join,indexOf:Cn.indexOf||function(e,t){for(var n=t||0,r=this.length;r>n;n++)if(this[n]===e)return n;return-1},iterator:function(e,t,n){var r,i,a,s,l,u,c,f,d=[],h=this.context,p=this.selector;for("string"==typeof e&&(n=t,t=e,e=!1),i=0,a=h.length;a>i;i++)if("table"===t)r=n(h[i],i),r!==o&&d.push(r);else if("columns"===t||"rows"===t)r=n(h[i],this[i],i),r!==o&&d.push(r);else if("column"===t||"column-rows"===t||"row"===t||"cell"===t)for(c=this[i],"column-rows"===t&&(u=An(h[i],p.opts)),s=0,l=c.length;l>s;s++)f=c[s],r="cell"===t?n(h[i],f.row,f.column,i,s):n(h[i],f,i,s,u),r!==o&&d.push(r);if(d.length){var g=new Gt(h,e?d.concat.apply([],d):d),m=g.selector;return m.rows=p.rows,m.cols=p.cols,m.opts=p.opts,g}return this},lastIndexOf:Cn.lastIndexOf||function(){return this.indexOf.apply(this.toArray.reverse(),arguments)},length:0,map:function(e){var t=[];if(Cn.map)t=Cn.map.call(this,e,this);else for(var n=0,r=this.length;r>n;n++)t.push(e.call(this,this[n],n));return new Gt(this.context,t)},pluck:function(e){return this.map(function(t){return t[e]})},pop:Cn.pop,push:Cn.push,reduce:Cn.reduce||function(e,t){return c(this,e,t,0,this.length,1)},reduceRight:Cn.reduceRight||function(e,t){return c(this,e,t,this.length-1,-1,-1)},reverse:Cn.reverse,selector:null,shift:Cn.shift,sort:Cn.sort,splice:Cn.splice,toArray:function(){return Cn.slice.call(this)},to$:function(){return e(this)},toJQuery:function(){return e(this)},unique:function(){return new Gt(this.context,pn(this))},unshift:Cn.unshift},Gt.extend=function(t,n,r){if(n&&(n instanceof Gt||n.__dt_wrapper)){var i,o,a,s=function(e,n){return function(){var r=e.apply(t,arguments);return Gt.extend(r,r,n.methodExt),r}};for(i=0,o=r.length;o>i;i++)a=r[i],n[a.name]="function"==typeof a.val?s(a.val,a):e.isPlainObject(a.val)?{}:a.val,n[a.name].__dt_wrapper=!0,Gt.extend(t,n[a.name],a.propExt)}},Gt.register=Jt=function(t,n){if(e.isArray(t))for(var r=0,i=t.length;i>r;r++)Gt.register(t[r],n);else{var o,a,s,l,u=t.split("."),c=wn,f=function(e,t){for(var n=0,r=e.length;r>n;n++)if(e[n].name===t)return e[n];return null};for(o=0,a=u.length;a>o;o++){l=-1!==u[o].indexOf("()"),s=l?u[o].replace("()",""):u[o];var d=f(c,s);d||(d={name:s,val:{},methodExt:[],propExt:[]},c.push(d)),o===a-1?d.val=n:c=l?d.methodExt:d.propExt}Gt.ready&&Xt.api.build()}},Gt.registerPlural=Yt=function(t,n,r){Gt.register(t,r),Gt.register(n,function(){var t=r.apply(this,arguments);return t===this?this:t instanceof Gt?t.length?e.isArray(t[0])?new Gt(t.context,t[0]):t[0]:o:t})};var Tn=function(t,n){if("number"==typeof t)return[n[t]];var r=e.map(n,function(e){return e.nTable});return e(r).filter(t).map(function(){var t=e.inArray(this,r);return n[t]}).toArray()};Jt("tables()",function(e){return e?new Gt(Tn(e,this.context)):this}),Jt("table()",function(e){var t=this.tables(e),n=t.context;return n.length?new Gt(n[0]):t}),Yt("tables().nodes()","table().node()",function(){return this.iterator("table",function(e){return e.nTable})}),Yt("tables().body()","table().body()",function(){return this.iterator("table",function(e){return e.nTBody})}),Yt("tables().header()","table().header()",function(){return this.iterator("table",function(e){return e.nTHead})}),Yt("tables().footer()","table().footer()",function(){return this.iterator("table",function(e){return e.nTFoot})}),Jt("draw()",function(e){return this.iterator("table",function(t){R(t,e===!1)})}),Jt("page()",function(e){return e===o?this.page.info().page:this.iterator("table",function(t){ct(t,e)})}),Jt("page.info()",function(){if(0===this.context.length)return o;var e=this.context[0],t=e._iDisplayStart,n=e._iDisplayLength,r=e.fnRecordsDisplay(),i=-1===n;return{page:i?0:Math.floor(t/n),pages:i?1:Math.ceil(r/n),start:t,end:e.fnDisplayEnd(),length:n,recordsTotal:e.fnRecordsTotal(),recordsDisplay:r}}),Jt("page.len()",function(e){return e===o?0!==this.context.length?this.context[0]._iDisplayLength:o:this.iterator("table",function(t){st(t,e)})});var Dn=function(e,t,n){if("ssp"==Bt(e)?R(e,t):(dt(e,!0),q(e,[],function(n){_(e);for(var r=$(e,n),i=0,o=r.length;o>i;i++)x(e,r[i]);R(e,t),dt(e,!1)})),n){var r=new Gt(e);r.one("draw",function(){n(r.ajax.json())})}};Jt("ajax.json()",function(){var e=this.context;return e.length>0?e[0].json:void 0}),Jt("ajax.params()",function(){var e=this.context;return e.length>0?e[0].oAjaxData:void 0}),Jt("ajax.reload()",function(e,t){return this.iterator("table",function(n){Dn(n,t===!1,e)})}),Jt("ajax.url()",function(t){var n=this.context;return t===o?0===n.length?o:(n=n[0],n.ajax?e.isPlainObject(n.ajax)?n.ajax.url:n.ajax:n.sAjaxSource):this.iterator("table",function(n){e.isPlainObject(n.ajax)?n.ajax.url=t:n.ajax=t})}),Jt("ajax.url().load()",function(e,t){return this.iterator("table",function(n){Dn(n,t===!1,e)})});var kn=function(t,n){var r,i,a,s,l,u,c=[];for(t&&"string"!=typeof t&&t.length!==o||(t=[t]),a=0,s=t.length;s>a;a++)for(i=t[a]&&t[a].split?t[a].split(","):[t[a]],l=0,u=i.length;u>l;l++)r=n("string"==typeof i[l]?e.trim(i[l]):i[l]),r&&r.length&&c.push.apply(c,r);return c},Ln=function(e){return e||(e={}),e.filter&&!e.search&&(e.search=e.filter),{search:e.search||"none",order:e.order||"current",page:e.page||"all"}},Nn=function(e){for(var t=0,n=e.length;n>t;t++)if(e[t].length>0)return e[0]=e[t],e.length=1,e.context=[e.context[t]],e;return e.length=0,e},An=function(t,n){var r,i,o,a=[],s=t.aiDisplay,l=t.aiDisplayMaster,u=n.search,c=n.order,f=n.page;if("ssp"==Bt(t))return"removed"===u?[]:dn(0,l.length);if("current"==f)for(r=t._iDisplayStart,i=t.fnDisplayEnd();i>r;r++)a.push(s[r]);else if("current"==c||"applied"==c)a="none"==u?l.slice():"applied"==u?s.slice():e.map(l,function(t){return-1===e.inArray(t,s)?t:null});else if("index"==c||"original"==c)for(r=0,i=t.aoData.length;i>r;r++)"none"==u?a.push(r):(o=e.inArray(r,s),(-1===o&&"removed"==u||1===o&&"applied"==u)&&a.push(r));return a},_n=function(t,n,r){return kn(n,function(n){var i=on(n);if(null!==i&&!r)return[i];var o=An(t,r);if(null!==i&&-1!==e.inArray(i,o))return[i];if(!n)return o;for(var a=[],s=0,l=o.length;l>s;s++)a.push(t.aoData[o[s]].nTr);return n.nodeName&&-1!==e.inArray(n,a)?[n._DT_RowIndex]:e(a).filter(n).map(function(){return this._DT_RowIndex}).toArray()})};Jt("rows()",function(t,n){t===o?t="":e.isPlainObject(t)&&(n=t,t=""),n=Ln(n);var r=this.iterator("table",function(e){return _n(e,t,n)});return r.selector.rows=t,r.selector.opts=n,r}),Jt("rows().nodes()",function(){return this.iterator("row",function(e,t){return e.aoData[t].nTr||o})}),Jt("rows().data()",function(){return this.iterator(!0,"rows",function(e,t){return fn(e.aoData,t,"_aData")})}),Yt("rows().cache()","row().cache()",function(e){return this.iterator("row",function(t,n){var r=t.aoData[n];return"search"===e?r._aFilterData:r._aSortData})}),Yt("rows().invalidate()","row().invalidate()",function(e){return this.iterator("row",function(t,n){E(t,n,e)})}),Yt("rows().indexes()","row().index()",function(){return this.iterator("row",function(e,t){return t})}),Yt("rows().remove()","row().remove()",function(){var t=this;return this.iterator("row",function(n,r,i){var o=n.aoData;o.splice(r,1);for(var a=0,s=o.length;s>a;a++)null!==o[a].nTr&&(o[a].nTr._DT_RowIndex=a);e.inArray(r,n.aiDisplay);M(n.aiDisplayMaster,r),M(n.aiDisplay,r),M(t[i],r,!1),Wt(n)})}),Jt("rows.add()",function(e){var t=this.iterator("table",function(t){var n,r,i,o=[];for(r=0,i=e.length;i>r;r++)n=e[r],o.push(n.nodeName&&"TR"===n.nodeName.toUpperCase()?w(t,n)[0]:x(t,n));return o}),n=this.rows(-1);return n.pop(),n.push.apply(n,t.toArray()),n}),Jt("row()",function(e,t){return Nn(this.rows(e,t))}),Jt("row().data()",function(e){var t=this.context;return e===o?t.length&&this.length?t[0].aoData[this[0]]._aData:o:(t[0].aoData[this[0]]._aData=e,E(t[0],this[0],"data"),this)}),Jt("row().node()",function(){var e=this.context;return e.length&&this.length?e[0].aoData[this[0]].nTr||null:null}),Jt("row.add()",function(t){t instanceof e&&t.length&&(t=t[0]);var n=this.iterator("table",function(e){return t.nodeName&&"TR"===t.nodeName.toUpperCase()?w(e,t)[0]:x(e,t)});return this.row(n[0])});var Mn=function(t,n,r,i){var o=[],a=function(n,r){if(n.nodeName&&"tr"===n.nodeName.toLowerCase())o.push(n);else{var i=e("<tr><td/></tr>");e("td",i).addClass(r).html(n)[0].colSpan=m(t),o.push(i[0])}};if(e.isArray(r)||r instanceof e)for(var s=0,l=r.length;l>s;s++)a(r[s],i);else a(r,i);n._details&&n._details.remove(),n._details=e(o),n._detailsShow&&n._details.insertAfter(n.nTr)},En=function(e){var t=this.context;if(t.length&&this.length){var n=t[0].aoData[this[0]];n._details&&(n._detailsShow=e,e?n._details.insertAfter(n.nTr):n._details.remove(),Hn(t[0]))}return this},Hn=function(e){var t=new Gt(e),n=".dt.DT_details",r="draw"+n,i="column-visibility"+n;t.off(r+" "+i),cn(e.aoData,"_details").length>0&&(t.on(r,function(){t.rows({page:"current"}).eq(0).each(function(t){var n=e.aoData[t];n._detailsShow&&n._details.insertAfter(n.nTr)})}),t.on(i,function(e,t){for(var n,r=m(t),i=0,o=t.aoData.length;o>i;i++)n=t.aoData[i],n._details&&n._details.children("td[colspan]").attr("colspan",r)}))};Jt("row().child()",function(e,t){var n=this.context;return e===o?n.length&&this.length?n[0].aoData[this[0]]._details:o:(n.length&&this.length&&Mn(n[0],n[0].aoData[this[0]],e,t),this)}),Jt(["row().child.show()","row().child().show()"],function(){return En.call(this,!0),this}),Jt(["row().child.hide()","row().child().hide()"],function(){return En.call(this,!1),this}),Jt("row().child.isShown()",function(){var e=this.context;return e.length&&this.length?e[0].aoData[this[0]]._detailsShow||!1:!1});var jn=/^(.*):(name|visIdx|visible)$/,In=function(t,n){var r=t.aoColumns,i=cn(r,"sName"),o=cn(r,"nTh");return kn(n,function(n){var a=on(n);if(""===n)return dn(r.length);if(null!==a)return[a>=0?a:r.length+a];var s="string"==typeof n?n.match(jn):"";if(!s)return e(o).filter(n).map(function(){return e.inArray(this,o)}).toArray();switch(s[2]){case"visIdx":case"visible":var l=parseInt(s[1],10);if(0>l){var u=e.map(r,function(e,t){return e.bVisible?t:null});return[u[u.length+l]]}return[p(t,l)];case"name":return e.map(i,function(e,t){return e===s[1]?t:null})}})},On=function(t,n,r){var i,a,s,l,u=t.aoColumns,c=u[n],f=t.aoData;if(r===o)return c.bVisible;if(c.bVisible!==r){if(r){var d=e.inArray(!0,cn(u,"bVisible"),n+1);for(a=0,s=f.length;s>a;a++)l=f[a].nTr,i=f[a].anCells,l&&l.insertBefore(i[n],i[d]||null)}else e(cn(t.aoData,"anCells",n)).detach(),c.bVisible=!1,F(t,t.aoHeader),F(t,t.aoFooter),Mt(t);c.bVisible=r,F(t,t.aoHeader),F(t,t.aoFooter),h(t),(t.oScroll.sX||t.oScroll.sY)&&pt(t),Rt(t,null,"column-visibility",[t,n,r]),Mt(t)}};Jt("columns()",function(t,n){t===o?t="":e.isPlainObject(t)&&(n=t,t=""),n=Ln(n);var r=this.iterator("table",function(e){return In(e,t,n)});return r.selector.cols=t,r.selector.opts=n,r}),Yt("columns().header()","column().header()",function(){return this.iterator("column",function(e,t){return e.aoColumns[t].nTh})}),Yt("columns().footer()","column().footer()",function(){return this.iterator("column",function(e,t){return e.aoColumns[t].nTf})}),Yt("columns().data()","column().data()",function(){return this.iterator("column-rows",function(e,t,n,r,i){for(var o=[],a=0,s=i.length;s>a;a++)o.push(T(e,i[a],t,""));return o})}),Yt("columns().cache()","column().cache()",function(e){return this.iterator("column-rows",function(t,n,r,i,o){return fn(t.aoData,o,"search"===e?"_aFilterData":"_aSortData",n)})}),Yt("columns().nodes()","column().nodes()",function(){return this.iterator("column-rows",function(e,t,n,r,i){return fn(e.aoData,i,"anCells",t)})}),Yt("columns().visible()","column().visible()",function(e){return this.iterator("column",function(t,n){return e===o?t.aoColumns[n].bVisible:On(t,n,e)})}),Yt("columns().indexes()","column().index()",function(e){return this.iterator("column",function(t,n){return"visible"===e?g(t,n):n})}),Jt("columns.adjust()",function(){return this.iterator("table",function(e){h(e)})}),Jt("column.index()",function(e,t){if(0!==this.context.length){var n=this.context[0];if("fromVisible"===e||"toData"===e)return p(n,t);if("fromData"===e||"toVisible"===e)return g(n,t)}}),Jt("column()",function(e,t){return Nn(this.columns(e,t))});var Fn=function(t,n,r){var i,o,a,s,l,u=t.aoData,c=An(t,r),f=fn(u,c,"anCells"),d=e([].concat.apply([],f)),h=t.aoColumns.length;return kn(n,function(t){if(!t){for(o=[],a=0,s=c.length;s>a;a++)for(i=c[a],l=0;h>l;l++)o.push({row:i,column:l});return o}return e.isPlainObject(t)?[t]:d.filter(t).map(function(t,n){return i=n.parentNode._DT_RowIndex,{row:i,column:e.inArray(n,u[i].anCells)}}).toArray()})};Jt("cells()",function(t,n,r){if(e.isPlainObject(t)&&(t.row?(r=n,n=null):(r=t,t=null)),e.isPlainObject(n)&&(r=n,n=null),null===n||n===o)return this.iterator("table",function(e){return Fn(e,t,Ln(r))});var i,a,s,l,u,c=this.columns(n,r),f=this.rows(t,r),d=this.iterator("table",function(e,t){for(i=[],a=0,s=f[t].length;s>a;a++)for(l=0,u=c[t].length;u>l;l++)i.push({row:f[t][a],column:c[t][l]});return i});return e.extend(d.selector,{cols:n,rows:t,opts:r}),d}),Yt("cells().nodes()","cell().node()",function(){return this.iterator("cell",function(e,t,n){return e.aoData[t].anCells[n]})}),Jt("cells().data()",function(){return this.iterator("cell",function(e,t,n){return T(e,t,n)})}),Yt("cells().cache()","cell().cache()",function(e){return e="search"===e?"_aFilterData":"_aSortData",this.iterator("cell",function(t,n,r){return t.aoData[n][e][r]})}),Yt("cells().indexes()","cell().index()",function(){return this.iterator("cell",function(e,t,n){return{row:t,column:n,columnVisible:g(e,n)}})}),Jt(["cells().invalidate()","cell().invalidate()"],function(e){var t=this.selector;return this.rows(t.rows,t.opts).invalidate(e),this}),Jt("cell()",function(e,t,n){return Nn(this.cells(e,t,n))}),Jt("cell().data()",function(e){var t=this.context,n=this[0];return e===o?t.length&&n.length?T(t[0],n[0].row,n[0].column):o:(D(t[0],n[0].row,n[0].column,e),E(t[0],n[0].row,"data",n[0].column),this)}),Jt("order()",function(t,n){var r=this.context;return t===o?0!==r.length?r[0].aaSorting:o:("number"==typeof t?t=[[t,n]]:e.isArray(t[0])||(t=Array.prototype.slice.call(arguments)),this.iterator("table",function(e){e.aaSorting=t.slice()}))}),Jt("order.listener()",function(e,t,n){return this.iterator("table",function(r){Nt(r,e,t,n)})}),Jt(["columns().order()","column().order()"],function(t){var n=this;return this.iterator("table",function(r,i){var o=[];e.each(n[i],function(e,n){o.push([n,t])}),r.aaSorting=o})}),Jt("search()",function(t,n,r,i){var a=this.context;return t===o?0!==a.length?a[0].oPreviousSearch.sSearch:o:this.iterator("table",function(o){o.oFeatures.bFilter&&J(o,e.extend({},o.oPreviousSearch,{sSearch:t+"",bRegex:null===n?!1:n,bSmart:null===r?!0:r,bCaseInsensitive:null===i?!0:i}),1)})}),Jt(["columns().search()","column().search()"],function(t,n,r,i){return this.iterator("column",function(a,s){var l=a.aoPreSearchCols;return t===o?l[s].sSearch:void(a.oFeatures.bFilter&&(e.extend(l[s],{sSearch:t+"",bRegex:null===n?!1:n,bSmart:null===r?!0:r,bCaseInsensitive:null===i?!0:i}),J(a,a.oPreviousSearch,1)))})}),Xt.versionCheck=Xt.fnVersionCheck=function(e){for(var t,n,r=Xt.version.split("."),i=e.split("."),o=0,a=i.length;a>o;o++)if(t=parseInt(r[o],10)||0,n=parseInt(i[o],10)||0,t!==n)return t>n;return!0},Xt.isDataTable=Xt.fnIsDataTable=function(t){var n=e(t).get(0),r=!1;return e.each(Xt.settings,function(e,t){(t.nTable===n||t.nScrollHead===n||t.nScrollFoot===n)&&(r=!0)}),r},Xt.tables=Xt.fnTables=function(t){return jQuery.map(Xt.settings,function(n){return!t||t&&e(n.nTable).is(":visible")?n.nTable:void 0})},Xt.camelToHungarian=r,Jt("$()",function(t,n){var r=this.rows(n).nodes(),i=e(r);return e([].concat(i.filter(t).toArray(),i.find(t).toArray()))}),e.each(["on","one","off"],function(t,n){Jt(n+"()",function(){var t=Array.prototype.slice.call(arguments);-1===t[0].indexOf(".dt")&&(t[0]+=".dt");var r=e(this.tables().nodes());return r[n].apply(r,t),this})}),Jt("clear()",function(){return this.iterator("table",function(e){_(e)})}),Jt("settings()",function(){return new Gt(this.context,this.context)}),Jt("data()",function(){return this.iterator("table",function(e){return cn(e.aoData,"_aData")}).flatten()}),Jt("destroy()",function(t){return t=t||!1,this.iterator("table",function(r){var i,o=r.nTableWrapper.parentNode,a=r.oClasses,s=r.nTable,l=r.nTBody,u=r.nTHead,c=r.nTFoot,f=e(s),d=e(l),h=e(r.nTableWrapper),p=e.map(r.aoData,function(e){return e.nTr});r.bDestroying=!0,Rt(r,"aoDestroyCallback","destroy",[r]),t||new Gt(r).columns().visible(!0),h.unbind(".DT").find(":not(tbody *)").unbind(".DT"),e(n).unbind(".DT-"+r.sInstance),s!=u.parentNode&&(f.children("thead").detach(),f.append(u)),c&&s!=c.parentNode&&(f.children("tfoot").detach(),f.append(c)),f.detach(),h.detach(),r.aaSorting=[],r.aaSortingFixed=[],At(r),e(p).removeClass(r.asStripeClasses.join(" ")),e("th, td",u).removeClass(a.sSortable+" "+a.sSortableAsc+" "+a.sSortableDesc+" "+a.sSortableNone),r.bJUI&&(e("th span."+a.sSortIcon+", td span."+a.sSortIcon,u).detach(),e("th, td",u).each(function(){var t=e("div."+a.sSortJUIWrapper,this);e(this).append(t.contents()),t.detach()})),!t&&o&&o.insertBefore(s,r.nTableReinsertBefore),d.children().detach(),d.append(p),f.css("width",r.sDestroyWidth).removeClass(a.sTable),i=r.asDestroyStripes.length,i&&d.children().each(function(t){e(this).addClass(r.asDestroyStripes[t%i]) });var g=e.inArray(r,Xt.settings);-1!==g&&Xt.settings.splice(g,1)})}),Xt.version="1.10.0",Xt.settings=[],Xt.models={},Xt.models.oSearch={bCaseInsensitive:!0,sSearch:"",bRegex:!1,bSmart:!0},Xt.models.oRow={nTr:null,anCells:null,_aData:[],_aSortData:null,_aFilterData:null,_sFilterRow:null,_sRowStripe:"",src:null},Xt.models.oColumn={idx:null,aDataSort:null,asSorting:null,bSearchable:null,bSortable:null,bVisible:null,_sManualType:null,_bAttrSrc:!1,fnCreatedCell:null,fnGetData:null,fnSetData:null,mData:null,mRender:null,nTh:null,nTf:null,sClass:null,sContentPadding:null,sDefaultContent:null,sName:null,sSortDataType:"std",sSortingClass:null,sSortingClassJUI:null,sTitle:null,sType:null,sWidth:null,sWidthOrig:null},Xt.defaults={aaData:null,aaSorting:[[0,"asc"]],aaSortingFixed:[],ajax:null,aLengthMenu:[10,25,50,100],aoColumns:null,aoColumnDefs:null,aoSearchCols:[],asStripeClasses:null,bAutoWidth:!0,bDeferRender:!1,bDestroy:!1,bFilter:!0,bInfo:!0,bJQueryUI:!1,bLengthChange:!0,bPaginate:!0,bProcessing:!1,bRetrieve:!1,bScrollCollapse:!1,bServerSide:!1,bSort:!0,bSortMulti:!0,bSortCellsTop:!1,bSortClasses:!0,bStateSave:!1,fnCreatedRow:null,fnDrawCallback:null,fnFooterCallback:null,fnFormatNumber:function(e){return e.toString().replace(/\B(?=(\d{3})+(?!\d))/g,this.oLanguage.sThousands)},fnHeaderCallback:null,fnInfoCallback:null,fnInitComplete:null,fnPreDrawCallback:null,fnRowCallback:null,fnServerData:null,fnServerParams:null,fnStateLoadCallback:function(e){try{return JSON.parse((-1===e.iStateDuration?sessionStorage:localStorage).getItem("DataTables_"+e.sInstance+"_"+location.pathname))}catch(t){}},fnStateLoadParams:null,fnStateLoaded:null,fnStateSaveCallback:function(e,t){try{(-1===e.iStateDuration?sessionStorage:localStorage).setItem("DataTables_"+e.sInstance+"_"+location.pathname,JSON.stringify(t))}catch(n){}},fnStateSaveParams:null,iStateDuration:7200,iDeferLoading:null,iDisplayLength:10,iDisplayStart:0,iTabIndex:0,oClasses:{},oLanguage:{oAria:{sSortAscending:": activate to sort column ascending",sSortDescending:": activate to sort column descending"},oPaginate:{sFirst:"First",sLast:"Last",sNext:"Next",sPrevious:"Previous"},sEmptyTable:"No data available in table",sInfo:"Showing _START_ to _END_ of _TOTAL_ entries",sInfoEmpty:"Showing 0 to 0 of 0 entries",sInfoFiltered:"(filtered from _MAX_ total entries)",sInfoPostFix:"",sDecimal:"",sThousands:",",sLengthMenu:"Show _MENU_ entries",sLoadingRecords:"Loading...",sProcessing:"Processing...",sSearch:"Search:",sUrl:"",sZeroRecords:"No matching records found"},oSearch:e.extend({},Xt.models.oSearch),sAjaxDataProp:"data",sAjaxSource:null,sDom:"lfrtip",sPaginationType:"simple_numbers",sScrollX:"",sScrollXInner:"",sScrollY:"",sServerMethod:"GET",renderer:null},t(Xt.defaults),Xt.defaults.column={aDataSort:null,iDataSort:-1,asSorting:["asc","desc"],bSearchable:!0,bSortable:!0,bVisible:!0,fnCreatedCell:null,mData:null,mRender:null,sCellType:"td",sClass:"",sContentPadding:"",sDefaultContent:null,sName:"",sSortDataType:"std",sTitle:null,sType:null,sWidth:null},t(Xt.defaults.column),Xt.models.oSettings={oFeatures:{bAutoWidth:null,bDeferRender:null,bFilter:null,bInfo:null,bLengthChange:null,bPaginate:null,bProcessing:null,bServerSide:null,bSort:null,bSortMulti:null,bSortClasses:null,bStateSave:null},oScroll:{bCollapse:null,iBarWidth:0,sX:null,sXInner:null,sY:null},oLanguage:{fnInfoCallback:null},oBrowser:{bScrollOversize:!1,bScrollbarLeft:!1},ajax:null,aanFeatures:[],aoData:[],aiDisplay:[],aiDisplayMaster:[],aoColumns:[],aoHeader:[],aoFooter:[],oPreviousSearch:{},aoPreSearchCols:[],aaSorting:null,aaSortingFixed:[],asStripeClasses:null,asDestroyStripes:[],sDestroyWidth:0,aoRowCallback:[],aoHeaderCallback:[],aoFooterCallback:[],aoDrawCallback:[],aoRowCreatedCallback:[],aoPreDrawCallback:[],aoInitComplete:[],aoStateSaveParams:[],aoStateLoadParams:[],aoStateLoaded:[],sTableId:"",nTable:null,nTHead:null,nTFoot:null,nTBody:null,nTableWrapper:null,bDeferLoading:!1,bInitialised:!1,aoOpenRows:[],sDom:null,sPaginationType:"two_button",iStateDuration:0,aoStateSave:[],aoStateLoad:[],oLoadedState:null,sAjaxSource:null,sAjaxDataProp:null,bAjaxDataGet:!0,jqXHR:null,json:o,oAjaxData:o,fnServerData:null,aoServerParams:[],sServerMethod:null,fnFormatNumber:null,aLengthMenu:null,iDraw:0,bDrawing:!1,iDrawError:-1,_iDisplayLength:10,_iDisplayStart:0,_iRecordsTotal:0,_iRecordsDisplay:0,bJUI:null,oClasses:{},bFiltered:!1,bSorted:!1,bSortCellsTop:null,oInit:null,aoDestroyCallback:[],fnRecordsTotal:function(){return"ssp"==Bt(this)?1*this._iRecordsTotal:this.aiDisplayMaster.length},fnRecordsDisplay:function(){return"ssp"==Bt(this)?1*this._iRecordsDisplay:this.aiDisplay.length},fnDisplayEnd:function(){var e=this._iDisplayLength,t=this._iDisplayStart,n=t+e,r=this.aiDisplay.length,i=this.oFeatures,o=i.bPaginate;return i.bServerSide?o===!1||-1===e?t+r:Math.min(t+e,this._iRecordsDisplay):!o||n>r||-1===e?r:n},oInstance:null,sInstance:null,iTabIndex:0,nScrollHead:null,nScrollFoot:null,aLastSort:[],oPlugins:{}},Xt.ext=$t={classes:{},errMode:"alert",feature:[],search:[],internal:{},legacy:{ajax:null},pager:{},renderer:{pageButton:{},header:{}},order:{},type:{detect:[],search:{},order:{}},_unique:0,fnVersionCheck:Xt.fnVersionCheck,iApiIndex:0,oJUIClasses:{},sVersion:Xt.version},e.extend($t,{afnFiltering:$t.search,aTypes:$t.type.detect,ofnSearch:$t.type.search,oSort:$t.type.order,afnSortData:$t.order,aoFeatures:$t.feature,oApi:$t.internal,oStdClasses:$t.classes,oPagination:$t.pager}),e.extend(Xt.ext.classes,{sTable:"dataTable",sNoFooter:"no-footer",sPageButton:"paginate_button",sPageButtonActive:"current",sPageButtonDisabled:"disabled",sStripeOdd:"odd",sStripeEven:"even",sRowEmpty:"dataTables_empty",sWrapper:"dataTables_wrapper",sFilter:"dataTables_filter",sInfo:"dataTables_info",sPaging:"dataTables_paginate paging_",sLength:"dataTables_length",sProcessing:"dataTables_processing",sSortAsc:"sorting_asc",sSortDesc:"sorting_desc",sSortable:"sorting",sSortableAsc:"sorting_asc_disabled",sSortableDesc:"sorting_desc_disabled",sSortableNone:"sorting_disabled",sSortColumn:"sorting_",sFilterInput:"",sLengthSelect:"",sScrollWrapper:"dataTables_scroll",sScrollHead:"dataTables_scrollHead",sScrollHeadInner:"dataTables_scrollHeadInner",sScrollBody:"dataTables_scrollBody",sScrollFoot:"dataTables_scrollFoot",sScrollFootInner:"dataTables_scrollFootInner",sHeaderTH:"",sFooterTH:"",sSortJUIAsc:"",sSortJUIDesc:"",sSortJUI:"",sSortJUIAscAllowed:"",sSortJUIDescAllowed:"",sSortJUIWrapper:"",sSortIcon:"",sJUIHeader:"",sJUIFooter:""}),function(){var t="";t="";var n=t+"ui-state-default",r=t+"css_right ui-icon ui-icon-",i=t+"fg-toolbar ui-toolbar ui-widget-header ui-helper-clearfix";e.extend(Xt.ext.oJUIClasses,Xt.ext.classes,{sPageButton:"fg-button ui-button "+n,sPageButtonActive:"ui-state-disabled",sPageButtonDisabled:"ui-state-disabled",sPaging:"dataTables_paginate fg-buttonset ui-buttonset fg-buttonset-multi ui-buttonset-multi paging_",sSortAsc:n+" sorting_asc",sSortDesc:n+" sorting_desc",sSortable:n+" sorting",sSortableAsc:n+" sorting_asc_disabled",sSortableDesc:n+" sorting_desc_disabled",sSortableNone:n+" sorting_disabled",sSortJUIAsc:r+"triangle-1-n",sSortJUIDesc:r+"triangle-1-s",sSortJUI:r+"carat-2-n-s",sSortJUIAscAllowed:r+"carat-1-n",sSortJUIDescAllowed:r+"carat-1-s",sSortJUIWrapper:"DataTables_sort_wrapper",sSortIcon:"DataTables_sort_icon",sScrollHead:"dataTables_scrollHead "+n,sScrollFoot:"dataTables_scrollFoot "+n,sHeaderTH:n,sFooterTH:n,sJUIHeader:i+" ui-corner-tl ui-corner-tr",sJUIFooter:i+" ui-corner-bl ui-corner-br"})}();var Pn=Xt.ext.pager;e.extend(Pn,{simple:function(){return["previous","next"]},full:function(){return["first","previous","next","last"]},simple_numbers:function(e,t){return["previous",qt(e,t),"next"]},full_numbers:function(e,t){return["first","previous",qt(e,t),"next","last"]},_numbers:qt,numbers_length:7}),e.extend(!0,Xt.ext.renderer,{pageButton:{_:function(t,n,r,o,a,s){var l,u,c=t.oClasses,f=t.oLanguage.oPaginate,d=0,h=function(n,i){var o,p,g,m,v=function(e){ct(t,e.data.action,!0)};for(o=0,p=i.length;p>o;o++)if(m=i[o],e.isArray(m)){var y=e("<"+(m.DT_el||"div")+"/>").appendTo(n);h(y,m)}else{switch(l="",u="",m){case"ellipsis":n.append("<span>&hellip;</span>");break;case"first":l=f.sFirst,u=m+(a>0?"":" "+c.sPageButtonDisabled);break;case"previous":l=f.sPrevious,u=m+(a>0?"":" "+c.sPageButtonDisabled);break;case"next":l=f.sNext,u=m+(s-1>a?"":" "+c.sPageButtonDisabled);break;case"last":l=f.sLast,u=m+(s-1>a?"":" "+c.sPageButtonDisabled);break;default:l=m+1,u=a===m?c.sPageButtonActive:""}l&&(g=e("<a>",{"class":c.sPageButton+" "+u,"aria-controls":t.sTableId,"data-dt-idx":d,tabindex:t.iTabIndex,id:0===r&&"string"==typeof m?t.sTableId+"_"+m:null}).html(l).appendTo(n),Ft(g,{action:m},v),d++)}},p=e(i.activeElement).data("dt-idx");h(e(n).empty(),o),null!==p&&e(n).find("[data-dt-idx="+p+"]").focus()}}});var Rn=function(e,t,n,r){return e&&"-"!==e?(t&&(e=an(e,t)),e.replace&&(n&&(e=e.replace(n,"")),r&&(e=e.replace(r,""))),1*e):-1/0};return e.extend($t.type.order,{"date-pre":function(e){return Date.parse(e)||0},"html-pre":function(e){return e?e.replace?e.replace(/<.*?>/g,"").toLowerCase():e+"":""},"string-pre":function(e){return"string"==typeof e?e.toLowerCase():e&&e.toString?e.toString():""},"string-asc":function(e,t){return t>e?-1:e>t?1:0},"string-desc":function(e,t){return t>e?1:e>t?-1:0}}),Vt(""),e.extend(Xt.ext.type.detect,[function(e,t){var n=t.oLanguage.sDecimal;return sn(e,n)?"num"+n:null},function(e){if(e&&!en.test(e))return null;var t=Date.parse(e);return null!==t&&!isNaN(t)||rn(e)?"date":null},function(e,t){var n=t.oLanguage.sDecimal;return sn(e,n,!0)?"num-fmt"+n:null},function(e,t){var n=t.oLanguage.sDecimal;return un(e,n)?"html-num"+n:null},function(e,t){var n=t.oLanguage.sDecimal;return un(e,n,!0)?"html-num-fmt"+n:null},function(e){return rn(e)||"string"==typeof e&&-1!==e.indexOf("<")?"html":null}]),e.extend(Xt.ext.type.search,{html:function(e){return rn(e)?"":"string"==typeof e?e.replace(Qt," ").replace(Zt,""):""},string:function(e){return rn(e)?"":"string"==typeof e?e.replace(Qt," "):e}}),e.extend(!0,Xt.ext.renderer,{header:{_:function(t,n,r,i){e(t.nTable).on("order.dt.DT",function(e,t,o,a){var s=r.idx;n.removeClass(r.sSortingClass+" "+i.sSortAsc+" "+i.sSortDesc).addClass("asc"==a[s]?i.sSortAsc:"desc"==a[s]?i.sSortDesc:r.sSortingClass)})},jqueryui:function(t,n,r,i){var o=r.idx;e("<div/>").addClass(i.sSortJUIWrapper).append(n.contents()).append(e("<span/>").addClass(i.sSortIcon+" "+r.sSortingClassJUI)).appendTo(n),e(t.nTable).on("order.dt.DT",function(e,t,a,s){n.removeClass(i.sSortAsc+" "+i.sSortDesc).addClass("asc"==s[o]?i.sSortAsc:"desc"==s[o]?i.sSortDesc:r.sSortingClass),n.find("span."+i.sSortIcon).removeClass(i.sSortJUIAsc+" "+i.sSortJUIDesc+" "+i.sSortJUI+" "+i.sSortJUIAscAllowed+" "+i.sSortJUIDescAllowed).addClass("asc"==s[o]?i.sSortJUIAsc:"desc"==s[o]?i.sSortJUIDesc:r.sSortingClassJUI)})}}}),Xt.render={number:function(e,t,n,r){return{display:function(i){i=parseFloat(i);var o=parseInt(i,10),a=n?(t+(i-o).toFixed(n)).substring(2):"";return(r||"")+o.toString().replace(/\B(?=(\d{3})+(?!\d))/g,e)+a}}}},e.extend(Xt.ext.internal,{_fnExternApiFunc:Ut,_fnBuildAjax:q,_fnAjaxUpdate:V,_fnAjaxParameters:U,_fnAjaxUpdateDraw:X,_fnAjaxDataSrc:$,_fnAddColumn:f,_fnColumnOptions:d,_fnAdjustColumnSizing:h,_fnVisibleToColumnIndex:p,_fnColumnIndexToVisible:g,_fnVisbleColumns:m,_fnGetColumns:v,_fnColumnTypes:y,_fnApplyColumnDefs:b,_fnHungarianMap:t,_fnCamelToHungarian:r,_fnLanguageCompat:a,_fnBrowserDetect:u,_fnAddData:x,_fnAddTr:w,_fnNodeToDataIndex:C,_fnNodeToColumnIndex:S,_fnGetCellData:T,_fnSetCellData:D,_fnSplitObjNotation:k,_fnGetObjectDataFn:L,_fnSetObjectDataFn:N,_fnGetDataMaster:A,_fnClearTable:_,_fnDeleteIndex:M,_fnInvalidateRow:E,_fnGetRowElements:H,_fnCreateTr:j,_fnBuildHead:O,_fnDrawHead:F,_fnDraw:P,_fnReDraw:R,_fnAddOptionsHtml:W,_fnDetectHeader:z,_fnGetUniqueThs:B,_fnFeatureHtmlFilter:G,_fnFilterComplete:J,_fnFilterCustom:Y,_fnFilterColumn:K,_fnFilter:Q,_fnFilterCreateSearch:Z,_fnEscapeRegex:et,_fnFilterData:tt,_fnFeatureHtmlInfo:nt,_fnUpdateInfo:rt,_fnInfoMacros:it,_fnInitialise:ot,_fnInitComplete:at,_fnLengthChange:st,_fnFeatureHtmlLength:lt,_fnFeatureHtmlPaginate:ut,_fnPageChange:ct,_fnFeatureHtmlProcessing:ft,_fnProcessingDisplay:dt,_fnFeatureHtmlTable:ht,_fnScrollDraw:pt,_fnApplyToChildren:gt,_fnCalculateColumnWidths:mt,_fnThrottle:vt,_fnConvertToWidth:yt,_fnScrollingWidthAdjust:bt,_fnGetWidestNode:xt,_fnGetMaxLenString:wt,_fnStringToCss:Ct,_fnScrollBarWidth:St,_fnSortFlatten:Tt,_fnSort:Dt,_fnSortAria:kt,_fnSortListener:Lt,_fnSortAttachListener:Nt,_fnSortingClasses:At,_fnSortData:_t,_fnSaveState:Mt,_fnLoadState:Et,_fnSettingsFromNode:Ht,_fnLog:jt,_fnMap:It,_fnBindAction:Ft,_fnCallbackReg:Pt,_fnCallbackFire:Rt,_fnLengthOverflow:Wt,_fnRenderer:zt,_fnDataSource:Bt,_fnRowAttributes:I,_fnCalculateEnd:function(){}}),e.fn.dataTable=Xt,e.fn.dataTableSettings=Xt.settings,e.fn.dataTableExt=Xt.ext,e.fn.DataTable=function(t){return e(this).dataTable(t).api()},e.each(Xt,function(t,n){e.fn.DataTable[t]=n}),e.fn.dataTable})}(window,document)},{jquery:7}],2:[function(){RegExp.escape=function(e){return e.replace(/[-\/\\^$*+?.()|[\]{}]/g,"\\$&")},function(e){"use strict";e.csv={defaults:{separator:",",delimiter:'"',headers:!0},hooks:{castToScalar:function(e){var t=/\./;if(isNaN(e))return e;if(t.test(e))return parseFloat(e);var n=parseInt(e);return isNaN(n)?null:n}},parsers:{parse:function(e,t){function n(){if(l=0,u="",t.start&&t.state.rowNum<t.start)return s=[],t.state.rowNum++,void(t.state.colNum=1);if(void 0===t.onParseEntry)a.push(s);else{var e=t.onParseEntry(s,t.state);e!==!1&&a.push(e)}s=[],t.end&&t.state.rowNum>=t.end&&(c=!0),t.state.rowNum++,t.state.colNum=1}function r(){if(void 0===t.onParseValue)s.push(u);else{var e=t.onParseValue(u,t.state);e!==!1&&s.push(e)}u="",l=0,t.state.colNum++}var i=t.separator,o=t.delimiter;t.state.rowNum||(t.state.rowNum=1),t.state.colNum||(t.state.colNum=1);var a=[],s=[],l=0,u="",c=!1,f=RegExp.escape(i),d=RegExp.escape(o),h=/(D|S|\n|\r|[^DS\r\n]+)/,p=h.source;return p=p.replace(/S/g,f),p=p.replace(/D/g,d),h=RegExp(p,"gm"),e.replace(h,function(e){if(!c)switch(l){case 0:if(e===i){u+="",r();break}if(e===o){l=1;break}if("\n"===e){r(),n();break}if(/^\r$/.test(e))break;u+=e,l=3;break;case 1:if(e===o){l=2;break}u+=e,l=1;break;case 2:if(e===o){u+=e,l=1;break}if(e===i){r();break}if("\n"===e){r(),n();break}if(/^\r$/.test(e))break;throw new Error("CSVDataError: Illegal State [Row:"+t.state.rowNum+"][Col:"+t.state.colNum+"]");case 3:if(e===i){r();break}if("\n"===e){r(),n();break}if(/^\r$/.test(e))break;if(e===o)throw new Error("CSVDataError: Illegal Quote [Row:"+t.state.rowNum+"][Col:"+t.state.colNum+"]");throw new Error("CSVDataError: Illegal Data [Row:"+t.state.rowNum+"][Col:"+t.state.colNum+"]");default:throw new Error("CSVDataError: Unknown State [Row:"+t.state.rowNum+"][Col:"+t.state.colNum+"]")}}),0!==s.length&&(r(),n()),a},splitLines:function(e,t){function n(){if(a=0,t.start&&t.state.rowNum<t.start)return s="",void t.state.rowNum++;if(void 0===t.onParseEntry)o.push(s);else{var e=t.onParseEntry(s,t.state);e!==!1&&o.push(e)}s="",t.end&&t.state.rowNum>=t.end&&(l=!0),t.state.rowNum++}var r=t.separator,i=t.delimiter;t.state.rowNum||(t.state.rowNum=1);var o=[],a=0,s="",l=!1,u=RegExp.escape(r),c=RegExp.escape(i),f=/(D|S|\n|\r|[^DS\r\n]+)/,d=f.source;return d=d.replace(/S/g,u),d=d.replace(/D/g,c),f=RegExp(d,"gm"),e.replace(f,function(e){if(!l)switch(a){case 0:if(e===r){s+=e,a=0;break}if(e===i){s+=e,a=1;break}if("\n"===e){n();break}if(/^\r$/.test(e))break;s+=e,a=3;break;case 1:if(e===i){s+=e,a=2;break}s+=e,a=1;break;case 2:var o=s.substr(s.length-1);if(e===i&&o===i){s+=e,a=1;break}if(e===r){s+=e,a=0;break}if("\n"===e){n();break}if("\r"===e)break;throw new Error("CSVDataError: Illegal state [Row:"+t.state.rowNum+"]");case 3:if(e===r){s+=e,a=0;break}if("\n"===e){n();break}if("\r"===e)break;if(e===i)throw new Error("CSVDataError: Illegal quote [Row:"+t.state.rowNum+"]");throw new Error("CSVDataError: Illegal state [Row:"+t.state.rowNum+"]");default:throw new Error("CSVDataError: Unknown state [Row:"+t.state.rowNum+"]")}}),""!==s&&n(),o},parseEntry:function(e,t){function n(){if(void 0===t.onParseValue)o.push(s);else{var e=t.onParseValue(s,t.state);e!==!1&&o.push(e)}s="",a=0,t.state.colNum++}var r=t.separator,i=t.delimiter;t.state.rowNum||(t.state.rowNum=1),t.state.colNum||(t.state.colNum=1);var o=[],a=0,s="";if(!t.match){var l=RegExp.escape(r),u=RegExp.escape(i),c=/(D|S|\n|\r|[^DS\r\n]+)/,f=c.source;f=f.replace(/S/g,l),f=f.replace(/D/g,u),t.match=RegExp(f,"gm")}return e.replace(t.match,function(e){switch(a){case 0:if(e===r){s+="",n();break}if(e===i){a=1;break}if("\n"===e||"\r"===e)break;s+=e,a=3;break;case 1:if(e===i){a=2;break}s+=e,a=1;break;case 2:if(e===i){s+=e,a=1;break}if(e===r){n();break}if("\n"===e||"\r"===e)break;throw new Error("CSVDataError: Illegal State [Row:"+t.state.rowNum+"][Col:"+t.state.colNum+"]");case 3:if(e===r){n();break}if("\n"===e||"\r"===e)break;if(e===i)throw new Error("CSVDataError: Illegal Quote [Row:"+t.state.rowNum+"][Col:"+t.state.colNum+"]");throw new Error("CSVDataError: Illegal Data [Row:"+t.state.rowNum+"][Col:"+t.state.colNum+"]");default:throw new Error("CSVDataError: Unknown State [Row:"+t.state.rowNum+"][Col:"+t.state.colNum+"]")}}),n(),o}},toArray:function(t,n,r){var n=void 0!==n?n:{},i={};i.callback=void 0!==r&&"function"==typeof r?r:!1,i.separator="separator"in n?n.separator:e.csv.defaults.separator,i.delimiter="delimiter"in n?n.delimiter:e.csv.defaults.delimiter;var o=void 0!==n.state?n.state:{},n={delimiter:i.delimiter,separator:i.separator,onParseEntry:n.onParseEntry,onParseValue:n.onParseValue,state:o},a=e.csv.parsers.parseEntry(t,n);return i.callback?void i.callback("",a):a},toArrays:function(t,n,r){var n=void 0!==n?n:{},i={};i.callback=void 0!==r&&"function"==typeof r?r:!1,i.separator="separator"in n?n.separator:e.csv.defaults.separator,i.delimiter="delimiter"in n?n.delimiter:e.csv.defaults.delimiter;var o=[],n={delimiter:i.delimiter,separator:i.separator,onParseEntry:n.onParseEntry,onParseValue:n.onParseValue,start:n.start,end:n.end,state:{rowNum:1,colNum:1}};return o=e.csv.parsers.parse(t,n),i.callback?void i.callback("",o):o},toObjects:function(t,n,r){var n=void 0!==n?n:{},i={};i.callback=void 0!==r&&"function"==typeof r?r:!1,i.separator="separator"in n?n.separator:e.csv.defaults.separator,i.delimiter="delimiter"in n?n.delimiter:e.csv.defaults.delimiter,i.headers="headers"in n?n.headers:e.csv.defaults.headers,n.start="start"in n?n.start:1,i.headers&&n.start++,n.end&&i.headers&&n.end++;var o=[],a=[],n={delimiter:i.delimiter,separator:i.separator,onParseEntry:n.onParseEntry,onParseValue:n.onParseValue,start:n.start,end:n.end,state:{rowNum:1,colNum:1},match:!1},s={delimiter:i.delimiter,separator:i.separator,start:1,end:1,state:{rowNum:1,colNum:1}},l=e.csv.parsers.splitLines(t,s),u=e.csv.toArray(l[0],n),o=e.csv.parsers.splitLines(t,n);n.state.colNum=1,n.state.rowNum=u?2:1;for(var c=0,f=o.length;f>c;c++){var d=e.csv.toArray(o[c],n),h={};for(var p in u)h[u[p]]=d[p];a.push(h),n.state.rowNum++}return i.callback?void i.callback("",a):a},fromArrays:function(t,n,r){var n=void 0!==n?n:{},o={};if(o.callback=void 0!==r&&"function"==typeof r?r:!1,o.separator="separator"in n?n.separator:e.csv.defaults.separator,o.delimiter="delimiter"in n?n.delimiter:e.csv.defaults.delimiter,o.escaper="escaper"in n?n.escaper:e.csv.defaults.escaper,o.experimental="experimental"in n?n.experimental:!1,!o.experimental)throw new Error("not implemented");var a=[];for(i in t)a.push(t[i]);return o.callback?void o.callback("",a):a},fromObjects2CSV:function(t,n,r){var n=void 0!==n?n:{},o={};if(o.callback=void 0!==r&&"function"==typeof r?r:!1,o.separator="separator"in n?n.separator:e.csv.defaults.separator,o.delimiter="delimiter"in n?n.delimiter:e.csv.defaults.delimiter,o.experimental="experimental"in n?n.experimental:!1,!o.experimental)throw new Error("not implemented");var a=[];for(i in t)a.push(arrays[i]);return o.callback?void o.callback("",a):a}},e.csvEntry2Array=e.csv.toArray,e.csv2Array=e.csv.toArrays,e.csv2Dictionary=e.csv.toObjects}(jQuery)},{}],3:[function(t,n,r){!function(i){"object"==typeof r&&"object"==typeof n?i(t("../../lib/codemirror")):"function"==typeof e&&e.amd?e(["../../lib/codemirror"],i):i(CodeMirror)}(function(e){function t(e,t,r,i){var o=e.getLineHandle(t.line),l=t.ch-1,u=l>=0&&s[o.text.charAt(l)]||s[o.text.charAt(++l)];if(!u)return null;var c=">"==u.charAt(1)?1:-1;if(r&&c>0!=(l==t.ch))return null;var f=e.getTokenTypeAt(a(t.line,l+1)),d=n(e,a(t.line,l+(c>0?1:0)),c,f||null,i);return null==d?null:{from:a(t.line,l),to:d&&d.pos,match:d&&d.ch==u.charAt(0),forward:c>0}}function n(e,t,n,r,i){for(var o=i&&i.maxScanLineLength||1e4,l=i&&i.maxScanLines||1e3,u=[],c=i&&i.bracketRegex?i.bracketRegex:/[(){}[\]]/,f=n>0?Math.min(t.line+l,e.lastLine()+1):Math.max(e.firstLine()-1,t.line-l),d=t.line;d!=f;d+=n){var h=e.getLine(d);if(h){var p=n>0?0:h.length-1,g=n>0?h.length:-1;if(!(h.length>o))for(d==t.line&&(p=t.ch-(0>n?1:0));p!=g;p+=n){var m=h.charAt(p);if(c.test(m)&&(void 0===r||e.getTokenTypeAt(a(d,p+1))==r)){var v=s[m];if(">"==v.charAt(1)==n>0)u.push(m);else{if(!u.length)return{pos:a(d,p),ch:m};u.pop()}}}}}return d-n==(n>0?e.lastLine():e.firstLine())?!1:null}function r(e,n,r){for(var i=e.state.matchBrackets.maxHighlightLineLength||1e3,s=[],l=e.listSelections(),u=0;u<l.length;u++){var c=l[u].empty()&&t(e,l[u].head,!1,r);if(c&&e.getLine(c.from.line).length<=i){var f=c.match?"CodeMirror-matchingbracket":"CodeMirror-nonmatchingbracket";s.push(e.markText(c.from,a(c.from.line,c.from.ch+1),{className:f})),c.to&&e.getLine(c.to.line).length<=i&&s.push(e.markText(c.to,a(c.to.line,c.to.ch+1),{className:f}))}}if(s.length){o&&e.state.focused&&e.display.input.focus();var d=function(){e.operation(function(){for(var e=0;e<s.length;e++)s[e].clear()})};if(!n)return d;setTimeout(d,800)}}function i(e){e.operation(function(){l&&(l(),l=null),l=r(e,!1,e.state.matchBrackets)})}var o=/MSIE \d/.test(navigator.userAgent)&&(null==document.documentMode||document.documentMode<8),a=e.Pos,s={"(":")>",")":"(<","[":"]>","]":"[<","{":"}>","}":"{<"},l=null;e.defineOption("matchBrackets",!1,function(t,n,r){r&&r!=e.Init&&t.off("cursorActivity",i),n&&(t.state.matchBrackets="object"==typeof n?n:{},t.on("cursorActivity",i))}),e.defineExtension("matchBrackets",function(){r(this,!0)}),e.defineExtension("findMatchingBracket",function(e,n,r){return t(this,e,n,r)}),e.defineExtension("scanForBracket",function(e,t,r,i){return n(this,e,t,r,i)})})},{"../../lib/codemirror":4}],4:[function(t,n,r){!function(t){if("object"==typeof r&&"object"==typeof n)n.exports=t();else{if("function"==typeof e&&e.amd)return e([],t);this.CodeMirror=t()}}(function(){"use strict";function e(n,r){if(!(this instanceof e))return new e(n,r);this.options=r=r||{},io(xa,r,!1),p(r);var i=r.value;"string"==typeof i&&(i=new Va(i,r.mode)),this.doc=i;var o=this.display=new t(n,i);o.wrapper.CodeMirror=this,c(this),l(this),r.lineWrapping&&(this.display.wrapper.className+=" CodeMirror-wrap"),r.autofocus&&!Zo&&pn(this),this.state={keyMaps:[],overlays:[],modeGen:0,overwrite:!1,focused:!1,suppressEdits:!1,pasteIncoming:!1,cutIncoming:!1,draggingText:!1,highlight:new Ki},Po&&setTimeout(oo(hn,this,!0),20),vn(this),xo();var a=this;Yt(this,function(){a.curOp.forceUpdate=!0,yi(a,i),r.autofocus&&!Zo||po()==o.input?setTimeout(oo(Wn,a),20):zn(a);for(var e in wa)wa.hasOwnProperty(e)&&wa[e](a,r[e],Ca);for(var t=0;t<ka.length;++t)ka[t](a)})}function t(e,t){var n=this,r=n.input=uo("textarea",null,null,"position: absolute; padding: 0; width: 1px; height: 1em; outline: none");Vo?r.style.width="1000px":r.setAttribute("wrap","off"),Qo&&(r.style.border="1px solid black"),r.setAttribute("autocorrect","off"),r.setAttribute("autocapitalize","off"),r.setAttribute("spellcheck","false"),n.inputDiv=uo("div",[r],null,"overflow: hidden; position: relative; width: 3px; height: 0px;"),n.scrollbarH=uo("div",[uo("div",null,null,"height: 100%; min-height: 1px")],"CodeMirror-hscrollbar"),n.scrollbarV=uo("div",[uo("div",null,null,"min-width: 1px")],"CodeMirror-vscrollbar"),n.scrollbarFiller=uo("div",null,"CodeMirror-scrollbar-filler"),n.gutterFiller=uo("div",null,"CodeMirror-gutter-filler"),n.lineDiv=uo("div",null,"CodeMirror-code"),n.selectionDiv=uo("div",null,null,"position: relative; z-index: 1"),n.cursorDiv=uo("div",null,"CodeMirror-cursors"),n.measure=uo("div",null,"CodeMirror-measure"),n.lineMeasure=uo("div",null,"CodeMirror-measure"),n.lineSpace=uo("div",[n.measure,n.lineMeasure,n.selectionDiv,n.cursorDiv,n.lineDiv],null,"position: relative; outline: none"),n.mover=uo("div",[uo("div",[n.lineSpace],"CodeMirror-lines")],null,"position: relative"),n.sizer=uo("div",[n.mover],"CodeMirror-sizer"),n.heightForcer=uo("div",null,null,"position: absolute; height: "+ts+"px; width: 1px;"),n.gutters=uo("div",null,"CodeMirror-gutters"),n.lineGutter=null,n.scroller=uo("div",[n.sizer,n.heightForcer,n.gutters],"CodeMirror-scroll"),n.scroller.setAttribute("tabIndex","-1"),n.wrapper=uo("div",[n.inputDiv,n.scrollbarH,n.scrollbarV,n.scrollbarFiller,n.gutterFiller,n.scroller],"CodeMirror"),Ro&&(n.gutters.style.zIndex=-1,n.scroller.style.paddingRight=0),Qo&&(r.style.width="0px"),Vo||(n.scroller.draggable=!0),Jo&&(n.inputDiv.style.height="1px",n.inputDiv.style.position="absolute"),Ro&&(n.scrollbarH.style.minHeight=n.scrollbarV.style.minWidth="18px"),e.appendChild?e.appendChild(n.wrapper):e(n.wrapper),n.viewFrom=n.viewTo=t.first,n.view=[],n.externalMeasured=null,n.viewOffset=0,n.lastSizeC=0,n.updateLineNumbers=null,n.lineNumWidth=n.lineNumInnerWidth=n.lineNumChars=null,n.prevInput="",n.alignWidgets=!1,n.pollingFast=!1,n.poll=new Ki,n.cachedCharWidth=n.cachedTextHeight=n.cachedPaddingH=null,n.inaccurateSelection=!1,n.maxLine=null,n.maxLineLength=0,n.maxLineChanged=!1,n.wheelDX=n.wheelDY=n.wheelStartX=n.wheelStartY=null,n.shift=!1,n.selForContextMenu=null}function n(t){t.doc.mode=e.getMode(t.options,t.doc.modeOption),r(t)}function r(e){e.doc.iter(function(e){e.stateAfter&&(e.stateAfter=null),e.styles&&(e.styles=null)}),e.doc.frontier=e.doc.first,yt(e,100),e.state.modeGen++,e.curOp&&nn(e)}function i(e){e.options.lineWrapping?(vo(e.display.wrapper,"CodeMirror-wrap"),e.display.sizer.style.minWidth=""):(mo(e.display.wrapper,"CodeMirror-wrap"),h(e)),a(e),nn(e),It(e),setTimeout(function(){m(e)},100)}function o(e){var t=Xt(e.display),n=e.options.lineWrapping,r=n&&Math.max(5,e.display.scroller.clientWidth/$t(e.display)-3);return function(i){if(Ur(e.doc,i))return 0;var o=0;if(i.widgets)for(var a=0;a<i.widgets.length;a++)i.widgets[a].height&&(o+=i.widgets[a].height);return n?o+(Math.ceil(i.text.length/r)||1)*t:o+t}}function a(e){var t=e.doc,n=o(e);t.iter(function(e){var t=n(e);t!=e.height&&Ci(e,t)})}function s(e){var t=Ma[e.options.keyMap],n=t.style;e.display.wrapper.className=e.display.wrapper.className.replace(/\s*cm-keymap-\S+/g,"")+(n?" cm-keymap-"+n:"")}function l(e){e.display.wrapper.className=e.display.wrapper.className.replace(/\s*cm-s-\S+/g,"")+e.options.theme.replace(/(^|\s)\s*/g," cm-s-"),It(e)}function u(e){c(e),nn(e),setTimeout(function(){y(e)},20)}function c(e){var t=e.display.gutters,n=e.options.gutters;co(t);for(var r=0;r<n.length;++r){var i=n[r],o=t.appendChild(uo("div",null,"CodeMirror-gutter "+i));"CodeMirror-linenumbers"==i&&(e.display.lineGutter=o,o.style.width=(e.display.lineNumWidth||1)+"px")}t.style.display=r?"":"none",f(e)}function f(e){var t=e.display.gutters.offsetWidth;e.display.sizer.style.marginLeft=t+"px",e.display.scrollbarH.style.left=e.options.fixedGutter?t+"px":0}function d(e){if(0==e.height)return 0;for(var t,n=e.text.length,r=e;t=Pr(r);){var i=t.find(0,!0);r=i.from.line,n+=i.from.ch-i.to.ch}for(r=e;t=Rr(r);){var i=t.find(0,!0);n-=r.text.length-i.from.ch,r=i.to.line,n+=r.text.length-i.to.ch}return n}function h(e){var t=e.display,n=e.doc;t.maxLine=bi(n,n.first),t.maxLineLength=d(t.maxLine),t.maxLineChanged=!0,n.iter(function(e){var n=d(e);n>t.maxLineLength&&(t.maxLineLength=n,t.maxLine=e)})}function p(e){var t=to(e.gutters,"CodeMirror-linenumbers");-1==t&&e.lineNumbers?e.gutters=e.gutters.concat(["CodeMirror-linenumbers"]):t>-1&&!e.lineNumbers&&(e.gutters=e.gutters.slice(0),e.gutters.splice(t,1))}function g(e){var t=e.display.scroller;return{clientHeight:t.clientHeight,barHeight:e.display.scrollbarV.clientHeight,scrollWidth:t.scrollWidth,clientWidth:t.clientWidth,barWidth:e.display.scrollbarH.clientWidth,docHeight:Math.round(e.doc.height+St(e.display))}}function m(e,t){t||(t=g(e));var n=e.display,r=t.docHeight+ts,i=t.scrollWidth>t.clientWidth,o=r>t.clientHeight;if(o?(n.scrollbarV.style.display="block",n.scrollbarV.style.bottom=i?Co(n.measure)+"px":"0",n.scrollbarV.firstChild.style.height=Math.max(0,r-t.clientHeight+(t.barHeight||n.scrollbarV.clientHeight))+"px"):(n.scrollbarV.style.display="",n.scrollbarV.firstChild.style.height="0"),i?(n.scrollbarH.style.display="block",n.scrollbarH.style.right=o?Co(n.measure)+"px":"0",n.scrollbarH.firstChild.style.width=t.scrollWidth-t.clientWidth+(t.barWidth||n.scrollbarH.clientWidth)+"px"):(n.scrollbarH.style.display="",n.scrollbarH.firstChild.style.width="0"),i&&o?(n.scrollbarFiller.style.display="block",n.scrollbarFiller.style.height=n.scrollbarFiller.style.width=Co(n.measure)+"px"):n.scrollbarFiller.style.display="",i&&e.options.coverGutterNextToScrollbar&&e.options.fixedGutter?(n.gutterFiller.style.display="block",n.gutterFiller.style.height=Co(n.measure)+"px",n.gutterFiller.style.width=n.gutters.offsetWidth+"px"):n.gutterFiller.style.display="",!e.state.checkedOverlayScrollbar&&t.clientHeight>0){if(0===Co(n.measure)){var a=ea&&!Yo?"12px":"18px";n.scrollbarV.style.minWidth=n.scrollbarH.style.minHeight=a;var s=function(t){qi(t)!=n.scrollbarV&&qi(t)!=n.scrollbarH&&Kt(e,wn)(t)};Ka(n.scrollbarV,"mousedown",s),Ka(n.scrollbarH,"mousedown",s)}e.state.checkedOverlayScrollbar=!0}}function v(e,t,n){var r=n&&null!=n.top?Math.max(0,n.top):e.scroller.scrollTop;r=Math.floor(r-Ct(e));var i=n&&null!=n.bottom?n.bottom:r+e.wrapper.clientHeight,o=Ti(t,r),a=Ti(t,i);if(n&&n.ensure){var s=n.ensure.from.line,l=n.ensure.to.line;if(o>s)return{from:s,to:Ti(t,Di(bi(t,s))+e.wrapper.clientHeight)};if(Math.min(l,t.lastLine())>=a)return{from:Ti(t,Di(bi(t,l))-e.wrapper.clientHeight),to:l}}return{from:o,to:Math.max(a,o+1)}}function y(e){var t=e.display,n=t.view;if(t.alignWidgets||t.gutters.firstChild&&e.options.fixedGutter){for(var r=w(t)-t.scroller.scrollLeft+e.doc.scrollLeft,i=t.gutters.offsetWidth,o=r+"px",a=0;a<n.length;a++)if(!n[a].hidden){e.options.fixedGutter&&n[a].gutter&&(n[a].gutter.style.left=o);var s=n[a].alignable;if(s)for(var l=0;l<s.length;l++)s[l].style.left=o}e.options.fixedGutter&&(t.gutters.style.left=r+i+"px")}}function b(e){if(!e.options.lineNumbers)return!1;var t=e.doc,n=x(e.options,t.first+t.size-1),r=e.display;if(n.length!=r.lineNumChars){var i=r.measure.appendChild(uo("div",[uo("div",n)],"CodeMirror-linenumber CodeMirror-gutter-elt")),o=i.firstChild.offsetWidth,a=i.offsetWidth-o;return r.lineGutter.style.width="",r.lineNumInnerWidth=Math.max(o,r.lineGutter.offsetWidth-a),r.lineNumWidth=r.lineNumInnerWidth+a,r.lineNumChars=r.lineNumInnerWidth?n.length:-1,r.lineGutter.style.width=r.lineNumWidth+"px",f(e),!0}return!1}function x(e,t){return String(e.lineNumberFormatter(t+e.firstLineNumber))}function w(e){return e.scroller.getBoundingClientRect().left-e.sizer.getBoundingClientRect().left}function C(e,t,n){for(var r,i=e.display.viewFrom,o=e.display.viewTo,a=v(e.display,e.doc,t),s=!0;;s=!1){var l=e.display.scroller.clientWidth;if(!S(e,a,n))break;r=!0,e.display.maxLineChanged&&!e.options.lineWrapping&&T(e);var u=g(e);if(pt(e),D(e,u),m(e,u),Vo&&e.options.lineWrapping&&k(e,u),s&&e.options.lineWrapping&&l!=e.display.scroller.clientWidth)n=!0;else if(n=!1,t&&null!=t.top&&(t={top:Math.min(u.docHeight-ts-u.clientHeight,t.top)}),a=v(e.display,e.doc,t),a.from>=e.display.viewFrom&&a.to<=e.display.viewTo)break}return e.display.updateLineNumbers=null,r&&(Ui(e,"update",e),(e.display.viewFrom!=i||e.display.viewTo!=o)&&Ui(e,"viewportChange",e,e.display.viewFrom,e.display.viewTo)),r }function S(e,t,n){var r=e.display,i=e.doc;if(!r.wrapper.offsetWidth)return void on(e);if(!(!n&&t.from>=r.viewFrom&&t.to<=r.viewTo&&0==un(e))){b(e)&&on(e);var o=A(e),a=i.first+i.size,s=Math.max(t.from-e.options.viewportMargin,i.first),l=Math.min(a,t.to+e.options.viewportMargin);r.viewFrom<s&&s-r.viewFrom<20&&(s=Math.max(i.first,r.viewFrom)),r.viewTo>l&&r.viewTo-l<20&&(l=Math.min(a,r.viewTo)),aa&&(s=qr(e.doc,s),l=Vr(e.doc,l));var u=s!=r.viewFrom||l!=r.viewTo||r.lastSizeC!=r.wrapper.clientHeight;ln(e,s,l),r.viewOffset=Di(bi(e.doc,r.viewFrom)),e.display.mover.style.top=r.viewOffset+"px";var c=un(e);if(u||0!=c||n){var f=po();return c>4&&(r.lineDiv.style.display="none"),_(e,r.updateLineNumbers,o),c>4&&(r.lineDiv.style.display=""),f&&po()!=f&&f.offsetHeight&&f.focus(),co(r.cursorDiv),co(r.selectionDiv),u&&(r.lastSizeC=r.wrapper.clientHeight,yt(e,400)),L(e),!0}}}function T(e){var t=e.display,n=Nt(e,t.maxLine,t.maxLine.text.length).left;t.maxLineChanged=!1;var r=Math.max(0,n+3),i=Math.max(0,t.sizer.offsetLeft+r+ts-t.scroller.clientWidth);t.sizer.style.minWidth=r+"px",i<e.doc.scrollLeft&&_n(e,Math.min(t.scroller.scrollLeft,i),!0)}function D(e,t){e.display.sizer.style.minHeight=e.display.heightForcer.style.top=t.docHeight+"px",e.display.gutters.style.height=Math.max(t.docHeight,t.clientHeight-ts)+"px"}function k(e,t){e.display.sizer.offsetWidth+e.display.gutters.offsetWidth<e.display.scroller.clientWidth-1&&(e.display.sizer.style.minHeight=e.display.heightForcer.style.top="0px",e.display.gutters.style.height=t.docHeight+"px")}function L(e){for(var t=e.display,n=t.lineDiv.offsetTop,r=0;r<t.view.length;r++){var i,o=t.view[r];if(!o.hidden){if(Ro){var a=o.node.offsetTop+o.node.offsetHeight;i=a-n,n=a}else{var s=o.node.getBoundingClientRect();i=s.bottom-s.top}var l=o.line.height-i;if(2>i&&(i=Xt(t)),(l>.001||-.001>l)&&(Ci(o.line,i),N(o.line),o.rest))for(var u=0;u<o.rest.length;u++)N(o.rest[u])}}}function N(e){if(e.widgets)for(var t=0;t<e.widgets.length;++t)e.widgets[t].height=e.widgets[t].node.offsetHeight}function A(e){for(var t=e.display,n={},r={},i=t.gutters.firstChild,o=0;i;i=i.nextSibling,++o)n[e.options.gutters[o]]=i.offsetLeft,r[e.options.gutters[o]]=i.offsetWidth;return{fixedPos:w(t),gutterTotalWidth:t.gutters.offsetWidth,gutterLeft:n,gutterWidth:r,wrapperWidth:t.wrapper.clientWidth}}function _(e,t,n){function r(t){var n=t.nextSibling;return Vo&&ea&&e.display.currentWheelTarget==t?t.style.display="none":t.parentNode.removeChild(t),n}for(var i=e.display,o=e.options.lineNumbers,a=i.lineDiv,s=a.firstChild,l=i.view,u=i.viewFrom,c=0;c<l.length;c++){var f=l[c];if(f.hidden);else if(f.node){for(;s!=f.node;)s=r(s);var d=o&&null!=t&&u>=t&&f.lineNumber;f.changes&&(to(f.changes,"gutter")>-1&&(d=!1),M(e,f,u,n)),d&&(co(f.lineNumber),f.lineNumber.appendChild(document.createTextNode(x(e.options,u)))),s=f.node.nextSibling}else{var h=R(e,f,u,n);a.insertBefore(h,s)}u+=f.size}for(;s;)s=r(s)}function M(e,t,n,r){for(var i=0;i<t.changes.length;i++){var o=t.changes[i];"text"==o?I(e,t):"gutter"==o?F(e,t,n,r):"class"==o?O(t):"widget"==o&&P(t,r)}t.changes=null}function E(e){return e.node==e.text&&(e.node=uo("div",null,null,"position: relative"),e.text.parentNode&&e.text.parentNode.replaceChild(e.node,e.text),e.node.appendChild(e.text),Ro&&(e.node.style.zIndex=2)),e.node}function H(e){var t=e.bgClass?e.bgClass+" "+(e.line.bgClass||""):e.line.bgClass;if(t&&(t+=" CodeMirror-linebackground"),e.background)t?e.background.className=t:(e.background.parentNode.removeChild(e.background),e.background=null);else if(t){var n=E(e);e.background=n.insertBefore(uo("div",null,t),n.firstChild)}}function j(e,t){var n=e.display.externalMeasured;return n&&n.line==t.line?(e.display.externalMeasured=null,t.measure=n.measure,n.built):ai(e,t)}function I(e,t){var n=t.text.className,r=j(e,t);t.text==t.node&&(t.node=r.pre),t.text.parentNode.replaceChild(r.pre,t.text),t.text=r.pre,r.bgClass!=t.bgClass||r.textClass!=t.textClass?(t.bgClass=r.bgClass,t.textClass=r.textClass,O(t)):n&&(t.text.className=n)}function O(e){H(e),e.line.wrapClass?E(e).className=e.line.wrapClass:e.node!=e.text&&(e.node.className="");var t=e.textClass?e.textClass+" "+(e.line.textClass||""):e.line.textClass;e.text.className=t||""}function F(e,t,n,r){t.gutter&&(t.node.removeChild(t.gutter),t.gutter=null);var i=t.line.gutterMarkers;if(e.options.lineNumbers||i){var o=E(t),a=t.gutter=o.insertBefore(uo("div",null,"CodeMirror-gutter-wrapper","position: absolute; left: "+(e.options.fixedGutter?r.fixedPos:-r.gutterTotalWidth)+"px"),t.text);if(!e.options.lineNumbers||i&&i["CodeMirror-linenumbers"]||(t.lineNumber=a.appendChild(uo("div",x(e.options,n),"CodeMirror-linenumber CodeMirror-gutter-elt","left: "+r.gutterLeft["CodeMirror-linenumbers"]+"px; width: "+e.display.lineNumInnerWidth+"px"))),i)for(var s=0;s<e.options.gutters.length;++s){var l=e.options.gutters[s],u=i.hasOwnProperty(l)&&i[l];u&&a.appendChild(uo("div",[u],"CodeMirror-gutter-elt","left: "+r.gutterLeft[l]+"px; width: "+r.gutterWidth[l]+"px"))}}}function P(e,t){e.alignable&&(e.alignable=null);for(var n,r=e.node.firstChild;r;r=n){var n=r.nextSibling;"CodeMirror-linewidget"==r.className&&e.node.removeChild(r)}W(e,t)}function R(e,t,n,r){var i=j(e,t);return t.text=t.node=i.pre,i.bgClass&&(t.bgClass=i.bgClass),i.textClass&&(t.textClass=i.textClass),O(t),F(e,t,n,r),W(t,r),t.node}function W(e,t){if(z(e.line,e,t,!0),e.rest)for(var n=0;n<e.rest.length;n++)z(e.rest[n],e,t,!1)}function z(e,t,n,r){if(e.widgets)for(var i=E(t),o=0,a=e.widgets;o<a.length;++o){var s=a[o],l=uo("div",[s.node],"CodeMirror-linewidget");s.handleMouseEvents||(l.ignoreEvents=!0),B(s,l,t,n),r&&s.above?i.insertBefore(l,t.gutter||t.text):i.appendChild(l),Ui(s,"redraw")}}function B(e,t,n,r){if(e.noHScroll){(n.alignable||(n.alignable=[])).push(t);var i=r.wrapperWidth;t.style.left=r.fixedPos+"px",e.coverGutter||(i-=r.gutterTotalWidth,t.style.paddingLeft=r.gutterTotalWidth+"px"),t.style.width=i+"px"}e.coverGutter&&(t.style.zIndex=5,t.style.position="relative",e.noHScroll||(t.style.marginLeft=-r.gutterTotalWidth+"px"))}function q(e){return sa(e.line,e.ch)}function V(e,t){return la(e,t)<0?t:e}function U(e,t){return la(e,t)<0?e:t}function X(e,t){this.ranges=e,this.primIndex=t}function $(e,t){this.anchor=e,this.head=t}function G(e,t){var n=e[t];e.sort(function(e,t){return la(e.from(),t.from())}),t=to(e,n);for(var r=1;r<e.length;r++){var i=e[r],o=e[r-1];if(la(o.to(),i.from())>=0){var a=U(o.from(),i.from()),s=V(o.to(),i.to()),l=o.empty()?i.from()==i.head:o.from()==o.head;t>=r&&--t,e.splice(--r,2,new $(l?s:a,l?a:s))}}return new X(e,t)}function J(e,t){return new X([new $(e,t||e)],0)}function Y(e,t){return Math.max(e.first,Math.min(t,e.first+e.size-1))}function K(e,t){if(t.line<e.first)return sa(e.first,0);var n=e.first+e.size-1;return t.line>n?sa(n,bi(e,n).text.length):Q(t,bi(e,t.line).text.length)}function Q(e,t){var n=e.ch;return null==n||n>t?sa(e.line,t):0>n?sa(e.line,0):e}function Z(e,t){return t>=e.first&&t<e.first+e.size}function et(e,t){for(var n=[],r=0;r<t.length;r++)n[r]=K(e,t[r]);return n}function tt(e,t,n,r){if(e.cm&&e.cm.display.shift||e.extend){var i=t.anchor;if(r){var o=la(n,i)<0;o!=la(r,i)<0?(i=n,n=r):o!=la(n,r)<0&&(n=r)}return new $(i,n)}return new $(r||n,n)}function nt(e,t,n,r){lt(e,new X([tt(e,e.sel.primary(),t,n)],0),r)}function rt(e,t,n){for(var r=[],i=0;i<e.sel.ranges.length;i++)r[i]=tt(e,e.sel.ranges[i],t[i],null);var o=G(r,e.sel.primIndex);lt(e,o,n)}function it(e,t,n,r){var i=e.sel.ranges.slice(0);i[t]=n,lt(e,G(i,e.sel.primIndex),r)}function ot(e,t,n,r){lt(e,J(t,n),r)}function at(e,t){var n={ranges:t.ranges,update:function(t){this.ranges=[];for(var n=0;n<t.length;n++)this.ranges[n]=new $(K(e,t[n].anchor),K(e,t[n].head))}};return Za(e,"beforeSelectionChange",e,n),e.cm&&Za(e.cm,"beforeSelectionChange",e.cm,n),n.ranges!=t.ranges?G(n.ranges,n.ranges.length-1):t}function st(e,t,n){var r=e.history.done,i=eo(r);i&&i.ranges?(r[r.length-1]=t,ut(e,t,n)):lt(e,t,n)}function lt(e,t,n){ut(e,t,n),Hi(e,e.sel,e.cm?e.cm.curOp.id:0/0,n)}function ut(e,t,n){(Ji(e,"beforeSelectionChange")||e.cm&&Ji(e.cm,"beforeSelectionChange"))&&(t=at(e,t));var r=n&&n.bias||(la(t.primary().head,e.sel.primary().head)<0?-1:1);ct(e,dt(e,t,r,!0)),n&&n.scroll===!1||!e.cm||sr(e.cm)}function ct(e,t){t.equals(e.sel)||(e.sel=t,e.cm&&(e.cm.curOp.updateInput=e.cm.curOp.selectionChanged=!0,Gi(e.cm)),Ui(e,"cursorActivity",e))}function ft(e){ct(e,dt(e,e.sel,null,!1),rs)}function dt(e,t,n,r){for(var i,o=0;o<t.ranges.length;o++){var a=t.ranges[o],s=ht(e,a.anchor,n,r),l=ht(e,a.head,n,r);(i||s!=a.anchor||l!=a.head)&&(i||(i=t.ranges.slice(0,o)),i[o]=new $(s,l))}return i?G(i,t.primIndex):t}function ht(e,t,n,r){var i=!1,o=t,a=n||1;e.cantEdit=!1;e:for(;;){var s=bi(e,o.line);if(s.markedSpans)for(var l=0;l<s.markedSpans.length;++l){var u=s.markedSpans[l],c=u.marker;if((null==u.from||(c.inclusiveLeft?u.from<=o.ch:u.from<o.ch))&&(null==u.to||(c.inclusiveRight?u.to>=o.ch:u.to>o.ch))){if(r&&(Za(c,"beforeCursorEnter"),c.explicitlyCleared)){if(s.markedSpans){--l;continue}break}if(!c.atomic)continue;var f=c.find(0>a?-1:1);if(0==la(f,o)&&(f.ch+=a,f.ch<0?f=f.line>e.first?K(e,sa(f.line-1)):null:f.ch>s.text.length&&(f=f.line<e.first+e.size-1?sa(f.line+1,0):null),!f)){if(i)return r?(e.cantEdit=!0,sa(e.first,0)):ht(e,t,n,!0);i=!0,f=t,a=-a}o=f;continue e}}return o}}function pt(e){for(var t=e.display,n=e.doc,r=document.createDocumentFragment(),i=document.createDocumentFragment(),o=0;o<n.sel.ranges.length;o++){var a=n.sel.ranges[o],s=a.empty();(s||e.options.showCursorWhenSelecting)&&gt(e,a,r),s||mt(e,a,i)}if(e.options.moveInputWithCursor){var l=zt(e,n.sel.primary().head,"div"),u=t.wrapper.getBoundingClientRect(),c=t.lineDiv.getBoundingClientRect(),f=Math.max(0,Math.min(t.wrapper.clientHeight-10,l.top+c.top-u.top)),d=Math.max(0,Math.min(t.wrapper.clientWidth-10,l.left+c.left-u.left));t.inputDiv.style.top=f+"px",t.inputDiv.style.left=d+"px"}fo(t.cursorDiv,r),fo(t.selectionDiv,i)}function gt(e,t,n){var r=zt(e,t.head,"div"),i=n.appendChild(uo("div"," ","CodeMirror-cursor"));if(i.style.left=r.left+"px",i.style.top=r.top+"px",i.style.height=Math.max(0,r.bottom-r.top)*e.options.cursorHeight+"px",r.other){var o=n.appendChild(uo("div"," ","CodeMirror-cursor CodeMirror-secondarycursor"));o.style.display="",o.style.left=r.other.left+"px",o.style.top=r.other.top+"px",o.style.height=.85*(r.other.bottom-r.other.top)+"px"}}function mt(e,t,n){function r(e,t,n,r){0>t&&(t=0),t=Math.round(t),r=Math.round(r),s.appendChild(uo("div",null,"CodeMirror-selected","position: absolute; left: "+e+"px; top: "+t+"px; width: "+(null==n?c-e:n)+"px; height: "+(r-t)+"px"))}function i(t,n,i){function o(n,r){return Wt(e,sa(t,n),"div",f,r)}var s,l,f=bi(a,t),d=f.text.length;return Do(ki(f),n||0,null==i?d:i,function(e,t,a){var f,h,p,g=o(e,"left");if(e==t)f=g,h=p=g.left;else{if(f=o(t-1,"right"),"rtl"==a){var m=g;g=f,f=m}h=g.left,p=f.right}null==n&&0==e&&(h=u),f.top-g.top>3&&(r(h,g.top,null,g.bottom),h=u,g.bottom<f.top&&r(h,g.bottom,null,f.top)),null==i&&t==d&&(p=c),(!s||g.top<s.top||g.top==s.top&&g.left<s.left)&&(s=g),(!l||f.bottom>l.bottom||f.bottom==l.bottom&&f.right>l.right)&&(l=f),u+1>h&&(h=u),r(h,f.top,p-h,f.bottom)}),{start:s,end:l}}var o=e.display,a=e.doc,s=document.createDocumentFragment(),l=Tt(e.display),u=l.left,c=o.lineSpace.offsetWidth-l.right,f=t.from(),d=t.to();if(f.line==d.line)i(f.line,f.ch,d.ch);else{var h=bi(a,f.line),p=bi(a,d.line),g=zr(h)==zr(p),m=i(f.line,f.ch,g?h.text.length+1:null).end,v=i(d.line,g?0:null,d.ch).start;g&&(m.top<v.top-2?(r(m.right,m.top,null,m.bottom),r(u,v.top,v.left,v.bottom)):r(m.right,m.top,v.left-m.right,m.bottom)),m.bottom<v.top&&r(u,m.bottom,null,v.top)}n.appendChild(s)}function vt(e){if(e.state.focused){var t=e.display;clearInterval(t.blinker);var n=!0;t.cursorDiv.style.visibility="",e.options.cursorBlinkRate>0&&(t.blinker=setInterval(function(){t.cursorDiv.style.visibility=(n=!n)?"":"hidden"},e.options.cursorBlinkRate))}}function yt(e,t){e.doc.mode.startState&&e.doc.frontier<e.display.viewTo&&e.state.highlight.set(t,oo(bt,e))}function bt(e){var t=e.doc;if(t.frontier<t.first&&(t.frontier=t.first),!(t.frontier>=e.display.viewTo)){var n=+new Date+e.options.workTime,r=Na(t.mode,wt(e,t.frontier));Yt(e,function(){t.iter(t.frontier,Math.min(t.first+t.size,e.display.viewTo+500),function(i){if(t.frontier>=e.display.viewFrom){var o=i.styles,a=ni(e,i,r,!0);i.styles=a.styles,a.classes?i.styleClasses=a.classes:i.styleClasses&&(i.styleClasses=null);for(var s=!o||o.length!=i.styles.length,l=0;!s&&l<o.length;++l)s=o[l]!=i.styles[l];s&&rn(e,t.frontier,"text"),i.stateAfter=Na(t.mode,r)}else ii(e,i.text,r),i.stateAfter=t.frontier%5==0?Na(t.mode,r):null;return++t.frontier,+new Date>n?(yt(e,e.options.workDelay),!0):void 0})})}}function xt(e,t,n){for(var r,i,o=e.doc,a=n?-1:t-(e.doc.mode.innerMode?1e3:100),s=t;s>a;--s){if(s<=o.first)return o.first;var l=bi(o,s-1);if(l.stateAfter&&(!n||s<=o.frontier))return s;var u=as(l.text,null,e.options.tabSize);(null==i||r>u)&&(i=s-1,r=u)}return i}function wt(e,t,n){var r=e.doc,i=e.display;if(!r.mode.startState)return!0;var o=xt(e,t,n),a=o>r.first&&bi(r,o-1).stateAfter;return a=a?Na(r.mode,a):Aa(r.mode),r.iter(o,t,function(n){ii(e,n.text,a);var s=o==t-1||o%5==0||o>=i.viewFrom&&o<i.viewTo;n.stateAfter=s?Na(r.mode,a):null,++o}),n&&(r.frontier=o),a}function Ct(e){return e.lineSpace.offsetTop}function St(e){return e.mover.offsetHeight-e.lineSpace.offsetHeight}function Tt(e){if(e.cachedPaddingH)return e.cachedPaddingH;var t=fo(e.measure,uo("pre","x")),n=window.getComputedStyle?window.getComputedStyle(t):t.currentStyle,r={left:parseInt(n.paddingLeft),right:parseInt(n.paddingRight)};return isNaN(r.left)||isNaN(r.right)||(e.cachedPaddingH=r),r}function Dt(e,t,n){var r=e.options.lineWrapping,i=r&&e.display.scroller.clientWidth;if(!t.measure.heights||r&&t.measure.width!=i){var o=t.measure.heights=[];if(r){t.measure.width=i;for(var a=t.text.firstChild.getClientRects(),s=0;s<a.length-1;s++){var l=a[s],u=a[s+1];Math.abs(l.bottom-u.bottom)>2&&o.push((l.bottom+u.top)/2-n.top)}}o.push(n.bottom-n.top)}}function kt(e,t,n){if(e.line==t)return{map:e.measure.map,cache:e.measure.cache};for(var r=0;r<e.rest.length;r++)if(e.rest[r]==t)return{map:e.measure.maps[r],cache:e.measure.caches[r]};for(var r=0;r<e.rest.length;r++)if(Si(e.rest[r])>n)return{map:e.measure.maps[r],cache:e.measure.caches[r],before:!0}}function Lt(e,t){t=zr(t);var n=Si(t),r=e.display.externalMeasured=new en(e.doc,t,n);r.lineN=n;var i=r.built=ai(e,r);return r.text=i.pre,fo(e.display.lineMeasure,i.pre),r}function Nt(e,t,n,r){return Mt(e,_t(e,t),n,r)}function At(e,t){if(t>=e.display.viewFrom&&t<e.display.viewTo)return e.display.view[an(e,t)];var n=e.display.externalMeasured;return n&&t>=n.lineN&&t<n.lineN+n.size?n:void 0}function _t(e,t){var n=Si(t),r=At(e,n);r&&!r.text?r=null:r&&r.changes&&M(e,r,n,A(e)),r||(r=Lt(e,t));var i=kt(r,t,n);return{line:t,view:r,rect:null,map:i.map,cache:i.cache,before:i.before,hasHeights:!1}}function Mt(e,t,n,r){t.before&&(n=-1);var i,o=n+(r||"");return t.cache.hasOwnProperty(o)?i=t.cache[o]:(t.rect||(t.rect=t.view.text.getBoundingClientRect()),t.hasHeights||(Dt(e,t.view,t.rect),t.hasHeights=!0),i=Et(e,t,n,r),i.bogus||(t.cache[o]=i)),{left:i.left,right:i.right,top:i.top,bottom:i.bottom}}function Et(e,t,n,r){for(var i,o,a,s,l=t.map,u=0;u<l.length;u+=3){var c=l[u],f=l[u+1];if(c>n?(o=0,a=1,s="left"):f>n?(o=n-c,a=o+1):(u==l.length-3||n==f&&l[u+3]>n)&&(a=f-c,o=a-1,n>=f&&(s="right")),null!=o){if(i=l[u+2],c==f&&r==(i.insertLeft?"left":"right")&&(s=r),"left"==r&&0==o)for(;u&&l[u-2]==l[u-3]&&l[u-1].insertLeft;)i=l[(u-=3)+2],s="left";if("right"==r&&o==f-c)for(;u<l.length-3&&l[u+3]==l[u+4]&&!l[u+5].insertLeft;)i=l[(u+=3)+2],s="right";break}}var d;if(3==i.nodeType){for(;o&&lo(t.line.text.charAt(c+o));)--o;for(;f>c+a&&lo(t.line.text.charAt(c+a));)++a;if(Wo&&0==o&&a==f-c)d=i.parentNode.getBoundingClientRect();else if(qo&&e.options.lineWrapping){var h=us(i,o,a).getClientRects();d=h.length?h["right"==r?h.length-1:0]:da}else d=us(i,o,a).getBoundingClientRect()||da}else{o>0&&(s=r="right");var h;d=e.options.lineWrapping&&(h=i.getClientRects()).length>1?h["right"==r?h.length-1:0]:i.getBoundingClientRect()}if(Wo&&!o&&(!d||!d.left&&!d.right)){var p=i.parentNode.getClientRects()[0];d=p?{left:p.left,right:p.left+$t(e.display),top:p.top,bottom:p.bottom}:da}for(var g,m=(d.bottom+d.top)/2-t.rect.top,v=t.view.measure.heights,u=0;u<v.length-1&&!(m<v[u]);u++);g=u?v[u-1]:0,m=v[u];var y={left:("right"==s?d.right:d.left)-t.rect.left,right:("left"==s?d.left:d.right)-t.rect.left,top:g,bottom:m};return d.left||d.right||(y.bogus=!0),y}function Ht(e){if(e.measure&&(e.measure.cache={},e.measure.heights=null,e.rest))for(var t=0;t<e.rest.length;t++)e.measure.caches[t]={}}function jt(e){e.display.externalMeasure=null,co(e.display.lineMeasure);for(var t=0;t<e.display.view.length;t++)Ht(e.display.view[t])}function It(e){jt(e),e.display.cachedCharWidth=e.display.cachedTextHeight=e.display.cachedPaddingH=null,e.options.lineWrapping||(e.display.maxLineChanged=!0),e.display.lineNumChars=null}function Ot(){return window.pageXOffset||(document.documentElement||document.body).scrollLeft}function Ft(){return window.pageYOffset||(document.documentElement||document.body).scrollTop}function Pt(e,t,n,r){if(t.widgets)for(var i=0;i<t.widgets.length;++i)if(t.widgets[i].above){var o=Gr(t.widgets[i]);n.top+=o,n.bottom+=o}if("line"==r)return n;r||(r="local");var a=Di(t);if("local"==r?a+=Ct(e.display):a-=e.display.viewOffset,"page"==r||"window"==r){var s=e.display.lineSpace.getBoundingClientRect();a+=s.top+("window"==r?0:Ft());var l=s.left+("window"==r?0:Ot());n.left+=l,n.right+=l}return n.top+=a,n.bottom+=a,n}function Rt(e,t,n){if("div"==n)return t;var r=t.left,i=t.top;if("page"==n)r-=Ot(),i-=Ft();else if("local"==n||!n){var o=e.display.sizer.getBoundingClientRect();r+=o.left,i+=o.top}var a=e.display.lineSpace.getBoundingClientRect();return{left:r-a.left,top:i-a.top}}function Wt(e,t,n,r,i){return r||(r=bi(e.doc,t.line)),Pt(e,r,Nt(e,r,t.ch,i),n)}function zt(e,t,n,r,i){function o(t,o){var a=Mt(e,i,t,o?"right":"left");return o?a.left=a.right:a.right=a.left,Pt(e,r,a,n)}function a(e,t){var n=s[t],r=n.level%2;return e==ko(n)&&t&&n.level<s[t-1].level?(n=s[--t],e=Lo(n)-(n.level%2?0:1),r=!0):e==Lo(n)&&t<s.length-1&&n.level<s[t+1].level&&(n=s[++t],e=ko(n)-n.level%2,r=!1),r&&e==n.to&&e>n.from?o(e-1):o(e,r)}r=r||bi(e.doc,t.line),i||(i=_t(e,r));var s=ki(r),l=t.ch;if(!s)return o(l);var u=Ho(s,l),c=a(l,u);return null!=Cs&&(c.other=a(l,Cs)),c}function Bt(e,t){var n=0,t=K(e.doc,t);e.options.lineWrapping||(n=$t(e.display)*t.ch);var r=bi(e.doc,t.line),i=Di(r)+Ct(e.display);return{left:n,right:n,top:i,bottom:i+r.height}}function qt(e,t,n,r){var i=sa(e,t);return i.xRel=r,n&&(i.outside=!0),i}function Vt(e,t,n){var r=e.doc;if(n+=e.display.viewOffset,0>n)return qt(r.first,0,!0,-1);var i=Ti(r,n),o=r.first+r.size-1;if(i>o)return qt(r.first+r.size-1,bi(r,o).text.length,!0,1);0>t&&(t=0);for(var a=bi(r,i);;){var s=Ut(e,a,i,t,n),l=Rr(a),u=l&&l.find(0,!0);if(!l||!(s.ch>u.from.ch||s.ch==u.from.ch&&s.xRel>0))return s;i=Si(a=u.to.line)}}function Ut(e,t,n,r,i){function o(r){var i=zt(e,sa(n,r),"line",t,u);return s=!0,a>i.bottom?i.left-l:a<i.top?i.left+l:(s=!1,i.left)}var a=i-Di(t),s=!1,l=2*e.display.wrapper.clientWidth,u=_t(e,t),c=ki(t),f=t.text.length,d=No(t),h=Ao(t),p=o(d),g=s,m=o(h),v=s;if(r>m)return qt(n,h,v,1);for(;;){if(c?h==d||h==Io(t,d,1):1>=h-d){for(var y=p>r||m-r>=r-p?d:h,b=r-(y==d?p:m);lo(t.text.charAt(y));)++y;var x=qt(n,y,y==d?g:v,-1>b?-1:b>1?1:0);return x}var w=Math.ceil(f/2),C=d+w;if(c){C=d;for(var S=0;w>S;++S)C=Io(t,C,1)}var T=o(C);T>r?(h=C,m=T,(v=s)&&(m+=1e3),f=w):(d=C,p=T,g=s,f-=w)}}function Xt(e){if(null!=e.cachedTextHeight)return e.cachedTextHeight;if(null==ua){ua=uo("pre");for(var t=0;49>t;++t)ua.appendChild(document.createTextNode("x")),ua.appendChild(uo("br"));ua.appendChild(document.createTextNode("x"))}fo(e.measure,ua);var n=ua.offsetHeight/50;return n>3&&(e.cachedTextHeight=n),co(e.measure),n||1}function $t(e){if(null!=e.cachedCharWidth)return e.cachedCharWidth;var t=uo("span","xxxxxxxxxx"),n=uo("pre",[t]);fo(e.measure,n);var r=t.getBoundingClientRect(),i=(r.right-r.left)/10;return i>2&&(e.cachedCharWidth=i),i||10}function Gt(e){e.curOp={viewChanged:!1,startHeight:e.doc.height,forceUpdate:!1,updateInput:null,typing:!1,changeObjs:null,cursorActivityHandlers:null,selectionChanged:!1,updateMaxLine:!1,scrollLeft:null,scrollTop:null,scrollToPos:null,id:++ha},es++||($a=[])}function Jt(e){var t=e.curOp,n=e.doc,r=e.display;if(e.curOp=null,t.updateMaxLine&&h(e),t.viewChanged||t.forceUpdate||null!=t.scrollTop||t.scrollToPos&&(t.scrollToPos.from.line<r.viewFrom||t.scrollToPos.to.line>=r.viewTo)||r.maxLineChanged&&e.options.lineWrapping){var i=C(e,{top:t.scrollTop,ensure:t.scrollToPos},t.forceUpdate);e.display.scroller.offsetHeight&&(e.doc.scrollTop=e.display.scroller.scrollTop)}if(!i&&t.selectionChanged&&pt(e),i||t.startHeight==e.doc.height||m(e),null==r.wheelStartX||null==t.scrollTop&&null==t.scrollLeft&&!t.scrollToPos||(r.wheelStartX=r.wheelStartY=null),null!=t.scrollTop&&r.scroller.scrollTop!=t.scrollTop){var o=Math.max(0,Math.min(r.scroller.scrollHeight-r.scroller.clientHeight,t.scrollTop));r.scroller.scrollTop=r.scrollbarV.scrollTop=n.scrollTop=o}if(null!=t.scrollLeft&&r.scroller.scrollLeft!=t.scrollLeft){var a=Math.max(0,Math.min(r.scroller.scrollWidth-r.scroller.clientWidth,t.scrollLeft));r.scroller.scrollLeft=r.scrollbarH.scrollLeft=n.scrollLeft=a,y(e)}if(t.scrollToPos){var s=rr(e,K(e.doc,t.scrollToPos.from),K(e.doc,t.scrollToPos.to),t.scrollToPos.margin);t.scrollToPos.isCursor&&e.state.focused&&nr(e,s)}t.selectionChanged&&vt(e),e.state.focused&&t.updateInput&&hn(e,t.typing);var l=t.maybeHiddenMarkers,u=t.maybeUnhiddenMarkers;if(l)for(var c=0;c<l.length;++c)l[c].lines.length||Za(l[c],"hide");if(u)for(var c=0;c<u.length;++c)u[c].lines.length&&Za(u[c],"unhide");var f;if(--es||(f=$a,$a=null),t.changeObjs&&Za(e,"changes",e,t.changeObjs),f)for(var c=0;c<f.length;++c)f[c]();if(t.cursorActivityHandlers)for(var c=0;c<t.cursorActivityHandlers.length;c++)t.cursorActivityHandlers[c](e)}function Yt(e,t){if(e.curOp)return t();Gt(e);try{return t()}finally{Jt(e)}}function Kt(e,t){return function(){if(e.curOp)return t.apply(e,arguments);Gt(e);try{return t.apply(e,arguments)}finally{Jt(e)}}}function Qt(e){return function(){if(this.curOp)return e.apply(this,arguments);Gt(this);try{return e.apply(this,arguments)}finally{Jt(this)}}}function Zt(e){return function(){var t=this.cm;if(!t||t.curOp)return e.apply(this,arguments);Gt(t);try{return e.apply(this,arguments)}finally{Jt(t)}}}function en(e,t,n){this.line=t,this.rest=Br(t),this.size=this.rest?Si(eo(this.rest))-n+1:1,this.node=this.text=null,this.hidden=Ur(e,t)}function tn(e,t,n){for(var r,i=[],o=t;n>o;o=r){var a=new en(e.doc,bi(e.doc,o),o);r=o+a.size,i.push(a)}return i}function nn(e,t,n,r){null==t&&(t=e.doc.first),null==n&&(n=e.doc.first+e.doc.size),r||(r=0);var i=e.display;if(r&&n<i.viewTo&&(null==i.updateLineNumbers||i.updateLineNumbers>t)&&(i.updateLineNumbers=t),e.curOp.viewChanged=!0,t>=i.viewTo)aa&&qr(e.doc,t)<i.viewTo&&on(e);else if(n<=i.viewFrom)aa&&Vr(e.doc,n+r)>i.viewFrom?on(e):(i.viewFrom+=r,i.viewTo+=r);else if(t<=i.viewFrom&&n>=i.viewTo)on(e);else if(t<=i.viewFrom){var o=sn(e,n,n+r,1);o?(i.view=i.view.slice(o.index),i.viewFrom=o.lineN,i.viewTo+=r):on(e)}else if(n>=i.viewTo){var o=sn(e,t,t,-1);o?(i.view=i.view.slice(0,o.index),i.viewTo=o.lineN):on(e)}else{var a=sn(e,t,t,-1),s=sn(e,n,n+r,1);a&&s?(i.view=i.view.slice(0,a.index).concat(tn(e,a.lineN,s.lineN)).concat(i.view.slice(s.index)),i.viewTo+=r):on(e)}var l=i.externalMeasured;l&&(n<l.lineN?l.lineN+=r:t<l.lineN+l.size&&(i.externalMeasured=null))}function rn(e,t,n){e.curOp.viewChanged=!0;var r=e.display,i=e.display.externalMeasured;if(i&&t>=i.lineN&&t<i.lineN+i.size&&(r.externalMeasured=null),!(t<r.viewFrom||t>=r.viewTo)){var o=r.view[an(e,t)];if(null!=o.node){var a=o.changes||(o.changes=[]);-1==to(a,n)&&a.push(n)}}}function on(e){e.display.viewFrom=e.display.viewTo=e.doc.first,e.display.view=[],e.display.viewOffset=0}function an(e,t){if(t>=e.display.viewTo)return null;if(t-=e.display.viewFrom,0>t)return null;for(var n=e.display.view,r=0;r<n.length;r++)if(t-=n[r].size,0>t)return r}function sn(e,t,n,r){var i,o=an(e,t),a=e.display.view;if(!aa||n==e.doc.first+e.doc.size)return{index:o,lineN:n};for(var s=0,l=e.display.viewFrom;o>s;s++)l+=a[s].size;if(l!=t){if(r>0){if(o==a.length-1)return null;i=l+a[o].size-t,o++}else i=l-t;t+=i,n+=i}for(;qr(e.doc,n)!=n;){if(o==(0>r?0:a.length-1))return null;n+=r*a[o-(0>r?1:0)].size,o+=r}return{index:o,lineN:n}}function ln(e,t,n){var r=e.display,i=r.view;0==i.length||t>=r.viewTo||n<=r.viewFrom?(r.view=tn(e,t,n),r.viewFrom=t):(r.viewFrom>t?r.view=tn(e,t,r.viewFrom).concat(r.view):r.viewFrom<t&&(r.view=r.view.slice(an(e,t))),r.viewFrom=t,r.viewTo<n?r.view=r.view.concat(tn(e,r.viewTo,n)):r.viewTo>n&&(r.view=r.view.slice(0,an(e,n)))),r.viewTo=n}function un(e){for(var t=e.display.view,n=0,r=0;r<t.length;r++){var i=t[r];i.hidden||i.node&&!i.changes||++n}return n}function cn(e){e.display.pollingFast||e.display.poll.set(e.options.pollInterval,function(){dn(e),e.state.focused&&cn(e)})}function fn(e){function t(){var r=dn(e);r||n?(e.display.pollingFast=!1,cn(e)):(n=!0,e.display.poll.set(60,t))}var n=!1;e.display.pollingFast=!0,e.display.poll.set(20,t)}function dn(e){var t=e.display.input,n=e.display.prevInput,r=e.doc;if(!e.state.focused||bs(t)&&!n||mn(e)||e.options.disableInput)return!1;e.state.pasteIncoming&&e.state.fakedLastChar&&(t.value=t.value.substring(0,t.value.length-1),e.state.fakedLastChar=!1);var i=t.value;if(i==n&&!e.somethingSelected())return!1;if(qo&&!Wo&&e.display.inputHasSelection===i)return hn(e),!1;var o=!e.curOp;o&&Gt(e),e.display.shift=!1,8203!=i.charCodeAt(0)||r.sel!=e.display.selForContextMenu||n||(n="​");for(var a=0,s=Math.min(n.length,i.length);s>a&&n.charCodeAt(a)==i.charCodeAt(a);)++a;for(var l=i.slice(a),u=ys(l),c=e.state.pasteIncoming&&u.length>1&&r.sel.ranges.length==u.length,f=r.sel.ranges.length-1;f>=0;f--){var d=r.sel.ranges[f],h=d.from(),p=d.to();a<n.length?h=sa(h.line,h.ch-(n.length-a)):e.state.overwrite&&d.empty()&&!e.state.pasteIncoming&&(p=sa(p.line,Math.min(bi(r,p.line).text.length,p.ch+eo(u).length)));var g=e.curOp.updateInput,m={from:h,to:p,text:c?[u[f]]:u,origin:e.state.pasteIncoming?"paste":e.state.cutIncoming?"cut":"+input"};if(Jn(e.doc,m),Ui(e,"inputRead",e,m),l&&!e.state.pasteIncoming&&e.options.electricChars&&e.options.smartIndent&&d.head.ch<100&&(!f||r.sel.ranges[f-1].head.line!=d.head.line)){var v=e.getModeAt(d.head);if(v.electricChars){for(var y=0;y<v.electricChars.length;y++)if(l.indexOf(v.electricChars.charAt(y))>-1){ur(e,d.head.line,"smart");break}}else if(v.electricInput){var b=ba(m);v.electricInput.test(bi(r,b.line).text.slice(0,b.ch))&&ur(e,d.head.line,"smart")}}}return sr(e),e.curOp.updateInput=g,e.curOp.typing=!0,i.length>1e3||i.indexOf("\n")>-1?t.value=e.display.prevInput="":e.display.prevInput=i,o&&Jt(e),e.state.pasteIncoming=e.state.cutIncoming=!1,!0}function hn(e,t){var n,r,i=e.doc;if(e.somethingSelected()){e.display.prevInput="";var o=i.sel.primary();n=xs&&(o.to().line-o.from().line>100||(r=e.getSelection()).length>1e3);var a=n?"-":r||e.getSelection();e.display.input.value=a,e.state.focused&&ls(e.display.input),qo&&!Wo&&(e.display.inputHasSelection=a)}else t||(e.display.prevInput=e.display.input.value="",qo&&!Wo&&(e.display.inputHasSelection=null));e.display.inaccurateSelection=n}function pn(e){"nocursor"==e.options.readOnly||Zo&&po()==e.display.input||e.display.input.focus()}function gn(e){e.state.focused||(pn(e),Wn(e))}function mn(e){return e.options.readOnly||e.doc.cantEdit}function vn(e){function t(){e.state.focused&&setTimeout(oo(pn,e),0)}function n(t){$i(e,t)||Ya(t)}function r(t){if(e.somethingSelected())i.inaccurateSelection&&(i.prevInput="",i.inaccurateSelection=!1,i.input.value=e.getSelection(),ls(i.input));else{for(var n="",r=[],o=0;o<e.doc.sel.ranges.length;o++){var a=e.doc.sel.ranges[o].head.line,s={anchor:sa(a,0),head:sa(a+1,0)};r.push(s),n+=e.getRange(s.anchor,s.head)}"cut"==t.type?e.setSelections(r,null,rs):(i.prevInput="",i.input.value=n,ls(i.input))}"cut"==t.type&&(e.state.cutIncoming=!0)}var i=e.display;Ka(i.scroller,"mousedown",Kt(e,wn)),Po?Ka(i.scroller,"dblclick",Kt(e,function(t){if(!$i(e,t)){var n=xn(e,t);if(n&&!kn(e,t)&&!bn(e.display,t)){Ga(t);var r=pr(e,n);nt(e.doc,r.anchor,r.head)}}})):Ka(i.scroller,"dblclick",function(t){$i(e,t)||Ga(t)}),Ka(i.lineSpace,"selectstart",function(e){bn(i,e)||Ga(e)}),ia||Ka(i.scroller,"contextmenu",function(t){Bn(e,t)}),Ka(i.scroller,"scroll",function(){i.scroller.clientHeight&&(An(e,i.scroller.scrollTop),_n(e,i.scroller.scrollLeft,!0),Za(e,"scroll",e))}),Ka(i.scrollbarV,"scroll",function(){i.scroller.clientHeight&&An(e,i.scrollbarV.scrollTop)}),Ka(i.scrollbarH,"scroll",function(){i.scroller.clientHeight&&_n(e,i.scrollbarH.scrollLeft)}),Ka(i.scroller,"mousewheel",function(t){Mn(e,t)}),Ka(i.scroller,"DOMMouseScroll",function(t){Mn(e,t)}),Ka(i.scrollbarH,"mousedown",t),Ka(i.scrollbarV,"mousedown",t),Ka(i.wrapper,"scroll",function(){i.wrapper.scrollTop=i.wrapper.scrollLeft=0}),Ka(i.input,"keyup",Kt(e,Pn)),Ka(i.input,"input",function(){qo&&!Wo&&e.display.inputHasSelection&&(e.display.inputHasSelection=null),fn(e)}),Ka(i.input,"keydown",Kt(e,On)),Ka(i.input,"keypress",Kt(e,Rn)),Ka(i.input,"focus",oo(Wn,e)),Ka(i.input,"blur",oo(zn,e)),e.options.dragDrop&&(Ka(i.scroller,"dragstart",function(t){Nn(e,t)}),Ka(i.scroller,"dragenter",n),Ka(i.scroller,"dragover",n),Ka(i.scroller,"drop",Kt(e,Ln))),Ka(i.scroller,"paste",function(t){bn(i,t)||(e.state.pasteIncoming=!0,pn(e),fn(e))}),Ka(i.input,"paste",function(){if(Vo&&!e.state.fakedLastChar&&!(new Date-e.state.lastMiddleDown<200)){var t=i.input.selectionStart,n=i.input.selectionEnd;i.input.value+="$",i.input.selectionStart=t,i.input.selectionEnd=n,e.state.fakedLastChar=!0}e.state.pasteIncoming=!0,fn(e)}),Ka(i.input,"cut",r),Ka(i.input,"copy",r),Jo&&Ka(i.sizer,"mouseup",function(){po()==i.input&&i.input.blur(),pn(e)})}function yn(e){var t=e.display;t.cachedCharWidth=t.cachedTextHeight=t.cachedPaddingH=null,e.setSize()}function bn(e,t){for(var n=qi(t);n!=e.wrapper;n=n.parentNode)if(!n||n.ignoreEvents||n.parentNode==e.sizer&&n!=e.mover)return!0}function xn(e,t,n,r){var i=e.display;if(!n){var o=qi(t);if(o==i.scrollbarH||o==i.scrollbarV||o==i.scrollbarFiller||o==i.gutterFiller)return null}var a,s,l=i.lineSpace.getBoundingClientRect();try{a=t.clientX-l.left,s=t.clientY-l.top}catch(t){return null}var u,c=Vt(e,a,s);if(r&&1==c.xRel&&(u=bi(e.doc,c.line).text).length==c.ch){var f=as(u,u.length,e.options.tabSize)-u.length;c=sa(c.line,Math.max(0,Math.round((a-Tt(e.display).left)/$t(e.display))-f))}return c}function wn(e){if(!$i(this,e)){var t=this,n=t.display;if(n.shift=e.shiftKey,bn(n,e))return void(Vo||(n.scroller.draggable=!1,setTimeout(function(){n.scroller.draggable=!0},100)));if(!kn(t,e)){var r=xn(t,e);switch(window.focus(),Vi(e)){case 1:r?Cn(t,e,r):qi(e)==n.scroller&&Ga(e);break;case 2:Vo&&(t.state.lastMiddleDown=+new Date),r&&nt(t.doc,r),setTimeout(oo(pn,t),20),Ga(e);break;case 3:ia&&Bn(t,e)}}}}function Cn(e,t,n){setTimeout(oo(gn,e),0);var r,i=+new Date;fa&&fa.time>i-400&&0==la(fa.pos,n)?r="triple":ca&&ca.time>i-400&&0==la(ca.pos,n)?(r="double",fa={time:i,pos:n}):(r="single",ca={time:i,pos:n});var o=e.doc.sel,a=ea?t.metaKey:t.ctrlKey;e.options.dragDrop&&vs&&!mn(e)&&"single"==r&&o.contains(n)>-1&&o.somethingSelected()?Sn(e,t,n,a):Tn(e,t,n,r,a)}function Sn(e,t,n,r){var i=e.display,o=Kt(e,function(a){Vo&&(i.scroller.draggable=!1),e.state.draggingText=!1,Qa(document,"mouseup",o),Qa(i.scroller,"drop",o),Math.abs(t.clientX-a.clientX)+Math.abs(t.clientY-a.clientY)<10&&(Ga(a),r||nt(e.doc,n),pn(e),Po&&!Wo&&setTimeout(function(){document.body.focus(),pn(e)},20))});Vo&&(i.scroller.draggable=!0),e.state.draggingText=o,i.scroller.dragDrop&&i.scroller.dragDrop(),Ka(document,"mouseup",o),Ka(i.scroller,"drop",o)}function Tn(e,t,n,r,i){function o(t){if(0!=la(g,t))if(g=t,"rect"==r){for(var i=[],o=e.options.tabSize,a=as(bi(u,n.line).text,n.ch,o),s=as(bi(u,t.line).text,t.ch,o),l=Math.min(a,s),h=Math.max(a,s),p=Math.min(n.line,t.line),m=Math.min(e.lastLine(),Math.max(n.line,t.line));m>=p;p++){var v=bi(u,p).text,y=Qi(v,l,o); l==h?i.push(new $(sa(p,y),sa(p,y))):v.length>y&&i.push(new $(sa(p,y),sa(p,Qi(v,h,o))))}i.length||i.push(new $(n,n)),lt(u,G(d.ranges.slice(0,f).concat(i),f),{origin:"*mouse",scroll:!1}),e.scrollIntoView(t)}else{var b=c,x=b.anchor,w=t;if("single"!=r){if("double"==r)var C=pr(e,t);else var C=new $(sa(t.line,0),K(u,sa(t.line+1,0)));la(C.anchor,x)>0?(w=C.head,x=U(b.from(),C.anchor)):(w=C.anchor,x=V(b.to(),C.head))}var i=d.ranges.slice(0);i[f]=new $(K(u,x),w),lt(u,G(i,f),is)}}function a(t){var n=++y,i=xn(e,t,!0,"rect"==r);if(i)if(0!=la(i,g)){gn(e),o(i);var s=v(l,u);(i.line>=s.to||i.line<s.from)&&setTimeout(Kt(e,function(){y==n&&a(t)}),150)}else{var c=t.clientY<m.top?-20:t.clientY>m.bottom?20:0;c&&setTimeout(Kt(e,function(){y==n&&(l.scroller.scrollTop+=c,a(t))}),50)}}function s(t){y=1/0,Ga(t),pn(e),Qa(document,"mousemove",b),Qa(document,"mouseup",x),u.history.lastSelOrigin=null}var l=e.display,u=e.doc;Ga(t);var c,f,d=u.sel;if(i&&!t.shiftKey?(f=u.sel.contains(n),c=f>-1?u.sel.ranges[f]:new $(n,n)):c=u.sel.primary(),t.altKey)r="rect",i||(c=new $(n,n)),n=xn(e,t,!0,!0),f=-1;else if("double"==r){var h=pr(e,n);c=e.display.shift||u.extend?tt(u,c,h.anchor,h.head):h}else if("triple"==r){var p=new $(sa(n.line,0),K(u,sa(n.line+1,0)));c=e.display.shift||u.extend?tt(u,c,p.anchor,p.head):p}else c=tt(u,c,n);i?f>-1?it(u,f,c,is):(f=u.sel.ranges.length,lt(u,G(u.sel.ranges.concat([c]),f),{scroll:!1,origin:"*mouse"})):(f=0,lt(u,new X([c],0),is),d=u.sel);var g=n,m=l.wrapper.getBoundingClientRect(),y=0,b=Kt(e,function(e){(qo&&!zo?e.buttons:Vi(e))?a(e):s(e)}),x=Kt(e,s);Ka(document,"mousemove",b),Ka(document,"mouseup",x)}function Dn(e,t,n,r,i){try{var o=t.clientX,a=t.clientY}catch(t){return!1}if(o>=Math.floor(e.display.gutters.getBoundingClientRect().right))return!1;r&&Ga(t);var s=e.display,l=s.lineDiv.getBoundingClientRect();if(a>l.bottom||!Ji(e,n))return Bi(t);a-=l.top-s.viewOffset;for(var u=0;u<e.options.gutters.length;++u){var c=s.gutters.childNodes[u];if(c&&c.getBoundingClientRect().right>=o){var f=Ti(e.doc,a),d=e.options.gutters[u];return i(e,n,e,f,d,t),Bi(t)}}}function kn(e,t){return Dn(e,t,"gutterClick",!0,Ui)}function Ln(e){var t=this;if(!$i(t,e)&&!bn(t.display,e)){Ga(e),qo&&(pa=+new Date);var n=xn(t,e,!0),r=e.dataTransfer.files;if(n&&!mn(t))if(r&&r.length&&window.FileReader&&window.File)for(var i=r.length,o=Array(i),a=0,s=function(e,r){var s=new FileReader;s.onload=Kt(t,function(){if(o[r]=s.result,++a==i){n=K(t.doc,n);var e={from:n,to:n,text:ys(o.join("\n")),origin:"paste"};Jn(t.doc,e),st(t.doc,J(n,ba(e)))}}),s.readAsText(e)},l=0;i>l;++l)s(r[l],l);else{if(t.state.draggingText&&t.doc.sel.contains(n)>-1)return t.state.draggingText(e),void setTimeout(oo(pn,t),20);try{var o=e.dataTransfer.getData("Text");if(o){if(t.state.draggingText&&!(ea?e.metaKey:e.ctrlKey))var u=t.listSelections();if(ut(t.doc,J(n,n)),u)for(var l=0;l<u.length;++l)tr(t.doc,"",u[l].anchor,u[l].head,"drag");t.replaceSelection(o,"around","paste"),pn(t)}}catch(e){}}}}function Nn(e,t){if(qo&&(!e.state.draggingText||+new Date-pa<100))return void Ya(t);if(!$i(e,t)&&!bn(e.display,t)&&(t.dataTransfer.setData("Text",e.getSelection()),t.dataTransfer.setDragImage&&!Go)){var n=uo("img",null,null,"position: fixed; left: 0; top: 0;");n.src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==",$o&&(n.width=n.height=1,e.display.wrapper.appendChild(n),n._top=n.offsetTop),t.dataTransfer.setDragImage(n,0,0),$o&&n.parentNode.removeChild(n)}}function An(e,t){Math.abs(e.doc.scrollTop-t)<2||(e.doc.scrollTop=t,Fo||C(e,{top:t}),e.display.scroller.scrollTop!=t&&(e.display.scroller.scrollTop=t),e.display.scrollbarV.scrollTop!=t&&(e.display.scrollbarV.scrollTop=t),Fo&&C(e),yt(e,100))}function _n(e,t,n){(n?t==e.doc.scrollLeft:Math.abs(e.doc.scrollLeft-t)<2)||(t=Math.min(t,e.display.scroller.scrollWidth-e.display.scroller.clientWidth),e.doc.scrollLeft=t,y(e),e.display.scroller.scrollLeft!=t&&(e.display.scroller.scrollLeft=t),e.display.scrollbarH.scrollLeft!=t&&(e.display.scrollbarH.scrollLeft=t))}function Mn(e,t){var n=t.wheelDeltaX,r=t.wheelDeltaY;null==n&&t.detail&&t.axis==t.HORIZONTAL_AXIS&&(n=t.detail),null==r&&t.detail&&t.axis==t.VERTICAL_AXIS?r=t.detail:null==r&&(r=t.wheelDelta);var i=e.display,o=i.scroller;if(n&&o.scrollWidth>o.clientWidth||r&&o.scrollHeight>o.clientHeight){if(r&&ea&&Vo)e:for(var a=t.target,s=i.view;a!=o;a=a.parentNode)for(var l=0;l<s.length;l++)if(s[l].node==a){e.display.currentWheelTarget=a;break e}if(n&&!Fo&&!$o&&null!=ma)return r&&An(e,Math.max(0,Math.min(o.scrollTop+r*ma,o.scrollHeight-o.clientHeight))),_n(e,Math.max(0,Math.min(o.scrollLeft+n*ma,o.scrollWidth-o.clientWidth))),Ga(t),void(i.wheelStartX=null);if(r&&null!=ma){var u=r*ma,c=e.doc.scrollTop,f=c+i.wrapper.clientHeight;0>u?c=Math.max(0,c+u-50):f=Math.min(e.doc.height,f+u+50),C(e,{top:c,bottom:f})}20>ga&&(null==i.wheelStartX?(i.wheelStartX=o.scrollLeft,i.wheelStartY=o.scrollTop,i.wheelDX=n,i.wheelDY=r,setTimeout(function(){if(null!=i.wheelStartX){var e=o.scrollLeft-i.wheelStartX,t=o.scrollTop-i.wheelStartY,n=t&&i.wheelDY&&t/i.wheelDY||e&&i.wheelDX&&e/i.wheelDX;i.wheelStartX=i.wheelStartY=null,n&&(ma=(ma*ga+n)/(ga+1),++ga)}},200)):(i.wheelDX+=n,i.wheelDY+=r))}}function En(e,t,n){if("string"==typeof t&&(t=_a[t],!t))return!1;e.display.pollingFast&&dn(e)&&(e.display.pollingFast=!1);var r=e.display.shift,i=!1;try{mn(e)&&(e.state.suppressEdits=!0),n&&(e.display.shift=!1),i=t(e)!=ns}finally{e.display.shift=r,e.state.suppressEdits=!1}return i}function Hn(e){var t=e.state.keyMaps.slice(0);return e.options.extraKeys&&t.push(e.options.extraKeys),t.push(e.options.keyMap),t}function jn(e,t){var n=mr(e.options.keyMap),r=n.auto;clearTimeout(va),r&&!Ha(t)&&(va=setTimeout(function(){mr(e.options.keyMap)==n&&(e.options.keyMap=r.call?r.call(null,e):r,s(e))},50));var i=ja(t,!0),o=!1;if(!i)return!1;var a=Hn(e);return o=t.shiftKey?Ea("Shift-"+i,a,function(t){return En(e,t,!0)})||Ea(i,a,function(t){return("string"==typeof t?/^go[A-Z]/.test(t):t.motion)?En(e,t):void 0}):Ea(i,a,function(t){return En(e,t)}),o&&(Ga(t),vt(e),Ui(e,"keyHandled",e,i,t)),o}function In(e,t,n){var r=Ea("'"+n+"'",Hn(e),function(t){return En(e,t,!0)});return r&&(Ga(t),vt(e),Ui(e,"keyHandled",e,"'"+n+"'",t)),r}function On(e){var t=this;if(gn(t),!$i(t,e)){Po&&27==e.keyCode&&(e.returnValue=!1);var n=e.keyCode;t.display.shift=16==n||e.shiftKey;var r=jn(t,e);$o&&(ya=r?n:null,!r&&88==n&&!xs&&(ea?e.metaKey:e.ctrlKey)&&t.replaceSelection("",null,"cut")),18!=n||/\bCodeMirror-crosshair\b/.test(t.display.lineDiv.className)||Fn(t)}}function Fn(e){function t(e){18!=e.keyCode&&e.altKey||(mo(n,"CodeMirror-crosshair"),Qa(document,"keyup",t),Qa(document,"mouseover",t))}var n=e.display.lineDiv;vo(n,"CodeMirror-crosshair"),Ka(document,"keyup",t),Ka(document,"mouseover",t)}function Pn(e){$i(this,e)||16==e.keyCode&&(this.doc.sel.shift=!1)}function Rn(e){var t=this;if(!$i(t,e)){var n=e.keyCode,r=e.charCode;if($o&&n==ya)return ya=null,void Ga(e);if(!($o&&(!e.which||e.which<10)||Jo)||!jn(t,e)){var i=String.fromCharCode(null==r?n:r);In(t,e,i)||(qo&&!Wo&&(t.display.inputHasSelection=null),fn(t))}}}function Wn(e){"nocursor"!=e.options.readOnly&&(e.state.focused||(Za(e,"focus",e),e.state.focused=!0,vo(e.display.wrapper,"CodeMirror-focused"),e.curOp||e.display.selForContextMenu==e.doc.sel||(hn(e),Vo&&setTimeout(oo(hn,e,!0),0))),cn(e),vt(e))}function zn(e){e.state.focused&&(Za(e,"blur",e),e.state.focused=!1,mo(e.display.wrapper,"CodeMirror-focused")),clearInterval(e.display.blinker),setTimeout(function(){e.state.focused||(e.display.shift=!1)},150)}function Bn(e,t){function n(){if(null!=i.input.selectionStart){var t=e.somethingSelected(),n=i.input.value="​"+(t?i.input.value:"");i.prevInput=t?"":"​",i.input.selectionStart=1,i.input.selectionEnd=n.length,i.selForContextMenu=e.doc.sel}}function r(){if(i.inputDiv.style.position="relative",i.input.style.cssText=l,Wo&&(i.scrollbarV.scrollTop=i.scroller.scrollTop=a),cn(e),null!=i.input.selectionStart){(!qo||Wo)&&n();var t=0,r=function(){i.selForContextMenu==e.doc.sel&&0==i.input.selectionStart?Kt(e,_a.selectAll)(e):t++<10?i.detectingSelectAll=setTimeout(r,500):hn(e)};i.detectingSelectAll=setTimeout(r,200)}}if(!$i(e,t,"contextmenu")){var i=e.display;if(!bn(i,t)&&!qn(e,t)){var o=xn(e,t),a=i.scroller.scrollTop;if(o&&!$o){var s=e.options.resetSelectionOnContextMenu;s&&-1==e.doc.sel.contains(o)&&Kt(e,lt)(e.doc,J(o),rs);var l=i.input.style.cssText;if(i.inputDiv.style.position="absolute",i.input.style.cssText="position: fixed; width: 30px; height: 30px; top: "+(t.clientY-5)+"px; left: "+(t.clientX-5)+"px; z-index: 1000; background: "+(qo?"rgba(255, 255, 255, .05)":"transparent")+"; outline: none; border-width: 0; outline: none; overflow: hidden; opacity: .05; filter: alpha(opacity=5);",pn(e),hn(e),e.somethingSelected()||(i.input.value=i.prevInput=" "),i.selForContextMenu=e.doc.sel,clearTimeout(i.detectingSelectAll),qo&&!Wo&&n(),ia){Ya(t);var u=function(){Qa(window,"mouseup",u),setTimeout(r,20)};Ka(window,"mouseup",u)}else setTimeout(r,50)}}}}function qn(e,t){return Ji(e,"gutterContextMenu")?Dn(e,t,"gutterContextMenu",!1,Za):!1}function Vn(e,t){if(la(e,t.from)<0)return e;if(la(e,t.to)<=0)return ba(t);var n=e.line+t.text.length-(t.to.line-t.from.line)-1,r=e.ch;return e.line==t.to.line&&(r+=ba(t).ch-t.to.ch),sa(n,r)}function Un(e,t){for(var n=[],r=0;r<e.sel.ranges.length;r++){var i=e.sel.ranges[r];n.push(new $(Vn(i.anchor,t),Vn(i.head,t)))}return G(n,e.sel.primIndex)}function Xn(e,t,n){return e.line==t.line?sa(n.line,e.ch-t.ch+n.ch):sa(n.line+(e.line-t.line),e.ch)}function $n(e,t,n){for(var r=[],i=sa(e.first,0),o=i,a=0;a<t.length;a++){var s=t[a],l=Xn(s.from,i,o),u=Xn(ba(s),i,o);if(i=s.to,o=u,"around"==n){var c=e.sel.ranges[a],f=la(c.head,c.anchor)<0;r[a]=new $(f?u:l,f?l:u)}else r[a]=new $(l,l)}return new X(r,e.sel.primIndex)}function Gn(e,t,n){var r={canceled:!1,from:t.from,to:t.to,text:t.text,origin:t.origin,cancel:function(){this.canceled=!0}};return n&&(r.update=function(t,n,r,i){t&&(this.from=K(e,t)),n&&(this.to=K(e,n)),r&&(this.text=r),void 0!==i&&(this.origin=i)}),Za(e,"beforeChange",e,r),e.cm&&Za(e.cm,"beforeChange",e.cm,r),r.canceled?null:{from:r.from,to:r.to,text:r.text,origin:r.origin}}function Jn(e,t,n){if(e.cm){if(!e.cm.curOp)return Kt(e.cm,Jn)(e,t,n);if(e.cm.state.suppressEdits)return}if(!(Ji(e,"beforeChange")||e.cm&&Ji(e.cm,"beforeChange"))||(t=Gn(e,t,!0))){var r=oa&&!n&&Mr(e,t.from,t.to);if(r)for(var i=r.length-1;i>=0;--i)Yn(e,{from:r[i].from,to:r[i].to,text:i?[""]:t.text});else Yn(e,t)}}function Yn(e,t){if(1!=t.text.length||""!=t.text[0]||0!=la(t.from,t.to)){var n=Un(e,t);Mi(e,t,n,e.cm?e.cm.curOp.id:0/0),Zn(e,t,n,Nr(e,t));var r=[];vi(e,function(e,n){n||-1!=to(r,e.history)||(zi(e.history,t),r.push(e.history)),Zn(e,t,null,Nr(e,t))})}}function Kn(e,t,n){if(!e.cm||!e.cm.state.suppressEdits){for(var r,i=e.history,o=e.sel,a="undo"==t?i.done:i.undone,s="undo"==t?i.undone:i.done,l=0;l<a.length&&(r=a[l],n?!r.ranges||r.equals(e.sel):r.ranges);l++);if(l!=a.length){for(i.lastOrigin=i.lastSelOrigin=null;r=a.pop(),r.ranges;){if(ji(r,s),n&&!r.equals(e.sel))return void lt(e,r,{clearRedo:!1});o=r}var u=[];ji(o,s),s.push({changes:u,generation:i.generation}),i.generation=r.generation||++i.maxGeneration;for(var c=Ji(e,"beforeChange")||e.cm&&Ji(e.cm,"beforeChange"),l=r.changes.length-1;l>=0;--l){var f=r.changes[l];if(f.origin=t,c&&!Gn(e,f,!1))return void(a.length=0);u.push(Ni(e,f));var d=l?Un(e,f,null):eo(a);Zn(e,f,d,_r(e,f)),!l&&e.cm&&e.cm.scrollIntoView(f);var h=[];vi(e,function(e,t){t||-1!=to(h,e.history)||(zi(e.history,f),h.push(e.history)),Zn(e,f,null,_r(e,f))})}}}}function Qn(e,t){if(0!=t&&(e.first+=t,e.sel=new X(no(e.sel.ranges,function(e){return new $(sa(e.anchor.line+t,e.anchor.ch),sa(e.head.line+t,e.head.ch))}),e.sel.primIndex),e.cm)){nn(e.cm,e.first,e.first-t,t);for(var n=e.cm.display,r=n.viewFrom;r<n.viewTo;r++)rn(e.cm,r,"gutter")}}function Zn(e,t,n,r){if(e.cm&&!e.cm.curOp)return Kt(e.cm,Zn)(e,t,n,r);if(t.to.line<e.first)return void Qn(e,t.text.length-1-(t.to.line-t.from.line));if(!(t.from.line>e.lastLine())){if(t.from.line<e.first){var i=t.text.length-1-(e.first-t.from.line);Qn(e,i),t={from:sa(e.first,0),to:sa(t.to.line+i,t.to.ch),text:[eo(t.text)],origin:t.origin}}var o=e.lastLine();t.to.line>o&&(t={from:t.from,to:sa(o,bi(e,o).text.length),text:[t.text[0]],origin:t.origin}),t.removed=xi(e,t.from,t.to),n||(n=Un(e,t,null)),e.cm?er(e.cm,t,r):pi(e,t,r),ut(e,n,rs)}}function er(e,t,n){var r=e.doc,i=e.display,a=t.from,s=t.to,l=!1,u=a.line;e.options.lineWrapping||(u=Si(zr(bi(r,a.line))),r.iter(u,s.line+1,function(e){return e==i.maxLine?(l=!0,!0):void 0})),r.sel.contains(t.from,t.to)>-1&&Gi(e),pi(r,t,n,o(e)),e.options.lineWrapping||(r.iter(u,a.line+t.text.length,function(e){var t=d(e);t>i.maxLineLength&&(i.maxLine=e,i.maxLineLength=t,i.maxLineChanged=!0,l=!1)}),l&&(e.curOp.updateMaxLine=!0)),r.frontier=Math.min(r.frontier,a.line),yt(e,400);var c=t.text.length-(s.line-a.line)-1;a.line!=s.line||1!=t.text.length||hi(e.doc,t)?nn(e,a.line,s.line+1,c):rn(e,a.line,"text");var f=Ji(e,"changes"),h=Ji(e,"change");if(h||f){var p={from:a,to:s,text:t.text,removed:t.removed,origin:t.origin};h&&Ui(e,"change",e,p),f&&(e.curOp.changeObjs||(e.curOp.changeObjs=[])).push(p)}e.display.selForContextMenu=null}function tr(e,t,n,r,i){if(r||(r=n),la(r,n)<0){var o=r;r=n,n=o}"string"==typeof t&&(t=ys(t)),Jn(e,{from:n,to:r,text:t,origin:i})}function nr(e,t){var n=e.display,r=n.sizer.getBoundingClientRect(),i=null;if(t.top+r.top<0?i=!0:t.bottom+r.top>(window.innerHeight||document.documentElement.clientHeight)&&(i=!1),null!=i&&!Ko){var o=uo("div","​",null,"position: absolute; top: "+(t.top-n.viewOffset-Ct(e.display))+"px; height: "+(t.bottom-t.top+ts)+"px; left: "+t.left+"px; width: 2px;");e.display.lineSpace.appendChild(o),o.scrollIntoView(i),e.display.lineSpace.removeChild(o)}}function rr(e,t,n,r){for(null==r&&(r=0);;){var i=!1,o=zt(e,t),a=n&&n!=t?zt(e,n):o,s=or(e,Math.min(o.left,a.left),Math.min(o.top,a.top)-r,Math.max(o.left,a.left),Math.max(o.bottom,a.bottom)+r),l=e.doc.scrollTop,u=e.doc.scrollLeft;if(null!=s.scrollTop&&(An(e,s.scrollTop),Math.abs(e.doc.scrollTop-l)>1&&(i=!0)),null!=s.scrollLeft&&(_n(e,s.scrollLeft),Math.abs(e.doc.scrollLeft-u)>1&&(i=!0)),!i)return o}}function ir(e,t,n,r,i){var o=or(e,t,n,r,i);null!=o.scrollTop&&An(e,o.scrollTop),null!=o.scrollLeft&&_n(e,o.scrollLeft)}function or(e,t,n,r,i){var o=e.display,a=Xt(e.display);0>n&&(n=0);var s=e.curOp&&null!=e.curOp.scrollTop?e.curOp.scrollTop:o.scroller.scrollTop,l=o.scroller.clientHeight-ts,u={},c=e.doc.height+St(o),f=a>n,d=i>c-a;if(s>n)u.scrollTop=f?0:n;else if(i>s+l){var h=Math.min(n,(d?c:i)-l);h!=s&&(u.scrollTop=h)}var p=e.curOp&&null!=e.curOp.scrollLeft?e.curOp.scrollLeft:o.scroller.scrollLeft,g=o.scroller.clientWidth-ts;t+=o.gutters.offsetWidth,r+=o.gutters.offsetWidth;var m=o.gutters.offsetWidth,v=m+10>t;return p+m>t||v?(v&&(t=0),u.scrollLeft=Math.max(0,t-10-m)):r>g+p-3&&(u.scrollLeft=r+10-g),u}function ar(e,t,n){(null!=t||null!=n)&&lr(e),null!=t&&(e.curOp.scrollLeft=(null==e.curOp.scrollLeft?e.doc.scrollLeft:e.curOp.scrollLeft)+t),null!=n&&(e.curOp.scrollTop=(null==e.curOp.scrollTop?e.doc.scrollTop:e.curOp.scrollTop)+n)}function sr(e){lr(e);var t=e.getCursor(),n=t,r=t;e.options.lineWrapping||(n=t.ch?sa(t.line,t.ch-1):t,r=sa(t.line,t.ch+1)),e.curOp.scrollToPos={from:n,to:r,margin:e.options.cursorScrollMargin,isCursor:!0}}function lr(e){var t=e.curOp.scrollToPos;if(t){e.curOp.scrollToPos=null;var n=Bt(e,t.from),r=Bt(e,t.to),i=or(e,Math.min(n.left,r.left),Math.min(n.top,r.top)-t.margin,Math.max(n.right,r.right),Math.max(n.bottom,r.bottom)+t.margin);e.scrollTo(i.scrollLeft,i.scrollTop)}}function ur(e,t,n,r){var i,o=e.doc;null==n&&(n="add"),"smart"==n&&(e.doc.mode.indent?i=wt(e,t):n="prev");var a=e.options.tabSize,s=bi(o,t),l=as(s.text,null,a);s.stateAfter&&(s.stateAfter=null);var u,c=s.text.match(/^\s*/)[0];if(r||/\S/.test(s.text)){if("smart"==n&&(u=e.doc.mode.indent(i,s.text.slice(c.length),s.text),u==ns)){if(!r)return;n="prev"}}else u=0,n="not";"prev"==n?u=t>o.first?as(bi(o,t-1).text,null,a):0:"add"==n?u=l+e.options.indentUnit:"subtract"==n?u=l-e.options.indentUnit:"number"==typeof n&&(u=l+n),u=Math.max(0,u);var f="",d=0;if(e.options.indentWithTabs)for(var h=Math.floor(u/a);h;--h)d+=a,f+=" ";if(u>d&&(f+=Zi(u-d)),f!=c)tr(e.doc,f,sa(t,0),sa(t,c.length),"+input");else for(var h=0;h<o.sel.ranges.length;h++){var p=o.sel.ranges[h];if(p.head.line==t&&p.head.ch<c.length){var d=sa(t,c.length);it(o,h,new $(d,d));break}}s.stateAfter=null}function cr(e,t,n,r){var i=t,o=t,a=e.doc;return"number"==typeof t?o=bi(a,Y(a,t)):i=Si(t),null==i?null:(r(o,i)&&rn(e,i,n),o)}function fr(e,t){for(var n=e.doc.sel.ranges,r=[],i=0;i<n.length;i++){for(var o=t(n[i]);r.length&&la(o.from,eo(r).to)<=0;){var a=r.pop();if(la(a.from,o.from)<0){o.from=a.from;break}}r.push(o)}Yt(e,function(){for(var t=r.length-1;t>=0;t--)tr(e.doc,"",r[t].from,r[t].to,"+delete");sr(e)})}function dr(e,t,n,r,i){function o(){var t=s+n;return t<e.first||t>=e.first+e.size?f=!1:(s=t,c=bi(e,t))}function a(e){var t=(i?Io:Oo)(c,l,n,!0);if(null==t){if(e||!o())return f=!1;l=i?(0>n?Ao:No)(c):0>n?c.text.length:0}else l=t;return!0}var s=t.line,l=t.ch,u=n,c=bi(e,s),f=!0;if("char"==r)a();else if("column"==r)a(!0);else if("word"==r||"group"==r)for(var d=null,h="group"==r,p=e.cm&&e.cm.getHelper(t,"wordChars"),g=!0;!(0>n)||a(!g);g=!1){var m=c.text.charAt(l)||"\n",v=ao(m,p)?"w":h&&"\n"==m?"n":!h||/\s/.test(m)?null:"p";if(!h||g||v||(v="s"),d&&d!=v){0>n&&(n=1,a());break}if(v&&(d=v),n>0&&!a(!g))break}var y=ht(e,sa(s,l),u,!0);return f||(y.hitSide=!0),y}function hr(e,t,n,r){var i,o=e.doc,a=t.left;if("page"==r){var s=Math.min(e.display.wrapper.clientHeight,window.innerHeight||document.documentElement.clientHeight);i=t.top+n*(s-(0>n?1.5:.5)*Xt(e.display))}else"line"==r&&(i=n>0?t.bottom+3:t.top-3);for(;;){var l=Vt(e,a,i);if(!l.outside)break;if(0>n?0>=i:i>=o.height){l.hitSide=!0;break}i+=5*n}return l}function pr(e,t){var n=e.doc,r=bi(n,t.line).text,i=t.ch,o=t.ch;if(r){var a=e.getHelper(t,"wordChars");(t.xRel<0||o==r.length)&&i?--i:++o;for(var s=r.charAt(i),l=ao(s,a)?function(e){return ao(e,a)}:/\s/.test(s)?function(e){return/\s/.test(e)}:function(e){return!/\s/.test(e)&&!ao(e)};i>0&&l(r.charAt(i-1));)--i;for(;o<r.length&&l(r.charAt(o));)++o}return new $(sa(t.line,i),sa(t.line,o))}function gr(t,n,r,i){e.defaults[t]=n,r&&(wa[t]=i?function(e,t,n){n!=Ca&&r(e,t,n)}:r)}function mr(e){return"string"==typeof e?Ma[e]:e}function vr(e,t,n,r,i){if(r&&r.shared)return yr(e,t,n,r,i);if(e.cm&&!e.cm.curOp)return Kt(e.cm,vr)(e,t,n,r,i);var o=new Oa(e,i),a=la(t,n);if(r&&io(r,o,!1),a>0||0==a&&o.clearWhenEmpty!==!1)return o;if(o.replacedWith&&(o.collapsed=!0,o.widgetNode=uo("span",[o.replacedWith],"CodeMirror-widget"),r.handleMouseEvents||(o.widgetNode.ignoreEvents=!0),r.insertLeft&&(o.widgetNode.insertLeft=!0)),o.collapsed){if(Wr(e,t.line,t,n,o)||t.line!=n.line&&Wr(e,n.line,t,n,o))throw new Error("Inserting collapsed marker partially overlapping an existing one");aa=!0}o.addToHistory&&Mi(e,{from:t,to:n,origin:"markText"},e.sel,0/0);var s,l=t.line,u=e.cm;if(e.iter(l,n.line+1,function(e){u&&o.collapsed&&!u.options.lineWrapping&&zr(e)==u.display.maxLine&&(s=!0),o.collapsed&&l!=t.line&&Ci(e,0),Dr(e,new Cr(o,l==t.line?t.ch:null,l==n.line?n.ch:null)),++l}),o.collapsed&&e.iter(t.line,n.line+1,function(t){Ur(e,t)&&Ci(t,0)}),o.clearOnEnter&&Ka(o,"beforeCursorEnter",function(){o.clear()}),o.readOnly&&(oa=!0,(e.history.done.length||e.history.undone.length)&&e.clearHistory()),o.collapsed&&(o.id=++Fa,o.atomic=!0),u){if(s&&(u.curOp.updateMaxLine=!0),o.collapsed)nn(u,t.line,n.line+1);else if(o.className||o.title||o.startStyle||o.endStyle)for(var c=t.line;c<=n.line;c++)rn(u,c,"text");o.atomic&&ft(u.doc),Ui(u,"markerAdded",u,o)}return o}function yr(e,t,n,r,i){r=io(r),r.shared=!1;var o=[vr(e,t,n,r,i)],a=o[0],s=r.widgetNode;return vi(e,function(e){s&&(r.widgetNode=s.cloneNode(!0)),o.push(vr(e,K(e,t),K(e,n),r,i));for(var l=0;l<e.linked.length;++l)if(e.linked[l].isParent)return;a=eo(o)}),new Pa(o,a)}function br(e){return e.findMarks(sa(e.first,0),e.clipPos(sa(e.lastLine())),function(e){return e.parent})}function xr(e,t){for(var n=0;n<t.length;n++){var r=t[n],i=r.find(),o=e.clipPos(i.from),a=e.clipPos(i.to);if(la(o,a)){var s=vr(e,o,a,r.primary,r.primary.type);r.markers.push(s),s.parent=r}}}function wr(e){for(var t=0;t<e.length;t++){var n=e[t],r=[n.primary.doc];vi(n.primary.doc,function(e){r.push(e)});for(var i=0;i<n.markers.length;i++){var o=n.markers[i];-1==to(r,o.doc)&&(o.parent=null,n.markers.splice(i--,1))}}}function Cr(e,t,n){this.marker=e,this.from=t,this.to=n}function Sr(e,t){if(e)for(var n=0;n<e.length;++n){var r=e[n];if(r.marker==t)return r}}function Tr(e,t){for(var n,r=0;r<e.length;++r)e[r]!=t&&(n||(n=[])).push(e[r]);return n}function Dr(e,t){e.markedSpans=e.markedSpans?e.markedSpans.concat([t]):[t],t.marker.attachLine(e)}function kr(e,t,n){if(e)for(var r,i=0;i<e.length;++i){var o=e[i],a=o.marker,s=null==o.from||(a.inclusiveLeft?o.from<=t:o.from<t);if(s||o.from==t&&"bookmark"==a.type&&(!n||!o.marker.insertLeft)){var l=null==o.to||(a.inclusiveRight?o.to>=t:o.to>t);(r||(r=[])).push(new Cr(a,o.from,l?null:o.to))}}return r}function Lr(e,t,n){if(e)for(var r,i=0;i<e.length;++i){var o=e[i],a=o.marker,s=null==o.to||(a.inclusiveRight?o.to>=t:o.to>t);if(s||o.from==t&&"bookmark"==a.type&&(!n||o.marker.insertLeft)){var l=null==o.from||(a.inclusiveLeft?o.from<=t:o.from<t);(r||(r=[])).push(new Cr(a,l?null:o.from-t,null==o.to?null:o.to-t))}}return r}function Nr(e,t){var n=Z(e,t.from.line)&&bi(e,t.from.line).markedSpans,r=Z(e,t.to.line)&&bi(e,t.to.line).markedSpans;if(!n&&!r)return null;var i=t.from.ch,o=t.to.ch,a=0==la(t.from,t.to),s=kr(n,i,a),l=Lr(r,o,a),u=1==t.text.length,c=eo(t.text).length+(u?i:0);if(s)for(var f=0;f<s.length;++f){var d=s[f];if(null==d.to){var h=Sr(l,d.marker);h?u&&(d.to=null==h.to?null:h.to+c):d.to=i}}if(l)for(var f=0;f<l.length;++f){var d=l[f];if(null!=d.to&&(d.to+=c),null==d.from){var h=Sr(s,d.marker);h||(d.from=c,u&&(s||(s=[])).push(d))}else d.from+=c,u&&(s||(s=[])).push(d)}s&&(s=Ar(s)),l&&l!=s&&(l=Ar(l));var p=[s];if(!u){var g,m=t.text.length-2;if(m>0&&s)for(var f=0;f<s.length;++f)null==s[f].to&&(g||(g=[])).push(new Cr(s[f].marker,null,null));for(var f=0;m>f;++f)p.push(g);p.push(l)}return p}function Ar(e){for(var t=0;t<e.length;++t){var n=e[t];null!=n.from&&n.from==n.to&&n.marker.clearWhenEmpty!==!1&&e.splice(t--,1)}return e.length?e:null}function _r(e,t){var n=Fi(e,t),r=Nr(e,t);if(!n)return r;if(!r)return n;for(var i=0;i<n.length;++i){var o=n[i],a=r[i];if(o&&a)e:for(var s=0;s<a.length;++s){for(var l=a[s],u=0;u<o.length;++u)if(o[u].marker==l.marker)continue e;o.push(l)}else a&&(n[i]=a)}return n}function Mr(e,t,n){var r=null;if(e.iter(t.line,n.line+1,function(e){if(e.markedSpans)for(var t=0;t<e.markedSpans.length;++t){var n=e.markedSpans[t].marker;!n.readOnly||r&&-1!=to(r,n)||(r||(r=[])).push(n)}}),!r)return null;for(var i=[{from:t,to:n}],o=0;o<r.length;++o)for(var a=r[o],s=a.find(0),l=0;l<i.length;++l){var u=i[l];if(!(la(u.to,s.from)<0||la(u.from,s.to)>0)){var c=[l,1],f=la(u.from,s.from),d=la(u.to,s.to);(0>f||!a.inclusiveLeft&&!f)&&c.push({from:u.from,to:s.from}),(d>0||!a.inclusiveRight&&!d)&&c.push({from:s.to,to:u.to}),i.splice.apply(i,c),l+=c.length-1}}return i}function Er(e){var t=e.markedSpans;if(t){for(var n=0;n<t.length;++n)t[n].marker.detachLine(e);e.markedSpans=null}}function Hr(e,t){if(t){for(var n=0;n<t.length;++n)t[n].marker.attachLine(e);e.markedSpans=t}}function jr(e){return e.inclusiveLeft?-1:0}function Ir(e){return e.inclusiveRight?1:0}function Or(e,t){var n=e.lines.length-t.lines.length;if(0!=n)return n;var r=e.find(),i=t.find(),o=la(r.from,i.from)||jr(e)-jr(t);if(o)return-o;var a=la(r.to,i.to)||Ir(e)-Ir(t);return a?a:t.id-e.id}function Fr(e,t){var n,r=aa&&e.markedSpans;if(r)for(var i,o=0;o<r.length;++o)i=r[o],i.marker.collapsed&&null==(t?i.from:i.to)&&(!n||Or(n,i.marker)<0)&&(n=i.marker);return n}function Pr(e){return Fr(e,!0)}function Rr(e){return Fr(e,!1)}function Wr(e,t,n,r,i){var o=bi(e,t),a=aa&&o.markedSpans;if(a)for(var s=0;s<a.length;++s){var l=a[s];if(l.marker.collapsed){var u=l.marker.find(0),c=la(u.from,n)||jr(l.marker)-jr(i),f=la(u.to,r)||Ir(l.marker)-Ir(i);if(!(c>=0&&0>=f||0>=c&&f>=0)&&(0>=c&&(la(u.to,n)||Ir(l.marker)-jr(i))>0||c>=0&&(la(u.from,r)||jr(l.marker)-Ir(i))<0))return!0}}}function zr(e){for(var t;t=Pr(e);)e=t.find(-1,!0).line;return e}function Br(e){for(var t,n;t=Rr(e);)e=t.find(1,!0).line,(n||(n=[])).push(e);return n}function qr(e,t){var n=bi(e,t),r=zr(n);return n==r?t:Si(r)}function Vr(e,t){if(t>e.lastLine())return t;var n,r=bi(e,t);if(!Ur(e,r))return t;for(;n=Rr(r);)r=n.find(1,!0).line;return Si(r)+1}function Ur(e,t){var n=aa&&t.markedSpans;if(n)for(var r,i=0;i<n.length;++i)if(r=n[i],r.marker.collapsed){if(null==r.from)return!0;if(!r.marker.widgetNode&&0==r.from&&r.marker.inclusiveLeft&&Xr(e,t,r))return!0}}function Xr(e,t,n){if(null==n.to){var r=n.marker.find(1,!0);return Xr(e,r.line,Sr(r.line.markedSpans,n.marker))}if(n.marker.inclusiveRight&&n.to==t.text.length)return!0;for(var i,o=0;o<t.markedSpans.length;++o)if(i=t.markedSpans[o],i.marker.collapsed&&!i.marker.widgetNode&&i.from==n.to&&(null==i.to||i.to!=n.from)&&(i.marker.inclusiveLeft||n.marker.inclusiveRight)&&Xr(e,t,i))return!0}function $r(e,t,n){Di(t)<(e.curOp&&e.curOp.scrollTop||e.doc.scrollTop)&&ar(e,null,n)}function Gr(e){return null!=e.height?e.height:(ho(document.body,e.node)||fo(e.cm.display.measure,uo("div",[e.node],null,"position: relative")),e.height=e.node.offsetHeight)}function Jr(e,t,n,r){var i=new Ra(e,n,r);return i.noHScroll&&(e.display.alignWidgets=!0),cr(e,t,"widget",function(t){var n=t.widgets||(t.widgets=[]);if(null==i.insertAt?n.push(i):n.splice(Math.min(n.length-1,Math.max(0,i.insertAt)),0,i),i.line=t,!Ur(e.doc,t)){var r=Di(t)<e.doc.scrollTop;Ci(t,t.height+Gr(i)),r&&ar(e,null,i.height),e.curOp.forceUpdate=!0}return!0}),i}function Yr(e,t,n,r){e.text=t,e.stateAfter&&(e.stateAfter=null),e.styles&&(e.styles=null),null!=e.order&&(e.order=null),Er(e),Hr(e,n);var i=r?r(e):1;i!=e.height&&Ci(e,i)}function Kr(e){e.parent=null,Er(e)}function Qr(e,t){if(e)for(;;){var n=e.match(/(?:^|\s+)line-(background-)?(\S+)/);if(!n)break;e=e.slice(0,n.index)+e.slice(n.index+n[0].length);var r=n[1]?"bgClass":"textClass";null==t[r]?t[r]=n[2]:new RegExp("(?:^|s)"+n[2]+"(?:$|s)").test(t[r])||(t[r]+=" "+n[2])}return e}function Zr(t,n){if(t.blankLine)return t.blankLine(n);if(t.innerMode){var r=e.innerMode(t,n);return r.mode.blankLine?r.mode.blankLine(r.state):void 0}}function ei(e,t,n){for(var r=0;10>r;r++){var i=e.token(t,n);if(t.pos>t.start)return i}throw new Error("Mode "+e.name+" failed to advance stream.")}function ti(t,n,r,i,o,a,s){var l=r.flattenSpans;null==l&&(l=t.options.flattenSpans);var u,c=0,f=null,d=new Ia(n,t.options.tabSize);for(""==n&&Qr(Zr(r,i),a);!d.eol();){if(d.pos>t.options.maxHighlightLength?(l=!1,s&&ii(t,n,i,d.pos),d.pos=n.length,u=null):u=Qr(ei(r,d,i),a),t.options.addModeClass){var h=e.innerMode(r,i).mode.name;h&&(u="m-"+(u?h+" "+u:h))}l&&f==u||(c<d.start&&o(d.start,f),c=d.start,f=u),d.start=d.pos}for(;c<d.pos;){var p=Math.min(d.pos,c+5e4);o(p,f),c=p}}function ni(e,t,n,r){var i=[e.state.modeGen],o={};ti(e,t.text,e.doc.mode,n,function(e,t){i.push(e,t)},o,r);for(var a=0;a<e.state.overlays.length;++a){var s=e.state.overlays[a],l=1,u=0;ti(e,t.text,s.mode,!0,function(e,t){for(var n=l;e>u;){var r=i[l];r>e&&i.splice(l,1,e,i[l+1],r),l+=2,u=Math.min(e,r)}if(t)if(s.opaque)i.splice(n,l-n,e,"cm-overlay "+t),l=n+2;else for(;l>n;n+=2){var o=i[n+1];i[n+1]=(o?o+" ":"")+"cm-overlay "+t}},o)}return{styles:i,classes:o.bgClass||o.textClass?o:null}}function ri(e,t){if(!t.styles||t.styles[0]!=e.state.modeGen){var n=ni(e,t,t.stateAfter=wt(e,Si(t)));t.styles=n.styles,n.classes?t.styleClasses=n.classes:t.styleClasses&&(t.styleClasses=null)}return t.styles}function ii(e,t,n,r){var i=e.doc.mode,o=new Ia(t,e.options.tabSize);for(o.start=o.pos=r||0,""==t&&Zr(i,n);!o.eol()&&o.pos<=e.options.maxHighlightLength;)ei(i,o,n),o.start=o.pos}function oi(e,t){if(!e||/^\s*$/.test(e))return null;var n=t.addModeClass?Ba:za;return n[e]||(n[e]=e.replace(/\S+/g,"cm-$&"))}function ai(e,t){var n=uo("span",null,null,Vo?"padding-right: .1px":null),r={pre:uo("pre",[n]),content:n,col:0,pos:0,cm:e};t.measure={};for(var i=0;i<=(t.rest?t.rest.length:0);i++){var o,a=i?t.rest[i-1]:t.line;r.pos=0,r.addToken=li,(qo||Vo)&&e.getOption("lineWrapping")&&(r.addToken=ui(r.addToken)),To(e.display.measure)&&(o=ki(a))&&(r.addToken=ci(r.addToken,o)),r.map=[],di(a,r,ri(e,a)),a.styleClasses&&(a.styleClasses.bgClass&&(r.bgClass=yo(a.styleClasses.bgClass,r.bgClass||"")),a.styleClasses.textClass&&(r.textClass=yo(a.styleClasses.textClass,r.textClass||""))),0==r.map.length&&r.map.push(0,0,r.content.appendChild(So(e.display.measure))),0==i?(t.measure.map=r.map,t.measure.cache={}):((t.measure.maps||(t.measure.maps=[])).push(r.map),(t.measure.caches||(t.measure.caches=[])).push({}))}return Za(e,"renderLine",e,t.line,r.pre),r.pre.className&&(r.textClass=yo(r.pre.className,r.textClass||"")),r}function si(e){var t=uo("span","•","cm-invalidchar");return t.title="\\u"+e.charCodeAt(0).toString(16),t}function li(e,t,n,r,i,o){if(t){var a=e.cm.options.specialChars,s=!1;if(a.test(t))for(var l=document.createDocumentFragment(),u=0;;){a.lastIndex=u;var c=a.exec(t),f=c?c.index-u:t.length-u;if(f){var d=document.createTextNode(t.slice(u,u+f));l.appendChild(Wo?uo("span",[d]):d),e.map.push(e.pos,e.pos+f,d),e.col+=f,e.pos+=f}if(!c)break;if(u+=f+1," "==c[0]){var h=e.cm.options.tabSize,p=h-e.col%h,d=l.appendChild(uo("span",Zi(p),"cm-tab"));e.col+=p}else{var d=e.cm.options.specialCharPlaceholder(c[0]);l.appendChild(Wo?uo("span",[d]):d),e.col+=1}e.map.push(e.pos,e.pos+1,d),e.pos++}else{e.col+=t.length;var l=document.createTextNode(t);e.map.push(e.pos,e.pos+t.length,l),Wo&&(s=!0),e.pos+=t.length}if(n||r||i||s){var g=n||"";r&&(g+=r),i&&(g+=i);var m=uo("span",[l],g);return o&&(m.title=o),e.content.appendChild(m)}e.content.appendChild(l)}}function ui(e){function t(e){for(var t=" ",n=0;n<e.length-2;++n)t+=n%2?" ":" ";return t+=" "}return function(n,r,i,o,a,s){e(n,r.replace(/ {3,}/g,t),i,o,a,s)}}function ci(e,t){return function(n,r,i,o,a,s){i=i?i+" cm-force-border":"cm-force-border";for(var l=n.pos,u=l+r.length;;){for(var c=0;c<t.length;c++){var f=t[c];if(f.to>l&&f.from<=l)break}if(f.to>=u)return e(n,r,i,o,a,s);e(n,r.slice(0,f.to-l),i,o,null,s),o=null,r=r.slice(f.to-l),l=f.to}}}function fi(e,t,n,r){var i=!r&&n.widgetNode;i&&(e.map.push(e.pos,e.pos+t,i),e.content.appendChild(i)),e.pos+=t}function di(e,t,n){var r=e.markedSpans,i=e.text,o=0;if(r)for(var a,s,l,u,c,f,d=i.length,h=0,p=1,g="",m=0;;){if(m==h){s=l=u=c="",f=null,m=1/0;for(var v=[],y=0;y<r.length;++y){var b=r[y],x=b.marker;b.from<=h&&(null==b.to||b.to>h)?(null!=b.to&&m>b.to&&(m=b.to,l=""),x.className&&(s+=" "+x.className),x.startStyle&&b.from==h&&(u+=" "+x.startStyle),x.endStyle&&b.to==m&&(l+=" "+x.endStyle),x.title&&!c&&(c=x.title),x.collapsed&&(!f||Or(f.marker,x)<0)&&(f=b)):b.from>h&&m>b.from&&(m=b.from),"bookmark"==x.type&&b.from==h&&x.widgetNode&&v.push(x)}if(f&&(f.from||0)==h&&(fi(t,(null==f.to?d+1:f.to)-h,f.marker,null==f.from),null==f.to))return;if(!f&&v.length)for(var y=0;y<v.length;++y)fi(t,0,v[y])}if(h>=d)break;for(var w=Math.min(d,m);;){if(g){var C=h+g.length;if(!f){var S=C>w?g.slice(0,w-h):g;t.addToken(t,S,a?a+s:s,u,h+S.length==m?l:"",c)}if(C>=w){g=g.slice(w-h),h=w;break}h=C,u=""}g=i.slice(o,o=n[p++]),a=oi(n[p++],t.cm.options)}}else for(var p=1;p<n.length;p+=2)t.addToken(t,i.slice(o,o=n[p]),oi(n[p+1],t.cm.options))}function hi(e,t){return 0==t.from.ch&&0==t.to.ch&&""==eo(t.text)&&(!e.cm||e.cm.options.wholeLineUpdateBefore)}function pi(e,t,n,r){function i(e){return n?n[e]:null}function o(e,n,i){Yr(e,n,i,r),Ui(e,"change",e,t)}var a=t.from,s=t.to,l=t.text,u=bi(e,a.line),c=bi(e,s.line),f=eo(l),d=i(l.length-1),h=s.line-a.line;if(hi(e,t)){for(var p=0,g=[];p<l.length-1;++p)g.push(new Wa(l[p],i(p),r));o(c,c.text,d),h&&e.remove(a.line,h),g.length&&e.insert(a.line,g)}else if(u==c)if(1==l.length)o(u,u.text.slice(0,a.ch)+f+u.text.slice(s.ch),d); else{for(var g=[],p=1;p<l.length-1;++p)g.push(new Wa(l[p],i(p),r));g.push(new Wa(f+u.text.slice(s.ch),d,r)),o(u,u.text.slice(0,a.ch)+l[0],i(0)),e.insert(a.line+1,g)}else if(1==l.length)o(u,u.text.slice(0,a.ch)+l[0]+c.text.slice(s.ch),i(0)),e.remove(a.line+1,h);else{o(u,u.text.slice(0,a.ch)+l[0],i(0)),o(c,f+c.text.slice(s.ch),d);for(var p=1,g=[];p<l.length-1;++p)g.push(new Wa(l[p],i(p),r));h>1&&e.remove(a.line+1,h-1),e.insert(a.line+1,g)}Ui(e,"change",e,t)}function gi(e){this.lines=e,this.parent=null;for(var t=0,n=0;t<e.length;++t)e[t].parent=this,n+=e[t].height;this.height=n}function mi(e){this.children=e;for(var t=0,n=0,r=0;r<e.length;++r){var i=e[r];t+=i.chunkSize(),n+=i.height,i.parent=this}this.size=t,this.height=n,this.parent=null}function vi(e,t,n){function r(e,i,o){if(e.linked)for(var a=0;a<e.linked.length;++a){var s=e.linked[a];if(s.doc!=i){var l=o&&s.sharedHist;(!n||l)&&(t(s.doc,l),r(s.doc,e,l))}}}r(e,null,!0)}function yi(e,t){if(t.cm)throw new Error("This document is already in use.");e.doc=t,t.cm=e,a(e),n(e),e.options.lineWrapping||h(e),e.options.mode=t.modeOption,nn(e)}function bi(e,t){if(t-=e.first,0>t||t>=e.size)throw new Error("There is no line "+(t+e.first)+" in the document.");for(var n=e;!n.lines;)for(var r=0;;++r){var i=n.children[r],o=i.chunkSize();if(o>t){n=i;break}t-=o}return n.lines[t]}function xi(e,t,n){var r=[],i=t.line;return e.iter(t.line,n.line+1,function(e){var o=e.text;i==n.line&&(o=o.slice(0,n.ch)),i==t.line&&(o=o.slice(t.ch)),r.push(o),++i}),r}function wi(e,t,n){var r=[];return e.iter(t,n,function(e){r.push(e.text)}),r}function Ci(e,t){var n=t-e.height;if(n)for(var r=e;r;r=r.parent)r.height+=n}function Si(e){if(null==e.parent)return null;for(var t=e.parent,n=to(t.lines,e),r=t.parent;r;t=r,r=r.parent)for(var i=0;r.children[i]!=t;++i)n+=r.children[i].chunkSize();return n+t.first}function Ti(e,t){var n=e.first;e:do{for(var r=0;r<e.children.length;++r){var i=e.children[r],o=i.height;if(o>t){e=i;continue e}t-=o,n+=i.chunkSize()}return n}while(!e.lines);for(var r=0;r<e.lines.length;++r){var a=e.lines[r],s=a.height;if(s>t)break;t-=s}return n+r}function Di(e){e=zr(e);for(var t=0,n=e.parent,r=0;r<n.lines.length;++r){var i=n.lines[r];if(i==e)break;t+=i.height}for(var o=n.parent;o;n=o,o=n.parent)for(var r=0;r<o.children.length;++r){var a=o.children[r];if(a==n)break;t+=a.height}return t}function ki(e){var t=e.order;return null==t&&(t=e.order=Ss(e.text)),t}function Li(e){this.done=[],this.undone=[],this.undoDepth=1/0,this.lastModTime=this.lastSelTime=0,this.lastOp=null,this.lastOrigin=this.lastSelOrigin=null,this.generation=this.maxGeneration=e||1}function Ni(e,t){var n={from:q(t.from),to:ba(t),text:xi(e,t.from,t.to)};return Ii(e,n,t.from.line,t.to.line+1),vi(e,function(e){Ii(e,n,t.from.line,t.to.line+1)},!0),n}function Ai(e){for(;e.length;){var t=eo(e);if(!t.ranges)break;e.pop()}}function _i(e,t){return t?(Ai(e.done),eo(e.done)):e.done.length&&!eo(e.done).ranges?eo(e.done):e.done.length>1&&!e.done[e.done.length-2].ranges?(e.done.pop(),eo(e.done)):void 0}function Mi(e,t,n,r){var i=e.history;i.undone.length=0;var o,a=+new Date;if((i.lastOp==r||i.lastOrigin==t.origin&&t.origin&&("+"==t.origin.charAt(0)&&e.cm&&i.lastModTime>a-e.cm.options.historyEventDelay||"*"==t.origin.charAt(0)))&&(o=_i(i,i.lastOp==r))){var s=eo(o.changes);0==la(t.from,t.to)&&0==la(t.from,s.to)?s.to=ba(t):o.changes.push(Ni(e,t))}else{var l=eo(i.done);for(l&&l.ranges||ji(e.sel,i.done),o={changes:[Ni(e,t)],generation:i.generation},i.done.push(o);i.done.length>i.undoDepth;)i.done.shift(),i.done[0].ranges||i.done.shift()}i.done.push(n),i.generation=++i.maxGeneration,i.lastModTime=i.lastSelTime=a,i.lastOp=r,i.lastOrigin=i.lastSelOrigin=t.origin,s||Za(e,"historyAdded")}function Ei(e,t,n,r){var i=t.charAt(0);return"*"==i||"+"==i&&n.ranges.length==r.ranges.length&&n.somethingSelected()==r.somethingSelected()&&new Date-e.history.lastSelTime<=(e.cm?e.cm.options.historyEventDelay:500)}function Hi(e,t,n,r){var i=e.history,o=r&&r.origin;n==i.lastOp||o&&i.lastSelOrigin==o&&(i.lastModTime==i.lastSelTime&&i.lastOrigin==o||Ei(e,o,eo(i.done),t))?i.done[i.done.length-1]=t:ji(t,i.done),i.lastSelTime=+new Date,i.lastSelOrigin=o,i.lastOp=n,r&&r.clearRedo!==!1&&Ai(i.undone)}function ji(e,t){var n=eo(t);n&&n.ranges&&n.equals(e)||t.push(e)}function Ii(e,t,n,r){var i=t["spans_"+e.id],o=0;e.iter(Math.max(e.first,n),Math.min(e.first+e.size,r),function(n){n.markedSpans&&((i||(i=t["spans_"+e.id]={}))[o]=n.markedSpans),++o})}function Oi(e){if(!e)return null;for(var t,n=0;n<e.length;++n)e[n].marker.explicitlyCleared?t||(t=e.slice(0,n)):t&&t.push(e[n]);return t?t.length?t:null:e}function Fi(e,t){var n=t["spans_"+e.id];if(!n)return null;for(var r=0,i=[];r<t.text.length;++r)i.push(Oi(n[r]));return i}function Pi(e,t,n){for(var r=0,i=[];r<e.length;++r){var o=e[r];if(o.ranges)i.push(n?X.prototype.deepCopy.call(o):o);else{var a=o.changes,s=[];i.push({changes:s});for(var l=0;l<a.length;++l){var u,c=a[l];if(s.push({from:c.from,to:c.to,text:c.text}),t)for(var f in c)(u=f.match(/^spans_(\d+)$/))&&to(t,Number(u[1]))>-1&&(eo(s)[f]=c[f],delete c[f])}}}return i}function Ri(e,t,n,r){n<e.line?e.line+=r:t<e.line&&(e.line=t,e.ch=0)}function Wi(e,t,n,r){for(var i=0;i<e.length;++i){var o=e[i],a=!0;if(o.ranges){o.copied||(o=e[i]=o.deepCopy(),o.copied=!0);for(var s=0;s<o.ranges.length;s++)Ri(o.ranges[s].anchor,t,n,r),Ri(o.ranges[s].head,t,n,r)}else{for(var s=0;s<o.changes.length;++s){var l=o.changes[s];if(n<l.from.line)l.from=sa(l.from.line+r,l.from.ch),l.to=sa(l.to.line+r,l.to.ch);else if(t<=l.to.line){a=!1;break}}a||(e.splice(0,i+1),i=0)}}}function zi(e,t){var n=t.from.line,r=t.to.line,i=t.text.length-(r-n)-1;Wi(e.done,n,r,i),Wi(e.undone,n,r,i)}function Bi(e){return null!=e.defaultPrevented?e.defaultPrevented:0==e.returnValue}function qi(e){return e.target||e.srcElement}function Vi(e){var t=e.which;return null==t&&(1&e.button?t=1:2&e.button?t=3:4&e.button&&(t=2)),ea&&e.ctrlKey&&1==t&&(t=3),t}function Ui(e,t){function n(e){return function(){e.apply(null,i)}}var r=e._handlers&&e._handlers[t];if(r){var i=Array.prototype.slice.call(arguments,2);$a||(++es,$a=[],setTimeout(Xi,0));for(var o=0;o<r.length;++o)$a.push(n(r[o]))}}function Xi(){--es;var e=$a;$a=null;for(var t=0;t<e.length;++t)e[t]()}function $i(e,t,n){return Za(e,n||t.type,e,t),Bi(t)||t.codemirrorIgnore}function Gi(e){var t=e._handlers&&e._handlers.cursorActivity;if(t)for(var n=e.curOp.cursorActivityHandlers||(e.curOp.cursorActivityHandlers=[]),r=0;r<t.length;++r)-1==to(n,t[r])&&n.push(t[r])}function Ji(e,t){var n=e._handlers&&e._handlers[t];return n&&n.length>0}function Yi(e){e.prototype.on=function(e,t){Ka(this,e,t)},e.prototype.off=function(e,t){Qa(this,e,t)}}function Ki(){this.id=null}function Qi(e,t,n){for(var r=0,i=0;;){var o=e.indexOf(" ",r);-1==o&&(o=e.length);var a=o-r;if(o==e.length||i+a>=t)return r+Math.min(a,t-i);if(i+=o-r,i+=n-i%n,r=o+1,i>=t)return r}}function Zi(e){for(;ss.length<=e;)ss.push(eo(ss)+" ");return ss[e]}function eo(e){return e[e.length-1]}function to(e,t){for(var n=0;n<e.length;++n)if(e[n]==t)return n;return-1}function no(e,t){for(var n=[],r=0;r<e.length;r++)n[r]=t(e[r],r);return n}function ro(e,t){var n;if(Object.create)n=Object.create(e);else{var r=function(){};r.prototype=e,n=new r}return t&&io(t,n),n}function io(e,t,n){t||(t={});for(var r in e)!e.hasOwnProperty(r)||n===!1&&t.hasOwnProperty(r)||(t[r]=e[r]);return t}function oo(e){var t=Array.prototype.slice.call(arguments,1);return function(){return e.apply(null,t)}}function ao(e,t){return t?t.source.indexOf("\\w")>-1&&fs(e)?!0:t.test(e):fs(e)}function so(e){for(var t in e)if(e.hasOwnProperty(t)&&e[t])return!1;return!0}function lo(e){return e.charCodeAt(0)>=768&&ds.test(e)}function uo(e,t,n,r){var i=document.createElement(e);if(n&&(i.className=n),r&&(i.style.cssText=r),"string"==typeof t)i.appendChild(document.createTextNode(t));else if(t)for(var o=0;o<t.length;++o)i.appendChild(t[o]);return i}function co(e){for(var t=e.childNodes.length;t>0;--t)e.removeChild(e.firstChild);return e}function fo(e,t){return co(e).appendChild(t)}function ho(e,t){if(e.contains)return e.contains(t);for(;t=t.parentNode;)if(t==e)return!0}function po(){return document.activeElement}function go(e){return new RegExp("\\b"+e+"\\b\\s*")}function mo(e,t){var n=go(t);n.test(e.className)&&(e.className=e.className.replace(n,""))}function vo(e,t){go(t).test(e.className)||(e.className+=" "+t)}function yo(e,t){for(var n=e.split(" "),r=0;r<n.length;r++)n[r]&&!go(n[r]).test(t)&&(t+=" "+n[r]);return t}function bo(e){if(document.body.getElementsByClassName)for(var t=document.body.getElementsByClassName("CodeMirror"),n=0;n<t.length;n++){var r=t[n].CodeMirror;r&&e(r)}}function xo(){ms||(wo(),ms=!0)}function wo(){var e;Ka(window,"resize",function(){null==e&&(e=setTimeout(function(){e=null,hs=null,bo(yn)},100))}),Ka(window,"blur",function(){bo(zn)})}function Co(e){if(null!=hs)return hs;var t=uo("div",null,null,"width: 50px; height: 50px; overflow-x: scroll");return fo(e,t),t.offsetWidth&&(hs=t.offsetHeight-t.clientHeight),hs||0}function So(e){if(null==ps){var t=uo("span","​");fo(e,uo("span",[t,document.createTextNode("x")])),0!=e.firstChild.offsetHeight&&(ps=t.offsetWidth<=1&&t.offsetHeight>2&&!Ro)}return ps?uo("span","​"):uo("span"," ",null,"display: inline-block; width: 1px; margin-right: -1px")}function To(e){if(null!=gs)return gs;var t=fo(e,document.createTextNode("AخA")),n=us(t,0,1).getBoundingClientRect();if(n.left==n.right)return!1;var r=us(t,1,2).getBoundingClientRect();return gs=r.right-n.right<3}function Do(e,t,n,r){if(!e)return r(t,n,"ltr");for(var i=!1,o=0;o<e.length;++o){var a=e[o];(a.from<n&&a.to>t||t==n&&a.to==t)&&(r(Math.max(a.from,t),Math.min(a.to,n),1==a.level?"rtl":"ltr"),i=!0)}i||r(t,n,"ltr")}function ko(e){return e.level%2?e.to:e.from}function Lo(e){return e.level%2?e.from:e.to}function No(e){var t=ki(e);return t?ko(t[0]):0}function Ao(e){var t=ki(e);return t?Lo(eo(t)):e.text.length}function _o(e,t){var n=bi(e.doc,t),r=zr(n);r!=n&&(t=Si(r));var i=ki(r),o=i?i[0].level%2?Ao(r):No(r):0;return sa(t,o)}function Mo(e,t){for(var n,r=bi(e.doc,t);n=Rr(r);)r=n.find(1,!0).line,t=null;var i=ki(r),o=i?i[0].level%2?No(r):Ao(r):r.text.length;return sa(null==t?Si(r):t,o)}function Eo(e,t,n){var r=e[0].level;return t==r?!0:n==r?!1:n>t}function Ho(e,t){Cs=null;for(var n,r=0;r<e.length;++r){var i=e[r];if(i.from<t&&i.to>t)return r;if(i.from==t||i.to==t){if(null!=n)return Eo(e,i.level,e[n].level)?(i.from!=i.to&&(Cs=n),r):(i.from!=i.to&&(Cs=r),n);n=r}}return n}function jo(e,t,n,r){if(!r)return t+n;do t+=n;while(t>0&&lo(e.text.charAt(t)));return t}function Io(e,t,n,r){var i=ki(e);if(!i)return Oo(e,t,n,r);for(var o=Ho(i,t),a=i[o],s=jo(e,t,a.level%2?-n:n,r);;){if(s>a.from&&s<a.to)return s;if(s==a.from||s==a.to)return Ho(i,s)==o?s:(a=i[o+=n],n>0==a.level%2?a.to:a.from);if(a=i[o+=n],!a)return null;s=n>0==a.level%2?jo(e,a.to,-1,r):jo(e,a.from,1,r)}}function Oo(e,t,n,r){var i=t+n;if(r)for(;i>0&&lo(e.text.charAt(i));)i+=n;return 0>i||i>e.text.length?null:i}var Fo=/gecko\/\d/i.test(navigator.userAgent),Po=/MSIE \d/.test(navigator.userAgent),Ro=Po&&(null==document.documentMode||document.documentMode<8),Wo=Po&&(null==document.documentMode||document.documentMode<9),zo=Po&&(null==document.documentMode||document.documentMode<10),Bo=/Trident\/([7-9]|\d{2,})\./.test(navigator.userAgent),qo=Po||Bo,Vo=/WebKit\//.test(navigator.userAgent),Uo=Vo&&/Qt\/\d+\.\d+/.test(navigator.userAgent),Xo=/Chrome\//.test(navigator.userAgent),$o=/Opera\//.test(navigator.userAgent),Go=/Apple Computer/.test(navigator.vendor),Jo=/KHTML\//.test(navigator.userAgent),Yo=/Mac OS X 1\d\D([8-9]|\d\d)\D/.test(navigator.userAgent),Ko=/PhantomJS/.test(navigator.userAgent),Qo=/AppleWebKit/.test(navigator.userAgent)&&/Mobile\/\w+/.test(navigator.userAgent),Zo=Qo||/Android|webOS|BlackBerry|Opera Mini|Opera Mobi|IEMobile/i.test(navigator.userAgent),ea=Qo||/Mac/.test(navigator.platform),ta=/win/i.test(navigator.platform),na=$o&&navigator.userAgent.match(/Version\/(\d*\.\d*)/);na&&(na=Number(na[1])),na&&na>=15&&($o=!1,Vo=!0);var ra=ea&&(Uo||$o&&(null==na||12.11>na)),ia=Fo||qo&&!Wo,oa=!1,aa=!1,sa=e.Pos=function(e,t){return this instanceof sa?(this.line=e,void(this.ch=t)):new sa(e,t)},la=e.cmpPos=function(e,t){return e.line-t.line||e.ch-t.ch};X.prototype={primary:function(){return this.ranges[this.primIndex]},equals:function(e){if(e==this)return!0;if(e.primIndex!=this.primIndex||e.ranges.length!=this.ranges.length)return!1;for(var t=0;t<this.ranges.length;t++){var n=this.ranges[t],r=e.ranges[t];if(0!=la(n.anchor,r.anchor)||0!=la(n.head,r.head))return!1}return!0},deepCopy:function(){for(var e=[],t=0;t<this.ranges.length;t++)e[t]=new $(q(this.ranges[t].anchor),q(this.ranges[t].head));return new X(e,this.primIndex)},somethingSelected:function(){for(var e=0;e<this.ranges.length;e++)if(!this.ranges[e].empty())return!0;return!1},contains:function(e,t){t||(t=e);for(var n=0;n<this.ranges.length;n++){var r=this.ranges[n];if(la(t,r.from())>=0&&la(e,r.to())<=0)return n}return-1}},$.prototype={from:function(){return U(this.anchor,this.head)},to:function(){return V(this.anchor,this.head)},empty:function(){return this.head.line==this.anchor.line&&this.head.ch==this.anchor.ch}};var ua,ca,fa,da={left:0,right:0,top:0,bottom:0},ha=0,pa=0,ga=0,ma=null;qo?ma=-.53:Fo?ma=15:Xo?ma=-.7:Go&&(ma=-1/3);var va,ya=null,ba=e.changeEnd=function(e){return e.text?sa(e.from.line+e.text.length-1,eo(e.text).length+(1==e.text.length?e.from.ch:0)):e.to};e.prototype={constructor:e,focus:function(){window.focus(),pn(this),fn(this)},setOption:function(e,t){var n=this.options,r=n[e];(n[e]!=t||"mode"==e)&&(n[e]=t,wa.hasOwnProperty(e)&&Kt(this,wa[e])(this,t,r))},getOption:function(e){return this.options[e]},getDoc:function(){return this.doc},addKeyMap:function(e,t){this.state.keyMaps[t?"push":"unshift"](e)},removeKeyMap:function(e){for(var t=this.state.keyMaps,n=0;n<t.length;++n)if(t[n]==e||"string"!=typeof t[n]&&t[n].name==e)return t.splice(n,1),!0},addOverlay:Qt(function(t,n){var r=t.token?t:e.getMode(this.options,t);if(r.startState)throw new Error("Overlays may not be stateful.");this.state.overlays.push({mode:r,modeSpec:t,opaque:n&&n.opaque}),this.state.modeGen++,nn(this)}),removeOverlay:Qt(function(e){for(var t=this.state.overlays,n=0;n<t.length;++n){var r=t[n].modeSpec;if(r==e||"string"==typeof e&&r.name==e)return t.splice(n,1),this.state.modeGen++,void nn(this)}}),indentLine:Qt(function(e,t,n){"string"!=typeof t&&"number"!=typeof t&&(t=null==t?this.options.smartIndent?"smart":"prev":t?"add":"subtract"),Z(this.doc,e)&&ur(this,e,t,n)}),indentSelection:Qt(function(e){for(var t=this.doc.sel.ranges,n=-1,r=0;r<t.length;r++){var i=t[r];if(i.empty())i.head.line>n&&(ur(this,i.head.line,e,!0),n=i.head.line,r==this.doc.sel.primIndex&&sr(this));else{var o=Math.max(n,i.from().line),a=i.to();n=Math.min(this.lastLine(),a.line-(a.ch?0:1))+1;for(var s=o;n>s;++s)ur(this,s,e)}}}),getTokenAt:function(e,t){var n=this.doc;e=K(n,e);for(var r=wt(this,e.line,t),i=this.doc.mode,o=bi(n,e.line),a=new Ia(o.text,this.options.tabSize);a.pos<e.ch&&!a.eol();){a.start=a.pos;var s=ei(i,a,r)}return{start:a.start,end:a.pos,string:a.current(),type:s||null,state:r}},getTokenTypeAt:function(e){e=K(this.doc,e);var t,n=ri(this,bi(this.doc,e.line)),r=0,i=(n.length-1)/2,o=e.ch;if(0==o)t=n[2];else for(;;){var a=r+i>>1;if((a?n[2*a-1]:0)>=o)i=a;else{if(!(n[2*a+1]<o)){t=n[2*a+2];break}r=a+1}}var s=t?t.indexOf("cm-overlay "):-1;return 0>s?t:0==s?null:t.slice(0,s-1)},getModeAt:function(t){var n=this.doc.mode;return n.innerMode?e.innerMode(n,this.getTokenAt(t).state).mode:n},getHelper:function(e,t){return this.getHelpers(e,t)[0]},getHelpers:function(e,t){var n=[];if(!La.hasOwnProperty(t))return La;var r=La[t],i=this.getModeAt(e);if("string"==typeof i[t])r[i[t]]&&n.push(r[i[t]]);else if(i[t])for(var o=0;o<i[t].length;o++){var a=r[i[t][o]];a&&n.push(a)}else i.helperType&&r[i.helperType]?n.push(r[i.helperType]):r[i.name]&&n.push(r[i.name]);for(var o=0;o<r._global.length;o++){var s=r._global[o];s.pred(i,this)&&-1==to(n,s.val)&&n.push(s.val)}return n},getStateAfter:function(e,t){var n=this.doc;return e=Y(n,null==e?n.first+n.size-1:e),wt(this,e+1,t)},cursorCoords:function(e,t){var n,r=this.doc.sel.primary();return n=null==e?r.head:"object"==typeof e?K(this.doc,e):e?r.from():r.to(),zt(this,n,t||"page")},charCoords:function(e,t){return Wt(this,K(this.doc,e),t||"page")},coordsChar:function(e,t){return e=Rt(this,e,t||"page"),Vt(this,e.left,e.top)},lineAtHeight:function(e,t){return e=Rt(this,{top:e,left:0},t||"page").top,Ti(this.doc,e+this.display.viewOffset)},heightAtLine:function(e,t){var n=!1,r=this.doc.first+this.doc.size-1;e<this.doc.first?e=this.doc.first:e>r&&(e=r,n=!0);var i=bi(this.doc,e);return Pt(this,i,{top:0,left:0},t||"page").top+(n?this.doc.height-Di(i):0)},defaultTextHeight:function(){return Xt(this.display)},defaultCharWidth:function(){return $t(this.display)},setGutterMarker:Qt(function(e,t,n){return cr(this,e,"gutter",function(e){var r=e.gutterMarkers||(e.gutterMarkers={});return r[t]=n,!n&&so(r)&&(e.gutterMarkers=null),!0})}),clearGutter:Qt(function(e){var t=this,n=t.doc,r=n.first;n.iter(function(n){n.gutterMarkers&&n.gutterMarkers[e]&&(n.gutterMarkers[e]=null,rn(t,r,"gutter"),so(n.gutterMarkers)&&(n.gutterMarkers=null)),++r})}),addLineClass:Qt(function(e,t,n){return cr(this,e,"class",function(e){var r="text"==t?"textClass":"background"==t?"bgClass":"wrapClass";if(e[r]){if(new RegExp("(?:^|\\s)"+n+"(?:$|\\s)").test(e[r]))return!1;e[r]+=" "+n}else e[r]=n;return!0})}),removeLineClass:Qt(function(e,t,n){return cr(this,e,"class",function(e){var r="text"==t?"textClass":"background"==t?"bgClass":"wrapClass",i=e[r];if(!i)return!1;if(null==n)e[r]=null;else{var o=i.match(new RegExp("(?:^|\\s+)"+n+"(?:$|\\s+)"));if(!o)return!1;var a=o.index+o[0].length;e[r]=i.slice(0,o.index)+(o.index&&a!=i.length?" ":"")+i.slice(a)||null}return!0})}),addLineWidget:Qt(function(e,t,n){return Jr(this,e,t,n)}),removeLineWidget:function(e){e.clear()},lineInfo:function(e){if("number"==typeof e){if(!Z(this.doc,e))return null;var t=e;if(e=bi(this.doc,e),!e)return null}else{var t=Si(e);if(null==t)return null}return{line:t,handle:e,text:e.text,gutterMarkers:e.gutterMarkers,textClass:e.textClass,bgClass:e.bgClass,wrapClass:e.wrapClass,widgets:e.widgets}},getViewport:function(){return{from:this.display.viewFrom,to:this.display.viewTo}},addWidget:function(e,t,n,r,i){var o=this.display;e=zt(this,K(this.doc,e));var a=e.bottom,s=e.left;if(t.style.position="absolute",o.sizer.appendChild(t),"over"==r)a=e.top;else if("above"==r||"near"==r){var l=Math.max(o.wrapper.clientHeight,this.doc.height),u=Math.max(o.sizer.clientWidth,o.lineSpace.clientWidth);("above"==r||e.bottom+t.offsetHeight>l)&&e.top>t.offsetHeight?a=e.top-t.offsetHeight:e.bottom+t.offsetHeight<=l&&(a=e.bottom),s+t.offsetWidth>u&&(s=u-t.offsetWidth)}t.style.top=a+"px",t.style.left=t.style.right="","right"==i?(s=o.sizer.clientWidth-t.offsetWidth,t.style.right="0px"):("left"==i?s=0:"middle"==i&&(s=(o.sizer.clientWidth-t.offsetWidth)/2),t.style.left=s+"px"),n&&ir(this,s,a,s+t.offsetWidth,a+t.offsetHeight)},triggerOnKeyDown:Qt(On),triggerOnKeyPress:Qt(Rn),triggerOnKeyUp:Qt(Pn),execCommand:function(e){return _a.hasOwnProperty(e)?_a[e](this):void 0},findPosH:function(e,t,n,r){var i=1;0>t&&(i=-1,t=-t);for(var o=0,a=K(this.doc,e);t>o&&(a=dr(this.doc,a,i,n,r),!a.hitSide);++o);return a},moveH:Qt(function(e,t){var n=this;n.extendSelectionsBy(function(r){return n.display.shift||n.doc.extend||r.empty()?dr(n.doc,r.head,e,t,n.options.rtlMoveVisually):0>e?r.from():r.to()},os)}),deleteH:Qt(function(e,t){var n=this.doc.sel,r=this.doc;n.somethingSelected()?r.replaceSelection("",null,"+delete"):fr(this,function(n){var i=dr(r,n.head,e,t,!1);return 0>e?{from:i,to:n.head}:{from:n.head,to:i}})}),findPosV:function(e,t,n,r){var i=1,o=r;0>t&&(i=-1,t=-t);for(var a=0,s=K(this.doc,e);t>a;++a){var l=zt(this,s,"div");if(null==o?o=l.left:l.left=o,s=hr(this,l,i,n),s.hitSide)break}return s},moveV:Qt(function(e,t){var n=this,r=this.doc,i=[],o=!n.display.shift&&!r.extend&&r.sel.somethingSelected();if(r.extendSelectionsBy(function(a){if(o)return 0>e?a.from():a.to();var s=zt(n,a.head,"div");null!=a.goalColumn&&(s.left=a.goalColumn),i.push(s.left);var l=hr(n,s,e,t);return"page"==t&&a==r.sel.primary()&&ar(n,null,Wt(n,l,"div").top-s.top),l},os),i.length)for(var a=0;a<r.sel.ranges.length;a++)r.sel.ranges[a].goalColumn=i[a]}),toggleOverwrite:function(e){(null==e||e!=this.state.overwrite)&&((this.state.overwrite=!this.state.overwrite)?vo(this.display.cursorDiv,"CodeMirror-overwrite"):mo(this.display.cursorDiv,"CodeMirror-overwrite"),Za(this,"overwriteToggle",this,this.state.overwrite))},hasFocus:function(){return po()==this.display.input},scrollTo:Qt(function(e,t){(null!=e||null!=t)&&lr(this),null!=e&&(this.curOp.scrollLeft=e),null!=t&&(this.curOp.scrollTop=t)}),getScrollInfo:function(){var e=this.display.scroller,t=ts;return{left:e.scrollLeft,top:e.scrollTop,height:e.scrollHeight-t,width:e.scrollWidth-t,clientHeight:e.clientHeight-t,clientWidth:e.clientWidth-t}},scrollIntoView:Qt(function(e,t){if(null==e?(e={from:this.doc.sel.primary().head,to:null},null==t&&(t=this.options.cursorScrollMargin)):"number"==typeof e?e={from:sa(e,0),to:null}:null==e.from&&(e={from:e,to:null}),e.to||(e.to=e.from),e.margin=t||0,null!=e.from.line)lr(this),this.curOp.scrollToPos=e;else{var n=or(this,Math.min(e.from.left,e.to.left),Math.min(e.from.top,e.to.top)-e.margin,Math.max(e.from.right,e.to.right),Math.max(e.from.bottom,e.to.bottom)+e.margin);this.scrollTo(n.scrollLeft,n.scrollTop)}}),setSize:Qt(function(e,t){function n(e){return"number"==typeof e||/^\d+$/.test(String(e))?e+"px":e}null!=e&&(this.display.wrapper.style.width=n(e)),null!=t&&(this.display.wrapper.style.height=n(t)),this.options.lineWrapping&&jt(this),this.curOp.forceUpdate=!0,Za(this,"refresh",this)}),operation:function(e){return Yt(this,e)},refresh:Qt(function(){var e=this.display.cachedTextHeight;nn(this),this.curOp.forceUpdate=!0,It(this),this.scrollTo(this.doc.scrollLeft,this.doc.scrollTop),f(this),(null==e||Math.abs(e-Xt(this.display))>.5)&&a(this),Za(this,"refresh",this)}),swapDoc:Qt(function(e){var t=this.doc;return t.cm=null,yi(this,e),It(this),hn(this),this.scrollTo(e.scrollLeft,e.scrollTop),Ui(this,"swapDoc",this,t),t}),getInputField:function(){return this.display.input},getWrapperElement:function(){return this.display.wrapper},getScrollerElement:function(){return this.display.scroller},getGutterElement:function(){return this.display.gutters}},Yi(e);var xa=e.defaults={},wa=e.optionHandlers={},Ca=e.Init={toString:function(){return"CodeMirror.Init"}};gr("value","",function(e,t){e.setValue(t)},!0),gr("mode",null,function(e,t){e.doc.modeOption=t,n(e)},!0),gr("indentUnit",2,n,!0),gr("indentWithTabs",!1),gr("smartIndent",!0),gr("tabSize",4,function(e){r(e),It(e),nn(e)},!0),gr("specialChars",/[\t\u0000-\u0019\u00ad\u200b\u2028\u2029\ufeff]/g,function(e,t){e.options.specialChars=new RegExp(t.source+(t.test(" ")?"":"| "),"g"),e.refresh()},!0),gr("specialCharPlaceholder",si,function(e){e.refresh()},!0),gr("electricChars",!0),gr("rtlMoveVisually",!ta),gr("wholeLineUpdateBefore",!0),gr("theme","default",function(e){l(e),u(e)},!0),gr("keyMap","default",s),gr("extraKeys",null),gr("lineWrapping",!1,i,!0),gr("gutters",[],function(e){p(e.options),u(e)},!0),gr("fixedGutter",!0,function(e,t){e.display.gutters.style.left=t?w(e.display)+"px":"0",e.refresh()},!0),gr("coverGutterNextToScrollbar",!1,m,!0),gr("lineNumbers",!1,function(e){p(e.options),u(e)},!0),gr("firstLineNumber",1,u,!0),gr("lineNumberFormatter",function(e){return e},u,!0),gr("showCursorWhenSelecting",!1,pt,!0),gr("resetSelectionOnContextMenu",!0),gr("readOnly",!1,function(e,t){"nocursor"==t?(zn(e),e.display.input.blur(),e.display.disabled=!0):(e.display.disabled=!1,t||hn(e))}),gr("disableInput",!1,function(e,t){t||hn(e)},!0),gr("dragDrop",!0),gr("cursorBlinkRate",530),gr("cursorScrollMargin",0),gr("cursorHeight",1),gr("workTime",100),gr("workDelay",100),gr("flattenSpans",!0,r,!0),gr("addModeClass",!1,r,!0),gr("pollInterval",100),gr("undoDepth",200,function(e,t){e.doc.history.undoDepth=t}),gr("historyEventDelay",1250),gr("viewportMargin",10,function(e){e.refresh()},!0),gr("maxHighlightLength",1e4,r,!0),gr("moveInputWithCursor",!0,function(e,t){t||(e.display.inputDiv.style.top=e.display.inputDiv.style.left=0)}),gr("tabindex",null,function(e,t){e.display.input.tabIndex=t||""}),gr("autofocus",null);var Sa=e.modes={},Ta=e.mimeModes={};e.defineMode=function(t,n){if(e.defaults.mode||"null"==t||(e.defaults.mode=t),arguments.length>2){n.dependencies=[];for(var r=2;r<arguments.length;++r)n.dependencies.push(arguments[r])}Sa[t]=n},e.defineMIME=function(e,t){Ta[e]=t},e.resolveMode=function(t){if("string"==typeof t&&Ta.hasOwnProperty(t))t=Ta[t];else if(t&&"string"==typeof t.name&&Ta.hasOwnProperty(t.name)){var n=Ta[t.name];"string"==typeof n&&(n={name:n}),t=ro(n,t),t.name=n.name}else if("string"==typeof t&&/^[\w\-]+\/[\w\-]+\+xml$/.test(t))return e.resolveMode("application/xml");return"string"==typeof t?{name:t}:t||{name:"null"}},e.getMode=function(t,n){var n=e.resolveMode(n),r=Sa[n.name];if(!r)return e.getMode(t,"text/plain");var i=r(t,n);if(Da.hasOwnProperty(n.name)){var o=Da[n.name];for(var a in o)o.hasOwnProperty(a)&&(i.hasOwnProperty(a)&&(i["_"+a]=i[a]),i[a]=o[a])}if(i.name=n.name,n.helperType&&(i.helperType=n.helperType),n.modeProps)for(var a in n.modeProps)i[a]=n.modeProps[a];return i},e.defineMode("null",function(){return{token:function(e){e.skipToEnd()}}}),e.defineMIME("text/plain","null");var Da=e.modeExtensions={};e.extendMode=function(e,t){var n=Da.hasOwnProperty(e)?Da[e]:Da[e]={};io(t,n)},e.defineExtension=function(t,n){e.prototype[t]=n},e.defineDocExtension=function(e,t){Va.prototype[e]=t},e.defineOption=gr;var ka=[];e.defineInitHook=function(e){ka.push(e)};var La=e.helpers={};e.registerHelper=function(t,n,r){La.hasOwnProperty(t)||(La[t]=e[t]={_global:[]}),La[t][n]=r},e.registerGlobalHelper=function(t,n,r,i){e.registerHelper(t,n,i),La[t]._global.push({pred:r,val:i})};var Na=e.copyState=function(e,t){if(t===!0)return t;if(e.copyState)return e.copyState(t);var n={};for(var r in t){var i=t[r];i instanceof Array&&(i=i.concat([])),n[r]=i}return n},Aa=e.startState=function(e,t,n){return e.startState?e.startState(t,n):!0};e.innerMode=function(e,t){for(;e.innerMode;){var n=e.innerMode(t);if(!n||n.mode==e)break;t=n.state,e=n.mode}return n||{mode:e,state:t}};var _a=e.commands={selectAll:function(e){e.setSelection(sa(e.firstLine(),0),sa(e.lastLine()),rs)},singleSelection:function(e){e.setSelection(e.getCursor("anchor"),e.getCursor("head"),rs)},killLine:function(e){fr(e,function(t){if(t.empty()){var n=bi(e.doc,t.head.line).text.length;return t.head.ch==n&&t.head.line<e.lastLine()?{from:t.head,to:sa(t.head.line+1,0)}:{from:t.head,to:sa(t.head.line,n)}}return{from:t.from(),to:t.to()}})},deleteLine:function(e){fr(e,function(t){return{from:sa(t.from().line,0),to:K(e.doc,sa(t.to().line+1,0))}})},delLineLeft:function(e){fr(e,function(e){return{from:sa(e.from().line,0),to:e.from()}})},undo:function(e){e.undo()},redo:function(e){e.redo()},undoSelection:function(e){e.undoSelection()},redoSelection:function(e){e.redoSelection()},goDocStart:function(e){e.extendSelection(sa(e.firstLine(),0))},goDocEnd:function(e){e.extendSelection(sa(e.lastLine()))},goLineStart:function(e){e.extendSelectionsBy(function(t){return _o(e,t.head.line)},os)},goLineStartSmart:function(e){e.extendSelectionsBy(function(t){var n=_o(e,t.head.line),r=e.getLineHandle(n.line),i=ki(r);if(!i||0==i[0].level){var o=Math.max(0,r.text.search(/\S/)),a=t.head.line==n.line&&t.head.ch<=o&&t.head.ch;return sa(n.line,a?0:o)}return n},os)},goLineEnd:function(e){e.extendSelectionsBy(function(t){return Mo(e,t.head.line)},os)},goLineRight:function(e){e.extendSelectionsBy(function(t){var n=e.charCoords(t.head,"div").top+5;return e.coordsChar({left:e.display.lineDiv.offsetWidth+100,top:n},"div")},os)},goLineLeft:function(e){e.extendSelectionsBy(function(t){var n=e.charCoords(t.head,"div").top+5;return e.coordsChar({left:0,top:n},"div")},os)},goLineUp:function(e){e.moveV(-1,"line")},goLineDown:function(e){e.moveV(1,"line")},goPageUp:function(e){e.moveV(-1,"page")},goPageDown:function(e){e.moveV(1,"page")},goCharLeft:function(e){e.moveH(-1,"char")},goCharRight:function(e){e.moveH(1,"char")},goColumnLeft:function(e){e.moveH(-1,"column")},goColumnRight:function(e){e.moveH(1,"column")},goWordLeft:function(e){e.moveH(-1,"word")},goGroupRight:function(e){e.moveH(1,"group")},goGroupLeft:function(e){e.moveH(-1,"group")},goWordRight:function(e){e.moveH(1,"word")},delCharBefore:function(e){e.deleteH(-1,"char")},delCharAfter:function(e){e.deleteH(1,"char")},delWordBefore:function(e){e.deleteH(-1,"word")},delWordAfter:function(e){e.deleteH(1,"word")},delGroupBefore:function(e){e.deleteH(-1,"group")},delGroupAfter:function(e){e.deleteH(1,"group")},indentAuto:function(e){e.indentSelection("smart")},indentMore:function(e){e.indentSelection("add")},indentLess:function(e){e.indentSelection("subtract")},insertTab:function(e){e.replaceSelection(" ")},insertSoftTab:function(e){for(var t=[],n=e.listSelections(),r=e.options.tabSize,i=0;i<n.length;i++){var o=n[i].from(),a=as(e.getLine(o.line),o.ch,r);t.push(new Array(r-a%r+1).join(" "))}e.replaceSelections(t)},defaultTab:function(e){e.somethingSelected()?e.indentSelection("add"):e.execCommand("insertTab")},transposeChars:function(e){Yt(e,function(){for(var t=e.listSelections(),n=[],r=0;r<t.length;r++){var i=t[r].head,o=bi(e.doc,i.line).text;if(o)if(i.ch==o.length&&(i=new sa(i.line,i.ch-1)),i.ch>0)i=new sa(i.line,i.ch+1),e.replaceRange(o.charAt(i.ch-1)+o.charAt(i.ch-2),sa(i.line,i.ch-2),i,"+transpose");else if(i.line>e.doc.first){var a=bi(e.doc,i.line-1).text;a&&e.replaceRange(o.charAt(0)+"\n"+a.charAt(a.length-1),sa(i.line-1,a.length-1),sa(i.line,1),"+transpose")}n.push(new $(i,i))}e.setSelections(n)})},newlineAndIndent:function(e){Yt(e,function(){for(var t=e.listSelections().length,n=0;t>n;n++){var r=e.listSelections()[n];e.replaceRange("\n",r.anchor,r.head,"+input"),e.indentLine(r.from().line+1,null,!0),sr(e)}})},toggleOverwrite:function(e){e.toggleOverwrite()}},Ma=e.keyMap={};Ma.basic={Left:"goCharLeft",Right:"goCharRight",Up:"goLineUp",Down:"goLineDown",End:"goLineEnd",Home:"goLineStartSmart",PageUp:"goPageUp",PageDown:"goPageDown",Delete:"delCharAfter",Backspace:"delCharBefore","Shift-Backspace":"delCharBefore",Tab:"defaultTab","Shift-Tab":"indentAuto",Enter:"newlineAndIndent",Insert:"toggleOverwrite",Esc:"singleSelection"},Ma.pcDefault={"Ctrl-A":"selectAll","Ctrl-D":"deleteLine","Ctrl-Z":"undo","Shift-Ctrl-Z":"redo","Ctrl-Y":"redo","Ctrl-Home":"goDocStart","Ctrl-Up":"goDocStart","Ctrl-End":"goDocEnd","Ctrl-Down":"goDocEnd","Ctrl-Left":"goGroupLeft","Ctrl-Right":"goGroupRight","Alt-Left":"goLineStart","Alt-Right":"goLineEnd","Ctrl-Backspace":"delGroupBefore","Ctrl-Delete":"delGroupAfter","Ctrl-S":"save","Ctrl-F":"find","Ctrl-G":"findNext","Shift-Ctrl-G":"findPrev","Shift-Ctrl-F":"replace","Shift-Ctrl-R":"replaceAll","Ctrl-[":"indentLess","Ctrl-]":"indentMore","Ctrl-U":"undoSelection","Shift-Ctrl-U":"redoSelection","Alt-U":"redoSelection",fallthrough:"basic"},Ma.macDefault={"Cmd-A":"selectAll","Cmd-D":"deleteLine","Cmd-Z":"undo","Shift-Cmd-Z":"redo","Cmd-Y":"redo","Cmd-Up":"goDocStart","Cmd-End":"goDocEnd","Cmd-Down":"goDocEnd","Alt-Left":"goGroupLeft","Alt-Right":"goGroupRight","Cmd-Left":"goLineStart","Cmd-Right":"goLineEnd","Alt-Backspace":"delGroupBefore","Ctrl-Alt-Backspace":"delGroupAfter","Alt-Delete":"delGroupAfter","Cmd-S":"save","Cmd-F":"find","Cmd-G":"findNext","Shift-Cmd-G":"findPrev","Cmd-Alt-F":"replace","Shift-Cmd-Alt-F":"replaceAll","Cmd-[":"indentLess","Cmd-]":"indentMore","Cmd-Backspace":"delLineLeft","Cmd-U":"undoSelection","Shift-Cmd-U":"redoSelection",fallthrough:["basic","emacsy"]},Ma.emacsy={"Ctrl-F":"goCharRight","Ctrl-B":"goCharLeft","Ctrl-P":"goLineUp","Ctrl-N":"goLineDown","Alt-F":"goWordRight","Alt-B":"goWordLeft","Ctrl-A":"goLineStart","Ctrl-E":"goLineEnd","Ctrl-V":"goPageDown","Shift-Ctrl-V":"goPageUp","Ctrl-D":"delCharAfter","Ctrl-H":"delCharBefore","Alt-D":"delWordAfter","Alt-Backspace":"delWordBefore","Ctrl-K":"killLine","Ctrl-T":"transposeChars"},Ma["default"]=ea?Ma.macDefault:Ma.pcDefault; var Ea=e.lookupKey=function(e,t,n){function r(t){t=mr(t);var i=t[e];if(i===!1)return"stop";if(null!=i&&n(i))return!0;if(t.nofallthrough)return"stop";var o=t.fallthrough;if(null==o)return!1;if("[object Array]"!=Object.prototype.toString.call(o))return r(o);for(var a=0;a<o.length;++a){var s=r(o[a]);if(s)return s}return!1}for(var i=0;i<t.length;++i){var o=r(t[i]);if(o)return"stop"!=o}},Ha=e.isModifierKey=function(e){var t=ws[e.keyCode];return"Ctrl"==t||"Alt"==t||"Shift"==t||"Mod"==t},ja=e.keyName=function(e,t){if($o&&34==e.keyCode&&e["char"])return!1;var n=ws[e.keyCode];return null==n||e.altGraphKey?!1:(e.altKey&&(n="Alt-"+n),(ra?e.metaKey:e.ctrlKey)&&(n="Ctrl-"+n),(ra?e.ctrlKey:e.metaKey)&&(n="Cmd-"+n),!t&&e.shiftKey&&(n="Shift-"+n),n)};e.fromTextArea=function(t,n){function r(){t.value=u.getValue()}if(n||(n={}),n.value=t.value,!n.tabindex&&t.tabindex&&(n.tabindex=t.tabindex),!n.placeholder&&t.placeholder&&(n.placeholder=t.placeholder),null==n.autofocus){var i=po();n.autofocus=i==t||null!=t.getAttribute("autofocus")&&i==document.body}if(t.form&&(Ka(t.form,"submit",r),!n.leaveSubmitMethodAlone)){var o=t.form,a=o.submit;try{var s=o.submit=function(){r(),o.submit=a,o.submit(),o.submit=s}}catch(l){}}t.style.display="none";var u=e(function(e){t.parentNode.insertBefore(e,t.nextSibling)},n);return u.save=r,u.getTextArea=function(){return t},u.toTextArea=function(){r(),t.parentNode.removeChild(u.getWrapperElement()),t.style.display="",t.form&&(Qa(t.form,"submit",r),"function"==typeof t.form.submit&&(t.form.submit=a))},u};var Ia=e.StringStream=function(e,t){this.pos=this.start=0,this.string=e,this.tabSize=t||8,this.lastColumnPos=this.lastColumnValue=0,this.lineStart=0};Ia.prototype={eol:function(){return this.pos>=this.string.length},sol:function(){return this.pos==this.lineStart},peek:function(){return this.string.charAt(this.pos)||void 0},next:function(){return this.pos<this.string.length?this.string.charAt(this.pos++):void 0},eat:function(e){var t=this.string.charAt(this.pos);if("string"==typeof e)var n=t==e;else var n=t&&(e.test?e.test(t):e(t));return n?(++this.pos,t):void 0},eatWhile:function(e){for(var t=this.pos;this.eat(e););return this.pos>t},eatSpace:function(){for(var e=this.pos;/[\s\u00a0]/.test(this.string.charAt(this.pos));)++this.pos;return this.pos>e},skipToEnd:function(){this.pos=this.string.length},skipTo:function(e){var t=this.string.indexOf(e,this.pos);return t>-1?(this.pos=t,!0):void 0},backUp:function(e){this.pos-=e},column:function(){return this.lastColumnPos<this.start&&(this.lastColumnValue=as(this.string,this.start,this.tabSize,this.lastColumnPos,this.lastColumnValue),this.lastColumnPos=this.start),this.lastColumnValue-(this.lineStart?as(this.string,this.lineStart,this.tabSize):0)},indentation:function(){return as(this.string,null,this.tabSize)-(this.lineStart?as(this.string,this.lineStart,this.tabSize):0)},match:function(e,t,n){if("string"!=typeof e){var r=this.string.slice(this.pos).match(e);return r&&r.index>0?null:(r&&t!==!1&&(this.pos+=r[0].length),r)}var i=function(e){return n?e.toLowerCase():e},o=this.string.substr(this.pos,e.length);return i(o)==i(e)?(t!==!1&&(this.pos+=e.length),!0):void 0},current:function(){return this.string.slice(this.start,this.pos)},hideFirstChars:function(e,t){this.lineStart+=e;try{return t()}finally{this.lineStart-=e}}};var Oa=e.TextMarker=function(e,t){this.lines=[],this.type=t,this.doc=e};Yi(Oa),Oa.prototype.clear=function(){if(!this.explicitlyCleared){var e=this.doc.cm,t=e&&!e.curOp;if(t&&Gt(e),Ji(this,"clear")){var n=this.find();n&&Ui(this,"clear",n.from,n.to)}for(var r=null,i=null,o=0;o<this.lines.length;++o){var a=this.lines[o],s=Sr(a.markedSpans,this);e&&!this.collapsed?rn(e,Si(a),"text"):e&&(null!=s.to&&(i=Si(a)),null!=s.from&&(r=Si(a))),a.markedSpans=Tr(a.markedSpans,s),null==s.from&&this.collapsed&&!Ur(this.doc,a)&&e&&Ci(a,Xt(e.display))}if(e&&this.collapsed&&!e.options.lineWrapping)for(var o=0;o<this.lines.length;++o){var l=zr(this.lines[o]),u=d(l);u>e.display.maxLineLength&&(e.display.maxLine=l,e.display.maxLineLength=u,e.display.maxLineChanged=!0)}null!=r&&e&&this.collapsed&&nn(e,r,i+1),this.lines.length=0,this.explicitlyCleared=!0,this.atomic&&this.doc.cantEdit&&(this.doc.cantEdit=!1,e&&ft(e.doc)),e&&Ui(e,"markerCleared",e,this),t&&Jt(e),this.parent&&this.parent.clear()}},Oa.prototype.find=function(e,t){null==e&&"bookmark"==this.type&&(e=1);for(var n,r,i=0;i<this.lines.length;++i){var o=this.lines[i],a=Sr(o.markedSpans,this);if(null!=a.from&&(n=sa(t?o:Si(o),a.from),-1==e))return n;if(null!=a.to&&(r=sa(t?o:Si(o),a.to),1==e))return r}return n&&{from:n,to:r}},Oa.prototype.changed=function(){var e=this.find(-1,!0),t=this,n=this.doc.cm;e&&n&&Yt(n,function(){var r=e.line,i=Si(e.line),o=At(n,i);if(o&&(Ht(o),n.curOp.selectionChanged=n.curOp.forceUpdate=!0),n.curOp.updateMaxLine=!0,!Ur(t.doc,r)&&null!=t.height){var a=t.height;t.height=null;var s=Gr(t)-a;s&&Ci(r,r.height+s)}})},Oa.prototype.attachLine=function(e){if(!this.lines.length&&this.doc.cm){var t=this.doc.cm.curOp;t.maybeHiddenMarkers&&-1!=to(t.maybeHiddenMarkers,this)||(t.maybeUnhiddenMarkers||(t.maybeUnhiddenMarkers=[])).push(this)}this.lines.push(e)},Oa.prototype.detachLine=function(e){if(this.lines.splice(to(this.lines,e),1),!this.lines.length&&this.doc.cm){var t=this.doc.cm.curOp;(t.maybeHiddenMarkers||(t.maybeHiddenMarkers=[])).push(this)}};var Fa=0,Pa=e.SharedTextMarker=function(e,t){this.markers=e,this.primary=t;for(var n=0;n<e.length;++n)e[n].parent=this};Yi(Pa),Pa.prototype.clear=function(){if(!this.explicitlyCleared){this.explicitlyCleared=!0;for(var e=0;e<this.markers.length;++e)this.markers[e].clear();Ui(this,"clear")}},Pa.prototype.find=function(e,t){return this.primary.find(e,t)};var Ra=e.LineWidget=function(e,t,n){if(n)for(var r in n)n.hasOwnProperty(r)&&(this[r]=n[r]);this.cm=e,this.node=t};Yi(Ra),Ra.prototype.clear=function(){var e=this.cm,t=this.line.widgets,n=this.line,r=Si(n);if(null!=r&&t){for(var i=0;i<t.length;++i)t[i]==this&&t.splice(i--,1);t.length||(n.widgets=null);var o=Gr(this);Yt(e,function(){$r(e,n,-o),rn(e,r,"widget"),Ci(n,Math.max(0,n.height-o))})}},Ra.prototype.changed=function(){var e=this.height,t=this.cm,n=this.line;this.height=null;var r=Gr(this)-e;r&&Yt(t,function(){t.curOp.forceUpdate=!0,$r(t,n,r),Ci(n,n.height+r)})};var Wa=e.Line=function(e,t,n){this.text=e,Hr(this,t),this.height=n?n(this):1};Yi(Wa),Wa.prototype.lineNo=function(){return Si(this)};var za={},Ba={};gi.prototype={chunkSize:function(){return this.lines.length},removeInner:function(e,t){for(var n=e,r=e+t;r>n;++n){var i=this.lines[n];this.height-=i.height,Kr(i),Ui(i,"delete")}this.lines.splice(e,t)},collapse:function(e){e.push.apply(e,this.lines)},insertInner:function(e,t,n){this.height+=n,this.lines=this.lines.slice(0,e).concat(t).concat(this.lines.slice(e));for(var r=0;r<t.length;++r)t[r].parent=this},iterN:function(e,t,n){for(var r=e+t;r>e;++e)if(n(this.lines[e]))return!0}},mi.prototype={chunkSize:function(){return this.size},removeInner:function(e,t){this.size-=t;for(var n=0;n<this.children.length;++n){var r=this.children[n],i=r.chunkSize();if(i>e){var o=Math.min(t,i-e),a=r.height;if(r.removeInner(e,o),this.height-=a-r.height,i==o&&(this.children.splice(n--,1),r.parent=null),0==(t-=o))break;e=0}else e-=i}if(this.size-t<25&&(this.children.length>1||!(this.children[0]instanceof gi))){var s=[];this.collapse(s),this.children=[new gi(s)],this.children[0].parent=this}},collapse:function(e){for(var t=0;t<this.children.length;++t)this.children[t].collapse(e)},insertInner:function(e,t,n){this.size+=t.length,this.height+=n;for(var r=0;r<this.children.length;++r){var i=this.children[r],o=i.chunkSize();if(o>=e){if(i.insertInner(e,t,n),i.lines&&i.lines.length>50){for(;i.lines.length>50;){var a=i.lines.splice(i.lines.length-25,25),s=new gi(a);i.height-=s.height,this.children.splice(r+1,0,s),s.parent=this}this.maybeSpill()}break}e-=o}},maybeSpill:function(){if(!(this.children.length<=10)){var e=this;do{var t=e.children.splice(e.children.length-5,5),n=new mi(t);if(e.parent){e.size-=n.size,e.height-=n.height;var r=to(e.parent.children,e);e.parent.children.splice(r+1,0,n)}else{var i=new mi(e.children);i.parent=e,e.children=[i,n],e=i}n.parent=e.parent}while(e.children.length>10);e.parent.maybeSpill()}},iterN:function(e,t,n){for(var r=0;r<this.children.length;++r){var i=this.children[r],o=i.chunkSize();if(o>e){var a=Math.min(t,o-e);if(i.iterN(e,a,n))return!0;if(0==(t-=a))break;e=0}else e-=o}}};var qa=0,Va=e.Doc=function(e,t,n){if(!(this instanceof Va))return new Va(e,t,n);null==n&&(n=0),mi.call(this,[new gi([new Wa("",null)])]),this.first=n,this.scrollTop=this.scrollLeft=0,this.cantEdit=!1,this.cleanGeneration=1,this.frontier=n;var r=sa(n,0);this.sel=J(r),this.history=new Li(null),this.id=++qa,this.modeOption=t,"string"==typeof e&&(e=ys(e)),pi(this,{from:r,to:r,text:e}),lt(this,J(r),rs)};Va.prototype=ro(mi.prototype,{constructor:Va,iter:function(e,t,n){n?this.iterN(e-this.first,t-e,n):this.iterN(this.first,this.first+this.size,e)},insert:function(e,t){for(var n=0,r=0;r<t.length;++r)n+=t[r].height;this.insertInner(e-this.first,t,n)},remove:function(e,t){this.removeInner(e-this.first,t)},getValue:function(e){var t=wi(this,this.first,this.first+this.size);return e===!1?t:t.join(e||"\n")},setValue:Zt(function(e){var t=sa(this.first,0),n=this.first+this.size-1;Jn(this,{from:t,to:sa(n,bi(this,n).text.length),text:ys(e),origin:"setValue"},!0),lt(this,J(t))}),replaceRange:function(e,t,n,r){t=K(this,t),n=n?K(this,n):t,tr(this,e,t,n,r)},getRange:function(e,t,n){var r=xi(this,K(this,e),K(this,t));return n===!1?r:r.join(n||"\n")},getLine:function(e){var t=this.getLineHandle(e);return t&&t.text},getLineHandle:function(e){return Z(this,e)?bi(this,e):void 0},getLineNumber:function(e){return Si(e)},getLineHandleVisualStart:function(e){return"number"==typeof e&&(e=bi(this,e)),zr(e)},lineCount:function(){return this.size},firstLine:function(){return this.first},lastLine:function(){return this.first+this.size-1},clipPos:function(e){return K(this,e)},getCursor:function(e){var t,n=this.sel.primary();return t=null==e||"head"==e?n.head:"anchor"==e?n.anchor:"end"==e||"to"==e||e===!1?n.to():n.from()},listSelections:function(){return this.sel.ranges},somethingSelected:function(){return this.sel.somethingSelected()},setCursor:Zt(function(e,t,n){ot(this,K(this,"number"==typeof e?sa(e,t||0):e),null,n)}),setSelection:Zt(function(e,t,n){ot(this,K(this,e),K(this,t||e),n)}),extendSelection:Zt(function(e,t,n){nt(this,K(this,e),t&&K(this,t),n)}),extendSelections:Zt(function(e,t){rt(this,et(this,e,t))}),extendSelectionsBy:Zt(function(e,t){rt(this,no(this.sel.ranges,e),t)}),setSelections:Zt(function(e,t,n){if(e.length){for(var r=0,i=[];r<e.length;r++)i[r]=new $(K(this,e[r].anchor),K(this,e[r].head));null==t&&(t=Math.min(e.length-1,this.sel.primIndex)),lt(this,G(i,t),n)}}),addSelection:Zt(function(e,t,n){var r=this.sel.ranges.slice(0);r.push(new $(K(this,e),K(this,t||e))),lt(this,G(r,r.length-1),n)}),getSelection:function(e){for(var t,n=this.sel.ranges,r=0;r<n.length;r++){var i=xi(this,n[r].from(),n[r].to());t=t?t.concat(i):i}return e===!1?t:t.join(e||"\n")},getSelections:function(e){for(var t=[],n=this.sel.ranges,r=0;r<n.length;r++){var i=xi(this,n[r].from(),n[r].to());e!==!1&&(i=i.join(e||"\n")),t[r]=i}return t},replaceSelection:function(e,t,n){for(var r=[],i=0;i<this.sel.ranges.length;i++)r[i]=e;this.replaceSelections(r,t,n||"+input")},replaceSelections:Zt(function(e,t,n){for(var r=[],i=this.sel,o=0;o<i.ranges.length;o++){var a=i.ranges[o];r[o]={from:a.from(),to:a.to(),text:ys(e[o]),origin:n}}for(var s=t&&"end"!=t&&$n(this,r,t),o=r.length-1;o>=0;o--)Jn(this,r[o]);s?st(this,s):this.cm&&sr(this.cm)}),undo:Zt(function(){Kn(this,"undo")}),redo:Zt(function(){Kn(this,"redo")}),undoSelection:Zt(function(){Kn(this,"undo",!0)}),redoSelection:Zt(function(){Kn(this,"redo",!0)}),setExtending:function(e){this.extend=e},getExtending:function(){return this.extend},historySize:function(){for(var e=this.history,t=0,n=0,r=0;r<e.done.length;r++)e.done[r].ranges||++t;for(var r=0;r<e.undone.length;r++)e.undone[r].ranges||++n;return{undo:t,redo:n}},clearHistory:function(){this.history=new Li(this.history.maxGeneration)},markClean:function(){this.cleanGeneration=this.changeGeneration(!0)},changeGeneration:function(e){return e&&(this.history.lastOp=this.history.lastOrigin=null),this.history.generation},isClean:function(e){return this.history.generation==(e||this.cleanGeneration)},getHistory:function(){return{done:Pi(this.history.done),undone:Pi(this.history.undone)}},setHistory:function(e){var t=this.history=new Li(this.history.maxGeneration);t.done=Pi(e.done.slice(0),null,!0),t.undone=Pi(e.undone.slice(0),null,!0)},markText:function(e,t,n){return vr(this,K(this,e),K(this,t),n,"range")},setBookmark:function(e,t){var n={replacedWith:t&&(null==t.nodeType?t.widget:t),insertLeft:t&&t.insertLeft,clearWhenEmpty:!1,shared:t&&t.shared};return e=K(this,e),vr(this,e,e,n,"bookmark")},findMarksAt:function(e){e=K(this,e);var t=[],n=bi(this,e.line).markedSpans;if(n)for(var r=0;r<n.length;++r){var i=n[r];(null==i.from||i.from<=e.ch)&&(null==i.to||i.to>=e.ch)&&t.push(i.marker.parent||i.marker)}return t},findMarks:function(e,t,n){e=K(this,e),t=K(this,t);var r=[],i=e.line;return this.iter(e.line,t.line+1,function(o){var a=o.markedSpans;if(a)for(var s=0;s<a.length;s++){var l=a[s];i==e.line&&e.ch>l.to||null==l.from&&i!=e.line||i==t.line&&l.from>t.ch||n&&!n(l.marker)||r.push(l.marker.parent||l.marker)}++i}),r},getAllMarks:function(){var e=[];return this.iter(function(t){var n=t.markedSpans;if(n)for(var r=0;r<n.length;++r)null!=n[r].from&&e.push(n[r].marker)}),e},posFromIndex:function(e){var t,n=this.first;return this.iter(function(r){var i=r.text.length+1;return i>e?(t=e,!0):(e-=i,void++n)}),K(this,sa(n,t))},indexFromPos:function(e){e=K(this,e);var t=e.ch;return e.line<this.first||e.ch<0?0:(this.iter(this.first,e.line,function(e){t+=e.text.length+1}),t)},copy:function(e){var t=new Va(wi(this,this.first,this.first+this.size),this.modeOption,this.first);return t.scrollTop=this.scrollTop,t.scrollLeft=this.scrollLeft,t.sel=this.sel,t.extend=!1,e&&(t.history.undoDepth=this.history.undoDepth,t.setHistory(this.getHistory())),t},linkedDoc:function(e){e||(e={});var t=this.first,n=this.first+this.size;null!=e.from&&e.from>t&&(t=e.from),null!=e.to&&e.to<n&&(n=e.to);var r=new Va(wi(this,t,n),e.mode||this.modeOption,t);return e.sharedHist&&(r.history=this.history),(this.linked||(this.linked=[])).push({doc:r,sharedHist:e.sharedHist}),r.linked=[{doc:this,isParent:!0,sharedHist:e.sharedHist}],xr(r,br(this)),r},unlinkDoc:function(t){if(t instanceof e&&(t=t.doc),this.linked)for(var n=0;n<this.linked.length;++n){var r=this.linked[n];if(r.doc==t){this.linked.splice(n,1),t.unlinkDoc(this),wr(br(this));break}}if(t.history==this.history){var i=[t.id];vi(t,function(e){i.push(e.id)},!0),t.history=new Li(null),t.history.done=Pi(this.history.done,i),t.history.undone=Pi(this.history.undone,i)}},iterLinkedDocs:function(e){vi(this,e)},getMode:function(){return this.mode},getEditor:function(){return this.cm}}),Va.prototype.eachLine=Va.prototype.iter;var Ua="iter insert remove copy getEditor".split(" ");for(var Xa in Va.prototype)Va.prototype.hasOwnProperty(Xa)&&to(Ua,Xa)<0&&(e.prototype[Xa]=function(e){return function(){return e.apply(this.doc,arguments)}}(Va.prototype[Xa]));Yi(Va);var $a,Ga=e.e_preventDefault=function(e){e.preventDefault?e.preventDefault():e.returnValue=!1},Ja=e.e_stopPropagation=function(e){e.stopPropagation?e.stopPropagation():e.cancelBubble=!0},Ya=e.e_stop=function(e){Ga(e),Ja(e)},Ka=e.on=function(e,t,n){if(e.addEventListener)e.addEventListener(t,n,!1);else if(e.attachEvent)e.attachEvent("on"+t,n);else{var r=e._handlers||(e._handlers={}),i=r[t]||(r[t]=[]);i.push(n)}},Qa=e.off=function(e,t,n){if(e.removeEventListener)e.removeEventListener(t,n,!1);else if(e.detachEvent)e.detachEvent("on"+t,n);else{var r=e._handlers&&e._handlers[t];if(!r)return;for(var i=0;i<r.length;++i)if(r[i]==n){r.splice(i,1);break}}},Za=e.signal=function(e,t){var n=e._handlers&&e._handlers[t];if(n)for(var r=Array.prototype.slice.call(arguments,2),i=0;i<n.length;++i)n[i].apply(null,r)},es=0,ts=30,ns=e.Pass={toString:function(){return"CodeMirror.Pass"}},rs={scroll:!1},is={origin:"*mouse"},os={origin:"+move"};Ki.prototype.set=function(e,t){clearTimeout(this.id),this.id=setTimeout(t,e)};var as=e.countColumn=function(e,t,n,r,i){null==t&&(t=e.search(/[^\s\u00a0]/),-1==t&&(t=e.length));for(var o=r||0,a=i||0;;){var s=e.indexOf(" ",o);if(0>s||s>=t)return a+(t-o);a+=s-o,a+=n-a%n,o=s+1}},ss=[""],ls=function(e){e.select()};Qo?ls=function(e){e.selectionStart=0,e.selectionEnd=e.value.length}:qo&&(ls=function(e){try{e.select()}catch(t){}}),[].indexOf&&(to=function(e,t){return e.indexOf(t)}),[].map&&(no=function(e,t){return e.map(t)});var us,cs=/[\u00df\u3040-\u309f\u30a0-\u30ff\u3400-\u4db5\u4e00-\u9fcc\uac00-\ud7af]/,fs=e.isWordChar=function(e){return/\w/.test(e)||e>"€"&&(e.toUpperCase()!=e.toLowerCase()||cs.test(e))},ds=/[\u0300-\u036f\u0483-\u0489\u0591-\u05bd\u05bf\u05c1\u05c2\u05c4\u05c5\u05c7\u0610-\u061a\u064b-\u065e\u0670\u06d6-\u06dc\u06de-\u06e4\u06e7\u06e8\u06ea-\u06ed\u0711\u0730-\u074a\u07a6-\u07b0\u07eb-\u07f3\u0816-\u0819\u081b-\u0823\u0825-\u0827\u0829-\u082d\u0900-\u0902\u093c\u0941-\u0948\u094d\u0951-\u0955\u0962\u0963\u0981\u09bc\u09be\u09c1-\u09c4\u09cd\u09d7\u09e2\u09e3\u0a01\u0a02\u0a3c\u0a41\u0a42\u0a47\u0a48\u0a4b-\u0a4d\u0a51\u0a70\u0a71\u0a75\u0a81\u0a82\u0abc\u0ac1-\u0ac5\u0ac7\u0ac8\u0acd\u0ae2\u0ae3\u0b01\u0b3c\u0b3e\u0b3f\u0b41-\u0b44\u0b4d\u0b56\u0b57\u0b62\u0b63\u0b82\u0bbe\u0bc0\u0bcd\u0bd7\u0c3e-\u0c40\u0c46-\u0c48\u0c4a-\u0c4d\u0c55\u0c56\u0c62\u0c63\u0cbc\u0cbf\u0cc2\u0cc6\u0ccc\u0ccd\u0cd5\u0cd6\u0ce2\u0ce3\u0d3e\u0d41-\u0d44\u0d4d\u0d57\u0d62\u0d63\u0dca\u0dcf\u0dd2-\u0dd4\u0dd6\u0ddf\u0e31\u0e34-\u0e3a\u0e47-\u0e4e\u0eb1\u0eb4-\u0eb9\u0ebb\u0ebc\u0ec8-\u0ecd\u0f18\u0f19\u0f35\u0f37\u0f39\u0f71-\u0f7e\u0f80-\u0f84\u0f86\u0f87\u0f90-\u0f97\u0f99-\u0fbc\u0fc6\u102d-\u1030\u1032-\u1037\u1039\u103a\u103d\u103e\u1058\u1059\u105e-\u1060\u1071-\u1074\u1082\u1085\u1086\u108d\u109d\u135f\u1712-\u1714\u1732-\u1734\u1752\u1753\u1772\u1773\u17b7-\u17bd\u17c6\u17c9-\u17d3\u17dd\u180b-\u180d\u18a9\u1920-\u1922\u1927\u1928\u1932\u1939-\u193b\u1a17\u1a18\u1a56\u1a58-\u1a5e\u1a60\u1a62\u1a65-\u1a6c\u1a73-\u1a7c\u1a7f\u1b00-\u1b03\u1b34\u1b36-\u1b3a\u1b3c\u1b42\u1b6b-\u1b73\u1b80\u1b81\u1ba2-\u1ba5\u1ba8\u1ba9\u1c2c-\u1c33\u1c36\u1c37\u1cd0-\u1cd2\u1cd4-\u1ce0\u1ce2-\u1ce8\u1ced\u1dc0-\u1de6\u1dfd-\u1dff\u200c\u200d\u20d0-\u20f0\u2cef-\u2cf1\u2de0-\u2dff\u302a-\u302f\u3099\u309a\ua66f-\ua672\ua67c\ua67d\ua6f0\ua6f1\ua802\ua806\ua80b\ua825\ua826\ua8c4\ua8e0-\ua8f1\ua926-\ua92d\ua947-\ua951\ua980-\ua982\ua9b3\ua9b6-\ua9b9\ua9bc\uaa29-\uaa2e\uaa31\uaa32\uaa35\uaa36\uaa43\uaa4c\uaab0\uaab2-\uaab4\uaab7\uaab8\uaabe\uaabf\uaac1\uabe5\uabe8\uabed\udc00-\udfff\ufb1e\ufe00-\ufe0f\ufe20-\ufe26\uff9e\uff9f]/;us=document.createRange?function(e,t,n){var r=document.createRange();return r.setEnd(e,n),r.setStart(e,t),r}:function(e,t,n){var r=document.body.createTextRange();return r.moveToElementText(e.parentNode),r.collapse(!0),r.moveEnd("character",n),r.moveStart("character",t),r},Po&&(po=function(){try{return document.activeElement}catch(e){return document.body}});var hs,ps,gs,ms=!1,vs=function(){if(Wo)return!1;var e=uo("div");return"draggable"in e||"dragDrop"in e}(),ys=e.splitLines=3!="\n\nb".split(/\n/).length?function(e){for(var t=0,n=[],r=e.length;r>=t;){var i=e.indexOf("\n",t);-1==i&&(i=e.length);var o=e.slice(t,"\r"==e.charAt(i-1)?i-1:i),a=o.indexOf("\r");-1!=a?(n.push(o.slice(0,a)),t+=a+1):(n.push(o),t=i+1)}return n}:function(e){return e.split(/\r\n?|\n/)},bs=window.getSelection?function(e){try{return e.selectionStart!=e.selectionEnd}catch(t){return!1}}:function(e){try{var t=e.ownerDocument.selection.createRange()}catch(n){}return t&&t.parentElement()==e?0!=t.compareEndPoints("StartToEnd",t):!1},xs=function(){var e=uo("div");return"oncopy"in e?!0:(e.setAttribute("oncopy","return;"),"function"==typeof e.oncopy)}(),ws={3:"Enter",8:"Backspace",9:"Tab",13:"Enter",16:"Shift",17:"Ctrl",18:"Alt",19:"Pause",20:"CapsLock",27:"Esc",32:"Space",33:"PageUp",34:"PageDown",35:"End",36:"Home",37:"Left",38:"Up",39:"Right",40:"Down",44:"PrintScrn",45:"Insert",46:"Delete",59:";",61:"=",91:"Mod",92:"Mod",93:"Mod",107:"=",109:"-",127:"Delete",173:"-",186:";",187:"=",188:",",189:"-",190:".",191:"/",192:"`",219:"[",220:"\\",221:"]",222:"'",63232:"Up",63233:"Down",63234:"Left",63235:"Right",63272:"Delete",63273:"Home",63275:"End",63276:"PageUp",63277:"PageDown",63302:"Insert"};e.keyNames=ws,function(){for(var e=0;10>e;e++)ws[e+48]=ws[e+96]=String(e);for(var e=65;90>=e;e++)ws[e]=String.fromCharCode(e);for(var e=1;12>=e;e++)ws[e+111]=ws[e+63235]="F"+e}();var Cs,Ss=function(){function e(e){return 247>=e?n.charAt(e):e>=1424&&1524>=e?"R":e>=1536&&1773>=e?r.charAt(e-1536):e>=1774&&2220>=e?"r":e>=8192&&8203>=e?"w":8204==e?"b":"L"}function t(e,t,n){this.level=e,this.from=t,this.to=n}var n="bbbbbbbbbtstwsbbbbbbbbbbbbbbssstwNN%%%NNNNNN,N,N1111111111NNNNNNNLLLLLLLLLLLLLLLLLLLLLLLLLLNNNNNNLLLLLLLLLLLLLLLLLLLLLLLLLLNNNNbbbbbbsbbbbbbbbbbbbbbbbbbbbbbbbbb,N%%%%NNNNLNNNNN%%11NLNNN1LNNNNNLLLLLLLLLLLLLLLLLLLLLLLNLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLN",r="rrrrrrrrrrrr,rNNmmmmmmrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrmmmmmmmmmmmmmmrrrrrrrnnnnnnnnnn%nnrrrmrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrmmmmmmmmmmmmmmmmmmmNmmmm",i=/[\u0590-\u05f4\u0600-\u06ff\u0700-\u08ac]/,o=/[stwN]/,a=/[LRr]/,s=/[Lb1n]/,l=/[1n]/,u="L";return function(n){if(!i.test(n))return!1;for(var r,c=n.length,f=[],d=0;c>d;++d)f.push(r=e(n.charCodeAt(d)));for(var d=0,h=u;c>d;++d){var r=f[d];"m"==r?f[d]=h:h=r}for(var d=0,p=u;c>d;++d){var r=f[d];"1"==r&&"r"==p?f[d]="n":a.test(r)&&(p=r,"r"==r&&(f[d]="R"))}for(var d=1,h=f[0];c-1>d;++d){var r=f[d];"+"==r&&"1"==h&&"1"==f[d+1]?f[d]="1":","!=r||h!=f[d+1]||"1"!=h&&"n"!=h||(f[d]=h),h=r}for(var d=0;c>d;++d){var r=f[d];if(","==r)f[d]="N";else if("%"==r){for(var g=d+1;c>g&&"%"==f[g];++g);for(var m=d&&"!"==f[d-1]||c>g&&"1"==f[g]?"1":"N",v=d;g>v;++v)f[v]=m;d=g-1}}for(var d=0,p=u;c>d;++d){var r=f[d];"L"==p&&"1"==r?f[d]="L":a.test(r)&&(p=r)}for(var d=0;c>d;++d)if(o.test(f[d])){for(var g=d+1;c>g&&o.test(f[g]);++g);for(var y="L"==(d?f[d-1]:u),b="L"==(c>g?f[g]:u),m=y||b?"L":"R",v=d;g>v;++v)f[v]=m;d=g-1}for(var x,w=[],d=0;c>d;)if(s.test(f[d])){var C=d;for(++d;c>d&&s.test(f[d]);++d);w.push(new t(0,C,d))}else{var S=d,T=w.length;for(++d;c>d&&"L"!=f[d];++d);for(var v=S;d>v;)if(l.test(f[v])){v>S&&w.splice(T,0,new t(1,S,v));var D=v;for(++v;d>v&&l.test(f[v]);++v);w.splice(T,0,new t(2,D,v)),S=v}else++v;d>S&&w.splice(T,0,new t(1,S,d))}return 1==w[0].level&&(x=n.match(/^\s+/))&&(w[0].from=x[0].length,w.unshift(new t(0,0,x[0].length))),1==eo(w).level&&(x=n.match(/\s+$/))&&(eo(w).to-=x[0].length,w.push(new t(0,c-x[0].length,c))),w[0].level!=eo(w).level&&w.push(new t(w[0].level,c,c)),w}}();return e.version="4.2.0",e})},{}],5:[function(t,n,r){!function(i){"object"==typeof r&&"object"==typeof n?i(t("../../lib/codemirror")):"function"==typeof e&&e.amd?e(["../../lib/codemirror"],i):i(CodeMirror)}(function(e){"use strict";e.defineMode("javascript",function(t,n){function r(e){for(var t,n=!1,r=!1;null!=(t=e.next());){if(!n){if("/"==t&&!r)return;"["==t?r=!0:r&&"]"==t&&(r=!1)}n=!n&&"\\"==t}}function i(e,t,n){return ht=e,pt=n,t}function o(e,t){var n=e.next();if('"'==n||"'"==n)return t.tokenize=a(n),t.tokenize(e,t);if("."==n&&e.match(/^\d+(?:[eE][+\-]?\d+)?/))return i("number","number");if("."==n&&e.match(".."))return i("spread","meta");if(/[\[\]{}\(\),;\:\.]/.test(n))return i(n);if("="==n&&e.eat(">"))return i("=>","operator");if("0"==n&&e.eat(/x/i))return e.eatWhile(/[\da-f]/i),i("number","number");if(/\d/.test(n))return e.match(/^\d*(?:\.\d*)?(?:[eE][+\-]?\d+)?/),i("number","number");if("/"==n)return e.eat("*")?(t.tokenize=s,s(e,t)):e.eat("/")?(e.skipToEnd(),i("comment","comment")):"operator"==t.lastType||"keyword c"==t.lastType||"sof"==t.lastType||/^[\[{}\(,;:]$/.test(t.lastType)?(r(e),e.eatWhile(/[gimy]/),i("regexp","string-2")):(e.eatWhile(wt),i("operator","operator",e.current()));if("`"==n)return t.tokenize=l,l(e,t);if("#"==n)return e.skipToEnd(),i("error","error");if(wt.test(n))return e.eatWhile(wt),i("operator","operator",e.current());e.eatWhile(/[\w\$_]/);var o=e.current(),u=xt.propertyIsEnumerable(o)&&xt[o];return u&&"."!=t.lastType?i(u.type,u.style,o):i("variable","variable",o)}function a(e){return function(t,n){var r,a=!1;if(vt&&"@"==t.peek()&&t.match(Ct))return n.tokenize=o,i("jsonld-keyword","meta");for(;null!=(r=t.next())&&(r!=e||a);)a=!a&&"\\"==r;return a||(n.tokenize=o),i("string","string")}}function s(e,t){for(var n,r=!1;n=e.next();){if("/"==n&&r){t.tokenize=o;break}r="*"==n}return i("comment","comment")}function l(e,t){for(var n,r=!1;null!=(n=e.next());){if(!r&&("`"==n||"$"==n&&e.eat("{"))){t.tokenize=o;break}r=!r&&"\\"==n}return i("quasi","string-2",e.current())}function u(e,t){t.fatArrowAt&&(t.fatArrowAt=null);var n=e.string.indexOf("=>",e.start);if(!(0>n)){for(var r=0,i=!1,o=n-1;o>=0;--o){var a=e.string.charAt(o),s=St.indexOf(a);if(s>=0&&3>s){if(!r){++o;break}if(0==--r)break}else if(s>=3&&6>s)++r;else if(/[$\w]/.test(a))i=!0;else if(i&&!r){++o;break}}i&&!r&&(t.fatArrowAt=o)}}function c(e,t,n,r,i,o){this.indented=e,this.column=t,this.type=n,this.prev=i,this.info=o,null!=r&&(this.align=r)}function f(e,t){for(var n=e.localVars;n;n=n.next)if(n.name==t)return!0;for(var r=e.context;r;r=r.prev)for(var n=r.vars;n;n=n.next)if(n.name==t)return!0}function d(e,t,n,r,i){var o=e.cc;for(Dt.state=e,Dt.stream=i,Dt.marked=null,Dt.cc=o,e.lexical.hasOwnProperty("align")||(e.lexical.align=!0);;){var a=o.length?o.pop():yt?C:w;if(a(n,r)){for(;o.length&&o[o.length-1].lex;)o.pop()();return Dt.marked?Dt.marked:"variable"==n&&f(e,r)?"variable-2":t}}}function h(){for(var e=arguments.length-1;e>=0;e--)Dt.cc.push(arguments[e])}function p(){return h.apply(null,arguments),!0}function g(e){function t(t){for(var n=t;n;n=n.next)if(n.name==e)return!0;return!1}var r=Dt.state;if(r.context){if(Dt.marked="def",t(r.localVars))return;r.localVars={name:e,next:r.localVars}}else{if(t(r.globalVars))return;n.globalVars&&(r.globalVars={name:e,next:r.globalVars})}}function m(){Dt.state.context={prev:Dt.state.context,vars:Dt.state.localVars},Dt.state.localVars=kt}function v(){Dt.state.localVars=Dt.state.context.vars,Dt.state.context=Dt.state.context.prev}function y(e,t){var n=function(){var n=Dt.state,r=n.indented;"stat"==n.lexical.type&&(r=n.lexical.indented),n.lexical=new c(r,Dt.stream.column(),e,null,n.lexical,t)};return n.lex=!0,n}function b(){var e=Dt.state;e.lexical.prev&&(")"==e.lexical.type&&(e.indented=e.lexical.indented),e.lexical=e.lexical.prev)}function x(e){function t(n){return n==e?p():";"==e?h():p(t)}return t}function w(e,t){return"var"==e?p(y("vardef",t.length),q,x(";"),b):"keyword a"==e?p(y("form"),C,w,b):"keyword b"==e?p(y("form"),w,b):"{"==e?p(y("}"),W,b):";"==e?p():"if"==e?("else"==Dt.state.lexical.info&&Dt.state.cc[Dt.state.cc.length-1]==b&&Dt.state.cc.pop()(),p(y("form"),C,w,b,G)):"function"==e?p(et):"for"==e?p(y("form"),J,w,b):"variable"==e?p(y("stat"),H):"switch"==e?p(y("form"),C,y("}","switch"),x("{"),W,b,b):"case"==e?p(C,x(":")):"default"==e?p(x(":")):"catch"==e?p(y("form"),m,x("("),tt,x(")"),w,b,v):"module"==e?p(y("form"),m,ot,v,b):"class"==e?p(y("form"),nt,it,b):"export"==e?p(y("form"),at,b):"import"==e?p(y("form"),st,b):h(y("stat"),C,x(";"),b)}function C(e){return T(e,!1)}function S(e){return T(e,!0)}function T(e,t){if(Dt.state.fatArrowAt==Dt.stream.start){var n=t?E:M;if("("==e)return p(m,y(")"),P(V,")"),b,x("=>"),n,v);if("variable"==e)return h(m,V,x("=>"),n,v)}var r=t?N:L;return Tt.hasOwnProperty(e)?p(r):"function"==e?p(et,r):"keyword c"==e?p(t?k:D):"("==e?p(y(")"),D,dt,x(")"),b,r):"operator"==e||"spread"==e?p(t?S:C):"["==e?p(y("]"),ct,b,r):"{"==e?R(I,"}",null,r):"quasi"==e?h(A,r):p()}function D(e){return e.match(/[;\}\)\],]/)?h():h(C)}function k(e){return e.match(/[;\}\)\],]/)?h():h(S)}function L(e,t){return","==e?p(C):N(e,t,!1)}function N(e,t,n){var r=0==n?L:N,i=0==n?C:S;return"=>"==t?p(m,n?E:M,v):"operator"==e?/\+\+|--/.test(t)?p(r):"?"==t?p(C,x(":"),i):p(i):"quasi"==e?h(A,r):";"!=e?"("==e?R(S,")","call",r):"."==e?p(j,r):"["==e?p(y("]"),D,x("]"),b,r):void 0:void 0}function A(e,t){return"quasi"!=e?h():"${"!=t.slice(t.length-2)?p(A):p(C,_)}function _(e){return"}"==e?(Dt.marked="string-2",Dt.state.tokenize=l,p(A)):void 0}function M(e){return u(Dt.stream,Dt.state),h("{"==e?w:C)}function E(e){return u(Dt.stream,Dt.state),h("{"==e?w:S)}function H(e){return":"==e?p(b,w):h(L,x(";"),b)}function j(e){return"variable"==e?(Dt.marked="property",p()):void 0}function I(e,t){if("variable"==e){if(Dt.marked="property","get"==t||"set"==t)return p(O)}else if("number"==e||"string"==e)Dt.marked=vt?"property":e+" property";else if("["==e)return p(C,x("]"),F);return Tt.hasOwnProperty(e)?p(F):void 0}function O(e){return"variable"!=e?h(F):(Dt.marked="property",p(et))}function F(e){return":"==e?p(S):"("==e?h(et):void 0}function P(e,t){function n(r){if(","==r){var i=Dt.state.lexical;return"call"==i.info&&(i.pos=(i.pos||0)+1),p(e,n)}return r==t?p():p(x(t))}return function(r){return r==t?p():h(e,n)}}function R(e,t,n){for(var r=3;r<arguments.length;r++)Dt.cc.push(arguments[r]);return p(y(t,n),P(e,t),b)}function W(e){return"}"==e?p():h(w,W)}function z(e){return bt&&":"==e?p(B):void 0}function B(e){return"variable"==e?(Dt.marked="variable-3",p()):void 0}function q(){return h(V,z,X,$)}function V(e,t){return"variable"==e?(g(t),p()):"["==e?R(V,"]"):"{"==e?R(U,"}"):void 0}function U(e,t){return"variable"!=e||Dt.stream.match(/^\s*:/,!1)?("variable"==e&&(Dt.marked="property"),p(x(":"),V,X)):(g(t),p(X))}function X(e,t){return"="==t?p(S):void 0}function $(e){return","==e?p(q):void 0}function G(e,t){return"keyword b"==e&&"else"==t?p(y("form","else"),w,b):void 0}function J(e){return"("==e?p(y(")"),Y,x(")"),b):void 0}function Y(e){return"var"==e?p(q,x(";"),Q):";"==e?p(Q):"variable"==e?p(K):h(C,x(";"),Q)}function K(e,t){return"in"==t||"of"==t?(Dt.marked="keyword",p(C)):p(L,Q)}function Q(e,t){return";"==e?p(Z):"in"==t||"of"==t?(Dt.marked="keyword",p(C)):h(C,x(";"),Z)}function Z(e){")"!=e&&p(C)}function et(e,t){return"*"==t?(Dt.marked="keyword",p(et)):"variable"==e?(g(t),p(et)):"("==e?p(m,y(")"),P(tt,")"),b,w,v):void 0}function tt(e){return"spread"==e?p(tt):h(V,z)}function nt(e,t){return"variable"==e?(g(t),p(rt)):void 0}function rt(e,t){return"extends"==t?p(C):void 0}function it(e){return"{"==e?R(I,"}"):void 0}function ot(e,t){return"string"==e?p(w):"variable"==e?(g(t),p(ut)):void 0}function at(e,t){return"*"==t?(Dt.marked="keyword",p(ut,x(";"))):"default"==t?(Dt.marked="keyword",p(C,x(";"))):h(w)}function st(e){return"string"==e?p():h(lt,ut)}function lt(e,t){return"{"==e?R(lt,"}"):("variable"==e&&g(t),p())}function ut(e,t){return"from"==t?(Dt.marked="keyword",p(C)):void 0}function ct(e){return"]"==e?p():h(S,ft)}function ft(e){return"for"==e?h(dt,x("]")):","==e?p(P(S,"]")):h(P(S,"]"))}function dt(e){return"for"==e?p(J,dt):"if"==e?p(C,dt):void 0}var ht,pt,gt=t.indentUnit,mt=n.statementIndent,vt=n.jsonld,yt=n.json||vt,bt=n.typescript,xt=function(){function e(e){return{type:e,style:"keyword"}}var t=e("keyword a"),n=e("keyword b"),r=e("keyword c"),i=e("operator"),o={type:"atom",style:"atom"},a={"if":e("if"),"while":t,"with":t,"else":n,"do":n,"try":n,"finally":n,"return":r,"break":r,"continue":r,"new":r,"delete":r,"throw":r,"debugger":r,"var":e("var"),"const":e("var"),let:e("var"),"function":e("function"),"catch":e("catch"),"for":e("for"),"switch":e("switch"),"case":e("case"),"default":e("default"),"in":i,"typeof":i,"instanceof":i,"true":o,"false":o,"null":o,undefined:o,NaN:o,Infinity:o,"this":e("this"),module:e("module"),"class":e("class"),"super":e("atom"),"yield":r,"export":e("export"),"import":e("import"),"extends":r};if(bt){var s={type:"variable",style:"variable-3"},l={"interface":e("interface"),"extends":e("extends"),constructor:e("constructor"),"public":e("public"),"private":e("private"),"protected":e("protected"),"static":e("static"),string:s,number:s,bool:s,any:s}; for(var u in l)a[u]=l[u]}return a}(),wt=/[+\-*&%=<>!?|~^]/,Ct=/^@(context|id|value|language|type|container|list|set|reverse|index|base|vocab|graph)"/,St="([{}])",Tt={atom:!0,number:!0,variable:!0,string:!0,regexp:!0,"this":!0,"jsonld-keyword":!0},Dt={state:null,column:null,marked:null,cc:null},kt={name:"this",next:{name:"arguments"}};return b.lex=!0,{startState:function(e){var t={tokenize:o,lastType:"sof",cc:[],lexical:new c((e||0)-gt,0,"block",!1),localVars:n.localVars,context:n.localVars&&{vars:n.localVars},indented:0};return n.globalVars&&"object"==typeof n.globalVars&&(t.globalVars=n.globalVars),t},token:function(e,t){if(e.sol()&&(t.lexical.hasOwnProperty("align")||(t.lexical.align=!1),t.indented=e.indentation(),u(e,t)),t.tokenize!=s&&e.eatSpace())return null;var n=t.tokenize(e,t);return"comment"==ht?n:(t.lastType="operator"!=ht||"++"!=pt&&"--"!=pt?ht:"incdec",d(t,n,ht,pt,e))},indent:function(t,r){if(t.tokenize==s)return e.Pass;if(t.tokenize!=o)return 0;var i=r&&r.charAt(0),a=t.lexical;if(!/^\s*else\b/.test(r))for(var l=t.cc.length-1;l>=0;--l){var u=t.cc[l];if(u==b)a=a.prev;else if(u!=G)break}"stat"==a.type&&"}"==i&&(a=a.prev),mt&&")"==a.type&&"stat"==a.prev.type&&(a=a.prev);var c=a.type,f=i==c;return"vardef"==c?a.indented+("operator"==t.lastType||","==t.lastType?a.info+1:0):"form"==c&&"{"==i?a.indented:"form"==c?a.indented+gt:"stat"==c?a.indented+("operator"==t.lastType||","==t.lastType?mt||gt:0):"switch"!=a.info||f||0==n.doubleIndentSwitch?a.align?a.column+(f?0:1):a.indented+(f?0:gt):a.indented+(/^(?:case|default)\b/.test(r)?gt:2*gt)},electricChars:":{}",blockCommentStart:yt?null:"/*",blockCommentEnd:yt?null:"*/",lineComment:yt?null:"//",fold:"brace",helperType:yt?"json":"javascript",jsonldMode:vt,jsonMode:yt}}),e.registerHelper("wordChars","javascript",/[\\w$]/),e.defineMIME("text/javascript","javascript"),e.defineMIME("text/ecmascript","javascript"),e.defineMIME("application/javascript","javascript"),e.defineMIME("application/ecmascript","javascript"),e.defineMIME("application/json",{name:"javascript",json:!0}),e.defineMIME("application/x-json",{name:"javascript",json:!0}),e.defineMIME("application/ld+json",{name:"javascript",jsonld:!0}),e.defineMIME("text/typescript",{name:"javascript",typescript:!0}),e.defineMIME("application/typescript",{name:"javascript",typescript:!0})})},{"../../lib/codemirror":4}],6:[function(t,n,r){!function(i){"object"==typeof r&&"object"==typeof n?i(t("../../lib/codemirror")):"function"==typeof e&&e.amd?e(["../../lib/codemirror"],i):i(CodeMirror)}(function(e){"use strict";e.defineMode("xml",function(t,n){function r(e,t){function n(n){return t.tokenize=n,n(e,t)}var r=e.next();if("<"==r)return e.eat("!")?e.eat("[")?e.match("CDATA[")?n(a("atom","]]>")):null:e.match("--")?n(a("comment","-->")):e.match("DOCTYPE",!0,!0)?(e.eatWhile(/[\w\._\-]/),n(s(1))):null:e.eat("?")?(e.eatWhile(/[\w\._\-]/),t.tokenize=a("meta","?>"),"meta"):(S=e.eat("/")?"closeTag":"openTag",t.tokenize=i,"tag bracket");if("&"==r){var o;return o=e.eat("#")?e.eat("x")?e.eatWhile(/[a-fA-F\d]/)&&e.eat(";"):e.eatWhile(/[\d]/)&&e.eat(";"):e.eatWhile(/[\w\.\-:]/)&&e.eat(";"),o?"atom":"error"}return e.eatWhile(/[^&<]/),null}function i(e,t){var n=e.next();if(">"==n||"/"==n&&e.eat(">"))return t.tokenize=r,S=">"==n?"endTag":"selfcloseTag","tag bracket";if("="==n)return S="equals",null;if("<"==n){t.tokenize=r,t.state=f,t.tagName=t.tagStart=null;var i=t.tokenize(e,t);return i?i+" tag error":"tag error"}return/[\'\"]/.test(n)?(t.tokenize=o(n),t.stringStartCol=e.column(),t.tokenize(e,t)):(e.match(/^[^\s\u00a0=<>\"\']*[^\s\u00a0=<>\"\'\/]/),"word")}function o(e){var t=function(t,n){for(;!t.eol();)if(t.next()==e){n.tokenize=i;break}return"string"};return t.isInAttribute=!0,t}function a(e,t){return function(n,i){for(;!n.eol();){if(n.match(t)){i.tokenize=r;break}n.next()}return e}}function s(e){return function(t,n){for(var i;null!=(i=t.next());){if("<"==i)return n.tokenize=s(e+1),n.tokenize(t,n);if(">"==i){if(1==e){n.tokenize=r;break}return n.tokenize=s(e-1),n.tokenize(t,n)}}return"meta"}}function l(e,t,n){this.prev=e.context,this.tagName=t,this.indent=e.indented,this.startOfLine=n,(D.doNotIndent.hasOwnProperty(t)||e.context&&e.context.noIndent)&&(this.noIndent=!0)}function u(e){e.context&&(e.context=e.context.prev)}function c(e,t){for(var n;;){if(!e.context)return;if(n=e.context.tagName,!D.contextGrabbers.hasOwnProperty(n)||!D.contextGrabbers[n].hasOwnProperty(t))return;u(e)}}function f(e,t,n){return"openTag"==e?(n.tagStart=t.column(),d):"closeTag"==e?h:f}function d(e,t,n){return"word"==e?(n.tagName=t.current(),T="tag",m):(T="error",d)}function h(e,t,n){if("word"==e){var r=t.current();return n.context&&n.context.tagName!=r&&D.implicitlyClosed.hasOwnProperty(n.context.tagName)&&u(n),n.context&&n.context.tagName==r?(T="tag",p):(T="tag error",g)}return T="error",g}function p(e,t,n){return"endTag"!=e?(T="error",p):(u(n),f)}function g(e,t,n){return T="error",p(e,t,n)}function m(e,t,n){if("word"==e)return T="attribute",v;if("endTag"==e||"selfcloseTag"==e){var r=n.tagName,i=n.tagStart;return n.tagName=n.tagStart=null,"selfcloseTag"==e||D.autoSelfClosers.hasOwnProperty(r)?c(n,r):(c(n,r),n.context=new l(n,r,i==n.indented)),f}return T="error",m}function v(e,t,n){return"equals"==e?y:(D.allowMissing||(T="error"),m(e,t,n))}function y(e,t,n){return"string"==e?b:"word"==e&&D.allowUnquoted?(T="string",m):(T="error",m(e,t,n))}function b(e,t,n){return"string"==e?b:m(e,t,n)}var x=t.indentUnit,w=n.multilineTagIndentFactor||1,C=n.multilineTagIndentPastTag;null==C&&(C=!0);var S,T,D=n.htmlMode?{autoSelfClosers:{area:!0,base:!0,br:!0,col:!0,command:!0,embed:!0,frame:!0,hr:!0,img:!0,input:!0,keygen:!0,link:!0,meta:!0,param:!0,source:!0,track:!0,wbr:!0},implicitlyClosed:{dd:!0,li:!0,optgroup:!0,option:!0,p:!0,rp:!0,rt:!0,tbody:!0,td:!0,tfoot:!0,th:!0,tr:!0},contextGrabbers:{dd:{dd:!0,dt:!0},dt:{dd:!0,dt:!0},li:{li:!0},option:{option:!0,optgroup:!0},optgroup:{optgroup:!0},p:{address:!0,article:!0,aside:!0,blockquote:!0,dir:!0,div:!0,dl:!0,fieldset:!0,footer:!0,form:!0,h1:!0,h2:!0,h3:!0,h4:!0,h5:!0,h6:!0,header:!0,hgroup:!0,hr:!0,menu:!0,nav:!0,ol:!0,p:!0,pre:!0,section:!0,table:!0,ul:!0},rp:{rp:!0,rt:!0},rt:{rp:!0,rt:!0},tbody:{tbody:!0,tfoot:!0},td:{td:!0,th:!0},tfoot:{tbody:!0},th:{td:!0,th:!0},thead:{tbody:!0,tfoot:!0},tr:{tr:!0}},doNotIndent:{pre:!0},allowUnquoted:!0,allowMissing:!0,caseFold:!0}:{autoSelfClosers:{},implicitlyClosed:{},contextGrabbers:{},doNotIndent:{},allowUnquoted:!1,allowMissing:!1,caseFold:!1},k=n.alignCDATA;return{startState:function(){return{tokenize:r,state:f,indented:0,tagName:null,tagStart:null,context:null}},token:function(e,t){if(!t.tagName&&e.sol()&&(t.indented=e.indentation()),e.eatSpace())return null;S=null;var n=t.tokenize(e,t);return(n||S)&&"comment"!=n&&(T=null,t.state=t.state(S||n,e,t),T&&(n="error"==T?n+" error":T)),n},indent:function(t,n,o){var a=t.context;if(t.tokenize.isInAttribute)return t.tagStart==t.indented?t.stringStartCol+1:t.indented+x;if(a&&a.noIndent)return e.Pass;if(t.tokenize!=i&&t.tokenize!=r)return o?o.match(/^(\s*)/)[0].length:0;if(t.tagName)return C?t.tagStart+t.tagName.length+2:t.tagStart+x*w;if(k&&/<!\[CDATA\[/.test(n))return 0;var s=n&&/^<(\/)?([\w_:\.-]*)/.exec(n);if(s&&s[1])for(;a;){if(a.tagName==s[2]){a=a.prev;break}if(!D.implicitlyClosed.hasOwnProperty(a.tagName))break;a=a.prev}else if(s)for(;a;){var l=D.contextGrabbers[a.tagName];if(!l||!l.hasOwnProperty(s[2]))break;a=a.prev}for(;a&&!a.startOfLine;)a=a.prev;return a?a.indent+x:0},electricInput:/<\/[\s\w:]+>$/,blockCommentStart:"<!--",blockCommentEnd:"-->",configuration:n.htmlMode?"html":"xml",helperType:n.htmlMode?"html":"xml"}}),e.defineMIME("text/xml","xml"),e.defineMIME("application/xml","xml"),e.mimeModes.hasOwnProperty("text/html")||e.defineMIME("text/html",{name:"xml",htmlMode:!0})})},{"../../lib/codemirror":4}],7:[function(t,n){!function(e,t){"object"==typeof n&&"object"==typeof n.exports?n.exports=e.document?t(e,!0):function(e){if(!e.document)throw new Error("jQuery requires a window with a document");return t(e)}:t(e)}("undefined"!=typeof window?window:this,function(t,n){function r(e){var t=e.length,n=ot.type(e);return"function"===n||ot.isWindow(e)?!1:1===e.nodeType&&t?!0:"array"===n||0===t||"number"==typeof t&&t>0&&t-1 in e}function i(e,t,n){if(ot.isFunction(t))return ot.grep(e,function(e,r){return!!t.call(e,r,e)!==n});if(t.nodeType)return ot.grep(e,function(e){return e===t!==n});if("string"==typeof t){if(ht.test(t))return ot.filter(t,e,n);t=ot.filter(t,e)}return ot.grep(e,function(e){return ot.inArray(e,t)>=0!==n})}function o(e,t){do e=e[t];while(e&&1!==e.nodeType);return e}function a(e){var t=wt[e]={};return ot.each(e.match(xt)||[],function(e,n){t[n]=!0}),t}function s(){gt.addEventListener?(gt.removeEventListener("DOMContentLoaded",l,!1),t.removeEventListener("load",l,!1)):(gt.detachEvent("onreadystatechange",l),t.detachEvent("onload",l))}function l(){(gt.addEventListener||"load"===event.type||"complete"===gt.readyState)&&(s(),ot.ready())}function u(e,t,n){if(void 0===n&&1===e.nodeType){var r="data-"+t.replace(kt,"-$1").toLowerCase();if(n=e.getAttribute(r),"string"==typeof n){try{n="true"===n?!0:"false"===n?!1:"null"===n?null:+n+""===n?+n:Dt.test(n)?ot.parseJSON(n):n}catch(i){}ot.data(e,t,n)}else n=void 0}return n}function c(e){var t;for(t in e)if(("data"!==t||!ot.isEmptyObject(e[t]))&&"toJSON"!==t)return!1;return!0}function f(e,t,n,r){if(ot.acceptData(e)){var i,o,a=ot.expando,s=e.nodeType,l=s?ot.cache:e,u=s?e[a]:e[a]&&a;if(u&&l[u]&&(r||l[u].data)||void 0!==n||"string"!=typeof t)return u||(u=s?e[a]=J.pop()||ot.guid++:a),l[u]||(l[u]=s?{}:{toJSON:ot.noop}),("object"==typeof t||"function"==typeof t)&&(r?l[u]=ot.extend(l[u],t):l[u].data=ot.extend(l[u].data,t)),o=l[u],r||(o.data||(o.data={}),o=o.data),void 0!==n&&(o[ot.camelCase(t)]=n),"string"==typeof t?(i=o[t],null==i&&(i=o[ot.camelCase(t)])):i=o,i}}function d(e,t,n){if(ot.acceptData(e)){var r,i,o=e.nodeType,a=o?ot.cache:e,s=o?e[ot.expando]:ot.expando;if(a[s]){if(t&&(r=n?a[s]:a[s].data)){ot.isArray(t)?t=t.concat(ot.map(t,ot.camelCase)):t in r?t=[t]:(t=ot.camelCase(t),t=t in r?[t]:t.split(" ")),i=t.length;for(;i--;)delete r[t[i]];if(n?!c(r):!ot.isEmptyObject(r))return}(n||(delete a[s].data,c(a[s])))&&(o?ot.cleanData([e],!0):rt.deleteExpando||a!=a.window?delete a[s]:a[s]=null)}}}function h(){return!0}function p(){return!1}function g(){try{return gt.activeElement}catch(e){}}function m(e){var t=Ft.split("|"),n=e.createDocumentFragment();if(n.createElement)for(;t.length;)n.createElement(t.pop());return n}function v(e,t){var n,r,i=0,o=typeof e.getElementsByTagName!==Tt?e.getElementsByTagName(t||"*"):typeof e.querySelectorAll!==Tt?e.querySelectorAll(t||"*"):void 0;if(!o)for(o=[],n=e.childNodes||e;null!=(r=n[i]);i++)!t||ot.nodeName(r,t)?o.push(r):ot.merge(o,v(r,t));return void 0===t||t&&ot.nodeName(e,t)?ot.merge([e],o):o}function y(e){Mt.test(e.type)&&(e.defaultChecked=e.checked)}function b(e,t){return ot.nodeName(e,"table")&&ot.nodeName(11!==t.nodeType?t:t.firstChild,"tr")?e.getElementsByTagName("tbody")[0]||e.appendChild(e.ownerDocument.createElement("tbody")):e}function x(e){return e.type=(null!==ot.find.attr(e,"type"))+"/"+e.type,e}function w(e){var t=Gt.exec(e.type);return t?e.type=t[1]:e.removeAttribute("type"),e}function C(e,t){for(var n,r=0;null!=(n=e[r]);r++)ot._data(n,"globalEval",!t||ot._data(t[r],"globalEval"))}function S(e,t){if(1===t.nodeType&&ot.hasData(e)){var n,r,i,o=ot._data(e),a=ot._data(t,o),s=o.events;if(s){delete a.handle,a.events={};for(n in s)for(r=0,i=s[n].length;i>r;r++)ot.event.add(t,n,s[n][r])}a.data&&(a.data=ot.extend({},a.data))}}function T(e,t){var n,r,i;if(1===t.nodeType){if(n=t.nodeName.toLowerCase(),!rt.noCloneEvent&&t[ot.expando]){i=ot._data(t);for(r in i.events)ot.removeEvent(t,r,i.handle);t.removeAttribute(ot.expando)}"script"===n&&t.text!==e.text?(x(t).text=e.text,w(t)):"object"===n?(t.parentNode&&(t.outerHTML=e.outerHTML),rt.html5Clone&&e.innerHTML&&!ot.trim(t.innerHTML)&&(t.innerHTML=e.innerHTML)):"input"===n&&Mt.test(e.type)?(t.defaultChecked=t.checked=e.checked,t.value!==e.value&&(t.value=e.value)):"option"===n?t.defaultSelected=t.selected=e.defaultSelected:("input"===n||"textarea"===n)&&(t.defaultValue=e.defaultValue)}}function D(e,n){var r,i=ot(n.createElement(e)).appendTo(n.body),o=t.getDefaultComputedStyle&&(r=t.getDefaultComputedStyle(i[0]))?r.display:ot.css(i[0],"display");return i.detach(),o}function k(e){var t=gt,n=en[e];return n||(n=D(e,t),"none"!==n&&n||(Zt=(Zt||ot("<iframe frameborder='0' width='0' height='0'/>")).appendTo(t.documentElement),t=(Zt[0].contentWindow||Zt[0].contentDocument).document,t.write(),t.close(),n=D(e,t),Zt.detach()),en[e]=n),n}function L(e,t){return{get:function(){var n=e();if(null!=n)return n?void delete this.get:(this.get=t).apply(this,arguments)}}}function N(e,t){if(t in e)return t;for(var n=t.charAt(0).toUpperCase()+t.slice(1),r=t,i=pn.length;i--;)if(t=pn[i]+n,t in e)return t;return r}function A(e,t){for(var n,r,i,o=[],a=0,s=e.length;s>a;a++)r=e[a],r.style&&(o[a]=ot._data(r,"olddisplay"),n=r.style.display,t?(o[a]||"none"!==n||(r.style.display=""),""===r.style.display&&At(r)&&(o[a]=ot._data(r,"olddisplay",k(r.nodeName)))):(i=At(r),(n&&"none"!==n||!i)&&ot._data(r,"olddisplay",i?n:ot.css(r,"display"))));for(a=0;s>a;a++)r=e[a],r.style&&(t&&"none"!==r.style.display&&""!==r.style.display||(r.style.display=t?o[a]||"":"none"));return e}function _(e,t,n){var r=cn.exec(t);return r?Math.max(0,r[1]-(n||0))+(r[2]||"px"):t}function M(e,t,n,r,i){for(var o=n===(r?"border":"content")?4:"width"===t?1:0,a=0;4>o;o+=2)"margin"===n&&(a+=ot.css(e,n+Nt[o],!0,i)),r?("content"===n&&(a-=ot.css(e,"padding"+Nt[o],!0,i)),"margin"!==n&&(a-=ot.css(e,"border"+Nt[o]+"Width",!0,i))):(a+=ot.css(e,"padding"+Nt[o],!0,i),"padding"!==n&&(a+=ot.css(e,"border"+Nt[o]+"Width",!0,i)));return a}function E(e,t,n){var r=!0,i="width"===t?e.offsetWidth:e.offsetHeight,o=tn(e),a=rt.boxSizing&&"border-box"===ot.css(e,"boxSizing",!1,o);if(0>=i||null==i){if(i=nn(e,t,o),(0>i||null==i)&&(i=e.style[t]),on.test(i))return i;r=a&&(rt.boxSizingReliable()||i===e.style[t]),i=parseFloat(i)||0}return i+M(e,t,n||(a?"border":"content"),r,o)+"px"}function H(e,t,n,r,i){return new H.prototype.init(e,t,n,r,i)}function j(){return setTimeout(function(){gn=void 0}),gn=ot.now()}function I(e,t){var n,r={height:e},i=0;for(t=t?1:0;4>i;i+=2-t)n=Nt[i],r["margin"+n]=r["padding"+n]=e;return t&&(r.opacity=r.width=e),r}function O(e,t,n){for(var r,i=(wn[t]||[]).concat(wn["*"]),o=0,a=i.length;a>o;o++)if(r=i[o].call(n,t,e))return r}function F(e,t,n){var r,i,o,a,s,l,u,c,f=this,d={},h=e.style,p=e.nodeType&&At(e),g=ot._data(e,"fxshow");n.queue||(s=ot._queueHooks(e,"fx"),null==s.unqueued&&(s.unqueued=0,l=s.empty.fire,s.empty.fire=function(){s.unqueued||l()}),s.unqueued++,f.always(function(){f.always(function(){s.unqueued--,ot.queue(e,"fx").length||s.empty.fire()})})),1===e.nodeType&&("height"in t||"width"in t)&&(n.overflow=[h.overflow,h.overflowX,h.overflowY],u=ot.css(e,"display"),c="none"===u?ot._data(e,"olddisplay")||k(e.nodeName):u,"inline"===c&&"none"===ot.css(e,"float")&&(rt.inlineBlockNeedsLayout&&"inline"!==k(e.nodeName)?h.zoom=1:h.display="inline-block")),n.overflow&&(h.overflow="hidden",rt.shrinkWrapBlocks()||f.always(function(){h.overflow=n.overflow[0],h.overflowX=n.overflow[1],h.overflowY=n.overflow[2]}));for(r in t)if(i=t[r],vn.exec(i)){if(delete t[r],o=o||"toggle"===i,i===(p?"hide":"show")){if("show"!==i||!g||void 0===g[r])continue;p=!0}d[r]=g&&g[r]||ot.style(e,r)}else u=void 0;if(ot.isEmptyObject(d))"inline"===("none"===u?k(e.nodeName):u)&&(h.display=u);else{g?"hidden"in g&&(p=g.hidden):g=ot._data(e,"fxshow",{}),o&&(g.hidden=!p),p?ot(e).show():f.done(function(){ot(e).hide()}),f.done(function(){var t;ot._removeData(e,"fxshow");for(t in d)ot.style(e,t,d[t])});for(r in d)a=O(p?g[r]:0,r,f),r in g||(g[r]=a.start,p&&(a.end=a.start,a.start="width"===r||"height"===r?1:0))}}function P(e,t){var n,r,i,o,a;for(n in e)if(r=ot.camelCase(n),i=t[r],o=e[n],ot.isArray(o)&&(i=o[1],o=e[n]=o[0]),n!==r&&(e[r]=o,delete e[n]),a=ot.cssHooks[r],a&&"expand"in a){o=a.expand(o),delete e[r];for(n in o)n in e||(e[n]=o[n],t[n]=i)}else t[r]=i}function R(e,t,n){var r,i,o=0,a=xn.length,s=ot.Deferred().always(function(){delete l.elem}),l=function(){if(i)return!1;for(var t=gn||j(),n=Math.max(0,u.startTime+u.duration-t),r=n/u.duration||0,o=1-r,a=0,l=u.tweens.length;l>a;a++)u.tweens[a].run(o);return s.notifyWith(e,[u,o,n]),1>o&&l?n:(s.resolveWith(e,[u]),!1)},u=s.promise({elem:e,props:ot.extend({},t),opts:ot.extend(!0,{specialEasing:{}},n),originalProperties:t,originalOptions:n,startTime:gn||j(),duration:n.duration,tweens:[],createTween:function(t,n){var r=ot.Tween(e,u.opts,t,n,u.opts.specialEasing[t]||u.opts.easing);return u.tweens.push(r),r},stop:function(t){var n=0,r=t?u.tweens.length:0;if(i)return this;for(i=!0;r>n;n++)u.tweens[n].run(1);return t?s.resolveWith(e,[u,t]):s.rejectWith(e,[u,t]),this}}),c=u.props;for(P(c,u.opts.specialEasing);a>o;o++)if(r=xn[o].call(u,e,c,u.opts))return r;return ot.map(c,O,u),ot.isFunction(u.opts.start)&&u.opts.start.call(e,u),ot.fx.timer(ot.extend(l,{elem:e,anim:u,queue:u.opts.queue})),u.progress(u.opts.progress).done(u.opts.done,u.opts.complete).fail(u.opts.fail).always(u.opts.always)}function W(e){return function(t,n){"string"!=typeof t&&(n=t,t="*");var r,i=0,o=t.toLowerCase().match(xt)||[];if(ot.isFunction(n))for(;r=o[i++];)"+"===r.charAt(0)?(r=r.slice(1)||"*",(e[r]=e[r]||[]).unshift(n)):(e[r]=e[r]||[]).push(n)}}function z(e,t,n,r){function i(s){var l;return o[s]=!0,ot.each(e[s]||[],function(e,s){var u=s(t,n,r);return"string"!=typeof u||a||o[u]?a?!(l=u):void 0:(t.dataTypes.unshift(u),i(u),!1)}),l}var o={},a=e===Un;return i(t.dataTypes[0])||!o["*"]&&i("*")}function B(e,t){var n,r,i=ot.ajaxSettings.flatOptions||{};for(r in t)void 0!==t[r]&&((i[r]?e:n||(n={}))[r]=t[r]);return n&&ot.extend(!0,e,n),e}function q(e,t,n){for(var r,i,o,a,s=e.contents,l=e.dataTypes;"*"===l[0];)l.shift(),void 0===i&&(i=e.mimeType||t.getResponseHeader("Content-Type"));if(i)for(a in s)if(s[a]&&s[a].test(i)){l.unshift(a);break}if(l[0]in n)o=l[0];else{for(a in n){if(!l[0]||e.converters[a+" "+l[0]]){o=a;break}r||(r=a)}o=o||r}return o?(o!==l[0]&&l.unshift(o),n[o]):void 0}function V(e,t,n,r){var i,o,a,s,l,u={},c=e.dataTypes.slice();if(c[1])for(a in e.converters)u[a.toLowerCase()]=e.converters[a];for(o=c.shift();o;)if(e.responseFields[o]&&(n[e.responseFields[o]]=t),!l&&r&&e.dataFilter&&(t=e.dataFilter(t,e.dataType)),l=o,o=c.shift())if("*"===o)o=l;else if("*"!==l&&l!==o){if(a=u[l+" "+o]||u["* "+o],!a)for(i in u)if(s=i.split(" "),s[1]===o&&(a=u[l+" "+s[0]]||u["* "+s[0]])){a===!0?a=u[i]:u[i]!==!0&&(o=s[0],c.unshift(s[1]));break}if(a!==!0)if(a&&e["throws"])t=a(t);else try{t=a(t)}catch(f){return{state:"parsererror",error:a?f:"No conversion from "+l+" to "+o}}}return{state:"success",data:t}}function U(e,t,n,r){var i;if(ot.isArray(t))ot.each(t,function(t,i){n||Jn.test(e)?r(e,i):U(e+"["+("object"==typeof i?t:"")+"]",i,n,r)});else if(n||"object"!==ot.type(t))r(e,t);else for(i in t)U(e+"["+i+"]",t[i],n,r)}function X(){try{return new t.XMLHttpRequest}catch(e){}}function $(){try{return new t.ActiveXObject("Microsoft.XMLHTTP")}catch(e){}}function G(e){return ot.isWindow(e)?e:9===e.nodeType?e.defaultView||e.parentWindow:!1}var J=[],Y=J.slice,K=J.concat,Q=J.push,Z=J.indexOf,et={},tt=et.toString,nt=et.hasOwnProperty,rt={},it="1.11.1",ot=function(e,t){return new ot.fn.init(e,t)},at=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,st=/^-ms-/,lt=/-([\da-z])/gi,ut=function(e,t){return t.toUpperCase()};ot.fn=ot.prototype={jquery:it,constructor:ot,selector:"",length:0,toArray:function(){return Y.call(this)},get:function(e){return null!=e?0>e?this[e+this.length]:this[e]:Y.call(this)},pushStack:function(e){var t=ot.merge(this.constructor(),e);return t.prevObject=this,t.context=this.context,t},each:function(e,t){return ot.each(this,e,t)},map:function(e){return this.pushStack(ot.map(this,function(t,n){return e.call(t,n,t)}))},slice:function(){return this.pushStack(Y.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},eq:function(e){var t=this.length,n=+e+(0>e?t:0);return this.pushStack(n>=0&&t>n?[this[n]]:[])},end:function(){return this.prevObject||this.constructor(null)},push:Q,sort:J.sort,splice:J.splice},ot.extend=ot.fn.extend=function(){var e,t,n,r,i,o,a=arguments[0]||{},s=1,l=arguments.length,u=!1;for("boolean"==typeof a&&(u=a,a=arguments[s]||{},s++),"object"==typeof a||ot.isFunction(a)||(a={}),s===l&&(a=this,s--);l>s;s++)if(null!=(i=arguments[s]))for(r in i)e=a[r],n=i[r],a!==n&&(u&&n&&(ot.isPlainObject(n)||(t=ot.isArray(n)))?(t?(t=!1,o=e&&ot.isArray(e)?e:[]):o=e&&ot.isPlainObject(e)?e:{},a[r]=ot.extend(u,o,n)):void 0!==n&&(a[r]=n));return a},ot.extend({expando:"jQuery"+(it+Math.random()).replace(/\D/g,""),isReady:!0,error:function(e){throw new Error(e)},noop:function(){},isFunction:function(e){return"function"===ot.type(e)},isArray:Array.isArray||function(e){return"array"===ot.type(e)},isWindow:function(e){return null!=e&&e==e.window},isNumeric:function(e){return!ot.isArray(e)&&e-parseFloat(e)>=0},isEmptyObject:function(e){var t;for(t in e)return!1;return!0},isPlainObject:function(e){var t;if(!e||"object"!==ot.type(e)||e.nodeType||ot.isWindow(e))return!1;try{if(e.constructor&&!nt.call(e,"constructor")&&!nt.call(e.constructor.prototype,"isPrototypeOf"))return!1}catch(n){return!1}if(rt.ownLast)for(t in e)return nt.call(e,t);for(t in e);return void 0===t||nt.call(e,t)},type:function(e){return null==e?e+"":"object"==typeof e||"function"==typeof e?et[tt.call(e)]||"object":typeof e},globalEval:function(e){e&&ot.trim(e)&&(t.execScript||function(e){t.eval.call(t,e)})(e)},camelCase:function(e){return e.replace(st,"ms-").replace(lt,ut)},nodeName:function(e,t){return e.nodeName&&e.nodeName.toLowerCase()===t.toLowerCase()},each:function(e,t,n){var i,o=0,a=e.length,s=r(e);if(n){if(s)for(;a>o&&(i=t.apply(e[o],n),i!==!1);o++);else for(o in e)if(i=t.apply(e[o],n),i===!1)break}else if(s)for(;a>o&&(i=t.call(e[o],o,e[o]),i!==!1);o++);else for(o in e)if(i=t.call(e[o],o,e[o]),i===!1)break;return e},trim:function(e){return null==e?"":(e+"").replace(at,"")},makeArray:function(e,t){var n=t||[];return null!=e&&(r(Object(e))?ot.merge(n,"string"==typeof e?[e]:e):Q.call(n,e)),n},inArray:function(e,t,n){var r;if(t){if(Z)return Z.call(t,e,n);for(r=t.length,n=n?0>n?Math.max(0,r+n):n:0;r>n;n++)if(n in t&&t[n]===e)return n}return-1},merge:function(e,t){for(var n=+t.length,r=0,i=e.length;n>r;)e[i++]=t[r++];if(n!==n)for(;void 0!==t[r];)e[i++]=t[r++];return e.length=i,e},grep:function(e,t,n){for(var r,i=[],o=0,a=e.length,s=!n;a>o;o++)r=!t(e[o],o),r!==s&&i.push(e[o]);return i},map:function(e,t,n){var i,o=0,a=e.length,s=r(e),l=[];if(s)for(;a>o;o++)i=t(e[o],o,n),null!=i&&l.push(i);else for(o in e)i=t(e[o],o,n),null!=i&&l.push(i);return K.apply([],l)},guid:1,proxy:function(e,t){var n,r,i;return"string"==typeof t&&(i=e[t],t=e,e=i),ot.isFunction(e)?(n=Y.call(arguments,2),r=function(){return e.apply(t||this,n.concat(Y.call(arguments)))},r.guid=e.guid=e.guid||ot.guid++,r):void 0},now:function(){return+new Date},support:rt}),ot.each("Boolean Number String Function Array Date RegExp Object Error".split(" "),function(e,t){et["[object "+t+"]"]=t.toLowerCase()});var ct=function(e){function t(e,t,n,r){var i,o,a,s,l,u,f,h,p,g;if((t?t.ownerDocument||t:W)!==E&&M(t),t=t||E,n=n||[],!e||"string"!=typeof e)return n;if(1!==(s=t.nodeType)&&9!==s)return[];if(j&&!r){if(i=yt.exec(e))if(a=i[1]){if(9===s){if(o=t.getElementById(a),!o||!o.parentNode)return n;if(o.id===a)return n.push(o),n}else if(t.ownerDocument&&(o=t.ownerDocument.getElementById(a))&&P(t,o)&&o.id===a)return n.push(o),n}else{if(i[2])return Z.apply(n,t.getElementsByTagName(e)),n;if((a=i[3])&&w.getElementsByClassName&&t.getElementsByClassName)return Z.apply(n,t.getElementsByClassName(a)),n}if(w.qsa&&(!I||!I.test(e))){if(h=f=R,p=t,g=9===s&&e,1===s&&"object"!==t.nodeName.toLowerCase()){for(u=D(e),(f=t.getAttribute("id"))?h=f.replace(xt,"\\$&"):t.setAttribute("id",h),h="[id='"+h+"'] ",l=u.length;l--;)u[l]=h+d(u[l]);p=bt.test(e)&&c(t.parentNode)||t,g=u.join(",")}if(g)try{return Z.apply(n,p.querySelectorAll(g)),n}catch(m){}finally{f||t.removeAttribute("id")}}}return L(e.replace(lt,"$1"),t,n,r)}function n(){function e(n,r){return t.push(n+" ")>C.cacheLength&&delete e[t.shift()],e[n+" "]=r}var t=[];return e}function r(e){return e[R]=!0,e}function i(e){var t=E.createElement("div");try{return!!e(t)}catch(n){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function o(e,t){for(var n=e.split("|"),r=e.length;r--;)C.attrHandle[n[r]]=t}function a(e,t){var n=t&&e,r=n&&1===e.nodeType&&1===t.nodeType&&(~t.sourceIndex||G)-(~e.sourceIndex||G);if(r)return r;if(n)for(;n=n.nextSibling;)if(n===t)return-1;return e?1:-1}function s(e){return function(t){var n=t.nodeName.toLowerCase();return"input"===n&&t.type===e}}function l(e){return function(t){var n=t.nodeName.toLowerCase();return("input"===n||"button"===n)&&t.type===e}}function u(e){return r(function(t){return t=+t,r(function(n,r){for(var i,o=e([],n.length,t),a=o.length;a--;)n[i=o[a]]&&(n[i]=!(r[i]=n[i]))})})}function c(e){return e&&typeof e.getElementsByTagName!==$&&e}function f(){}function d(e){for(var t=0,n=e.length,r="";n>t;t++)r+=e[t].value;return r}function h(e,t,n){var r=t.dir,i=n&&"parentNode"===r,o=B++;return t.first?function(t,n,o){for(;t=t[r];)if(1===t.nodeType||i)return e(t,n,o)}:function(t,n,a){var s,l,u=[z,o];if(a){for(;t=t[r];)if((1===t.nodeType||i)&&e(t,n,a))return!0}else for(;t=t[r];)if(1===t.nodeType||i){if(l=t[R]||(t[R]={}),(s=l[r])&&s[0]===z&&s[1]===o)return u[2]=s[2];if(l[r]=u,u[2]=e(t,n,a))return!0}}}function p(e){return e.length>1?function(t,n,r){for(var i=e.length;i--;)if(!e[i](t,n,r))return!1;return!0}:e[0]}function g(e,n,r){for(var i=0,o=n.length;o>i;i++)t(e,n[i],r);return r}function m(e,t,n,r,i){for(var o,a=[],s=0,l=e.length,u=null!=t;l>s;s++)(o=e[s])&&(!n||n(o,r,i))&&(a.push(o),u&&t.push(s));return a}function v(e,t,n,i,o,a){return i&&!i[R]&&(i=v(i)),o&&!o[R]&&(o=v(o,a)),r(function(r,a,s,l){var u,c,f,d=[],h=[],p=a.length,v=r||g(t||"*",s.nodeType?[s]:s,[]),y=!e||!r&&t?v:m(v,d,e,s,l),b=n?o||(r?e:p||i)?[]:a:y;if(n&&n(y,b,s,l),i)for(u=m(b,h),i(u,[],s,l),c=u.length;c--;)(f=u[c])&&(b[h[c]]=!(y[h[c]]=f));if(r){if(o||e){if(o){for(u=[],c=b.length;c--;)(f=b[c])&&u.push(y[c]=f);o(null,b=[],u,l)}for(c=b.length;c--;)(f=b[c])&&(u=o?tt.call(r,f):d[c])>-1&&(r[u]=!(a[u]=f))}}else b=m(b===a?b.splice(p,b.length):b),o?o(null,a,b,l):Z.apply(a,b)})}function y(e){for(var t,n,r,i=e.length,o=C.relative[e[0].type],a=o||C.relative[" "],s=o?1:0,l=h(function(e){return e===t},a,!0),u=h(function(e){return tt.call(t,e)>-1},a,!0),c=[function(e,n,r){return!o&&(r||n!==N)||((t=n).nodeType?l(e,n,r):u(e,n,r))}];i>s;s++)if(n=C.relative[e[s].type])c=[h(p(c),n)];else{if(n=C.filter[e[s].type].apply(null,e[s].matches),n[R]){for(r=++s;i>r&&!C.relative[e[r].type];r++);return v(s>1&&p(c),s>1&&d(e.slice(0,s-1).concat({value:" "===e[s-2].type?"*":""})).replace(lt,"$1"),n,r>s&&y(e.slice(s,r)),i>r&&y(e=e.slice(r)),i>r&&d(e))}c.push(n)}return p(c)}function b(e,n){var i=n.length>0,o=e.length>0,a=function(r,a,s,l,u){var c,f,d,h=0,p="0",g=r&&[],v=[],y=N,b=r||o&&C.find.TAG("*",u),x=z+=null==y?1:Math.random()||.1,w=b.length;for(u&&(N=a!==E&&a);p!==w&&null!=(c=b[p]);p++){if(o&&c){for(f=0;d=e[f++];)if(d(c,a,s)){l.push(c);break}u&&(z=x)}i&&((c=!d&&c)&&h--,r&&g.push(c))}if(h+=p,i&&p!==h){for(f=0;d=n[f++];)d(g,v,a,s);if(r){if(h>0)for(;p--;)g[p]||v[p]||(v[p]=K.call(l));v=m(v)}Z.apply(l,v),u&&!r&&v.length>0&&h+n.length>1&&t.uniqueSort(l)}return u&&(z=x,N=y),g};return i?r(a):a}var x,w,C,S,T,D,k,L,N,A,_,M,E,H,j,I,O,F,P,R="sizzle"+-new Date,W=e.document,z=0,B=0,q=n(),V=n(),U=n(),X=function(e,t){return e===t&&(_=!0),0},$="undefined",G=1<<31,J={}.hasOwnProperty,Y=[],K=Y.pop,Q=Y.push,Z=Y.push,et=Y.slice,tt=Y.indexOf||function(e){for(var t=0,n=this.length;n>t;t++)if(this[t]===e)return t;return-1},nt="checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped",rt="[\\x20\\t\\r\\n\\f]",it="(?:\\\\.|[\\w-]|[^\\x00-\\xa0])+",ot=it.replace("w","w#"),at="\\["+rt+"*("+it+")(?:"+rt+"*([*^$|!~]?=)"+rt+"*(?:'((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\"|("+ot+"))|)"+rt+"*\\]",st=":("+it+")(?:\\((('((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\")|((?:\\\\.|[^\\\\()[\\]]|"+at+")*)|.*)\\)|)",lt=new RegExp("^"+rt+"+|((?:^|[^\\\\])(?:\\\\.)*)"+rt+"+$","g"),ut=new RegExp("^"+rt+"*,"+rt+"*"),ct=new RegExp("^"+rt+"*([>+~]|"+rt+")"+rt+"*"),ft=new RegExp("="+rt+"*([^\\]'\"]*?)"+rt+"*\\]","g"),dt=new RegExp(st),ht=new RegExp("^"+ot+"$"),pt={ID:new RegExp("^#("+it+")"),CLASS:new RegExp("^\\.("+it+")"),TAG:new RegExp("^("+it.replace("w","w*")+")"),ATTR:new RegExp("^"+at),PSEUDO:new RegExp("^"+st),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+rt+"*(even|odd|(([+-]|)(\\d*)n|)"+rt+"*(?:([+-]|)"+rt+"*(\\d+)|))"+rt+"*\\)|)","i"),bool:new RegExp("^(?:"+nt+")$","i"),needsContext:new RegExp("^"+rt+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+rt+"*((?:-\\d)?\\d*)"+rt+"*\\)|)(?=[^-]|$)","i")},gt=/^(?:input|select|textarea|button)$/i,mt=/^h\d$/i,vt=/^[^{]+\{\s*\[native \w/,yt=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,bt=/[+~]/,xt=/'|\\/g,wt=new RegExp("\\\\([\\da-f]{1,6}"+rt+"?|("+rt+")|.)","ig"),Ct=function(e,t,n){var r="0x"+t-65536;return r!==r||n?t:0>r?String.fromCharCode(r+65536):String.fromCharCode(r>>10|55296,1023&r|56320)};try{Z.apply(Y=et.call(W.childNodes),W.childNodes),Y[W.childNodes.length].nodeType}catch(St){Z={apply:Y.length?function(e,t){Q.apply(e,et.call(t))}:function(e,t){for(var n=e.length,r=0;e[n++]=t[r++];);e.length=n-1}}}w=t.support={},T=t.isXML=function(e){var t=e&&(e.ownerDocument||e).documentElement;return t?"HTML"!==t.nodeName:!1},M=t.setDocument=function(e){var t,n=e?e.ownerDocument||e:W,r=n.defaultView;return n!==E&&9===n.nodeType&&n.documentElement?(E=n,H=n.documentElement,j=!T(n),r&&r!==r.top&&(r.addEventListener?r.addEventListener("unload",function(){M()},!1):r.attachEvent&&r.attachEvent("onunload",function(){M()})),w.attributes=i(function(e){return e.className="i",!e.getAttribute("className")}),w.getElementsByTagName=i(function(e){return e.appendChild(n.createComment("")),!e.getElementsByTagName("*").length}),w.getElementsByClassName=vt.test(n.getElementsByClassName)&&i(function(e){return e.innerHTML="<div class='a'></div><div class='a i'></div>",e.firstChild.className="i",2===e.getElementsByClassName("i").length}),w.getById=i(function(e){return H.appendChild(e).id=R,!n.getElementsByName||!n.getElementsByName(R).length}),w.getById?(C.find.ID=function(e,t){if(typeof t.getElementById!==$&&j){var n=t.getElementById(e);return n&&n.parentNode?[n]:[]}},C.filter.ID=function(e){var t=e.replace(wt,Ct);return function(e){return e.getAttribute("id")===t}}):(delete C.find.ID,C.filter.ID=function(e){var t=e.replace(wt,Ct);return function(e){var n=typeof e.getAttributeNode!==$&&e.getAttributeNode("id");return n&&n.value===t}}),C.find.TAG=w.getElementsByTagName?function(e,t){return typeof t.getElementsByTagName!==$?t.getElementsByTagName(e):void 0}:function(e,t){var n,r=[],i=0,o=t.getElementsByTagName(e);if("*"===e){for(;n=o[i++];)1===n.nodeType&&r.push(n);return r}return o},C.find.CLASS=w.getElementsByClassName&&function(e,t){return typeof t.getElementsByClassName!==$&&j?t.getElementsByClassName(e):void 0},O=[],I=[],(w.qsa=vt.test(n.querySelectorAll))&&(i(function(e){e.innerHTML="<select msallowclip=''><option selected=''></option></select>",e.querySelectorAll("[msallowclip^='']").length&&I.push("[*^$]="+rt+"*(?:''|\"\")"),e.querySelectorAll("[selected]").length||I.push("\\["+rt+"*(?:value|"+nt+")"),e.querySelectorAll(":checked").length||I.push(":checked")}),i(function(e){var t=n.createElement("input");t.setAttribute("type","hidden"),e.appendChild(t).setAttribute("name","D"),e.querySelectorAll("[name=d]").length&&I.push("name"+rt+"*[*^$|!~]?="),e.querySelectorAll(":enabled").length||I.push(":enabled",":disabled"),e.querySelectorAll("*,:x"),I.push(",.*:") })),(w.matchesSelector=vt.test(F=H.matches||H.webkitMatchesSelector||H.mozMatchesSelector||H.oMatchesSelector||H.msMatchesSelector))&&i(function(e){w.disconnectedMatch=F.call(e,"div"),F.call(e,"[s!='']:x"),O.push("!=",st)}),I=I.length&&new RegExp(I.join("|")),O=O.length&&new RegExp(O.join("|")),t=vt.test(H.compareDocumentPosition),P=t||vt.test(H.contains)?function(e,t){var n=9===e.nodeType?e.documentElement:e,r=t&&t.parentNode;return e===r||!(!r||1!==r.nodeType||!(n.contains?n.contains(r):e.compareDocumentPosition&&16&e.compareDocumentPosition(r)))}:function(e,t){if(t)for(;t=t.parentNode;)if(t===e)return!0;return!1},X=t?function(e,t){if(e===t)return _=!0,0;var r=!e.compareDocumentPosition-!t.compareDocumentPosition;return r?r:(r=(e.ownerDocument||e)===(t.ownerDocument||t)?e.compareDocumentPosition(t):1,1&r||!w.sortDetached&&t.compareDocumentPosition(e)===r?e===n||e.ownerDocument===W&&P(W,e)?-1:t===n||t.ownerDocument===W&&P(W,t)?1:A?tt.call(A,e)-tt.call(A,t):0:4&r?-1:1)}:function(e,t){if(e===t)return _=!0,0;var r,i=0,o=e.parentNode,s=t.parentNode,l=[e],u=[t];if(!o||!s)return e===n?-1:t===n?1:o?-1:s?1:A?tt.call(A,e)-tt.call(A,t):0;if(o===s)return a(e,t);for(r=e;r=r.parentNode;)l.unshift(r);for(r=t;r=r.parentNode;)u.unshift(r);for(;l[i]===u[i];)i++;return i?a(l[i],u[i]):l[i]===W?-1:u[i]===W?1:0},n):E},t.matches=function(e,n){return t(e,null,null,n)},t.matchesSelector=function(e,n){if((e.ownerDocument||e)!==E&&M(e),n=n.replace(ft,"='$1']"),!(!w.matchesSelector||!j||O&&O.test(n)||I&&I.test(n)))try{var r=F.call(e,n);if(r||w.disconnectedMatch||e.document&&11!==e.document.nodeType)return r}catch(i){}return t(n,E,null,[e]).length>0},t.contains=function(e,t){return(e.ownerDocument||e)!==E&&M(e),P(e,t)},t.attr=function(e,t){(e.ownerDocument||e)!==E&&M(e);var n=C.attrHandle[t.toLowerCase()],r=n&&J.call(C.attrHandle,t.toLowerCase())?n(e,t,!j):void 0;return void 0!==r?r:w.attributes||!j?e.getAttribute(t):(r=e.getAttributeNode(t))&&r.specified?r.value:null},t.error=function(e){throw new Error("Syntax error, unrecognized expression: "+e)},t.uniqueSort=function(e){var t,n=[],r=0,i=0;if(_=!w.detectDuplicates,A=!w.sortStable&&e.slice(0),e.sort(X),_){for(;t=e[i++];)t===e[i]&&(r=n.push(i));for(;r--;)e.splice(n[r],1)}return A=null,e},S=t.getText=function(e){var t,n="",r=0,i=e.nodeType;if(i){if(1===i||9===i||11===i){if("string"==typeof e.textContent)return e.textContent;for(e=e.firstChild;e;e=e.nextSibling)n+=S(e)}else if(3===i||4===i)return e.nodeValue}else for(;t=e[r++];)n+=S(t);return n},C=t.selectors={cacheLength:50,createPseudo:r,match:pt,attrHandle:{},find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(wt,Ct),e[3]=(e[3]||e[4]||e[5]||"").replace(wt,Ct),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||t.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&t.error(e[0]),e},PSEUDO:function(e){var t,n=!e[6]&&e[2];return pt.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||"":n&&dt.test(n)&&(t=D(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(wt,Ct).toLowerCase();return"*"===e?function(){return!0}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},CLASS:function(e){var t=q[e+" "];return t||(t=new RegExp("(^|"+rt+")"+e+"("+rt+"|$)"))&&q(e,function(e){return t.test("string"==typeof e.className&&e.className||typeof e.getAttribute!==$&&e.getAttribute("class")||"")})},ATTR:function(e,n,r){return function(i){var o=t.attr(i,e);return null==o?"!="===n:n?(o+="","="===n?o===r:"!="===n?o!==r:"^="===n?r&&0===o.indexOf(r):"*="===n?r&&o.indexOf(r)>-1:"$="===n?r&&o.slice(-r.length)===r:"~="===n?(" "+o+" ").indexOf(r)>-1:"|="===n?o===r||o.slice(0,r.length+1)===r+"-":!1):!0}},CHILD:function(e,t,n,r,i){var o="nth"!==e.slice(0,3),a="last"!==e.slice(-4),s="of-type"===t;return 1===r&&0===i?function(e){return!!e.parentNode}:function(t,n,l){var u,c,f,d,h,p,g=o!==a?"nextSibling":"previousSibling",m=t.parentNode,v=s&&t.nodeName.toLowerCase(),y=!l&&!s;if(m){if(o){for(;g;){for(f=t;f=f[g];)if(s?f.nodeName.toLowerCase()===v:1===f.nodeType)return!1;p=g="only"===e&&!p&&"nextSibling"}return!0}if(p=[a?m.firstChild:m.lastChild],a&&y){for(c=m[R]||(m[R]={}),u=c[e]||[],h=u[0]===z&&u[1],d=u[0]===z&&u[2],f=h&&m.childNodes[h];f=++h&&f&&f[g]||(d=h=0)||p.pop();)if(1===f.nodeType&&++d&&f===t){c[e]=[z,h,d];break}}else if(y&&(u=(t[R]||(t[R]={}))[e])&&u[0]===z)d=u[1];else for(;(f=++h&&f&&f[g]||(d=h=0)||p.pop())&&((s?f.nodeName.toLowerCase()!==v:1!==f.nodeType)||!++d||(y&&((f[R]||(f[R]={}))[e]=[z,d]),f!==t)););return d-=i,d===r||d%r===0&&d/r>=0}}},PSEUDO:function(e,n){var i,o=C.pseudos[e]||C.setFilters[e.toLowerCase()]||t.error("unsupported pseudo: "+e);return o[R]?o(n):o.length>1?(i=[e,e,"",n],C.setFilters.hasOwnProperty(e.toLowerCase())?r(function(e,t){for(var r,i=o(e,n),a=i.length;a--;)r=tt.call(e,i[a]),e[r]=!(t[r]=i[a])}):function(e){return o(e,0,i)}):o}},pseudos:{not:r(function(e){var t=[],n=[],i=k(e.replace(lt,"$1"));return i[R]?r(function(e,t,n,r){for(var o,a=i(e,null,r,[]),s=e.length;s--;)(o=a[s])&&(e[s]=!(t[s]=o))}):function(e,r,o){return t[0]=e,i(t,null,o,n),!n.pop()}}),has:r(function(e){return function(n){return t(e,n).length>0}}),contains:r(function(e){return function(t){return(t.textContent||t.innerText||S(t)).indexOf(e)>-1}}),lang:r(function(e){return ht.test(e||"")||t.error("unsupported lang: "+e),e=e.replace(wt,Ct).toLowerCase(),function(t){var n;do if(n=j?t.lang:t.getAttribute("xml:lang")||t.getAttribute("lang"))return n=n.toLowerCase(),n===e||0===n.indexOf(e+"-");while((t=t.parentNode)&&1===t.nodeType);return!1}}),target:function(t){var n=e.location&&e.location.hash;return n&&n.slice(1)===t.id},root:function(e){return e===H},focus:function(e){return e===E.activeElement&&(!E.hasFocus||E.hasFocus())&&!!(e.type||e.href||~e.tabIndex)},enabled:function(e){return e.disabled===!1},disabled:function(e){return e.disabled===!0},checked:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&!!e.checked||"option"===t&&!!e.selected},selected:function(e){return e.parentNode&&e.parentNode.selectedIndex,e.selected===!0},empty:function(e){for(e=e.firstChild;e;e=e.nextSibling)if(e.nodeType<6)return!1;return!0},parent:function(e){return!C.pseudos.empty(e)},header:function(e){return mt.test(e.nodeName)},input:function(e){return gt.test(e.nodeName)},button:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&"button"===e.type||"button"===t},text:function(e){var t;return"input"===e.nodeName.toLowerCase()&&"text"===e.type&&(null==(t=e.getAttribute("type"))||"text"===t.toLowerCase())},first:u(function(){return[0]}),last:u(function(e,t){return[t-1]}),eq:u(function(e,t,n){return[0>n?n+t:n]}),even:u(function(e,t){for(var n=0;t>n;n+=2)e.push(n);return e}),odd:u(function(e,t){for(var n=1;t>n;n+=2)e.push(n);return e}),lt:u(function(e,t,n){for(var r=0>n?n+t:n;--r>=0;)e.push(r);return e}),gt:u(function(e,t,n){for(var r=0>n?n+t:n;++r<t;)e.push(r);return e})}},C.pseudos.nth=C.pseudos.eq;for(x in{radio:!0,checkbox:!0,file:!0,password:!0,image:!0})C.pseudos[x]=s(x);for(x in{submit:!0,reset:!0})C.pseudos[x]=l(x);return f.prototype=C.filters=C.pseudos,C.setFilters=new f,D=t.tokenize=function(e,n){var r,i,o,a,s,l,u,c=V[e+" "];if(c)return n?0:c.slice(0);for(s=e,l=[],u=C.preFilter;s;){(!r||(i=ut.exec(s)))&&(i&&(s=s.slice(i[0].length)||s),l.push(o=[])),r=!1,(i=ct.exec(s))&&(r=i.shift(),o.push({value:r,type:i[0].replace(lt," ")}),s=s.slice(r.length));for(a in C.filter)!(i=pt[a].exec(s))||u[a]&&!(i=u[a](i))||(r=i.shift(),o.push({value:r,type:a,matches:i}),s=s.slice(r.length));if(!r)break}return n?s.length:s?t.error(e):V(e,l).slice(0)},k=t.compile=function(e,t){var n,r=[],i=[],o=U[e+" "];if(!o){for(t||(t=D(e)),n=t.length;n--;)o=y(t[n]),o[R]?r.push(o):i.push(o);o=U(e,b(i,r)),o.selector=e}return o},L=t.select=function(e,t,n,r){var i,o,a,s,l,u="function"==typeof e&&e,f=!r&&D(e=u.selector||e);if(n=n||[],1===f.length){if(o=f[0]=f[0].slice(0),o.length>2&&"ID"===(a=o[0]).type&&w.getById&&9===t.nodeType&&j&&C.relative[o[1].type]){if(t=(C.find.ID(a.matches[0].replace(wt,Ct),t)||[])[0],!t)return n;u&&(t=t.parentNode),e=e.slice(o.shift().value.length)}for(i=pt.needsContext.test(e)?0:o.length;i--&&(a=o[i],!C.relative[s=a.type]);)if((l=C.find[s])&&(r=l(a.matches[0].replace(wt,Ct),bt.test(o[0].type)&&c(t.parentNode)||t))){if(o.splice(i,1),e=r.length&&d(o),!e)return Z.apply(n,r),n;break}}return(u||k(e,f))(r,t,!j,n,bt.test(e)&&c(t.parentNode)||t),n},w.sortStable=R.split("").sort(X).join("")===R,w.detectDuplicates=!!_,M(),w.sortDetached=i(function(e){return 1&e.compareDocumentPosition(E.createElement("div"))}),i(function(e){return e.innerHTML="<a href='#'></a>","#"===e.firstChild.getAttribute("href")})||o("type|href|height|width",function(e,t,n){return n?void 0:e.getAttribute(t,"type"===t.toLowerCase()?1:2)}),w.attributes&&i(function(e){return e.innerHTML="<input/>",e.firstChild.setAttribute("value",""),""===e.firstChild.getAttribute("value")})||o("value",function(e,t,n){return n||"input"!==e.nodeName.toLowerCase()?void 0:e.defaultValue}),i(function(e){return null==e.getAttribute("disabled")})||o(nt,function(e,t,n){var r;return n?void 0:e[t]===!0?t.toLowerCase():(r=e.getAttributeNode(t))&&r.specified?r.value:null}),t}(t);ot.find=ct,ot.expr=ct.selectors,ot.expr[":"]=ot.expr.pseudos,ot.unique=ct.uniqueSort,ot.text=ct.getText,ot.isXMLDoc=ct.isXML,ot.contains=ct.contains;var ft=ot.expr.match.needsContext,dt=/^<(\w+)\s*\/?>(?:<\/\1>|)$/,ht=/^.[^:#\[\.,]*$/;ot.filter=function(e,t,n){var r=t[0];return n&&(e=":not("+e+")"),1===t.length&&1===r.nodeType?ot.find.matchesSelector(r,e)?[r]:[]:ot.find.matches(e,ot.grep(t,function(e){return 1===e.nodeType}))},ot.fn.extend({find:function(e){var t,n=[],r=this,i=r.length;if("string"!=typeof e)return this.pushStack(ot(e).filter(function(){for(t=0;i>t;t++)if(ot.contains(r[t],this))return!0}));for(t=0;i>t;t++)ot.find(e,r[t],n);return n=this.pushStack(i>1?ot.unique(n):n),n.selector=this.selector?this.selector+" "+e:e,n},filter:function(e){return this.pushStack(i(this,e||[],!1))},not:function(e){return this.pushStack(i(this,e||[],!0))},is:function(e){return!!i(this,"string"==typeof e&&ft.test(e)?ot(e):e||[],!1).length}});var pt,gt=t.document,mt=/^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]*))$/,vt=ot.fn.init=function(e,t){var n,r;if(!e)return this;if("string"==typeof e){if(n="<"===e.charAt(0)&&">"===e.charAt(e.length-1)&&e.length>=3?[null,e,null]:mt.exec(e),!n||!n[1]&&t)return!t||t.jquery?(t||pt).find(e):this.constructor(t).find(e);if(n[1]){if(t=t instanceof ot?t[0]:t,ot.merge(this,ot.parseHTML(n[1],t&&t.nodeType?t.ownerDocument||t:gt,!0)),dt.test(n[1])&&ot.isPlainObject(t))for(n in t)ot.isFunction(this[n])?this[n](t[n]):this.attr(n,t[n]);return this}if(r=gt.getElementById(n[2]),r&&r.parentNode){if(r.id!==n[2])return pt.find(e);this.length=1,this[0]=r}return this.context=gt,this.selector=e,this}return e.nodeType?(this.context=this[0]=e,this.length=1,this):ot.isFunction(e)?"undefined"!=typeof pt.ready?pt.ready(e):e(ot):(void 0!==e.selector&&(this.selector=e.selector,this.context=e.context),ot.makeArray(e,this))};vt.prototype=ot.fn,pt=ot(gt);var yt=/^(?:parents|prev(?:Until|All))/,bt={children:!0,contents:!0,next:!0,prev:!0};ot.extend({dir:function(e,t,n){for(var r=[],i=e[t];i&&9!==i.nodeType&&(void 0===n||1!==i.nodeType||!ot(i).is(n));)1===i.nodeType&&r.push(i),i=i[t];return r},sibling:function(e,t){for(var n=[];e;e=e.nextSibling)1===e.nodeType&&e!==t&&n.push(e);return n}}),ot.fn.extend({has:function(e){var t,n=ot(e,this),r=n.length;return this.filter(function(){for(t=0;r>t;t++)if(ot.contains(this,n[t]))return!0})},closest:function(e,t){for(var n,r=0,i=this.length,o=[],a=ft.test(e)||"string"!=typeof e?ot(e,t||this.context):0;i>r;r++)for(n=this[r];n&&n!==t;n=n.parentNode)if(n.nodeType<11&&(a?a.index(n)>-1:1===n.nodeType&&ot.find.matchesSelector(n,e))){o.push(n);break}return this.pushStack(o.length>1?ot.unique(o):o)},index:function(e){return e?"string"==typeof e?ot.inArray(this[0],ot(e)):ot.inArray(e.jquery?e[0]:e,this):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(e,t){return this.pushStack(ot.unique(ot.merge(this.get(),ot(e,t))))},addBack:function(e){return this.add(null==e?this.prevObject:this.prevObject.filter(e))}}),ot.each({parent:function(e){var t=e.parentNode;return t&&11!==t.nodeType?t:null},parents:function(e){return ot.dir(e,"parentNode")},parentsUntil:function(e,t,n){return ot.dir(e,"parentNode",n)},next:function(e){return o(e,"nextSibling")},prev:function(e){return o(e,"previousSibling")},nextAll:function(e){return ot.dir(e,"nextSibling")},prevAll:function(e){return ot.dir(e,"previousSibling")},nextUntil:function(e,t,n){return ot.dir(e,"nextSibling",n)},prevUntil:function(e,t,n){return ot.dir(e,"previousSibling",n)},siblings:function(e){return ot.sibling((e.parentNode||{}).firstChild,e)},children:function(e){return ot.sibling(e.firstChild)},contents:function(e){return ot.nodeName(e,"iframe")?e.contentDocument||e.contentWindow.document:ot.merge([],e.childNodes)}},function(e,t){ot.fn[e]=function(n,r){var i=ot.map(this,t,n);return"Until"!==e.slice(-5)&&(r=n),r&&"string"==typeof r&&(i=ot.filter(r,i)),this.length>1&&(bt[e]||(i=ot.unique(i)),yt.test(e)&&(i=i.reverse())),this.pushStack(i)}});var xt=/\S+/g,wt={};ot.Callbacks=function(e){e="string"==typeof e?wt[e]||a(e):ot.extend({},e);var t,n,r,i,o,s,l=[],u=!e.once&&[],c=function(a){for(n=e.memory&&a,r=!0,o=s||0,s=0,i=l.length,t=!0;l&&i>o;o++)if(l[o].apply(a[0],a[1])===!1&&e.stopOnFalse){n=!1;break}t=!1,l&&(u?u.length&&c(u.shift()):n?l=[]:f.disable())},f={add:function(){if(l){var r=l.length;!function o(t){ot.each(t,function(t,n){var r=ot.type(n);"function"===r?e.unique&&f.has(n)||l.push(n):n&&n.length&&"string"!==r&&o(n)})}(arguments),t?i=l.length:n&&(s=r,c(n))}return this},remove:function(){return l&&ot.each(arguments,function(e,n){for(var r;(r=ot.inArray(n,l,r))>-1;)l.splice(r,1),t&&(i>=r&&i--,o>=r&&o--)}),this},has:function(e){return e?ot.inArray(e,l)>-1:!(!l||!l.length)},empty:function(){return l=[],i=0,this},disable:function(){return l=u=n=void 0,this},disabled:function(){return!l},lock:function(){return u=void 0,n||f.disable(),this},locked:function(){return!u},fireWith:function(e,n){return!l||r&&!u||(n=n||[],n=[e,n.slice?n.slice():n],t?u.push(n):c(n)),this},fire:function(){return f.fireWith(this,arguments),this},fired:function(){return!!r}};return f},ot.extend({Deferred:function(e){var t=[["resolve","done",ot.Callbacks("once memory"),"resolved"],["reject","fail",ot.Callbacks("once memory"),"rejected"],["notify","progress",ot.Callbacks("memory")]],n="pending",r={state:function(){return n},always:function(){return i.done(arguments).fail(arguments),this},then:function(){var e=arguments;return ot.Deferred(function(n){ot.each(t,function(t,o){var a=ot.isFunction(e[t])&&e[t];i[o[1]](function(){var e=a&&a.apply(this,arguments);e&&ot.isFunction(e.promise)?e.promise().done(n.resolve).fail(n.reject).progress(n.notify):n[o[0]+"With"](this===r?n.promise():this,a?[e]:arguments)})}),e=null}).promise()},promise:function(e){return null!=e?ot.extend(e,r):r}},i={};return r.pipe=r.then,ot.each(t,function(e,o){var a=o[2],s=o[3];r[o[1]]=a.add,s&&a.add(function(){n=s},t[1^e][2].disable,t[2][2].lock),i[o[0]]=function(){return i[o[0]+"With"](this===i?r:this,arguments),this},i[o[0]+"With"]=a.fireWith}),r.promise(i),e&&e.call(i,i),i},when:function(e){var t,n,r,i=0,o=Y.call(arguments),a=o.length,s=1!==a||e&&ot.isFunction(e.promise)?a:0,l=1===s?e:ot.Deferred(),u=function(e,n,r){return function(i){n[e]=this,r[e]=arguments.length>1?Y.call(arguments):i,r===t?l.notifyWith(n,r):--s||l.resolveWith(n,r)}};if(a>1)for(t=new Array(a),n=new Array(a),r=new Array(a);a>i;i++)o[i]&&ot.isFunction(o[i].promise)?o[i].promise().done(u(i,r,o)).fail(l.reject).progress(u(i,n,t)):--s;return s||l.resolveWith(r,o),l.promise()}});var Ct;ot.fn.ready=function(e){return ot.ready.promise().done(e),this},ot.extend({isReady:!1,readyWait:1,holdReady:function(e){e?ot.readyWait++:ot.ready(!0)},ready:function(e){if(e===!0?!--ot.readyWait:!ot.isReady){if(!gt.body)return setTimeout(ot.ready);ot.isReady=!0,e!==!0&&--ot.readyWait>0||(Ct.resolveWith(gt,[ot]),ot.fn.triggerHandler&&(ot(gt).triggerHandler("ready"),ot(gt).off("ready")))}}}),ot.ready.promise=function(e){if(!Ct)if(Ct=ot.Deferred(),"complete"===gt.readyState)setTimeout(ot.ready);else if(gt.addEventListener)gt.addEventListener("DOMContentLoaded",l,!1),t.addEventListener("load",l,!1);else{gt.attachEvent("onreadystatechange",l),t.attachEvent("onload",l);var n=!1;try{n=null==t.frameElement&&gt.documentElement}catch(r){}n&&n.doScroll&&!function i(){if(!ot.isReady){try{n.doScroll("left")}catch(e){return setTimeout(i,50)}s(),ot.ready()}}()}return Ct.promise(e)};var St,Tt="undefined";for(St in ot(rt))break;rt.ownLast="0"!==St,rt.inlineBlockNeedsLayout=!1,ot(function(){var e,t,n,r;n=gt.getElementsByTagName("body")[0],n&&n.style&&(t=gt.createElement("div"),r=gt.createElement("div"),r.style.cssText="position:absolute;border:0;width:0;height:0;top:0;left:-9999px",n.appendChild(r).appendChild(t),typeof t.style.zoom!==Tt&&(t.style.cssText="display:inline;margin:0;border:0;padding:1px;width:1px;zoom:1",rt.inlineBlockNeedsLayout=e=3===t.offsetWidth,e&&(n.style.zoom=1)),n.removeChild(r))}),function(){var e=gt.createElement("div");if(null==rt.deleteExpando){rt.deleteExpando=!0;try{delete e.test}catch(t){rt.deleteExpando=!1}}e=null}(),ot.acceptData=function(e){var t=ot.noData[(e.nodeName+" ").toLowerCase()],n=+e.nodeType||1;return 1!==n&&9!==n?!1:!t||t!==!0&&e.getAttribute("classid")===t};var Dt=/^(?:\{[\w\W]*\}|\[[\w\W]*\])$/,kt=/([A-Z])/g;ot.extend({cache:{},noData:{"applet ":!0,"embed ":!0,"object ":"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"},hasData:function(e){return e=e.nodeType?ot.cache[e[ot.expando]]:e[ot.expando],!!e&&!c(e)},data:function(e,t,n){return f(e,t,n)},removeData:function(e,t){return d(e,t)},_data:function(e,t,n){return f(e,t,n,!0)},_removeData:function(e,t){return d(e,t,!0)}}),ot.fn.extend({data:function(e,t){var n,r,i,o=this[0],a=o&&o.attributes;if(void 0===e){if(this.length&&(i=ot.data(o),1===o.nodeType&&!ot._data(o,"parsedAttrs"))){for(n=a.length;n--;)a[n]&&(r=a[n].name,0===r.indexOf("data-")&&(r=ot.camelCase(r.slice(5)),u(o,r,i[r])));ot._data(o,"parsedAttrs",!0)}return i}return"object"==typeof e?this.each(function(){ot.data(this,e)}):arguments.length>1?this.each(function(){ot.data(this,e,t)}):o?u(o,e,ot.data(o,e)):void 0},removeData:function(e){return this.each(function(){ot.removeData(this,e)})}}),ot.extend({queue:function(e,t,n){var r;return e?(t=(t||"fx")+"queue",r=ot._data(e,t),n&&(!r||ot.isArray(n)?r=ot._data(e,t,ot.makeArray(n)):r.push(n)),r||[]):void 0},dequeue:function(e,t){t=t||"fx";var n=ot.queue(e,t),r=n.length,i=n.shift(),o=ot._queueHooks(e,t),a=function(){ot.dequeue(e,t)};"inprogress"===i&&(i=n.shift(),r--),i&&("fx"===t&&n.unshift("inprogress"),delete o.stop,i.call(e,a,o)),!r&&o&&o.empty.fire()},_queueHooks:function(e,t){var n=t+"queueHooks";return ot._data(e,n)||ot._data(e,n,{empty:ot.Callbacks("once memory").add(function(){ot._removeData(e,t+"queue"),ot._removeData(e,n)})})}}),ot.fn.extend({queue:function(e,t){var n=2;return"string"!=typeof e&&(t=e,e="fx",n--),arguments.length<n?ot.queue(this[0],e):void 0===t?this:this.each(function(){var n=ot.queue(this,e,t);ot._queueHooks(this,e),"fx"===e&&"inprogress"!==n[0]&&ot.dequeue(this,e)})},dequeue:function(e){return this.each(function(){ot.dequeue(this,e)})},clearQueue:function(e){return this.queue(e||"fx",[])},promise:function(e,t){var n,r=1,i=ot.Deferred(),o=this,a=this.length,s=function(){--r||i.resolveWith(o,[o])};for("string"!=typeof e&&(t=e,e=void 0),e=e||"fx";a--;)n=ot._data(o[a],e+"queueHooks"),n&&n.empty&&(r++,n.empty.add(s));return s(),i.promise(t)}});var Lt=/[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/.source,Nt=["Top","Right","Bottom","Left"],At=function(e,t){return e=t||e,"none"===ot.css(e,"display")||!ot.contains(e.ownerDocument,e)},_t=ot.access=function(e,t,n,r,i,o,a){var s=0,l=e.length,u=null==n;if("object"===ot.type(n)){i=!0;for(s in n)ot.access(e,t,s,n[s],!0,o,a)}else if(void 0!==r&&(i=!0,ot.isFunction(r)||(a=!0),u&&(a?(t.call(e,r),t=null):(u=t,t=function(e,t,n){return u.call(ot(e),n)})),t))for(;l>s;s++)t(e[s],n,a?r:r.call(e[s],s,t(e[s],n)));return i?e:u?t.call(e):l?t(e[0],n):o},Mt=/^(?:checkbox|radio)$/i;!function(){var e=gt.createElement("input"),t=gt.createElement("div"),n=gt.createDocumentFragment();if(t.innerHTML=" <link/><table></table><a href='/a'>a</a><input type='checkbox'/>",rt.leadingWhitespace=3===t.firstChild.nodeType,rt.tbody=!t.getElementsByTagName("tbody").length,rt.htmlSerialize=!!t.getElementsByTagName("link").length,rt.html5Clone="<:nav></:nav>"!==gt.createElement("nav").cloneNode(!0).outerHTML,e.type="checkbox",e.checked=!0,n.appendChild(e),rt.appendChecked=e.checked,t.innerHTML="<textarea>x</textarea>",rt.noCloneChecked=!!t.cloneNode(!0).lastChild.defaultValue,n.appendChild(t),t.innerHTML="<input type='radio' checked='checked' name='t'/>",rt.checkClone=t.cloneNode(!0).cloneNode(!0).lastChild.checked,rt.noCloneEvent=!0,t.attachEvent&&(t.attachEvent("onclick",function(){rt.noCloneEvent=!1}),t.cloneNode(!0).click()),null==rt.deleteExpando){rt.deleteExpando=!0;try{delete t.test}catch(r){rt.deleteExpando=!1}}}(),function(){var e,n,r=gt.createElement("div");for(e in{submit:!0,change:!0,focusin:!0})n="on"+e,(rt[e+"Bubbles"]=n in t)||(r.setAttribute(n,"t"),rt[e+"Bubbles"]=r.attributes[n].expando===!1);r=null}();var Et=/^(?:input|select|textarea)$/i,Ht=/^key/,jt=/^(?:mouse|pointer|contextmenu)|click/,It=/^(?:focusinfocus|focusoutblur)$/,Ot=/^([^.]*)(?:\.(.+)|)$/;ot.event={global:{},add:function(e,t,n,r,i){var o,a,s,l,u,c,f,d,h,p,g,m=ot._data(e);if(m){for(n.handler&&(l=n,n=l.handler,i=l.selector),n.guid||(n.guid=ot.guid++),(a=m.events)||(a=m.events={}),(c=m.handle)||(c=m.handle=function(e){return typeof ot===Tt||e&&ot.event.triggered===e.type?void 0:ot.event.dispatch.apply(c.elem,arguments)},c.elem=e),t=(t||"").match(xt)||[""],s=t.length;s--;)o=Ot.exec(t[s])||[],h=g=o[1],p=(o[2]||"").split(".").sort(),h&&(u=ot.event.special[h]||{},h=(i?u.delegateType:u.bindType)||h,u=ot.event.special[h]||{},f=ot.extend({type:h,origType:g,data:r,handler:n,guid:n.guid,selector:i,needsContext:i&&ot.expr.match.needsContext.test(i),namespace:p.join(".")},l),(d=a[h])||(d=a[h]=[],d.delegateCount=0,u.setup&&u.setup.call(e,r,p,c)!==!1||(e.addEventListener?e.addEventListener(h,c,!1):e.attachEvent&&e.attachEvent("on"+h,c))),u.add&&(u.add.call(e,f),f.handler.guid||(f.handler.guid=n.guid)),i?d.splice(d.delegateCount++,0,f):d.push(f),ot.event.global[h]=!0);e=null}},remove:function(e,t,n,r,i){var o,a,s,l,u,c,f,d,h,p,g,m=ot.hasData(e)&&ot._data(e);if(m&&(c=m.events)){for(t=(t||"").match(xt)||[""],u=t.length;u--;)if(s=Ot.exec(t[u])||[],h=g=s[1],p=(s[2]||"").split(".").sort(),h){for(f=ot.event.special[h]||{},h=(r?f.delegateType:f.bindType)||h,d=c[h]||[],s=s[2]&&new RegExp("(^|\\.)"+p.join("\\.(?:.*\\.|)")+"(\\.|$)"),l=o=d.length;o--;)a=d[o],!i&&g!==a.origType||n&&n.guid!==a.guid||s&&!s.test(a.namespace)||r&&r!==a.selector&&("**"!==r||!a.selector)||(d.splice(o,1),a.selector&&d.delegateCount--,f.remove&&f.remove.call(e,a));l&&!d.length&&(f.teardown&&f.teardown.call(e,p,m.handle)!==!1||ot.removeEvent(e,h,m.handle),delete c[h])}else for(h in c)ot.event.remove(e,h+t[u],n,r,!0);ot.isEmptyObject(c)&&(delete m.handle,ot._removeData(e,"events"))}},trigger:function(e,n,r,i){var o,a,s,l,u,c,f,d=[r||gt],h=nt.call(e,"type")?e.type:e,p=nt.call(e,"namespace")?e.namespace.split("."):[];if(s=c=r=r||gt,3!==r.nodeType&&8!==r.nodeType&&!It.test(h+ot.event.triggered)&&(h.indexOf(".")>=0&&(p=h.split("."),h=p.shift(),p.sort()),a=h.indexOf(":")<0&&"on"+h,e=e[ot.expando]?e:new ot.Event(h,"object"==typeof e&&e),e.isTrigger=i?2:3,e.namespace=p.join("."),e.namespace_re=e.namespace?new RegExp("(^|\\.)"+p.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,e.result=void 0,e.target||(e.target=r),n=null==n?[e]:ot.makeArray(n,[e]),u=ot.event.special[h]||{},i||!u.trigger||u.trigger.apply(r,n)!==!1)){if(!i&&!u.noBubble&&!ot.isWindow(r)){for(l=u.delegateType||h,It.test(l+h)||(s=s.parentNode);s;s=s.parentNode)d.push(s),c=s;c===(r.ownerDocument||gt)&&d.push(c.defaultView||c.parentWindow||t)}for(f=0;(s=d[f++])&&!e.isPropagationStopped();)e.type=f>1?l:u.bindType||h,o=(ot._data(s,"events")||{})[e.type]&&ot._data(s,"handle"),o&&o.apply(s,n),o=a&&s[a],o&&o.apply&&ot.acceptData(s)&&(e.result=o.apply(s,n),e.result===!1&&e.preventDefault());if(e.type=h,!i&&!e.isDefaultPrevented()&&(!u._default||u._default.apply(d.pop(),n)===!1)&&ot.acceptData(r)&&a&&r[h]&&!ot.isWindow(r)){c=r[a],c&&(r[a]=null),ot.event.triggered=h;try{r[h]()}catch(g){}ot.event.triggered=void 0,c&&(r[a]=c)}return e.result}},dispatch:function(e){e=ot.event.fix(e);var t,n,r,i,o,a=[],s=Y.call(arguments),l=(ot._data(this,"events")||{})[e.type]||[],u=ot.event.special[e.type]||{};if(s[0]=e,e.delegateTarget=this,!u.preDispatch||u.preDispatch.call(this,e)!==!1){for(a=ot.event.handlers.call(this,e,l),t=0;(i=a[t++])&&!e.isPropagationStopped();)for(e.currentTarget=i.elem,o=0;(r=i.handlers[o++])&&!e.isImmediatePropagationStopped();)(!e.namespace_re||e.namespace_re.test(r.namespace))&&(e.handleObj=r,e.data=r.data,n=((ot.event.special[r.origType]||{}).handle||r.handler).apply(i.elem,s),void 0!==n&&(e.result=n)===!1&&(e.preventDefault(),e.stopPropagation()));return u.postDispatch&&u.postDispatch.call(this,e),e.result}},handlers:function(e,t){var n,r,i,o,a=[],s=t.delegateCount,l=e.target;if(s&&l.nodeType&&(!e.button||"click"!==e.type))for(;l!=this;l=l.parentNode||this)if(1===l.nodeType&&(l.disabled!==!0||"click"!==e.type)){for(i=[],o=0;s>o;o++)r=t[o],n=r.selector+" ",void 0===i[n]&&(i[n]=r.needsContext?ot(n,this).index(l)>=0:ot.find(n,this,null,[l]).length),i[n]&&i.push(r);i.length&&a.push({elem:l,handlers:i})}return s<t.length&&a.push({elem:this,handlers:t.slice(s)}),a},fix:function(e){if(e[ot.expando])return e;var t,n,r,i=e.type,o=e,a=this.fixHooks[i];for(a||(this.fixHooks[i]=a=jt.test(i)?this.mouseHooks:Ht.test(i)?this.keyHooks:{}),r=a.props?this.props.concat(a.props):this.props,e=new ot.Event(o),t=r.length;t--;)n=r[t],e[n]=o[n];return e.target||(e.target=o.srcElement||gt),3===e.target.nodeType&&(e.target=e.target.parentNode),e.metaKey=!!e.metaKey,a.filter?a.filter(e,o):e},props:"altKey bubbles cancelable ctrlKey currentTarget eventPhase metaKey relatedTarget shiftKey target timeStamp view which".split(" "),fixHooks:{},keyHooks:{props:"char charCode key keyCode".split(" "),filter:function(e,t){return null==e.which&&(e.which=null!=t.charCode?t.charCode:t.keyCode),e}},mouseHooks:{props:"button buttons clientX clientY fromElement offsetX offsetY pageX pageY screenX screenY toElement".split(" "),filter:function(e,t){var n,r,i,o=t.button,a=t.fromElement;return null==e.pageX&&null!=t.clientX&&(r=e.target.ownerDocument||gt,i=r.documentElement,n=r.body,e.pageX=t.clientX+(i&&i.scrollLeft||n&&n.scrollLeft||0)-(i&&i.clientLeft||n&&n.clientLeft||0),e.pageY=t.clientY+(i&&i.scrollTop||n&&n.scrollTop||0)-(i&&i.clientTop||n&&n.clientTop||0)),!e.relatedTarget&&a&&(e.relatedTarget=a===e.target?t.toElement:a),e.which||void 0===o||(e.which=1&o?1:2&o?3:4&o?2:0),e}},special:{load:{noBubble:!0},focus:{trigger:function(){if(this!==g()&&this.focus)try{return this.focus(),!1}catch(e){}},delegateType:"focusin"},blur:{trigger:function(){return this===g()&&this.blur?(this.blur(),!1):void 0},delegateType:"focusout"},click:{trigger:function(){return ot.nodeName(this,"input")&&"checkbox"===this.type&&this.click?(this.click(),!1):void 0},_default:function(e){return ot.nodeName(e.target,"a")}},beforeunload:{postDispatch:function(e){void 0!==e.result&&e.originalEvent&&(e.originalEvent.returnValue=e.result)}}},simulate:function(e,t,n,r){var i=ot.extend(new ot.Event,n,{type:e,isSimulated:!0,originalEvent:{}});r?ot.event.trigger(i,null,t):ot.event.dispatch.call(t,i),i.isDefaultPrevented()&&n.preventDefault()}},ot.removeEvent=gt.removeEventListener?function(e,t,n){e.removeEventListener&&e.removeEventListener(t,n,!1)}:function(e,t,n){var r="on"+t;e.detachEvent&&(typeof e[r]===Tt&&(e[r]=null),e.detachEvent(r,n))},ot.Event=function(e,t){return this instanceof ot.Event?(e&&e.type?(this.originalEvent=e,this.type=e.type,this.isDefaultPrevented=e.defaultPrevented||void 0===e.defaultPrevented&&e.returnValue===!1?h:p):this.type=e,t&&ot.extend(this,t),this.timeStamp=e&&e.timeStamp||ot.now(),void(this[ot.expando]=!0)):new ot.Event(e,t)},ot.Event.prototype={isDefaultPrevented:p,isPropagationStopped:p,isImmediatePropagationStopped:p,preventDefault:function(){var e=this.originalEvent;this.isDefaultPrevented=h,e&&(e.preventDefault?e.preventDefault():e.returnValue=!1)},stopPropagation:function(){var e=this.originalEvent;this.isPropagationStopped=h,e&&(e.stopPropagation&&e.stopPropagation(),e.cancelBubble=!0)},stopImmediatePropagation:function(){var e=this.originalEvent;this.isImmediatePropagationStopped=h,e&&e.stopImmediatePropagation&&e.stopImmediatePropagation(),this.stopPropagation()}},ot.each({mouseenter:"mouseover",mouseleave:"mouseout",pointerenter:"pointerover",pointerleave:"pointerout"},function(e,t){ot.event.special[e]={delegateType:t,bindType:t,handle:function(e){var n,r=this,i=e.relatedTarget,o=e.handleObj;return(!i||i!==r&&!ot.contains(r,i))&&(e.type=o.origType,n=o.handler.apply(this,arguments),e.type=t),n}}}),rt.submitBubbles||(ot.event.special.submit={setup:function(){return ot.nodeName(this,"form")?!1:void ot.event.add(this,"click._submit keypress._submit",function(e){var t=e.target,n=ot.nodeName(t,"input")||ot.nodeName(t,"button")?t.form:void 0;n&&!ot._data(n,"submitBubbles")&&(ot.event.add(n,"submit._submit",function(e){e._submit_bubble=!0}),ot._data(n,"submitBubbles",!0))})},postDispatch:function(e){e._submit_bubble&&(delete e._submit_bubble,this.parentNode&&!e.isTrigger&&ot.event.simulate("submit",this.parentNode,e,!0))},teardown:function(){return ot.nodeName(this,"form")?!1:void ot.event.remove(this,"._submit")}}),rt.changeBubbles||(ot.event.special.change={setup:function(){return Et.test(this.nodeName)?(("checkbox"===this.type||"radio"===this.type)&&(ot.event.add(this,"propertychange._change",function(e){"checked"===e.originalEvent.propertyName&&(this._just_changed=!0)}),ot.event.add(this,"click._change",function(e){this._just_changed&&!e.isTrigger&&(this._just_changed=!1),ot.event.simulate("change",this,e,!0)})),!1):void ot.event.add(this,"beforeactivate._change",function(e){var t=e.target;Et.test(t.nodeName)&&!ot._data(t,"changeBubbles")&&(ot.event.add(t,"change._change",function(e){!this.parentNode||e.isSimulated||e.isTrigger||ot.event.simulate("change",this.parentNode,e,!0)}),ot._data(t,"changeBubbles",!0))})},handle:function(e){var t=e.target;return this!==t||e.isSimulated||e.isTrigger||"radio"!==t.type&&"checkbox"!==t.type?e.handleObj.handler.apply(this,arguments):void 0},teardown:function(){return ot.event.remove(this,"._change"),!Et.test(this.nodeName)}}),rt.focusinBubbles||ot.each({focus:"focusin",blur:"focusout"},function(e,t){var n=function(e){ot.event.simulate(t,e.target,ot.event.fix(e),!0)};ot.event.special[t]={setup:function(){var r=this.ownerDocument||this,i=ot._data(r,t);i||r.addEventListener(e,n,!0),ot._data(r,t,(i||0)+1)},teardown:function(){var r=this.ownerDocument||this,i=ot._data(r,t)-1;i?ot._data(r,t,i):(r.removeEventListener(e,n,!0),ot._removeData(r,t))}}}),ot.fn.extend({on:function(e,t,n,r,i){var o,a;if("object"==typeof e){"string"!=typeof t&&(n=n||t,t=void 0);for(o in e)this.on(o,t,n,e[o],i);return this}if(null==n&&null==r?(r=t,n=t=void 0):null==r&&("string"==typeof t?(r=n,n=void 0):(r=n,n=t,t=void 0)),r===!1)r=p;else if(!r)return this;return 1===i&&(a=r,r=function(e){return ot().off(e),a.apply(this,arguments)},r.guid=a.guid||(a.guid=ot.guid++)),this.each(function(){ot.event.add(this,e,r,n,t) })},one:function(e,t,n,r){return this.on(e,t,n,r,1)},off:function(e,t,n){var r,i;if(e&&e.preventDefault&&e.handleObj)return r=e.handleObj,ot(e.delegateTarget).off(r.namespace?r.origType+"."+r.namespace:r.origType,r.selector,r.handler),this;if("object"==typeof e){for(i in e)this.off(i,t,e[i]);return this}return(t===!1||"function"==typeof t)&&(n=t,t=void 0),n===!1&&(n=p),this.each(function(){ot.event.remove(this,e,n,t)})},trigger:function(e,t){return this.each(function(){ot.event.trigger(e,t,this)})},triggerHandler:function(e,t){var n=this[0];return n?ot.event.trigger(e,t,n,!0):void 0}});var Ft="abbr|article|aside|audio|bdi|canvas|data|datalist|details|figcaption|figure|footer|header|hgroup|mark|meter|nav|output|progress|section|summary|time|video",Pt=/ jQuery\d+="(?:null|\d+)"/g,Rt=new RegExp("<(?:"+Ft+")[\\s/>]","i"),Wt=/^\s+/,zt=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/gi,Bt=/<([\w:]+)/,qt=/<tbody/i,Vt=/<|&#?\w+;/,Ut=/<(?:script|style|link)/i,Xt=/checked\s*(?:[^=]|=\s*.checked.)/i,$t=/^$|\/(?:java|ecma)script/i,Gt=/^true\/(.*)/,Jt=/^\s*<!(?:\[CDATA\[|--)|(?:\]\]|--)>\s*$/g,Yt={option:[1,"<select multiple='multiple'>","</select>"],legend:[1,"<fieldset>","</fieldset>"],area:[1,"<map>","</map>"],param:[1,"<object>","</object>"],thead:[1,"<table>","</table>"],tr:[2,"<table><tbody>","</tbody></table>"],col:[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"],td:[3,"<table><tbody><tr>","</tr></tbody></table>"],_default:rt.htmlSerialize?[0,"",""]:[1,"X<div>","</div>"]},Kt=m(gt),Qt=Kt.appendChild(gt.createElement("div"));Yt.optgroup=Yt.option,Yt.tbody=Yt.tfoot=Yt.colgroup=Yt.caption=Yt.thead,Yt.th=Yt.td,ot.extend({clone:function(e,t,n){var r,i,o,a,s,l=ot.contains(e.ownerDocument,e);if(rt.html5Clone||ot.isXMLDoc(e)||!Rt.test("<"+e.nodeName+">")?o=e.cloneNode(!0):(Qt.innerHTML=e.outerHTML,Qt.removeChild(o=Qt.firstChild)),!(rt.noCloneEvent&&rt.noCloneChecked||1!==e.nodeType&&11!==e.nodeType||ot.isXMLDoc(e)))for(r=v(o),s=v(e),a=0;null!=(i=s[a]);++a)r[a]&&T(i,r[a]);if(t)if(n)for(s=s||v(e),r=r||v(o),a=0;null!=(i=s[a]);a++)S(i,r[a]);else S(e,o);return r=v(o,"script"),r.length>0&&C(r,!l&&v(e,"script")),r=s=i=null,o},buildFragment:function(e,t,n,r){for(var i,o,a,s,l,u,c,f=e.length,d=m(t),h=[],p=0;f>p;p++)if(o=e[p],o||0===o)if("object"===ot.type(o))ot.merge(h,o.nodeType?[o]:o);else if(Vt.test(o)){for(s=s||d.appendChild(t.createElement("div")),l=(Bt.exec(o)||["",""])[1].toLowerCase(),c=Yt[l]||Yt._default,s.innerHTML=c[1]+o.replace(zt,"<$1></$2>")+c[2],i=c[0];i--;)s=s.lastChild;if(!rt.leadingWhitespace&&Wt.test(o)&&h.push(t.createTextNode(Wt.exec(o)[0])),!rt.tbody)for(o="table"!==l||qt.test(o)?"<table>"!==c[1]||qt.test(o)?0:s:s.firstChild,i=o&&o.childNodes.length;i--;)ot.nodeName(u=o.childNodes[i],"tbody")&&!u.childNodes.length&&o.removeChild(u);for(ot.merge(h,s.childNodes),s.textContent="";s.firstChild;)s.removeChild(s.firstChild);s=d.lastChild}else h.push(t.createTextNode(o));for(s&&d.removeChild(s),rt.appendChecked||ot.grep(v(h,"input"),y),p=0;o=h[p++];)if((!r||-1===ot.inArray(o,r))&&(a=ot.contains(o.ownerDocument,o),s=v(d.appendChild(o),"script"),a&&C(s),n))for(i=0;o=s[i++];)$t.test(o.type||"")&&n.push(o);return s=null,d},cleanData:function(e,t){for(var n,r,i,o,a=0,s=ot.expando,l=ot.cache,u=rt.deleteExpando,c=ot.event.special;null!=(n=e[a]);a++)if((t||ot.acceptData(n))&&(i=n[s],o=i&&l[i])){if(o.events)for(r in o.events)c[r]?ot.event.remove(n,r):ot.removeEvent(n,r,o.handle);l[i]&&(delete l[i],u?delete n[s]:typeof n.removeAttribute!==Tt?n.removeAttribute(s):n[s]=null,J.push(i))}}}),ot.fn.extend({text:function(e){return _t(this,function(e){return void 0===e?ot.text(this):this.empty().append((this[0]&&this[0].ownerDocument||gt).createTextNode(e))},null,e,arguments.length)},append:function(){return this.domManip(arguments,function(e){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var t=b(this,e);t.appendChild(e)}})},prepend:function(){return this.domManip(arguments,function(e){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var t=b(this,e);t.insertBefore(e,t.firstChild)}})},before:function(){return this.domManip(arguments,function(e){this.parentNode&&this.parentNode.insertBefore(e,this)})},after:function(){return this.domManip(arguments,function(e){this.parentNode&&this.parentNode.insertBefore(e,this.nextSibling)})},remove:function(e,t){for(var n,r=e?ot.filter(e,this):this,i=0;null!=(n=r[i]);i++)t||1!==n.nodeType||ot.cleanData(v(n)),n.parentNode&&(t&&ot.contains(n.ownerDocument,n)&&C(v(n,"script")),n.parentNode.removeChild(n));return this},empty:function(){for(var e,t=0;null!=(e=this[t]);t++){for(1===e.nodeType&&ot.cleanData(v(e,!1));e.firstChild;)e.removeChild(e.firstChild);e.options&&ot.nodeName(e,"select")&&(e.options.length=0)}return this},clone:function(e,t){return e=null==e?!1:e,t=null==t?e:t,this.map(function(){return ot.clone(this,e,t)})},html:function(e){return _t(this,function(e){var t=this[0]||{},n=0,r=this.length;if(void 0===e)return 1===t.nodeType?t.innerHTML.replace(Pt,""):void 0;if(!("string"!=typeof e||Ut.test(e)||!rt.htmlSerialize&&Rt.test(e)||!rt.leadingWhitespace&&Wt.test(e)||Yt[(Bt.exec(e)||["",""])[1].toLowerCase()])){e=e.replace(zt,"<$1></$2>");try{for(;r>n;n++)t=this[n]||{},1===t.nodeType&&(ot.cleanData(v(t,!1)),t.innerHTML=e);t=0}catch(i){}}t&&this.empty().append(e)},null,e,arguments.length)},replaceWith:function(){var e=arguments[0];return this.domManip(arguments,function(t){e=this.parentNode,ot.cleanData(v(this)),e&&e.replaceChild(t,this)}),e&&(e.length||e.nodeType)?this:this.remove()},detach:function(e){return this.remove(e,!0)},domManip:function(e,t){e=K.apply([],e);var n,r,i,o,a,s,l=0,u=this.length,c=this,f=u-1,d=e[0],h=ot.isFunction(d);if(h||u>1&&"string"==typeof d&&!rt.checkClone&&Xt.test(d))return this.each(function(n){var r=c.eq(n);h&&(e[0]=d.call(this,n,r.html())),r.domManip(e,t)});if(u&&(s=ot.buildFragment(e,this[0].ownerDocument,!1,this),n=s.firstChild,1===s.childNodes.length&&(s=n),n)){for(o=ot.map(v(s,"script"),x),i=o.length;u>l;l++)r=s,l!==f&&(r=ot.clone(r,!0,!0),i&&ot.merge(o,v(r,"script"))),t.call(this[l],r,l);if(i)for(a=o[o.length-1].ownerDocument,ot.map(o,w),l=0;i>l;l++)r=o[l],$t.test(r.type||"")&&!ot._data(r,"globalEval")&&ot.contains(a,r)&&(r.src?ot._evalUrl&&ot._evalUrl(r.src):ot.globalEval((r.text||r.textContent||r.innerHTML||"").replace(Jt,"")));s=n=null}return this}}),ot.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(e,t){ot.fn[e]=function(e){for(var n,r=0,i=[],o=ot(e),a=o.length-1;a>=r;r++)n=r===a?this:this.clone(!0),ot(o[r])[t](n),Q.apply(i,n.get());return this.pushStack(i)}});var Zt,en={};!function(){var e;rt.shrinkWrapBlocks=function(){if(null!=e)return e;e=!1;var t,n,r;return n=gt.getElementsByTagName("body")[0],n&&n.style?(t=gt.createElement("div"),r=gt.createElement("div"),r.style.cssText="position:absolute;border:0;width:0;height:0;top:0;left:-9999px",n.appendChild(r).appendChild(t),typeof t.style.zoom!==Tt&&(t.style.cssText="-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;display:block;margin:0;border:0;padding:1px;width:1px;zoom:1",t.appendChild(gt.createElement("div")).style.width="5px",e=3!==t.offsetWidth),n.removeChild(r),e):void 0}}();var tn,nn,rn=/^margin/,on=new RegExp("^("+Lt+")(?!px)[a-z%]+$","i"),an=/^(top|right|bottom|left)$/;t.getComputedStyle?(tn=function(e){return e.ownerDocument.defaultView.getComputedStyle(e,null)},nn=function(e,t,n){var r,i,o,a,s=e.style;return n=n||tn(e),a=n?n.getPropertyValue(t)||n[t]:void 0,n&&(""!==a||ot.contains(e.ownerDocument,e)||(a=ot.style(e,t)),on.test(a)&&rn.test(t)&&(r=s.width,i=s.minWidth,o=s.maxWidth,s.minWidth=s.maxWidth=s.width=a,a=n.width,s.width=r,s.minWidth=i,s.maxWidth=o)),void 0===a?a:a+""}):gt.documentElement.currentStyle&&(tn=function(e){return e.currentStyle},nn=function(e,t,n){var r,i,o,a,s=e.style;return n=n||tn(e),a=n?n[t]:void 0,null==a&&s&&s[t]&&(a=s[t]),on.test(a)&&!an.test(t)&&(r=s.left,i=e.runtimeStyle,o=i&&i.left,o&&(i.left=e.currentStyle.left),s.left="fontSize"===t?"1em":a,a=s.pixelLeft+"px",s.left=r,o&&(i.left=o)),void 0===a?a:a+""||"auto"}),function(){function e(){var e,n,r,i;n=gt.getElementsByTagName("body")[0],n&&n.style&&(e=gt.createElement("div"),r=gt.createElement("div"),r.style.cssText="position:absolute;border:0;width:0;height:0;top:0;left:-9999px",n.appendChild(r).appendChild(e),e.style.cssText="-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;display:block;margin-top:1%;top:1%;border:1px;padding:1px;width:4px;position:absolute",o=a=!1,l=!0,t.getComputedStyle&&(o="1%"!==(t.getComputedStyle(e,null)||{}).top,a="4px"===(t.getComputedStyle(e,null)||{width:"4px"}).width,i=e.appendChild(gt.createElement("div")),i.style.cssText=e.style.cssText="-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;display:block;margin:0;border:0;padding:0",i.style.marginRight=i.style.width="0",e.style.width="1px",l=!parseFloat((t.getComputedStyle(i,null)||{}).marginRight)),e.innerHTML="<table><tr><td></td><td>t</td></tr></table>",i=e.getElementsByTagName("td"),i[0].style.cssText="margin:0;border:0;padding:0;display:none",s=0===i[0].offsetHeight,s&&(i[0].style.display="",i[1].style.display="none",s=0===i[0].offsetHeight),n.removeChild(r))}var n,r,i,o,a,s,l;n=gt.createElement("div"),n.innerHTML=" <link/><table></table><a href='/a'>a</a><input type='checkbox'/>",i=n.getElementsByTagName("a")[0],r=i&&i.style,r&&(r.cssText="float:left;opacity:.5",rt.opacity="0.5"===r.opacity,rt.cssFloat=!!r.cssFloat,n.style.backgroundClip="content-box",n.cloneNode(!0).style.backgroundClip="",rt.clearCloneStyle="content-box"===n.style.backgroundClip,rt.boxSizing=""===r.boxSizing||""===r.MozBoxSizing||""===r.WebkitBoxSizing,ot.extend(rt,{reliableHiddenOffsets:function(){return null==s&&e(),s},boxSizingReliable:function(){return null==a&&e(),a},pixelPosition:function(){return null==o&&e(),o},reliableMarginRight:function(){return null==l&&e(),l}}))}(),ot.swap=function(e,t,n,r){var i,o,a={};for(o in t)a[o]=e.style[o],e.style[o]=t[o];i=n.apply(e,r||[]);for(o in t)e.style[o]=a[o];return i};var sn=/alpha\([^)]*\)/i,ln=/opacity\s*=\s*([^)]*)/,un=/^(none|table(?!-c[ea]).+)/,cn=new RegExp("^("+Lt+")(.*)$","i"),fn=new RegExp("^([+-])=("+Lt+")","i"),dn={position:"absolute",visibility:"hidden",display:"block"},hn={letterSpacing:"0",fontWeight:"400"},pn=["Webkit","O","Moz","ms"];ot.extend({cssHooks:{opacity:{get:function(e,t){if(t){var n=nn(e,"opacity");return""===n?"1":n}}}},cssNumber:{columnCount:!0,fillOpacity:!0,flexGrow:!0,flexShrink:!0,fontWeight:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{"float":rt.cssFloat?"cssFloat":"styleFloat"},style:function(e,t,n,r){if(e&&3!==e.nodeType&&8!==e.nodeType&&e.style){var i,o,a,s=ot.camelCase(t),l=e.style;if(t=ot.cssProps[s]||(ot.cssProps[s]=N(l,s)),a=ot.cssHooks[t]||ot.cssHooks[s],void 0===n)return a&&"get"in a&&void 0!==(i=a.get(e,!1,r))?i:l[t];if(o=typeof n,"string"===o&&(i=fn.exec(n))&&(n=(i[1]+1)*i[2]+parseFloat(ot.css(e,t)),o="number"),null!=n&&n===n&&("number"!==o||ot.cssNumber[s]||(n+="px"),rt.clearCloneStyle||""!==n||0!==t.indexOf("background")||(l[t]="inherit"),!(a&&"set"in a&&void 0===(n=a.set(e,n,r)))))try{l[t]=n}catch(u){}}},css:function(e,t,n,r){var i,o,a,s=ot.camelCase(t);return t=ot.cssProps[s]||(ot.cssProps[s]=N(e.style,s)),a=ot.cssHooks[t]||ot.cssHooks[s],a&&"get"in a&&(o=a.get(e,!0,n)),void 0===o&&(o=nn(e,t,r)),"normal"===o&&t in hn&&(o=hn[t]),""===n||n?(i=parseFloat(o),n===!0||ot.isNumeric(i)?i||0:o):o}}),ot.each(["height","width"],function(e,t){ot.cssHooks[t]={get:function(e,n,r){return n?un.test(ot.css(e,"display"))&&0===e.offsetWidth?ot.swap(e,dn,function(){return E(e,t,r)}):E(e,t,r):void 0},set:function(e,n,r){var i=r&&tn(e);return _(e,n,r?M(e,t,r,rt.boxSizing&&"border-box"===ot.css(e,"boxSizing",!1,i),i):0)}}}),rt.opacity||(ot.cssHooks.opacity={get:function(e,t){return ln.test((t&&e.currentStyle?e.currentStyle.filter:e.style.filter)||"")?.01*parseFloat(RegExp.$1)+"":t?"1":""},set:function(e,t){var n=e.style,r=e.currentStyle,i=ot.isNumeric(t)?"alpha(opacity="+100*t+")":"",o=r&&r.filter||n.filter||"";n.zoom=1,(t>=1||""===t)&&""===ot.trim(o.replace(sn,""))&&n.removeAttribute&&(n.removeAttribute("filter"),""===t||r&&!r.filter)||(n.filter=sn.test(o)?o.replace(sn,i):o+" "+i)}}),ot.cssHooks.marginRight=L(rt.reliableMarginRight,function(e,t){return t?ot.swap(e,{display:"inline-block"},nn,[e,"marginRight"]):void 0}),ot.each({margin:"",padding:"",border:"Width"},function(e,t){ot.cssHooks[e+t]={expand:function(n){for(var r=0,i={},o="string"==typeof n?n.split(" "):[n];4>r;r++)i[e+Nt[r]+t]=o[r]||o[r-2]||o[0];return i}},rn.test(e)||(ot.cssHooks[e+t].set=_)}),ot.fn.extend({css:function(e,t){return _t(this,function(e,t,n){var r,i,o={},a=0;if(ot.isArray(t)){for(r=tn(e),i=t.length;i>a;a++)o[t[a]]=ot.css(e,t[a],!1,r);return o}return void 0!==n?ot.style(e,t,n):ot.css(e,t)},e,t,arguments.length>1)},show:function(){return A(this,!0)},hide:function(){return A(this)},toggle:function(e){return"boolean"==typeof e?e?this.show():this.hide():this.each(function(){At(this)?ot(this).show():ot(this).hide()})}}),ot.Tween=H,H.prototype={constructor:H,init:function(e,t,n,r,i,o){this.elem=e,this.prop=n,this.easing=i||"swing",this.options=t,this.start=this.now=this.cur(),this.end=r,this.unit=o||(ot.cssNumber[n]?"":"px")},cur:function(){var e=H.propHooks[this.prop];return e&&e.get?e.get(this):H.propHooks._default.get(this)},run:function(e){var t,n=H.propHooks[this.prop];return this.pos=t=this.options.duration?ot.easing[this.easing](e,this.options.duration*e,0,1,this.options.duration):e,this.now=(this.end-this.start)*t+this.start,this.options.step&&this.options.step.call(this.elem,this.now,this),n&&n.set?n.set(this):H.propHooks._default.set(this),this}},H.prototype.init.prototype=H.prototype,H.propHooks={_default:{get:function(e){var t;return null==e.elem[e.prop]||e.elem.style&&null!=e.elem.style[e.prop]?(t=ot.css(e.elem,e.prop,""),t&&"auto"!==t?t:0):e.elem[e.prop]},set:function(e){ot.fx.step[e.prop]?ot.fx.step[e.prop](e):e.elem.style&&(null!=e.elem.style[ot.cssProps[e.prop]]||ot.cssHooks[e.prop])?ot.style(e.elem,e.prop,e.now+e.unit):e.elem[e.prop]=e.now}}},H.propHooks.scrollTop=H.propHooks.scrollLeft={set:function(e){e.elem.nodeType&&e.elem.parentNode&&(e.elem[e.prop]=e.now)}},ot.easing={linear:function(e){return e},swing:function(e){return.5-Math.cos(e*Math.PI)/2}},ot.fx=H.prototype.init,ot.fx.step={};var gn,mn,vn=/^(?:toggle|show|hide)$/,yn=new RegExp("^(?:([+-])=|)("+Lt+")([a-z%]*)$","i"),bn=/queueHooks$/,xn=[F],wn={"*":[function(e,t){var n=this.createTween(e,t),r=n.cur(),i=yn.exec(t),o=i&&i[3]||(ot.cssNumber[e]?"":"px"),a=(ot.cssNumber[e]||"px"!==o&&+r)&&yn.exec(ot.css(n.elem,e)),s=1,l=20;if(a&&a[3]!==o){o=o||a[3],i=i||[],a=+r||1;do s=s||".5",a/=s,ot.style(n.elem,e,a+o);while(s!==(s=n.cur()/r)&&1!==s&&--l)}return i&&(a=n.start=+a||+r||0,n.unit=o,n.end=i[1]?a+(i[1]+1)*i[2]:+i[2]),n}]};ot.Animation=ot.extend(R,{tweener:function(e,t){ot.isFunction(e)?(t=e,e=["*"]):e=e.split(" ");for(var n,r=0,i=e.length;i>r;r++)n=e[r],wn[n]=wn[n]||[],wn[n].unshift(t)},prefilter:function(e,t){t?xn.unshift(e):xn.push(e)}}),ot.speed=function(e,t,n){var r=e&&"object"==typeof e?ot.extend({},e):{complete:n||!n&&t||ot.isFunction(e)&&e,duration:e,easing:n&&t||t&&!ot.isFunction(t)&&t};return r.duration=ot.fx.off?0:"number"==typeof r.duration?r.duration:r.duration in ot.fx.speeds?ot.fx.speeds[r.duration]:ot.fx.speeds._default,(null==r.queue||r.queue===!0)&&(r.queue="fx"),r.old=r.complete,r.complete=function(){ot.isFunction(r.old)&&r.old.call(this),r.queue&&ot.dequeue(this,r.queue)},r},ot.fn.extend({fadeTo:function(e,t,n,r){return this.filter(At).css("opacity",0).show().end().animate({opacity:t},e,n,r)},animate:function(e,t,n,r){var i=ot.isEmptyObject(e),o=ot.speed(t,n,r),a=function(){var t=R(this,ot.extend({},e),o);(i||ot._data(this,"finish"))&&t.stop(!0)};return a.finish=a,i||o.queue===!1?this.each(a):this.queue(o.queue,a)},stop:function(e,t,n){var r=function(e){var t=e.stop;delete e.stop,t(n)};return"string"!=typeof e&&(n=t,t=e,e=void 0),t&&e!==!1&&this.queue(e||"fx",[]),this.each(function(){var t=!0,i=null!=e&&e+"queueHooks",o=ot.timers,a=ot._data(this);if(i)a[i]&&a[i].stop&&r(a[i]);else for(i in a)a[i]&&a[i].stop&&bn.test(i)&&r(a[i]);for(i=o.length;i--;)o[i].elem!==this||null!=e&&o[i].queue!==e||(o[i].anim.stop(n),t=!1,o.splice(i,1));(t||!n)&&ot.dequeue(this,e)})},finish:function(e){return e!==!1&&(e=e||"fx"),this.each(function(){var t,n=ot._data(this),r=n[e+"queue"],i=n[e+"queueHooks"],o=ot.timers,a=r?r.length:0;for(n.finish=!0,ot.queue(this,e,[]),i&&i.stop&&i.stop.call(this,!0),t=o.length;t--;)o[t].elem===this&&o[t].queue===e&&(o[t].anim.stop(!0),o.splice(t,1));for(t=0;a>t;t++)r[t]&&r[t].finish&&r[t].finish.call(this);delete n.finish})}}),ot.each(["toggle","show","hide"],function(e,t){var n=ot.fn[t];ot.fn[t]=function(e,r,i){return null==e||"boolean"==typeof e?n.apply(this,arguments):this.animate(I(t,!0),e,r,i)}}),ot.each({slideDown:I("show"),slideUp:I("hide"),slideToggle:I("toggle"),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"},fadeToggle:{opacity:"toggle"}},function(e,t){ot.fn[e]=function(e,n,r){return this.animate(t,e,n,r)}}),ot.timers=[],ot.fx.tick=function(){var e,t=ot.timers,n=0;for(gn=ot.now();n<t.length;n++)e=t[n],e()||t[n]!==e||t.splice(n--,1);t.length||ot.fx.stop(),gn=void 0},ot.fx.timer=function(e){ot.timers.push(e),e()?ot.fx.start():ot.timers.pop()},ot.fx.interval=13,ot.fx.start=function(){mn||(mn=setInterval(ot.fx.tick,ot.fx.interval))},ot.fx.stop=function(){clearInterval(mn),mn=null},ot.fx.speeds={slow:600,fast:200,_default:400},ot.fn.delay=function(e,t){return e=ot.fx?ot.fx.speeds[e]||e:e,t=t||"fx",this.queue(t,function(t,n){var r=setTimeout(t,e);n.stop=function(){clearTimeout(r)}})},function(){var e,t,n,r,i;t=gt.createElement("div"),t.setAttribute("className","t"),t.innerHTML=" <link/><table></table><a href='/a'>a</a><input type='checkbox'/>",r=t.getElementsByTagName("a")[0],n=gt.createElement("select"),i=n.appendChild(gt.createElement("option")),e=t.getElementsByTagName("input")[0],r.style.cssText="top:1px",rt.getSetAttribute="t"!==t.className,rt.style=/top/.test(r.getAttribute("style")),rt.hrefNormalized="/a"===r.getAttribute("href"),rt.checkOn=!!e.value,rt.optSelected=i.selected,rt.enctype=!!gt.createElement("form").enctype,n.disabled=!0,rt.optDisabled=!i.disabled,e=gt.createElement("input"),e.setAttribute("value",""),rt.input=""===e.getAttribute("value"),e.value="t",e.setAttribute("type","radio"),rt.radioValue="t"===e.value}();var Cn=/\r/g;ot.fn.extend({val:function(e){var t,n,r,i=this[0];{if(arguments.length)return r=ot.isFunction(e),this.each(function(n){var i;1===this.nodeType&&(i=r?e.call(this,n,ot(this).val()):e,null==i?i="":"number"==typeof i?i+="":ot.isArray(i)&&(i=ot.map(i,function(e){return null==e?"":e+""})),t=ot.valHooks[this.type]||ot.valHooks[this.nodeName.toLowerCase()],t&&"set"in t&&void 0!==t.set(this,i,"value")||(this.value=i))});if(i)return t=ot.valHooks[i.type]||ot.valHooks[i.nodeName.toLowerCase()],t&&"get"in t&&void 0!==(n=t.get(i,"value"))?n:(n=i.value,"string"==typeof n?n.replace(Cn,""):null==n?"":n)}}}),ot.extend({valHooks:{option:{get:function(e){var t=ot.find.attr(e,"value");return null!=t?t:ot.trim(ot.text(e))}},select:{get:function(e){for(var t,n,r=e.options,i=e.selectedIndex,o="select-one"===e.type||0>i,a=o?null:[],s=o?i+1:r.length,l=0>i?s:o?i:0;s>l;l++)if(n=r[l],!(!n.selected&&l!==i||(rt.optDisabled?n.disabled:null!==n.getAttribute("disabled"))||n.parentNode.disabled&&ot.nodeName(n.parentNode,"optgroup"))){if(t=ot(n).val(),o)return t;a.push(t)}return a},set:function(e,t){for(var n,r,i=e.options,o=ot.makeArray(t),a=i.length;a--;)if(r=i[a],ot.inArray(ot.valHooks.option.get(r),o)>=0)try{r.selected=n=!0}catch(s){r.scrollHeight}else r.selected=!1;return n||(e.selectedIndex=-1),i}}}}),ot.each(["radio","checkbox"],function(){ot.valHooks[this]={set:function(e,t){return ot.isArray(t)?e.checked=ot.inArray(ot(e).val(),t)>=0:void 0}},rt.checkOn||(ot.valHooks[this].get=function(e){return null===e.getAttribute("value")?"on":e.value})});var Sn,Tn,Dn=ot.expr.attrHandle,kn=/^(?:checked|selected)$/i,Ln=rt.getSetAttribute,Nn=rt.input;ot.fn.extend({attr:function(e,t){return _t(this,ot.attr,e,t,arguments.length>1)},removeAttr:function(e){return this.each(function(){ot.removeAttr(this,e)})}}),ot.extend({attr:function(e,t,n){var r,i,o=e.nodeType;if(e&&3!==o&&8!==o&&2!==o)return typeof e.getAttribute===Tt?ot.prop(e,t,n):(1===o&&ot.isXMLDoc(e)||(t=t.toLowerCase(),r=ot.attrHooks[t]||(ot.expr.match.bool.test(t)?Tn:Sn)),void 0===n?r&&"get"in r&&null!==(i=r.get(e,t))?i:(i=ot.find.attr(e,t),null==i?void 0:i):null!==n?r&&"set"in r&&void 0!==(i=r.set(e,n,t))?i:(e.setAttribute(t,n+""),n):void ot.removeAttr(e,t))},removeAttr:function(e,t){var n,r,i=0,o=t&&t.match(xt);if(o&&1===e.nodeType)for(;n=o[i++];)r=ot.propFix[n]||n,ot.expr.match.bool.test(n)?Nn&&Ln||!kn.test(n)?e[r]=!1:e[ot.camelCase("default-"+n)]=e[r]=!1:ot.attr(e,n,""),e.removeAttribute(Ln?n:r)},attrHooks:{type:{set:function(e,t){if(!rt.radioValue&&"radio"===t&&ot.nodeName(e,"input")){var n=e.value;return e.setAttribute("type",t),n&&(e.value=n),t}}}}}),Tn={set:function(e,t,n){return t===!1?ot.removeAttr(e,n):Nn&&Ln||!kn.test(n)?e.setAttribute(!Ln&&ot.propFix[n]||n,n):e[ot.camelCase("default-"+n)]=e[n]=!0,n}},ot.each(ot.expr.match.bool.source.match(/\w+/g),function(e,t){var n=Dn[t]||ot.find.attr;Dn[t]=Nn&&Ln||!kn.test(t)?function(e,t,r){var i,o;return r||(o=Dn[t],Dn[t]=i,i=null!=n(e,t,r)?t.toLowerCase():null,Dn[t]=o),i}:function(e,t,n){return n?void 0:e[ot.camelCase("default-"+t)]?t.toLowerCase():null}}),Nn&&Ln||(ot.attrHooks.value={set:function(e,t,n){return ot.nodeName(e,"input")?void(e.defaultValue=t):Sn&&Sn.set(e,t,n)}}),Ln||(Sn={set:function(e,t,n){var r=e.getAttributeNode(n);return r||e.setAttributeNode(r=e.ownerDocument.createAttribute(n)),r.value=t+="","value"===n||t===e.getAttribute(n)?t:void 0}},Dn.id=Dn.name=Dn.coords=function(e,t,n){var r;return n?void 0:(r=e.getAttributeNode(t))&&""!==r.value?r.value:null},ot.valHooks.button={get:function(e,t){var n=e.getAttributeNode(t);return n&&n.specified?n.value:void 0},set:Sn.set},ot.attrHooks.contenteditable={set:function(e,t,n){Sn.set(e,""===t?!1:t,n)}},ot.each(["width","height"],function(e,t){ot.attrHooks[t]={set:function(e,n){return""===n?(e.setAttribute(t,"auto"),n):void 0}}})),rt.style||(ot.attrHooks.style={get:function(e){return e.style.cssText||void 0},set:function(e,t){return e.style.cssText=t+""}});var An=/^(?:input|select|textarea|button|object)$/i,_n=/^(?:a|area)$/i;ot.fn.extend({prop:function(e,t){return _t(this,ot.prop,e,t,arguments.length>1)},removeProp:function(e){return e=ot.propFix[e]||e,this.each(function(){try{this[e]=void 0,delete this[e]}catch(t){}})}}),ot.extend({propFix:{"for":"htmlFor","class":"className"},prop:function(e,t,n){var r,i,o,a=e.nodeType;if(e&&3!==a&&8!==a&&2!==a)return o=1!==a||!ot.isXMLDoc(e),o&&(t=ot.propFix[t]||t,i=ot.propHooks[t]),void 0!==n?i&&"set"in i&&void 0!==(r=i.set(e,n,t))?r:e[t]=n:i&&"get"in i&&null!==(r=i.get(e,t))?r:e[t]},propHooks:{tabIndex:{get:function(e){var t=ot.find.attr(e,"tabindex");return t?parseInt(t,10):An.test(e.nodeName)||_n.test(e.nodeName)&&e.href?0:-1}}}}),rt.hrefNormalized||ot.each(["href","src"],function(e,t){ot.propHooks[t]={get:function(e){return e.getAttribute(t,4)}}}),rt.optSelected||(ot.propHooks.selected={get:function(e){var t=e.parentNode;return t&&(t.selectedIndex,t.parentNode&&t.parentNode.selectedIndex),null}}),ot.each(["tabIndex","readOnly","maxLength","cellSpacing","cellPadding","rowSpan","colSpan","useMap","frameBorder","contentEditable"],function(){ot.propFix[this.toLowerCase()]=this}),rt.enctype||(ot.propFix.enctype="encoding");var Mn=/[\t\r\n\f]/g;ot.fn.extend({addClass:function(e){var t,n,r,i,o,a,s=0,l=this.length,u="string"==typeof e&&e;if(ot.isFunction(e))return this.each(function(t){ot(this).addClass(e.call(this,t,this.className))});if(u)for(t=(e||"").match(xt)||[];l>s;s++)if(n=this[s],r=1===n.nodeType&&(n.className?(" "+n.className+" ").replace(Mn," "):" ")){for(o=0;i=t[o++];)r.indexOf(" "+i+" ")<0&&(r+=i+" ");a=ot.trim(r),n.className!==a&&(n.className=a)}return this},removeClass:function(e){var t,n,r,i,o,a,s=0,l=this.length,u=0===arguments.length||"string"==typeof e&&e;if(ot.isFunction(e))return this.each(function(t){ot(this).removeClass(e.call(this,t,this.className))});if(u)for(t=(e||"").match(xt)||[];l>s;s++)if(n=this[s],r=1===n.nodeType&&(n.className?(" "+n.className+" ").replace(Mn," "):"")){for(o=0;i=t[o++];)for(;r.indexOf(" "+i+" ")>=0;)r=r.replace(" "+i+" "," ");a=e?ot.trim(r):"",n.className!==a&&(n.className=a)}return this},toggleClass:function(e,t){var n=typeof e;return"boolean"==typeof t&&"string"===n?t?this.addClass(e):this.removeClass(e):this.each(ot.isFunction(e)?function(n){ot(this).toggleClass(e.call(this,n,this.className,t),t)}:function(){if("string"===n)for(var t,r=0,i=ot(this),o=e.match(xt)||[];t=o[r++];)i.hasClass(t)?i.removeClass(t):i.addClass(t);else(n===Tt||"boolean"===n)&&(this.className&&ot._data(this,"__className__",this.className),this.className=this.className||e===!1?"":ot._data(this,"__className__")||"")})},hasClass:function(e){for(var t=" "+e+" ",n=0,r=this.length;r>n;n++)if(1===this[n].nodeType&&(" "+this[n].className+" ").replace(Mn," ").indexOf(t)>=0)return!0;return!1}}),ot.each("blur focus focusin focusout load resize scroll unload click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup error contextmenu".split(" "),function(e,t){ot.fn[t]=function(e,n){return arguments.length>0?this.on(t,null,e,n):this.trigger(t)}}),ot.fn.extend({hover:function(e,t){return this.mouseenter(e).mouseleave(t||e)},bind:function(e,t,n){return this.on(e,null,t,n)},unbind:function(e,t){return this.off(e,null,t)},delegate:function(e,t,n,r){return this.on(t,e,n,r)},undelegate:function(e,t,n){return 1===arguments.length?this.off(e,"**"):this.off(t,e||"**",n)}});var En=ot.now(),Hn=/\?/,jn=/(,)|(\[|{)|(}|])|"(?:[^"\\\r\n]|\\["\\\/bfnrt]|\\u[\da-fA-F]{4})*"\s*:?|true|false|null|-?(?!0\d)\d+(?:\.\d+|)(?:[eE][+-]?\d+|)/g;ot.parseJSON=function(e){if(t.JSON&&t.JSON.parse)return t.JSON.parse(e+"");var n,r=null,i=ot.trim(e+"");return i&&!ot.trim(i.replace(jn,function(e,t,i,o){return n&&t&&(r=0),0===r?e:(n=i||t,r+=!o-!i,"")}))?Function("return "+i)():ot.error("Invalid JSON: "+e)},ot.parseXML=function(e){var n,r;if(!e||"string"!=typeof e)return null;try{t.DOMParser?(r=new DOMParser,n=r.parseFromString(e,"text/xml")):(n=new ActiveXObject("Microsoft.XMLDOM"),n.async="false",n.loadXML(e))}catch(i){n=void 0}return n&&n.documentElement&&!n.getElementsByTagName("parsererror").length||ot.error("Invalid XML: "+e),n};var In,On,Fn=/#.*$/,Pn=/([?&])_=[^&]*/,Rn=/^(.*?):[ \t]*([^\r\n]*)\r?$/gm,Wn=/^(?:about|app|app-storage|.+-extension|file|res|widget):$/,zn=/^(?:GET|HEAD)$/,Bn=/^\/\//,qn=/^([\w.+-]+:)(?:\/\/(?:[^\/?#]*@|)([^\/?#:]*)(?::(\d+)|)|)/,Vn={},Un={},Xn="*/".concat("*");try{On=location.href}catch($n){On=gt.createElement("a"),On.href="",On=On.href}In=qn.exec(On.toLowerCase())||[],ot.extend({active:0,lastModified:{},etag:{},ajaxSettings:{url:On,type:"GET",isLocal:Wn.test(In[1]),global:!0,processData:!0,async:!0,contentType:"application/x-www-form-urlencoded; charset=UTF-8",accepts:{"*":Xn,text:"text/plain",html:"text/html",xml:"application/xml, text/xml",json:"application/json, text/javascript"},contents:{xml:/xml/,html:/html/,json:/json/},responseFields:{xml:"responseXML",text:"responseText",json:"responseJSON"},converters:{"* text":String,"text html":!0,"text json":ot.parseJSON,"text xml":ot.parseXML},flatOptions:{url:!0,context:!0}},ajaxSetup:function(e,t){return t?B(B(e,ot.ajaxSettings),t):B(ot.ajaxSettings,e)},ajaxPrefilter:W(Vn),ajaxTransport:W(Un),ajax:function(e,t){function n(e,t,n,r){var i,c,v,y,x,C=t;2!==b&&(b=2,s&&clearTimeout(s),u=void 0,a=r||"",w.readyState=e>0?4:0,i=e>=200&&300>e||304===e,n&&(y=q(f,w,n)),y=V(f,y,w,i),i?(f.ifModified&&(x=w.getResponseHeader("Last-Modified"),x&&(ot.lastModified[o]=x),x=w.getResponseHeader("etag"),x&&(ot.etag[o]=x)),204===e||"HEAD"===f.type?C="nocontent":304===e?C="notmodified":(C=y.state,c=y.data,v=y.error,i=!v)):(v=C,(e||!C)&&(C="error",0>e&&(e=0))),w.status=e,w.statusText=(t||C)+"",i?p.resolveWith(d,[c,C,w]):p.rejectWith(d,[w,C,v]),w.statusCode(m),m=void 0,l&&h.trigger(i?"ajaxSuccess":"ajaxError",[w,f,i?c:v]),g.fireWith(d,[w,C]),l&&(h.trigger("ajaxComplete",[w,f]),--ot.active||ot.event.trigger("ajaxStop")))}"object"==typeof e&&(t=e,e=void 0),t=t||{};var r,i,o,a,s,l,u,c,f=ot.ajaxSetup({},t),d=f.context||f,h=f.context&&(d.nodeType||d.jquery)?ot(d):ot.event,p=ot.Deferred(),g=ot.Callbacks("once memory"),m=f.statusCode||{},v={},y={},b=0,x="canceled",w={readyState:0,getResponseHeader:function(e){var t;if(2===b){if(!c)for(c={};t=Rn.exec(a);)c[t[1].toLowerCase()]=t[2];t=c[e.toLowerCase()]}return null==t?null:t},getAllResponseHeaders:function(){return 2===b?a:null},setRequestHeader:function(e,t){var n=e.toLowerCase();return b||(e=y[n]=y[n]||e,v[e]=t),this},overrideMimeType:function(e){return b||(f.mimeType=e),this},statusCode:function(e){var t;if(e)if(2>b)for(t in e)m[t]=[m[t],e[t]];else w.always(e[w.status]);return this},abort:function(e){var t=e||x;return u&&u.abort(t),n(0,t),this}};if(p.promise(w).complete=g.add,w.success=w.done,w.error=w.fail,f.url=((e||f.url||On)+"").replace(Fn,"").replace(Bn,In[1]+"//"),f.type=t.method||t.type||f.method||f.type,f.dataTypes=ot.trim(f.dataType||"*").toLowerCase().match(xt)||[""],null==f.crossDomain&&(r=qn.exec(f.url.toLowerCase()),f.crossDomain=!(!r||r[1]===In[1]&&r[2]===In[2]&&(r[3]||("http:"===r[1]?"80":"443"))===(In[3]||("http:"===In[1]?"80":"443")))),f.data&&f.processData&&"string"!=typeof f.data&&(f.data=ot.param(f.data,f.traditional)),z(Vn,f,t,w),2===b)return w;l=f.global,l&&0===ot.active++&&ot.event.trigger("ajaxStart"),f.type=f.type.toUpperCase(),f.hasContent=!zn.test(f.type),o=f.url,f.hasContent||(f.data&&(o=f.url+=(Hn.test(o)?"&":"?")+f.data,delete f.data),f.cache===!1&&(f.url=Pn.test(o)?o.replace(Pn,"$1_="+En++):o+(Hn.test(o)?"&":"?")+"_="+En++)),f.ifModified&&(ot.lastModified[o]&&w.setRequestHeader("If-Modified-Since",ot.lastModified[o]),ot.etag[o]&&w.setRequestHeader("If-None-Match",ot.etag[o])),(f.data&&f.hasContent&&f.contentType!==!1||t.contentType)&&w.setRequestHeader("Content-Type",f.contentType),w.setRequestHeader("Accept",f.dataTypes[0]&&f.accepts[f.dataTypes[0]]?f.accepts[f.dataTypes[0]]+("*"!==f.dataTypes[0]?", "+Xn+"; q=0.01":""):f.accepts["*"]);for(i in f.headers)w.setRequestHeader(i,f.headers[i]);if(f.beforeSend&&(f.beforeSend.call(d,w,f)===!1||2===b))return w.abort();x="abort";for(i in{success:1,error:1,complete:1})w[i](f[i]);if(u=z(Un,f,t,w)){w.readyState=1,l&&h.trigger("ajaxSend",[w,f]),f.async&&f.timeout>0&&(s=setTimeout(function(){w.abort("timeout")},f.timeout));try{b=1,u.send(v,n)}catch(C){if(!(2>b))throw C;n(-1,C)}}else n(-1,"No Transport");return w},getJSON:function(e,t,n){return ot.get(e,t,n,"json")},getScript:function(e,t){return ot.get(e,void 0,t,"script")}}),ot.each(["get","post"],function(e,t){ot[t]=function(e,n,r,i){return ot.isFunction(n)&&(i=i||r,r=n,n=void 0),ot.ajax({url:e,type:t,dataType:i,data:n,success:r})}}),ot.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],function(e,t){ot.fn[t]=function(e){return this.on(t,e)}}),ot._evalUrl=function(e){return ot.ajax({url:e,type:"GET",dataType:"script",async:!1,global:!1,"throws":!0})},ot.fn.extend({wrapAll:function(e){if(ot.isFunction(e))return this.each(function(t){ot(this).wrapAll(e.call(this,t))});if(this[0]){var t=ot(e,this[0].ownerDocument).eq(0).clone(!0);this[0].parentNode&&t.insertBefore(this[0]),t.map(function(){for(var e=this;e.firstChild&&1===e.firstChild.nodeType;)e=e.firstChild;return e}).append(this)}return this},wrapInner:function(e){return this.each(ot.isFunction(e)?function(t){ot(this).wrapInner(e.call(this,t)) }:function(){var t=ot(this),n=t.contents();n.length?n.wrapAll(e):t.append(e)})},wrap:function(e){var t=ot.isFunction(e);return this.each(function(n){ot(this).wrapAll(t?e.call(this,n):e)})},unwrap:function(){return this.parent().each(function(){ot.nodeName(this,"body")||ot(this).replaceWith(this.childNodes)}).end()}}),ot.expr.filters.hidden=function(e){return e.offsetWidth<=0&&e.offsetHeight<=0||!rt.reliableHiddenOffsets()&&"none"===(e.style&&e.style.display||ot.css(e,"display"))},ot.expr.filters.visible=function(e){return!ot.expr.filters.hidden(e)};var Gn=/%20/g,Jn=/\[\]$/,Yn=/\r?\n/g,Kn=/^(?:submit|button|image|reset|file)$/i,Qn=/^(?:input|select|textarea|keygen)/i;ot.param=function(e,t){var n,r=[],i=function(e,t){t=ot.isFunction(t)?t():null==t?"":t,r[r.length]=encodeURIComponent(e)+"="+encodeURIComponent(t)};if(void 0===t&&(t=ot.ajaxSettings&&ot.ajaxSettings.traditional),ot.isArray(e)||e.jquery&&!ot.isPlainObject(e))ot.each(e,function(){i(this.name,this.value)});else for(n in e)U(n,e[n],t,i);return r.join("&").replace(Gn,"+")},ot.fn.extend({serialize:function(){return ot.param(this.serializeArray())},serializeArray:function(){return this.map(function(){var e=ot.prop(this,"elements");return e?ot.makeArray(e):this}).filter(function(){var e=this.type;return this.name&&!ot(this).is(":disabled")&&Qn.test(this.nodeName)&&!Kn.test(e)&&(this.checked||!Mt.test(e))}).map(function(e,t){var n=ot(this).val();return null==n?null:ot.isArray(n)?ot.map(n,function(e){return{name:t.name,value:e.replace(Yn,"\r\n")}}):{name:t.name,value:n.replace(Yn,"\r\n")}}).get()}}),ot.ajaxSettings.xhr=void 0!==t.ActiveXObject?function(){return!this.isLocal&&/^(get|post|head|put|delete|options)$/i.test(this.type)&&X()||$()}:X;var Zn=0,er={},tr=ot.ajaxSettings.xhr();t.ActiveXObject&&ot(t).on("unload",function(){for(var e in er)er[e](void 0,!0)}),rt.cors=!!tr&&"withCredentials"in tr,tr=rt.ajax=!!tr,tr&&ot.ajaxTransport(function(e){if(!e.crossDomain||rt.cors){var t;return{send:function(n,r){var i,o=e.xhr(),a=++Zn;if(o.open(e.type,e.url,e.async,e.username,e.password),e.xhrFields)for(i in e.xhrFields)o[i]=e.xhrFields[i];e.mimeType&&o.overrideMimeType&&o.overrideMimeType(e.mimeType),e.crossDomain||n["X-Requested-With"]||(n["X-Requested-With"]="XMLHttpRequest");for(i in n)void 0!==n[i]&&o.setRequestHeader(i,n[i]+"");o.send(e.hasContent&&e.data||null),t=function(n,i){var s,l,u;if(t&&(i||4===o.readyState))if(delete er[a],t=void 0,o.onreadystatechange=ot.noop,i)4!==o.readyState&&o.abort();else{u={},s=o.status,"string"==typeof o.responseText&&(u.text=o.responseText);try{l=o.statusText}catch(c){l=""}s||!e.isLocal||e.crossDomain?1223===s&&(s=204):s=u.text?200:404}u&&r(s,l,u,o.getAllResponseHeaders())},e.async?4===o.readyState?setTimeout(t):o.onreadystatechange=er[a]=t:t()},abort:function(){t&&t(void 0,!0)}}}}),ot.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/(?:java|ecma)script/},converters:{"text script":function(e){return ot.globalEval(e),e}}}),ot.ajaxPrefilter("script",function(e){void 0===e.cache&&(e.cache=!1),e.crossDomain&&(e.type="GET",e.global=!1)}),ot.ajaxTransport("script",function(e){if(e.crossDomain){var t,n=gt.head||ot("head")[0]||gt.documentElement;return{send:function(r,i){t=gt.createElement("script"),t.async=!0,e.scriptCharset&&(t.charset=e.scriptCharset),t.src=e.url,t.onload=t.onreadystatechange=function(e,n){(n||!t.readyState||/loaded|complete/.test(t.readyState))&&(t.onload=t.onreadystatechange=null,t.parentNode&&t.parentNode.removeChild(t),t=null,n||i(200,"success"))},n.insertBefore(t,n.firstChild)},abort:function(){t&&t.onload(void 0,!0)}}}});var nr=[],rr=/(=)\?(?=&|$)|\?\?/;ot.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var e=nr.pop()||ot.expando+"_"+En++;return this[e]=!0,e}}),ot.ajaxPrefilter("json jsonp",function(e,n,r){var i,o,a,s=e.jsonp!==!1&&(rr.test(e.url)?"url":"string"==typeof e.data&&!(e.contentType||"").indexOf("application/x-www-form-urlencoded")&&rr.test(e.data)&&"data");return s||"jsonp"===e.dataTypes[0]?(i=e.jsonpCallback=ot.isFunction(e.jsonpCallback)?e.jsonpCallback():e.jsonpCallback,s?e[s]=e[s].replace(rr,"$1"+i):e.jsonp!==!1&&(e.url+=(Hn.test(e.url)?"&":"?")+e.jsonp+"="+i),e.converters["script json"]=function(){return a||ot.error(i+" was not called"),a[0]},e.dataTypes[0]="json",o=t[i],t[i]=function(){a=arguments},r.always(function(){t[i]=o,e[i]&&(e.jsonpCallback=n.jsonpCallback,nr.push(i)),a&&ot.isFunction(o)&&o(a[0]),a=o=void 0}),"script"):void 0}),ot.parseHTML=function(e,t,n){if(!e||"string"!=typeof e)return null;"boolean"==typeof t&&(n=t,t=!1),t=t||gt;var r=dt.exec(e),i=!n&&[];return r?[t.createElement(r[1])]:(r=ot.buildFragment([e],t,i),i&&i.length&&ot(i).remove(),ot.merge([],r.childNodes))};var ir=ot.fn.load;ot.fn.load=function(e,t,n){if("string"!=typeof e&&ir)return ir.apply(this,arguments);var r,i,o,a=this,s=e.indexOf(" ");return s>=0&&(r=ot.trim(e.slice(s,e.length)),e=e.slice(0,s)),ot.isFunction(t)?(n=t,t=void 0):t&&"object"==typeof t&&(o="POST"),a.length>0&&ot.ajax({url:e,type:o,dataType:"html",data:t}).done(function(e){i=arguments,a.html(r?ot("<div>").append(ot.parseHTML(e)).find(r):e)}).complete(n&&function(e,t){a.each(n,i||[e.responseText,t,e])}),this},ot.expr.filters.animated=function(e){return ot.grep(ot.timers,function(t){return e===t.elem}).length};var or=t.document.documentElement;ot.offset={setOffset:function(e,t,n){var r,i,o,a,s,l,u,c=ot.css(e,"position"),f=ot(e),d={};"static"===c&&(e.style.position="relative"),s=f.offset(),o=ot.css(e,"top"),l=ot.css(e,"left"),u=("absolute"===c||"fixed"===c)&&ot.inArray("auto",[o,l])>-1,u?(r=f.position(),a=r.top,i=r.left):(a=parseFloat(o)||0,i=parseFloat(l)||0),ot.isFunction(t)&&(t=t.call(e,n,s)),null!=t.top&&(d.top=t.top-s.top+a),null!=t.left&&(d.left=t.left-s.left+i),"using"in t?t.using.call(e,d):f.css(d)}},ot.fn.extend({offset:function(e){if(arguments.length)return void 0===e?this:this.each(function(t){ot.offset.setOffset(this,e,t)});var t,n,r={top:0,left:0},i=this[0],o=i&&i.ownerDocument;if(o)return t=o.documentElement,ot.contains(t,i)?(typeof i.getBoundingClientRect!==Tt&&(r=i.getBoundingClientRect()),n=G(o),{top:r.top+(n.pageYOffset||t.scrollTop)-(t.clientTop||0),left:r.left+(n.pageXOffset||t.scrollLeft)-(t.clientLeft||0)}):r},position:function(){if(this[0]){var e,t,n={top:0,left:0},r=this[0];return"fixed"===ot.css(r,"position")?t=r.getBoundingClientRect():(e=this.offsetParent(),t=this.offset(),ot.nodeName(e[0],"html")||(n=e.offset()),n.top+=ot.css(e[0],"borderTopWidth",!0),n.left+=ot.css(e[0],"borderLeftWidth",!0)),{top:t.top-n.top-ot.css(r,"marginTop",!0),left:t.left-n.left-ot.css(r,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){for(var e=this.offsetParent||or;e&&!ot.nodeName(e,"html")&&"static"===ot.css(e,"position");)e=e.offsetParent;return e||or})}}),ot.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(e,t){var n=/Y/.test(t);ot.fn[e]=function(r){return _t(this,function(e,r,i){var o=G(e);return void 0===i?o?t in o?o[t]:o.document.documentElement[r]:e[r]:void(o?o.scrollTo(n?ot(o).scrollLeft():i,n?i:ot(o).scrollTop()):e[r]=i)},e,r,arguments.length,null)}}),ot.each(["top","left"],function(e,t){ot.cssHooks[t]=L(rt.pixelPosition,function(e,n){return n?(n=nn(e,t),on.test(n)?ot(e).position()[t]+"px":n):void 0})}),ot.each({Height:"height",Width:"width"},function(e,t){ot.each({padding:"inner"+e,content:t,"":"outer"+e},function(n,r){ot.fn[r]=function(r,i){var o=arguments.length&&(n||"boolean"!=typeof r),a=n||(r===!0||i===!0?"margin":"border");return _t(this,function(t,n,r){var i;return ot.isWindow(t)?t.document.documentElement["client"+e]:9===t.nodeType?(i=t.documentElement,Math.max(t.body["scroll"+e],i["scroll"+e],t.body["offset"+e],i["offset"+e],i["client"+e])):void 0===r?ot.css(t,n,a):ot.style(t,n,r,a)},t,o?r:void 0,o,null)}})}),ot.fn.size=function(){return this.length},ot.fn.andSelf=ot.fn.addBack,"function"==typeof e&&e.amd&&e("jquery",[],function(){return ot});var ar=t.jQuery,sr=t.$;return ot.noConflict=function(e){return t.$===ot&&(t.$=sr),e&&t.jQuery===ot&&(t.jQuery=ar),ot},typeof n===Tt&&(t.jQuery=t.$=ot),ot})},{}],8:[function(e,t){t.exports=e(7)},{}],9:[function(t,n){!function(t){function r(){try{return u in t&&t[u]}catch(e){return!1}}function i(e){return function(){var t=Array.prototype.slice.call(arguments,0);t.unshift(a),f.appendChild(a),a.addBehavior("#default#userData"),a.load(u);var n=e.apply(s,t);return f.removeChild(a),n}}function o(e){return e.replace(/^d/,"___$&").replace(p,"___")}var a,s={},l=t.document,u="localStorage",c="script";if(s.disabled=!1,s.set=function(){},s.get=function(){},s.remove=function(){},s.clear=function(){},s.transact=function(e,t,n){var r=s.get(e);null==n&&(n=t,t=null),"undefined"==typeof r&&(r=t||{}),n(r),s.set(e,r)},s.getAll=function(){},s.forEach=function(){},s.serialize=function(e){return JSON.stringify(e)},s.deserialize=function(e){if("string"!=typeof e)return void 0;try{return JSON.parse(e)}catch(t){return e||void 0}},r())a=t[u],s.set=function(e,t){return void 0===t?s.remove(e):(a.setItem(e,s.serialize(t)),t)},s.get=function(e){return s.deserialize(a.getItem(e))},s.remove=function(e){a.removeItem(e)},s.clear=function(){a.clear()},s.getAll=function(){var e={};return s.forEach(function(t,n){e[t]=n}),e},s.forEach=function(e){for(var t=0;t<a.length;t++){var n=a.key(t);e(n,s.get(n))}};else if(l.documentElement.addBehavior){var f,d;try{d=new ActiveXObject("htmlfile"),d.open(),d.write("<"+c+">document.w=window</"+c+'><iframe src="/favicon.ico"></iframe>'),d.close(),f=d.w.frames[0].document,a=f.createElement("div")}catch(h){a=l.createElement("div"),f=l.body}var p=new RegExp("[!\"#$%&'()*+,/\\\\:;<=>?@[\\]^`{|}~]","g");s.set=i(function(e,t,n){return t=o(t),void 0===n?s.remove(t):(e.setAttribute(t,s.serialize(n)),e.save(u),n)}),s.get=i(function(e,t){return t=o(t),s.deserialize(e.getAttribute(t))}),s.remove=i(function(e,t){t=o(t),e.removeAttribute(t),e.save(u)}),s.clear=i(function(e){var t=e.XMLDocument.documentElement.attributes;e.load(u);for(var n,r=0;n=t[r];r++)e.removeAttribute(n.name);e.save(u)}),s.getAll=function(){var e={};return s.forEach(function(t,n){e[t]=n}),e},s.forEach=i(function(e,t){for(var n,r=e.XMLDocument.documentElement.attributes,i=0;n=r[i];++i)t(n.name,s.deserialize(e.getAttribute(n.name)))})}try{var g="__storejs__";s.set(g,g),s.get(g)!=g&&(s.disabled=!0),s.remove(g)}catch(h){s.disabled=!0}s.enabled=!s.disabled,"undefined"!=typeof n&&n.exports&&this.module!==n?n.exports=s:"function"==typeof e&&e.amd?e(s):t.store=s}(Function("return this")())},{}],10:[function(e,t){t.exports=function(t){return e("jquery")(t).closest("[id]").attr("id")}},{jquery:8}],11:[function(e,t){var n=e("jquery"),r=t.exports={cross:'<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" width="30px" height="30px" viewBox="0 0 100 100" enable-background="new 0 0 100 100" xml:space="preserve"><g> <path d="M83.288,88.13c-2.114,2.112-5.575,2.112-7.689,0L53.659,66.188c-2.114-2.112-5.573-2.112-7.687,0L24.251,87.907 c-2.113,2.114-5.571,2.114-7.686,0l-4.693-4.691c-2.114-2.114-2.114-5.573,0-7.688l21.719-21.721c2.113-2.114,2.113-5.573,0-7.686 L11.872,24.4c-2.114-2.113-2.114-5.571,0-7.686l4.842-4.842c2.113-2.114,5.571-2.114,7.686,0L46.12,33.591 c2.114,2.114,5.572,2.114,7.688,0l21.721-21.719c2.114-2.114,5.573-2.114,7.687,0l4.695,4.695c2.111,2.113,2.111,5.571-0.003,7.686 L66.188,45.973c-2.112,2.114-2.112,5.573,0,7.686L88.13,75.602c2.112,2.111,2.112,5.572,0,7.687L83.288,88.13z"/></g></svg>',check:'<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" width="30px" height="30px" viewBox="0 0 100 100" enable-background="new 0 0 100 100" xml:space="preserve"><path fill="#000000" d="M14.301,49.982l22.606,17.047L84.361,4.903c2.614-3.733,7.76-4.64,11.493-2.026l0.627,0.462 c3.732,2.614,4.64,7.758,2.025,11.492l-51.783,79.77c-1.955,2.791-3.896,3.762-7.301,3.988c-3.405,0.225-5.464-1.039-7.508-3.084 L2.447,61.814c-3.263-3.262-3.263-8.553,0-11.814l0.041-0.019C5.75,46.718,11.039,46.718,14.301,49.982z"/></svg>',unsorted:'<svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" version="1.1" id="Layer_1" x="0px" y="0px" width="100%" height="100%" viewBox="0 0 54.552711 113.78478" enable-background="new 0 0 100 100" xml:space="preserve"><g id="g5" transform="matrix(-0.70522156,-0.70898699,-0.70898699,0.70522156,97.988199,55.081205)"><path style="fill:#000000" inkscape:connector-curvature="0" id="path7" d="M 57.911,66.915 45.808,55.063 42.904,52.238 31.661,41.25 31.435,41.083 31.131,40.775 30.794,40.523 30.486,40.3 30.069,40.05 29.815,39.911 29.285,39.659 29.089,39.576 28.474,39.326 28.363,39.297 H 28.336 L 27.665,39.128 27.526,39.1 26.94,38.99 26.714,38.961 26.212,38.934 h -0.31 -0.444 l -0.339,0.027 c -1.45,0.139 -2.876,0.671 -4.11,1.564 l -0.223,0.141 -0.279,0.25 -0.335,0.308 -0.054,0.029 -0.171,0.194 -0.334,0.364 -0.224,0.279 -0.25,0.336 -0.225,0.362 -0.192,0.308 -0.197,0.421 -0.142,0.279 -0.193,0.477 -0.084,0.222 -12.441,38.414 c -0.814,2.458 -0.313,5.029 1.115,6.988 v 0.026 l 0.418,0.532 0.17,0.165 0.251,0.281 0.084,0.079 0.283,0.281 0.25,0.194 0.474,0.367 0.083,0.053 c 2.015,1.371 4.641,1.874 7.131,1.094 L 55.228,80.776 c 4.303,-1.342 6.679,-5.814 5.308,-10.006 -0.387,-1.259 -1.086,-2.35 -1.979,-3.215 l -0.368,-0.337 -0.278,-0.303 z m -6.318,5.896 0.079,0.114 -37.369,11.57 11.854,-36.538 10.565,10.317 2.876,2.825 11.995,11.712 z" /></g><path style="fill:#000000" inkscape:connector-curvature="0" id="path7-9" d="m 8.8748339,52.571766 16.9382111,-0.222584 4.050851,-0.06665 15.719154,-0.222166 0.27778,-0.04246 0.43276,0.0017 0.41632,-0.06121 0.37532,-0.0611 0.47132,-0.119342 0.27767,-0.08206 0.55244,-0.198047 0.19707,-0.08043 0.61095,-0.259721 0.0988,-0.05825 0.019,-0.01914 0.59303,-0.356548 0.11787,-0.0788 0.49125,-0.337892 0.17994,-0.139779 0.37317,-0.336871 0.21862,-0.219786 0.31311,-0.31479 0.21993,-0.259387 c 0.92402,-1.126057 1.55249,-2.512251 1.78961,-4.016904 l 0.0573,-0.25754 0.0195,-0.374113 0.0179,-0.454719 0.0175,-0.05874 -0.0169,-0.258049 -0.0225,-0.493503 -0.0398,-0.355569 -0.0619,-0.414201 -0.098,-0.414812 -0.083,-0.353334 L 53.23955,41.1484 53.14185,40.850967 52.93977,40.377742 52.84157,40.161628 34.38021,4.2507375 C 33.211567,1.9401875 31.035446,0.48226552 28.639484,0.11316952 l -0.01843,-0.01834 -0.671963,-0.07882 -0.236871,0.0042 L 27.335984,-4.7826577e-7 27.220736,0.00379952 l -0.398804,0.0025 -0.313848,0.04043 -0.594474,0.07724 -0.09611,0.02147 C 23.424549,0.60716252 21.216017,2.1142355 20.013025,4.4296865 L 0.93967491,40.894479 c -2.08310801,3.997178 -0.588125,8.835482 3.35080799,10.819749 1.165535,0.613495 2.43199,0.88731 3.675026,0.864202 l 0.49845,-0.02325 0.410875,0.01658 z M 9.1502369,43.934401 9.0136999,43.910011 27.164145,9.2564625 44.70942,43.42818 l -14.765289,0.214677 -4.031106,0.0468 -16.7627881,0.244744 z" /></svg>',sortDesc:'<svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" version="1.1" id="Layer_1" x="0px" y="0px" width="100%" height="100%" viewBox="0 0 54.552711 113.78478" enable-background="new 0 0 100 100" xml:space="preserve"><g id="g5" transform="matrix(-0.70522156,-0.70898699,-0.70898699,0.70522156,97.988199,55.081205)"><path style="fill:#000000" inkscape:connector-curvature="0" id="path7" d="M 57.911,66.915 45.808,55.063 42.904,52.238 31.661,41.25 31.435,41.083 31.131,40.775 30.794,40.523 30.486,40.3 30.069,40.05 29.815,39.911 29.285,39.659 29.089,39.576 28.474,39.326 28.363,39.297 H 28.336 L 27.665,39.128 27.526,39.1 26.94,38.99 26.714,38.961 26.212,38.934 h -0.31 -0.444 l -0.339,0.027 c -1.45,0.139 -2.876,0.671 -4.11,1.564 l -0.223,0.141 -0.279,0.25 -0.335,0.308 -0.054,0.029 -0.171,0.194 -0.334,0.364 -0.224,0.279 -0.25,0.336 -0.225,0.362 -0.192,0.308 -0.197,0.421 -0.142,0.279 -0.193,0.477 -0.084,0.222 -12.441,38.414 c -0.814,2.458 -0.313,5.029 1.115,6.988 v 0.026 l 0.418,0.532 0.17,0.165 0.251,0.281 0.084,0.079 0.283,0.281 0.25,0.194 0.474,0.367 0.083,0.053 c 2.015,1.371 4.641,1.874 7.131,1.094 L 55.228,80.776 c 4.303,-1.342 6.679,-5.814 5.308,-10.006 -0.387,-1.259 -1.086,-2.35 -1.979,-3.215 l -0.368,-0.337 -0.278,-0.303 z m -6.318,5.896 0.079,0.114 -37.369,11.57 11.854,-36.538 10.565,10.317 2.876,2.825 11.995,11.712 z" /></g><path style="fill:#000000" inkscape:connector-curvature="0" id="path9" d="m 27.813273,0.12823506 0.09753,0.02006 c 2.39093,0.458209 4.599455,1.96811104 5.80244,4.28639004 L 52.785897,40.894525 c 2.088044,4.002139 0.590949,8.836902 -3.348692,10.821875 -1.329078,0.688721 -2.766603,0.943695 -4.133174,0.841768 l -0.454018,0.02 L 27.910392,52.354171 23.855313,52.281851 8.14393,52.061827 7.862608,52.021477 7.429856,52.021738 7.014241,51.959818 6.638216,51.900838 6.164776,51.779369 5.889216,51.699439 5.338907,51.500691 5.139719,51.419551 4.545064,51.145023 4.430618,51.105123 4.410168,51.084563 3.817138,50.730843 3.693615,50.647783 3.207314,50.310611 3.028071,50.174369 2.652795,49.833957 2.433471,49.613462 2.140099,49.318523 1.901127,49.041407 C 0.97781,47.916059 0.347935,46.528448 0.11153,45.021676 L 0.05352,44.766255 0.05172,44.371683 0.01894,43.936017 0,43.877277 0.01836,43.62206 0.03666,43.122889 0.0765,42.765905 0.13912,42.352413 0.23568,41.940425 0.32288,41.588517 0.481021,41.151945 0.579391,40.853806 0.77369,40.381268 0.876097,40.162336 19.338869,4.2542801 c 1.172169,-2.308419 3.34759,-3.76846504 5.740829,-4.17716604 l 0.01975,0.01985 0.69605,-0.09573 0.218437,0.0225 0.490791,-0.02132 0.39809,0.0046 0.315972,0.03973 0.594462,0.08149 z" /></svg>',sortAsc:'<svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" version="1.1" id="Layer_1" x="0px" y="0px" width="100%" height="100%" viewBox="0 0 54.552711 113.78478" enable-background="new 0 0 100 100" xml:space="preserve"><g id="g5" transform="matrix(-0.70522156,0.70898699,-0.70898699,-0.70522156,97.988199,58.704807)"><path style="fill:#000000" inkscape:connector-curvature="0" id="path7" d="M 57.911,66.915 45.808,55.063 42.904,52.238 31.661,41.25 31.435,41.083 31.131,40.775 30.794,40.523 30.486,40.3 30.069,40.05 29.815,39.911 29.285,39.659 29.089,39.576 28.474,39.326 28.363,39.297 H 28.336 L 27.665,39.128 27.526,39.1 26.94,38.99 26.714,38.961 26.212,38.934 h -0.31 -0.444 l -0.339,0.027 c -1.45,0.139 -2.876,0.671 -4.11,1.564 l -0.223,0.141 -0.279,0.25 -0.335,0.308 -0.054,0.029 -0.171,0.194 -0.334,0.364 -0.224,0.279 -0.25,0.336 -0.225,0.362 -0.192,0.308 -0.197,0.421 -0.142,0.279 -0.193,0.477 -0.084,0.222 -12.441,38.414 c -0.814,2.458 -0.313,5.029 1.115,6.988 v 0.026 l 0.418,0.532 0.17,0.165 0.251,0.281 0.084,0.079 0.283,0.281 0.25,0.194 0.474,0.367 0.083,0.053 c 2.015,1.371 4.641,1.874 7.131,1.094 L 55.228,80.776 c 4.303,-1.342 6.679,-5.814 5.308,-10.006 -0.387,-1.259 -1.086,-2.35 -1.979,-3.215 l -0.368,-0.337 -0.278,-0.303 z m -6.318,5.896 0.079,0.114 -37.369,11.57 11.854,-36.538 10.565,10.317 2.876,2.825 11.995,11.712 z" /></g><path style="fill:#000000" inkscape:connector-curvature="0" id="path9" d="m 27.813273,113.65778 0.09753,-0.0201 c 2.39093,-0.45821 4.599455,-1.96811 5.80244,-4.28639 L 52.785897,72.891487 c 2.088044,-4.002139 0.590949,-8.836902 -3.348692,-10.821875 -1.329078,-0.688721 -2.766603,-0.943695 -4.133174,-0.841768 l -0.454018,-0.02 -16.939621,0.223997 -4.055079,0.07232 -15.711383,0.220024 -0.281322,0.04035 -0.432752,-2.61e-4 -0.415615,0.06192 -0.376025,0.05898 -0.47344,0.121469 -0.27556,0.07993 -0.550309,0.198748 -0.199188,0.08114 -0.594655,0.274528 -0.114446,0.0399 -0.02045,0.02056 -0.59303,0.35372 -0.123523,0.08306 -0.486301,0.337172 -0.179243,0.136242 -0.375276,0.340412 -0.219324,0.220495 -0.293372,0.294939 -0.238972,0.277116 C 0.97781,65.869953 0.347935,67.257564 0.11153,68.764336 L 0.05352,69.019757 0.05172,69.414329 0.01894,69.849995 0,69.908735 l 0.01836,0.255217 0.0183,0.499171 0.03984,0.356984 0.06262,0.413492 0.09656,0.411988 0.0872,0.351908 0.158141,0.436572 0.09837,0.298139 0.194299,0.472538 0.102407,0.218932 18.462772,35.908054 c 1.172169,2.30842 3.34759,3.76847 5.740829,4.17717 l 0.01975,-0.0199 0.69605,0.0957 0.218437,-0.0225 0.490791,0.0213 0.39809,-0.005 0.315972,-0.0397 0.594462,-0.0815 z" /></svg>',loader:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" width="100%" height="100%" fill="black"> <circle cx="16" cy="3" r="0"> <animate attributeName="r" values="0;3;0;0" dur="1s" repeatCount="indefinite" begin="0" keySplines="0.2 0.2 0.4 0.8;0.2 0.2 0.4 0.8;0.2 0.2 0.4 0.8" calcMode="spline" /> </circle> <circle transform="rotate(45 16 16)" cx="16" cy="3" r="0"> <animate attributeName="r" values="0;3;0;0" dur="1s" repeatCount="indefinite" begin="0.125s" keySplines="0.2 0.2 0.4 0.8;0.2 0.2 0.4 0.8;0.2 0.2 0.4 0.8" calcMode="spline" /> </circle> <circle transform="rotate(90 16 16)" cx="16" cy="3" r="0"> <animate attributeName="r" values="0;3;0;0" dur="1s" repeatCount="indefinite" begin="0.25s" keySplines="0.2 0.2 0.4 0.8;0.2 0.2 0.4 0.8;0.2 0.2 0.4 0.8" calcMode="spline" /> </circle> <circle transform="rotate(135 16 16)" cx="16" cy="3" r="0"> <animate attributeName="r" values="0;3;0;0" dur="1s" repeatCount="indefinite" begin="0.375s" keySplines="0.2 0.2 0.4 0.8;0.2 0.2 0.4 0.8;0.2 0.2 0.4 0.8" calcMode="spline" /> </circle> <circle transform="rotate(180 16 16)" cx="16" cy="3" r="0"> <animate attributeName="r" values="0;3;0;0" dur="1s" repeatCount="indefinite" begin="0.5s" keySplines="0.2 0.2 0.4 0.8;0.2 0.2 0.4 0.8;0.2 0.2 0.4 0.8" calcMode="spline" /> </circle> <circle transform="rotate(225 16 16)" cx="16" cy="3" r="0"> <animate attributeName="r" values="0;3;0;0" dur="1s" repeatCount="indefinite" begin="0.625s" keySplines="0.2 0.2 0.4 0.8;0.2 0.2 0.4 0.8;0.2 0.2 0.4 0.8" calcMode="spline" /> </circle> <circle transform="rotate(270 16 16)" cx="16" cy="3" r="0"> <animate attributeName="r" values="0;3;0;0" dur="1s" repeatCount="indefinite" begin="0.75s" keySplines="0.2 0.2 0.4 0.8;0.2 0.2 0.4 0.8;0.2 0.2 0.4 0.8" calcMode="spline" /> </circle> <circle transform="rotate(315 16 16)" cx="16" cy="3" r="0"> <animate attributeName="r" values="0;3;0;0" dur="1s" repeatCount="indefinite" begin="0.875s" keySplines="0.2 0.2 0.4 0.8;0.2 0.2 0.4 0.8;0.2 0.2 0.4 0.8" calcMode="spline" /> </circle> <circle transform="rotate(180 16 16)" cx="16" cy="3" r="0"> <animate attributeName="r" values="0;3;0;0" dur="1s" repeatCount="indefinite" begin="0.5s" keySplines="0.2 0.2 0.4 0.8;0.2 0.2 0.4 0.8;0.2 0.2 0.4 0.8" calcMode="spline" /> </circle></svg>',query:'<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" width="100%" height="100%" viewBox="0 0 80 80" enable-background="new 0 0 80 80" xml:space="preserve"><g id="Layer_1"></g><g id="Layer_2"> <path d="M64.622,2.411H14.995c-6.627,0-12,5.373-12,12v49.897c0,6.627,5.373,12,12,12h49.627c6.627,0,12-5.373,12-12V14.411 C76.622,7.783,71.249,2.411,64.622,2.411z M24.125,63.906V15.093L61,39.168L24.125,63.906z"/></g></svg>',queryInvalid:'<svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" version="1.1" x="0px" y="0px" width="100%" height="100%" viewBox="0 0 73.627 73.897" enable-background="new 0 0 80 80" xml:space="preserve" ><g id="Layer_1" transform="translate(-2.995,-2.411)" /><g id="Layer_2" transform="translate(-2.995,-2.411)"><path d="M 64.622,2.411 H 14.995 c -6.627,0 -12,5.373 -12,12 v 49.897 c 0,6.627 5.373,12 12,12 h 49.627 c 6.627,0 12,-5.373 12,-12 V 14.411 c 0,-6.628 -5.373,-12 -12,-12 z M 24.125,63.906 V 15.093 L 61,39.168 24.125,63.906 z" id="path6" inkscape:connector-curvature="0" /></g><g transform="matrix(0.76805408,0,0,0.76805408,-0.90231954,-2.0060895)" id="g3"><path style="fill:#c02608;fill-opacity:1" inkscape:connector-curvature="0" d="m 88.184,81.468 c 1.167,1.167 1.167,3.075 0,4.242 l -2.475,2.475 c -1.167,1.167 -3.076,1.167 -4.242,0 l -69.65,-69.65 c -1.167,-1.167 -1.167,-3.076 0,-4.242 l 2.476,-2.476 c 1.167,-1.167 3.076,-1.167 4.242,0 l 69.649,69.651 z" id="path5" /></g><g transform="matrix(0.76805408,0,0,0.76805408,-0.90231954,-2.0060895)" id="g7"><path style="fill:#c02608;fill-opacity:1" inkscape:connector-curvature="0" d="m 18.532,88.184 c -1.167,1.166 -3.076,1.166 -4.242,0 l -2.475,-2.475 c -1.167,-1.166 -1.167,-3.076 0,-4.242 l 69.65,-69.651 c 1.167,-1.167 3.075,-1.167 4.242,0 l 2.476,2.476 c 1.166,1.167 1.166,3.076 0,4.242 l -69.651,69.65 z" id="path9" /></g></svg>',download:'<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" baseProfile="tiny" x="0px" y="0px" width="100%" height="100%" viewBox="0 0 100 100" xml:space="preserve"><g id="Captions"></g><g id="Your_Icon"> <path fill-rule="evenodd" fill="#000000" d="M88,84v-2c0-2.961-0.859-4-4-4H16c-2.961,0-4,0.98-4,4v2c0,3.102,1.039,4,4,4h68 C87.02,88,88,87.039,88,84z M58,12H42c-5,0-6,0.941-6,6v22H16l34,34l34-34H64V18C64,12.941,62.939,12,58,12z"/></g></svg>',share:'<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" id="Icons" x="0px" y="0px" width="100%" height="100%" viewBox="0 0 100 100" style="enable-background:new 0 0 100 100;" xml:space="preserve"><path id="ShareThis" d="M36.764,50c0,0.308-0.07,0.598-0.088,0.905l32.247,16.119c2.76-2.338,6.293-3.797,10.195-3.797 C87.89,63.228,95,70.338,95,79.109C95,87.89,87.89,95,79.118,95c-8.78,0-15.882-7.11-15.882-15.891c0-0.316,0.07-0.598,0.088-0.905 L31.077,62.085c-2.769,2.329-6.293,3.788-10.195,3.788C12.11,65.873,5,58.771,5,50c0-8.78,7.11-15.891,15.882-15.891 c3.902,0,7.427,1.468,10.195,3.797l32.247-16.119c-0.018-0.308-0.088-0.598-0.088-0.914C63.236,12.11,70.338,5,79.118,5 C87.89,5,95,12.11,95,20.873c0,8.78-7.11,15.891-15.882,15.891c-3.911,0-7.436-1.468-10.195-3.806L36.676,49.086 C36.693,49.394,36.764,49.684,36.764,50z"/></svg>',draw:function(e,t){if(e){var i=r.getElement(t);i&&n(e).append(i)}},getElement:function(e){var t=e.id?r[e.id]:e.value;if(t&&0==t.indexOf("<svg")){var i=new DOMParser,o=i.parseFromString(t,"text/xml"),a=o.documentElement,s=n("<div></div>").css("display","inline-block");return e.width||(e.width="100%"),e.height||(e.height="100%"),s.width(e.width).height(e.height),s.append(a)}return!1}}},{jquery:8}],12:[function(e,t){window.console=window.console||{log:function(){}},t.exports={storage:e("./storage.js"),determineId:e("./determineId.js"),imgs:e("./imgs.js")}},{"./determineId.js":10,"./imgs.js":11,"./storage.js":13}],13:[function(e,t){{var n=e("store"),r={day:function(){return 864e5},month:function(){30*r.day()},year:function(){12*r.month()}};t.exports={set:function(e,t,i){"string"==typeof i&&(i=r[i]()),n.set(e,{val:t,exp:i,time:(new Date).getTime()})},get:function(e){var t=n.get(e);return t?t.exp&&(new Date).getTime()-t.time>t.exp?null:t.val:null}}}},{store:9}],14:[function(e,t){t.exports=function(e){var t='"',n=",",r="\n",i=e.head.vars,o=e.results.bindings,a=function(){for(var e=0;e<i.length;e++)u(i[e]);csvString+=r},s=function(){for(var e=0;e<o.length;e++)l(o[e]),csvString+=r},l=function(e){for(var t=0;t<i.length;t++){var n=i[t];u(e.hasOwnProperty(n)?e[n].value:"")}},u=function(e){e.replace(t,t+t),c(e)&&(e=t+e+t),csvString+=" "+e+" "+n},c=function(e){var r=!1;return e.match("[\\w|"+n+"|"+t+"]")&&(r=!0),r};return csvString="",a(),s(),csvString}},{}],15:[function(e,t){var n=e("jquery"),r=t.exports=function(e,t,i){var o={};return o.container=n("<div class='booleanResult'></div>"),o.options=n.extend(!0,{},r.defaults,i),o.parent=t,o.yasr=e,o.draw=function(){r.draw(o)},o.name=null,o.hideFromSelection=!0,o.canHandleResults=function(e){return e.results.getBoolean()===!0||0==e.results.getBoolean()},o.getPriority=10,o};r.draw=function(t){t.container.empty().appendTo(t.parent);var r=t.yasr.results.getBoolean(),i=null,o=null;r===!0?(i="check",o="True"):r===!1?(i="cross",o="False"):(t.container.width("140"),o="Could not find boolean value in response"),i&&e("yasgui-utils").imgs.draw(t.container,{width:25,height:25,id:i}),n("<span></span>").text(o).appendTo(t.container)}},{jquery:7,"yasgui-utils":12}],16:[function(e,t){var n=e("jquery"),r=t.exports=function(e,t,i){var o={};return o.container=n("<div class='errorResult'></div>"),o.options=n.extend(!0,{},r.defaults,i),o.parent=t,o.yasr=e,o.draw=function(){o.container.empty().appendTo(o.parent),n("<span class='exception'>ERROR</span>").appendTo(o.container),n("<p></p>").html(o.yasr.results.getException()).appendTo(o.container)},o.name=null,o.hideFromSelection=!0,o.canHandleResults=function(e){return e.results.getException()||!1},o.getPriority=20,o};r.defaults={}},{jquery:7}],17:[function(e,t){"use strict";var n=e("jquery"),r=e("yasgui-utils");console=console||{log:function(){}};var i=t.exports=function(t,o,a){var s={};s.options=n.extend(!0,{},i.defaults,a),s.container=n("<div class='yasr'></div>").appendTo(t),s.header=n("<div class='yasr_header'></div>").appendTo(s.container),s.resultsContainer=n("<div class='yasr_results'></div>").appendTo(s.container),s.draw=function(e){if(!s.results)return!1;if(e||(e=s.options.output),e in s.plugins&&s.plugins[e].canHandleResults(s))return n(s.resultsContainer).empty(),s.plugins[e].draw(),!0;var t=null,r=-1;for(var i in s.plugins)if(s.plugins[i].canHandleResults(s)){var o=s.plugins[i].getPriority;"function"==typeof o&&(o=o(s)),null!=o&&void 0!=o&&o>r&&(r=o,t=i)}return t?(n(s.resultsContainer).empty(),s.plugins[t].draw(),!0):!1},s.setResponse=function(t){try{s.results=e("./parsers/wrapper.js")(t)}catch(n){s.results=n}if(s.draw(),s.options.persistency&&s.options.persistency.results&&s.results.getOriginalResponseAsString&&s.results.getOriginalResponseAsString().length<s.options.persistency.results.maxSize){var i="string"==typeof s.options.persistency.results.id?s.options.persistency.results.id:s.options.persistency.results.id(s);r.storage.set(i,s.results.getOriginalResponse(),"month")}},s.plugins={};for(var l in i.plugins)s.plugins[l]=i.plugins[l](s,s.resultsContainer);if(s.options.persistency&&s.options.persistency.outputSelector){var u="string"==typeof s.options.persistency.outputSelector?s.options.persistency.outputSelector:s.options.persistency.outputSelector(s);if(u){var c=r.storage.get(u);c&&(s.options.output=c)}}if(!o&&s.options.persistency&&s.options.persistency.results){var u="string"==typeof s.options.persistency.results.id?s.options.persistency.results.id:s.options.persistency.results.id(s);o=r.storage.get(u)}return i.drawHeader(s),o&&s.setResponse(o),i.updateHeader(s),s};i.updateHeader=function(e){var t=e.header.find(".yasr_downloadIcon");t.removeAttr("title"); var n=e.plugins[e.options.output];if(n){var r=n.getDownloadInfo?n.getDownloadInfo():null;r?(r.buttonTitle&&t.attr(r.buttonTitle),t.prop("disabled",!1),t.find("path").each(function(){this.style.fill="black"})):(t.prop("disabled",!0).prop("title","Download not supported for this result representation"),t.find("path").each(function(){this.style.fill="gray"}))}},i.drawHeader=function(t){var o=function(){var e=n('<div class="yasr_btnGroup"></div>');n.each(t.plugins,function(o,a){if(!a.hideFromSelection){var s=a.name||o,l=n("<button class='yasr_btn'></button>").text(s).addClass("select_"+o).click(function(){if(e.find("button.selected").removeClass("selected"),n(this).addClass("selected"),t.options.output=o,t.options.persistency&&t.options.persistency.outputSelector){var a="string"==typeof t.options.persistency.outputSelector?t.options.persistency.outputSelector:t.options.persistency.outputSelector(t);r.storage.set(a,t.options.output,"month")}t.draw(),i.updateHeader(t)}).appendTo(e);t.options.output==o&&l.addClass("selected")}}),e.children().length>1&&t.header.append(e)},a=function(){var r=function(e,t){var n=null,r=window.URL||window.webkitURL||window.mozURL||window.msURL;if(r&&Blob){var i=new Blob([e],{type:t});n=r.createObjectURL(i)}return n},i=n("<button class='yasr_btn yasr_downloadIcon'></button>").append(e("yasgui-utils").imgs.getElement({id:"download",width:"15px",height:"15px"})).click(function(){var e=t.plugins[t.options.output];if(e&&e.getDownloadInfo){var i=e.getDownloadInfo(),o=r(i.getContent(),i.contentType?i.contentType:"text/plain"),a=n("<a></a>");a.attr("href",o),a.attr("download",i.filename),a.get(0).click()}});t.header.append(i)};t.options.drawOutputSelector&&o(),t.options.drawDownloadIcon&&a()},i.plugins={"boolean":e("./boolean.js"),table:e("./table.js"),rawResponse:e("./rawResponse.js"),error:e("./error.js")},i.defaults={output:"table",drawOutputSelector:!0,drawDownloadIcon:!0,persistency:{outputSelector:function(e){return"selector_"+r.determineId(e.container)},results:{id:function(e){return"results_"+r.determineId(e.container)},maxSize:1e5}}}},{"./boolean.js":15,"./error.js":16,"./parsers/wrapper.js":22,"./rawResponse.js":24,"./table.js":25,jquery:7,"yasgui-utils":12}],18:[function(e,t){e("jquery"),t.exports=function(t){return e("./dlv.js")(t,",")}},{"./dlv.js":19,jquery:7}],19:[function(e,t){var n=jQuery=e("jquery");e("../../lib/jquery.csv-0.71.js");t.exports=function(e,t){var r={},i=n.csv.toArrays(e,{separator:t}),o=function(e){return 0==e.indexOf("http")?"uri":null},a=function(){return 2!=i.length||1!=i[0].length||1!=i[1].length||"boolean"!=i[0][0]||"1"!=i[1][0]&&"0"!=i[1][0]?!1:(r.boolean="1"==i[1][0]?!0:!1,!0)},s=function(){return i.length>0&&i[0].length>0?(r.head={vars:i[0]},!0):!1},l=function(){if(i.length>1){r.results={bindings:[]};for(var e=1;e<i.length;e++){for(var t={},n=0;n<i[e].length;n++){var a=r.head.vars[n];if(a){var s=i[e][n],l=o(s);t[a]={value:s},l&&(t[a].type=l)}}r.results.bindings.push(t)}return r.head={vars:i[0]},!0}return!1},u=a();if(!u){var c=s();c&&l()}return r}},{"../../lib/jquery.csv-0.71.js":2,jquery:7}],20:[function(e,t){e("jquery"),t.exports=function(e){if("string"==typeof e)try{return JSON.parse(e)}catch(t){return!1}return"object"==typeof e&&e.constructor==={}.constructor?e:!1}},{jquery:7}],21:[function(e,t){e("jquery"),t.exports=function(t){return e("./dlv.js")(t," ")}},{"./dlv.js":19,jquery:7}],22:[function(e,t){e("jquery"),t.exports=function(t){var n,r,i={xml:e("./xml.js"),json:e("./json.js"),tsv:e("./tsv.js"),csv:e("./csv.js")},o=null,a=null,s="object"==typeof t&&t.exception?t.exception:null;n="object"==typeof t&&t.contentType?t.contentType.toLowerCase():null,r="object"==typeof t&&t.response?t.response:t;var l=function(){if(o)return o;if(o===!1||s)return!1;var e=function(){if(n)if(n.indexOf("json")>-1){try{o=i.json(r)}catch(e){s=e}a="json"}else if(n.indexOf("xml")>-1){try{o=i.xml(r)}catch(e){s=e}a="xml"}else if(n.indexOf("csv")>-1){try{o=i.csv(r)}catch(e){s=e}a="csv"}else if(n.indexOf("tab-separated")>-1){try{o=i.tsv(r)}catch(e){s=e}a="tsv"}},t=function(){if(o=i.json(r))a="json";else try{o=i.xml(r),o&&(a="xml")}catch(e){}};return e(),o||t(),o||(o=!1),o},u=function(){var e=l();return e&&"head"in e?e.head.vars:null},c=function(){var e=l();return e&&"results"in e?e.results.bindings:null},f=function(){var e=l();return e&&"boolean"in e?e.boolean:null},d=function(){return r},h=function(){var e="";return"string"==typeof r?e=r:"json"==a?e=JSON.stringify(r,void 0,2):"xml"==a&&(e=(new XMLSerializer).serializeToString(r)),e},p=function(){return s},g=function(){return null==a&&l(),a};return o=l(),{getAsJson:l,getOriginalResponse:d,getOriginalResponseAsString:h,getOriginalContentType:function(){return n},getVariables:u,getBindings:c,getBoolean:f,getType:g,getException:p}}},{"./csv.js":18,"./json.js":20,"./tsv.js":21,"./xml.js":23,jquery:7}],23:[function(e,t){{var n=e("jquery");t.exports=function(e){var t=function(e){o.head={};for(var t=0;t<e.childNodes.length;t++){var n=e.childNodes[t];if("variable"==n.nodeName){o.head.vars||(o.head.vars=[]);var r=n.getAttribute("name");r&&o.head.vars.push(r)}}},r=function(e){o.results={},o.results.bindings=[];for(var t=0;t<e.childNodes.length;t++){for(var n=e.childNodes[t],r=null,i=0;i<n.childNodes.length;i++){var a=n.childNodes[i];if("binding"==a.nodeName){var s=a.getAttribute("name");if(s){r=r||{},r[s]={};for(var l=0;l<a.childNodes.length;l++){var u=a.childNodes[l],c=u.nodeName;if("#text"!=c){r[s].type=c,r[s].value=u.innerHTML;var f=u.getAttribute("datatype");f&&(r[s].datatype=f)}}}}}r&&o.results.bindings.push(r)}},i=function(e){o.boolean="true"==e.innerHTML?!0:!1};"string"==typeof e&&(mainXml=n.parseXML(e));var e=null;if(!(mainXml.childNodes.length>0))return null;e=mainXml.childNodes[0];for(var o={},a=0;a<e.childNodes.length;a++){var s=e.childNodes[a];"head"==s.nodeName&&t(s),"results"==s.nodeName&&r(s),"boolean"==s.nodeName&&i(s)}return o}}},{jquery:7}],24:[function(e,t){var n=e("jquery"),r=e("codemirror");e("codemirror/addon/edit/matchbrackets.js"),e("codemirror/mode/xml/xml.js"),e("codemirror/mode/javascript/javascript.js");var i=t.exports=function(e,t,r){var o={};return o.options=n.extend(!0,{},i.defaults,r),o.yasr=e,o.parent=t,o.draw=function(){i.draw(o)},o.name="Raw Response",o.canHandleResults=function(){return!0},o.getPriority=2,o.getDownloadInfo=function(){if(!o.yasr.results)return null;var t=o.yasr.results.getOriginalContentType();return{getContent:function(){return e.results.getOriginalResponse()},filename:"queryResults."+o.yasr.results.getType(),contentType:t?t:"text/plain",buttonTitle:"Download raw response"}},o};i.draw=function(e){var t=e.options.CodeMirror;t.value=e.yasr.results.getOriginalResponseAsString();var n=e.yasr.results.getType();n&&("json"==n&&(n={name:"javascript",json:!0}),t.mode=n),r(e.parent.get()[0],t)},i.defaults={CodeMirror:{readOnly:!0}}},{codemirror:4,"codemirror/addon/edit/matchbrackets.js":3,"codemirror/mode/javascript/javascript.js":5,"codemirror/mode/xml/xml.js":6,jquery:7}],25:[function(e,t){var n=e("jquery");e("./../lib/DataTables/media/js/jquery.dataTables.js");var r=e("yasgui-utils").imgs,i=t.exports=function(t,r,o){var a={};return a.options=n.extend(!0,{},i.defaults,o),a.yasr=t,a.parent=r,a.draw=function(){i.draw(a)},a.name="Table",a.canHandleResults=function(e){return e.results&&e.results.getVariables()&&e.results.getVariables().length>0},a.getPriority=function(){return 10},a.getDownloadInfo=function(){return a.yasr.results?{getContent:function(){return e("./bindingsToCsv.js")(t.results.getAsJson())},filename:"queryResults.csv",contentType:"text/csv",buttonTitle:"Download as CSV"}:null},a.disableSelectorOn=function(){},a};i.draw=function(e){e.table=n('<table cellpadding="0" cellspacing="0" border="0" class="resultsTable"></table>'),n(e.parent).html(e.table);var t=e.options.datatable;t.aaData=a(e),t.aoColumns=o(e),e.table.dataTable(t),u(e),s(e);var r=e.yasr.header.outerHeight()-5;r>0&&e.yasr.container.find(".dataTables_wrapper").css("position","relative").css("top","-"+r+"px").css("margin-bottom","-"+r+"px"),n(window).on("resize",function(){e.table&&e.table.fnAdjustColumnSizing()})};var o=function(e){var t=[];t.push({sTitle:""});for(var n=e.yasr.results.getVariables(),r=0;r<n.length;r++)t.push({sTitle:n[r]});return t},a=function(e){for(var t=[],n=e.yasr.results.getBindings(),r=e.yasr.results.getVariables(),i=0;i<n.length;i++){var o=[];o.push("");for(var a=n[i],s=0;s<r.length;s++){var l=r[s];o.push(l in a?e.options.drawCellContent?e.options.drawCellContent(i,s,a[l]):"":"")}t.push(o)}return t};i.getFormattedValueFromBinding=function(e,t,n){var r=null;return r="uri"==n.type?"<a class='uri' href='"+n.value+"'>"+n.value+"</a>":"<span class='nonUri'>"+n.value+"</span>"};var s=function(e){e.table.on("order.dt",function(){u(e)}),e.table.delegate("td","click",function(){if(e.options.handlers&&e.options.handlers.onCellClick){var t=e.options.handlers.onCellClick(this);if(t===!1)return!1}}).delegate("td","mouseenter",function(){e.options.handlers&&e.options.handlers.onCellMouseEnter&&e.options.handlers.onCellMouseEnter(this);var t=n(this);e.options.fetchTitlesFromPreflabel&&!t.attr("title")&&0==t.text().trim().indexOf("http")&&l(t)}).delegate("td","mouseleave",function(){e.options.handlers&&e.options.handlers.onCellMouseLeave&&e.options.handlers.onCellMouseLeave(this)})},l=function(e){n.get("http://preflabel.org/api/label/"+encodeURIComponent(e.text())).success(function(t){e.attr("title",t)}).fail(function(){e.attr("title","")})},u=function(e){var t={sorting:"unsorted",sorting_asc:"sortAsc",sorting_desc:"sortDesc"};e.table.find(".sortIcons").remove();for(var i in t){var o=n("<div class='sortIcons'></div>").css("float","right").css("margin-right","-12px").width(10).height(15);r.draw(o,{id:t[i],width:12,height:16}),e.table.find("th."+i).append(o)}};i.openCellUriInNewWindow=function(e){e.className.indexOf("uri")>=0&&window.open(this.innerHTML)},i.defaults={drawCellContent:i.getFormattedValueFromBinding,fetchTitlesFromPreflabel:!0,handlers:{onCellMouseEnter:null,onCellMouseLeave:null,onCellClick:null},datatable:{aaSorting:[],iDisplayLength:50,aLengthMenu:[[10,50,100,1e3,-1],[10,50,100,1e3,"All"]],bLengthChange:!0,sPaginationType:"full_numbers",fnDrawCallback:function(e){for(var t=0;t<e.aiDisplay.length;t++)n("td:eq(0)",e.aoData[e.aiDisplay[t]].nTr).html(t+1);var r=!1;n(e.nTableWrapper).find(".paginate_button").each(function(){-1==n(this).attr("class").indexOf("current")&&-1==n(this).attr("class").indexOf("disabled")&&(r=!0)}),r?n(e.nTableWrapper).find(".dataTables_paginate").show():n(e.nTableWrapper).find(".dataTables_paginate").hide()},aoColumnDefs:[{sWidth:"12px",bSortable:!1,aTargets:[0]}]}}},{"./../lib/DataTables/media/js/jquery.dataTables.js":1,"./bindingsToCsv.js":14,jquery:7,"yasgui-utils":12}]},{},[17])(17)});
__tests__/index.ios.js
Juice4213/GZHReactNativeDemo
import 'react-native'; import React from 'react'; import Index from '../index.ios.js'; // Note: test renderer must be required after react-native. import renderer from 'react-test-renderer'; it('renders correctly', () => { const tree = renderer.create( <Index /> ); });
src/svg-icons/notification/vpn-lock.js
frnk94/material-ui
import React from 'react'; import pure from 'recompose/pure'; import SvgIcon from '../../SvgIcon'; let NotificationVpnLock = (props) => ( <SvgIcon {...props}> <path d="M22 4v-.5C22 2.12 20.88 1 19.5 1S17 2.12 17 3.5V4c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h5c.55 0 1-.45 1-1V5c0-.55-.45-1-1-1zm-.8 0h-3.4v-.5c0-.94.76-1.7 1.7-1.7s1.7.76 1.7 1.7V4zm-2.28 8c.04.33.08.66.08 1 0 2.08-.8 3.97-2.1 5.39-.26-.81-1-1.39-1.9-1.39h-1v-3c0-.55-.45-1-1-1H7v-2h2c.55 0 1-.45 1-1V8h2c1.1 0 2-.9 2-2V3.46c-.95-.3-1.95-.46-3-.46C5.48 3 1 7.48 1 13s4.48 10 10 10 10-4.48 10-10c0-.34-.02-.67-.05-1h-2.03zM10 20.93c-3.95-.49-7-3.85-7-7.93 0-.62.08-1.21.21-1.79L8 16v1c0 1.1.9 2 2 2v1.93z"/> </SvgIcon> ); NotificationVpnLock = pure(NotificationVpnLock); NotificationVpnLock.displayName = 'NotificationVpnLock'; NotificationVpnLock.muiName = 'SvgIcon'; export default NotificationVpnLock;
ajax/libs/yui/3.9.0/scrollview-base/scrollview-base-coverage.js
paleozogt/cdnjs
if (typeof _yuitest_coverage == "undefined"){ _yuitest_coverage = {}; _yuitest_coverline = function(src, line){ var coverage = _yuitest_coverage[src]; if (!coverage.lines[line]){ coverage.calledLines++; } coverage.lines[line]++; }; _yuitest_coverfunc = function(src, name, line){ var coverage = _yuitest_coverage[src], funcId = name + ":" + line; if (!coverage.functions[funcId]){ coverage.calledFunctions++; } coverage.functions[funcId]++; }; } _yuitest_coverage["build/scrollview-base/scrollview-base.js"] = { lines: {}, functions: {}, coveredLines: 0, calledLines: 0, coveredFunctions: 0, calledFunctions: 0, path: "build/scrollview-base/scrollview-base.js", code: [] }; _yuitest_coverage["build/scrollview-base/scrollview-base.js"].code=["YUI.add('scrollview-base', function (Y, NAME) {","","/**"," * The scrollview-base module provides a basic ScrollView Widget, without scrollbar indicators"," *"," * @module scrollview"," * @submodule scrollview-base"," */",""," // Local vars","var getClassName = Y.ClassNameManager.getClassName,"," DOCUMENT = Y.config.doc,"," IE = Y.UA.ie,"," NATIVE_TRANSITIONS = Y.Transition.useNative,"," vendorPrefix = Y.Transition._VENDOR_PREFIX, // Todo: This is a private property, and alternative approaches should be investigated"," SCROLLVIEW = 'scrollview',"," CLASS_NAMES = {"," vertical: getClassName(SCROLLVIEW, 'vert'),"," horizontal: getClassName(SCROLLVIEW, 'horiz')"," },"," EV_SCROLL_END = 'scrollEnd',"," FLICK = 'flick',"," DRAG = 'drag',"," MOUSEWHEEL = 'mousewheel',"," UI = 'ui',"," TOP = 'top',"," LEFT = 'left',"," PX = 'px',"," AXIS = 'axis',"," SCROLL_Y = 'scrollY',"," SCROLL_X = 'scrollX',"," BOUNCE = 'bounce',"," DISABLED = 'disabled',"," DECELERATION = 'deceleration',"," DIM_X = 'x',"," DIM_Y = 'y',"," BOUNDING_BOX = 'boundingBox',"," CONTENT_BOX = 'contentBox',"," GESTURE_MOVE = 'gesturemove',"," START = 'start',"," END = 'end',"," EMPTY = '',"," ZERO = '0s',"," SNAP_DURATION = 'snapDuration',"," SNAP_EASING = 'snapEasing',"," EASING = 'easing',"," FRAME_DURATION = 'frameDuration',"," BOUNCE_RANGE = 'bounceRange',"," _constrain = function (val, min, max) {"," return Math.min(Math.max(val, min), max);"," };","","/**"," * ScrollView provides a scrollable widget, supporting flick gestures,"," * across both touch and mouse based devices."," *"," * @class ScrollView"," * @param config {Object} Object literal with initial attribute values"," * @extends Widget"," * @constructor"," */","function ScrollView() {"," ScrollView.superclass.constructor.apply(this, arguments);","}","","Y.ScrollView = Y.extend(ScrollView, Y.Widget, {",""," // *** Y.ScrollView prototype",""," /**"," * Flag driving whether or not we should try and force H/W acceleration when transforming. Currently enabled by default for Webkit."," * Used by the _transform method."," *"," * @property _forceHWTransforms"," * @type boolean"," * @protected"," */"," _forceHWTransforms: Y.UA.webkit ? true : false,",""," /**"," * <p>Used to control whether or not ScrollView's internal"," * gesturemovestart, gesturemove and gesturemoveend"," * event listeners should preventDefault. The value is an"," * object, with \"start\", \"move\" and \"end\" properties used to"," * specify which events should preventDefault and which shouldn't:</p>"," *"," * <pre>"," * {"," * start: false,"," * move: true,"," * end: false"," * }"," * </pre>"," *"," * <p>The default values are set up in order to prevent panning,"," * on touch devices, while allowing click listeners on elements inside"," * the ScrollView to be notified as expected.</p>"," *"," * @property _prevent"," * @type Object"," * @protected"," */"," _prevent: {"," start: false,"," move: true,"," end: false"," },",""," /**"," * Contains the distance (postive or negative) in pixels by which"," * the scrollview was last scrolled. This is useful when setting up"," * click listeners on the scrollview content, which on mouse based"," * devices are always fired, even after a drag/flick."," *"," * <p>Touch based devices don't currently fire a click event,"," * if the finger has been moved (beyond a threshold) so this"," * check isn't required, if working in a purely touch based environment</p>"," *"," * @property lastScrolledAmt"," * @type Number"," * @public"," * @default 0"," */"," lastScrolledAmt: 0,",""," /**"," * Internal state, defines the minimum amount that the scrollview can be scrolled along the X axis"," *"," * @property _minScrollX"," * @type number"," * @protected"," */"," _minScrollX: null,",""," /**"," * Internal state, defines the maximum amount that the scrollview can be scrolled along the X axis"," *"," * @property _maxScrollX"," * @type number"," * @protected"," */"," _maxScrollX: null,",""," /**"," * Internal state, defines the minimum amount that the scrollview can be scrolled along the Y axis"," *"," * @property _minScrollY"," * @type number"," * @protected"," */"," _minScrollY: null,",""," /**"," * Internal state, defines the maximum amount that the scrollview can be scrolled along the Y axis"," *"," * @property _maxScrollY"," * @type number"," * @protected"," */"," _maxScrollY: null,"," "," /**"," * Designated initializer"," *"," * @method initializer"," * @param {config} Configuration object for the plugin"," */"," initializer: function () {"," var sv = this;",""," // Cache these values, since they aren't going to change."," sv._bb = sv.get(BOUNDING_BOX);"," sv._cb = sv.get(CONTENT_BOX);",""," // Cache some attributes"," sv._cAxis = sv.get(AXIS);"," sv._cBounce = sv.get(BOUNCE);"," sv._cBounceRange = sv.get(BOUNCE_RANGE);"," sv._cDeceleration = sv.get(DECELERATION);"," sv._cFrameDuration = sv.get(FRAME_DURATION);"," },",""," /**"," * bindUI implementation"," *"," * Hooks up events for the widget"," * @method bindUI"," */"," bindUI: function () {"," var sv = this;",""," // Bind interaction listers"," sv._bindFlick(sv.get(FLICK));"," sv._bindDrag(sv.get(DRAG));"," sv._bindMousewheel(true);"," "," // Bind change events"," sv._bindAttrs();",""," // IE SELECT HACK. See if we can do this non-natively and in the gesture for a future release."," if (IE) {"," sv._fixIESelect(sv._bb, sv._cb);"," }",""," // Set any deprecated static properties"," if (ScrollView.SNAP_DURATION) {"," sv.set(SNAP_DURATION, ScrollView.SNAP_DURATION);"," }",""," if (ScrollView.SNAP_EASING) {"," sv.set(SNAP_EASING, ScrollView.SNAP_EASING);"," }",""," if (ScrollView.EASING) {"," sv.set(EASING, ScrollView.EASING);"," }",""," if (ScrollView.FRAME_STEP) {"," sv.set(FRAME_DURATION, ScrollView.FRAME_STEP);"," }",""," if (ScrollView.BOUNCE_RANGE) {"," sv.set(BOUNCE_RANGE, ScrollView.BOUNCE_RANGE);"," }",""," // Recalculate dimension properties"," // TODO: This should be throttled."," // Y.one(WINDOW).after('resize', sv._afterDimChange, sv);"," },",""," /**"," * Bind event listeners"," *"," * @method _bindAttrs"," * @private"," */"," _bindAttrs: function () {"," var sv = this,"," scrollChangeHandler = sv._afterScrollChange,"," dimChangeHandler = sv._afterDimChange;",""," // Bind any change event listeners"," sv.after({"," 'scrollEnd': sv._afterScrollEnd,"," 'disabledChange': sv._afterDisabledChange,"," 'flickChange': sv._afterFlickChange,"," 'dragChange': sv._afterDragChange,"," 'axisChange': sv._afterAxisChange,"," 'scrollYChange': scrollChangeHandler,"," 'scrollXChange': scrollChangeHandler,"," 'heightChange': dimChangeHandler,"," 'widthChange': dimChangeHandler"," });"," },",""," /**"," * Bind (or unbind) gesture move listeners required for drag support"," *"," * @method _bindDrag"," * @param drag {boolean} If true, the method binds listener to enable"," * drag (gesturemovestart). If false, the method unbinds gesturemove"," * listeners for drag support."," * @private"," */"," _bindDrag: function (drag) {"," var sv = this,"," bb = sv._bb;",""," // Unbind any previous 'drag' listeners"," bb.detach(DRAG + '|*');",""," if (drag) {"," bb.on(DRAG + '|' + GESTURE_MOVE + START, Y.bind(sv._onGestureMoveStart, sv));"," }"," },",""," /**"," * Bind (or unbind) flick listeners."," *"," * @method _bindFlick"," * @param flick {Object|boolean} If truthy, the method binds listeners for"," * flick support. If false, the method unbinds flick listeners."," * @private"," */"," _bindFlick: function (flick) {"," var sv = this,"," bb = sv._bb;",""," // Unbind any previous 'flick' listeners"," bb.detach(FLICK + '|*');",""," if (flick) {"," bb.on(FLICK + '|' + FLICK, Y.bind(sv._flick, sv), flick);",""," // Rebind Drag, becuase _onGestureMoveEnd always has to fire -after- _flick"," sv._bindDrag(sv.get(DRAG));"," }"," },",""," /**"," * Bind (or unbind) mousewheel listeners."," *"," * @method _bindMousewheel"," * @param mousewheel {Object|boolean} If truthy, the method binds listeners for"," * mousewheel support. If false, the method unbinds mousewheel listeners."," * @private"," */"," _bindMousewheel: function (mousewheel) {"," var sv = this,"," bb = sv._bb;",""," // Unbind any previous 'mousewheel' listeners"," // TODO: This doesn't actually appear to work properly. Fix. #2532743"," bb.detach(MOUSEWHEEL + '|*');",""," // Only enable for vertical scrollviews"," if (mousewheel) {"," // Bound to document, because that's where mousewheel events fire off of."," Y.one(DOCUMENT).on(MOUSEWHEEL, Y.bind(sv._mousewheel, sv));"," }"," },",""," /**"," * syncUI implementation."," *"," * Update the scroll position, based on the current value of scrollX/scrollY."," *"," * @method syncUI"," */"," syncUI: function () {"," var sv = this,"," scrollDims = sv._getScrollDims(),"," width = scrollDims.offsetWidth,"," height = scrollDims.offsetHeight,"," scrollWidth = scrollDims.scrollWidth,"," scrollHeight = scrollDims.scrollHeight;",""," // If the axis is undefined, auto-calculate it"," if (sv._cAxis === undefined) {"," // This should only ever be run once (for now)."," // In the future SV might post-load axis changes"," sv._cAxis = {"," x: (scrollWidth > width),"," y: (scrollHeight > height)"," };",""," sv._set(AXIS, sv._cAxis);"," }"," "," // get text direction on or inherited by scrollview node"," sv.rtl = (sv._cb.getComputedStyle('direction') === 'rtl');",""," // Cache the disabled value"," sv._cDisabled = sv.get(DISABLED);",""," // Run this to set initial values"," sv._uiDimensionsChange();",""," // If we're out-of-bounds, snap back."," if (sv._isOutOfBounds()) {"," sv._snapBack();"," }"," },",""," /**"," * Utility method to obtain widget dimensions"," *"," * @method _getScrollDims"," * @return {Object} The offsetWidth, offsetHeight, scrollWidth and"," * scrollHeight as an array: [offsetWidth, offsetHeight, scrollWidth,"," * scrollHeight]"," * @private"," */"," _getScrollDims: function () {"," var sv = this,"," cb = sv._cb,"," bb = sv._bb,"," TRANS = ScrollView._TRANSITION,"," // Ideally using CSSMatrix - don't think we have it normalized yet though."," // origX = (new WebKitCSSMatrix(cb.getComputedStyle(\"transform\"))).e,"," // origY = (new WebKitCSSMatrix(cb.getComputedStyle(\"transform\"))).f,"," origX = sv.get(SCROLL_X),"," origY = sv.get(SCROLL_Y),"," origHWTransform,"," dims;",""," // TODO: Is this OK? Just in case it's called 'during' a transition."," if (NATIVE_TRANSITIONS) {"," cb.setStyle(TRANS.DURATION, ZERO);"," cb.setStyle(TRANS.PROPERTY, EMPTY);"," }",""," origHWTransform = sv._forceHWTransforms;"," sv._forceHWTransforms = false; // the z translation was causing issues with picking up accurate scrollWidths in Chrome/Mac.",""," sv._moveTo(cb, 0, 0);"," dims = {"," 'offsetWidth': bb.get('offsetWidth'),"," 'offsetHeight': bb.get('offsetHeight'),"," 'scrollWidth': bb.get('scrollWidth'),"," 'scrollHeight': bb.get('scrollHeight')"," };"," sv._moveTo(cb, -(origX), -(origY));",""," sv._forceHWTransforms = origHWTransform;",""," return dims;"," },",""," /**"," * This method gets invoked whenever the height or width attributes change,"," * allowing us to determine which scrolling axes need to be enabled."," *"," * @method _uiDimensionsChange"," * @protected"," */"," _uiDimensionsChange: function () {"," var sv = this,"," bb = sv._bb,"," scrollDims = sv._getScrollDims(),"," width = scrollDims.offsetWidth,"," height = scrollDims.offsetHeight,"," scrollWidth = scrollDims.scrollWidth,"," scrollHeight = scrollDims.scrollHeight,"," rtl = sv.rtl,"," svAxis = sv._cAxis,"," minScrollX = (rtl ? Math.min(0, -(scrollWidth - width)) : 0),"," maxScrollX = (rtl ? 0 : Math.max(0, scrollWidth - width)),"," minScrollY = 0,"," maxScrollY = Math.max(0, scrollHeight - height);"," "," if (svAxis && svAxis.x) {"," bb.addClass(CLASS_NAMES.horizontal);"," }",""," if (svAxis && svAxis.y) {"," bb.addClass(CLASS_NAMES.vertical);"," }",""," sv._setBounds({"," minScrollX: minScrollX,"," maxScrollX: maxScrollX,"," minScrollY: minScrollY,"," maxScrollY: maxScrollY"," });"," },",""," /**"," * Set the bounding dimensions of the ScrollView"," *"," * @method _setBounds"," * @protected"," * @param bounds {Object} [duration] ms of the scroll animation. (default is 0)"," * @param {Number} [bounds.minScrollX] The minimum scroll X value"," * @param {Number} [bounds.maxScrollX] The maximum scroll X value"," * @param {Number} [bounds.minScrollY] The minimum scroll Y value"," * @param {Number} [bounds.maxScrollY] The maximum scroll Y value"," */"," _setBounds: function (bounds) {"," var sv = this;"," "," // TODO: Do a check to log if the bounds are invalid",""," sv._minScrollX = bounds.minScrollX;"," sv._maxScrollX = bounds.maxScrollX;"," sv._minScrollY = bounds.minScrollY;"," sv._maxScrollY = bounds.maxScrollY;"," },",""," /**"," * Get the bounding dimensions of the ScrollView"," *"," * @method _getBounds"," * @protected"," */"," _getBounds: function () {"," var sv = this;"," "," return {"," minScrollX: sv._minScrollX,"," maxScrollX: sv._maxScrollX,"," minScrollY: sv._minScrollY,"," maxScrollY: sv._maxScrollY"," };",""," },",""," /**"," * Scroll the element to a given xy coordinate"," *"," * @method scrollTo"," * @param x {Number} The x-position to scroll to. (null for no movement)"," * @param y {Number} The y-position to scroll to. (null for no movement)"," * @param {Number} [duration] ms of the scroll animation. (default is 0)"," * @param {String} [easing] An easing equation if duration is set. (default is `easing` attribute)"," * @param {String} [node] The node to transform. Setting this can be useful in"," * dual-axis paginated instances. (default is the instance's contentBox)"," */"," scrollTo: function (x, y, duration, easing, node) {"," // Check to see if widget is disabled"," if (this._cDisabled) {"," return;"," }",""," var sv = this,"," cb = sv._cb,"," TRANS = ScrollView._TRANSITION,"," callback = Y.bind(sv._onTransEnd, sv), // @Todo : cache this"," newX = 0,"," newY = 0,"," transition = {},"," transform;",""," // default the optional arguments"," duration = duration || 0;"," easing = easing || sv.get(EASING); // @TODO: Cache this"," node = node || cb;",""," if (x !== null) {"," sv.set(SCROLL_X, x, {src:UI});"," newX = -(x);"," }",""," if (y !== null) {"," sv.set(SCROLL_Y, y, {src:UI});"," newY = -(y);"," }",""," transform = sv._transform(newX, newY);",""," if (NATIVE_TRANSITIONS) {"," // ANDROID WORKAROUND - try and stop existing transition, before kicking off new one."," node.setStyle(TRANS.DURATION, ZERO).setStyle(TRANS.PROPERTY, EMPTY);"," }",""," // Move"," if (duration === 0) {"," if (NATIVE_TRANSITIONS) {"," node.setStyle('transform', transform);"," }"," else {"," // TODO: If both set, batch them in the same update"," // Update: Nope, setStyles() just loops through each property and applies it."," if (x !== null) {"," node.setStyle(LEFT, newX + PX);"," }"," if (y !== null) {"," node.setStyle(TOP, newY + PX);"," }"," }"," }",""," // Animate"," else {"," transition.easing = easing;"," transition.duration = duration / 1000;",""," if (NATIVE_TRANSITIONS) {"," transition.transform = transform;"," }"," else {"," transition.left = newX + PX;"," transition.top = newY + PX;"," }",""," node.transition(transition, callback);"," }"," },",""," /**"," * Utility method, to create the translate transform string with the"," * x, y translation amounts provided."," *"," * @method _transform"," * @param {Number} x Number of pixels to translate along the x axis"," * @param {Number} y Number of pixels to translate along the y axis"," * @private"," */"," _transform: function (x, y) {"," // TODO: Would we be better off using a Matrix for this?"," var prop = 'translate(' + x + 'px, ' + y + 'px)';",""," if (this._forceHWTransforms) {"," prop += ' translateZ(0)';"," }",""," return prop;"," },",""," /**"," * Utility method, to move the given element to the given xy position"," *"," * @method _moveTo"," * @param node {Node} The node to move"," * @param x {Number} The x-position to move to"," * @param y {Number} The y-position to move to"," * @private"," */"," _moveTo : function(node, x, y) {"," if (NATIVE_TRANSITIONS) {"," node.setStyle('transform', this._transform(x, y));"," } else {"," node.setStyle(LEFT, x + PX);"," node.setStyle(TOP, y + PX);"," }"," },","",""," /**"," * Content box transition callback"," *"," * @method _onTransEnd"," * @param {Event.Facade} e The event facade"," * @private"," */"," _onTransEnd: function () {"," var sv = this;"," "," // If for some reason we're OOB, snapback"," if (sv._isOutOfBounds()) {"," sv._snapBack();"," }"," else {"," /**"," * Notification event fired at the end of a scroll transition"," *"," * @event scrollEnd"," * @param e {EventFacade} The default event facade."," */"," sv.fire(EV_SCROLL_END);"," }"," },",""," /**"," * gesturemovestart event handler"," *"," * @method _onGestureMoveStart"," * @param e {Event.Facade} The gesturemovestart event facade"," * @private"," */"," _onGestureMoveStart: function (e) {",""," if (this._cDisabled) {"," return false;"," }",""," var sv = this,"," bb = sv._bb,"," currentX = sv.get(SCROLL_X),"," currentY = sv.get(SCROLL_Y),"," clientX = e.clientX,"," clientY = e.clientY;",""," if (sv._prevent.start) {"," e.preventDefault();"," }",""," // if a flick animation is in progress, cancel it"," if (sv._flickAnim) {"," sv._cancelFlick();"," sv._onTransEnd();"," }",""," // Reset lastScrolledAmt"," sv.lastScrolledAmt = 0;",""," // Stores data for this gesture cycle. Cleaned up later"," sv._gesture = {",""," // Will hold the axis value"," axis: null,",""," // The current attribute values"," startX: currentX,"," startY: currentY,",""," // The X/Y coordinates where the event began"," startClientX: clientX,"," startClientY: clientY,",""," // The X/Y coordinates where the event will end"," endClientX: null,"," endClientY: null,",""," // The current delta of the event"," deltaX: null,"," deltaY: null,",""," // Will be populated for flicks"," flick: null,",""," // Create some listeners for the rest of the gesture cycle"," onGestureMove: bb.on(DRAG + '|' + GESTURE_MOVE, Y.bind(sv._onGestureMove, sv)),"," "," // @TODO: Don't bind gestureMoveEnd if it's a Flick?"," onGestureMoveEnd: bb.on(DRAG + '|' + GESTURE_MOVE + END, Y.bind(sv._onGestureMoveEnd, sv))"," };"," },",""," /**"," * gesturemove event handler"," *"," * @method _onGestureMove"," * @param e {Event.Facade} The gesturemove event facade"," * @private"," */"," _onGestureMove: function (e) {"," var sv = this,"," gesture = sv._gesture,"," svAxis = sv._cAxis,"," svAxisX = svAxis.x,"," svAxisY = svAxis.y,"," startX = gesture.startX,"," startY = gesture.startY,"," startClientX = gesture.startClientX,"," startClientY = gesture.startClientY,"," clientX = e.clientX,"," clientY = e.clientY;",""," if (sv._prevent.move) {"," e.preventDefault();"," }",""," gesture.deltaX = startClientX - clientX;"," gesture.deltaY = startClientY - clientY;",""," // Determine if this is a vertical or horizontal movement"," // @TODO: This is crude, but it works. Investigate more intelligent ways to detect intent"," if (gesture.axis === null) {"," gesture.axis = (Math.abs(gesture.deltaX) > Math.abs(gesture.deltaY)) ? DIM_X : DIM_Y;"," }",""," // Move X or Y. @TODO: Move both if dualaxis."," if (gesture.axis === DIM_X && svAxisX) {"," sv.set(SCROLL_X, startX + gesture.deltaX);"," }"," else if (gesture.axis === DIM_Y && svAxisY) {"," sv.set(SCROLL_Y, startY + gesture.deltaY);"," }"," },",""," /**"," * gesturemoveend event handler"," *"," * @method _onGestureMoveEnd"," * @param e {Event.Facade} The gesturemoveend event facade"," * @private"," */"," _onGestureMoveEnd: function (e) {"," var sv = this,"," gesture = sv._gesture,"," flick = gesture.flick,"," clientX = e.clientX,"," clientY = e.clientY,"," isOOB;",""," if (sv._prevent.end) {"," e.preventDefault();"," }",""," // Store the end X/Y coordinates"," gesture.endClientX = clientX;"," gesture.endClientY = clientY;",""," // Cleanup the event handlers"," gesture.onGestureMove.detach();"," gesture.onGestureMoveEnd.detach();",""," // If this wasn't a flick, wrap up the gesture cycle"," if (!flick) {"," // @TODO: Be more intelligent about this. Look at the Flick attribute to see"," // if it is safe to assume _flick did or didn't fire."," // Then, the order _flick and _onGestureMoveEnd fire doesn't matter?",""," // If there was movement (_onGestureMove fired)"," if (gesture.deltaX !== null && gesture.deltaY !== null) {"," "," isOOB = sv._isOutOfBounds();"," "," // If we're out-out-bounds, then snapback"," if (isOOB) {"," sv._snapBack();"," }",""," // Inbounds"," else {"," // Fire scrollEnd unless this is a paginated instance and the gesture axis is the same as paginator's"," // Not totally confident this is ideal to access a plugin's properties from a host, @TODO revisit"," if (!sv.pages || (sv.pages && !sv.pages.get(AXIS)[gesture.axis])) {"," sv._onTransEnd();"," }"," }"," }"," }"," },",""," /**"," * Execute a flick at the end of a scroll action"," *"," * @method _flick"," * @param e {Event.Facade} The Flick event facade"," * @private"," */"," _flick: function (e) {"," if (this._cDisabled) {"," return false;"," }",""," var sv = this,"," svAxis = sv._cAxis,"," flick = e.flick,"," flickAxis = flick.axis,"," flickVelocity = flick.velocity,"," axisAttr = flickAxis === DIM_X ? SCROLL_X : SCROLL_Y,"," startPosition = sv.get(axisAttr);",""," // Sometimes flick is enabled, but drag is disabled"," if (sv._gesture) {"," sv._gesture.flick = flick;"," }",""," // Prevent unneccesary firing of _flickFrame if we can't scroll on the flick axis"," if (svAxis[flickAxis]) {"," sv._flickFrame(flickVelocity, flickAxis, startPosition);"," }"," },",""," /**"," * Execute a single frame in the flick animation"," *"," * @method _flickFrame"," * @param velocity {Number} The velocity of this animated frame"," * @param flickAxis {String} The axis on which to animate"," * @param startPosition {Number} The starting X/Y point to flick from"," * @protected"," */"," _flickFrame: function (velocity, flickAxis, startPosition) {",""," var sv = this,"," axisAttr = flickAxis === DIM_X ? SCROLL_X : SCROLL_Y,"," bounds = sv._getBounds(),",""," // Localize cached values"," bounce = sv._cBounce,"," bounceRange = sv._cBounceRange,"," deceleration = sv._cDeceleration,"," frameDuration = sv._cFrameDuration,",""," // Calculate"," newVelocity = velocity * deceleration,"," newPosition = startPosition - (frameDuration * newVelocity),",""," // Some convinience conditions"," min = flickAxis === DIM_X ? bounds.minScrollX : bounds.minScrollY,"," max = flickAxis === DIM_X ? bounds.maxScrollX : bounds.maxScrollY,"," belowMin = (newPosition < min),"," belowMax = (newPosition < max),"," aboveMin = (newPosition > min),"," aboveMax = (newPosition > max),"," belowMinRange = (newPosition < (min - bounceRange)),"," withinMinRange = (belowMin && (newPosition > (min - bounceRange))),"," withinMaxRange = (aboveMax && (newPosition < (max + bounceRange))),"," aboveMaxRange = (newPosition > (max + bounceRange)),"," tooSlow;",""," // If we're within the range but outside min/max, dampen the velocity"," if (withinMinRange || withinMaxRange) {"," newVelocity *= bounce;"," }",""," // Is the velocity too slow to bother?"," tooSlow = (Math.abs(newVelocity).toFixed(4) < 0.015);",""," // If the velocity is too slow or we're outside the range"," if (tooSlow || belowMinRange || aboveMaxRange) {"," // Cancel and delete sv._flickAnim"," if (sv._flickAnim) {"," sv._cancelFlick();"," }",""," // If we're inside the scroll area, just end"," if (aboveMin && belowMax) {"," sv._onTransEnd();"," }",""," // We're outside the scroll area, so we need to snap back"," else {"," sv._snapBack();"," }"," }",""," // Otherwise, animate to the next frame"," else {"," // @TODO: maybe use requestAnimationFrame instead"," sv._flickAnim = Y.later(frameDuration, sv, '_flickFrame', [newVelocity, flickAxis, newPosition]);"," sv.set(axisAttr, newPosition);"," }"," },",""," _cancelFlick: function () {"," var sv = this;",""," if (sv._flickAnim) {"," // Cancel the flick (if it exists)"," sv._flickAnim.cancel();",""," // Also delete it, otherwise _onGestureMoveStart will think we're still flicking"," delete sv._flickAnim;"," }",""," },",""," /**"," * Handle mousewheel events on the widget"," *"," * @method _mousewheel"," * @param e {Event.Facade} The mousewheel event facade"," * @private"," */"," _mousewheel: function (e) {"," var sv = this,"," scrollY = sv.get(SCROLL_Y),"," bounds = sv._getBounds(),"," bb = sv._bb,"," scrollOffset = 10, // 10px"," isForward = (e.wheelDelta > 0),"," scrollToY = scrollY - ((isForward ? 1 : -1) * scrollOffset);",""," scrollToY = _constrain(scrollToY, bounds.minScrollY, bounds.maxScrollY);",""," // Because Mousewheel events fire off 'document', every ScrollView widget will react"," // to any mousewheel anywhere on the page. This check will ensure that the mouse is currently"," // over this specific ScrollView. Also, only allow mousewheel scrolling on Y-axis,"," // becuase otherwise the 'prevent' will block page scrolling."," if (bb.contains(e.target) && sv._cAxis[DIM_Y]) {",""," // Reset lastScrolledAmt"," sv.lastScrolledAmt = 0;",""," // Jump to the new offset"," sv.set(SCROLL_Y, scrollToY);",""," // if we have scrollbars plugin, update & set the flash timer on the scrollbar"," // @TODO: This probably shouldn't be in this module"," if (sv.scrollbars) {"," // @TODO: The scrollbars should handle this themselves"," sv.scrollbars._update();"," sv.scrollbars.flash();"," // or just this"," // sv.scrollbars._hostDimensionsChange();"," }",""," // Fire the 'scrollEnd' event"," sv._onTransEnd();",""," // prevent browser default behavior on mouse scroll"," e.preventDefault();"," }"," },",""," /**"," * Checks to see the current scrollX/scrollY position beyond the min/max boundary"," *"," * @method _isOutOfBounds"," * @param x {Number} [optional] The X position to check"," * @param y {Number} [optional] The Y position to check"," * @return {boolen} Whether the current X/Y position is out of bounds (true) or not (false)"," * @private"," */"," _isOutOfBounds: function (x, y) {"," var sv = this,"," svAxis = sv._cAxis,"," svAxisX = svAxis.x,"," svAxisY = svAxis.y,"," currentX = x || sv.get(SCROLL_X),"," currentY = y || sv.get(SCROLL_Y),"," bounds = sv._getBounds(),"," minX = bounds.minScrollX,"," minY = bounds.minScrollY,"," maxX = bounds.maxScrollX,"," maxY = bounds.maxScrollY;",""," return (svAxisX && (currentX < minX || currentX > maxX)) || (svAxisY && (currentY < minY || currentY > maxY));"," },",""," /**"," * Bounces back"," * @TODO: Should be more generalized and support both X and Y detection"," *"," * @method _snapBack"," * @private"," */"," _snapBack: function () {"," var sv = this,"," currentX = sv.get(SCROLL_X),"," currentY = sv.get(SCROLL_Y),"," bounds = sv._getBounds(),"," minX = bounds.minScrollX,"," minY = bounds.minScrollY,"," maxX = bounds.maxScrollX,"," maxY = bounds.maxScrollY,"," newY = _constrain(currentY, minY, maxY),"," newX = _constrain(currentX, minX, maxX),"," duration = sv.get(SNAP_DURATION),"," easing = sv.get(SNAP_EASING);",""," if (newX !== currentX) {"," sv.set(SCROLL_X, newX, {duration:duration, easing:easing});"," }"," else if (newY !== currentY) {"," sv.set(SCROLL_Y, newY, {duration:duration, easing:easing});"," }"," else {"," sv._onTransEnd();"," }"," },",""," /**"," * After listener for changes to the scrollX or scrollY attribute"," *"," * @method _afterScrollChange"," * @param e {Event.Facade} The event facade"," * @protected"," */"," _afterScrollChange: function (e) {"," if (e.src === ScrollView.UI_SRC) {"," return false;"," }",""," var sv = this,"," duration = e.duration,"," easing = e.easing,"," val = e.newVal,"," scrollToArgs = [];",""," // Set the scrolled value"," sv.lastScrolledAmt = sv.lastScrolledAmt + (e.newVal - e.prevVal);",""," // Generate the array of args to pass to scrollTo()"," if (e.attrName === SCROLL_X) {"," scrollToArgs.push(val);"," scrollToArgs.push(sv.get(SCROLL_Y));"," }"," else {"," scrollToArgs.push(sv.get(SCROLL_X));"," scrollToArgs.push(val);"," }",""," scrollToArgs.push(duration);"," scrollToArgs.push(easing);",""," sv.scrollTo.apply(sv, scrollToArgs);"," },",""," /**"," * After listener for changes to the flick attribute"," *"," * @method _afterFlickChange"," * @param e {Event.Facade} The event facade"," * @protected"," */"," _afterFlickChange: function (e) {"," this._bindFlick(e.newVal);"," },",""," /**"," * After listener for changes to the disabled attribute"," *"," * @method _afterDisabledChange"," * @param e {Event.Facade} The event facade"," * @protected"," */"," _afterDisabledChange: function (e) {"," // Cache for performance - we check during move"," this._cDisabled = e.newVal;"," },",""," /**"," * After listener for the axis attribute"," *"," * @method _afterAxisChange"," * @param e {Event.Facade} The event facade"," * @protected"," */"," _afterAxisChange: function (e) {"," this._cAxis = e.newVal;"," },",""," /**"," * After listener for changes to the drag attribute"," *"," * @method _afterDragChange"," * @param e {Event.Facade} The event facade"," * @protected"," */"," _afterDragChange: function (e) {"," this._bindDrag(e.newVal);"," },",""," /**"," * After listener for the height or width attribute"," *"," * @method _afterDimChange"," * @param e {Event.Facade} The event facade"," * @protected"," */"," _afterDimChange: function () {"," this._uiDimensionsChange();"," },",""," /**"," * After listener for scrollEnd, for cleanup"," *"," * @method _afterScrollEnd"," * @param e {Event.Facade} The event facade"," * @protected"," */"," _afterScrollEnd: function () {"," var sv = this;",""," if (sv._flickAnim) {"," sv._cancelFlick();"," }",""," // Ideally this should be removed, but doing so causing some JS errors with fast swiping"," // because _gesture is being deleted after the previous one has been overwritten"," // delete sv._gesture; // TODO: Move to sv.prevGesture?"," },",""," /**"," * Setter for 'axis' attribute"," *"," * @method _axisSetter"," * @param val {Mixed} A string ('x', 'y', 'xy') to specify which axis/axes to allow scrolling on"," * @param name {String} The attribute name"," * @return {Object} An object to specify scrollability on the x & y axes"," *"," * @protected"," */"," _axisSetter: function (val) {",""," // Turn a string into an axis object"," if (Y.Lang.isString(val)) {"," return {"," x: val.match(/x/i) ? true : false,"," y: val.match(/y/i) ? true : false"," };"," }"," },"," "," /**"," * The scrollX, scrollY setter implementation"," *"," * @method _setScroll"," * @private"," * @param {Number} val"," * @param {String} dim"," *"," * @return {Number} The value"," */"," _setScroll : function(val) {",""," // Just ensure the widget is not disabled"," if (this._cDisabled) {"," val = Y.Attribute.INVALID_VALUE;"," }",""," return val;"," },",""," /**"," * Setter for the scrollX attribute"," *"," * @method _setScrollX"," * @param val {Number} The new scrollX value"," * @return {Number} The normalized value"," * @protected"," */"," _setScrollX: function(val) {"," return this._setScroll(val, DIM_X);"," },",""," /**"," * Setter for the scrollY ATTR"," *"," * @method _setScrollY"," * @param val {Number} The new scrollY value"," * @return {Number} The normalized value"," * @protected"," */"," _setScrollY: function(val) {"," return this._setScroll(val, DIM_Y);"," }",""," // End prototype properties","","}, {",""," // Static properties",""," /**"," * The identity of the widget."," *"," * @property NAME"," * @type String"," * @default 'scrollview'"," * @readOnly"," * @protected"," * @static"," */"," NAME: 'scrollview',",""," /**"," * Static property used to define the default attribute configuration of"," * the Widget."," *"," * @property ATTRS"," * @type {Object}"," * @protected"," * @static"," */"," ATTRS: {",""," /**"," * Specifies ability to scroll on x, y, or x and y axis/axes."," *"," * @attribute axis"," * @type String"," */"," axis: {"," setter: '_axisSetter',"," writeOnce: 'initOnly'"," },",""," /**"," * The current scroll position in the x-axis"," *"," * @attribute scrollX"," * @type Number"," * @default 0"," */"," scrollX: {"," value: 0,"," setter: '_setScrollX'"," },",""," /**"," * The current scroll position in the y-axis"," *"," * @attribute scrollY"," * @type Number"," * @default 0"," */"," scrollY: {"," value: 0,"," setter: '_setScrollY'"," },",""," /**"," * Drag coefficent for inertial scrolling. The closer to 1 this"," * value is, the less friction during scrolling."," *"," * @attribute deceleration"," * @default 0.93"," */"," deceleration: {"," value: 0.93"," },",""," /**"," * Drag coefficient for intertial scrolling at the upper"," * and lower boundaries of the scrollview. Set to 0 to"," * disable \"rubber-banding\"."," *"," * @attribute bounce"," * @type Number"," * @default 0.1"," */"," bounce: {"," value: 0.1"," },",""," /**"," * The minimum distance and/or velocity which define a flick. Can be set to false,"," * to disable flick support (note: drag support is enabled/disabled separately)"," *"," * @attribute flick"," * @type Object"," * @default Object with properties minDistance = 10, minVelocity = 0.3."," */"," flick: {"," value: {"," minDistance: 10,"," minVelocity: 0.3"," }"," },",""," /**"," * Enable/Disable dragging the ScrollView content (note: flick support is enabled/disabled separately)"," * @attribute drag"," * @type boolean"," * @default true"," */"," drag: {"," value: true"," },",""," /**"," * The default duration to use when animating the bounce snap back."," *"," * @attribute snapDuration"," * @type Number"," * @default 400"," */"," snapDuration: {"," value: 400"," },",""," /**"," * The default easing to use when animating the bounce snap back."," *"," * @attribute snapEasing"," * @type String"," * @default 'ease-out'"," */"," snapEasing: {"," value: 'ease-out'"," },",""," /**"," * The default easing used when animating the flick"," *"," * @attribute easing"," * @type String"," * @default 'cubic-bezier(0, 0.1, 0, 1.0)'"," */"," easing: {"," value: 'cubic-bezier(0, 0.1, 0, 1.0)'"," },",""," /**"," * The interval (ms) used when animating the flick for JS-timer animations"," *"," * @attribute frameDuration"," * @type Number"," * @default 15"," */"," frameDuration: {"," value: 15"," },",""," /**"," * The default bounce distance in pixels"," *"," * @attribute bounceRange"," * @type Number"," * @default 150"," */"," bounceRange: {"," value: 150"," }"," },",""," /**"," * List of class names used in the scrollview's DOM"," *"," * @property CLASS_NAMES"," * @type Object"," * @static"," */"," CLASS_NAMES: CLASS_NAMES,",""," /**"," * Flag used to source property changes initiated from the DOM"," *"," * @property UI_SRC"," * @type String"," * @static"," * @default 'ui'"," */"," UI_SRC: UI,",""," /**"," * Object map of style property names used to set transition properties."," * Defaults to the vendor prefix established by the Transition module."," * The configured property names are `_TRANSITION.DURATION` (e.g. \"WebkitTransitionDuration\") and"," * `_TRANSITION.PROPERTY (e.g. \"WebkitTransitionProperty\")."," *"," * @property _TRANSITION"," * @private"," */"," _TRANSITION: {"," DURATION: (vendorPrefix ? vendorPrefix + 'TransitionDuration' : 'transitionDuration'),"," PROPERTY: (vendorPrefix ? vendorPrefix + 'TransitionProperty' : 'transitionProperty')"," },",""," /**"," * The default bounce distance in pixels"," *"," * @property BOUNCE_RANGE"," * @type Number"," * @static"," * @default false"," * @deprecated (in 3.7.0)"," */"," BOUNCE_RANGE: false,",""," /**"," * The interval (ms) used when animating the flick"," *"," * @property FRAME_STEP"," * @type Number"," * @static"," * @default false"," * @deprecated (in 3.7.0)"," */"," FRAME_STEP: false,",""," /**"," * The default easing used when animating the flick"," *"," * @property EASING"," * @type String"," * @static"," * @default false"," * @deprecated (in 3.7.0)"," */"," EASING: false,",""," /**"," * The default easing to use when animating the bounce snap back."," *"," * @property SNAP_EASING"," * @type String"," * @static"," * @default false"," * @deprecated (in 3.7.0)"," */"," SNAP_EASING: false,",""," /**"," * The default duration to use when animating the bounce snap back."," *"," * @property SNAP_DURATION"," * @type Number"," * @static"," * @default false"," * @deprecated (in 3.7.0)"," */"," SNAP_DURATION: false",""," // End static properties","","});","","}, '@VERSION@', {\"requires\": [\"widget\", \"event-gestures\", \"event-mousewheel\", \"transition\"], \"skinnable\": true});"]; _yuitest_coverage["build/scrollview-base/scrollview-base.js"].lines = {"1":0,"11":0,"50":0,"62":0,"63":0,"66":0,"169":0,"172":0,"173":0,"176":0,"177":0,"178":0,"179":0,"180":0,"190":0,"193":0,"194":0,"195":0,"198":0,"201":0,"202":0,"206":0,"207":0,"210":0,"211":0,"214":0,"215":0,"218":0,"219":0,"222":0,"223":0,"238":0,"243":0,"266":0,"270":0,"272":0,"273":0,"286":0,"290":0,"292":0,"293":0,"296":0,"309":0,"314":0,"317":0,"319":0,"331":0,"339":0,"342":0,"347":0,"351":0,"354":0,"357":0,"360":0,"361":0,"375":0,"388":0,"389":0,"390":0,"393":0,"394":0,"396":0,"397":0,"403":0,"405":0,"407":0,"418":0,"432":0,"433":0,"436":0,"437":0,"440":0,"460":0,"464":0,"465":0,"466":0,"467":0,"477":0,"479":0,"501":0,"502":0,"505":0,"515":0,"516":0,"517":0,"519":0,"520":0,"521":0,"524":0,"525":0,"526":0,"529":0,"531":0,"533":0,"537":0,"538":0,"539":0,"544":0,"545":0,"547":0,"548":0,"555":0,"556":0,"558":0,"559":0,"562":0,"563":0,"566":0,"581":0,"583":0,"584":0,"587":0,"600":0,"601":0,"603":0,"604":0,"617":0,"620":0,"621":0,"630":0,"643":0,"644":0,"647":0,"654":0,"655":0,"659":0,"660":0,"661":0,"665":0,"668":0,"708":0,"720":0,"721":0,"724":0,"725":0,"729":0,"730":0,"734":0,"735":0,"737":0,"738":0,"750":0,"757":0,"758":0,"762":0,"763":0,"766":0,"767":0,"770":0,"776":0,"778":0,"781":0,"782":0,"789":0,"790":0,"805":0,"806":0,"809":0,"818":0,"819":0,"823":0,"824":0,"839":0,"867":0,"868":0,"872":0,"875":0,"877":0,"878":0,"882":0,"883":0,"888":0,"895":0,"896":0,"901":0,"903":0,"905":0,"908":0,"921":0,"929":0,"935":0,"938":0,"941":0,"945":0,"947":0,"948":0,"954":0,"957":0,"971":0,"983":0,"994":0,"1007":0,"1008":0,"1010":0,"1011":0,"1014":0,"1026":0,"1027":0,"1030":0,"1037":0,"1040":0,"1041":0,"1042":0,"1045":0,"1046":0,"1049":0,"1050":0,"1052":0,"1063":0,"1075":0,"1086":0,"1097":0,"1108":0,"1119":0,"1121":0,"1122":0,"1143":0,"1144":0,"1164":0,"1165":0,"1168":0,"1180":0,"1192":0}; _yuitest_coverage["build/scrollview-base/scrollview-base.js"].functions = {"_constrain:49":0,"ScrollView:62":0,"initializer:168":0,"bindUI:189":0,"_bindAttrs:237":0,"_bindDrag:265":0,"_bindFlick:285":0,"_bindMousewheel:308":0,"syncUI:330":0,"_getScrollDims:374":0,"_uiDimensionsChange:417":0,"_setBounds:459":0,"_getBounds:476":0,"scrollTo:499":0,"_transform:579":0,"_moveTo:599":0,"_onTransEnd:616":0,"_onGestureMoveStart:641":0,"_onGestureMove:707":0,"_onGestureMoveEnd:749":0,"_flick:804":0,"_flickFrame:837":0,"_cancelFlick:900":0,"_mousewheel:920":0,"_isOutOfBounds:970":0,"_snapBack:993":0,"_afterScrollChange:1025":0,"_afterFlickChange:1062":0,"_afterDisabledChange:1073":0,"_afterAxisChange:1085":0,"_afterDragChange:1096":0,"_afterDimChange:1107":0,"_afterScrollEnd:1118":0,"_axisSetter:1140":0,"_setScroll:1161":0,"_setScrollX:1179":0,"_setScrollY:1191":0,"(anonymous 1):1":0}; _yuitest_coverage["build/scrollview-base/scrollview-base.js"].coveredLines = 223; _yuitest_coverage["build/scrollview-base/scrollview-base.js"].coveredFunctions = 38; _yuitest_coverline("build/scrollview-base/scrollview-base.js", 1); YUI.add('scrollview-base', function (Y, NAME) { /** * The scrollview-base module provides a basic ScrollView Widget, without scrollbar indicators * * @module scrollview * @submodule scrollview-base */ // Local vars _yuitest_coverfunc("build/scrollview-base/scrollview-base.js", "(anonymous 1)", 1); _yuitest_coverline("build/scrollview-base/scrollview-base.js", 11); var getClassName = Y.ClassNameManager.getClassName, DOCUMENT = Y.config.doc, IE = Y.UA.ie, NATIVE_TRANSITIONS = Y.Transition.useNative, vendorPrefix = Y.Transition._VENDOR_PREFIX, // Todo: This is a private property, and alternative approaches should be investigated SCROLLVIEW = 'scrollview', CLASS_NAMES = { vertical: getClassName(SCROLLVIEW, 'vert'), horizontal: getClassName(SCROLLVIEW, 'horiz') }, EV_SCROLL_END = 'scrollEnd', FLICK = 'flick', DRAG = 'drag', MOUSEWHEEL = 'mousewheel', UI = 'ui', TOP = 'top', LEFT = 'left', PX = 'px', AXIS = 'axis', SCROLL_Y = 'scrollY', SCROLL_X = 'scrollX', BOUNCE = 'bounce', DISABLED = 'disabled', DECELERATION = 'deceleration', DIM_X = 'x', DIM_Y = 'y', BOUNDING_BOX = 'boundingBox', CONTENT_BOX = 'contentBox', GESTURE_MOVE = 'gesturemove', START = 'start', END = 'end', EMPTY = '', ZERO = '0s', SNAP_DURATION = 'snapDuration', SNAP_EASING = 'snapEasing', EASING = 'easing', FRAME_DURATION = 'frameDuration', BOUNCE_RANGE = 'bounceRange', _constrain = function (val, min, max) { _yuitest_coverfunc("build/scrollview-base/scrollview-base.js", "_constrain", 49); _yuitest_coverline("build/scrollview-base/scrollview-base.js", 50); return Math.min(Math.max(val, min), max); }; /** * ScrollView provides a scrollable widget, supporting flick gestures, * across both touch and mouse based devices. * * @class ScrollView * @param config {Object} Object literal with initial attribute values * @extends Widget * @constructor */ _yuitest_coverline("build/scrollview-base/scrollview-base.js", 62); function ScrollView() { _yuitest_coverfunc("build/scrollview-base/scrollview-base.js", "ScrollView", 62); _yuitest_coverline("build/scrollview-base/scrollview-base.js", 63); ScrollView.superclass.constructor.apply(this, arguments); } _yuitest_coverline("build/scrollview-base/scrollview-base.js", 66); Y.ScrollView = Y.extend(ScrollView, Y.Widget, { // *** Y.ScrollView prototype /** * Flag driving whether or not we should try and force H/W acceleration when transforming. Currently enabled by default for Webkit. * Used by the _transform method. * * @property _forceHWTransforms * @type boolean * @protected */ _forceHWTransforms: Y.UA.webkit ? true : false, /** * <p>Used to control whether or not ScrollView's internal * gesturemovestart, gesturemove and gesturemoveend * event listeners should preventDefault. The value is an * object, with "start", "move" and "end" properties used to * specify which events should preventDefault and which shouldn't:</p> * * <pre> * { * start: false, * move: true, * end: false * } * </pre> * * <p>The default values are set up in order to prevent panning, * on touch devices, while allowing click listeners on elements inside * the ScrollView to be notified as expected.</p> * * @property _prevent * @type Object * @protected */ _prevent: { start: false, move: true, end: false }, /** * Contains the distance (postive or negative) in pixels by which * the scrollview was last scrolled. This is useful when setting up * click listeners on the scrollview content, which on mouse based * devices are always fired, even after a drag/flick. * * <p>Touch based devices don't currently fire a click event, * if the finger has been moved (beyond a threshold) so this * check isn't required, if working in a purely touch based environment</p> * * @property lastScrolledAmt * @type Number * @public * @default 0 */ lastScrolledAmt: 0, /** * Internal state, defines the minimum amount that the scrollview can be scrolled along the X axis * * @property _minScrollX * @type number * @protected */ _minScrollX: null, /** * Internal state, defines the maximum amount that the scrollview can be scrolled along the X axis * * @property _maxScrollX * @type number * @protected */ _maxScrollX: null, /** * Internal state, defines the minimum amount that the scrollview can be scrolled along the Y axis * * @property _minScrollY * @type number * @protected */ _minScrollY: null, /** * Internal state, defines the maximum amount that the scrollview can be scrolled along the Y axis * * @property _maxScrollY * @type number * @protected */ _maxScrollY: null, /** * Designated initializer * * @method initializer * @param {config} Configuration object for the plugin */ initializer: function () { _yuitest_coverfunc("build/scrollview-base/scrollview-base.js", "initializer", 168); _yuitest_coverline("build/scrollview-base/scrollview-base.js", 169); var sv = this; // Cache these values, since they aren't going to change. _yuitest_coverline("build/scrollview-base/scrollview-base.js", 172); sv._bb = sv.get(BOUNDING_BOX); _yuitest_coverline("build/scrollview-base/scrollview-base.js", 173); sv._cb = sv.get(CONTENT_BOX); // Cache some attributes _yuitest_coverline("build/scrollview-base/scrollview-base.js", 176); sv._cAxis = sv.get(AXIS); _yuitest_coverline("build/scrollview-base/scrollview-base.js", 177); sv._cBounce = sv.get(BOUNCE); _yuitest_coverline("build/scrollview-base/scrollview-base.js", 178); sv._cBounceRange = sv.get(BOUNCE_RANGE); _yuitest_coverline("build/scrollview-base/scrollview-base.js", 179); sv._cDeceleration = sv.get(DECELERATION); _yuitest_coverline("build/scrollview-base/scrollview-base.js", 180); sv._cFrameDuration = sv.get(FRAME_DURATION); }, /** * bindUI implementation * * Hooks up events for the widget * @method bindUI */ bindUI: function () { _yuitest_coverfunc("build/scrollview-base/scrollview-base.js", "bindUI", 189); _yuitest_coverline("build/scrollview-base/scrollview-base.js", 190); var sv = this; // Bind interaction listers _yuitest_coverline("build/scrollview-base/scrollview-base.js", 193); sv._bindFlick(sv.get(FLICK)); _yuitest_coverline("build/scrollview-base/scrollview-base.js", 194); sv._bindDrag(sv.get(DRAG)); _yuitest_coverline("build/scrollview-base/scrollview-base.js", 195); sv._bindMousewheel(true); // Bind change events _yuitest_coverline("build/scrollview-base/scrollview-base.js", 198); sv._bindAttrs(); // IE SELECT HACK. See if we can do this non-natively and in the gesture for a future release. _yuitest_coverline("build/scrollview-base/scrollview-base.js", 201); if (IE) { _yuitest_coverline("build/scrollview-base/scrollview-base.js", 202); sv._fixIESelect(sv._bb, sv._cb); } // Set any deprecated static properties _yuitest_coverline("build/scrollview-base/scrollview-base.js", 206); if (ScrollView.SNAP_DURATION) { _yuitest_coverline("build/scrollview-base/scrollview-base.js", 207); sv.set(SNAP_DURATION, ScrollView.SNAP_DURATION); } _yuitest_coverline("build/scrollview-base/scrollview-base.js", 210); if (ScrollView.SNAP_EASING) { _yuitest_coverline("build/scrollview-base/scrollview-base.js", 211); sv.set(SNAP_EASING, ScrollView.SNAP_EASING); } _yuitest_coverline("build/scrollview-base/scrollview-base.js", 214); if (ScrollView.EASING) { _yuitest_coverline("build/scrollview-base/scrollview-base.js", 215); sv.set(EASING, ScrollView.EASING); } _yuitest_coverline("build/scrollview-base/scrollview-base.js", 218); if (ScrollView.FRAME_STEP) { _yuitest_coverline("build/scrollview-base/scrollview-base.js", 219); sv.set(FRAME_DURATION, ScrollView.FRAME_STEP); } _yuitest_coverline("build/scrollview-base/scrollview-base.js", 222); if (ScrollView.BOUNCE_RANGE) { _yuitest_coverline("build/scrollview-base/scrollview-base.js", 223); sv.set(BOUNCE_RANGE, ScrollView.BOUNCE_RANGE); } // Recalculate dimension properties // TODO: This should be throttled. // Y.one(WINDOW).after('resize', sv._afterDimChange, sv); }, /** * Bind event listeners * * @method _bindAttrs * @private */ _bindAttrs: function () { _yuitest_coverfunc("build/scrollview-base/scrollview-base.js", "_bindAttrs", 237); _yuitest_coverline("build/scrollview-base/scrollview-base.js", 238); var sv = this, scrollChangeHandler = sv._afterScrollChange, dimChangeHandler = sv._afterDimChange; // Bind any change event listeners _yuitest_coverline("build/scrollview-base/scrollview-base.js", 243); sv.after({ 'scrollEnd': sv._afterScrollEnd, 'disabledChange': sv._afterDisabledChange, 'flickChange': sv._afterFlickChange, 'dragChange': sv._afterDragChange, 'axisChange': sv._afterAxisChange, 'scrollYChange': scrollChangeHandler, 'scrollXChange': scrollChangeHandler, 'heightChange': dimChangeHandler, 'widthChange': dimChangeHandler }); }, /** * Bind (or unbind) gesture move listeners required for drag support * * @method _bindDrag * @param drag {boolean} If true, the method binds listener to enable * drag (gesturemovestart). If false, the method unbinds gesturemove * listeners for drag support. * @private */ _bindDrag: function (drag) { _yuitest_coverfunc("build/scrollview-base/scrollview-base.js", "_bindDrag", 265); _yuitest_coverline("build/scrollview-base/scrollview-base.js", 266); var sv = this, bb = sv._bb; // Unbind any previous 'drag' listeners _yuitest_coverline("build/scrollview-base/scrollview-base.js", 270); bb.detach(DRAG + '|*'); _yuitest_coverline("build/scrollview-base/scrollview-base.js", 272); if (drag) { _yuitest_coverline("build/scrollview-base/scrollview-base.js", 273); bb.on(DRAG + '|' + GESTURE_MOVE + START, Y.bind(sv._onGestureMoveStart, sv)); } }, /** * Bind (or unbind) flick listeners. * * @method _bindFlick * @param flick {Object|boolean} If truthy, the method binds listeners for * flick support. If false, the method unbinds flick listeners. * @private */ _bindFlick: function (flick) { _yuitest_coverfunc("build/scrollview-base/scrollview-base.js", "_bindFlick", 285); _yuitest_coverline("build/scrollview-base/scrollview-base.js", 286); var sv = this, bb = sv._bb; // Unbind any previous 'flick' listeners _yuitest_coverline("build/scrollview-base/scrollview-base.js", 290); bb.detach(FLICK + '|*'); _yuitest_coverline("build/scrollview-base/scrollview-base.js", 292); if (flick) { _yuitest_coverline("build/scrollview-base/scrollview-base.js", 293); bb.on(FLICK + '|' + FLICK, Y.bind(sv._flick, sv), flick); // Rebind Drag, becuase _onGestureMoveEnd always has to fire -after- _flick _yuitest_coverline("build/scrollview-base/scrollview-base.js", 296); sv._bindDrag(sv.get(DRAG)); } }, /** * Bind (or unbind) mousewheel listeners. * * @method _bindMousewheel * @param mousewheel {Object|boolean} If truthy, the method binds listeners for * mousewheel support. If false, the method unbinds mousewheel listeners. * @private */ _bindMousewheel: function (mousewheel) { _yuitest_coverfunc("build/scrollview-base/scrollview-base.js", "_bindMousewheel", 308); _yuitest_coverline("build/scrollview-base/scrollview-base.js", 309); var sv = this, bb = sv._bb; // Unbind any previous 'mousewheel' listeners // TODO: This doesn't actually appear to work properly. Fix. #2532743 _yuitest_coverline("build/scrollview-base/scrollview-base.js", 314); bb.detach(MOUSEWHEEL + '|*'); // Only enable for vertical scrollviews _yuitest_coverline("build/scrollview-base/scrollview-base.js", 317); if (mousewheel) { // Bound to document, because that's where mousewheel events fire off of. _yuitest_coverline("build/scrollview-base/scrollview-base.js", 319); Y.one(DOCUMENT).on(MOUSEWHEEL, Y.bind(sv._mousewheel, sv)); } }, /** * syncUI implementation. * * Update the scroll position, based on the current value of scrollX/scrollY. * * @method syncUI */ syncUI: function () { _yuitest_coverfunc("build/scrollview-base/scrollview-base.js", "syncUI", 330); _yuitest_coverline("build/scrollview-base/scrollview-base.js", 331); var sv = this, scrollDims = sv._getScrollDims(), width = scrollDims.offsetWidth, height = scrollDims.offsetHeight, scrollWidth = scrollDims.scrollWidth, scrollHeight = scrollDims.scrollHeight; // If the axis is undefined, auto-calculate it _yuitest_coverline("build/scrollview-base/scrollview-base.js", 339); if (sv._cAxis === undefined) { // This should only ever be run once (for now). // In the future SV might post-load axis changes _yuitest_coverline("build/scrollview-base/scrollview-base.js", 342); sv._cAxis = { x: (scrollWidth > width), y: (scrollHeight > height) }; _yuitest_coverline("build/scrollview-base/scrollview-base.js", 347); sv._set(AXIS, sv._cAxis); } // get text direction on or inherited by scrollview node _yuitest_coverline("build/scrollview-base/scrollview-base.js", 351); sv.rtl = (sv._cb.getComputedStyle('direction') === 'rtl'); // Cache the disabled value _yuitest_coverline("build/scrollview-base/scrollview-base.js", 354); sv._cDisabled = sv.get(DISABLED); // Run this to set initial values _yuitest_coverline("build/scrollview-base/scrollview-base.js", 357); sv._uiDimensionsChange(); // If we're out-of-bounds, snap back. _yuitest_coverline("build/scrollview-base/scrollview-base.js", 360); if (sv._isOutOfBounds()) { _yuitest_coverline("build/scrollview-base/scrollview-base.js", 361); sv._snapBack(); } }, /** * Utility method to obtain widget dimensions * * @method _getScrollDims * @return {Object} The offsetWidth, offsetHeight, scrollWidth and * scrollHeight as an array: [offsetWidth, offsetHeight, scrollWidth, * scrollHeight] * @private */ _getScrollDims: function () { _yuitest_coverfunc("build/scrollview-base/scrollview-base.js", "_getScrollDims", 374); _yuitest_coverline("build/scrollview-base/scrollview-base.js", 375); var sv = this, cb = sv._cb, bb = sv._bb, TRANS = ScrollView._TRANSITION, // Ideally using CSSMatrix - don't think we have it normalized yet though. // origX = (new WebKitCSSMatrix(cb.getComputedStyle("transform"))).e, // origY = (new WebKitCSSMatrix(cb.getComputedStyle("transform"))).f, origX = sv.get(SCROLL_X), origY = sv.get(SCROLL_Y), origHWTransform, dims; // TODO: Is this OK? Just in case it's called 'during' a transition. _yuitest_coverline("build/scrollview-base/scrollview-base.js", 388); if (NATIVE_TRANSITIONS) { _yuitest_coverline("build/scrollview-base/scrollview-base.js", 389); cb.setStyle(TRANS.DURATION, ZERO); _yuitest_coverline("build/scrollview-base/scrollview-base.js", 390); cb.setStyle(TRANS.PROPERTY, EMPTY); } _yuitest_coverline("build/scrollview-base/scrollview-base.js", 393); origHWTransform = sv._forceHWTransforms; _yuitest_coverline("build/scrollview-base/scrollview-base.js", 394); sv._forceHWTransforms = false; // the z translation was causing issues with picking up accurate scrollWidths in Chrome/Mac. _yuitest_coverline("build/scrollview-base/scrollview-base.js", 396); sv._moveTo(cb, 0, 0); _yuitest_coverline("build/scrollview-base/scrollview-base.js", 397); dims = { 'offsetWidth': bb.get('offsetWidth'), 'offsetHeight': bb.get('offsetHeight'), 'scrollWidth': bb.get('scrollWidth'), 'scrollHeight': bb.get('scrollHeight') }; _yuitest_coverline("build/scrollview-base/scrollview-base.js", 403); sv._moveTo(cb, -(origX), -(origY)); _yuitest_coverline("build/scrollview-base/scrollview-base.js", 405); sv._forceHWTransforms = origHWTransform; _yuitest_coverline("build/scrollview-base/scrollview-base.js", 407); return dims; }, /** * This method gets invoked whenever the height or width attributes change, * allowing us to determine which scrolling axes need to be enabled. * * @method _uiDimensionsChange * @protected */ _uiDimensionsChange: function () { _yuitest_coverfunc("build/scrollview-base/scrollview-base.js", "_uiDimensionsChange", 417); _yuitest_coverline("build/scrollview-base/scrollview-base.js", 418); var sv = this, bb = sv._bb, scrollDims = sv._getScrollDims(), width = scrollDims.offsetWidth, height = scrollDims.offsetHeight, scrollWidth = scrollDims.scrollWidth, scrollHeight = scrollDims.scrollHeight, rtl = sv.rtl, svAxis = sv._cAxis, minScrollX = (rtl ? Math.min(0, -(scrollWidth - width)) : 0), maxScrollX = (rtl ? 0 : Math.max(0, scrollWidth - width)), minScrollY = 0, maxScrollY = Math.max(0, scrollHeight - height); _yuitest_coverline("build/scrollview-base/scrollview-base.js", 432); if (svAxis && svAxis.x) { _yuitest_coverline("build/scrollview-base/scrollview-base.js", 433); bb.addClass(CLASS_NAMES.horizontal); } _yuitest_coverline("build/scrollview-base/scrollview-base.js", 436); if (svAxis && svAxis.y) { _yuitest_coverline("build/scrollview-base/scrollview-base.js", 437); bb.addClass(CLASS_NAMES.vertical); } _yuitest_coverline("build/scrollview-base/scrollview-base.js", 440); sv._setBounds({ minScrollX: minScrollX, maxScrollX: maxScrollX, minScrollY: minScrollY, maxScrollY: maxScrollY }); }, /** * Set the bounding dimensions of the ScrollView * * @method _setBounds * @protected * @param bounds {Object} [duration] ms of the scroll animation. (default is 0) * @param {Number} [bounds.minScrollX] The minimum scroll X value * @param {Number} [bounds.maxScrollX] The maximum scroll X value * @param {Number} [bounds.minScrollY] The minimum scroll Y value * @param {Number} [bounds.maxScrollY] The maximum scroll Y value */ _setBounds: function (bounds) { _yuitest_coverfunc("build/scrollview-base/scrollview-base.js", "_setBounds", 459); _yuitest_coverline("build/scrollview-base/scrollview-base.js", 460); var sv = this; // TODO: Do a check to log if the bounds are invalid _yuitest_coverline("build/scrollview-base/scrollview-base.js", 464); sv._minScrollX = bounds.minScrollX; _yuitest_coverline("build/scrollview-base/scrollview-base.js", 465); sv._maxScrollX = bounds.maxScrollX; _yuitest_coverline("build/scrollview-base/scrollview-base.js", 466); sv._minScrollY = bounds.minScrollY; _yuitest_coverline("build/scrollview-base/scrollview-base.js", 467); sv._maxScrollY = bounds.maxScrollY; }, /** * Get the bounding dimensions of the ScrollView * * @method _getBounds * @protected */ _getBounds: function () { _yuitest_coverfunc("build/scrollview-base/scrollview-base.js", "_getBounds", 476); _yuitest_coverline("build/scrollview-base/scrollview-base.js", 477); var sv = this; _yuitest_coverline("build/scrollview-base/scrollview-base.js", 479); return { minScrollX: sv._minScrollX, maxScrollX: sv._maxScrollX, minScrollY: sv._minScrollY, maxScrollY: sv._maxScrollY }; }, /** * Scroll the element to a given xy coordinate * * @method scrollTo * @param x {Number} The x-position to scroll to. (null for no movement) * @param y {Number} The y-position to scroll to. (null for no movement) * @param {Number} [duration] ms of the scroll animation. (default is 0) * @param {String} [easing] An easing equation if duration is set. (default is `easing` attribute) * @param {String} [node] The node to transform. Setting this can be useful in * dual-axis paginated instances. (default is the instance's contentBox) */ scrollTo: function (x, y, duration, easing, node) { // Check to see if widget is disabled _yuitest_coverfunc("build/scrollview-base/scrollview-base.js", "scrollTo", 499); _yuitest_coverline("build/scrollview-base/scrollview-base.js", 501); if (this._cDisabled) { _yuitest_coverline("build/scrollview-base/scrollview-base.js", 502); return; } _yuitest_coverline("build/scrollview-base/scrollview-base.js", 505); var sv = this, cb = sv._cb, TRANS = ScrollView._TRANSITION, callback = Y.bind(sv._onTransEnd, sv), // @Todo : cache this newX = 0, newY = 0, transition = {}, transform; // default the optional arguments _yuitest_coverline("build/scrollview-base/scrollview-base.js", 515); duration = duration || 0; _yuitest_coverline("build/scrollview-base/scrollview-base.js", 516); easing = easing || sv.get(EASING); // @TODO: Cache this _yuitest_coverline("build/scrollview-base/scrollview-base.js", 517); node = node || cb; _yuitest_coverline("build/scrollview-base/scrollview-base.js", 519); if (x !== null) { _yuitest_coverline("build/scrollview-base/scrollview-base.js", 520); sv.set(SCROLL_X, x, {src:UI}); _yuitest_coverline("build/scrollview-base/scrollview-base.js", 521); newX = -(x); } _yuitest_coverline("build/scrollview-base/scrollview-base.js", 524); if (y !== null) { _yuitest_coverline("build/scrollview-base/scrollview-base.js", 525); sv.set(SCROLL_Y, y, {src:UI}); _yuitest_coverline("build/scrollview-base/scrollview-base.js", 526); newY = -(y); } _yuitest_coverline("build/scrollview-base/scrollview-base.js", 529); transform = sv._transform(newX, newY); _yuitest_coverline("build/scrollview-base/scrollview-base.js", 531); if (NATIVE_TRANSITIONS) { // ANDROID WORKAROUND - try and stop existing transition, before kicking off new one. _yuitest_coverline("build/scrollview-base/scrollview-base.js", 533); node.setStyle(TRANS.DURATION, ZERO).setStyle(TRANS.PROPERTY, EMPTY); } // Move _yuitest_coverline("build/scrollview-base/scrollview-base.js", 537); if (duration === 0) { _yuitest_coverline("build/scrollview-base/scrollview-base.js", 538); if (NATIVE_TRANSITIONS) { _yuitest_coverline("build/scrollview-base/scrollview-base.js", 539); node.setStyle('transform', transform); } else { // TODO: If both set, batch them in the same update // Update: Nope, setStyles() just loops through each property and applies it. _yuitest_coverline("build/scrollview-base/scrollview-base.js", 544); if (x !== null) { _yuitest_coverline("build/scrollview-base/scrollview-base.js", 545); node.setStyle(LEFT, newX + PX); } _yuitest_coverline("build/scrollview-base/scrollview-base.js", 547); if (y !== null) { _yuitest_coverline("build/scrollview-base/scrollview-base.js", 548); node.setStyle(TOP, newY + PX); } } } // Animate else { _yuitest_coverline("build/scrollview-base/scrollview-base.js", 555); transition.easing = easing; _yuitest_coverline("build/scrollview-base/scrollview-base.js", 556); transition.duration = duration / 1000; _yuitest_coverline("build/scrollview-base/scrollview-base.js", 558); if (NATIVE_TRANSITIONS) { _yuitest_coverline("build/scrollview-base/scrollview-base.js", 559); transition.transform = transform; } else { _yuitest_coverline("build/scrollview-base/scrollview-base.js", 562); transition.left = newX + PX; _yuitest_coverline("build/scrollview-base/scrollview-base.js", 563); transition.top = newY + PX; } _yuitest_coverline("build/scrollview-base/scrollview-base.js", 566); node.transition(transition, callback); } }, /** * Utility method, to create the translate transform string with the * x, y translation amounts provided. * * @method _transform * @param {Number} x Number of pixels to translate along the x axis * @param {Number} y Number of pixels to translate along the y axis * @private */ _transform: function (x, y) { // TODO: Would we be better off using a Matrix for this? _yuitest_coverfunc("build/scrollview-base/scrollview-base.js", "_transform", 579); _yuitest_coverline("build/scrollview-base/scrollview-base.js", 581); var prop = 'translate(' + x + 'px, ' + y + 'px)'; _yuitest_coverline("build/scrollview-base/scrollview-base.js", 583); if (this._forceHWTransforms) { _yuitest_coverline("build/scrollview-base/scrollview-base.js", 584); prop += ' translateZ(0)'; } _yuitest_coverline("build/scrollview-base/scrollview-base.js", 587); return prop; }, /** * Utility method, to move the given element to the given xy position * * @method _moveTo * @param node {Node} The node to move * @param x {Number} The x-position to move to * @param y {Number} The y-position to move to * @private */ _moveTo : function(node, x, y) { _yuitest_coverfunc("build/scrollview-base/scrollview-base.js", "_moveTo", 599); _yuitest_coverline("build/scrollview-base/scrollview-base.js", 600); if (NATIVE_TRANSITIONS) { _yuitest_coverline("build/scrollview-base/scrollview-base.js", 601); node.setStyle('transform', this._transform(x, y)); } else { _yuitest_coverline("build/scrollview-base/scrollview-base.js", 603); node.setStyle(LEFT, x + PX); _yuitest_coverline("build/scrollview-base/scrollview-base.js", 604); node.setStyle(TOP, y + PX); } }, /** * Content box transition callback * * @method _onTransEnd * @param {Event.Facade} e The event facade * @private */ _onTransEnd: function () { _yuitest_coverfunc("build/scrollview-base/scrollview-base.js", "_onTransEnd", 616); _yuitest_coverline("build/scrollview-base/scrollview-base.js", 617); var sv = this; // If for some reason we're OOB, snapback _yuitest_coverline("build/scrollview-base/scrollview-base.js", 620); if (sv._isOutOfBounds()) { _yuitest_coverline("build/scrollview-base/scrollview-base.js", 621); sv._snapBack(); } else { /** * Notification event fired at the end of a scroll transition * * @event scrollEnd * @param e {EventFacade} The default event facade. */ _yuitest_coverline("build/scrollview-base/scrollview-base.js", 630); sv.fire(EV_SCROLL_END); } }, /** * gesturemovestart event handler * * @method _onGestureMoveStart * @param e {Event.Facade} The gesturemovestart event facade * @private */ _onGestureMoveStart: function (e) { _yuitest_coverfunc("build/scrollview-base/scrollview-base.js", "_onGestureMoveStart", 641); _yuitest_coverline("build/scrollview-base/scrollview-base.js", 643); if (this._cDisabled) { _yuitest_coverline("build/scrollview-base/scrollview-base.js", 644); return false; } _yuitest_coverline("build/scrollview-base/scrollview-base.js", 647); var sv = this, bb = sv._bb, currentX = sv.get(SCROLL_X), currentY = sv.get(SCROLL_Y), clientX = e.clientX, clientY = e.clientY; _yuitest_coverline("build/scrollview-base/scrollview-base.js", 654); if (sv._prevent.start) { _yuitest_coverline("build/scrollview-base/scrollview-base.js", 655); e.preventDefault(); } // if a flick animation is in progress, cancel it _yuitest_coverline("build/scrollview-base/scrollview-base.js", 659); if (sv._flickAnim) { _yuitest_coverline("build/scrollview-base/scrollview-base.js", 660); sv._cancelFlick(); _yuitest_coverline("build/scrollview-base/scrollview-base.js", 661); sv._onTransEnd(); } // Reset lastScrolledAmt _yuitest_coverline("build/scrollview-base/scrollview-base.js", 665); sv.lastScrolledAmt = 0; // Stores data for this gesture cycle. Cleaned up later _yuitest_coverline("build/scrollview-base/scrollview-base.js", 668); sv._gesture = { // Will hold the axis value axis: null, // The current attribute values startX: currentX, startY: currentY, // The X/Y coordinates where the event began startClientX: clientX, startClientY: clientY, // The X/Y coordinates where the event will end endClientX: null, endClientY: null, // The current delta of the event deltaX: null, deltaY: null, // Will be populated for flicks flick: null, // Create some listeners for the rest of the gesture cycle onGestureMove: bb.on(DRAG + '|' + GESTURE_MOVE, Y.bind(sv._onGestureMove, sv)), // @TODO: Don't bind gestureMoveEnd if it's a Flick? onGestureMoveEnd: bb.on(DRAG + '|' + GESTURE_MOVE + END, Y.bind(sv._onGestureMoveEnd, sv)) }; }, /** * gesturemove event handler * * @method _onGestureMove * @param e {Event.Facade} The gesturemove event facade * @private */ _onGestureMove: function (e) { _yuitest_coverfunc("build/scrollview-base/scrollview-base.js", "_onGestureMove", 707); _yuitest_coverline("build/scrollview-base/scrollview-base.js", 708); var sv = this, gesture = sv._gesture, svAxis = sv._cAxis, svAxisX = svAxis.x, svAxisY = svAxis.y, startX = gesture.startX, startY = gesture.startY, startClientX = gesture.startClientX, startClientY = gesture.startClientY, clientX = e.clientX, clientY = e.clientY; _yuitest_coverline("build/scrollview-base/scrollview-base.js", 720); if (sv._prevent.move) { _yuitest_coverline("build/scrollview-base/scrollview-base.js", 721); e.preventDefault(); } _yuitest_coverline("build/scrollview-base/scrollview-base.js", 724); gesture.deltaX = startClientX - clientX; _yuitest_coverline("build/scrollview-base/scrollview-base.js", 725); gesture.deltaY = startClientY - clientY; // Determine if this is a vertical or horizontal movement // @TODO: This is crude, but it works. Investigate more intelligent ways to detect intent _yuitest_coverline("build/scrollview-base/scrollview-base.js", 729); if (gesture.axis === null) { _yuitest_coverline("build/scrollview-base/scrollview-base.js", 730); gesture.axis = (Math.abs(gesture.deltaX) > Math.abs(gesture.deltaY)) ? DIM_X : DIM_Y; } // Move X or Y. @TODO: Move both if dualaxis. _yuitest_coverline("build/scrollview-base/scrollview-base.js", 734); if (gesture.axis === DIM_X && svAxisX) { _yuitest_coverline("build/scrollview-base/scrollview-base.js", 735); sv.set(SCROLL_X, startX + gesture.deltaX); } else {_yuitest_coverline("build/scrollview-base/scrollview-base.js", 737); if (gesture.axis === DIM_Y && svAxisY) { _yuitest_coverline("build/scrollview-base/scrollview-base.js", 738); sv.set(SCROLL_Y, startY + gesture.deltaY); }} }, /** * gesturemoveend event handler * * @method _onGestureMoveEnd * @param e {Event.Facade} The gesturemoveend event facade * @private */ _onGestureMoveEnd: function (e) { _yuitest_coverfunc("build/scrollview-base/scrollview-base.js", "_onGestureMoveEnd", 749); _yuitest_coverline("build/scrollview-base/scrollview-base.js", 750); var sv = this, gesture = sv._gesture, flick = gesture.flick, clientX = e.clientX, clientY = e.clientY, isOOB; _yuitest_coverline("build/scrollview-base/scrollview-base.js", 757); if (sv._prevent.end) { _yuitest_coverline("build/scrollview-base/scrollview-base.js", 758); e.preventDefault(); } // Store the end X/Y coordinates _yuitest_coverline("build/scrollview-base/scrollview-base.js", 762); gesture.endClientX = clientX; _yuitest_coverline("build/scrollview-base/scrollview-base.js", 763); gesture.endClientY = clientY; // Cleanup the event handlers _yuitest_coverline("build/scrollview-base/scrollview-base.js", 766); gesture.onGestureMove.detach(); _yuitest_coverline("build/scrollview-base/scrollview-base.js", 767); gesture.onGestureMoveEnd.detach(); // If this wasn't a flick, wrap up the gesture cycle _yuitest_coverline("build/scrollview-base/scrollview-base.js", 770); if (!flick) { // @TODO: Be more intelligent about this. Look at the Flick attribute to see // if it is safe to assume _flick did or didn't fire. // Then, the order _flick and _onGestureMoveEnd fire doesn't matter? // If there was movement (_onGestureMove fired) _yuitest_coverline("build/scrollview-base/scrollview-base.js", 776); if (gesture.deltaX !== null && gesture.deltaY !== null) { _yuitest_coverline("build/scrollview-base/scrollview-base.js", 778); isOOB = sv._isOutOfBounds(); // If we're out-out-bounds, then snapback _yuitest_coverline("build/scrollview-base/scrollview-base.js", 781); if (isOOB) { _yuitest_coverline("build/scrollview-base/scrollview-base.js", 782); sv._snapBack(); } // Inbounds else { // Fire scrollEnd unless this is a paginated instance and the gesture axis is the same as paginator's // Not totally confident this is ideal to access a plugin's properties from a host, @TODO revisit _yuitest_coverline("build/scrollview-base/scrollview-base.js", 789); if (!sv.pages || (sv.pages && !sv.pages.get(AXIS)[gesture.axis])) { _yuitest_coverline("build/scrollview-base/scrollview-base.js", 790); sv._onTransEnd(); } } } } }, /** * Execute a flick at the end of a scroll action * * @method _flick * @param e {Event.Facade} The Flick event facade * @private */ _flick: function (e) { _yuitest_coverfunc("build/scrollview-base/scrollview-base.js", "_flick", 804); _yuitest_coverline("build/scrollview-base/scrollview-base.js", 805); if (this._cDisabled) { _yuitest_coverline("build/scrollview-base/scrollview-base.js", 806); return false; } _yuitest_coverline("build/scrollview-base/scrollview-base.js", 809); var sv = this, svAxis = sv._cAxis, flick = e.flick, flickAxis = flick.axis, flickVelocity = flick.velocity, axisAttr = flickAxis === DIM_X ? SCROLL_X : SCROLL_Y, startPosition = sv.get(axisAttr); // Sometimes flick is enabled, but drag is disabled _yuitest_coverline("build/scrollview-base/scrollview-base.js", 818); if (sv._gesture) { _yuitest_coverline("build/scrollview-base/scrollview-base.js", 819); sv._gesture.flick = flick; } // Prevent unneccesary firing of _flickFrame if we can't scroll on the flick axis _yuitest_coverline("build/scrollview-base/scrollview-base.js", 823); if (svAxis[flickAxis]) { _yuitest_coverline("build/scrollview-base/scrollview-base.js", 824); sv._flickFrame(flickVelocity, flickAxis, startPosition); } }, /** * Execute a single frame in the flick animation * * @method _flickFrame * @param velocity {Number} The velocity of this animated frame * @param flickAxis {String} The axis on which to animate * @param startPosition {Number} The starting X/Y point to flick from * @protected */ _flickFrame: function (velocity, flickAxis, startPosition) { _yuitest_coverfunc("build/scrollview-base/scrollview-base.js", "_flickFrame", 837); _yuitest_coverline("build/scrollview-base/scrollview-base.js", 839); var sv = this, axisAttr = flickAxis === DIM_X ? SCROLL_X : SCROLL_Y, bounds = sv._getBounds(), // Localize cached values bounce = sv._cBounce, bounceRange = sv._cBounceRange, deceleration = sv._cDeceleration, frameDuration = sv._cFrameDuration, // Calculate newVelocity = velocity * deceleration, newPosition = startPosition - (frameDuration * newVelocity), // Some convinience conditions min = flickAxis === DIM_X ? bounds.minScrollX : bounds.minScrollY, max = flickAxis === DIM_X ? bounds.maxScrollX : bounds.maxScrollY, belowMin = (newPosition < min), belowMax = (newPosition < max), aboveMin = (newPosition > min), aboveMax = (newPosition > max), belowMinRange = (newPosition < (min - bounceRange)), withinMinRange = (belowMin && (newPosition > (min - bounceRange))), withinMaxRange = (aboveMax && (newPosition < (max + bounceRange))), aboveMaxRange = (newPosition > (max + bounceRange)), tooSlow; // If we're within the range but outside min/max, dampen the velocity _yuitest_coverline("build/scrollview-base/scrollview-base.js", 867); if (withinMinRange || withinMaxRange) { _yuitest_coverline("build/scrollview-base/scrollview-base.js", 868); newVelocity *= bounce; } // Is the velocity too slow to bother? _yuitest_coverline("build/scrollview-base/scrollview-base.js", 872); tooSlow = (Math.abs(newVelocity).toFixed(4) < 0.015); // If the velocity is too slow or we're outside the range _yuitest_coverline("build/scrollview-base/scrollview-base.js", 875); if (tooSlow || belowMinRange || aboveMaxRange) { // Cancel and delete sv._flickAnim _yuitest_coverline("build/scrollview-base/scrollview-base.js", 877); if (sv._flickAnim) { _yuitest_coverline("build/scrollview-base/scrollview-base.js", 878); sv._cancelFlick(); } // If we're inside the scroll area, just end _yuitest_coverline("build/scrollview-base/scrollview-base.js", 882); if (aboveMin && belowMax) { _yuitest_coverline("build/scrollview-base/scrollview-base.js", 883); sv._onTransEnd(); } // We're outside the scroll area, so we need to snap back else { _yuitest_coverline("build/scrollview-base/scrollview-base.js", 888); sv._snapBack(); } } // Otherwise, animate to the next frame else { // @TODO: maybe use requestAnimationFrame instead _yuitest_coverline("build/scrollview-base/scrollview-base.js", 895); sv._flickAnim = Y.later(frameDuration, sv, '_flickFrame', [newVelocity, flickAxis, newPosition]); _yuitest_coverline("build/scrollview-base/scrollview-base.js", 896); sv.set(axisAttr, newPosition); } }, _cancelFlick: function () { _yuitest_coverfunc("build/scrollview-base/scrollview-base.js", "_cancelFlick", 900); _yuitest_coverline("build/scrollview-base/scrollview-base.js", 901); var sv = this; _yuitest_coverline("build/scrollview-base/scrollview-base.js", 903); if (sv._flickAnim) { // Cancel the flick (if it exists) _yuitest_coverline("build/scrollview-base/scrollview-base.js", 905); sv._flickAnim.cancel(); // Also delete it, otherwise _onGestureMoveStart will think we're still flicking _yuitest_coverline("build/scrollview-base/scrollview-base.js", 908); delete sv._flickAnim; } }, /** * Handle mousewheel events on the widget * * @method _mousewheel * @param e {Event.Facade} The mousewheel event facade * @private */ _mousewheel: function (e) { _yuitest_coverfunc("build/scrollview-base/scrollview-base.js", "_mousewheel", 920); _yuitest_coverline("build/scrollview-base/scrollview-base.js", 921); var sv = this, scrollY = sv.get(SCROLL_Y), bounds = sv._getBounds(), bb = sv._bb, scrollOffset = 10, // 10px isForward = (e.wheelDelta > 0), scrollToY = scrollY - ((isForward ? 1 : -1) * scrollOffset); _yuitest_coverline("build/scrollview-base/scrollview-base.js", 929); scrollToY = _constrain(scrollToY, bounds.minScrollY, bounds.maxScrollY); // Because Mousewheel events fire off 'document', every ScrollView widget will react // to any mousewheel anywhere on the page. This check will ensure that the mouse is currently // over this specific ScrollView. Also, only allow mousewheel scrolling on Y-axis, // becuase otherwise the 'prevent' will block page scrolling. _yuitest_coverline("build/scrollview-base/scrollview-base.js", 935); if (bb.contains(e.target) && sv._cAxis[DIM_Y]) { // Reset lastScrolledAmt _yuitest_coverline("build/scrollview-base/scrollview-base.js", 938); sv.lastScrolledAmt = 0; // Jump to the new offset _yuitest_coverline("build/scrollview-base/scrollview-base.js", 941); sv.set(SCROLL_Y, scrollToY); // if we have scrollbars plugin, update & set the flash timer on the scrollbar // @TODO: This probably shouldn't be in this module _yuitest_coverline("build/scrollview-base/scrollview-base.js", 945); if (sv.scrollbars) { // @TODO: The scrollbars should handle this themselves _yuitest_coverline("build/scrollview-base/scrollview-base.js", 947); sv.scrollbars._update(); _yuitest_coverline("build/scrollview-base/scrollview-base.js", 948); sv.scrollbars.flash(); // or just this // sv.scrollbars._hostDimensionsChange(); } // Fire the 'scrollEnd' event _yuitest_coverline("build/scrollview-base/scrollview-base.js", 954); sv._onTransEnd(); // prevent browser default behavior on mouse scroll _yuitest_coverline("build/scrollview-base/scrollview-base.js", 957); e.preventDefault(); } }, /** * Checks to see the current scrollX/scrollY position beyond the min/max boundary * * @method _isOutOfBounds * @param x {Number} [optional] The X position to check * @param y {Number} [optional] The Y position to check * @return {boolen} Whether the current X/Y position is out of bounds (true) or not (false) * @private */ _isOutOfBounds: function (x, y) { _yuitest_coverfunc("build/scrollview-base/scrollview-base.js", "_isOutOfBounds", 970); _yuitest_coverline("build/scrollview-base/scrollview-base.js", 971); var sv = this, svAxis = sv._cAxis, svAxisX = svAxis.x, svAxisY = svAxis.y, currentX = x || sv.get(SCROLL_X), currentY = y || sv.get(SCROLL_Y), bounds = sv._getBounds(), minX = bounds.minScrollX, minY = bounds.minScrollY, maxX = bounds.maxScrollX, maxY = bounds.maxScrollY; _yuitest_coverline("build/scrollview-base/scrollview-base.js", 983); return (svAxisX && (currentX < minX || currentX > maxX)) || (svAxisY && (currentY < minY || currentY > maxY)); }, /** * Bounces back * @TODO: Should be more generalized and support both X and Y detection * * @method _snapBack * @private */ _snapBack: function () { _yuitest_coverfunc("build/scrollview-base/scrollview-base.js", "_snapBack", 993); _yuitest_coverline("build/scrollview-base/scrollview-base.js", 994); var sv = this, currentX = sv.get(SCROLL_X), currentY = sv.get(SCROLL_Y), bounds = sv._getBounds(), minX = bounds.minScrollX, minY = bounds.minScrollY, maxX = bounds.maxScrollX, maxY = bounds.maxScrollY, newY = _constrain(currentY, minY, maxY), newX = _constrain(currentX, minX, maxX), duration = sv.get(SNAP_DURATION), easing = sv.get(SNAP_EASING); _yuitest_coverline("build/scrollview-base/scrollview-base.js", 1007); if (newX !== currentX) { _yuitest_coverline("build/scrollview-base/scrollview-base.js", 1008); sv.set(SCROLL_X, newX, {duration:duration, easing:easing}); } else {_yuitest_coverline("build/scrollview-base/scrollview-base.js", 1010); if (newY !== currentY) { _yuitest_coverline("build/scrollview-base/scrollview-base.js", 1011); sv.set(SCROLL_Y, newY, {duration:duration, easing:easing}); } else { _yuitest_coverline("build/scrollview-base/scrollview-base.js", 1014); sv._onTransEnd(); }} }, /** * After listener for changes to the scrollX or scrollY attribute * * @method _afterScrollChange * @param e {Event.Facade} The event facade * @protected */ _afterScrollChange: function (e) { _yuitest_coverfunc("build/scrollview-base/scrollview-base.js", "_afterScrollChange", 1025); _yuitest_coverline("build/scrollview-base/scrollview-base.js", 1026); if (e.src === ScrollView.UI_SRC) { _yuitest_coverline("build/scrollview-base/scrollview-base.js", 1027); return false; } _yuitest_coverline("build/scrollview-base/scrollview-base.js", 1030); var sv = this, duration = e.duration, easing = e.easing, val = e.newVal, scrollToArgs = []; // Set the scrolled value _yuitest_coverline("build/scrollview-base/scrollview-base.js", 1037); sv.lastScrolledAmt = sv.lastScrolledAmt + (e.newVal - e.prevVal); // Generate the array of args to pass to scrollTo() _yuitest_coverline("build/scrollview-base/scrollview-base.js", 1040); if (e.attrName === SCROLL_X) { _yuitest_coverline("build/scrollview-base/scrollview-base.js", 1041); scrollToArgs.push(val); _yuitest_coverline("build/scrollview-base/scrollview-base.js", 1042); scrollToArgs.push(sv.get(SCROLL_Y)); } else { _yuitest_coverline("build/scrollview-base/scrollview-base.js", 1045); scrollToArgs.push(sv.get(SCROLL_X)); _yuitest_coverline("build/scrollview-base/scrollview-base.js", 1046); scrollToArgs.push(val); } _yuitest_coverline("build/scrollview-base/scrollview-base.js", 1049); scrollToArgs.push(duration); _yuitest_coverline("build/scrollview-base/scrollview-base.js", 1050); scrollToArgs.push(easing); _yuitest_coverline("build/scrollview-base/scrollview-base.js", 1052); sv.scrollTo.apply(sv, scrollToArgs); }, /** * After listener for changes to the flick attribute * * @method _afterFlickChange * @param e {Event.Facade} The event facade * @protected */ _afterFlickChange: function (e) { _yuitest_coverfunc("build/scrollview-base/scrollview-base.js", "_afterFlickChange", 1062); _yuitest_coverline("build/scrollview-base/scrollview-base.js", 1063); this._bindFlick(e.newVal); }, /** * After listener for changes to the disabled attribute * * @method _afterDisabledChange * @param e {Event.Facade} The event facade * @protected */ _afterDisabledChange: function (e) { // Cache for performance - we check during move _yuitest_coverfunc("build/scrollview-base/scrollview-base.js", "_afterDisabledChange", 1073); _yuitest_coverline("build/scrollview-base/scrollview-base.js", 1075); this._cDisabled = e.newVal; }, /** * After listener for the axis attribute * * @method _afterAxisChange * @param e {Event.Facade} The event facade * @protected */ _afterAxisChange: function (e) { _yuitest_coverfunc("build/scrollview-base/scrollview-base.js", "_afterAxisChange", 1085); _yuitest_coverline("build/scrollview-base/scrollview-base.js", 1086); this._cAxis = e.newVal; }, /** * After listener for changes to the drag attribute * * @method _afterDragChange * @param e {Event.Facade} The event facade * @protected */ _afterDragChange: function (e) { _yuitest_coverfunc("build/scrollview-base/scrollview-base.js", "_afterDragChange", 1096); _yuitest_coverline("build/scrollview-base/scrollview-base.js", 1097); this._bindDrag(e.newVal); }, /** * After listener for the height or width attribute * * @method _afterDimChange * @param e {Event.Facade} The event facade * @protected */ _afterDimChange: function () { _yuitest_coverfunc("build/scrollview-base/scrollview-base.js", "_afterDimChange", 1107); _yuitest_coverline("build/scrollview-base/scrollview-base.js", 1108); this._uiDimensionsChange(); }, /** * After listener for scrollEnd, for cleanup * * @method _afterScrollEnd * @param e {Event.Facade} The event facade * @protected */ _afterScrollEnd: function () { _yuitest_coverfunc("build/scrollview-base/scrollview-base.js", "_afterScrollEnd", 1118); _yuitest_coverline("build/scrollview-base/scrollview-base.js", 1119); var sv = this; _yuitest_coverline("build/scrollview-base/scrollview-base.js", 1121); if (sv._flickAnim) { _yuitest_coverline("build/scrollview-base/scrollview-base.js", 1122); sv._cancelFlick(); } // Ideally this should be removed, but doing so causing some JS errors with fast swiping // because _gesture is being deleted after the previous one has been overwritten // delete sv._gesture; // TODO: Move to sv.prevGesture? }, /** * Setter for 'axis' attribute * * @method _axisSetter * @param val {Mixed} A string ('x', 'y', 'xy') to specify which axis/axes to allow scrolling on * @param name {String} The attribute name * @return {Object} An object to specify scrollability on the x & y axes * * @protected */ _axisSetter: function (val) { // Turn a string into an axis object _yuitest_coverfunc("build/scrollview-base/scrollview-base.js", "_axisSetter", 1140); _yuitest_coverline("build/scrollview-base/scrollview-base.js", 1143); if (Y.Lang.isString(val)) { _yuitest_coverline("build/scrollview-base/scrollview-base.js", 1144); return { x: val.match(/x/i) ? true : false, y: val.match(/y/i) ? true : false }; } }, /** * The scrollX, scrollY setter implementation * * @method _setScroll * @private * @param {Number} val * @param {String} dim * * @return {Number} The value */ _setScroll : function(val) { // Just ensure the widget is not disabled _yuitest_coverfunc("build/scrollview-base/scrollview-base.js", "_setScroll", 1161); _yuitest_coverline("build/scrollview-base/scrollview-base.js", 1164); if (this._cDisabled) { _yuitest_coverline("build/scrollview-base/scrollview-base.js", 1165); val = Y.Attribute.INVALID_VALUE; } _yuitest_coverline("build/scrollview-base/scrollview-base.js", 1168); return val; }, /** * Setter for the scrollX attribute * * @method _setScrollX * @param val {Number} The new scrollX value * @return {Number} The normalized value * @protected */ _setScrollX: function(val) { _yuitest_coverfunc("build/scrollview-base/scrollview-base.js", "_setScrollX", 1179); _yuitest_coverline("build/scrollview-base/scrollview-base.js", 1180); return this._setScroll(val, DIM_X); }, /** * Setter for the scrollY ATTR * * @method _setScrollY * @param val {Number} The new scrollY value * @return {Number} The normalized value * @protected */ _setScrollY: function(val) { _yuitest_coverfunc("build/scrollview-base/scrollview-base.js", "_setScrollY", 1191); _yuitest_coverline("build/scrollview-base/scrollview-base.js", 1192); return this._setScroll(val, DIM_Y); } // End prototype properties }, { // Static properties /** * The identity of the widget. * * @property NAME * @type String * @default 'scrollview' * @readOnly * @protected * @static */ NAME: 'scrollview', /** * Static property used to define the default attribute configuration of * the Widget. * * @property ATTRS * @type {Object} * @protected * @static */ ATTRS: { /** * Specifies ability to scroll on x, y, or x and y axis/axes. * * @attribute axis * @type String */ axis: { setter: '_axisSetter', writeOnce: 'initOnly' }, /** * The current scroll position in the x-axis * * @attribute scrollX * @type Number * @default 0 */ scrollX: { value: 0, setter: '_setScrollX' }, /** * The current scroll position in the y-axis * * @attribute scrollY * @type Number * @default 0 */ scrollY: { value: 0, setter: '_setScrollY' }, /** * Drag coefficent for inertial scrolling. The closer to 1 this * value is, the less friction during scrolling. * * @attribute deceleration * @default 0.93 */ deceleration: { value: 0.93 }, /** * Drag coefficient for intertial scrolling at the upper * and lower boundaries of the scrollview. Set to 0 to * disable "rubber-banding". * * @attribute bounce * @type Number * @default 0.1 */ bounce: { value: 0.1 }, /** * The minimum distance and/or velocity which define a flick. Can be set to false, * to disable flick support (note: drag support is enabled/disabled separately) * * @attribute flick * @type Object * @default Object with properties minDistance = 10, minVelocity = 0.3. */ flick: { value: { minDistance: 10, minVelocity: 0.3 } }, /** * Enable/Disable dragging the ScrollView content (note: flick support is enabled/disabled separately) * @attribute drag * @type boolean * @default true */ drag: { value: true }, /** * The default duration to use when animating the bounce snap back. * * @attribute snapDuration * @type Number * @default 400 */ snapDuration: { value: 400 }, /** * The default easing to use when animating the bounce snap back. * * @attribute snapEasing * @type String * @default 'ease-out' */ snapEasing: { value: 'ease-out' }, /** * The default easing used when animating the flick * * @attribute easing * @type String * @default 'cubic-bezier(0, 0.1, 0, 1.0)' */ easing: { value: 'cubic-bezier(0, 0.1, 0, 1.0)' }, /** * The interval (ms) used when animating the flick for JS-timer animations * * @attribute frameDuration * @type Number * @default 15 */ frameDuration: { value: 15 }, /** * The default bounce distance in pixels * * @attribute bounceRange * @type Number * @default 150 */ bounceRange: { value: 150 } }, /** * List of class names used in the scrollview's DOM * * @property CLASS_NAMES * @type Object * @static */ CLASS_NAMES: CLASS_NAMES, /** * Flag used to source property changes initiated from the DOM * * @property UI_SRC * @type String * @static * @default 'ui' */ UI_SRC: UI, /** * Object map of style property names used to set transition properties. * Defaults to the vendor prefix established by the Transition module. * The configured property names are `_TRANSITION.DURATION` (e.g. "WebkitTransitionDuration") and * `_TRANSITION.PROPERTY (e.g. "WebkitTransitionProperty"). * * @property _TRANSITION * @private */ _TRANSITION: { DURATION: (vendorPrefix ? vendorPrefix + 'TransitionDuration' : 'transitionDuration'), PROPERTY: (vendorPrefix ? vendorPrefix + 'TransitionProperty' : 'transitionProperty') }, /** * The default bounce distance in pixels * * @property BOUNCE_RANGE * @type Number * @static * @default false * @deprecated (in 3.7.0) */ BOUNCE_RANGE: false, /** * The interval (ms) used when animating the flick * * @property FRAME_STEP * @type Number * @static * @default false * @deprecated (in 3.7.0) */ FRAME_STEP: false, /** * The default easing used when animating the flick * * @property EASING * @type String * @static * @default false * @deprecated (in 3.7.0) */ EASING: false, /** * The default easing to use when animating the bounce snap back. * * @property SNAP_EASING * @type String * @static * @default false * @deprecated (in 3.7.0) */ SNAP_EASING: false, /** * The default duration to use when animating the bounce snap back. * * @property SNAP_DURATION * @type Number * @static * @default false * @deprecated (in 3.7.0) */ SNAP_DURATION: false // End static properties }); }, '@VERSION@', {"requires": ["widget", "event-gestures", "event-mousewheel", "transition"], "skinnable": true});
SearchBar.js
jtthrillson/react-native-search-bar
var NativeModules, PropTypes, RNSearchBar, React, SearchBar; React = require('react-native'); RNSearchBar = React.requireNativeComponent('RNSearchBar', null); PropTypes = React.PropTypes; NativeModules = React.NativeModules; SearchBar = React.createClass({ propTypes: { placeholder: PropTypes.string, text: PropTypes.string, barTintColor: PropTypes.string, tintColor: PropTypes.string, cancelButtonColor: PropTypes.string, textFieldBackgroundColor: PropTypes.string, showsCancelButton: PropTypes.bool, onChange: PropTypes.func, onChangeText: PropTypes.func, onFocus: PropTypes.func, onSearchButtonPress: PropTypes.func, onCancelButtonPress: PropTypes.func, hideBackground: PropTypes.bool }, _onChange: function(e) { var base, base1; if (typeof (base = this.props).onChange === "function") { base.onChange(e); } return typeof (base1 = this.props).onChangeText === "function" ? base1.onChangeText(e.nativeEvent.text) : void 0; }, _onPress: function(e) { var base, base1, button; button = e.nativeEvent.button; if (button === 'search') { return typeof (base = this.props).onSearchButtonPress === "function" ? base.onSearchButtonPress(e.nativeEvent.searchText) : void 0; } else if (button === 'cancel') { return typeof (base1 = this.props).onCancelButtonPress === "function" ? base1.onCancelButtonPress() : void 0; } }, render: function() { return <RNSearchBar style={{height: NativeModules.RNSearchBarManager.ComponentHeight}} onChange={this._onChange} onPress={this._onPress} {...this.props} />; } }); module.exports = SearchBar;
src/routes/terms/Terms.js
zuban/edhunter
/** * Created by sergeyzubov on 11/08/2017. */ import React from 'react'; import PropTypes from 'prop-types'; import withStyles from 'isomorphic-style-loader/lib/withStyles'; import s from './Styles.css'; import Page from '../../components/Page'; import terms from './terms.md'; import { Container, Row, Col } from 'reactstrap'; class Terms extends React.Component { static propTypes = { title: PropTypes.string.isRequired, }; render() { return ( <div className={s.root}> <Container className={s.container}> <Row> <Col> <Page {...terms} /> </Col> </Row> </Container> </div> ); } } export default withStyles(s)(Terms);
index.js
mikah1337/null-terminator
import 'babel-polyfill'; // Only use once, in this entry file import React from 'react'; import ReactDOM from 'react-dom'; import Top_Bar from '../scripts/Top_Bar/Top_Bar'; import Main_Content from '../scripts/Main_Content/Main_Content'; //var url = window.location.href; //http://localhost:8080/src/dir/assign2/index.html /* testing a change testinga second change testing another change and yet another change making a change under LOGIN screen.width screen.height screen.availWidth screen.availHeight screen.colorDepth screen.pixelDepth */ var width = window.screen.width; var height = window.screen.height; var availHeight = window.screen.availHeight; var availWidth = window.screen.availWidth; var colorDepth = window.screen.colorDepth; var pixelDepth = window.screen.pixelDepth; const App_Container = () => { var screenProps = { width: window.screen.width, height: window.screen.height, availHeight: window.screen.availHeight, availWidth: window.screen.availWidth, colorDepth: window.screen.colorDepth, pixelDepth: window.screen.pixelDepth } return ( <div className="app_container"> <Top_Bar /> <Main_Content {...screenProps} /> </div> ) } ReactDOM.render( <App_Container />, document.getElementById('root') );
anubis/ui/components/scratchpad/ToolbarComponent.js
KawashiroNitori/Anubis
import React from 'react'; import classNames from 'classnames'; export default function ToolbarComponent(props) { const { className, children, ...rest, } = props; const cn = classNames(className, 'scratchpad__toolbar flex-row flex-cross-center'); return ( <div {...rest} className={cn}>{children}</div> ); } ToolbarComponent.propTypes = { className: React.PropTypes.string, children: React.PropTypes.node, }; export function ToolbarButtonComponent(props) { const { activated, disabled, onClick, className, children, ...rest, } = props; const cn = classNames(className, 'scratchpad__toolbar__item scratchpad__toolbar__button', { activated, disabled, enabled: !disabled, }); return ( <button {...rest} tabIndex="-1" className={cn} onClick={() => !disabled && onClick && onClick()} > <div>{children}</div> </button> ); } ToolbarButtonComponent.propTypes = { activated: React.PropTypes.bool, disabled: React.PropTypes.bool, onClick: React.PropTypes.func, className: React.PropTypes.string, children: React.PropTypes.node, }; ToolbarButtonComponent.defaultProps = { activated: false, disabled: false, }; export function ToolbarSplitComponent(props) { const { className, ...rest, } = props; const cn = classNames(className, 'scratchpad__toolbar__item scratchpad__toolbar__split'); return ( <div {...rest} className={cn} /> ); } ToolbarSplitComponent.propTypes = { className: React.PropTypes.string, }; export function ToolbarItemComponent(props) { const { className, children, ...rest, } = props; const cn = classNames(className, 'scratchpad__toolbar__item'); return ( <div {...rest} className={cn}>{children}</div> ); } ToolbarItemComponent.propTypes = { className: React.PropTypes.string, children: React.PropTypes.node, };
src/svg-icons/editor/show-chart.js
kittyjumbalaya/material-components-web
import React from 'react'; import pure from 'recompose/pure'; import SvgIcon from '../../SvgIcon'; let EditorShowChart = (props) => ( <SvgIcon {...props}> <path d="M3.5 18.49l6-6.01 4 4L22 6.92l-1.41-1.41-7.09 7.97-4-4L2 16.99z"/> </SvgIcon> ); EditorShowChart = pure(EditorShowChart); EditorShowChart.displayName = 'EditorShowChart'; EditorShowChart.muiName = 'SvgIcon'; export default EditorShowChart;
admin/media/js/jquery.js
nurulimamnotes/toko-online
/*! jQuery v1.6.3 http://jquery.com/ | http://jquery.org/license */ (function(a,b){function cu(a){return f.isWindow(a)?a:a.nodeType===9?a.defaultView||a.parentWindow:!1}function cr(a){if(!cg[a]){var b=c.body,d=f("<"+a+">").appendTo(b),e=d.css("display");d.remove();if(e==="none"||e===""){ch||(ch=c.createElement("iframe"),ch.frameBorder=ch.width=ch.height=0),b.appendChild(ch);if(!ci||!ch.createElement)ci=(ch.contentWindow||ch.contentDocument).document,ci.write((c.compatMode==="CSS1Compat"?"<!doctype html>":"")+"<html><body>"),ci.close();d=ci.createElement(a),ci.body.appendChild(d),e=f.css(d,"display"),b.removeChild(ch)}cg[a]=e}return cg[a]}function cq(a,b){var c={};f.each(cm.concat.apply([],cm.slice(0,b)),function(){c[this]=a});return c}function cp(){cn=b}function co(){setTimeout(cp,0);return cn=f.now()}function cf(){try{return new a.ActiveXObject("Microsoft.XMLHTTP")}catch(b){}}function ce(){try{return new a.XMLHttpRequest}catch(b){}}function b$(a,c){a.dataFilter&&(c=a.dataFilter(c,a.dataType));var d=a.dataTypes,e={},g,h,i=d.length,j,k=d[0],l,m,n,o,p;for(g=1;g<i;g++){if(g===1)for(h in a.converters)typeof h=="string"&&(e[h.toLowerCase()]=a.converters[h]);l=k,k=d[g];if(k==="*")k=l;else if(l!=="*"&&l!==k){m=l+" "+k,n=e[m]||e["* "+k];if(!n){p=b;for(o in e){j=o.split(" ");if(j[0]===l||j[0]==="*"){p=e[j[1]+" "+k];if(p){o=e[o],o===!0?n=p:p===!0&&(n=o);break}}}}!n&&!p&&f.error("No conversion from "+m.replace(" "," to ")),n!==!0&&(c=n?n(c):p(o(c)))}}return c}function bZ(a,c,d){var e=a.contents,f=a.dataTypes,g=a.responseFields,h,i,j,k;for(i in g)i in d&&(c[g[i]]=d[i]);while(f[0]==="*")f.shift(),h===b&&(h=a.mimeType||c.getResponseHeader("content-type"));if(h)for(i in e)if(e[i]&&e[i].test(h)){f.unshift(i);break}if(f[0]in d)j=f[0];else{for(i in d){if(!f[0]||a.converters[i+" "+f[0]]){j=i;break}k||(k=i)}j=j||k}if(j){j!==f[0]&&f.unshift(j);return d[j]}}function bY(a,b,c,d){if(f.isArray(b))f.each(b,function(b,e){c||bA.test(a)?d(a,e):bY(a+"["+(typeof e=="object"||f.isArray(e)?b:"")+"]",e,c,d)});else if(!c&&b!=null&&typeof b=="object")for(var e in b)bY(a+"["+e+"]",b[e],c,d);else d(a,b)}function bX(a,c){var d,e,g=f.ajaxSettings.flatOptions||{};for(d in c)c[d]!==b&&((g[d]?a:e||(e={}))[d]=c[d]);e&&f.extend(!0,a,e)}function bW(a,c,d,e,f,g){f=f||c.dataTypes[0],g=g||{},g[f]=!0;var h=a[f],i=0,j=h?h.length:0,k=a===bP,l;for(;i<j&&(k||!l);i++)l=h[i](c,d,e),typeof l=="string"&&(!k||g[l]?l=b:(c.dataTypes.unshift(l),l=bW(a,c,d,e,l,g)));(k||!l)&&!g["*"]&&(l=bW(a,c,d,e,"*",g));return l}function bV(a){return function(b,c){typeof b!="string"&&(c=b,b="*");if(f.isFunction(c)){var d=b.toLowerCase().split(bL),e=0,g=d.length,h,i,j;for(;e<g;e++)h=d[e],j=/^\+/.test(h),j&&(h=h.substr(1)||"*"),i=a[h]=a[h]||[],i[j?"unshift":"push"](c)}}}function by(a,b,c){var d=b==="width"?a.offsetWidth:a.offsetHeight,e=b==="width"?bt:bu;if(d>0){c!=="border"&&f.each(e,function(){c||(d-=parseFloat(f.css(a,"padding"+this))||0),c==="margin"?d+=parseFloat(f.css(a,c+this))||0:d-=parseFloat(f.css(a,"border"+this+"Width"))||0});return d+"px"}d=bv(a,b,b);if(d<0||d==null)d=a.style[b]||0;d=parseFloat(d)||0,c&&f.each(e,function(){d+=parseFloat(f.css(a,"padding"+this))||0,c!=="padding"&&(d+=parseFloat(f.css(a,"border"+this+"Width"))||0),c==="margin"&&(d+=parseFloat(f.css(a,c+this))||0)});return d+"px"}function bl(a,b){b.src?f.ajax({url:b.src,async:!1,dataType:"script"}):f.globalEval((b.text||b.textContent||b.innerHTML||"").replace(bd,"/*$0*/")),b.parentNode&&b.parentNode.removeChild(b)}function bk(a){f.nodeName(a,"input")?bj(a):"getElementsByTagName"in a&&f.grep(a.getElementsByTagName("input"),bj)}function bj(a){if(a.type==="checkbox"||a.type==="radio")a.defaultChecked=a.checked}function bi(a){return"getElementsByTagName"in a?a.getElementsByTagName("*"):"querySelectorAll"in a?a.querySelectorAll("*"):[]}function bh(a,b){var c;if(b.nodeType===1){b.clearAttributes&&b.clearAttributes(),b.mergeAttributes&&b.mergeAttributes(a),c=b.nodeName.toLowerCase();if(c==="object")b.outerHTML=a.outerHTML;else if(c!=="input"||a.type!=="checkbox"&&a.type!=="radio"){if(c==="option")b.selected=a.defaultSelected;else if(c==="input"||c==="textarea")b.defaultValue=a.defaultValue}else a.checked&&(b.defaultChecked=b.checked=a.checked),b.value!==a.value&&(b.value=a.value);b.removeAttribute(f.expando)}}function bg(a,b){if(b.nodeType===1&&!!f.hasData(a)){var c=f.expando,d=f.data(a),e=f.data(b,d);if(d=d[c]){var g=d.events;e=e[c]=f.extend({},d);if(g){delete e.handle,e.events={};for(var h in g)for(var i=0,j=g[h].length;i<j;i++)f.event.add(b,h+(g[h][i].namespace?".":"")+g[h][i].namespace,g[h][i],g[h][i].data)}}}}function bf(a,b){return f.nodeName(a,"table")?a.getElementsByTagName("tbody")[0]||a.appendChild(a.ownerDocument.createElement("tbody")):a}function V(a,b,c){b=b||0;if(f.isFunction(b))return f.grep(a,function(a,d){var e=!!b.call(a,d,a);return e===c});if(b.nodeType)return f.grep(a,function(a,d){return a===b===c});if(typeof b=="string"){var d=f.grep(a,function(a){return a.nodeType===1});if(Q.test(b))return f.filter(b,d,!c);b=f.filter(b,d)}return f.grep(a,function(a,d){return f.inArray(a,b)>=0===c})}function U(a){return!a||!a.parentNode||a.parentNode.nodeType===11}function M(a,b){return(a&&a!=="*"?a+".":"")+b.replace(y,"`").replace(z,"&")}function L(a){var b,c,d,e,g,h,i,j,k,l,m,n,o,p=[],q=[],r=f._data(this,"events");if(!(a.liveFired===this||!r||!r.live||a.target.disabled||a.button&&a.type==="click")){a.namespace&&(n=new RegExp("(^|\\.)"+a.namespace.split(".").join("\\.(?:.*\\.)?")+"(\\.|$)")),a.liveFired=this;var s=r.live.slice(0);for(i=0;i<s.length;i++)g=s[i],g.origType.replace(w,"")===a.type?q.push(g.selector):s.splice(i--,1);e=f(a.target).closest(q,a.currentTarget);for(j=0,k=e.length;j<k;j++){m=e[j];for(i=0;i<s.length;i++){g=s[i];if(m.selector===g.selector&&(!n||n.test(g.namespace))&&!m.elem.disabled){h=m.elem,d=null;if(g.preType==="mouseenter"||g.preType==="mouseleave")a.type=g.preType,d=f(a.relatedTarget).closest(g.selector)[0],d&&f.contains(h,d)&&(d=h);(!d||d!==h)&&p.push({elem:h,handleObj:g,level:m.level})}}}for(j=0,k=p.length;j<k;j++){e=p[j];if(c&&e.level>c)break;a.currentTarget=e.elem,a.data=e.handleObj.data,a.handleObj=e.handleObj,o=e.handleObj.origHandler.apply(e.elem,arguments);if(o===!1||a.isPropagationStopped()){c=e.level,o===!1&&(b=!1);if(a.isImmediatePropagationStopped())break}}return b}}function J(a,c,d){var e=f.extend({},d[0]);e.type=a,e.originalEvent={},e.liveFired=b,f.event.handle.call(c,e),e.isDefaultPrevented()&&d[0].preventDefault()}function D(){return!0}function C(){return!1}function m(a,c,d){var e=c+"defer",g=c+"queue",h=c+"mark",i=f.data(a,e,b,!0);i&&(d==="queue"||!f.data(a,g,b,!0))&&(d==="mark"||!f.data(a,h,b,!0))&&setTimeout(function(){!f.data(a,g,b,!0)&&!f.data(a,h,b,!0)&&(f.removeData(a,e,!0),i.resolve())},0)}function l(a){for(var b in a)if(b!=="toJSON")return!1;return!0}function k(a,c,d){if(d===b&&a.nodeType===1){var e="data-"+c.replace(j,"$1-$2").toLowerCase();d=a.getAttribute(e);if(typeof d=="string"){try{d=d==="true"?!0:d==="false"?!1:d==="null"?null:f.isNaN(d)?i.test(d)?f.parseJSON(d):d:parseFloat(d)}catch(g){}f.data(a,c,d)}else d=b}return d}var c=a.document,d=a.navigator,e=a.location,f=function(){function K(){if(!e.isReady){try{c.documentElement.doScroll("left")}catch(a){setTimeout(K,1);return}e.ready()}}var e=function(a,b){return new e.fn.init(a,b,h)},f=a.jQuery,g=a.$,h,i=/^(?:[^#<]*(<[\w\W]+>)[^>]*$|#([\w\-]*)$)/,j=/\S/,k=/^\s+/,l=/\s+$/,m=/\d/,n=/^<(\w+)\s*\/?>(?:<\/\1>)?$/,o=/^[\],:{}\s]*$/,p=/\\(?:["\\\/bfnrt]|u[0-9a-fA-F]{4})/g,q=/"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g,r=/(?:^|:|,)(?:\s*\[)+/g,s=/(webkit)[ \/]([\w.]+)/,t=/(opera)(?:.*version)?[ \/]([\w.]+)/,u=/(msie) ([\w.]+)/,v=/(mozilla)(?:.*? rv:([\w.]+))?/,w=/-([a-z]|[0-9])/ig,x=/^-ms-/,y=function(a,b){return(b+"").toUpperCase()},z=d.userAgent,A,B,C,D=Object.prototype.toString,E=Object.prototype.hasOwnProperty,F=Array.prototype.push,G=Array.prototype.slice,H=String.prototype.trim,I=Array.prototype.indexOf,J={};e.fn=e.prototype={constructor:e,init:function(a,d,f){var g,h,j,k;if(!a)return this;if(a.nodeType){this.context=this[0]=a,this.length=1;return this}if(a==="body"&&!d&&c.body){this.context=c,this[0]=c.body,this.selector=a,this.length=1;return this}if(typeof a=="string"){a.charAt(0)!=="<"||a.charAt(a.length-1)!==">"||a.length<3?g=i.exec(a):g=[null,a,null];if(g&&(g[1]||!d)){if(g[1]){d=d instanceof e?d[0]:d,k=d?d.ownerDocument||d:c,j=n.exec(a),j?e.isPlainObject(d)?(a=[c.createElement(j[1])],e.fn.attr.call(a,d,!0)):a=[k.createElement(j[1])]:(j=e.buildFragment([g[1]],[k]),a=(j.cacheable?e.clone(j.fragment):j.fragment).childNodes);return e.merge(this,a)}h=c.getElementById(g[2]);if(h&&h.parentNode){if(h.id!==g[2])return f.find(a);this.length=1,this[0]=h}this.context=c,this.selector=a;return this}return!d||d.jquery?(d||f).find(a):this.constructor(d).find(a)}if(e.isFunction(a))return f.ready(a);a.selector!==b&&(this.selector=a.selector,this.context=a.context);return e.makeArray(a,this)},selector:"",jquery:"1.6.3",length:0,size:function(){return this.length},toArray:function(){return G.call(this,0)},get:function(a){return a==null?this.toArray():a<0?this[this.length+a]:this[a]},pushStack:function(a,b,c){var d=this.constructor();e.isArray(a)?F.apply(d,a):e.merge(d,a),d.prevObject=this,d.context=this.context,b==="find"?d.selector=this.selector+(this.selector?" ":"")+c:b&&(d.selector=this.selector+"."+b+"("+c+")");return d},each:function(a,b){return e.each(this,a,b)},ready:function(a){e.bindReady(),B.done(a);return this},eq:function(a){return a===-1?this.slice(a):this.slice(a,+a+1)},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},slice:function(){return this.pushStack(G.apply(this,arguments),"slice",G.call(arguments).join(","))},map:function(a){return this.pushStack(e.map(this,function(b,c){return a.call(b,c,b)}))},end:function(){return this.prevObject||this.constructor(null)},push:F,sort:[].sort,splice:[].splice},e.fn.init.prototype=e.fn,e.extend=e.fn.extend=function(){var a,c,d,f,g,h,i=arguments[0]||{},j=1,k=arguments.length,l=!1;typeof i=="boolean"&&(l=i,i=arguments[1]||{},j=2),typeof i!="object"&&!e.isFunction(i)&&(i={}),k===j&&(i=this,--j);for(;j<k;j++)if((a=arguments[j])!=null)for(c in a){d=i[c],f=a[c];if(i===f)continue;l&&f&&(e.isPlainObject(f)||(g=e.isArray(f)))?(g?(g=!1,h=d&&e.isArray(d)?d:[]):h=d&&e.isPlainObject(d)?d:{},i[c]=e.extend(l,h,f)):f!==b&&(i[c]=f)}return i},e.extend({noConflict:function(b){a.$===e&&(a.$=g),b&&a.jQuery===e&&(a.jQuery=f);return e},isReady:!1,readyWait:1,holdReady:function(a){a?e.readyWait++:e.ready(!0)},ready:function(a){if(a===!0&&!--e.readyWait||a!==!0&&!e.isReady){if(!c.body)return setTimeout(e.ready,1);e.isReady=!0;if(a!==!0&&--e.readyWait>0)return;B.resolveWith(c,[e]),e.fn.trigger&&e(c).trigger("ready").unbind("ready")}},bindReady:function(){if(!B){B=e._Deferred();if(c.readyState==="complete")return setTimeout(e.ready,1);if(c.addEventListener)c.addEventListener("DOMContentLoaded",C,!1),a.addEventListener("load",e.ready,!1);else if(c.attachEvent){c.attachEvent("onreadystatechange",C),a.attachEvent("onload",e.ready);var b=!1;try{b=a.frameElement==null}catch(d){}c.documentElement.doScroll&&b&&K()}}},isFunction:function(a){return e.type(a)==="function"},isArray:Array.isArray||function(a){return e.type(a)==="array"},isWindow:function(a){return a&&typeof a=="object"&&"setInterval"in a},isNaN:function(a){return a==null||!m.test(a)||isNaN(a)},type:function(a){return a==null?String(a):J[D.call(a)]||"object"},isPlainObject:function(a){if(!a||e.type(a)!=="object"||a.nodeType||e.isWindow(a))return!1;try{if(a.constructor&&!E.call(a,"constructor")&&!E.call(a.constructor.prototype,"isPrototypeOf"))return!1}catch(c){return!1}var d;for(d in a);return d===b||E.call(a,d)},isEmptyObject:function(a){for(var b in a)return!1;return!0},error:function(a){throw a},parseJSON:function(b){if(typeof b!="string"||!b)return null;b=e.trim(b);if(a.JSON&&a.JSON.parse)return a.JSON.parse(b);if(o.test(b.replace(p,"@").replace(q,"]").replace(r,"")))return(new Function("return "+b))();e.error("Invalid JSON: "+b)},parseXML:function(c){var d,f;try{a.DOMParser?(f=new DOMParser,d=f.parseFromString(c,"text/xml")):(d=new ActiveXObject("Microsoft.XMLDOM"),d.async="false",d.loadXML(c))}catch(g){d=b}(!d||!d.documentElement||d.getElementsByTagName("parsererror").length)&&e.error("Invalid XML: "+c);return d},noop:function(){},globalEval:function(b){b&&j.test(b)&&(a.execScript||function(b){a.eval.call(a,b)})(b)},camelCase:function(a){return a.replace(x,"ms-").replace(w,y)},nodeName:function(a,b){return a.nodeName&&a.nodeName.toUpperCase()===b.toUpperCase()},each:function(a,c,d){var f,g=0,h=a.length,i=h===b||e.isFunction(a);if(d){if(i){for(f in a)if(c.apply(a[f],d)===!1)break}else for(;g<h;)if(c.apply(a[g++],d)===!1)break}else if(i){for(f in a)if(c.call(a[f],f,a[f])===!1)break}else for(;g<h;)if(c.call(a[g],g,a[g++])===!1)break;return a},trim:H?function(a){return a==null?"":H.call(a)}:function(a){return a==null?"":(a+"").replace(k,"").replace(l,"")},makeArray:function(a,b){var c=b||[];if(a!=null){var d=e.type(a);a.length==null||d==="string"||d==="function"||d==="regexp"||e.isWindow(a)?F.call(c,a):e.merge(c,a)}return c},inArray:function(a,b){if(!b)return-1;if(I)return I.call(b,a);for(var c=0,d=b.length;c<d;c++)if(b[c]===a)return c;return-1},merge:function(a,c){var d=a.length,e=0;if(typeof c.length=="number")for(var f=c.length;e<f;e++)a[d++]=c[e];else while(c[e]!==b)a[d++]=c[e++];a.length=d;return a},grep:function(a,b,c){var d=[],e;c=!!c;for(var f=0,g=a.length;f<g;f++)e=!!b(a[f],f),c!==e&&d.push(a[f]);return d},map:function(a,c,d){var f,g,h=[],i=0,j=a.length,k=a instanceof e||j!==b&&typeof j=="number"&&(j>0&&a[0]&&a[j-1]||j===0||e.isArray(a));if(k)for(;i<j;i++)f=c(a[i],i,d),f!=null&&(h[h.length]=f);else for(g in a)f=c(a[g],g,d),f!=null&&(h[h.length]=f);return h.concat.apply([],h)},guid:1,proxy:function(a,c){if(typeof c=="string"){var d=a[c];c=a,a=d}if(!e.isFunction(a))return b;var f=G.call(arguments,2),g=function(){return a.apply(c,f.concat(G.call(arguments)))};g.guid=a.guid=a.guid||g.guid||e.guid++;return g},access:function(a,c,d,f,g,h){var i=a.length;if(typeof c=="object"){for(var j in c)e.access(a,j,c[j],f,g,d);return a}if(d!==b){f=!h&&f&&e.isFunction(d);for(var k=0;k<i;k++)g(a[k],c,f?d.call(a[k],k,g(a[k],c)):d,h);return a}return i?g(a[0],c):b},now:function(){return(new Date).getTime()},uaMatch:function(a){a=a.toLowerCase();var b=s.exec(a)||t.exec(a)||u.exec(a)||a.indexOf("compatible")<0&&v.exec(a)||[];return{browser:b[1]||"",version:b[2]||"0"}},sub:function(){function a(b,c){return new a.fn.init(b,c)}e.extend(!0,a,this),a.superclass=this,a.fn=a.prototype=this(),a.fn.constructor=a,a.sub=this.sub,a.fn.init=function(d,f){f&&f instanceof e&&!(f instanceof a)&&(f=a(f));return e.fn.init.call(this,d,f,b)},a.fn.init.prototype=a.fn;var b=a(c);return a},browser:{}}),e.each("Boolean Number String Function Array Date RegExp Object".split(" "),function(a,b){J["[object "+b+"]"]=b.toLowerCase()}),A=e.uaMatch(z),A.browser&&(e.browser[A.browser]=!0,e.browser.version=A.version),e.browser.webkit&&(e.browser.safari=!0),j.test(" ")&&(k=/^[\s\xA0]+/,l=/[\s\xA0]+$/),h=e(c),c.addEventListener?C=function(){c.removeEventListener("DOMContentLoaded",C,!1),e.ready()}:c.attachEvent&&(C=function(){c.readyState==="complete"&&(c.detachEvent("onreadystatechange",C),e.ready())});return e}(),g="done fail isResolved isRejected promise then always pipe".split(" "),h=[].slice;f.extend({_Deferred:function(){var a=[],b,c,d,e={done:function(){if(!d){var c=arguments,g,h,i,j,k;b&&(k=b,b=0);for(g=0,h=c.length;g<h;g++)i=c[g],j=f.type(i),j==="array"?e.done.apply(e,i):j==="function"&&a.push(i);k&&e.resolveWith(k[0],k[1])}return this},resolveWith:function(e,f){if(!d&&!b&&!c){f=f||[],c=1;try{while(a[0])a.shift().apply(e,f)}finally{b=[e,f],c=0}}return this},resolve:function(){e.resolveWith(this,arguments);return this},isResolved:function(){return!!c||!!b},cancel:function(){d=1,a=[];return this}};return e},Deferred:function(a){var b=f._Deferred(),c=f._Deferred(),d;f.extend(b,{then:function(a,c){b.done(a).fail(c);return this},always:function(){return b.done.apply(b,arguments).fail.apply(this,arguments)},fail:c.done,rejectWith:c.resolveWith,reject:c.resolve,isRejected:c.isResolved,pipe:function(a,c){return f.Deferred(function(d){f.each({done:[a,"resolve"],fail:[c,"reject"]},function(a,c){var e=c[0],g=c[1],h;f.isFunction(e)?b[a](function(){h=e.apply(this,arguments),h&&f.isFunction(h.promise)?h.promise().then(d.resolve,d.reject):d[g+"With"](this===b?d:this,[h])}):b[a](d[g])})}).promise()},promise:function(a){if(a==null){if(d)return d;d=a={}}var c=g.length;while(c--)a[g[c]]=b[g[c]];return a}}),b.done(c.cancel).fail(b.cancel),delete b.cancel,a&&a.call(b,b);return b},when:function(a){function i(a){return function(c){b[a]=arguments.length>1?h.call(arguments,0):c,--e||g.resolveWith(g,h.call(b,0))}}var b=arguments,c=0,d=b.length,e=d,g=d<=1&&a&&f.isFunction(a.promise)?a:f.Deferred();if(d>1){for(;c<d;c++)b[c]&&f.isFunction(b[c].promise)?b[c].promise().then(i(c),g.reject):--e;e||g.resolveWith(g,b)}else g!==a&&g.resolveWith(g,d?[a]:[]);return g.promise()}}),f.support=function(){var a=c.createElement("div"),b=c.documentElement,d,e,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u;a.setAttribute("className","t"),a.innerHTML=" <link><table></table><a href='/a' style='top:1px;float:left;opacity:.55;'>a</a><input type=checkbox>",d=a.getElementsByTagName("*"),e=a.getElementsByTagName("a")[0];if(!d||!d.length||!e)return{};g=c.createElement("select"),h=g.appendChild(c.createElement("option")),i=a.getElementsByTagName("input")[0],k={leadingWhitespace:a.firstChild.nodeType===3,tbody:!a.getElementsByTagName("tbody").length,htmlSerialize:!!a.getElementsByTagName("link").length,style:/top/.test(e.getAttribute("style")),hrefNormalized:e.getAttribute("href")==="/a",opacity:/^0.55$/.test(e.style.opacity),cssFloat:!!e.style.cssFloat,checkOn:i.value==="on",optSelected:h.selected,getSetAttribute:a.className!=="t",submitBubbles:!0,changeBubbles:!0,focusinBubbles:!1,deleteExpando:!0,noCloneEvent:!0,inlineBlockNeedsLayout:!1,shrinkWrapBlocks:!1,reliableMarginRight:!0},i.checked=!0,k.noCloneChecked=i.cloneNode(!0).checked,g.disabled=!0,k.optDisabled=!h.disabled;try{delete a.test}catch(v){k.deleteExpando=!1}!a.addEventListener&&a.attachEvent&&a.fireEvent&&(a.attachEvent("onclick",function(){k.noCloneEvent=!1}),a.cloneNode(!0).fireEvent("onclick")),i=c.createElement("input"),i.value="t",i.setAttribute("type","radio"),k.radioValue=i.value==="t",i.setAttribute("checked","checked"),a.appendChild(i),l=c.createDocumentFragment(),l.appendChild(a.firstChild),k.checkClone=l.cloneNode(!0).cloneNode(!0).lastChild.checked,a.innerHTML="",a.style.width=a.style.paddingLeft="1px",m=c.getElementsByTagName("body")[0],o=c.createElement(m?"div":"body"),p={visibility:"hidden",width:0,height:0,border:0,margin:0,background:"none"},m&&f.extend(p,{position:"absolute",left:"-1000px",top:"-1000px"});for(t in p)o.style[t]=p[t];o.appendChild(a),n=m||b,n.insertBefore(o,n.firstChild),k.appendChecked=i.checked,k.boxModel=a.offsetWidth===2,"zoom"in a.style&&(a.style.display="inline",a.style.zoom=1,k.inlineBlockNeedsLayout=a.offsetWidth===2,a.style.display="",a.innerHTML="<div style='width:4px;'></div>",k.shrinkWrapBlocks=a.offsetWidth!==2),a.innerHTML="<table><tr><td style='padding:0;border:0;display:none'></td><td>t</td></tr></table>",q=a.getElementsByTagName("td"),u=q[0].offsetHeight===0,q[0].style.display="",q[1].style.display="none",k.reliableHiddenOffsets=u&&q[0].offsetHeight===0,a.innerHTML="",c.defaultView&&c.defaultView.getComputedStyle&&(j=c.createElement("div"),j.style.width="0",j.style.marginRight="0",a.appendChild(j),k.reliableMarginRight=(parseInt((c.defaultView.getComputedStyle(j,null)||{marginRight:0}).marginRight,10)||0)===0),o.innerHTML="",n.removeChild(o);if(a.attachEvent)for(t in{submit:1,change:1,focusin:1})s="on"+t,u=s in a,u||(a.setAttribute(s,"return;"),u=typeof a[s]=="function"),k[t+"Bubbles"]=u;o=l=g=h=m=j=a=i=null;return k}(),f.boxModel=f.support.boxModel;var i=/^(?:\{.*\}|\[.*\])$/,j=/([a-z])([A-Z])/g;f.extend({cache:{},uuid:0,expando:"jQuery"+(f.fn.jquery+Math.random()).replace(/\D/g,""),noData:{embed:!0,object:"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000",applet:!0},hasData:function(a){a=a.nodeType?f.cache[a[f.expando]]:a[f.expando];return!!a&&!l(a)},data:function(a,c,d,e){if(!!f.acceptData(a)){var g,h,i=f.expando,j=typeof c=="string",k=a.nodeType,l=k?f.cache:a,m=k?a[f.expando]:a[f.expando]&&f.expando;if((!m||e&&m&&l[m]&&!l[m][i])&&j&&d===b)return;m||(k?a[f.expando]=m=++f.uuid:m=f.expando),l[m]||(l[m]={},k||(l[m].toJSON=f.noop));if(typeof c=="object"||typeof c=="function")e?l[m][i]=f.extend(l[m][i],c):l[m]=f.extend(l[m],c);g=l[m],e&&(g[i]||(g[i]={}),g=g[i]),d!==b&&(g[f.camelCase(c)]=d);if(c==="events"&&!g[c])return g[i]&&g[i].events;j?(h=g[c],h==null&&(h=g[f.camelCase(c)])):h=g;return h}},removeData:function(a,b,c){if(!!f.acceptData(a)){var d,e=f.expando,g=a.nodeType,h=g?f.cache:a,i=g?a[f.expando]:f.expando;if(!h[i])return;if(b){d=c?h[i][e]:h[i];if(d){d[b]||(b=f.camelCase(b)),delete d[b];if(!l(d))return}}if(c){delete h[i][e];if(!l(h[i]))return}var j=h[i][e];f.support.deleteExpando||!h.setInterval?delete h[i]:h[i]=null,j?(h[i]={},g||(h[i].toJSON=f.noop),h[i][e]=j):g&&(f.support.deleteExpando?delete a[f.expando]:a.removeAttribute?a.removeAttribute(f.expando):a[f.expando]=null)}},_data:function(a,b,c){return f.data(a,b,c,!0)},acceptData:function(a){if(a.nodeName){var b=f.noData[a.nodeName.toLowerCase()];if(b)return b!==!0&&a.getAttribute("classid")===b}return!0}}),f.fn.extend({data:function(a,c){var d=null;if(typeof a=="undefined"){if(this.length){d=f.data(this[0]);if(this[0].nodeType===1){var e=this[0].attributes,g;for(var h=0,i=e.length;h<i;h++)g=e[h].name,g.indexOf("data-")===0&&(g=f.camelCase(g.substring(5)),k(this[0],g,d[g]))}}return d}if(typeof a=="object")return this.each(function(){f.data(this,a)});var j=a.split(".");j[1]=j[1]?"."+j[1]:"";if(c===b){d=this.triggerHandler("getData"+j[1]+"!",[j[0]]),d===b&&this.length&&(d=f.data(this[0],a),d=k(this[0],a,d));return d===b&&j[1]?this.data(j[0]):d}return this.each(function(){var b=f(this),d=[j[0],c];b.triggerHandler("setData"+j[1]+"!",d),f.data(this,a,c),b.triggerHandler("changeData"+j[1]+"!",d)})},removeData:function(a){return this.each(function(){f.removeData(this,a)})}}),f.extend({_mark:function(a,c){a&&(c=(c||"fx")+"mark",f.data(a,c,(f.data(a,c,b,!0)||0)+1,!0))},_unmark:function(a,c,d){a!==!0&&(d=c,c=a,a=!1);if(c){d=d||"fx";var e=d+"mark",g=a?0:(f.data(c,e,b,!0)||1)-1;g?f.data(c,e,g,!0):(f.removeData(c,e,!0),m(c,d,"mark"))}},queue:function(a,c,d){if(a){c=(c||"fx")+"queue";var e=f.data(a,c,b,!0);d&&(!e||f.isArray(d)?e=f.data(a,c,f.makeArray(d),!0):e.push(d));return e||[]}},dequeue:function(a,b){b=b||"fx";var c=f.queue(a,b),d=c.shift(),e;d==="inprogress"&&(d=c.shift()),d&&(b==="fx"&&c.unshift("inprogress"),d.call(a,function(){f.dequeue(a,b)})),c.length||(f.removeData(a,b+"queue",!0),m(a,b,"queue"))}}),f.fn.extend({queue:function(a,c){typeof a!="string"&&(c=a,a="fx");if(c===b)return f.queue(this[0],a);return this.each(function(){var b=f.queue(this,a,c);a==="fx"&&b[0]!=="inprogress"&&f.dequeue(this,a)})},dequeue:function(a){return this.each(function(){f.dequeue(this,a)})},delay:function(a,b){a=f.fx?f.fx.speeds[a]||a:a,b=b||"fx";return this.queue(b,function(){var c=this;setTimeout(function(){f.dequeue(c,b)},a)})},clearQueue:function(a){return this.queue(a||"fx",[])},promise:function(a,c){function m(){--h||d.resolveWith(e,[e])}typeof a!="string"&&(c=a,a=b),a=a||"fx";var d=f.Deferred(),e=this,g=e.length,h=1,i=a+"defer",j=a+"queue",k=a+"mark",l;while(g--)if(l=f.data(e[g],i,b,!0)||(f.data(e[g],j,b,!0)||f.data(e[g],k,b,!0))&&f.data(e[g],i,f._Deferred(),!0))h++,l.done(m);m();return d.promise()}});var n=/[\n\t\r]/g,o=/\s+/,p=/\r/g,q=/^(?:button|input)$/i,r=/^(?:button|input|object|select|textarea)$/i,s=/^a(?:rea)?$/i,t=/^(?:autofocus|autoplay|async|checked|controls|defer|disabled|hidden|loop|multiple|open|readonly|required|scoped|selected)$/i,u,v;f.fn.extend({attr:function(a,b){return f.access(this,a,b,!0,f.attr)},removeAttr:function(a){return this.each(function(){f.removeAttr(this,a)})},prop:function(a,b){return f.access(this,a,b,!0,f.prop)},removeProp:function(a){a=f.propFix[a]||a;return this.each(function(){try{this[a]=b,delete this[a]}catch(c){}})},addClass:function(a){var b,c,d,e,g,h,i;if(f.isFunction(a))return this.each(function(b){f(this).addClass(a.call(this,b,this.className))});if(a&&typeof a=="string"){b=a.split(o);for(c=0,d=this.length;c<d;c++){e=this[c];if(e.nodeType===1)if(!e.className&&b.length===1)e.className=a;else{g=" "+e.className+" ";for(h=0,i=b.length;h<i;h++)~g.indexOf(" "+b[h]+" ")||(g+=b[h]+" ");e.className=f.trim(g)}}}return this},removeClass:function(a){var c,d,e,g,h,i,j;if(f.isFunction(a))return this.each(function(b){f(this).removeClass(a.call(this,b,this.className))});if(a&&typeof a=="string"||a===b){c=(a||"").split(o);for(d=0,e=this.length;d<e;d++){g=this[d];if(g.nodeType===1&&g.className)if(a){h=(" "+g.className+" ").replace(n," ");for(i=0,j=c.length;i<j;i++)h=h.replace(" "+c[i]+" "," ");g.className=f.trim(h)}else g.className=""}}return this},toggleClass:function(a,b){var c=typeof a,d=typeof b=="boolean";if(f.isFunction(a))return this.each(function(c){f(this).toggleClass(a.call(this,c,this.className,b),b)});return this.each(function(){if(c==="string"){var e,g=0,h=f(this),i=b,j=a.split(o);while(e=j[g++])i=d?i:!h.hasClass(e),h[i?"addClass":"removeClass"](e)}else if(c==="undefined"||c==="boolean")this.className&&f._data(this,"__className__",this.className),this.className=this.className||a===!1?"":f._data(this,"__className__")||""})},hasClass:function(a){var b=" "+a+" ";for(var c=0,d=this.length;c<d;c++)if(this[c].nodeType===1&&(" "+this[c].className+" ").replace(n," ").indexOf(b)>-1)return!0;return!1},val:function(a){var c,d,e=this[0];if(!arguments.length){if(e){c=f.valHooks[e.nodeName.toLowerCase()]||f.valHooks[e.type];if(c&&"get"in c&&(d=c.get(e,"value"))!==b)return d;d=e.value;return typeof d=="string"?d.replace(p,""):d==null?"":d}return b}var g=f.isFunction(a);return this.each(function(d){var e=f(this),h;if(this.nodeType===1){g?h=a.call(this,d,e.val()):h=a,h==null?h="":typeof h=="number"?h+="":f.isArray(h)&&(h=f.map(h,function(a){return a==null?"":a+""})),c=f.valHooks[this.nodeName.toLowerCase()]||f.valHooks[this.type];if(!c||!("set"in c)||c.set(this,h,"value")===b)this.value=h}})}}),f.extend({valHooks:{option:{get:function(a){var b=a.attributes.value;return!b||b.specified?a.value:a.text}},select:{get:function(a){var b,c=a.selectedIndex,d=[],e=a.options,g=a.type==="select-one";if(c<0)return null;for(var h=g?c:0,i=g?c+1:e.length;h<i;h++){var j=e[h];if(j.selected&&(f.support.optDisabled?!j.disabled:j.getAttribute("disabled")===null)&&(!j.parentNode.disabled||!f.nodeName(j.parentNode,"optgroup"))){b=f(j).val();if(g)return b;d.push(b)}}if(g&&!d.length&&e.length)return f(e[c]).val();return d},set:function(a,b){var c=f.makeArray(b);f(a).find("option").each(function(){this.selected=f.inArray(f(this).val(),c)>=0}),c.length||(a.selectedIndex=-1);return c}}},attrFn:{val:!0,css:!0,html:!0,text:!0,data:!0,width:!0,height:!0,offset:!0},attrFix:{tabindex:"tabIndex"},attr:function(a,c,d,e){var g=a.nodeType;if(!a||g===3||g===8||g===2)return b;if(e&&c in f.attrFn)return f(a)[c](d);if(!("getAttribute"in a))return f.prop(a,c,d);var h,i,j=g!==1||!f.isXMLDoc(a);j&&(c=f.attrFix[c]||c,i=f.attrHooks[c],i||(t.test(c)?i=v:u&&(i=u)));if(d!==b){if(d===null){f.removeAttr(a,c);return b}if(i&&"set"in i&&j&&(h=i.set(a,d,c))!==b)return h;a.setAttribute(c,""+d);return d}if(i&&"get"in i&&j&&(h=i.get(a,c))!==null)return h;h=a.getAttribute(c);return h===null?b:h},removeAttr:function(a,b){var c;a.nodeType===1&&(b=f.attrFix[b]||b,f.attr(a,b,""),a.removeAttribute(b),t.test(b)&&(c=f.propFix[b]||b)in a&&(a[c]=!1))},attrHooks:{type:{set:function(a,b){if(q.test(a.nodeName)&&a.parentNode)f.error("type property can't be changed");else if(!f.support.radioValue&&b==="radio"&&f.nodeName(a,"input")){var c=a.value;a.setAttribute("type",b),c&&(a.value=c);return b}}},value:{get:function(a,b){if(u&&f.nodeName(a,"button"))return u.get(a,b);return b in a?a.value:null},set:function(a,b,c){if(u&&f.nodeName(a,"button"))return u.set(a,b,c);a.value=b}}},propFix:{tabindex:"tabIndex",readonly:"readOnly","for":"htmlFor","class":"className",maxlength:"maxLength",cellspacing:"cellSpacing",cellpadding:"cellPadding",rowspan:"rowSpan",colspan:"colSpan",usemap:"useMap",frameborder:"frameBorder",contenteditable:"contentEditable"},prop:function(a,c,d){var e=a.nodeType;if(!a||e===3||e===8||e===2)return b;var g,h,i=e!==1||!f.isXMLDoc(a);i&&(c=f.propFix[c]||c,h=f.propHooks[c]);return d!==b?h&&"set"in h&&(g=h.set(a,d,c))!==b?g:a[c]=d:h&&"get"in h&&(g=h.get(a,c))!==null?g:a[c]},propHooks:{tabIndex:{get:function(a){var c=a.getAttributeNode("tabindex");return c&&c.specified?parseInt(c.value,10):r.test(a.nodeName)||s.test(a.nodeName)&&a.href?0:b}}}}),f.attrHooks.tabIndex=f.propHooks.tabIndex,v={get:function(a,c){var d;return f.prop(a,c)===!0||(d=a.getAttributeNode(c))&&d.nodeValue!==!1?c.toLowerCase():b},set:function(a,b,c){var d;b===!1?f.removeAttr(a,c):(d=f.propFix[c]||c,d in a&&(a[d]=!0),a.setAttribute(c,c.toLowerCase()));return c}},f.support.getSetAttribute||(u=f.valHooks.button={get:function(a,c){var d;d=a.getAttributeNode(c);return d&&d.nodeValue!==""?d.nodeValue:b},set:function(a,b,d){var e=a.getAttributeNode(d);e||(e=c.createAttribute(d),a.setAttributeNode(e));return e.nodeValue=b+""}},f.each(["width","height"],function(a,b){f.attrHooks[b]=f.extend(f.attrHooks[b],{set:function(a,c){if(c===""){a.setAttribute(b,"auto");return c}}})})),f.support.hrefNormalized||f.each(["href","src","width","height"],function(a,c){f.attrHooks[c]=f.extend(f.attrHooks[c],{get:function(a){var d=a.getAttribute(c,2);return d===null?b:d}})}),f.support.style||(f.attrHooks.style={get:function(a){return a.style.cssText.toLowerCase()||b},set:function(a,b){return a.style.cssText=""+b}}),f.support.optSelected||(f.propHooks.selected=f.extend(f.propHooks.selected,{get:function(a){var b=a.parentNode;b&&(b.selectedIndex,b.parentNode&&b.parentNode.selectedIndex);return null}})),f.support.checkOn||f.each(["radio","checkbox"],function(){f.valHooks[this]={get:function(a){return a.getAttribute("value")===null?"on":a.value}}}),f.each(["radio","checkbox"],function(){f.valHooks[this]=f.extend(f.valHooks[this],{set:function(a,b){if(f.isArray(b))return a.checked=f.inArray(f(a).val(),b)>=0}})});var w=/\.(.*)$/,x=/^(?:textarea|input|select)$/i,y=/\./g,z=/ /g,A=/[^\w\s.|`]/g,B=function(a){return a.replace(A,"\\$&")};f.event={add:function(a,c,d,e){if(a.nodeType!==3&&a.nodeType!==8){if(d===!1)d=C;else if(!d)return;var g,h;d.handler&&(g=d,d=g.handler),d.guid||(d.guid=f.guid++);var i=f._data(a);if(!i)return;var j=i.events,k=i.handle;j||(i.events=j={}),k||(i.handle=k=function(a){return typeof f!="undefined"&&(!a||f.event.triggered!==a.type)?f.event.handle.apply(k.elem,arguments):b}),k.elem=a,c=c.split(" ");var l,m=0,n;while(l=c[m++]){h=g?f.extend({},g):{handler:d,data:e},l.indexOf(".")>-1?(n=l.split("."),l=n.shift(),h.namespace=n.slice(0).sort().join(".")):(n=[],h.namespace=""),h.type=l,h.guid||(h.guid=d.guid);var o=j[l],p=f.event.special[l]||{};if(!o){o=j[l]=[];if(!p.setup||p.setup.call(a,e,n,k)===!1)a.addEventListener?a.addEventListener(l,k,!1):a.attachEvent&&a.attachEvent("on"+l,k)}p.add&&(p.add.call(a,h),h.handler.guid||(h.handler.guid=d.guid)),o.push(h),f.event.global[l]=!0}a=null}},global:{},remove:function(a,c,d,e){if(a.nodeType!==3&&a.nodeType!==8){d===!1&&(d=C);var g,h,i,j,k=0,l,m,n,o,p,q,r,s=f.hasData(a)&&f._data(a),t=s&&s.events;if(!s||!t)return;c&&c.type&&(d=c.handler,c=c.type);if(!c||typeof c=="string"&&c.charAt(0)==="."){c=c||"";for(h in t)f.event.remove(a,h+c);return}c=c.split(" ");while(h=c[k++]){r=h,q=null,l=h.indexOf(".")<0,m=[],l||(m=h.split("."),h=m.shift(),n=new RegExp("(^|\\.)"+f.map(m.slice(0).sort(),B).join("\\.(?:.*\\.)?")+"(\\.|$)")),p=t[h];if(!p)continue;if(!d){for(j=0;j<p.length;j++){q=p[j];if(l||n.test(q.namespace))f.event.remove(a,r,q.handler,j),p.splice(j--,1)}continue}o=f.event.special[h]||{};for(j=e||0;j<p.length;j++){q=p[j];if(d.guid===q.guid){if(l||n.test(q.namespace))e==null&&p.splice(j--,1),o.remove&&o.remove.call(a,q);if(e!=null)break}}if(p.length===0||e!=null&&p.length===1)(!o.teardown||o.teardown.call(a,m)===!1)&&f.removeEvent(a,h,s.handle),g=null ,delete t[h]}if(f.isEmptyObject(t)){var u=s.handle;u&&(u.elem=null),delete s.events,delete s.handle,f.isEmptyObject(s)&&f.removeData(a,b,!0)}}},customEvent:{getData:!0,setData:!0,changeData:!0},trigger:function(c,d,e,g){var h=c.type||c,i=[],j;h.indexOf("!")>=0&&(h=h.slice(0,-1),j=!0),h.indexOf(".")>=0&&(i=h.split("."),h=i.shift(),i.sort());if(!!e&&!f.event.customEvent[h]||!!f.event.global[h]){c=typeof c=="object"?c[f.expando]?c:new f.Event(h,c):new f.Event(h),c.type=h,c.exclusive=j,c.namespace=i.join("."),c.namespace_re=new RegExp("(^|\\.)"+i.join("\\.(?:.*\\.)?")+"(\\.|$)");if(g||!e)c.preventDefault(),c.stopPropagation();if(!e){f.each(f.cache,function(){var a=f.expando,b=this[a];b&&b.events&&b.events[h]&&f.event.trigger(c,d,b.handle.elem)});return}if(e.nodeType===3||e.nodeType===8)return;c.result=b,c.target=e,d=d!=null?f.makeArray(d):[],d.unshift(c);var k=e,l=h.indexOf(":")<0?"on"+h:"";do{var m=f._data(k,"handle");c.currentTarget=k,m&&m.apply(k,d),l&&f.acceptData(k)&&k[l]&&k[l].apply(k,d)===!1&&(c.result=!1,c.preventDefault()),k=k.parentNode||k.ownerDocument||k===c.target.ownerDocument&&a}while(k&&!c.isPropagationStopped());if(!c.isDefaultPrevented()){var n,o=f.event.special[h]||{};if((!o._default||o._default.call(e.ownerDocument,c)===!1)&&(h!=="click"||!f.nodeName(e,"a"))&&f.acceptData(e)){try{l&&e[h]&&(n=e[l],n&&(e[l]=null),f.event.triggered=h,e[h]())}catch(p){}n&&(e[l]=n),f.event.triggered=b}}return c.result}},handle:function(c){c=f.event.fix(c||a.event);var d=((f._data(this,"events")||{})[c.type]||[]).slice(0),e=!c.exclusive&&!c.namespace,g=Array.prototype.slice.call(arguments,0);g[0]=c,c.currentTarget=this;for(var h=0,i=d.length;h<i;h++){var j=d[h];if(e||c.namespace_re.test(j.namespace)){c.handler=j.handler,c.data=j.data,c.handleObj=j;var k=j.handler.apply(this,g);k!==b&&(c.result=k,k===!1&&(c.preventDefault(),c.stopPropagation()));if(c.isImmediatePropagationStopped())break}}return c.result},props:"altKey attrChange attrName bubbles button cancelable charCode clientX clientY ctrlKey currentTarget data detail eventPhase fromElement handler keyCode layerX layerY metaKey newValue offsetX offsetY pageX pageY prevValue relatedNode relatedTarget screenX screenY shiftKey srcElement target toElement view wheelDelta which".split(" "),fix:function(a){if(a[f.expando])return a;var d=a;a=f.Event(d);for(var e=this.props.length,g;e;)g=this.props[--e],a[g]=d[g];a.target||(a.target=a.srcElement||c),a.target.nodeType===3&&(a.target=a.target.parentNode),!a.relatedTarget&&a.fromElement&&(a.relatedTarget=a.fromElement===a.target?a.toElement:a.fromElement);if(a.pageX==null&&a.clientX!=null){var h=a.target.ownerDocument||c,i=h.documentElement,j=h.body;a.pageX=a.clientX+(i&&i.scrollLeft||j&&j.scrollLeft||0)-(i&&i.clientLeft||j&&j.clientLeft||0),a.pageY=a.clientY+(i&&i.scrollTop||j&&j.scrollTop||0)-(i&&i.clientTop||j&&j.clientTop||0)}a.which==null&&(a.charCode!=null||a.keyCode!=null)&&(a.which=a.charCode!=null?a.charCode:a.keyCode),!a.metaKey&&a.ctrlKey&&(a.metaKey=a.ctrlKey),!a.which&&a.button!==b&&(a.which=a.button&1?1:a.button&2?3:a.button&4?2:0);return a},guid:1e8,proxy:f.proxy,special:{ready:{setup:f.bindReady,teardown:f.noop},live:{add:function(a){f.event.add(this,M(a.origType,a.selector),f.extend({},a,{handler:L,guid:a.handler.guid}))},remove:function(a){f.event.remove(this,M(a.origType,a.selector),a)}},beforeunload:{setup:function(a,b,c){f.isWindow(this)&&(this.onbeforeunload=c)},teardown:function(a,b){this.onbeforeunload===b&&(this.onbeforeunload=null)}}}},f.removeEvent=c.removeEventListener?function(a,b,c){a.removeEventListener&&a.removeEventListener(b,c,!1)}:function(a,b,c){a.detachEvent&&a.detachEvent("on"+b,c)},f.Event=function(a,b){if(!this.preventDefault)return new f.Event(a,b);a&&a.type?(this.originalEvent=a,this.type=a.type,this.isDefaultPrevented=a.defaultPrevented||a.returnValue===!1||a.getPreventDefault&&a.getPreventDefault()?D:C):this.type=a,b&&f.extend(this,b),this.timeStamp=f.now(),this[f.expando]=!0},f.Event.prototype={preventDefault:function(){this.isDefaultPrevented=D;var a=this.originalEvent;!a||(a.preventDefault?a.preventDefault():a.returnValue=!1)},stopPropagation:function(){this.isPropagationStopped=D;var a=this.originalEvent;!a||(a.stopPropagation&&a.stopPropagation(),a.cancelBubble=!0)},stopImmediatePropagation:function(){this.isImmediatePropagationStopped=D,this.stopPropagation()},isDefaultPrevented:C,isPropagationStopped:C,isImmediatePropagationStopped:C};var E=function(a){var b=a.relatedTarget,c=!1,d=a.type;a.type=a.data,b!==this&&(b&&(c=f.contains(this,b)),c||(f.event.handle.apply(this,arguments),a.type=d))},F=function(a){a.type=a.data,f.event.handle.apply(this,arguments)};f.each({mouseenter:"mouseover",mouseleave:"mouseout"},function(a,b){f.event.special[a]={setup:function(c){f.event.add(this,b,c&&c.selector?F:E,a)},teardown:function(a){f.event.remove(this,b,a&&a.selector?F:E)}}}),f.support.submitBubbles||(f.event.special.submit={setup:function(a,b){if(!f.nodeName(this,"form"))f.event.add(this,"click.specialSubmit",function(a){var b=a.target,c=f.nodeName(b,"input")?b.type:"";(c==="submit"||c==="image")&&f(b).closest("form").length&&J("submit",this,arguments)}),f.event.add(this,"keypress.specialSubmit",function(a){var b=a.target,c=f.nodeName(b,"input")?b.type:"";(c==="text"||c==="password")&&f(b).closest("form").length&&a.keyCode===13&&J("submit",this,arguments)});else return!1},teardown:function(a){f.event.remove(this,".specialSubmit")}});if(!f.support.changeBubbles){var G,H=function(a){var b=f.nodeName(a,"input")?a.type:"",c=a.value;b==="radio"||b==="checkbox"?c=a.checked:b==="select-multiple"?c=a.selectedIndex>-1?f.map(a.options,function(a){return a.selected}).join("-"):"":f.nodeName(a,"select")&&(c=a.selectedIndex);return c},I=function(c){var d=c.target,e,g;if(!!x.test(d.nodeName)&&!d.readOnly){e=f._data(d,"_change_data"),g=H(d),(c.type!=="focusout"||d.type!=="radio")&&f._data(d,"_change_data",g);if(e===b||g===e)return;if(e!=null||g)c.type="change",c.liveFired=b,f.event.trigger(c,arguments[1],d)}};f.event.special.change={filters:{focusout:I,beforedeactivate:I,click:function(a){var b=a.target,c=f.nodeName(b,"input")?b.type:"";(c==="radio"||c==="checkbox"||f.nodeName(b,"select"))&&I.call(this,a)},keydown:function(a){var b=a.target,c=f.nodeName(b,"input")?b.type:"";(a.keyCode===13&&!f.nodeName(b,"textarea")||a.keyCode===32&&(c==="checkbox"||c==="radio")||c==="select-multiple")&&I.call(this,a)},beforeactivate:function(a){var b=a.target;f._data(b,"_change_data",H(b))}},setup:function(a,b){if(this.type==="file")return!1;for(var c in G)f.event.add(this,c+".specialChange",G[c]);return x.test(this.nodeName)},teardown:function(a){f.event.remove(this,".specialChange");return x.test(this.nodeName)}},G=f.event.special.change.filters,G.focus=G.beforeactivate}f.support.focusinBubbles||f.each({focus:"focusin",blur:"focusout"},function(a,b){function e(a){var c=f.event.fix(a);c.type=b,c.originalEvent={},f.event.trigger(c,null,c.target),c.isDefaultPrevented()&&a.preventDefault()}var d=0;f.event.special[b]={setup:function(){d++===0&&c.addEventListener(a,e,!0)},teardown:function(){--d===0&&c.removeEventListener(a,e,!0)}}}),f.each(["bind","one"],function(a,c){f.fn[c]=function(a,d,e){var g;if(typeof a=="object"){for(var h in a)this[c](h,d,a[h],e);return this}if(arguments.length===2||d===!1)e=d,d=b;c==="one"?(g=function(a){f(this).unbind(a,g);return e.apply(this,arguments)},g.guid=e.guid||f.guid++):g=e;if(a==="unload"&&c!=="one")this.one(a,d,e);else for(var i=0,j=this.length;i<j;i++)f.event.add(this[i],a,g,d);return this}}),f.fn.extend({unbind:function(a,b){if(typeof a=="object"&&!a.preventDefault)for(var c in a)this.unbind(c,a[c]);else for(var d=0,e=this.length;d<e;d++)f.event.remove(this[d],a,b);return this},delegate:function(a,b,c,d){return this.live(b,c,d,a)},undelegate:function(a,b,c){return arguments.length===0?this.unbind("live"):this.die(b,null,c,a)},trigger:function(a,b){return this.each(function(){f.event.trigger(a,b,this)})},triggerHandler:function(a,b){if(this[0])return f.event.trigger(a,b,this[0],!0)},toggle:function(a){var b=arguments,c=a.guid||f.guid++,d=0,e=function(c){var e=(f.data(this,"lastToggle"+a.guid)||0)%d;f.data(this,"lastToggle"+a.guid,e+1),c.preventDefault();return b[e].apply(this,arguments)||!1};e.guid=c;while(d<b.length)b[d++].guid=c;return this.click(e)},hover:function(a,b){return this.mouseenter(a).mouseleave(b||a)}});var K={focus:"focusin",blur:"focusout",mouseenter:"mouseover",mouseleave:"mouseout"};f.each(["live","die"],function(a,c){f.fn[c]=function(a,d,e,g){var h,i=0,j,k,l,m=g||this.selector,n=g?this:f(this.context);if(typeof a=="object"&&!a.preventDefault){for(var o in a)n[c](o,d,a[o],m);return this}if(c==="die"&&!a&&g&&g.charAt(0)==="."){n.unbind(g);return this}if(d===!1||f.isFunction(d))e=d||C,d=b;a=(a||"").split(" ");while((h=a[i++])!=null){j=w.exec(h),k="",j&&(k=j[0],h=h.replace(w,""));if(h==="hover"){a.push("mouseenter"+k,"mouseleave"+k);continue}l=h,K[h]?(a.push(K[h]+k),h=h+k):h=(K[h]||h)+k;if(c==="live")for(var p=0,q=n.length;p<q;p++)f.event.add(n[p],"live."+M(h,m),{data:d,selector:m,handler:e,origType:h,origHandler:e,preType:l});else n.unbind("live."+M(h,m),e)}return this}}),f.each("blur focus focusin focusout load resize scroll unload click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup error".split(" "),function(a,b){f.fn[b]=function(a,c){c==null&&(c=a,a=null);return arguments.length>0?this.bind(b,a,c):this.trigger(b)},f.attrFn&&(f.attrFn[b]=!0)}),function(){function u(a,b,c,d,e,f){for(var g=0,h=d.length;g<h;g++){var i=d[g];if(i){var j=!1;i=i[a];while(i){if(i.sizcache===c){j=d[i.sizset];break}if(i.nodeType===1){f||(i.sizcache=c,i.sizset=g);if(typeof b!="string"){if(i===b){j=!0;break}}else if(k.filter(b,[i]).length>0){j=i;break}}i=i[a]}d[g]=j}}}function t(a,b,c,d,e,f){for(var g=0,h=d.length;g<h;g++){var i=d[g];if(i){var j=!1;i=i[a];while(i){if(i.sizcache===c){j=d[i.sizset];break}i.nodeType===1&&!f&&(i.sizcache=c,i.sizset=g);if(i.nodeName.toLowerCase()===b){j=i;break}i=i[a]}d[g]=j}}}var a=/((?:\((?:\([^()]+\)|[^()]+)+\)|\[(?:\[[^\[\]]*\]|['"][^'"]*['"]|[^\[\]'"]+)+\]|\\.|[^ >+~,(\[\\]+)+|[>+~])(\s*,\s*)?((?:.|\r|\n)*)/g,d=0,e=Object.prototype.toString,g=!1,h=!0,i=/\\/g,j=/\W/;[0,0].sort(function(){h=!1;return 0});var k=function(b,d,f,g){f=f||[],d=d||c;var h=d;if(d.nodeType!==1&&d.nodeType!==9)return[];if(!b||typeof b!="string")return f;var i,j,n,o,q,r,s,t,u=!0,w=k.isXML(d),x=[],y=b;do{a.exec(""),i=a.exec(y);if(i){y=i[3],x.push(i[1]);if(i[2]){o=i[3];break}}}while(i);if(x.length>1&&m.exec(b))if(x.length===2&&l.relative[x[0]])j=v(x[0]+x[1],d);else{j=l.relative[x[0]]?[d]:k(x.shift(),d);while(x.length)b=x.shift(),l.relative[b]&&(b+=x.shift()),j=v(b,j)}else{!g&&x.length>1&&d.nodeType===9&&!w&&l.match.ID.test(x[0])&&!l.match.ID.test(x[x.length-1])&&(q=k.find(x.shift(),d,w),d=q.expr?k.filter(q.expr,q.set)[0]:q.set[0]);if(d){q=g?{expr:x.pop(),set:p(g)}:k.find(x.pop(),x.length===1&&(x[0]==="~"||x[0]==="+")&&d.parentNode?d.parentNode:d,w),j=q.expr?k.filter(q.expr,q.set):q.set,x.length>0?n=p(j):u=!1;while(x.length)r=x.pop(),s=r,l.relative[r]?s=x.pop():r="",s==null&&(s=d),l.relative[r](n,s,w)}else n=x=[]}n||(n=j),n||k.error(r||b);if(e.call(n)==="[object Array]")if(!u)f.push.apply(f,n);else if(d&&d.nodeType===1)for(t=0;n[t]!=null;t++)n[t]&&(n[t]===!0||n[t].nodeType===1&&k.contains(d,n[t]))&&f.push(j[t]);else for(t=0;n[t]!=null;t++)n[t]&&n[t].nodeType===1&&f.push(j[t]);else p(n,f);o&&(k(o,h,f,g),k.uniqueSort(f));return f};k.uniqueSort=function(a){if(r){g=h,a.sort(r);if(g)for(var b=1;b<a.length;b++)a[b]===a[b-1]&&a.splice(b--,1)}return a},k.matches=function(a,b){return k(a,null,null,b)},k.matchesSelector=function(a,b){return k(b,null,null,[a]).length>0},k.find=function(a,b,c){var d;if(!a)return[];for(var e=0,f=l.order.length;e<f;e++){var g,h=l.order[e];if(g=l.leftMatch[h].exec(a)){var j=g[1];g.splice(1,1);if(j.substr(j.length-1)!=="\\"){g[1]=(g[1]||"").replace(i,""),d=l.find[h](g,b,c);if(d!=null){a=a.replace(l.match[h],"");break}}}}d||(d=typeof b.getElementsByTagName!="undefined"?b.getElementsByTagName("*"):[]);return{set:d,expr:a}},k.filter=function(a,c,d,e){var f,g,h=a,i=[],j=c,m=c&&c[0]&&k.isXML(c[0]);while(a&&c.length){for(var n in l.filter)if((f=l.leftMatch[n].exec(a))!=null&&f[2]){var o,p,q=l.filter[n],r=f[1];g=!1,f.splice(1,1);if(r.substr(r.length-1)==="\\")continue;j===i&&(i=[]);if(l.preFilter[n]){f=l.preFilter[n](f,j,d,i,e,m);if(!f)g=o=!0;else if(f===!0)continue}if(f)for(var s=0;(p=j[s])!=null;s++)if(p){o=q(p,f,s,j);var t=e^!!o;d&&o!=null?t?g=!0:j[s]=!1:t&&(i.push(p),g=!0)}if(o!==b){d||(j=i),a=a.replace(l.match[n],"");if(!g)return[];break}}if(a===h)if(g==null)k.error(a);else break;h=a}return j},k.error=function(a){throw"Syntax error, unrecognized expression: "+a};var l=k.selectors={order:["ID","NAME","TAG"],match:{ID:/#((?:[\w\u00c0-\uFFFF\-]|\\.)+)/,CLASS:/\.((?:[\w\u00c0-\uFFFF\-]|\\.)+)/,NAME:/\[name=['"]*((?:[\w\u00c0-\uFFFF\-]|\\.)+)['"]*\]/,ATTR:/\[\s*((?:[\w\u00c0-\uFFFF\-]|\\.)+)\s*(?:(\S?=)\s*(?:(['"])(.*?)\3|(#?(?:[\w\u00c0-\uFFFF\-]|\\.)*)|)|)\s*\]/,TAG:/^((?:[\w\u00c0-\uFFFF\*\-]|\\.)+)/,CHILD:/:(only|nth|last|first)-child(?:\(\s*(even|odd|(?:[+\-]?\d+|(?:[+\-]?\d*)?n\s*(?:[+\-]\s*\d+)?))\s*\))?/,POS:/:(nth|eq|gt|lt|first|last|even|odd)(?:\((\d*)\))?(?=[^\-]|$)/,PSEUDO:/:((?:[\w\u00c0-\uFFFF\-]|\\.)+)(?:\((['"]?)((?:\([^\)]+\)|[^\(\)]*)+)\2\))?/},leftMatch:{},attrMap:{"class":"className","for":"htmlFor"},attrHandle:{href:function(a){return a.getAttribute("href")},type:function(a){return a.getAttribute("type")}},relative:{"+":function(a,b){var c=typeof b=="string",d=c&&!j.test(b),e=c&&!d;d&&(b=b.toLowerCase());for(var f=0,g=a.length,h;f<g;f++)if(h=a[f]){while((h=h.previousSibling)&&h.nodeType!==1);a[f]=e||h&&h.nodeName.toLowerCase()===b?h||!1:h===b}e&&k.filter(b,a,!0)},">":function(a,b){var c,d=typeof b=="string",e=0,f=a.length;if(d&&!j.test(b)){b=b.toLowerCase();for(;e<f;e++){c=a[e];if(c){var g=c.parentNode;a[e]=g.nodeName.toLowerCase()===b?g:!1}}}else{for(;e<f;e++)c=a[e],c&&(a[e]=d?c.parentNode:c.parentNode===b);d&&k.filter(b,a,!0)}},"":function(a,b,c){var e,f=d++,g=u;typeof b=="string"&&!j.test(b)&&(b=b.toLowerCase(),e=b,g=t),g("parentNode",b,f,a,e,c)},"~":function(a,b,c){var e,f=d++,g=u;typeof b=="string"&&!j.test(b)&&(b=b.toLowerCase(),e=b,g=t),g("previousSibling",b,f,a,e,c)}},find:{ID:function(a,b,c){if(typeof b.getElementById!="undefined"&&!c){var d=b.getElementById(a[1]);return d&&d.parentNode?[d]:[]}},NAME:function(a,b){if(typeof b.getElementsByName!="undefined"){var c=[],d=b.getElementsByName(a[1]);for(var e=0,f=d.length;e<f;e++)d[e].getAttribute("name")===a[1]&&c.push(d[e]);return c.length===0?null:c}},TAG:function(a,b){if(typeof b.getElementsByTagName!="undefined")return b.getElementsByTagName(a[1])}},preFilter:{CLASS:function(a,b,c,d,e,f){a=" "+a[1].replace(i,"")+" ";if(f)return a;for(var g=0,h;(h=b[g])!=null;g++)h&&(e^(h.className&&(" "+h.className+" ").replace(/[\t\n\r]/g," ").indexOf(a)>=0)?c||d.push(h):c&&(b[g]=!1));return!1},ID:function(a){return a[1].replace(i,"")},TAG:function(a,b){return a[1].replace(i,"").toLowerCase()},CHILD:function(a){if(a[1]==="nth"){a[2]||k.error(a[0]),a[2]=a[2].replace(/^\+|\s*/g,"");var b=/(-?)(\d*)(?:n([+\-]?\d*))?/.exec(a[2]==="even"&&"2n"||a[2]==="odd"&&"2n+1"||!/\D/.test(a[2])&&"0n+"+a[2]||a[2]);a[2]=b[1]+(b[2]||1)-0,a[3]=b[3]-0}else a[2]&&k.error(a[0]);a[0]=d++;return a},ATTR:function(a,b,c,d,e,f){var g=a[1]=a[1].replace(i,"");!f&&l.attrMap[g]&&(a[1]=l.attrMap[g]),a[4]=(a[4]||a[5]||"").replace(i,""),a[2]==="~="&&(a[4]=" "+a[4]+" ");return a},PSEUDO:function(b,c,d,e,f){if(b[1]==="not")if((a.exec(b[3])||"").length>1||/^\w/.test(b[3]))b[3]=k(b[3],null,null,c);else{var g=k.filter(b[3],c,d,!0^f);d||e.push.apply(e,g);return!1}else if(l.match.POS.test(b[0])||l.match.CHILD.test(b[0]))return!0;return b},POS:function(a){a.unshift(!0);return a}},filters:{enabled:function(a){return a.disabled===!1&&a.type!=="hidden"},disabled:function(a){return a.disabled===!0},checked:function(a){return a.checked===!0},selected:function(a){a.parentNode&&a.parentNode.selectedIndex;return a.selected===!0},parent:function(a){return!!a.firstChild},empty:function(a){return!a.firstChild},has:function(a,b,c){return!!k(c[3],a).length},header:function(a){return/h\d/i.test(a.nodeName)},text:function(a){var b=a.getAttribute("type"),c=a.type;return a.nodeName.toLowerCase()==="input"&&"text"===c&&(b===c||b===null)},radio:function(a){return a.nodeName.toLowerCase()==="input"&&"radio"===a.type},checkbox:function(a){return a.nodeName.toLowerCase()==="input"&&"checkbox"===a.type},file:function(a){return a.nodeName.toLowerCase()==="input"&&"file"===a.type},password:function(a){return a.nodeName.toLowerCase()==="input"&&"password"===a.type},submit:function(a){var b=a.nodeName.toLowerCase();return(b==="input"||b==="button")&&"submit"===a.type},image:function(a){return a.nodeName.toLowerCase()==="input"&&"image"===a.type},reset:function(a){var b=a.nodeName.toLowerCase();return(b==="input"||b==="button")&&"reset"===a.type},button:function(a){var b=a.nodeName.toLowerCase();return b==="input"&&"button"===a.type||b==="button"},input:function(a){return/input|select|textarea|button/i.test(a.nodeName)},focus:function(a){return a===a.ownerDocument.activeElement}},setFilters:{first:function(a,b){return b===0},last:function(a,b,c,d){return b===d.length-1},even:function(a,b){return b%2===0},odd:function(a,b){return b%2===1},lt:function(a,b,c){return b<c[3]-0},gt:function(a,b,c){return b>c[3]-0},nth:function(a,b,c){return c[3]-0===b},eq:function(a,b,c){return c[3]-0===b}},filter:{PSEUDO:function(a,b,c,d){var e=b[1],f=l.filters[e];if(f)return f(a,c,b,d);if(e==="contains")return(a.textContent||a.innerText||k.getText([a])||"").indexOf(b[3])>=0;if(e==="not"){var g=b[3];for(var h=0,i=g.length;h<i;h++)if(g[h]===a)return!1;return!0}k.error(e)},CHILD:function(a,b){var c=b[1],d=a;switch(c){case"only":case"first":while(d=d.previousSibling)if(d.nodeType===1)return!1;if(c==="first")return!0;d=a;case"last":while(d=d.nextSibling)if(d.nodeType===1)return!1;return!0;case"nth":var e=b[2],f=b[3];if(e===1&&f===0)return!0;var g=b[0],h=a.parentNode;if(h&&(h.sizcache!==g||!a.nodeIndex)){var i=0;for(d=h.firstChild;d;d=d.nextSibling)d.nodeType===1&&(d.nodeIndex=++i);h.sizcache=g}var j=a.nodeIndex-f;return e===0?j===0:j%e===0&&j/e>=0}},ID:function(a,b){return a.nodeType===1&&a.getAttribute("id")===b},TAG:function(a,b){return b==="*"&&a.nodeType===1||a.nodeName.toLowerCase()===b},CLASS:function(a,b){return(" "+(a.className||a.getAttribute("class"))+" ").indexOf(b)>-1},ATTR:function(a,b){var c=b[1],d=l.attrHandle[c]?l.attrHandle[c](a):a[c]!=null?a[c]:a.getAttribute(c),e=d+"",f=b[2],g=b[4];return d==null?f==="!=":f==="="?e===g:f==="*="?e.indexOf(g)>=0:f==="~="?(" "+e+" ").indexOf(g)>=0:g?f==="!="?e!==g:f==="^="?e.indexOf(g)===0:f==="$="?e.substr(e.length-g.length)===g:f==="|="?e===g||e.substr(0,g.length+1)===g+"-":!1:e&&d!==!1},POS:function(a,b,c,d){var e=b[2],f=l.setFilters[e];if(f)return f(a,c,b,d)}}},m=l.match.POS,n=function(a,b){return"\\"+(b-0+1)};for(var o in l.match)l.match[o]=new RegExp(l.match[o].source+/(?![^\[]*\])(?![^\(]*\))/.source),l.leftMatch[o]=new RegExp(/(^(?:.|\r|\n)*?)/.source+l.match[o].source.replace(/\\(\d+)/g,n));var p=function(a,b){a=Array.prototype.slice.call(a,0);if(b){b.push.apply(b,a);return b}return a};try{Array.prototype.slice.call(c.documentElement.childNodes,0)[0].nodeType}catch(q){p=function(a,b){var c=0,d=b||[];if(e.call(a)==="[object Array]")Array.prototype.push.apply(d,a);else if(typeof a.length=="number")for(var f=a.length;c<f;c++)d.push(a[c]);else for(;a[c];c++)d.push(a[c]);return d}}var r,s;c.documentElement.compareDocumentPosition?r=function(a,b){if(a===b){g=!0;return 0}if(!a.compareDocumentPosition||!b.compareDocumentPosition)return a.compareDocumentPosition?-1:1;return a.compareDocumentPosition(b)&4?-1:1}:(r=function(a,b){if(a===b){g=!0;return 0}if(a.sourceIndex&&b.sourceIndex)return a.sourceIndex-b.sourceIndex;var c,d,e=[],f=[],h=a.parentNode,i=b.parentNode,j=h;if(h===i)return s(a,b);if(!h)return-1;if(!i)return 1;while(j)e.unshift(j),j=j.parentNode;j=i;while(j)f.unshift(j),j=j.parentNode;c=e.length,d=f.length;for(var k=0;k<c&&k<d;k++)if(e[k]!==f[k])return s(e[k],f[k]);return k===c?s(a,f[k],-1):s(e[k],b,1)},s=function(a,b,c){if(a===b)return c;var d=a.nextSibling;while(d){if(d===b)return-1;d=d.nextSibling}return 1}),k.getText=function(a){var b="",c;for(var d=0;a[d];d++)c=a[d],c.nodeType===3||c.nodeType===4?b+=c.nodeValue:c.nodeType!==8&&(b+=k.getText(c.childNodes));return b},function(){var a=c.createElement("div"),d="script"+(new Date).getTime(),e=c.documentElement;a.innerHTML="<a name='"+d+"'/>",e.insertBefore(a,e.firstChild),c.getElementById(d)&&(l.find.ID=function(a,c,d){if(typeof c.getElementById!="undefined"&&!d){var e=c.getElementById(a[1]);return e?e.id===a[1]||typeof e.getAttributeNode!="undefined"&&e.getAttributeNode("id").nodeValue===a[1]?[e]:b:[]}},l.filter.ID=function(a,b){var c=typeof a.getAttributeNode!="undefined"&&a.getAttributeNode("id");return a.nodeType===1&&c&&c.nodeValue===b}),e.removeChild(a),e=a=null}(),function(){var a=c.createElement("div");a.appendChild(c.createComment("")),a.getElementsByTagName("*").length>0&&(l.find.TAG=function(a,b){var c=b.getElementsByTagName(a[1]);if(a[1]==="*"){var d=[];for(var e=0;c[e];e++)c[e].nodeType===1&&d.push(c[e]);c=d}return c}),a.innerHTML="<a href='#'></a>",a.firstChild&&typeof a.firstChild.getAttribute!="undefined"&&a.firstChild.getAttribute("href")!=="#"&&(l.attrHandle.href=function(a){return a.getAttribute("href",2)}),a=null}(),c.querySelectorAll&&function(){var a=k,b=c.createElement("div"),d="__sizzle__";b.innerHTML="<p class='TEST'></p>";if(!b.querySelectorAll||b.querySelectorAll(".TEST").length!==0){k=function(b,e,f,g){e=e||c;if(!g&&!k.isXML(e)){var h=/^(\w+$)|^\.([\w\-]+$)|^#([\w\-]+$)/.exec(b);if(h&&(e.nodeType===1||e.nodeType===9)){if(h[1])return p(e.getElementsByTagName(b),f);if(h[2]&&l.find.CLASS&&e.getElementsByClassName)return p(e.getElementsByClassName(h[2]),f)}if(e.nodeType===9){if(b==="body"&&e.body)return p([e.body],f);if(h&&h[3]){var i=e.getElementById(h[3]);if(!i||!i.parentNode)return p([],f);if(i.id===h[3])return p([i],f)}try{return p(e.querySelectorAll(b),f)}catch(j){}}else if(e.nodeType===1&&e.nodeName.toLowerCase()!=="object"){var m=e,n=e.getAttribute("id"),o=n||d,q=e.parentNode,r=/^\s*[+~]/.test(b);n?o=o.replace(/'/g,"\\$&"):e.setAttribute("id",o),r&&q&&(e=e.parentNode);try{if(!r||q)return p(e.querySelectorAll("[id='"+o+"'] "+b),f)}catch(s){}finally{n||m.removeAttribute("id")}}}return a(b,e,f,g)};for(var e in a)k[e]=a[e];b=null}}(),function(){var a=c.documentElement,b=a.matchesSelector||a.mozMatchesSelector||a.webkitMatchesSelector||a.msMatchesSelector;if(b){var d=!b.call(c.createElement("div"),"div"),e=!1;try{b.call(c.documentElement,"[test!='']:sizzle")}catch(f){e=!0}k.matchesSelector=function(a,c){c=c.replace(/\=\s*([^'"\]]*)\s*\]/g,"='$1']");if(!k.isXML(a))try{if(e||!l.match.PSEUDO.test(c)&&!/!=/.test(c)){var f=b.call(a,c);if(f||!d||a.document&&a.document.nodeType!==11)return f}}catch(g){}return k(c,null,null,[a]).length>0}}}(),function(){var a=c.createElement("div");a.innerHTML="<div class='test e'></div><div class='test'></div>";if(!!a.getElementsByClassName&&a.getElementsByClassName("e").length!==0){a.lastChild.className="e";if(a.getElementsByClassName("e").length===1)return;l.order.splice(1,0,"CLASS"),l.find.CLASS=function(a,b,c){if(typeof b.getElementsByClassName!="undefined"&&!c)return b.getElementsByClassName(a[1])},a=null}}(),c.documentElement.contains?k.contains=function(a,b){return a!==b&&(a.contains?a.contains(b):!0)}:c.documentElement.compareDocumentPosition?k.contains=function(a,b){return!!(a.compareDocumentPosition(b)&16)}:k.contains=function(){return!1},k.isXML=function(a){var b=(a?a.ownerDocument||a:0).documentElement;return b?b.nodeName!=="HTML":!1};var v=function(a,b){var c,d=[],e="",f=b.nodeType?[b]:b;while(c=l.match.PSEUDO.exec(a))e+=c[0],a=a.replace(l.match.PSEUDO,"");a=l.relative[a]?a+"*":a;for(var g=0,h=f.length;g<h;g++)k(a,f[g],d);return k.filter(e,d)};f.find=k,f.expr=k.selectors,f.expr[":"]=f.expr.filters,f.unique=k.uniqueSort,f.text=k.getText,f.isXMLDoc=k.isXML,f.contains=k.contains}();var N=/Until$/,O=/^(?:parents|prevUntil|prevAll)/,P=/,/,Q=/^.[^:#\[\.,]*$/,R=Array.prototype.slice,S=f.expr.match.POS,T={children:!0,contents:!0,next:!0,prev:!0};f.fn.extend({find:function(a){var b=this,c,d;if(typeof a!="string")return f(a).filter(function(){for(c=0,d=b.length;c<d;c++)if(f.contains(b[c],this))return!0});var e=this.pushStack("","find",a),g,h,i;for(c=0,d=this.length;c<d;c++){g=e.length,f.find(a,this[c],e);if(c>0)for(h=g;h<e.length;h++)for(i=0;i<g;i++)if(e[i]===e[h]){e.splice(h--,1);break}}return e},has:function(a){var b=f(a);return this.filter(function(){for(var a=0,c=b.length;a<c;a++)if(f.contains(this,b[a]))return!0})},not:function(a){return this.pushStack(V(this,a,!1),"not",a)},filter:function(a){return this.pushStack(V(this,a,!0),"filter",a)},is:function(a){return!!a&&(typeof a=="string"?f.filter(a,this).length>0:this.filter(a).length>0)},closest:function(a,b){var c=[],d,e,g=this[0];if(f.isArray(a)){var h,i,j={},k=1;if(g&&a.length){for(d=0,e=a.length;d<e;d++)i=a[d],j[i]||(j[i]=S.test(i)?f(i,b||this.context):i);while(g&&g.ownerDocument&&g!==b){for(i in j)h=j[i],(h.jquery?h.index(g)>-1:f(g).is(h))&&c.push({selector:i,elem:g,level:k});g=g.parentNode,k++}}return c}var l=S.test(a)||typeof a!="string"?f(a,b||this.context):0;for(d=0,e=this.length;d<e;d++){g=this[d];while(g){if(l?l.index(g)>-1:f.find.matchesSelector(g,a)){c.push(g);break}g=g.parentNode;if(!g||!g.ownerDocument||g===b||g.nodeType===11)break}}c=c.length>1?f.unique(c):c;return this.pushStack(c,"closest",a)},index:function(a){if(!a)return this[0]&&this[0].parentNode?this.prevAll().length:-1;if(typeof a=="string")return f.inArray(this[0],f(a));return f.inArray(a.jquery?a[0]:a,this)},add:function(a,b){var c=typeof a=="string"?f(a,b):f.makeArray(a&&a.nodeType?[a]:a),d=f.merge(this.get(),c);return this.pushStack(U(c[0])||U(d[0])?d:f.unique(d))},andSelf:function(){return this.add(this.prevObject)}}),f.each({parent:function(a){var b=a.parentNode;return b&&b.nodeType!==11?b:null},parents:function(a){return f.dir(a,"parentNode")},parentsUntil:function(a,b,c){return f.dir(a,"parentNode",c)},next:function(a){return f.nth(a,2,"nextSibling")},prev:function(a){return f.nth(a,2,"previousSibling")},nextAll:function(a){return f.dir(a,"nextSibling")},prevAll:function(a){return f.dir(a,"previousSibling")},nextUntil:function(a,b,c){return f.dir(a,"nextSibling",c)},prevUntil:function(a,b,c){return f.dir(a,"previousSibling",c)},siblings:function(a){return f.sibling(a.parentNode.firstChild,a)},children:function(a){return f.sibling(a.firstChild)},contents:function(a){return f.nodeName(a,"iframe")?a.contentDocument||a.contentWindow.document:f.makeArray(a.childNodes)}},function(a,b){f.fn[a]=function(c,d){var e=f.map(this,b,c),g=R.call(arguments);N.test(a)||(d=c),d&&typeof d=="string"&&(e=f.filter(d,e)),e=this.length>1&&!T[a]?f.unique(e):e,(this.length>1||P.test(d))&&O.test(a)&&(e=e.reverse());return this.pushStack(e,a,g.join(","))}}),f.extend({filter:function(a,b,c){c&&(a=":not("+a+")");return b.length===1?f.find.matchesSelector(b[0],a)?[b[0]]:[]:f.find.matches(a,b)},dir:function(a,c,d){var e=[],g=a[c];while(g&&g.nodeType!==9&&(d===b||g.nodeType!==1||!f(g).is(d)))g.nodeType===1&&e.push(g),g=g[c];return e},nth:function(a,b,c,d){b=b||1;var e=0;for(;a;a=a[c])if(a.nodeType===1&&++e===b)break;return a},sibling:function(a,b){var c=[];for(;a;a=a.nextSibling)a.nodeType===1&&a!==b&&c.push(a);return c}});var W=/ jQuery\d+="(?:\d+|null)"/g,X=/^\s+/,Y=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/ig,Z=/<([\w:]+)/,$=/<tbody/i,_=/<|&#?\w+;/,ba=/<(?:script|object|embed|option|style)/i,bb=/checked\s*(?:[^=]|=\s*.checked.)/i,bc=/\/(java|ecma)script/i,bd=/^\s*<!(?:\[CDATA\[|\-\-)/,be={option:[1,"<select multiple='multiple'>","</select>"],legend:[1,"<fieldset>","</fieldset>"],thead:[1,"<table>","</table>"],tr:[2,"<table><tbody>","</tbody></table>"],td:[3,"<table><tbody><tr>","</tr></tbody></table>"],col:[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"],area:[1,"<map>","</map>"],_default:[0,"",""]};be.optgroup=be.option,be.tbody=be.tfoot=be.colgroup=be.caption=be.thead,be.th=be.td,f.support.htmlSerialize||(be._default=[1,"div<div>","</div>"]),f.fn.extend({text:function(a){if(f.isFunction(a))return this.each(function(b){var c=f(this);c.text(a.call(this,b,c.text()))});if(typeof a!="object"&&a!==b)return this.empty().append((this[0]&&this[0].ownerDocument||c).createTextNode(a));return f.text(this)},wrapAll:function(a){if(f.isFunction(a))return this.each(function(b){f(this).wrapAll(a.call(this,b))});if(this[0]){var b=f(a,this[0].ownerDocument).eq(0).clone(!0);this[0].parentNode&&b.insertBefore(this[0]),b.map(function(){var a=this;while(a.firstChild&&a.firstChild.nodeType===1)a=a.firstChild;return a}).append(this)}return this},wrapInner:function(a){if(f.isFunction(a))return this.each(function(b){f(this).wrapInner(a.call(this,b))});return this.each(function(){var b=f(this),c=b.contents();c.length?c.wrapAll(a):b.append(a)})},wrap:function(a){return this.each(function(){f(this).wrapAll(a)})},unwrap:function(){return this.parent().each(function(){f.nodeName(this,"body")||f(this).replaceWith(this.childNodes)}).end()},append:function(){return this.domManip(arguments,!0,function(a){this.nodeType===1&&this.appendChild(a)})},prepend:function(){return this.domManip(arguments,!0,function(a){this.nodeType===1&&this.insertBefore(a,this.firstChild)})},before:function(){if(this[0]&&this[0].parentNode)return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this)});if(arguments.length){var a=f(arguments[0]);a.push.apply(a,this.toArray());return this.pushStack(a,"before",arguments)}},after:function(){if(this[0]&&this[0].parentNode)return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this.nextSibling)});if(arguments.length){var a=this.pushStack(this,"after",arguments);a.push.apply(a,f(arguments[0]).toArray());return a}},remove:function(a,b){for(var c=0,d;(d=this[c])!=null;c++)if(!a||f.filter(a,[d]).length)!b&&d.nodeType===1&&(f.cleanData(d.getElementsByTagName("*")),f.cleanData([d])),d.parentNode&&d.parentNode.removeChild(d);return this},empty:function(){for(var a=0,b;(b=this[a])!=null;a++){b.nodeType===1&&f.cleanData(b.getElementsByTagName("*"));while(b.firstChild)b.removeChild(b.firstChild)}return this},clone:function(a,b){a=a==null?!1:a,b=b==null?a:b;return this.map(function(){return f.clone(this,a,b)})},html:function(a){if(a===b)return this[0]&&this[0].nodeType===1?this[0].innerHTML.replace(W,""):null;if(typeof a=="string"&&!ba.test(a)&&(f.support.leadingWhitespace||!X.test(a))&&!be[(Z.exec(a)||["",""])[1].toLowerCase()]){a=a.replace(Y,"<$1></$2>");try{for(var c=0,d=this.length;c<d;c++)this[c].nodeType===1&&(f.cleanData(this[c].getElementsByTagName("*")),this[c].innerHTML=a)}catch(e){this.empty().append(a)}}else f.isFunction(a)?this.each(function(b){var c=f(this);c.html(a.call(this,b,c.html()))}):this.empty().append(a);return this},replaceWith:function(a){if(this[0]&&this[0].parentNode){if(f.isFunction(a))return this.each(function(b){var c=f(this),d=c.html();c.replaceWith(a.call(this,b,d))});typeof a!="string"&&(a=f(a).detach());return this.each(function(){var b=this.nextSibling,c=this.parentNode;f(this).remove(),b?f(b).before(a):f(c).append(a)})}return this.length?this.pushStack(f(f.isFunction(a)?a():a),"replaceWith",a):this},detach:function(a){return this.remove(a,!0)},domManip:function(a,c,d){var e,g,h,i,j=a[0],k=[];if(!f.support.checkClone&&arguments.length===3&&typeof j=="string"&&bb.test(j))return this.each(function(){f(this).domManip(a,c,d,!0)});if(f.isFunction(j))return this.each(function(e){var g=f(this);a[0]=j.call(this,e,c?g.html():b),g.domManip(a,c,d)});if(this[0]){i=j&&j.parentNode,f.support.parentNode&&i&&i.nodeType===11&&i.childNodes.length===this.length?e={fragment:i}:e=f.buildFragment(a,this,k),h=e.fragment,h.childNodes.length===1?g=h=h.firstChild:g=h.firstChild;if(g){c=c&&f.nodeName(g,"tr");for(var l=0,m=this.length,n=m-1;l<m;l++)d.call(c?bf(this[l],g):this[l],e.cacheable||m>1&&l<n?f.clone(h,!0,!0):h)}k.length&&f.each(k,bl)}return this}}),f.buildFragment=function(a,b,d){var e,g,h,i;b&&b[0]&&(i=b[0].ownerDocument||b[0]),i.createDocumentFragment||(i=c),a.length===1&&typeof a[0]=="string"&&a[0].length<512&&i===c&&a[0].charAt(0)==="<"&&!ba.test(a[0])&&(f.support.checkClone||!bb.test(a[0]))&&(g=!0,h=f.fragments[a[0]],h&&h!==1&&(e=h)),e||(e=i.createDocumentFragment(),f.clean(a,i,e,d)),g&&(f.fragments[a[0]]=h?e:1); return{fragment:e,cacheable:g}},f.fragments={},f.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(a,b){f.fn[a]=function(c){var d=[],e=f(c),g=this.length===1&&this[0].parentNode;if(g&&g.nodeType===11&&g.childNodes.length===1&&e.length===1){e[b](this[0]);return this}for(var h=0,i=e.length;h<i;h++){var j=(h>0?this.clone(!0):this).get();f(e[h])[b](j),d=d.concat(j)}return this.pushStack(d,a,e.selector)}}),f.extend({clone:function(a,b,c){var d=a.cloneNode(!0),e,g,h;if((!f.support.noCloneEvent||!f.support.noCloneChecked)&&(a.nodeType===1||a.nodeType===11)&&!f.isXMLDoc(a)){bh(a,d),e=bi(a),g=bi(d);for(h=0;e[h];++h)g[h]&&bh(e[h],g[h])}if(b){bg(a,d);if(c){e=bi(a),g=bi(d);for(h=0;e[h];++h)bg(e[h],g[h])}}e=g=null;return d},clean:function(a,b,d,e){var g;b=b||c,typeof b.createElement=="undefined"&&(b=b.ownerDocument||b[0]&&b[0].ownerDocument||c);var h=[],i;for(var j=0,k;(k=a[j])!=null;j++){typeof k=="number"&&(k+="");if(!k)continue;if(typeof k=="string")if(!_.test(k))k=b.createTextNode(k);else{k=k.replace(Y,"<$1></$2>");var l=(Z.exec(k)||["",""])[1].toLowerCase(),m=be[l]||be._default,n=m[0],o=b.createElement("div");o.innerHTML=m[1]+k+m[2];while(n--)o=o.lastChild;if(!f.support.tbody){var p=$.test(k),q=l==="table"&&!p?o.firstChild&&o.firstChild.childNodes:m[1]==="<table>"&&!p?o.childNodes:[];for(i=q.length-1;i>=0;--i)f.nodeName(q[i],"tbody")&&!q[i].childNodes.length&&q[i].parentNode.removeChild(q[i])}!f.support.leadingWhitespace&&X.test(k)&&o.insertBefore(b.createTextNode(X.exec(k)[0]),o.firstChild),k=o.childNodes}var r;if(!f.support.appendChecked)if(k[0]&&typeof (r=k.length)=="number")for(i=0;i<r;i++)bk(k[i]);else bk(k);k.nodeType?h.push(k):h=f.merge(h,k)}if(d){g=function(a){return!a.type||bc.test(a.type)};for(j=0;h[j];j++)if(e&&f.nodeName(h[j],"script")&&(!h[j].type||h[j].type.toLowerCase()==="text/javascript"))e.push(h[j].parentNode?h[j].parentNode.removeChild(h[j]):h[j]);else{if(h[j].nodeType===1){var s=f.grep(h[j].getElementsByTagName("script"),g);h.splice.apply(h,[j+1,0].concat(s))}d.appendChild(h[j])}}return h},cleanData:function(a){var b,c,d=f.cache,e=f.expando,g=f.event.special,h=f.support.deleteExpando;for(var i=0,j;(j=a[i])!=null;i++){if(j.nodeName&&f.noData[j.nodeName.toLowerCase()])continue;c=j[f.expando];if(c){b=d[c]&&d[c][e];if(b&&b.events){for(var k in b.events)g[k]?f.event.remove(j,k):f.removeEvent(j,k,b.handle);b.handle&&(b.handle.elem=null)}h?delete j[f.expando]:j.removeAttribute&&j.removeAttribute(f.expando),delete d[c]}}}});var bm=/alpha\([^)]*\)/i,bn=/opacity=([^)]*)/,bo=/([A-Z]|^ms)/g,bp=/^-?\d+(?:px)?$/i,bq=/^-?\d/,br=/^([\-+])=([\-+.\de]+)/,bs={position:"absolute",visibility:"hidden",display:"block"},bt=["Left","Right"],bu=["Top","Bottom"],bv,bw,bx;f.fn.css=function(a,c){if(arguments.length===2&&c===b)return this;return f.access(this,a,c,!0,function(a,c,d){return d!==b?f.style(a,c,d):f.css(a,c)})},f.extend({cssHooks:{opacity:{get:function(a,b){if(b){var c=bv(a,"opacity","opacity");return c===""?"1":c}return a.style.opacity}}},cssNumber:{fillOpacity:!0,fontWeight:!0,lineHeight:!0,opacity:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{"float":f.support.cssFloat?"cssFloat":"styleFloat"},style:function(a,c,d,e){if(!!a&&a.nodeType!==3&&a.nodeType!==8&&!!a.style){var g,h,i=f.camelCase(c),j=a.style,k=f.cssHooks[i];c=f.cssProps[i]||i;if(d===b){if(k&&"get"in k&&(g=k.get(a,!1,e))!==b)return g;return j[c]}h=typeof d,h==="string"&&(g=br.exec(d))&&(d=+(g[1]+1)*+g[2]+parseFloat(f.css(a,c)),h="number");if(d==null||h==="number"&&isNaN(d))return;h==="number"&&!f.cssNumber[i]&&(d+="px");if(!k||!("set"in k)||(d=k.set(a,d))!==b)try{j[c]=d}catch(l){}}},css:function(a,c,d){var e,g;c=f.camelCase(c),g=f.cssHooks[c],c=f.cssProps[c]||c,c==="cssFloat"&&(c="float");if(g&&"get"in g&&(e=g.get(a,!0,d))!==b)return e;if(bv)return bv(a,c)},swap:function(a,b,c){var d={};for(var e in b)d[e]=a.style[e],a.style[e]=b[e];c.call(a);for(e in b)a.style[e]=d[e]}}),f.curCSS=f.css,f.each(["height","width"],function(a,b){f.cssHooks[b]={get:function(a,c,d){var e;if(c){if(a.offsetWidth!==0)return by(a,b,d);f.swap(a,bs,function(){e=by(a,b,d)});return e}},set:function(a,b){if(!bp.test(b))return b;b=parseFloat(b);if(b>=0)return b+"px"}}}),f.support.opacity||(f.cssHooks.opacity={get:function(a,b){return bn.test((b&&a.currentStyle?a.currentStyle.filter:a.style.filter)||"")?parseFloat(RegExp.$1)/100+"":b?"1":""},set:function(a,b){var c=a.style,d=a.currentStyle,e=f.isNaN(b)?"":"alpha(opacity="+b*100+")",g=d&&d.filter||c.filter||"";c.zoom=1;if(b>=1&&f.trim(g.replace(bm,""))===""){c.removeAttribute("filter");if(d&&!d.filter)return}c.filter=bm.test(g)?g.replace(bm,e):g+" "+e}}),f(function(){f.support.reliableMarginRight||(f.cssHooks.marginRight={get:function(a,b){var c;f.swap(a,{display:"inline-block"},function(){b?c=bv(a,"margin-right","marginRight"):c=a.style.marginRight});return c}})}),c.defaultView&&c.defaultView.getComputedStyle&&(bw=function(a,c){var d,e,g;c=c.replace(bo,"-$1").toLowerCase();if(!(e=a.ownerDocument.defaultView))return b;if(g=e.getComputedStyle(a,null))d=g.getPropertyValue(c),d===""&&!f.contains(a.ownerDocument.documentElement,a)&&(d=f.style(a,c));return d}),c.documentElement.currentStyle&&(bx=function(a,b){var c,d=a.currentStyle&&a.currentStyle[b],e=a.runtimeStyle&&a.runtimeStyle[b],f=a.style;!bp.test(d)&&bq.test(d)&&(c=f.left,e&&(a.runtimeStyle.left=a.currentStyle.left),f.left=b==="fontSize"?"1em":d||0,d=f.pixelLeft+"px",f.left=c,e&&(a.runtimeStyle.left=e));return d===""?"auto":d}),bv=bw||bx,f.expr&&f.expr.filters&&(f.expr.filters.hidden=function(a){var b=a.offsetWidth,c=a.offsetHeight;return b===0&&c===0||!f.support.reliableHiddenOffsets&&(a.style.display||f.css(a,"display"))==="none"},f.expr.filters.visible=function(a){return!f.expr.filters.hidden(a)});var bz=/%20/g,bA=/\[\]$/,bB=/\r?\n/g,bC=/#.*$/,bD=/^(.*?):[ \t]*([^\r\n]*)\r?$/mg,bE=/^(?:color|date|datetime|datetime-local|email|hidden|month|number|password|range|search|tel|text|time|url|week)$/i,bF=/^(?:about|app|app\-storage|.+\-extension|file|res|widget):$/,bG=/^(?:GET|HEAD)$/,bH=/^\/\//,bI=/\?/,bJ=/<script\b[^<]*(?:(?!<\/script>)<[^<]*)*<\/script>/gi,bK=/^(?:select|textarea)/i,bL=/\s+/,bM=/([?&])_=[^&]*/,bN=/^([\w\+\.\-]+:)(?:\/\/([^\/?#:]*)(?::(\d+))?)?/,bO=f.fn.load,bP={},bQ={},bR,bS,bT=["*/"]+["*"];try{bR=e.href}catch(bU){bR=c.createElement("a"),bR.href="",bR=bR.href}bS=bN.exec(bR.toLowerCase())||[],f.fn.extend({load:function(a,c,d){if(typeof a!="string"&&bO)return bO.apply(this,arguments);if(!this.length)return this;var e=a.indexOf(" ");if(e>=0){var g=a.slice(e,a.length);a=a.slice(0,e)}var h="GET";c&&(f.isFunction(c)?(d=c,c=b):typeof c=="object"&&(c=f.param(c,f.ajaxSettings.traditional),h="POST"));var i=this;f.ajax({url:a,type:h,dataType:"html",data:c,complete:function(a,b,c){c=a.responseText,a.isResolved()&&(a.done(function(a){c=a}),i.html(g?f("<div>").append(c.replace(bJ,"")).find(g):c)),d&&i.each(d,[c,b,a])}});return this},serialize:function(){return f.param(this.serializeArray())},serializeArray:function(){return this.map(function(){return this.elements?f.makeArray(this.elements):this}).filter(function(){return this.name&&!this.disabled&&(this.checked||bK.test(this.nodeName)||bE.test(this.type))}).map(function(a,b){var c=f(this).val();return c==null?null:f.isArray(c)?f.map(c,function(a,c){return{name:b.name,value:a.replace(bB,"\r\n")}}):{name:b.name,value:c.replace(bB,"\r\n")}}).get()}}),f.each("ajaxStart ajaxStop ajaxComplete ajaxError ajaxSuccess ajaxSend".split(" "),function(a,b){f.fn[b]=function(a){return this.bind(b,a)}}),f.each(["get","post"],function(a,c){f[c]=function(a,d,e,g){f.isFunction(d)&&(g=g||e,e=d,d=b);return f.ajax({type:c,url:a,data:d,success:e,dataType:g})}}),f.extend({getScript:function(a,c){return f.get(a,b,c,"script")},getJSON:function(a,b,c){return f.get(a,b,c,"json")},ajaxSetup:function(a,b){b?bX(a,f.ajaxSettings):(b=a,a=f.ajaxSettings),bX(a,b);return a},ajaxSettings:{url:bR,isLocal:bF.test(bS[1]),global:!0,type:"GET",contentType:"application/x-www-form-urlencoded",processData:!0,async:!0,accepts:{xml:"application/xml, text/xml",html:"text/html",text:"text/plain",json:"application/json, text/javascript","*":bT},contents:{xml:/xml/,html:/html/,json:/json/},responseFields:{xml:"responseXML",text:"responseText"},converters:{"* text":a.String,"text html":!0,"text json":f.parseJSON,"text xml":f.parseXML},flatOptions:{context:!0,url:!0}},ajaxPrefilter:bV(bP),ajaxTransport:bV(bQ),ajax:function(a,c){function w(a,c,l,m){if(s!==2){s=2,q&&clearTimeout(q),p=b,n=m||"",v.readyState=a>0?4:0;var o,r,u,w=c,x=l?bZ(d,v,l):b,y,z;if(a>=200&&a<300||a===304){if(d.ifModified){if(y=v.getResponseHeader("Last-Modified"))f.lastModified[k]=y;if(z=v.getResponseHeader("Etag"))f.etag[k]=z}if(a===304)w="notmodified",o=!0;else try{r=b$(d,x),w="success",o=!0}catch(A){w="parsererror",u=A}}else{u=w;if(!w||a)w="error",a<0&&(a=0)}v.status=a,v.statusText=""+(c||w),o?h.resolveWith(e,[r,w,v]):h.rejectWith(e,[v,w,u]),v.statusCode(j),j=b,t&&g.trigger("ajax"+(o?"Success":"Error"),[v,d,o?r:u]),i.resolveWith(e,[v,w]),t&&(g.trigger("ajaxComplete",[v,d]),--f.active||f.event.trigger("ajaxStop"))}}typeof a=="object"&&(c=a,a=b),c=c||{};var d=f.ajaxSetup({},c),e=d.context||d,g=e!==d&&(e.nodeType||e instanceof f)?f(e):f.event,h=f.Deferred(),i=f._Deferred(),j=d.statusCode||{},k,l={},m={},n,o,p,q,r,s=0,t,u,v={readyState:0,setRequestHeader:function(a,b){if(!s){var c=a.toLowerCase();a=m[c]=m[c]||a,l[a]=b}return this},getAllResponseHeaders:function(){return s===2?n:null},getResponseHeader:function(a){var c;if(s===2){if(!o){o={};while(c=bD.exec(n))o[c[1].toLowerCase()]=c[2]}c=o[a.toLowerCase()]}return c===b?null:c},overrideMimeType:function(a){s||(d.mimeType=a);return this},abort:function(a){a=a||"abort",p&&p.abort(a),w(0,a);return this}};h.promise(v),v.success=v.done,v.error=v.fail,v.complete=i.done,v.statusCode=function(a){if(a){var b;if(s<2)for(b in a)j[b]=[j[b],a[b]];else b=a[v.status],v.then(b,b)}return this},d.url=((a||d.url)+"").replace(bC,"").replace(bH,bS[1]+"//"),d.dataTypes=f.trim(d.dataType||"*").toLowerCase().split(bL),d.crossDomain==null&&(r=bN.exec(d.url.toLowerCase()),d.crossDomain=!(!r||r[1]==bS[1]&&r[2]==bS[2]&&(r[3]||(r[1]==="http:"?80:443))==(bS[3]||(bS[1]==="http:"?80:443)))),d.data&&d.processData&&typeof d.data!="string"&&(d.data=f.param(d.data,d.traditional)),bW(bP,d,c,v);if(s===2)return!1;t=d.global,d.type=d.type.toUpperCase(),d.hasContent=!bG.test(d.type),t&&f.active++===0&&f.event.trigger("ajaxStart");if(!d.hasContent){d.data&&(d.url+=(bI.test(d.url)?"&":"?")+d.data,delete d.data),k=d.url;if(d.cache===!1){var x=f.now(),y=d.url.replace(bM,"$1_="+x);d.url=y+(y===d.url?(bI.test(d.url)?"&":"?")+"_="+x:"")}}(d.data&&d.hasContent&&d.contentType!==!1||c.contentType)&&v.setRequestHeader("Content-Type",d.contentType),d.ifModified&&(k=k||d.url,f.lastModified[k]&&v.setRequestHeader("If-Modified-Since",f.lastModified[k]),f.etag[k]&&v.setRequestHeader("If-None-Match",f.etag[k])),v.setRequestHeader("Accept",d.dataTypes[0]&&d.accepts[d.dataTypes[0]]?d.accepts[d.dataTypes[0]]+(d.dataTypes[0]!=="*"?", "+bT+"; q=0.01":""):d.accepts["*"]);for(u in d.headers)v.setRequestHeader(u,d.headers[u]);if(d.beforeSend&&(d.beforeSend.call(e,v,d)===!1||s===2)){v.abort();return!1}for(u in{success:1,error:1,complete:1})v[u](d[u]);p=bW(bQ,d,c,v);if(!p)w(-1,"No Transport");else{v.readyState=1,t&&g.trigger("ajaxSend",[v,d]),d.async&&d.timeout>0&&(q=setTimeout(function(){v.abort("timeout")},d.timeout));try{s=1,p.send(l,w)}catch(z){s<2?w(-1,z):f.error(z)}}return v},param:function(a,c){var d=[],e=function(a,b){b=f.isFunction(b)?b():b,d[d.length]=encodeURIComponent(a)+"="+encodeURIComponent(b)};c===b&&(c=f.ajaxSettings.traditional);if(f.isArray(a)||a.jquery&&!f.isPlainObject(a))f.each(a,function(){e(this.name,this.value)});else for(var g in a)bY(g,a[g],c,e);return d.join("&").replace(bz,"+")}}),f.extend({active:0,lastModified:{},etag:{}});var b_=f.now(),ca=/(\=)\?(&|$)|\?\?/i;f.ajaxSetup({jsonp:"callback",jsonpCallback:function(){return f.expando+"_"+b_++}}),f.ajaxPrefilter("json jsonp",function(b,c,d){var e=b.contentType==="application/x-www-form-urlencoded"&&typeof b.data=="string";if(b.dataTypes[0]==="jsonp"||b.jsonp!==!1&&(ca.test(b.url)||e&&ca.test(b.data))){var g,h=b.jsonpCallback=f.isFunction(b.jsonpCallback)?b.jsonpCallback():b.jsonpCallback,i=a[h],j=b.url,k=b.data,l="$1"+h+"$2";b.jsonp!==!1&&(j=j.replace(ca,l),b.url===j&&(e&&(k=k.replace(ca,l)),b.data===k&&(j+=(/\?/.test(j)?"&":"?")+b.jsonp+"="+h))),b.url=j,b.data=k,a[h]=function(a){g=[a]},d.always(function(){a[h]=i,g&&f.isFunction(i)&&a[h](g[0])}),b.converters["script json"]=function(){g||f.error(h+" was not called");return g[0]},b.dataTypes[0]="json";return"script"}}),f.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/javascript|ecmascript/},converters:{"text script":function(a){f.globalEval(a);return a}}}),f.ajaxPrefilter("script",function(a){a.cache===b&&(a.cache=!1),a.crossDomain&&(a.type="GET",a.global=!1)}),f.ajaxTransport("script",function(a){if(a.crossDomain){var d,e=c.head||c.getElementsByTagName("head")[0]||c.documentElement;return{send:function(f,g){d=c.createElement("script"),d.async="async",a.scriptCharset&&(d.charset=a.scriptCharset),d.src=a.url,d.onload=d.onreadystatechange=function(a,c){if(c||!d.readyState||/loaded|complete/.test(d.readyState))d.onload=d.onreadystatechange=null,e&&d.parentNode&&e.removeChild(d),d=b,c||g(200,"success")},e.insertBefore(d,e.firstChild)},abort:function(){d&&d.onload(0,1)}}}});var cb=a.ActiveXObject?function(){for(var a in cd)cd[a](0,1)}:!1,cc=0,cd;f.ajaxSettings.xhr=a.ActiveXObject?function(){return!this.isLocal&&ce()||cf()}:ce,function(a){f.extend(f.support,{ajax:!!a,cors:!!a&&"withCredentials"in a})}(f.ajaxSettings.xhr()),f.support.ajax&&f.ajaxTransport(function(c){if(!c.crossDomain||f.support.cors){var d;return{send:function(e,g){var h=c.xhr(),i,j;c.username?h.open(c.type,c.url,c.async,c.username,c.password):h.open(c.type,c.url,c.async);if(c.xhrFields)for(j in c.xhrFields)h[j]=c.xhrFields[j];c.mimeType&&h.overrideMimeType&&h.overrideMimeType(c.mimeType),!c.crossDomain&&!e["X-Requested-With"]&&(e["X-Requested-With"]="XMLHttpRequest");try{for(j in e)h.setRequestHeader(j,e[j])}catch(k){}h.send(c.hasContent&&c.data||null),d=function(a,e){var j,k,l,m,n;try{if(d&&(e||h.readyState===4)){d=b,i&&(h.onreadystatechange=f.noop,cb&&delete cd[i]);if(e)h.readyState!==4&&h.abort();else{j=h.status,l=h.getAllResponseHeaders(),m={},n=h.responseXML,n&&n.documentElement&&(m.xml=n),m.text=h.responseText;try{k=h.statusText}catch(o){k=""}!j&&c.isLocal&&!c.crossDomain?j=m.text?200:404:j===1223&&(j=204)}}}catch(p){e||g(-1,p)}m&&g(j,k,m,l)},!c.async||h.readyState===4?d():(i=++cc,cb&&(cd||(cd={},f(a).unload(cb)),cd[i]=d),h.onreadystatechange=d)},abort:function(){d&&d(0,1)}}}});var cg={},ch,ci,cj=/^(?:toggle|show|hide)$/,ck=/^([+\-]=)?([\d+.\-]+)([a-z%]*)$/i,cl,cm=[["height","marginTop","marginBottom","paddingTop","paddingBottom"],["width","marginLeft","marginRight","paddingLeft","paddingRight"],["opacity"]],cn;f.fn.extend({show:function(a,b,c){var d,e;if(a||a===0)return this.animate(cq("show",3),a,b,c);for(var g=0,h=this.length;g<h;g++)d=this[g],d.style&&(e=d.style.display,!f._data(d,"olddisplay")&&e==="none"&&(e=d.style.display=""),e===""&&f.css(d,"display")==="none"&&f._data(d,"olddisplay",cr(d.nodeName)));for(g=0;g<h;g++){d=this[g];if(d.style){e=d.style.display;if(e===""||e==="none")d.style.display=f._data(d,"olddisplay")||""}}return this},hide:function(a,b,c){if(a||a===0)return this.animate(cq("hide",3),a,b,c);for(var d=0,e=this.length;d<e;d++)if(this[d].style){var g=f.css(this[d],"display");g!=="none"&&!f._data(this[d],"olddisplay")&&f._data(this[d],"olddisplay",g)}for(d=0;d<e;d++)this[d].style&&(this[d].style.display="none");return this},_toggle:f.fn.toggle,toggle:function(a,b,c){var d=typeof a=="boolean";f.isFunction(a)&&f.isFunction(b)?this._toggle.apply(this,arguments):a==null||d?this.each(function(){var b=d?a:f(this).is(":hidden");f(this)[b?"show":"hide"]()}):this.animate(cq("toggle",3),a,b,c);return this},fadeTo:function(a,b,c,d){return this.filter(":hidden").css("opacity",0).show().end().animate({opacity:b},a,c,d)},animate:function(a,b,c,d){var e=f.speed(b,c,d);if(f.isEmptyObject(a))return this.each(e.complete,[!1]);a=f.extend({},a);return this[e.queue===!1?"each":"queue"](function(){e.queue===!1&&f._mark(this);var b=f.extend({},e),c=this.nodeType===1,d=c&&f(this).is(":hidden"),g,h,i,j,k,l,m,n,o;b.animatedProperties={};for(i in a){g=f.camelCase(i),i!==g&&(a[g]=a[i],delete a[i]),h=a[g],f.isArray(h)?(b.animatedProperties[g]=h[1],h=a[g]=h[0]):b.animatedProperties[g]=b.specialEasing&&b.specialEasing[g]||b.easing||"swing";if(h==="hide"&&d||h==="show"&&!d)return b.complete.call(this);c&&(g==="height"||g==="width")&&(b.overflow=[this.style.overflow,this.style.overflowX,this.style.overflowY],f.css(this,"display")==="inline"&&f.css(this,"float")==="none"&&(f.support.inlineBlockNeedsLayout?(j=cr(this.nodeName),j==="inline"?this.style.display="inline-block":(this.style.display="inline",this.style.zoom=1)):this.style.display="inline-block"))}b.overflow!=null&&(this.style.overflow="hidden");for(i in a)k=new f.fx(this,b,i),h=a[i],cj.test(h)?k[h==="toggle"?d?"show":"hide":h]():(l=ck.exec(h),m=k.cur(),l?(n=parseFloat(l[2]),o=l[3]||(f.cssNumber[i]?"":"px"),o!=="px"&&(f.style(this,i,(n||1)+o),m=(n||1)/k.cur()*m,f.style(this,i,m+o)),l[1]&&(n=(l[1]==="-="?-1:1)*n+m),k.custom(m,n,o)):k.custom(m,h,""));return!0})},stop:function(a,b){a&&this.queue([]),this.each(function(){var a=f.timers,c=a.length;b||f._unmark(!0,this);while(c--)a[c].elem===this&&(b&&a[c](!0),a.splice(c,1))}),b||this.dequeue();return this}}),f.each({slideDown:cq("show",1),slideUp:cq("hide",1),slideToggle:cq("toggle",1),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"},fadeToggle:{opacity:"toggle"}},function(a,b){f.fn[a]=function(a,c,d){return this.animate(b,a,c,d)}}),f.extend({speed:function(a,b,c){var d=a&&typeof a=="object"?f.extend({},a):{complete:c||!c&&b||f.isFunction(a)&&a,duration:a,easing:c&&b||b&&!f.isFunction(b)&&b};d.duration=f.fx.off?0:typeof d.duration=="number"?d.duration:d.duration in f.fx.speeds?f.fx.speeds[d.duration]:f.fx.speeds._default,d.old=d.complete,d.complete=function(a){f.isFunction(d.old)&&d.old.call(this),d.queue!==!1?f.dequeue(this):a!==!1&&f._unmark(this)};return d},easing:{linear:function(a,b,c,d){return c+d*a},swing:function(a,b,c,d){return(-Math.cos(a*Math.PI)/2+.5)*d+c}},timers:[],fx:function(a,b,c){this.options=b,this.elem=a,this.prop=c,b.orig=b.orig||{}}}),f.fx.prototype={update:function(){this.options.step&&this.options.step.call(this.elem,this.now,this),(f.fx.step[this.prop]||f.fx.step._default)(this)},cur:function(){if(this.elem[this.prop]!=null&&(!this.elem.style||this.elem.style[this.prop]==null))return this.elem[this.prop];var a,b=f.css(this.elem,this.prop);return isNaN(a=parseFloat(b))?!b||b==="auto"?0:b:a},custom:function(a,b,c){function g(a){return d.step(a)}var d=this,e=f.fx;this.startTime=cn||co(),this.start=a,this.end=b,this.unit=c||this.unit||(f.cssNumber[this.prop]?"":"px"),this.now=this.start,this.pos=this.state=0,g.elem=this.elem,g()&&f.timers.push(g)&&!cl&&(cl=setInterval(e.tick,e.interval))},show:function(){this.options.orig[this.prop]=f.style(this.elem,this.prop),this.options.show=!0,this.custom(this.prop==="width"||this.prop==="height"?1:0,this.cur()),f(this.elem).show()},hide:function(){this.options.orig[this.prop]=f.style(this.elem,this.prop),this.options.hide=!0,this.custom(this.cur(),0)},step:function(a){var b=cn||co(),c=!0,d=this.elem,e=this.options,g,h;if(a||b>=e.duration+this.startTime){this.now=this.end,this.pos=this.state=1,this.update(),e.animatedProperties[this.prop]=!0;for(g in e.animatedProperties)e.animatedProperties[g]!==!0&&(c=!1);if(c){e.overflow!=null&&!f.support.shrinkWrapBlocks&&f.each(["","X","Y"],function(a,b){d.style["overflow"+b]=e.overflow[a]}),e.hide&&f(d).hide();if(e.hide||e.show)for(var i in e.animatedProperties)f.style(d,i,e.orig[i]);e.complete.call(d)}return!1}e.duration==Infinity?this.now=b:(h=b-this.startTime,this.state=h/e.duration,this.pos=f.easing[e.animatedProperties[this.prop]](this.state,h,0,1,e.duration),this.now=this.start+(this.end-this.start)*this.pos),this.update();return!0}},f.extend(f.fx,{tick:function(){for(var a=f.timers,b=0;b<a.length;++b)a[b]()||a.splice(b--,1);a.length||f.fx.stop()},interval:13,stop:function(){clearInterval(cl),cl=null},speeds:{slow:600,fast:200,_default:400},step:{opacity:function(a){f.style(a.elem,"opacity",a.now)},_default:function(a){a.elem.style&&a.elem.style[a.prop]!=null?a.elem.style[a.prop]=(a.prop==="width"||a.prop==="height"?Math.max(0,a.now):a.now)+a.unit:a.elem[a.prop]=a.now}}}),f.expr&&f.expr.filters&&(f.expr.filters.animated=function(a){return f.grep(f.timers,function(b){return a===b.elem}).length});var cs=/^t(?:able|d|h)$/i,ct=/^(?:body|html)$/i;"getBoundingClientRect"in c.documentElement?f.fn.offset=function(a){var b=this[0],c;if(a)return this.each(function(b){f.offset.setOffset(this,a,b)});if(!b||!b.ownerDocument)return null;if(b===b.ownerDocument.body)return f.offset.bodyOffset(b);try{c=b.getBoundingClientRect()}catch(d){}var e=b.ownerDocument,g=e.documentElement;if(!c||!f.contains(g,b))return c?{top:c.top,left:c.left}:{top:0,left:0};var h=e.body,i=cu(e),j=g.clientTop||h.clientTop||0,k=g.clientLeft||h.clientLeft||0,l=i.pageYOffset||f.support.boxModel&&g.scrollTop||h.scrollTop,m=i.pageXOffset||f.support.boxModel&&g.scrollLeft||h.scrollLeft,n=c.top+l-j,o=c.left+m-k;return{top:n,left:o}}:f.fn.offset=function(a){var b=this[0];if(a)return this.each(function(b){f.offset.setOffset(this,a,b)});if(!b||!b.ownerDocument)return null;if(b===b.ownerDocument.body)return f.offset.bodyOffset(b);f.offset.initialize();var c,d=b.offsetParent,e=b,g=b.ownerDocument,h=g.documentElement,i=g.body,j=g.defaultView,k=j?j.getComputedStyle(b,null):b.currentStyle,l=b.offsetTop,m=b.offsetLeft;while((b=b.parentNode)&&b!==i&&b!==h){if(f.offset.supportsFixedPosition&&k.position==="fixed")break;c=j?j.getComputedStyle(b,null):b.currentStyle,l-=b.scrollTop,m-=b.scrollLeft,b===d&&(l+=b.offsetTop,m+=b.offsetLeft,f.offset.doesNotAddBorder&&(!f.offset.doesAddBorderForTableAndCells||!cs.test(b.nodeName))&&(l+=parseFloat(c.borderTopWidth)||0,m+=parseFloat(c.borderLeftWidth)||0),e=d,d=b.offsetParent),f.offset.subtractsBorderForOverflowNotVisible&&c.overflow!=="visible"&&(l+=parseFloat(c.borderTopWidth)||0,m+=parseFloat(c.borderLeftWidth)||0),k=c}if(k.position==="relative"||k.position==="static")l+=i.offsetTop,m+=i.offsetLeft;f.offset.supportsFixedPosition&&k.position==="fixed"&&(l+=Math.max(h.scrollTop,i.scrollTop),m+=Math.max(h.scrollLeft,i.scrollLeft));return{top:l,left:m}},f.offset={initialize:function(){var a=c.body,b=c.createElement("div"),d,e,g,h,i=parseFloat(f.css(a,"marginTop"))||0,j="<div style='position:absolute;top:0;left:0;margin:0;border:5px solid #000;padding:0;width:1px;height:1px;'><div></div></div><table style='position:absolute;top:0;left:0;margin:0;border:5px solid #000;padding:0;width:1px;height:1px;' cellpadding='0' cellspacing='0'><tr><td></td></tr></table>";f.extend(b.style,{position:"absolute",top:0,left:0,margin:0,border:0,width:"1px",height:"1px",visibility:"hidden"}),b.innerHTML=j,a.insertBefore(b,a.firstChild),d=b.firstChild,e=d.firstChild,h=d.nextSibling.firstChild.firstChild,this.doesNotAddBorder=e.offsetTop!==5,this.doesAddBorderForTableAndCells=h.offsetTop===5,e.style.position="fixed",e.style.top="20px",this.supportsFixedPosition=e.offsetTop===20||e.offsetTop===15,e.style.position=e.style.top="",d.style.overflow="hidden",d.style.position="relative",this.subtractsBorderForOverflowNotVisible=e.offsetTop===-5,this.doesNotIncludeMarginInBodyOffset=a.offsetTop!==i,a.removeChild(b),f.offset.initialize=f.noop},bodyOffset:function(a){var b=a.offsetTop,c=a.offsetLeft;f.offset.initialize(),f.offset.doesNotIncludeMarginInBodyOffset&&(b+=parseFloat(f.css(a,"marginTop"))||0,c+=parseFloat(f.css(a,"marginLeft"))||0);return{top:b,left:c}},setOffset:function(a,b,c){var d=f.css(a,"position");d==="static"&&(a.style.position="relative");var e=f(a),g=e.offset(),h=f.css(a,"top"),i=f.css(a,"left"),j=(d==="absolute"||d==="fixed")&&f.inArray("auto",[h,i])>-1,k={},l={},m,n;j?(l=e.position(),m=l.top,n=l.left):(m=parseFloat(h)||0,n=parseFloat(i)||0),f.isFunction(b)&&(b=b.call(a,c,g)),b.top!=null&&(k.top=b.top-g.top+m),b.left!=null&&(k.left=b.left-g.left+n),"using"in b?b.using.call(a,k):e.css(k)}},f.fn.extend({position:function(){if(!this[0])return null;var a=this[0],b=this.offsetParent(),c=this.offset(),d=ct.test(b[0].nodeName)?{top:0,left:0}:b.offset();c.top-=parseFloat(f.css(a,"marginTop"))||0,c.left-=parseFloat(f.css(a,"marginLeft"))||0,d.top+=parseFloat(f.css(b[0],"borderTopWidth"))||0,d.left+=parseFloat(f.css(b[0],"borderLeftWidth"))||0;return{top:c.top-d.top,left:c.left-d.left}},offsetParent:function(){return this.map(function(){var a=this.offsetParent||c.body;while(a&&!ct.test(a.nodeName)&&f.css(a,"position")==="static")a=a.offsetParent;return a})}}),f.each(["Left","Top"],function(a,c){var d="scroll"+c;f.fn[d]=function(c){var e,g;if(c===b){e=this[0];if(!e)return null;g=cu(e);return g?"pageXOffset"in g?g[a?"pageYOffset":"pageXOffset"]:f.support.boxModel&&g.document.documentElement[d]||g.document.body[d]:e[d]}return this.each(function(){g=cu(this),g?g.scrollTo(a?f(g).scrollLeft():c,a?c:f(g).scrollTop()):this[d]=c})}}),f.each(["Height","Width"],function(a,c){var d=c.toLowerCase();f.fn["inner"+c]=function(){var a=this[0];return a&&a.style?parseFloat(f.css(a,d,"padding")):null},f.fn["outer"+c]=function(a){var b=this[0];return b&&b.style?parseFloat(f.css(b,d,a?"margin":"border")):null},f.fn[d]=function(a){var e=this[0];if(!e)return a==null?null:this;if(f.isFunction(a))return this.each(function(b){var c=f(this);c[d](a.call(this,b,c[d]()))});if(f.isWindow(e)){var g=e.document.documentElement["client"+c],h=e.document.body;return e.document.compatMode==="CSS1Compat"&&g||h&&h["client"+c]||g}if(e.nodeType===9)return Math.max(e.documentElement["client"+c],e.body["scroll"+c],e.documentElement["scroll"+c],e.body["offset"+c],e.documentElement["offset"+c]);if(a===b){var i=f.css(e,d),j=parseFloat(i);return f.isNaN(j)?i:j}return this.css(d,typeof a=="string"?a:a+"px")}}),a.jQuery=a.$=f})(window);
src/configure-routes.js
lmtm/react-training
import React from 'react' import { Route, IndexRoute } from 'react-router' import App from './components/App' import ContactList from './components/ContactList' import ContactDetails from './components/ContactDetails' import Home from './components/Home' import { loadContacts, loadContactInfo } from './data-loaders' import dataLoaderToHook from './helpers/data-loader-hook' export default (api, { dispatch, getState }, pendingCallback) => { const hook = dataLoaderToHook(api, { dispatch, getState }, pendingCallback) return ( <Route path="/" component={ App }> <IndexRoute component={ Home } /> <Route path="contacts" component={ ContactList } onEnter={ hook(loadContacts, true) }> <Route path=":id" component={ ContactDetails } onEnter={ hook(loadContactInfo) } /> </Route> </Route> ) }
ajax/libs/material-ui/4.9.4/esm/internal/svg-icons/CheckCircle.js
cdnjs/cdnjs
import React from 'react'; import createSvgIcon from './createSvgIcon'; /** * @ignore - internal component. */ export default createSvgIcon(React.createElement("path", { d: "M12 0a12 12 0 1 0 0 24 12 12 0 0 0 0-24zm-2 17l-5-5 1.4-1.4 3.6 3.6 7.6-7.6L19 8l-9 9z" }), 'CheckCircle');
lib/ui/src/settings/shortcuts.stories.js
storybooks/react-storybook
import React from 'react'; import { actions as makeActions } from '@storybook/addon-actions'; import ShortcutsScreen from './shortcuts'; const defaultShortcuts = { fullScreen: ['F'], togglePanel: ['A'], panelPosition: ['D'], toggleNav: ['S'], toolbar: ['T'], search: ['/'], focusNav: ['1'], focusIframe: ['2'], focusPanel: ['3'], prevComponent: ['alt', 'ArrowUp'], nextComponent: ['alt', 'ArrowDown'], prevStory: ['alt', 'ArrowLeft'], nextStory: ['alt', 'ArrowRight'], shortcutsPage: ['ctrl', 'shift', ','], aboutPage: [','], escape: ['escape'], // This one is not customizable collapseAll: ['ctrl', 'shift', 'ArrowUp'], expandAll: ['ctrl', 'shift', 'ArrowDown'], }; const actions = makeActions( 'setShortcut', 'restoreDefaultShortcut', 'restoreAllDefaultShortcuts', 'onClose' ); export default { component: ShortcutsScreen, title: 'UI/Settings/ShortcutsScreen', decorators: [ s => ( <div style={{ position: 'relative', height: 'calc(100vh)', width: 'calc(100vw)', }} > {s()} </div> ), ], }; export const defaults = () => <ShortcutsScreen shortcutKeys={defaultShortcuts} {...actions} />; defaults.story = { name: 'default shortcuts' };
app/javascript/packs/bundles/login/oauth/component.js
pinchtools/piplet
import React from 'react' import {FormattedMessage} from 'react-intl' import Row from 'react-bootstrap/lib/Row' import Col from 'react-bootstrap/lib/Col' import Button from 'react-bootstrap/lib/Button' import PropTypes from 'prop-types' const Oauth = (props) => { return ( <Row className={`${props.providers.length == 0 ? 'hidden' : 'show'}`}> <Col sm={12} className="text-center hidden-xs"> <Button bsStyle="primary" className={`${props.providers.indexOf('facebook') != -1 ? '' : 'hidden'}`} onClick={() => props.oauthenticate('facebook')}> <i className="fa fa-facebook" aria-hidden="true"></i> <FormattedMessage id="LoginDialog.auth.fb" defaultMessage={`Facebook`} /> </Button> <Button bsStyle="primary" className={`${props.providers.indexOf('google') != -1 ? '' : 'hidden'}`} onClick={() => props.oauthenticate('google')}> <i className="fa fa-google" aria-hidden="true"></i> <FormattedMessage id="LoginDialog.auth.google" defaultMessage={`Google`} /> </Button> <Button bsStyle="primary" className={`${props.providers.indexOf('twitter') != -1 ? '' : 'hidden'}`} onClick={() => props.oauthenticate('twitter')}> <i className="fa fa-twitter" aria-hidden="true"></i> <FormattedMessage id="LoginDialog.auth.twitter" defaultMessage={`Twitter`} /> </Button> </Col> <Col xs={12} className="text-center visible-xs"> <Button bsStyle="primary" bsSize="small" block className={`${props.providers.indexOf('facebook') != -1 ? '' : 'hidden'}`} onClick={() => props.oauthenticate('facebook')}> <i className="fa fa-facebook" aria-hidden="true"></i> <FormattedMessage id="LoginDialog.auth.fb" defaultMessage={`Facebook`} /> </Button> <Button bsStyle="primary" bsSize="small" block className={`${props.providers.indexOf('google') != -1 ? '' : 'hidden'}`} onClick={() => props.oauthenticate('google')}> <i className="fa fa-google" aria-hidden="true"></i> <FormattedMessage id="LoginDialog.auth.google" defaultMessage={`Google`} /> </Button> <Button bsStyle="primary" bsSize="small" block className={`${props.providers.indexOf('twitter') != -1 ? '' : 'hidden'}`} onClick={() => props.oauthenticate('twitter')}> <i className="fa fa-twitter" aria-hidden="true"></i> <FormattedMessage id="LoginDialog.auth.twitter" defaultMessage={`Twitter`} /> </Button> </Col> </Row> ) } Oauth.propTypes = { providers: PropTypes.arrayOf(PropTypes.string).isRequired, oauthenticate: PropTypes.func.isRequired } export default Oauth
vendor/assets/javascripts/backbone.js
ipmobiletech/backbone-rails
// Backbone.js 1.2.2 // (c) 2010-2015 Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors // Backbone may be freely distributed under the MIT license. // For all details and documentation: // http://backbonejs.org (function(factory) { // Establish the root object, `window` (`self`) in the browser, or `global` on the server. // We use `self` instead of `window` for `WebWorker` support. var root = (typeof self == 'object' && self.self == self && self) || (typeof global == 'object' && global.global == global && global); // Set up Backbone appropriately for the environment. Start with AMD. if (typeof define === 'function' && define.amd) { define(['underscore', 'jquery', 'exports'], function(_, $, exports) { // Export global even in AMD case in case this script is loaded with // others that may still expect a global Backbone. root.Backbone = factory(root, exports, _, $); }); // Next for Node.js or CommonJS. jQuery may not be needed as a module. } else if (typeof exports !== 'undefined') { var _ = require('underscore'), $; try { $ = require('jquery'); } catch(e) {} factory(root, exports, _, $); // Finally, as a browser global. } else { root.Backbone = factory(root, {}, root._, (root.jQuery || root.Zepto || root.ender || root.$)); } }(function(root, Backbone, _, $) { // Initial Setup // ------------- // Save the previous value of the `Backbone` variable, so that it can be // restored later on, if `noConflict` is used. var previousBackbone = root.Backbone; // Create a local reference to a common array method we'll want to use later. var slice = Array.prototype.slice; // Current version of the library. Keep in sync with `package.json`. Backbone.VERSION = '1.2.2'; // For Backbone's purposes, jQuery, Zepto, Ender, or My Library (kidding) owns // the `$` variable. Backbone.$ = $; // Runs Backbone.js in *noConflict* mode, returning the `Backbone` variable // to its previous owner. Returns a reference to this Backbone object. Backbone.noConflict = function() { root.Backbone = previousBackbone; return this; }; // Turn on `emulateHTTP` to support legacy HTTP servers. Setting this option // will fake `"PATCH"`, `"PUT"` and `"DELETE"` requests via the `_method` parameter and // set a `X-Http-Method-Override` header. Backbone.emulateHTTP = false; // Turn on `emulateJSON` to support legacy servers that can't deal with direct // `application/json` requests ... this will encode the body as // `application/x-www-form-urlencoded` instead and will send the model in a // form param named `model`. Backbone.emulateJSON = false; // Proxy Backbone class methods to Underscore functions, wrapping the model's // `attributes` object or collection's `models` array behind the scenes. // // collection.filter(function(model) { return model.get('age') > 10 }); // collection.each(this.addView); // // `Function#apply` can be slow so we use the method's arg count, if we know it. var addMethod = function(length, method, attribute) { switch (length) { case 1: return function() { return _[method](this[attribute]); }; case 2: return function(value) { return _[method](this[attribute], value); }; case 3: return function(iteratee, context) { return _[method](this[attribute], cb(iteratee, this), context); }; case 4: return function(iteratee, defaultVal, context) { return _[method](this[attribute], cb(iteratee, this), defaultVal, context); }; default: return function() { var args = slice.call(arguments); args.unshift(this[attribute]); return _[method].apply(_, args); }; } }; var addUnderscoreMethods = function(Class, methods, attribute) { _.each(methods, function(length, method) { if (_[method]) Class.prototype[method] = addMethod(length, method, attribute); }); }; // Support `collection.sortBy('attr')` and `collection.findWhere({id: 1})`. var cb = function(iteratee, instance) { if (_.isFunction(iteratee)) return iteratee; if (_.isObject(iteratee) && !instance._isModel(iteratee)) return modelMatcher(iteratee); if (_.isString(iteratee)) return function(model) { return model.get(iteratee); }; return iteratee; }; var modelMatcher = function(attrs) { var matcher = _.matches(attrs); return function(model) { return matcher(model.attributes); }; }; // Backbone.Events // --------------- // A module that can be mixed in to *any object* in order to provide it with // a custom event channel. You may bind a callback to an event with `on` or // remove with `off`; `trigger`-ing an event fires all callbacks in // succession. // // var object = {}; // _.extend(object, Backbone.Events); // object.on('expand', function(){ alert('expanded'); }); // object.trigger('expand'); // var Events = Backbone.Events = {}; // Regular expression used to split event strings. var eventSplitter = /\s+/; // Iterates over the standard `event, callback` (as well as the fancy multiple // space-separated events `"change blur", callback` and jQuery-style event // maps `{event: callback}`). var eventsApi = function(iteratee, events, name, callback, opts) { var i = 0, names; if (name && typeof name === 'object') { // Handle event maps. if (callback !== void 0 && 'context' in opts && opts.context === void 0) opts.context = callback; for (names = _.keys(name); i < names.length ; i++) { events = eventsApi(iteratee, events, names[i], name[names[i]], opts); } } else if (name && eventSplitter.test(name)) { // Handle space separated event names by delegating them individually. for (names = name.split(eventSplitter); i < names.length; i++) { events = iteratee(events, names[i], callback, opts); } } else { // Finally, standard events. events = iteratee(events, name, callback, opts); } return events; }; // Bind an event to a `callback` function. Passing `"all"` will bind // the callback to all events fired. Events.on = function(name, callback, context) { return internalOn(this, name, callback, context); }; // Guard the `listening` argument from the public API. var internalOn = function(obj, name, callback, context, listening) { obj._events = eventsApi(onApi, obj._events || {}, name, callback, { context: context, ctx: obj, listening: listening }); if (listening) { var listeners = obj._listeners || (obj._listeners = {}); listeners[listening.id] = listening; } return obj; }; // Inversion-of-control versions of `on`. Tell *this* object to listen to // an event in another object... keeping track of what it's listening to // for easier unbinding later. Events.listenTo = function(obj, name, callback) { if (!obj) return this; var id = obj._listenId || (obj._listenId = _.uniqueId('l')); var listeningTo = this._listeningTo || (this._listeningTo = {}); var listening = listeningTo[id]; // This object is not listening to any other events on `obj` yet. // Setup the necessary references to track the listening callbacks. if (!listening) { var thisId = this._listenId || (this._listenId = _.uniqueId('l')); listening = listeningTo[id] = {obj: obj, objId: id, id: thisId, listeningTo: listeningTo, count: 0}; } // Bind callbacks on obj, and keep track of them on listening. internalOn(obj, name, callback, this, listening); return this; }; // The reducing API that adds a callback to the `events` object. var onApi = function(events, name, callback, options) { if (callback) { var handlers = events[name] || (events[name] = []); var context = options.context, ctx = options.ctx, listening = options.listening; if (listening) listening.count++; handlers.push({ callback: callback, context: context, ctx: context || ctx, listening: listening }); } return events; }; // Remove one or many callbacks. If `context` is null, removes all // callbacks with that function. If `callback` is null, removes all // callbacks for the event. If `name` is null, removes all bound // callbacks for all events. Events.off = function(name, callback, context) { if (!this._events) return this; this._events = eventsApi(offApi, this._events, name, callback, { context: context, listeners: this._listeners }); return this; }; // Tell this object to stop listening to either specific events ... or // to every object it's currently listening to. Events.stopListening = function(obj, name, callback) { var listeningTo = this._listeningTo; if (!listeningTo) return this; var ids = obj ? [obj._listenId] : _.keys(listeningTo); for (var i = 0; i < ids.length; i++) { var listening = listeningTo[ids[i]]; // If listening doesn't exist, this object is not currently // listening to obj. Break out early. if (!listening) break; listening.obj.off(name, callback, this); } if (_.isEmpty(listeningTo)) this._listeningTo = void 0; return this; }; // The reducing API that removes a callback from the `events` object. var offApi = function(events, name, callback, options) { if (!events) return; var i = 0, listening; var context = options.context, listeners = options.listeners; // Delete all events listeners and "drop" events. if (!name && !callback && !context) { var ids = _.keys(listeners); for (; i < ids.length; i++) { listening = listeners[ids[i]]; delete listeners[listening.id]; delete listening.listeningTo[listening.objId]; } return; } var names = name ? [name] : _.keys(events); for (; i < names.length; i++) { name = names[i]; var handlers = events[name]; // Bail out if there are no events stored. if (!handlers) break; // Replace events if there are any remaining. Otherwise, clean up. var remaining = []; for (var j = 0; j < handlers.length; j++) { var handler = handlers[j]; if ( callback && callback !== handler.callback && callback !== handler.callback._callback || context && context !== handler.context ) { remaining.push(handler); } else { listening = handler.listening; if (listening && --listening.count === 0) { delete listeners[listening.id]; delete listening.listeningTo[listening.objId]; } } } // Update tail event if the list has any events. Otherwise, clean up. if (remaining.length) { events[name] = remaining; } else { delete events[name]; } } if (_.size(events)) return events; }; // Bind an event to only be triggered a single time. After the first time // the callback is invoked, its listener will be removed. If multiple events // are passed in using the space-separated syntax, the handler will fire // once for each event, not once for a combination of all events. Events.once = function(name, callback, context) { // Map the event into a `{event: once}` object. var events = eventsApi(onceMap, {}, name, callback, _.bind(this.off, this)); return this.on(events, void 0, context); }; // Inversion-of-control versions of `once`. Events.listenToOnce = function(obj, name, callback) { // Map the event into a `{event: once}` object. var events = eventsApi(onceMap, {}, name, callback, _.bind(this.stopListening, this, obj)); return this.listenTo(obj, events); }; // Reduces the event callbacks into a map of `{event: onceWrapper}`. // `offer` unbinds the `onceWrapper` after it has been called. var onceMap = function(map, name, callback, offer) { if (callback) { var once = map[name] = _.once(function() { offer(name, once); callback.apply(this, arguments); }); once._callback = callback; } return map; }; // Trigger one or many events, firing all bound callbacks. Callbacks are // passed the same arguments as `trigger` is, apart from the event name // (unless you're listening on `"all"`, which will cause your callback to // receive the true name of the event as the first argument). Events.trigger = function(name) { if (!this._events) return this; var length = Math.max(0, arguments.length - 1); var args = Array(length); for (var i = 0; i < length; i++) args[i] = arguments[i + 1]; eventsApi(triggerApi, this._events, name, void 0, args); return this; }; // Handles triggering the appropriate event callbacks. var triggerApi = function(objEvents, name, cb, args) { if (objEvents) { var events = objEvents[name]; var allEvents = objEvents.all; if (events && allEvents) allEvents = allEvents.slice(); if (events) triggerEvents(events, args); if (allEvents) triggerEvents(allEvents, [name].concat(args)); } return objEvents; }; // A difficult-to-believe, but optimized internal dispatch function for // triggering events. Tries to keep the usual cases speedy (most internal // Backbone events have 3 arguments). var triggerEvents = function(events, args) { var ev, i = -1, l = events.length, a1 = args[0], a2 = args[1], a3 = args[2]; switch (args.length) { case 0: while (++i < l) (ev = events[i]).callback.call(ev.ctx); return; case 1: while (++i < l) (ev = events[i]).callback.call(ev.ctx, a1); return; case 2: while (++i < l) (ev = events[i]).callback.call(ev.ctx, a1, a2); return; case 3: while (++i < l) (ev = events[i]).callback.call(ev.ctx, a1, a2, a3); return; default: while (++i < l) (ev = events[i]).callback.apply(ev.ctx, args); return; } }; // Aliases for backwards compatibility. Events.bind = Events.on; Events.unbind = Events.off; // Allow the `Backbone` object to serve as a global event bus, for folks who // want global "pubsub" in a convenient place. _.extend(Backbone, Events); // Backbone.Model // -------------- // Backbone **Models** are the basic data object in the framework -- // frequently representing a row in a table in a database on your server. // A discrete chunk of data and a bunch of useful, related methods for // performing computations and transformations on that data. // Create a new model with the specified attributes. A client id (`cid`) // is automatically generated and assigned for you. var Model = Backbone.Model = function(attributes, options) { var attrs = attributes || {}; options || (options = {}); this.cid = _.uniqueId(this.cidPrefix); this.attributes = {}; if (options.collection) this.collection = options.collection; if (options.parse) attrs = this.parse(attrs, options) || {}; attrs = _.defaults({}, attrs, _.result(this, 'defaults')); this.set(attrs, options); this.changed = {}; this.initialize.apply(this, arguments); }; // Attach all inheritable methods to the Model prototype. _.extend(Model.prototype, Events, { // A hash of attributes whose current and previous value differ. changed: null, // The value returned during the last failed validation. validationError: null, // The default name for the JSON `id` attribute is `"id"`. MongoDB and // CouchDB users may want to set this to `"_id"`. idAttribute: 'id', // The prefix is used to create the client id which is used to identify models locally. // You may want to override this if you're experiencing name clashes with model ids. cidPrefix: 'c', // Initialize is an empty function by default. Override it with your own // initialization logic. initialize: function(){}, // Return a copy of the model's `attributes` object. toJSON: function(options) { return _.clone(this.attributes); }, // Proxy `Backbone.sync` by default -- but override this if you need // custom syncing semantics for *this* particular model. sync: function() { return Backbone.sync.apply(this, arguments); }, // Get the value of an attribute. get: function(attr) { return this.attributes[attr]; }, // Get the HTML-escaped value of an attribute. escape: function(attr) { return _.escape(this.get(attr)); }, // Returns `true` if the attribute contains a value that is not null // or undefined. has: function(attr) { return this.get(attr) != null; }, // Special-cased proxy to underscore's `_.matches` method. matches: function(attrs) { return !!_.iteratee(attrs, this)(this.attributes); }, // Set a hash of model attributes on the object, firing `"change"`. This is // the core primitive operation of a model, updating the data and notifying // anyone who needs to know about the change in state. The heart of the beast. set: function(key, val, options) { if (key == null) return this; // Handle both `"key", value` and `{key: value}` -style arguments. var attrs; if (typeof key === 'object') { attrs = key; options = val; } else { (attrs = {})[key] = val; } options || (options = {}); // Run validation. if (!this._validate(attrs, options)) return false; // Extract attributes and options. var unset = options.unset; var silent = options.silent; var changes = []; var changing = this._changing; this._changing = true; if (!changing) { this._previousAttributes = _.clone(this.attributes); this.changed = {}; } var current = this.attributes; var changed = this.changed; var prev = this._previousAttributes; // For each `set` attribute, update or delete the current value. for (var attr in attrs) { val = attrs[attr]; if (!_.isEqual(current[attr], val)) changes.push(attr); if (!_.isEqual(prev[attr], val)) { changed[attr] = val; } else { delete changed[attr]; } unset ? delete current[attr] : current[attr] = val; } // Update the `id`. this.id = this.get(this.idAttribute); // Trigger all relevant attribute changes. if (!silent) { if (changes.length) this._pending = options; for (var i = 0; i < changes.length; i++) { this.trigger('change:' + changes[i], this, current[changes[i]], options); } } // You might be wondering why there's a `while` loop here. Changes can // be recursively nested within `"change"` events. if (changing) return this; if (!silent) { while (this._pending) { options = this._pending; this._pending = false; this.trigger('change', this, options); } } this._pending = false; this._changing = false; return this; }, // Remove an attribute from the model, firing `"change"`. `unset` is a noop // if the attribute doesn't exist. unset: function(attr, options) { return this.set(attr, void 0, _.extend({}, options, {unset: true})); }, // Clear all attributes on the model, firing `"change"`. clear: function(options) { var attrs = {}; for (var key in this.attributes) attrs[key] = void 0; return this.set(attrs, _.extend({}, options, {unset: true})); }, // Determine if the model has changed since the last `"change"` event. // If you specify an attribute name, determine if that attribute has changed. hasChanged: function(attr) { if (attr == null) return !_.isEmpty(this.changed); return _.has(this.changed, attr); }, // Return an object containing all the attributes that have changed, or // false if there are no changed attributes. Useful for determining what // parts of a view need to be updated and/or what attributes need to be // persisted to the server. Unset attributes will be set to undefined. // You can also pass an attributes object to diff against the model, // determining if there *would be* a change. changedAttributes: function(diff) { if (!diff) return this.hasChanged() ? _.clone(this.changed) : false; var old = this._changing ? this._previousAttributes : this.attributes; var changed = {}; for (var attr in diff) { var val = diff[attr]; if (_.isEqual(old[attr], val)) continue; changed[attr] = val; } return _.size(changed) ? changed : false; }, // Get the previous value of an attribute, recorded at the time the last // `"change"` event was fired. previous: function(attr) { if (attr == null || !this._previousAttributes) return null; return this._previousAttributes[attr]; }, // Get all of the attributes of the model at the time of the previous // `"change"` event. previousAttributes: function() { return _.clone(this._previousAttributes); }, // Fetch the model from the server, merging the response with the model's // local attributes. Any changed attributes will trigger a "change" event. fetch: function(options) { options = _.extend({parse: true}, options); var model = this; var success = options.success; options.success = function(resp) { var serverAttrs = options.parse ? model.parse(resp, options) : resp; if (!model.set(serverAttrs, options)) return false; if (success) success.call(options.context, model, resp, options); model.trigger('sync', model, resp, options); }; wrapError(this, options); return this.sync('read', this, options); }, // Set a hash of model attributes, and sync the model to the server. // If the server returns an attributes hash that differs, the model's // state will be `set` again. save: function(key, val, options) { // Handle both `"key", value` and `{key: value}` -style arguments. var attrs; if (key == null || typeof key === 'object') { attrs = key; options = val; } else { (attrs = {})[key] = val; } options = _.extend({validate: true, parse: true}, options); var wait = options.wait; // If we're not waiting and attributes exist, save acts as // `set(attr).save(null, opts)` with validation. Otherwise, check if // the model will be valid when the attributes, if any, are set. if (attrs && !wait) { if (!this.set(attrs, options)) return false; } else { if (!this._validate(attrs, options)) return false; } // After a successful server-side save, the client is (optionally) // updated with the server-side state. var model = this; var success = options.success; var attributes = this.attributes; options.success = function(resp) { // Ensure attributes are restored during synchronous saves. model.attributes = attributes; var serverAttrs = options.parse ? model.parse(resp, options) : resp; if (wait) serverAttrs = _.extend({}, attrs, serverAttrs); if (serverAttrs && !model.set(serverAttrs, options)) return false; if (success) success.call(options.context, model, resp, options); model.trigger('sync', model, resp, options); }; wrapError(this, options); // Set temporary attributes if `{wait: true}` to properly find new ids. if (attrs && wait) this.attributes = _.extend({}, attributes, attrs); var method = this.isNew() ? 'create' : (options.patch ? 'patch' : 'update'); if (method === 'patch' && !options.attrs) options.attrs = attrs; var xhr = this.sync(method, this, options); // Restore attributes. this.attributes = attributes; return xhr; }, // Destroy this model on the server if it was already persisted. // Optimistically removes the model from its collection, if it has one. // If `wait: true` is passed, waits for the server to respond before removal. destroy: function(options) { options = options ? _.clone(options) : {}; var model = this; var success = options.success; var wait = options.wait; var destroy = function() { model.stopListening(); model.trigger('destroy', model, model.collection, options); }; options.success = function(resp) { if (wait) destroy(); if (success) success.call(options.context, model, resp, options); if (!model.isNew()) model.trigger('sync', model, resp, options); }; var xhr = false; if (this.isNew()) { _.defer(options.success); } else { wrapError(this, options); xhr = this.sync('delete', this, options); } if (!wait) destroy(); return xhr; }, // Default URL for the model's representation on the server -- if you're // using Backbone's restful methods, override this to change the endpoint // that will be called. url: function() { var base = _.result(this, 'urlRoot') || _.result(this.collection, 'url') || urlError(); if (this.isNew()) return base; var id = this.get(this.idAttribute); return base.replace(/[^\/]$/, '$&/') + encodeURIComponent(id); }, // **parse** converts a response into the hash of attributes to be `set` on // the model. The default implementation is just to pass the response along. parse: function(resp, options) { return resp; }, // Create a new model with identical attributes to this one. clone: function() { return new this.constructor(this.attributes); }, // A model is new if it has never been saved to the server, and lacks an id. isNew: function() { return !this.has(this.idAttribute); }, // Check if the model is currently in a valid state. isValid: function(options) { return this._validate({}, _.defaults({validate: true}, options)); }, // Run validation against the next complete set of model attributes, // returning `true` if all is well. Otherwise, fire an `"invalid"` event. _validate: function(attrs, options) { if (!options.validate || !this.validate) return true; attrs = _.extend({}, this.attributes, attrs); var error = this.validationError = this.validate(attrs, options) || null; if (!error) return true; this.trigger('invalid', this, error, _.extend(options, {validationError: error})); return false; } }); // Underscore methods that we want to implement on the Model, mapped to the // number of arguments they take. var modelMethods = { keys: 1, values: 1, pairs: 1, invert: 1, pick: 0, omit: 0, chain: 1, isEmpty: 1 }; // Mix in each Underscore method as a proxy to `Model#attributes`. addUnderscoreMethods(Model, modelMethods, 'attributes'); // Backbone.Collection // ------------------- // If models tend to represent a single row of data, a Backbone Collection is // more analogous to a table full of data ... or a small slice or page of that // table, or a collection of rows that belong together for a particular reason // -- all of the messages in this particular folder, all of the documents // belonging to this particular author, and so on. Collections maintain // indexes of their models, both in order, and for lookup by `id`. // Create a new **Collection**, perhaps to contain a specific type of `model`. // If a `comparator` is specified, the Collection will maintain // its models in sort order, as they're added and removed. var Collection = Backbone.Collection = function(models, options) { options || (options = {}); if (options.model) this.model = options.model; if (options.comparator !== void 0) this.comparator = options.comparator; this._reset(); this.initialize.apply(this, arguments); if (models) this.reset(models, _.extend({silent: true}, options)); }; // Default options for `Collection#set`. var setOptions = {add: true, remove: true, merge: true}; var addOptions = {add: true, remove: false}; // Splices `insert` into `array` at index `at`. var splice = function(array, insert, at) { var tail = Array(array.length - at); var length = insert.length; for (var i = 0; i < tail.length; i++) tail[i] = array[i + at]; for (i = 0; i < length; i++) array[i + at] = insert[i]; for (i = 0; i < tail.length; i++) array[i + length + at] = tail[i]; }; // Define the Collection's inheritable methods. _.extend(Collection.prototype, Events, { // The default model for a collection is just a **Backbone.Model**. // This should be overridden in most cases. model: Model, // Initialize is an empty function by default. Override it with your own // initialization logic. initialize: function(){}, // The JSON representation of a Collection is an array of the // models' attributes. toJSON: function(options) { return this.map(function(model) { return model.toJSON(options); }); }, // Proxy `Backbone.sync` by default. sync: function() { return Backbone.sync.apply(this, arguments); }, // Add a model, or list of models to the set. `models` may be Backbone // Models or raw JavaScript objects to be converted to Models, or any // combination of the two. add: function(models, options) { return this.set(models, _.extend({merge: false}, options, addOptions)); }, // Remove a model, or a list of models from the set. remove: function(models, options) { options = _.extend({}, options); var singular = !_.isArray(models); models = singular ? [models] : _.clone(models); var removed = this._removeModels(models, options); if (!options.silent && removed) this.trigger('update', this, options); return singular ? removed[0] : removed; }, // Update a collection by `set`-ing a new list of models, adding new ones, // removing models that are no longer present, and merging models that // already exist in the collection, as necessary. Similar to **Model#set**, // the core operation for updating the data contained by the collection. set: function(models, options) { if (models == null) return; options = _.defaults({}, options, setOptions); if (options.parse && !this._isModel(models)) models = this.parse(models, options); var singular = !_.isArray(models); models = singular ? [models] : models.slice(); var at = options.at; if (at != null) at = +at; if (at < 0) at += this.length + 1; var set = []; var toAdd = []; var toRemove = []; var modelMap = {}; var add = options.add; var merge = options.merge; var remove = options.remove; var sort = false; var sortable = this.comparator && (at == null) && options.sort !== false; var sortAttr = _.isString(this.comparator) ? this.comparator : null; // Turn bare objects into model references, and prevent invalid models // from being added. var model; for (var i = 0; i < models.length; i++) { model = models[i]; // If a duplicate is found, prevent it from being added and // optionally merge it into the existing model. var existing = this.get(model); if (existing) { if (merge && model !== existing) { var attrs = this._isModel(model) ? model.attributes : model; if (options.parse) attrs = existing.parse(attrs, options); existing.set(attrs, options); if (sortable && !sort) sort = existing.hasChanged(sortAttr); } if (!modelMap[existing.cid]) { modelMap[existing.cid] = true; set.push(existing); } models[i] = existing; // If this is a new, valid model, push it to the `toAdd` list. } else if (add) { model = models[i] = this._prepareModel(model, options); if (model) { toAdd.push(model); this._addReference(model, options); modelMap[model.cid] = true; set.push(model); } } } // Remove stale models. if (remove) { for (i = 0; i < this.length; i++) { model = this.models[i]; if (!modelMap[model.cid]) toRemove.push(model); } if (toRemove.length) this._removeModels(toRemove, options); } // See if sorting is needed, update `length` and splice in new models. var orderChanged = false; var replace = !sortable && add && remove; if (set.length && replace) { orderChanged = this.length != set.length || _.some(this.models, function(model, index) { return model !== set[index]; }); this.models.length = 0; splice(this.models, set, 0); this.length = this.models.length; } else if (toAdd.length) { if (sortable) sort = true; splice(this.models, toAdd, at == null ? this.length : at); this.length = this.models.length; } // Silently sort the collection if appropriate. if (sort) this.sort({silent: true}); // Unless silenced, it's time to fire all appropriate add/sort events. if (!options.silent) { for (i = 0; i < toAdd.length; i++) { if (at != null) options.index = at + i; model = toAdd[i]; model.trigger('add', model, this, options); } if (sort || orderChanged) this.trigger('sort', this, options); if (toAdd.length || toRemove.length) this.trigger('update', this, options); } // Return the added (or merged) model (or models). return singular ? models[0] : models; }, // When you have more items than you want to add or remove individually, // you can reset the entire set with a new list of models, without firing // any granular `add` or `remove` events. Fires `reset` when finished. // Useful for bulk operations and optimizations. reset: function(models, options) { options = options ? _.clone(options) : {}; for (var i = 0; i < this.models.length; i++) { this._removeReference(this.models[i], options); } options.previousModels = this.models; this._reset(); models = this.add(models, _.extend({silent: true}, options)); if (!options.silent) this.trigger('reset', this, options); return models; }, // Add a model to the end of the collection. push: function(model, options) { return this.add(model, _.extend({at: this.length}, options)); }, // Remove a model from the end of the collection. pop: function(options) { var model = this.at(this.length - 1); return this.remove(model, options); }, // Add a model to the beginning of the collection. unshift: function(model, options) { return this.add(model, _.extend({at: 0}, options)); }, // Remove a model from the beginning of the collection. shift: function(options) { var model = this.at(0); return this.remove(model, options); }, // Slice out a sub-array of models from the collection. slice: function() { return slice.apply(this.models, arguments); }, // Get a model from the set by id. get: function(obj) { if (obj == null) return void 0; var id = this.modelId(this._isModel(obj) ? obj.attributes : obj); return this._byId[obj] || this._byId[id] || this._byId[obj.cid]; }, // Get the model at the given index. at: function(index) { if (index < 0) index += this.length; return this.models[index]; }, // Return models with matching attributes. Useful for simple cases of // `filter`. where: function(attrs, first) { return this[first ? 'find' : 'filter'](attrs); }, // Return the first model with matching attributes. Useful for simple cases // of `find`. findWhere: function(attrs) { return this.where(attrs, true); }, // Force the collection to re-sort itself. You don't need to call this under // normal circumstances, as the set will maintain sort order as each item // is added. sort: function(options) { var comparator = this.comparator; if (!comparator) throw new Error('Cannot sort a set without a comparator'); options || (options = {}); var length = comparator.length; if (_.isFunction(comparator)) comparator = _.bind(comparator, this); // Run sort based on type of `comparator`. if (length === 1 || _.isString(comparator)) { this.models = this.sortBy(comparator); } else { this.models.sort(comparator); } if (!options.silent) this.trigger('sort', this, options); return this; }, // Pluck an attribute from each model in the collection. pluck: function(attr) { return _.invoke(this.models, 'get', attr); }, // Fetch the default set of models for this collection, resetting the // collection when they arrive. If `reset: true` is passed, the response // data will be passed through the `reset` method instead of `set`. fetch: function(options) { options = _.extend({parse: true}, options); var success = options.success; var collection = this; options.success = function(resp) { var method = options.reset ? 'reset' : 'set'; collection[method](resp, options); if (success) success.call(options.context, collection, resp, options); collection.trigger('sync', collection, resp, options); }; wrapError(this, options); return this.sync('read', this, options); }, // Create a new instance of a model in this collection. Add the model to the // collection immediately, unless `wait: true` is passed, in which case we // wait for the server to agree. create: function(model, options) { options = options ? _.clone(options) : {}; var wait = options.wait; model = this._prepareModel(model, options); if (!model) return false; if (!wait) this.add(model, options); var collection = this; var success = options.success; options.success = function(model, resp, callbackOpts) { if (wait) collection.add(model, callbackOpts); if (success) success.call(callbackOpts.context, model, resp, callbackOpts); }; model.save(null, options); return model; }, // **parse** converts a response into a list of models to be added to the // collection. The default implementation is just to pass it through. parse: function(resp, options) { return resp; }, // Create a new collection with an identical list of models as this one. clone: function() { return new this.constructor(this.models, { model: this.model, comparator: this.comparator }); }, // Define how to uniquely identify models in the collection. modelId: function (attrs) { return attrs[this.model.prototype.idAttribute || 'id']; }, // Private method to reset all internal state. Called when the collection // is first initialized or reset. _reset: function() { this.length = 0; this.models = []; this._byId = {}; }, // Prepare a hash of attributes (or other model) to be added to this // collection. _prepareModel: function(attrs, options) { if (this._isModel(attrs)) { if (!attrs.collection) attrs.collection = this; return attrs; } options = options ? _.clone(options) : {}; options.collection = this; var model = new this.model(attrs, options); if (!model.validationError) return model; this.trigger('invalid', this, model.validationError, options); return false; }, // Internal method called by both remove and set. _removeModels: function(models, options) { var removed = []; for (var i = 0; i < models.length; i++) { var model = this.get(models[i]); if (!model) continue; var index = this.indexOf(model); this.models.splice(index, 1); this.length--; if (!options.silent) { options.index = index; model.trigger('remove', model, this, options); } removed.push(model); this._removeReference(model, options); } return removed.length ? removed : false; }, // Method for checking whether an object should be considered a model for // the purposes of adding to the collection. _isModel: function (model) { return model instanceof Model; }, // Internal method to create a model's ties to a collection. _addReference: function(model, options) { this._byId[model.cid] = model; var id = this.modelId(model.attributes); if (id != null) this._byId[id] = model; model.on('all', this._onModelEvent, this); }, // Internal method to sever a model's ties to a collection. _removeReference: function(model, options) { delete this._byId[model.cid]; var id = this.modelId(model.attributes); if (id != null) delete this._byId[id]; if (this === model.collection) delete model.collection; model.off('all', this._onModelEvent, this); }, // Internal method called every time a model in the set fires an event. // Sets need to update their indexes when models change ids. All other // events simply proxy through. "add" and "remove" events that originate // in other collections are ignored. _onModelEvent: function(event, model, collection, options) { if ((event === 'add' || event === 'remove') && collection !== this) return; if (event === 'destroy') this.remove(model, options); if (event === 'change') { var prevId = this.modelId(model.previousAttributes()); var id = this.modelId(model.attributes); if (prevId !== id) { if (prevId != null) delete this._byId[prevId]; if (id != null) this._byId[id] = model; } } this.trigger.apply(this, arguments); } }); // Underscore methods that we want to implement on the Collection. // 90% of the core usefulness of Backbone Collections is actually implemented // right here: var collectionMethods = { forEach: 3, each: 3, map: 3, collect: 3, reduce: 4, foldl: 4, inject: 4, reduceRight: 4, foldr: 4, find: 3, detect: 3, filter: 3, select: 3, reject: 3, every: 3, all: 3, some: 3, any: 3, include: 3, includes: 3, contains: 3, invoke: 0, max: 3, min: 3, toArray: 1, size: 1, first: 3, head: 3, take: 3, initial: 3, rest: 3, tail: 3, drop: 3, last: 3, without: 0, difference: 0, indexOf: 3, shuffle: 1, lastIndexOf: 3, isEmpty: 1, chain: 1, sample: 3, partition: 3, groupBy: 3, countBy: 3, sortBy: 3, indexBy: 3}; // Mix in each Underscore method as a proxy to `Collection#models`. addUnderscoreMethods(Collection, collectionMethods, 'models'); // Backbone.View // ------------- // Backbone Views are almost more convention than they are actual code. A View // is simply a JavaScript object that represents a logical chunk of UI in the // DOM. This might be a single item, an entire list, a sidebar or panel, or // even the surrounding frame which wraps your whole app. Defining a chunk of // UI as a **View** allows you to define your DOM events declaratively, without // having to worry about render order ... and makes it easy for the view to // react to specific changes in the state of your models. // Creating a Backbone.View creates its initial element outside of the DOM, // if an existing element is not provided... var View = Backbone.View = function(options) { this.cid = _.uniqueId('view'); _.extend(this, _.pick(options, viewOptions)); this._ensureElement(); this.initialize.apply(this, arguments); }; // Cached regex to split keys for `delegate`. var delegateEventSplitter = /^(\S+)\s*(.*)$/; // List of view options to be set as properties. var viewOptions = ['model', 'collection', 'el', 'id', 'attributes', 'className', 'tagName', 'events']; // Set up all inheritable **Backbone.View** properties and methods. _.extend(View.prototype, Events, { // The default `tagName` of a View's element is `"div"`. tagName: 'div', // jQuery delegate for element lookup, scoped to DOM elements within the // current view. This should be preferred to global lookups where possible. $: function(selector) { return this.$el.find(selector); }, // Initialize is an empty function by default. Override it with your own // initialization logic. initialize: function(){}, // **render** is the core function that your view should override, in order // to populate its element (`this.el`), with the appropriate HTML. The // convention is for **render** to always return `this`. render: function() { return this; }, // Remove this view by taking the element out of the DOM, and removing any // applicable Backbone.Events listeners. remove: function() { this._removeElement(); this.stopListening(); return this; }, // Remove this view's element from the document and all event listeners // attached to it. Exposed for subclasses using an alternative DOM // manipulation API. _removeElement: function() { this.$el.remove(); }, // Change the view's element (`this.el` property) and re-delegate the // view's events on the new element. setElement: function(element) { this.undelegateEvents(); this._setElement(element); this.delegateEvents(); return this; }, // Creates the `this.el` and `this.$el` references for this view using the // given `el`. `el` can be a CSS selector or an HTML string, a jQuery // context or an element. Subclasses can override this to utilize an // alternative DOM manipulation API and are only required to set the // `this.el` property. _setElement: function(el) { this.$el = el instanceof Backbone.$ ? el : Backbone.$(el); this.el = this.$el[0]; }, // Set callbacks, where `this.events` is a hash of // // *{"event selector": "callback"}* // // { // 'mousedown .title': 'edit', // 'click .button': 'save', // 'click .open': function(e) { ... } // } // // pairs. Callbacks will be bound to the view, with `this` set properly. // Uses event delegation for efficiency. // Omitting the selector binds the event to `this.el`. delegateEvents: function(events) { events || (events = _.result(this, 'events')); if (!events) return this; this.undelegateEvents(); for (var key in events) { var method = events[key]; if (!_.isFunction(method)) method = this[method]; if (!method) continue; var match = key.match(delegateEventSplitter); this.delegate(match[1], match[2], _.bind(method, this)); } return this; }, // Add a single event listener to the view's element (or a child element // using `selector`). This only works for delegate-able events: not `focus`, // `blur`, and not `change`, `submit`, and `reset` in Internet Explorer. delegate: function(eventName, selector, listener) { this.$el.on(eventName + '.delegateEvents' + this.cid, selector, listener); return this; }, // Clears all callbacks previously bound to the view by `delegateEvents`. // You usually don't need to use this, but may wish to if you have multiple // Backbone views attached to the same DOM element. undelegateEvents: function() { if (this.$el) this.$el.off('.delegateEvents' + this.cid); return this; }, // A finer-grained `undelegateEvents` for removing a single delegated event. // `selector` and `listener` are both optional. undelegate: function(eventName, selector, listener) { this.$el.off(eventName + '.delegateEvents' + this.cid, selector, listener); return this; }, // Produces a DOM element to be assigned to your view. Exposed for // subclasses using an alternative DOM manipulation API. _createElement: function(tagName) { return document.createElement(tagName); }, // Ensure that the View has a DOM element to render into. // If `this.el` is a string, pass it through `$()`, take the first // matching element, and re-assign it to `el`. Otherwise, create // an element from the `id`, `className` and `tagName` properties. _ensureElement: function() { if (!this.el) { var attrs = _.extend({}, _.result(this, 'attributes')); if (this.id) attrs.id = _.result(this, 'id'); if (this.className) attrs['class'] = _.result(this, 'className'); this.setElement(this._createElement(_.result(this, 'tagName'))); this._setAttributes(attrs); } else { this.setElement(_.result(this, 'el')); } }, // Set attributes from a hash on this view's element. Exposed for // subclasses using an alternative DOM manipulation API. _setAttributes: function(attributes) { this.$el.attr(attributes); } }); // Backbone.sync // ------------- // Override this function to change the manner in which Backbone persists // models to the server. You will be passed the type of request, and the // model in question. By default, makes a RESTful Ajax request // to the model's `url()`. Some possible customizations could be: // // * Use `setTimeout` to batch rapid-fire updates into a single request. // * Send up the models as XML instead of JSON. // * Persist models via WebSockets instead of Ajax. // // Turn on `Backbone.emulateHTTP` in order to send `PUT` and `DELETE` requests // as `POST`, with a `_method` parameter containing the true HTTP method, // as well as all requests with the body as `application/x-www-form-urlencoded` // instead of `application/json` with the model in a param named `model`. // Useful when interfacing with server-side languages like **PHP** that make // it difficult to read the body of `PUT` requests. Backbone.sync = function(method, model, options) { var type = methodMap[method]; // Default options, unless specified. _.defaults(options || (options = {}), { emulateHTTP: Backbone.emulateHTTP, emulateJSON: Backbone.emulateJSON }); // Default JSON-request options. var params = {type: type, dataType: 'json'}; // Ensure that we have a URL. if (!options.url) { params.url = _.result(model, 'url') || urlError(); } // Ensure that we have the appropriate request data. if (options.data == null && model && (method === 'create' || method === 'update' || method === 'patch')) { params.contentType = 'application/json'; params.data = JSON.stringify(options.attrs || model.toJSON(options)); } // For older servers, emulate JSON by encoding the request into an HTML-form. if (options.emulateJSON) { params.contentType = 'application/x-www-form-urlencoded'; params.data = params.data ? {model: params.data} : {}; } // For older servers, emulate HTTP by mimicking the HTTP method with `_method` // And an `X-HTTP-Method-Override` header. if (options.emulateHTTP && (type === 'PUT' || type === 'DELETE' || type === 'PATCH')) { params.type = 'POST'; if (options.emulateJSON) params.data._method = type; var beforeSend = options.beforeSend; options.beforeSend = function(xhr) { xhr.setRequestHeader('X-HTTP-Method-Override', type); if (beforeSend) return beforeSend.apply(this, arguments); }; } // Don't process data on a non-GET request. if (params.type !== 'GET' && !options.emulateJSON) { params.processData = false; } // Pass along `textStatus` and `errorThrown` from jQuery. var error = options.error; options.error = function(xhr, textStatus, errorThrown) { options.textStatus = textStatus; options.errorThrown = errorThrown; if (error) error.call(options.context, xhr, textStatus, errorThrown); }; // Make the request, allowing the user to override any Ajax options. var xhr = options.xhr = Backbone.ajax(_.extend(params, options)); model.trigger('request', model, xhr, options); return xhr; }; // Map from CRUD to HTTP for our default `Backbone.sync` implementation. var methodMap = { 'create': 'POST', 'update': 'PUT', 'patch': 'PATCH', 'delete': 'DELETE', 'read': 'GET' }; // Set the default implementation of `Backbone.ajax` to proxy through to `$`. // Override this if you'd like to use a different library. Backbone.ajax = function() { return Backbone.$.ajax.apply(Backbone.$, arguments); }; // Backbone.Router // --------------- // Routers map faux-URLs to actions, and fire events when routes are // matched. Creating a new one sets its `routes` hash, if not set statically. var Router = Backbone.Router = function(options) { options || (options = {}); if (options.routes) this.routes = options.routes; this._bindRoutes(); this.initialize.apply(this, arguments); }; // Cached regular expressions for matching named param parts and splatted // parts of route strings. var optionalParam = /\((.*?)\)/g; var namedParam = /(\(\?)?:\w+/g; var splatParam = /\*\w+/g; var escapeRegExp = /[\-{}\[\]+?.,\\\^$|#\s]/g; // Set up all inheritable **Backbone.Router** properties and methods. _.extend(Router.prototype, Events, { // Initialize is an empty function by default. Override it with your own // initialization logic. initialize: function(){}, // Manually bind a single named route to a callback. For example: // // this.route('search/:query/p:num', 'search', function(query, num) { // ... // }); // route: function(route, name, callback) { if (!_.isRegExp(route)) route = this._routeToRegExp(route); if (_.isFunction(name)) { callback = name; name = ''; } if (!callback) callback = this[name]; var router = this; Backbone.history.route(route, function(fragment) { var args = router._extractParameters(route, fragment); if (router.execute(callback, args, name) !== false) { router.trigger.apply(router, ['route:' + name].concat(args)); router.trigger('route', name, args); Backbone.history.trigger('route', router, name, args); } }); return this; }, // Execute a route handler with the provided parameters. This is an // excellent place to do pre-route setup or post-route cleanup. execute: function(callback, args, name) { if (callback) callback.apply(this, args); }, // Simple proxy to `Backbone.history` to save a fragment into the history. navigate: function(fragment, options) { Backbone.history.navigate(fragment, options); return this; }, // Bind all defined routes to `Backbone.history`. We have to reverse the // order of the routes here to support behavior where the most general // routes can be defined at the bottom of the route map. _bindRoutes: function() { if (!this.routes) return; this.routes = _.result(this, 'routes'); var route, routes = _.keys(this.routes); while ((route = routes.pop()) != null) { this.route(route, this.routes[route]); } }, // Convert a route string into a regular expression, suitable for matching // against the current location hash. _routeToRegExp: function(route) { route = route.replace(escapeRegExp, '\\$&') .replace(optionalParam, '(?:$1)?') .replace(namedParam, function(match, optional) { return optional ? match : '([^/?]+)'; }) .replace(splatParam, '([^?]*?)'); return new RegExp('^' + route + '(?:\\?([\\s\\S]*))?$'); }, // Given a route, and a URL fragment that it matches, return the array of // extracted decoded parameters. Empty or unmatched parameters will be // treated as `null` to normalize cross-browser behavior. _extractParameters: function(route, fragment) { var params = route.exec(fragment).slice(1); return _.map(params, function(param, i) { // Don't decode the search params. if (i === params.length - 1) return param || null; return param ? decodeURIComponent(param) : null; }); } }); // Backbone.History // ---------------- // Handles cross-browser history management, based on either // [pushState](http://diveintohtml5.info/history.html) and real URLs, or // [onhashchange](https://developer.mozilla.org/en-US/docs/DOM/window.onhashchange) // and URL fragments. If the browser supports neither (old IE, natch), // falls back to polling. var History = Backbone.History = function() { this.handlers = []; this.checkUrl = _.bind(this.checkUrl, this); // Ensure that `History` can be used outside of the browser. if (typeof window !== 'undefined') { this.location = window.location; this.history = window.history; } }; // Cached regex for stripping a leading hash/slash and trailing space. var routeStripper = /^[#\/]|\s+$/g; // Cached regex for stripping leading and trailing slashes. var rootStripper = /^\/+|\/+$/g; // Cached regex for stripping urls of hash. var pathStripper = /#.*$/; // Has the history handling already been started? History.started = false; // Set up all inheritable **Backbone.History** properties and methods. _.extend(History.prototype, Events, { // The default interval to poll for hash changes, if necessary, is // twenty times a second. interval: 50, // Are we at the app root? atRoot: function() { var path = this.location.pathname.replace(/[^\/]$/, '$&/'); return path === this.root && !this.getSearch(); }, // Does the pathname match the root? matchRoot: function() { var path = this.decodeFragment(this.location.pathname); var root = path.slice(0, this.root.length - 1) + '/'; return root === this.root; }, // Unicode characters in `location.pathname` are percent encoded so they're // decoded for comparison. `%25` should not be decoded since it may be part // of an encoded parameter. decodeFragment: function(fragment) { return decodeURI(fragment.replace(/%25/g, '%2525')); }, // In IE6, the hash fragment and search params are incorrect if the // fragment contains `?`. getSearch: function() { var match = this.location.href.replace(/#.*/, '').match(/\?.+/); return match ? match[0] : ''; }, // Gets the true hash value. Cannot use location.hash directly due to bug // in Firefox where location.hash will always be decoded. getHash: function(window) { var match = (window || this).location.href.match(/#(.*)$/); return match ? match[1] : ''; }, // Get the pathname and search params, without the root. getPath: function() { var path = this.decodeFragment( this.location.pathname + this.getSearch() ).slice(this.root.length - 1); return path.charAt(0) === '/' ? path.slice(1) : path; }, // Get the cross-browser normalized URL fragment from the path or hash. getFragment: function(fragment) { if (fragment == null) { if (this._usePushState || !this._wantsHashChange) { fragment = this.getPath(); } else { fragment = this.getHash(); } } return fragment.replace(routeStripper, ''); }, // Start the hash change handling, returning `true` if the current URL matches // an existing route, and `false` otherwise. start: function(options) { if (History.started) throw new Error('Backbone.history has already been started'); History.started = true; // Figure out the initial configuration. Do we need an iframe? // Is pushState desired ... is it available? this.options = _.extend({root: '/'}, this.options, options); this.root = this.options.root; this._wantsHashChange = this.options.hashChange !== false; this._hasHashChange = 'onhashchange' in window && (document.documentMode === void 0 || document.documentMode > 7); this._useHashChange = this._wantsHashChange && this._hasHashChange; this._wantsPushState = !!this.options.pushState; this._hasPushState = !!(this.history && this.history.pushState); this._usePushState = this._wantsPushState && this._hasPushState; this.fragment = this.getFragment(); // Normalize root to always include a leading and trailing slash. this.root = ('/' + this.root + '/').replace(rootStripper, '/'); // Transition from hashChange to pushState or vice versa if both are // requested. if (this._wantsHashChange && this._wantsPushState) { // If we've started off with a route from a `pushState`-enabled // browser, but we're currently in a browser that doesn't support it... if (!this._hasPushState && !this.atRoot()) { var root = this.root.slice(0, -1) || '/'; this.location.replace(root + '#' + this.getPath()); // Return immediately as browser will do redirect to new url return true; // Or if we've started out with a hash-based route, but we're currently // in a browser where it could be `pushState`-based instead... } else if (this._hasPushState && this.atRoot()) { this.navigate(this.getHash(), {replace: true}); } } // Proxy an iframe to handle location events if the browser doesn't // support the `hashchange` event, HTML5 history, or the user wants // `hashChange` but not `pushState`. if (!this._hasHashChange && this._wantsHashChange && !this._usePushState) { this.iframe = document.createElement('iframe'); this.iframe.src = 'javascript:0'; this.iframe.style.display = 'none'; this.iframe.tabIndex = -1; var body = document.body; // Using `appendChild` will throw on IE < 9 if the document is not ready. var iWindow = body.insertBefore(this.iframe, body.firstChild).contentWindow; iWindow.document.open(); iWindow.document.close(); iWindow.location.hash = '#' + this.fragment; } // Add a cross-platform `addEventListener` shim for older browsers. var addEventListener = window.addEventListener || function (eventName, listener) { return attachEvent('on' + eventName, listener); }; // Depending on whether we're using pushState or hashes, and whether // 'onhashchange' is supported, determine how we check the URL state. if (this._usePushState) { addEventListener('popstate', this.checkUrl, false); } else if (this._useHashChange && !this.iframe) { addEventListener('hashchange', this.checkUrl, false); } else if (this._wantsHashChange) { this._checkUrlInterval = setInterval(this.checkUrl, this.interval); } if (!this.options.silent) return this.loadUrl(); }, // Disable Backbone.history, perhaps temporarily. Not useful in a real app, // but possibly useful for unit testing Routers. stop: function() { // Add a cross-platform `removeEventListener` shim for older browsers. var removeEventListener = window.removeEventListener || function (eventName, listener) { return detachEvent('on' + eventName, listener); }; // Remove window listeners. if (this._usePushState) { removeEventListener('popstate', this.checkUrl, false); } else if (this._useHashChange && !this.iframe) { removeEventListener('hashchange', this.checkUrl, false); } // Clean up the iframe if necessary. if (this.iframe) { document.body.removeChild(this.iframe); this.iframe = null; } // Some environments will throw when clearing an undefined interval. if (this._checkUrlInterval) clearInterval(this._checkUrlInterval); History.started = false; }, // Add a route to be tested when the fragment changes. Routes added later // may override previous routes. route: function(route, callback) { this.handlers.unshift({route: route, callback: callback}); }, // Checks the current URL to see if it has changed, and if it has, // calls `loadUrl`, normalizing across the hidden iframe. checkUrl: function(e) { var current = this.getFragment(); // If the user pressed the back button, the iframe's hash will have // changed and we should use that for comparison. if (current === this.fragment && this.iframe) { current = this.getHash(this.iframe.contentWindow); } if (current === this.fragment) return false; if (this.iframe) this.navigate(current); this.loadUrl(); }, // Attempt to load the current URL fragment. If a route succeeds with a // match, returns `true`. If no defined routes matches the fragment, // returns `false`. loadUrl: function(fragment) { // If the root doesn't match, no routes can match either. if (!this.matchRoot()) return false; fragment = this.fragment = this.getFragment(fragment); return _.some(this.handlers, function(handler) { if (handler.route.test(fragment)) { handler.callback(fragment); return true; } }); }, // Save a fragment into the hash history, or replace the URL state if the // 'replace' option is passed. You are responsible for properly URL-encoding // the fragment in advance. // // The options object can contain `trigger: true` if you wish to have the // route callback be fired (not usually desirable), or `replace: true`, if // you wish to modify the current URL without adding an entry to the history. navigate: function(fragment, options) { if (!History.started) return false; if (!options || options === true) options = {trigger: !!options}; // Normalize the fragment. fragment = this.getFragment(fragment || ''); // Don't include a trailing slash on the root. var root = this.root; if (fragment === '' || fragment.charAt(0) === '?') { root = root.slice(0, -1) || '/'; } var url = root + fragment; // Strip the hash and decode for matching. fragment = this.decodeFragment(fragment.replace(pathStripper, '')); if (this.fragment === fragment) return; this.fragment = fragment; // If pushState is available, we use it to set the fragment as a real URL. if (this._usePushState) { this.history[options.replace ? 'replaceState' : 'pushState']({}, document.title, url); // If hash changes haven't been explicitly disabled, update the hash // fragment to store history. } else if (this._wantsHashChange) { this._updateHash(this.location, fragment, options.replace); if (this.iframe && (fragment !== this.getHash(this.iframe.contentWindow))) { var iWindow = this.iframe.contentWindow; // Opening and closing the iframe tricks IE7 and earlier to push a // history entry on hash-tag change. When replace is true, we don't // want this. if (!options.replace) { iWindow.document.open(); iWindow.document.close(); } this._updateHash(iWindow.location, fragment, options.replace); } // If you've told us that you explicitly don't want fallback hashchange- // based history, then `navigate` becomes a page refresh. } else { return this.location.assign(url); } if (options.trigger) return this.loadUrl(fragment); }, // Update the hash location, either replacing the current entry, or adding // a new one to the browser history. _updateHash: function(location, fragment, replace) { if (replace) { var href = location.href.replace(/(javascript:|#).*$/, ''); location.replace(href + '#' + fragment); } else { // Some browsers require that `hash` contains a leading #. location.hash = '#' + fragment; } } }); // Create the default Backbone.history. Backbone.history = new History; // Helpers // ------- // Helper function to correctly set up the prototype chain for subclasses. // Similar to `goog.inherits`, but uses a hash of prototype properties and // class properties to be extended. var extend = function(protoProps, staticProps) { var parent = this; var child; // The constructor function for the new subclass is either defined by you // (the "constructor" property in your `extend` definition), or defaulted // by us to simply call the parent constructor. if (protoProps && _.has(protoProps, 'constructor')) { child = protoProps.constructor; } else { child = function(){ return parent.apply(this, arguments); }; } // Add static properties to the constructor function, if supplied. _.extend(child, parent, staticProps); // Set the prototype chain to inherit from `parent`, without calling // `parent` constructor function. var Surrogate = function(){ this.constructor = child; }; Surrogate.prototype = parent.prototype; child.prototype = new Surrogate; // Add prototype properties (instance properties) to the subclass, // if supplied. if (protoProps) _.extend(child.prototype, protoProps); // Set a convenience property in case the parent's prototype is needed // later. child.__super__ = parent.prototype; return child; }; // Set up inheritance for the model, collection, router, view and history. Model.extend = Collection.extend = Router.extend = View.extend = History.extend = extend; // Throw an error when a URL is needed, and none is supplied. var urlError = function() { throw new Error('A "url" property or function must be specified'); }; // Wrap an optional error callback with a fallback error event. var wrapError = function(model, options) { var error = options.error; options.error = function(resp) { if (error) error.call(options.context, model, resp, options); model.trigger('error', model, resp, options); }; }; return Backbone; }));
classic/src/scenes/mailboxes/src/Components/ServiceTooltip/ServiceTooltipHeading.js
wavebox/waveboxapp
import PropTypes from 'prop-types' import React from 'react' import shallowCompare from 'react-addons-shallow-compare' import { withStyles } from '@material-ui/core/styles' import red from '@material-ui/core/colors/red' import { accountStore } from 'stores/account' import ThemeTools from 'wbui/Themes/ThemeTools' import FARGemIcon from 'wbfa/FARGem' import FASExclamationIcon from 'wbfa/FASExclamation' import TooltipHeading from 'wbui/TooltipHeading' import SettingsSharpIcon from '@material-ui/icons/SettingsSharp' const styles = (theme) => ({ proIcon: { color: ThemeTools.getValue(theme, 'wavebox.popover.color'), fontSize: 14, marginRight: 2 }, authInvalidText: { color: red['A200'], cursor: 'pointer', textDecoration: 'underline' }, authInvalidIcon: { color: red['A200'], width: 14, height: 14, marginRight: 6 } }) @withStyles(styles, { withTheme: true }) class ServiceTooltipHeading extends React.Component { /* **************************************************************************/ // Class /* **************************************************************************/ static propTypes = { serviceId: PropTypes.string.isRequired, onOpenSettings: PropTypes.func.isRequired, onReauthenticate: PropTypes.func.isRequired } /* **************************************************************************/ // Component lifecycle /* **************************************************************************/ componentDidMount () { accountStore.listen(this.accountChanged) } componentWillUnmount () { accountStore.unlisten(this.accountChanged) } componentWillReceiveProps (nextProps) { if (this.props.serviceId !== nextProps.serviceId) { this.setState(this.generateServiceState(nextProps.serviceId)) } } /* **************************************************************************/ // Data lifecycle /* **************************************************************************/ state = (() => { return { ...this.generateServiceState(this.props.serviceId) } })() accountChanged = (accountState) => { this.setState(this.generateServiceState(this.props.serviceId, accountState)) } /** * @param serviceId: the id of the service * @param accountState=autoget: the current account state * @return state object */ generateServiceState (serviceId, accountState = accountStore.getState()) { const mailbox = accountState.getMailboxForService(serviceId) const service = accountState.getService(serviceId) const serviceData = accountState.getServiceData(serviceId) return mailbox && service && serviceData ? { hasMembers: true, displayName: accountState.resolvedServiceDisplayName( serviceId, accountState.resolvedMailboxDisplayName(mailbox.id) ), humanizedServiceTypeShort: service.humanizedTypeShort, humanizedServiceType: service.humanizedType, isRestricted: accountState.isServiceRestricted(serviceId), isAuthenticationInvalid: accountState.isMailboxAuthInvalidForServiceId(serviceId) } : { hasMembers: false } } /* **************************************************************************/ // UI Actions /* **************************************************************************/ handleSuppressContextMenu = (evt) => { evt.preventDefault() evt.stopPropagation() } handleReauthenticate = (evt) => { this.props.onReauthenticate(evt, this.props.serviceId) } handleOpenSettings = (evt) => { this.props.onOpenSettings(evt, this.props.serviceId) } /* **************************************************************************/ // Rendering /* **************************************************************************/ shouldComponentUpdate (nextProps, nextState) { return shallowCompare(this, nextProps, nextState) } render () { const { serviceId, classes, theme, children, onOpenSettings, onReauthenticate, ...passProps } = this.props const { displayName, humanizedServiceTypeShort, humanizedServiceType, hasMembers, isRestricted, isAuthenticationInvalid } = this.state if (!hasMembers) { return false } const primary = displayName === humanizedServiceTypeShort || displayName === humanizedServiceType ? displayName : `${humanizedServiceTypeShort} : ${displayName}` let secondary if (isRestricted) { secondary = ( <span> <FARGemIcon className={classes.proIcon} /> <span>Upgrade to Pro</span> </span> ) } else if (isAuthenticationInvalid) { secondary = ( <span className={classes.authInvalidText} onClick={this.handleReauthenticate}> <FASExclamationIcon className={classes.authInvalidIcon} /> <span>Authentication Problem. Click to reauthenticate</span> </span> ) } return ( <TooltipHeading primary={primary} secondary={secondary} actionIcon={<SettingsSharpIcon />} onActionClick={this.handleOpenSettings} {...passProps} /> ) } } export default ServiceTooltipHeading
__tests__/boilerplate_test.js
ArcQ/variable-form-fields
// import React from 'react'; // import { // renderIntoDocument, // findRenderedDOMComponentWithClass, // findRenderedDOMComponentWithTag, // Simulate // } from 'react-addons-test-utils'; import { expect } from 'chai'; describe('Boilerplate', function () { it('should do boilerplate things', function () { // TODO: test something now expect(true).to.equal(true); }); });
docker-react-web-app/src/components/dataButton.js
garrettgraber/galaxy-map
import React from 'react'; import ReactFauxDOM from 'react-faux-dom'; import { connect } from 'react-redux'; var DataButtonMouseover = { /*fill-opacity: 1.0;*/ opacity: 0.5, // strokeWidth: 5, /*stroke: #FF851B;*/ stroke: "teal", backgroundColor: 'black', cursor: "pointer", fill: "aqua" }; class DataButton extends React.Component { constructor() { super(); this.state = { hover: false, style: {} }; } toggleHover() { this.setState({hover: !this.state.hover}) } onMouseOver(e) { console.log("\nMouse Over DATA"); this.setState({hover: true}); } onMouseOut(e) { console.log("\nMouse Out DATA"); // console.log("\nMouse Out coordinates: ", this.props.coordinates) console.log("hover before: ", this.state) } onMouseEnter(e) { console.log("\nMouse Enter DATA"); this.setState({hover: true}); // console.log("\nMouse Enter coordinates: ", this.props.coordinates); } onMouseLeave(e) { console.log("\nMouse Leave DATA"); this.setState({hover: false}); } dataClick(e) { console.log("data clicked: ", e); this.props.dispatch(this.props.buttonAction); } render() { var DataButtonStyle = {stroke: "#49fb35", strokeWidth: 1, opacity: 1, backgroundColor: 'black'}; var DataButtonTextStyle = {fill: "#49fb35", opacity: 1}; if(this.state.hover) { var DataButtonStyle = DataButtonMouseover; var DataButtonTextStyle = {fill: "#49fb35", opacity: 1, cursor: "pointer"}; } // console.log("props.starSystem: ", this.props); // var CurrentLocation = galacticToMapCoordinate(this.props.x, this.props.y); return ( <g> <rect onClick={(e) => this.dataClick(e)} onMouseOver={(e) => this.onMouseOver(e)} onMouseOut={(e) => this.onMouseOut(e)} onMouseLeave={(e) => this.onMouseLeave(e)} x={this.props.x} y={this.props.y} width={200} height={48} style={DataButtonStyle}></rect> <text onClick={(e) => this.dataClick(e)} onMouseOver={(e) => this.onMouseOver(e)} onMouseOut={(e) => this.onMouseOut(e)} onMouseLeave={(e) => this.onMouseLeave(e)} x={this.props.x + 12} y={this.props.y + 30} height={20} width={40} style={DataButtonTextStyle}>{this.props.buttonName}</text> </g> ); } } const mapStateToProps = (state = {}) => { return Object.assign({}, state); }; export default connect(mapStateToProps)(DataButton);
ajax/libs/react-instantsearch/4.1.2/Dom.js
ahocevar/cdnjs
/*! ReactInstantSearch 4.1.2 | © Algolia, inc. | https://community.algolia.com/react-instantsearch/ */ (function webpackUniversalModuleDefinition(root, factory) { if(typeof exports === 'object' && typeof module === 'object') module.exports = factory(require("react")); else if(typeof define === 'function' && define.amd) define(["react"], factory); else if(typeof exports === 'object') exports["Dom"] = factory(require("react")); else root["ReactInstantSearch"] = root["ReactInstantSearch"] || {}, root["ReactInstantSearch"]["Dom"] = factory(root["React"]); })(this, function(__WEBPACK_EXTERNAL_MODULE_4__) { return /******/ (function(modules) { // webpackBootstrap /******/ // The module cache /******/ var installedModules = {}; /******/ /******/ // The require function /******/ function __webpack_require__(moduleId) { /******/ /******/ // Check if module is in cache /******/ if(installedModules[moduleId]) { /******/ return installedModules[moduleId].exports; /******/ } /******/ // Create a new module (and put it into the cache) /******/ var module = installedModules[moduleId] = { /******/ i: moduleId, /******/ l: false, /******/ exports: {} /******/ }; /******/ /******/ // Execute the module function /******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__); /******/ /******/ // Flag the module as loaded /******/ module.l = true; /******/ /******/ // Return the exports of the module /******/ return module.exports; /******/ } /******/ /******/ /******/ // expose the modules object (__webpack_modules__) /******/ __webpack_require__.m = modules; /******/ /******/ // expose the module cache /******/ __webpack_require__.c = installedModules; /******/ /******/ // define getter function for harmony exports /******/ __webpack_require__.d = function(exports, name, getter) { /******/ if(!__webpack_require__.o(exports, name)) { /******/ Object.defineProperty(exports, name, { /******/ configurable: false, /******/ enumerable: true, /******/ get: getter /******/ }); /******/ } /******/ }; /******/ /******/ // getDefaultExport function for compatibility with non-harmony modules /******/ __webpack_require__.n = function(module) { /******/ var getter = module && module.__esModule ? /******/ function getDefault() { return module['default']; } : /******/ function getModuleExports() { return module; }; /******/ __webpack_require__.d(getter, 'a', getter); /******/ return getter; /******/ }; /******/ /******/ // Object.prototype.hasOwnProperty.call /******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); }; /******/ /******/ // __webpack_public_path__ /******/ __webpack_require__.p = ""; /******/ /******/ // Load entry module and return exports /******/ return __webpack_require__(__webpack_require__.s = 353); /******/ }) /************************************************************************/ /******/ ([ /* 0 */ /***/ (function(module, exports, __webpack_require__) { /** * Copyright (c) 2013-present, Facebook, Inc. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ if (false) { var REACT_ELEMENT_TYPE = (typeof Symbol === 'function' && Symbol.for && Symbol.for('react.element')) || 0xeac7; var isValidElement = function(object) { return typeof object === 'object' && object !== null && object.$$typeof === REACT_ELEMENT_TYPE; }; // By explicitly using `prop-types` you are opting into new development behavior. // http://fb.me/prop-types-in-prod var throwOnDirectAccess = true; module.exports = require('./factoryWithTypeCheckers')(isValidElement, throwOnDirectAccess); } else { // By explicitly using `prop-types` you are opting into new production behavior. // http://fb.me/prop-types-in-prod module.exports = __webpack_require__(159)(); } /***/ }), /* 1 */ /***/ (function(module, exports) { /** * Checks if `value` is classified as an `Array` object. * * @static * @memberOf _ * @since 0.1.0 * @category Lang * @param {*} value The value to check. * @returns {boolean} Returns `true` if `value` is an array, else `false`. * @example * * _.isArray([1, 2, 3]); * // => true * * _.isArray(document.body.children); * // => false * * _.isArray('abc'); * // => false * * _.isArray(_.noop); * // => false */ var isArray = Array.isArray; module.exports = isArray; /***/ }), /* 2 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var _isEqual2 = __webpack_require__(81); var _isEqual3 = _interopRequireDefault(_isEqual2); var _has2 = __webpack_require__(58); var _has3 = _interopRequireDefault(_has2); var _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }(); exports.default = createConnector; var _propTypes = __webpack_require__(0); var _propTypes2 = _interopRequireDefault(_propTypes); var _react = __webpack_require__(4); var _react2 = _interopRequireDefault(_react); var _utils = __webpack_require__(44); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; } function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; } /** * @typedef {object} ConnectorDescription * @property {string} displayName - the displayName used by the wrapper * @property {function} refine - a function to filter the local state * @property {function} getSearchParameters - function transforming the local state to a SearchParameters * @property {function} getMetadata - metadata of the widget * @property {function} transitionState - hook after the state has changed * @property {function} getProvidedProps - transform the state into props passed to the wrapped component. * Receives (props, widgetStates, searchState, metadata) and returns the local state. * @property {function} getId - Receives props and return the id that will be used to identify the widget * @property {function} cleanUp - hook when the widget will unmount. Receives (props, searchState) and return a cleaned state. * @property {object} propTypes - PropTypes forwarded to the wrapped component. * @property {object} defaultProps - default values for the props */ /** * Connectors are the HOC used to transform React components * into InstantSearch widgets. * In order to simplify the construction of such connectors * `createConnector` takes a description and transform it into * a connector. * @param {ConnectorDescription} connectorDesc the description of the connector * @return {Connector} a function that wraps a component into * an instantsearch connected one. */ function createConnector(connectorDesc) { if (!connectorDesc.displayName) { throw new Error('`createConnector` requires you to provide a `displayName` property.'); } var hasRefine = (0, _has3.default)(connectorDesc, 'refine'); var hasSearchForFacetValues = (0, _has3.default)(connectorDesc, 'searchForFacetValues'); var hasSearchParameters = (0, _has3.default)(connectorDesc, 'getSearchParameters'); var hasMetadata = (0, _has3.default)(connectorDesc, 'getMetadata'); var hasTransitionState = (0, _has3.default)(connectorDesc, 'transitionState'); var hasCleanUp = (0, _has3.default)(connectorDesc, 'cleanUp'); var isWidget = hasSearchParameters || hasMetadata || hasTransitionState; return function (Composed) { var _class, _temp, _initialiseProps; return _temp = _class = function (_Component) { _inherits(Connector, _Component); function Connector(props, context) { _classCallCheck(this, Connector); var _this = _possibleConstructorReturn(this, (Connector.__proto__ || Object.getPrototypeOf(Connector)).call(this, props, context)); _initialiseProps.call(_this); var _context$ais = context.ais, store = _context$ais.store, widgetsManager = _context$ais.widgetsManager; var canRender = false; _this.state = { props: _this.getProvidedProps(_extends({}, props, { canRender: canRender })), canRender: canRender // use to know if a component is rendered (browser), or not (server). }; _this.unsubscribe = store.subscribe(function () { if (_this.state.canRender) { _this.setState({ props: _this.getProvidedProps(_extends({}, _this.props, { canRender: _this.state.canRender })) }); } }); if (isWidget) { _this.unregisterWidget = widgetsManager.registerWidget(_this); } return _this; } _createClass(Connector, [{ key: 'getMetadata', value: function getMetadata(nextWidgetsState) { if (hasMetadata) { return connectorDesc.getMetadata.call(this, this.props, nextWidgetsState); } return {}; } }, { key: 'getSearchParameters', value: function getSearchParameters(searchParameters) { if (hasSearchParameters) { return connectorDesc.getSearchParameters.call(this, searchParameters, this.props, this.context.ais.store.getState().widgets); } return null; } }, { key: 'transitionState', value: function transitionState(prevWidgetsState, nextWidgetsState) { if (hasTransitionState) { return connectorDesc.transitionState.call(this, this.props, prevWidgetsState, nextWidgetsState); } return nextWidgetsState; } }, { key: 'componentDidMount', value: function componentDidMount() { this.setState({ canRender: true }); } }, { key: 'componentWillMount', value: function componentWillMount() { if (connectorDesc.getSearchParameters) { this.context.ais.onSearchParameters(connectorDesc.getSearchParameters, this.context, this.props); } } }, { key: 'componentWillReceiveProps', value: function componentWillReceiveProps(nextProps) { if (!(0, _isEqual3.default)(this.props, nextProps)) { this.setState({ props: this.getProvidedProps(nextProps) }); if (isWidget) { // Since props might have changed, we need to re-run getSearchParameters // and getMetadata with the new props. this.context.ais.widgetsManager.update(); if (connectorDesc.transitionState) { this.context.ais.onSearchStateChange(connectorDesc.transitionState.call(this, nextProps, this.context.ais.store.getState().widgets, this.context.ais.store.getState().widgets)); } } } } }, { key: 'componentWillUnmount', value: function componentWillUnmount() { this.unsubscribe(); if (isWidget) { this.unregisterWidget(); // will schedule an update if (hasCleanUp) { var newState = connectorDesc.cleanUp.call(this, this.props, this.context.ais.store.getState().widgets); this.context.ais.store.setState(_extends({}, this.context.ais.store.getState(), { widgets: newState })); this.context.ais.onSearchStateChange((0, _utils.removeEmptyKey)(newState)); } } } }, { key: 'shouldComponentUpdate', value: function shouldComponentUpdate(nextProps, nextState) { var propsEqual = (0, _utils.shallowEqual)(this.props, nextProps); if (this.state.props === null || nextState.props === null) { if (this.state.props === nextState.props) { return !propsEqual; } return true; } return !propsEqual || !(0, _utils.shallowEqual)(this.state.props, nextState.props); } }, { key: 'render', value: function render() { var _this2 = this; if (this.state.props === null) { return null; } var refineProps = hasRefine ? { refine: this.refine, createURL: this.createURL } : {}; var searchForFacetValuesProps = hasSearchForFacetValues ? { searchForItems: this.searchForFacetValues, searchForFacetValues: function searchForFacetValues(facetName, query) { if (false) { // eslint-disable-next-line no-console console.warn('react-instantsearch: `searchForFacetValues` has been renamed to' + '`searchForItems`, this will break in the next major version.'); } _this2.searchForFacetValues(facetName, query); } } : {}; if (false) { var onlyGetProvidedPropsUsage = !Object.keys(connectorDesc).find(function (key) { return ['getMetadata', 'getSearchParameters', 'refine', 'cleanUp'].indexOf(key) > -1; }); if (onlyGetProvidedPropsUsage && !connectorDesc.displayName.startsWith('Algolia')) { // eslint-disable-next-line no-console console.warn('react-instantsearch: it seems that you are using the `createConnector` api ' + 'only to access the `searchState` and the `searchResults` through `getProvidedProps`.' + 'We are now provided a dedicated API' + ' the `connectStateResults` connector that you should use instead. The `createConnector` API will be ' + 'soon deprecated and will break in future next major versions.'); } } return _react2.default.createElement(Composed, _extends({}, this.props, this.state.props, refineProps, searchForFacetValuesProps)); } }]); return Connector; }(_react.Component), _class.displayName = connectorDesc.displayName + '(' + (0, _utils.getDisplayName)(Composed) + ')', _class.defaultClassNames = Composed.defaultClassNames, _class.propTypes = connectorDesc.propTypes, _class.defaultProps = connectorDesc.defaultProps, _class.contextTypes = { // @TODO: more precise state manager propType ais: _propTypes2.default.object.isRequired, multiIndexContext: _propTypes2.default.object }, _initialiseProps = function _initialiseProps() { var _this3 = this; this.getProvidedProps = function (props) { var store = _this3.context.ais.store; var _store$getState = store.getState(), results = _store$getState.results, searching = _store$getState.searching, error = _store$getState.error, widgets = _store$getState.widgets, metadata = _store$getState.metadata, resultsFacetValues = _store$getState.resultsFacetValues, searchingForFacetValues = _store$getState.searchingForFacetValues; var searchState = { results: results, searching: searching, error: error, searchingForFacetValues: searchingForFacetValues }; return connectorDesc.getProvidedProps.call(_this3, props, widgets, searchState, metadata, resultsFacetValues); }; this.refine = function () { var _connectorDesc$refine; for (var _len = arguments.length, args = Array(_len), _key = 0; _key < _len; _key++) { args[_key] = arguments[_key]; } _this3.context.ais.onInternalStateUpdate((_connectorDesc$refine = connectorDesc.refine).call.apply(_connectorDesc$refine, [_this3, _this3.props, _this3.context.ais.store.getState().widgets].concat(args))); }; this.searchForFacetValues = function () { for (var _len2 = arguments.length, args = Array(_len2), _key2 = 0; _key2 < _len2; _key2++) { args[_key2] = arguments[_key2]; } _this3.context.ais.onSearchForFacetValues(connectorDesc.searchForFacetValues.apply(connectorDesc, [_this3.props, _this3.context.ais.store.getState().widgets].concat(args))); }; this.createURL = function () { var _connectorDesc$refine2; for (var _len3 = arguments.length, args = Array(_len3), _key3 = 0; _key3 < _len3; _key3++) { args[_key3] = arguments[_key3]; } return _this3.context.ais.createHrefForState((_connectorDesc$refine2 = connectorDesc.refine).call.apply(_connectorDesc$refine2, [_this3, _this3.props, _this3.context.ais.store.getState().widgets].concat(args))); }; this.cleanUp = function () { var _connectorDesc$cleanU; for (var _len4 = arguments.length, args = Array(_len4), _key4 = 0; _key4 < _len4; _key4++) { args[_key4] = arguments[_key4]; } return (_connectorDesc$cleanU = connectorDesc.cleanUp).call.apply(_connectorDesc$cleanU, [_this3].concat(args)); }; }, _temp; }; } /***/ }), /* 3 */ /***/ (function(module, exports, __webpack_require__) { var freeGlobal = __webpack_require__(76); /** Detect free variable `self`. */ var freeSelf = typeof self == 'object' && self && self.Object === Object && self; /** Used as a reference to the global object. */ var root = freeGlobal || freeSelf || Function('return this')(); module.exports = root; /***/ }), /* 4 */ /***/ (function(module, exports) { module.exports = __WEBPACK_EXTERNAL_MODULE_4__; /***/ }), /* 5 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var _get2 = __webpack_require__(72); var _get3 = _interopRequireDefault(_get2); var _omit2 = __webpack_require__(35); var _omit3 = _interopRequireDefault(_omit2); var _has2 = __webpack_require__(58); var _has3 = _interopRequireDefault(_has2); var _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; exports.getIndex = getIndex; exports.getResults = getResults; exports.hasMultipleIndex = hasMultipleIndex; exports.refineValue = refineValue; exports.getCurrentRefinementValue = getCurrentRefinementValue; exports.cleanUpValue = cleanUpValue; function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; } function getIndex(context) { return context && context.multiIndexContext ? context.multiIndexContext.targetedIndex : context.ais.mainTargetedIndex; } function getResults(searchResults, context) { if (searchResults.results && !searchResults.results.hits) { return searchResults.results[getIndex(context)] ? searchResults.results[getIndex(context)] : null; } else { return searchResults.results ? searchResults.results : null; } } function hasMultipleIndex(context) { return context && context.multiIndexContext; } // eslint-disable-next-line max-params function refineValue(searchState, nextRefinement, context, resetPage, namespace) { if (hasMultipleIndex(context)) { return namespace ? refineMultiIndexWithNamespace(searchState, nextRefinement, context, resetPage, namespace) : refineMultiIndex(searchState, nextRefinement, context, resetPage); } else { /* If we have a multi index page with shared widgets we should also reset their page to 1 see: https://github.com/algolia/react-instantsearch/issues/310 */ if (searchState.indices) { Object.keys(searchState.indices).forEach(function (targetedIndex) { searchState = refineValue(searchState, { page: 1 }, { multiIndexContext: { targetedIndex: targetedIndex } }, true, namespace); }); } return namespace ? refineSingleIndexWithNamespace(searchState, nextRefinement, resetPage, namespace) : refineSingleIndex(searchState, nextRefinement, resetPage); } } function refineMultiIndex(searchState, nextRefinement, context, resetPage) { var page = resetPage ? { page: 1 } : undefined; var index = getIndex(context); var state = (0, _has3.default)(searchState, 'indices.' + index) ? _extends({}, searchState.indices, _defineProperty({}, index, _extends({}, searchState.indices[index], nextRefinement, page))) : _extends({}, searchState.indices, _defineProperty({}, index, _extends({}, nextRefinement, page))); return _extends({}, searchState, { indices: state }); } function refineSingleIndex(searchState, nextRefinement, resetPage) { var page = resetPage ? { page: 1 } : undefined; return _extends({}, searchState, nextRefinement, page); } // eslint-disable-next-line max-params function refineMultiIndexWithNamespace(searchState, nextRefinement, context, resetPage, namespace) { var _extends4; var index = getIndex(context); var page = resetPage ? { page: 1 } : undefined; var state = (0, _has3.default)(searchState, 'indices.' + index) ? _extends({}, searchState.indices, _defineProperty({}, index, _extends({}, searchState.indices[index], (_extends4 = {}, _defineProperty(_extends4, namespace, _extends({}, searchState.indices[index][namespace], nextRefinement)), _defineProperty(_extends4, 'page', 1), _extends4)))) : _extends({}, searchState.indices, _defineProperty({}, index, _extends(_defineProperty({}, namespace, nextRefinement), page))); return _extends({}, searchState, { indices: state }); } function refineSingleIndexWithNamespace(searchState, nextRefinement, resetPage, namespace) { var page = resetPage ? { page: 1 } : undefined; return _extends({}, searchState, _defineProperty({}, namespace, _extends({}, searchState[namespace], nextRefinement)), page); } function getNamespaceAndAttributeName(id) { var parts = id.match(/^([^.]*)\.(.*)/); var namespace = parts && parts[1]; var attributeName = parts && parts[2]; return { namespace: namespace, attributeName: attributeName }; } // eslint-disable-next-line max-params function getCurrentRefinementValue(props, searchState, context, id, defaultValue, refinementsCallback) { var index = getIndex(context); var _getNamespaceAndAttri = getNamespaceAndAttributeName(id), namespace = _getNamespaceAndAttri.namespace, attributeName = _getNamespaceAndAttri.attributeName; var refinements = hasMultipleIndex(context) && searchState.indices && namespace && searchState.indices['' + index] && (0, _has3.default)(searchState.indices['' + index][namespace], '' + attributeName) || hasMultipleIndex(context) && searchState.indices && (0, _has3.default)(searchState, 'indices.' + index + '.' + id) || !hasMultipleIndex(context) && namespace && (0, _has3.default)(searchState[namespace], attributeName) || !hasMultipleIndex(context) && (0, _has3.default)(searchState, id); if (refinements) { var currentRefinement = void 0; if (hasMultipleIndex(context)) { currentRefinement = namespace ? (0, _get3.default)(searchState.indices['' + index][namespace], attributeName) : (0, _get3.default)(searchState.indices[index], id); } else { currentRefinement = namespace ? (0, _get3.default)(searchState[namespace], attributeName) : (0, _get3.default)(searchState, id); } return refinementsCallback(currentRefinement); } if (props.defaultRefinement) { return props.defaultRefinement; } return defaultValue; } function cleanUpValue(searchState, context, id) { var index = getIndex(context); var _getNamespaceAndAttri2 = getNamespaceAndAttributeName(id), namespace = _getNamespaceAndAttri2.namespace, attributeName = _getNamespaceAndAttri2.attributeName; if (hasMultipleIndex(context)) { return namespace ? _extends({}, searchState, { indices: _extends({}, searchState.indices, _defineProperty({}, index, _extends({}, searchState.indices[index], _defineProperty({}, namespace, (0, _omit3.default)(searchState.indices[index][namespace], '' + attributeName))))) }) : (0, _omit3.default)(searchState, 'indices.' + index + '.' + id); } else { return namespace ? _extends({}, searchState, _defineProperty({}, namespace, (0, _omit3.default)(searchState[namespace], '' + attributeName))) : (0, _omit3.default)(searchState, '' + id); } } /***/ }), /* 6 */ /***/ (function(module, exports) { /** * Checks if `value` is the * [language type](http://www.ecma-international.org/ecma-262/7.0/#sec-ecmascript-language-types) * of `Object`. (e.g. arrays, functions, objects, regexes, `new Number(0)`, and `new String('')`) * * @static * @memberOf _ * @since 0.1.0 * @category Lang * @param {*} value The value to check. * @returns {boolean} Returns `true` if `value` is an object, else `false`. * @example * * _.isObject({}); * // => true * * _.isObject([1, 2, 3]); * // => true * * _.isObject(_.noop); * // => true * * _.isObject(null); * // => false */ function isObject(value) { var type = typeof value; return value != null && (type == 'object' || type == 'function'); } module.exports = isObject; /***/ }), /* 7 */ /***/ (function(module, exports) { /** * Checks if `value` is object-like. A value is object-like if it's not `null` * and has a `typeof` result of "object". * * @static * @memberOf _ * @since 4.0.0 * @category Lang * @param {*} value The value to check. * @returns {boolean} Returns `true` if `value` is object-like, else `false`. * @example * * _.isObjectLike({}); * // => true * * _.isObjectLike([1, 2, 3]); * // => true * * _.isObjectLike(_.noop); * // => false * * _.isObjectLike(null); * // => false */ function isObjectLike(value) { return value != null && typeof value == 'object'; } module.exports = isObjectLike; /***/ }), /* 8 */ /***/ (function(module, exports, __webpack_require__) { var Symbol = __webpack_require__(16), getRawTag = __webpack_require__(124), objectToString = __webpack_require__(125); /** `Object#toString` result references. */ var nullTag = '[object Null]', undefinedTag = '[object Undefined]'; /** Built-in value references. */ var symToStringTag = Symbol ? Symbol.toStringTag : undefined; /** * The base implementation of `getTag` without fallbacks for buggy environments. * * @private * @param {*} value The value to query. * @returns {string} Returns the `toStringTag`. */ function baseGetTag(value) { if (value == null) { return value === undefined ? undefinedTag : nullTag; } return (symToStringTag && symToStringTag in Object(value)) ? getRawTag(value) : objectToString(value); } module.exports = baseGetTag; /***/ }), /* 9 */ /***/ (function(module, exports, __webpack_require__) { var arrayLikeKeys = __webpack_require__(89), baseKeys = __webpack_require__(79), isArrayLike = __webpack_require__(11); /** * Creates an array of the own enumerable property names of `object`. * * **Note:** Non-object values are coerced to objects. See the * [ES spec](http://ecma-international.org/ecma-262/7.0/#sec-object.keys) * for more details. * * @static * @since 0.1.0 * @memberOf _ * @category Object * @param {Object} object The object to query. * @returns {Array} Returns the array of property names. * @example * * function Foo() { * this.a = 1; * this.b = 2; * } * * Foo.prototype.c = 3; * * _.keys(new Foo); * // => ['a', 'b'] (iteration order is not guaranteed) * * _.keys('hi'); * // => ['0', '1'] */ function keys(object) { return isArrayLike(object) ? arrayLikeKeys(object) : baseKeys(object); } module.exports = keys; /***/ }), /* 10 */ /***/ (function(module, exports, __webpack_require__) { var baseIsNative = __webpack_require__(123), getValue = __webpack_require__(128); /** * Gets the native function at `key` of `object`. * * @private * @param {Object} object The object to query. * @param {string} key The key of the method to get. * @returns {*} Returns the function if it's native, else `undefined`. */ function getNative(object, key) { var value = getValue(object, key); return baseIsNative(value) ? value : undefined; } module.exports = getNative; /***/ }), /* 11 */ /***/ (function(module, exports, __webpack_require__) { var isFunction = __webpack_require__(19), isLength = __webpack_require__(42); /** * Checks if `value` is array-like. A value is considered array-like if it's * not a function and has a `value.length` that's an integer greater than or * equal to `0` and less than or equal to `Number.MAX_SAFE_INTEGER`. * * @static * @memberOf _ * @since 4.0.0 * @category Lang * @param {*} value The value to check. * @returns {boolean} Returns `true` if `value` is array-like, else `false`. * @example * * _.isArrayLike([1, 2, 3]); * // => true * * _.isArrayLike(document.body.children); * // => true * * _.isArrayLike('abc'); * // => true * * _.isArrayLike(_.noop); * // => false */ function isArrayLike(value) { return value != null && isLength(value.length) && !isFunction(value); } module.exports = isArrayLike; /***/ }), /* 12 */ /***/ (function(module, exports) { /** * A specialized version of `_.map` for arrays without support for iteratee * shorthands. * * @private * @param {Array} [array] The array to iterate over. * @param {Function} iteratee The function invoked per iteration. * @returns {Array} Returns the new mapped array. */ function arrayMap(array, iteratee) { var index = -1, length = array == null ? 0 : array.length, result = Array(length); while (++index < length) { result[index] = iteratee(array[index], index, array); } return result; } module.exports = arrayMap; /***/ }), /* 13 */ /***/ (function(module, exports, __webpack_require__) { var baseMatches = __webpack_require__(257), baseMatchesProperty = __webpack_require__(260), identity = __webpack_require__(26), isArray = __webpack_require__(1), property = __webpack_require__(262); /** * The base implementation of `_.iteratee`. * * @private * @param {*} [value=_.identity] The value to convert to an iteratee. * @returns {Function} Returns the iteratee. */ function baseIteratee(value) { // Don't store the `typeof` result in a variable to avoid a JIT bug in Safari 9. // See https://bugs.webkit.org/show_bug.cgi?id=156034 for more details. if (typeof value == 'function') { return value; } if (value == null) { return identity; } if (typeof value == 'object') { return isArray(value) ? baseMatchesProperty(value[0], value[1]) : baseMatches(value); } return property(value); } module.exports = baseIteratee; /***/ }), /* 14 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = classNames; var _classnames = __webpack_require__(359); var _classnames2 = _interopRequireDefault(_classnames); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } var prefix = 'ais'; function classNames(block) { return function () { for (var _len = arguments.length, elements = Array(_len), _key = 0; _key < _len; _key++) { elements[_key] = arguments[_key]; } return { className: (0, _classnames2.default)(elements.filter(function (element) { return element !== undefined && element !== false; }).map(function (element) { return prefix + '-' + block + '__' + element; })) }; }; } /***/ }), /* 15 */ /***/ (function(module, exports, __webpack_require__) { var baseKeys = __webpack_require__(79), getTag = __webpack_require__(57), isArguments = __webpack_require__(20), isArray = __webpack_require__(1), isArrayLike = __webpack_require__(11), isBuffer = __webpack_require__(21), isPrototype = __webpack_require__(38), isTypedArray = __webpack_require__(34); /** `Object#toString` result references. */ var mapTag = '[object Map]', setTag = '[object Set]'; /** Used for built-in method references. */ var objectProto = Object.prototype; /** Used to check objects for own properties. */ var hasOwnProperty = objectProto.hasOwnProperty; /** * Checks if `value` is an empty object, collection, map, or set. * * Objects are considered empty if they have no own enumerable string keyed * properties. * * Array-like values such as `arguments` objects, arrays, buffers, strings, or * jQuery-like collections are considered empty if they have a `length` of `0`. * Similarly, maps and sets are considered empty if they have a `size` of `0`. * * @static * @memberOf _ * @since 0.1.0 * @category Lang * @param {*} value The value to check. * @returns {boolean} Returns `true` if `value` is empty, else `false`. * @example * * _.isEmpty(null); * // => true * * _.isEmpty(true); * // => true * * _.isEmpty(1); * // => true * * _.isEmpty([1, 2, 3]); * // => false * * _.isEmpty({ 'a': 1 }); * // => false */ function isEmpty(value) { if (value == null) { return true; } if (isArrayLike(value) && (isArray(value) || typeof value == 'string' || typeof value.splice == 'function' || isBuffer(value) || isTypedArray(value) || isArguments(value))) { return !value.length; } var tag = getTag(value); if (tag == mapTag || tag == setTag) { return !value.size; } if (isPrototype(value)) { return !baseKeys(value).length; } for (var key in value) { if (hasOwnProperty.call(value, key)) { return false; } } return true; } module.exports = isEmpty; /***/ }), /* 16 */ /***/ (function(module, exports, __webpack_require__) { var root = __webpack_require__(3); /** Built-in value references. */ var Symbol = root.Symbol; module.exports = Symbol; /***/ }), /* 17 */ /***/ (function(module, exports, __webpack_require__) { var arrayMap = __webpack_require__(12), baseIteratee = __webpack_require__(13), baseMap = __webpack_require__(183), isArray = __webpack_require__(1); /** * Creates an array of values by running each element in `collection` thru * `iteratee`. The iteratee is invoked with three arguments: * (value, index|key, collection). * * Many lodash methods are guarded to work as iteratees for methods like * `_.every`, `_.filter`, `_.map`, `_.mapValues`, `_.reject`, and `_.some`. * * The guarded methods are: * `ary`, `chunk`, `curry`, `curryRight`, `drop`, `dropRight`, `every`, * `fill`, `invert`, `parseInt`, `random`, `range`, `rangeRight`, `repeat`, * `sampleSize`, `slice`, `some`, `sortBy`, `split`, `take`, `takeRight`, * `template`, `trim`, `trimEnd`, `trimStart`, and `words` * * @static * @memberOf _ * @since 0.1.0 * @category Collection * @param {Array|Object} collection The collection to iterate over. * @param {Function} [iteratee=_.identity] The function invoked per iteration. * @returns {Array} Returns the new mapped array. * @example * * function square(n) { * return n * n; * } * * _.map([4, 8], square); * // => [16, 64] * * _.map({ 'a': 4, 'b': 8 }, square); * // => [16, 64] (iteration order is not guaranteed) * * var users = [ * { 'user': 'barney' }, * { 'user': 'fred' } * ]; * * // The `_.property` iteratee shorthand. * _.map(users, 'user'); * // => ['barney', 'fred'] */ function map(collection, iteratee) { var func = isArray(collection) ? arrayMap : baseMap; return func(collection, baseIteratee(iteratee, 3)); } module.exports = map; /***/ }), /* 18 */ /***/ (function(module, exports) { /** * Performs a * [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero) * comparison between two values to determine if they are equivalent. * * @static * @memberOf _ * @since 4.0.0 * @category Lang * @param {*} value The value to compare. * @param {*} other The other value to compare. * @returns {boolean} Returns `true` if the values are equivalent, else `false`. * @example * * var object = { 'a': 1 }; * var other = { 'a': 1 }; * * _.eq(object, object); * // => true * * _.eq(object, other); * // => false * * _.eq('a', 'a'); * // => true * * _.eq('a', Object('a')); * // => false * * _.eq(NaN, NaN); * // => true */ function eq(value, other) { return value === other || (value !== value && other !== other); } module.exports = eq; /***/ }), /* 19 */ /***/ (function(module, exports, __webpack_require__) { var baseGetTag = __webpack_require__(8), isObject = __webpack_require__(6); /** `Object#toString` result references. */ var asyncTag = '[object AsyncFunction]', funcTag = '[object Function]', genTag = '[object GeneratorFunction]', proxyTag = '[object Proxy]'; /** * Checks if `value` is classified as a `Function` object. * * @static * @memberOf _ * @since 0.1.0 * @category Lang * @param {*} value The value to check. * @returns {boolean} Returns `true` if `value` is a function, else `false`. * @example * * _.isFunction(_); * // => true * * _.isFunction(/abc/); * // => false */ function isFunction(value) { if (!isObject(value)) { return false; } // The use of `Object#toString` avoids issues with the `typeof` operator // in Safari 9 which returns 'object' for typed arrays and other constructors. var tag = baseGetTag(value); return tag == funcTag || tag == genTag || tag == asyncTag || tag == proxyTag; } module.exports = isFunction; /***/ }), /* 20 */ /***/ (function(module, exports, __webpack_require__) { var baseIsArguments = __webpack_require__(147), isObjectLike = __webpack_require__(7); /** Used for built-in method references. */ var objectProto = Object.prototype; /** Used to check objects for own properties. */ var hasOwnProperty = objectProto.hasOwnProperty; /** Built-in value references. */ var propertyIsEnumerable = objectProto.propertyIsEnumerable; /** * Checks if `value` is likely an `arguments` object. * * @static * @memberOf _ * @since 0.1.0 * @category Lang * @param {*} value The value to check. * @returns {boolean} Returns `true` if `value` is an `arguments` object, * else `false`. * @example * * _.isArguments(function() { return arguments; }()); * // => true * * _.isArguments([1, 2, 3]); * // => false */ var isArguments = baseIsArguments(function() { return arguments; }()) ? baseIsArguments : function(value) { return isObjectLike(value) && hasOwnProperty.call(value, 'callee') && !propertyIsEnumerable.call(value, 'callee'); }; module.exports = isArguments; /***/ }), /* 21 */ /***/ (function(module, exports, __webpack_require__) { /* WEBPACK VAR INJECTION */(function(module) {var root = __webpack_require__(3), stubFalse = __webpack_require__(148); /** Detect free variable `exports`. */ var freeExports = typeof exports == 'object' && exports && !exports.nodeType && exports; /** Detect free variable `module`. */ var freeModule = freeExports && typeof module == 'object' && module && !module.nodeType && module; /** Detect the popular CommonJS extension `module.exports`. */ var moduleExports = freeModule && freeModule.exports === freeExports; /** Built-in value references. */ var Buffer = moduleExports ? root.Buffer : undefined; /* Built-in method references for those with the same name as other `lodash` methods. */ var nativeIsBuffer = Buffer ? Buffer.isBuffer : undefined; /** * Checks if `value` is a buffer. * * @static * @memberOf _ * @since 4.3.0 * @category Lang * @param {*} value The value to check. * @returns {boolean} Returns `true` if `value` is a buffer, else `false`. * @example * * _.isBuffer(new Buffer(2)); * // => true * * _.isBuffer(new Uint8Array(2)); * // => false */ var isBuffer = nativeIsBuffer || stubFalse; module.exports = isBuffer; /* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(56)(module))) /***/ }), /* 22 */ /***/ (function(module, exports, __webpack_require__) { var isArray = __webpack_require__(1), isKey = __webpack_require__(64), stringToPath = __webpack_require__(156), toString = __webpack_require__(65); /** * Casts `value` to a path array if it's not one. * * @private * @param {*} value The value to inspect. * @param {Object} [object] The object to query keys on. * @returns {Array} Returns the cast property path array. */ function castPath(value, object) { if (isArray(value)) { return value; } return isKey(value, object) ? [value] : stringToPath(toString(value)); } module.exports = castPath; /***/ }), /* 23 */ /***/ (function(module, exports, __webpack_require__) { var baseGetTag = __webpack_require__(8), isObjectLike = __webpack_require__(7); /** `Object#toString` result references. */ var symbolTag = '[object Symbol]'; /** * Checks if `value` is classified as a `Symbol` primitive or object. * * @static * @memberOf _ * @since 4.0.0 * @category Lang * @param {*} value The value to check. * @returns {boolean} Returns `true` if `value` is a symbol, else `false`. * @example * * _.isSymbol(Symbol.iterator); * // => true * * _.isSymbol('abc'); * // => false */ function isSymbol(value) { return typeof value == 'symbol' || (isObjectLike(value) && baseGetTag(value) == symbolTag); } module.exports = isSymbol; /***/ }), /* 24 */ /***/ (function(module, exports, __webpack_require__) { var isSymbol = __webpack_require__(23); /** Used as references for various `Number` constants. */ var INFINITY = 1 / 0; /** * Converts `value` to a string key if it's not a string or symbol. * * @private * @param {*} value The value to inspect. * @returns {string|symbol} Returns the key. */ function toKey(value) { if (typeof value == 'string' || isSymbol(value)) { return value; } var result = (value + ''); return (result == '0' && (1 / value) == -INFINITY) ? '-0' : result; } module.exports = toKey; /***/ }), /* 25 */ /***/ (function(module, exports, __webpack_require__) { var identity = __webpack_require__(26), overRest = __webpack_require__(166), setToString = __webpack_require__(93); /** * The base implementation of `_.rest` which doesn't validate or coerce arguments. * * @private * @param {Function} func The function to apply a rest parameter to. * @param {number} [start=func.length-1] The start position of the rest parameter. * @returns {Function} Returns the new function. */ function baseRest(func, start) { return setToString(overRest(func, start, identity), func + ''); } module.exports = baseRest; /***/ }), /* 26 */ /***/ (function(module, exports) { /** * This method returns the first argument it receives. * * @static * @since 0.1.0 * @memberOf _ * @category Util * @param {*} value Any value. * @returns {*} Returns `value`. * @example * * var object = { 'a': 1 }; * * console.log(_.identity(object) === object); * // => true */ function identity(value) { return value; } module.exports = identity; /***/ }), /* 27 */ /***/ (function(module, exports, __webpack_require__) { var assignValue = __webpack_require__(96), baseAssignValue = __webpack_require__(47); /** * Copies properties of `source` to `object`. * * @private * @param {Object} source The object to copy properties from. * @param {Array} props The property identifiers to copy. * @param {Object} [object={}] The object to copy properties to. * @param {Function} [customizer] The function to customize copied values. * @returns {Object} Returns `object`. */ function copyObject(source, props, object, customizer) { var isNew = !object; object || (object = {}); var index = -1, length = props.length; while (++index < length) { var key = props[index]; var newValue = customizer ? customizer(object[key], source[key], key, object, source) : undefined; if (newValue === undefined) { newValue = source[key]; } if (isNew) { baseAssignValue(object, key, newValue); } else { assignValue(object, key, newValue); } } return object; } module.exports = copyObject; /***/ }), /* 28 */ /***/ (function(module, exports, __webpack_require__) { var listCacheClear = __webpack_require__(113), listCacheDelete = __webpack_require__(114), listCacheGet = __webpack_require__(115), listCacheHas = __webpack_require__(116), listCacheSet = __webpack_require__(117); /** * Creates an list cache object. * * @private * @constructor * @param {Array} [entries] The key-value pairs to cache. */ function ListCache(entries) { var index = -1, length = entries == null ? 0 : entries.length; this.clear(); while (++index < length) { var entry = entries[index]; this.set(entry[0], entry[1]); } } // Add methods to `ListCache`. ListCache.prototype.clear = listCacheClear; ListCache.prototype['delete'] = listCacheDelete; ListCache.prototype.get = listCacheGet; ListCache.prototype.has = listCacheHas; ListCache.prototype.set = listCacheSet; module.exports = ListCache; /***/ }), /* 29 */ /***/ (function(module, exports, __webpack_require__) { var eq = __webpack_require__(18); /** * Gets the index at which the `key` is found in `array` of key-value pairs. * * @private * @param {Array} array The array to inspect. * @param {*} key The key to search for. * @returns {number} Returns the index of the matched value, else `-1`. */ function assocIndexOf(array, key) { var length = array.length; while (length--) { if (eq(array[length][0], key)) { return length; } } return -1; } module.exports = assocIndexOf; /***/ }), /* 30 */ /***/ (function(module, exports, __webpack_require__) { var getNative = __webpack_require__(10); /* Built-in method references that are verified to be native. */ var nativeCreate = getNative(Object, 'create'); module.exports = nativeCreate; /***/ }), /* 31 */ /***/ (function(module, exports, __webpack_require__) { var isKeyable = __webpack_require__(137); /** * Gets the data for `map`. * * @private * @param {Object} map The map to query. * @param {string} key The reference key. * @returns {*} Returns the map data. */ function getMapData(map, key) { var data = map.__data__; return isKeyable(key) ? data[typeof key == 'string' ? 'string' : 'hash'] : data.map; } module.exports = getMapData; /***/ }), /* 32 */ /***/ (function(module, exports) { /** Used as references for various `Number` constants. */ var MAX_SAFE_INTEGER = 9007199254740991; /** Used to detect unsigned integer values. */ var reIsUint = /^(?:0|[1-9]\d*)$/; /** * Checks if `value` is a valid array-like index. * * @private * @param {*} value The value to check. * @param {number} [length=MAX_SAFE_INTEGER] The upper bounds of a valid index. * @returns {boolean} Returns `true` if `value` is a valid index, else `false`. */ function isIndex(value, length) { length = length == null ? MAX_SAFE_INTEGER : length; return !!length && (typeof value == 'number' || reIsUint.test(value)) && (value > -1 && value % 1 == 0 && value < length); } module.exports = isIndex; /***/ }), /* 33 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var _has2 = __webpack_require__(58); var _has3 = _interopRequireDefault(_has2); var _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; exports.default = translatable; var _react = __webpack_require__(4); var _react2 = _interopRequireDefault(_react); var _utils = __webpack_require__(44); var _propTypes = __webpack_require__(358); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } function _objectWithoutProperties(obj, keys) { var target = {}; for (var i in obj) { if (keys.indexOf(i) >= 0) continue; if (!Object.prototype.hasOwnProperty.call(obj, i)) continue; target[i] = obj[i]; } return target; } function translatable(defaultTranslations) { return function (Composed) { function Translatable(props) { var translations = props.translations, otherProps = _objectWithoutProperties(props, ['translations']); var translate = function translate(key) { for (var _len = arguments.length, params = Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) { params[_key - 1] = arguments[_key]; } var translation = translations && (0, _has3.default)(translations, key) ? translations[key] : defaultTranslations[key]; if (typeof translation === 'function') { return translation.apply(undefined, params); } return translation; }; return _react2.default.createElement(Composed, _extends({ translate: translate }, otherProps)); } Translatable.displayName = 'Translatable(' + (0, _utils.getDisplayName)(Composed) + ')'; Translatable.propTypes = { translations: (0, _propTypes.withKeysPropType)(Object.keys(defaultTranslations)) }; return Translatable; }; } /***/ }), /* 34 */ /***/ (function(module, exports, __webpack_require__) { var baseIsTypedArray = __webpack_require__(149), baseUnary = __webpack_require__(43), nodeUtil = __webpack_require__(150); /* Node.js helper references. */ var nodeIsTypedArray = nodeUtil && nodeUtil.isTypedArray; /** * Checks if `value` is classified as a typed array. * * @static * @memberOf _ * @since 3.0.0 * @category Lang * @param {*} value The value to check. * @returns {boolean} Returns `true` if `value` is a typed array, else `false`. * @example * * _.isTypedArray(new Uint8Array); * // => true * * _.isTypedArray([]); * // => false */ var isTypedArray = nodeIsTypedArray ? baseUnary(nodeIsTypedArray) : baseIsTypedArray; module.exports = isTypedArray; /***/ }), /* 35 */ /***/ (function(module, exports, __webpack_require__) { var arrayMap = __webpack_require__(12), baseClone = __webpack_require__(229), baseUnset = __webpack_require__(245), castPath = __webpack_require__(22), copyObject = __webpack_require__(27), customOmitClone = __webpack_require__(247), flatRest = __webpack_require__(176), getAllKeysIn = __webpack_require__(97); /** Used to compose bitmasks for cloning. */ var CLONE_DEEP_FLAG = 1, CLONE_FLAT_FLAG = 2, CLONE_SYMBOLS_FLAG = 4; /** * The opposite of `_.pick`; this method creates an object composed of the * own and inherited enumerable property paths of `object` that are not omitted. * * **Note:** This method is considerably slower than `_.pick`. * * @static * @since 0.1.0 * @memberOf _ * @category Object * @param {Object} object The source object. * @param {...(string|string[])} [paths] The property paths to omit. * @returns {Object} Returns the new object. * @example * * var object = { 'a': 1, 'b': '2', 'c': 3 }; * * _.omit(object, ['a', 'c']); * // => { 'b': '2' } */ var omit = flatRest(function(object, paths) { var result = {}; if (object == null) { return result; } var isDeep = false; paths = arrayMap(paths, function(path) { path = castPath(path, object); isDeep || (isDeep = path.length > 1); return path; }); copyObject(object, getAllKeysIn(object), result); if (isDeep) { result = baseClone(result, CLONE_DEEP_FLAG | CLONE_FLAT_FLAG | CLONE_SYMBOLS_FLAG, customOmitClone); } var length = paths.length; while (length--) { baseUnset(result, paths[length]); } return result; }); module.exports = omit; /***/ }), /* 36 */ /***/ (function(module, exports, __webpack_require__) { var arrayEach = __webpack_require__(95), baseEach = __webpack_require__(73), castFunction = __webpack_require__(179), isArray = __webpack_require__(1); /** * Iterates over elements of `collection` and invokes `iteratee` for each element. * The iteratee is invoked with three arguments: (value, index|key, collection). * Iteratee functions may exit iteration early by explicitly returning `false`. * * **Note:** As with other "Collections" methods, objects with a "length" * property are iterated like arrays. To avoid this behavior use `_.forIn` * or `_.forOwn` for object iteration. * * @static * @memberOf _ * @since 0.1.0 * @alias each * @category Collection * @param {Array|Object} collection The collection to iterate over. * @param {Function} [iteratee=_.identity] The function invoked per iteration. * @returns {Array|Object} Returns `collection`. * @see _.forEachRight * @example * * _.forEach([1, 2], function(value) { * console.log(value); * }); * // => Logs `1` then `2`. * * _.forEach({ 'a': 1, 'b': 2 }, function(value, key) { * console.log(key); * }); * // => Logs 'a' then 'b' (iteration order is not guaranteed). */ function forEach(collection, iteratee) { var func = isArray(collection) ? arrayEach : baseEach; return func(collection, castFunction(iteratee)); } module.exports = forEach; /***/ }), /* 37 */ /***/ (function(module, exports) { /** Used as the internal argument placeholder. */ var PLACEHOLDER = '__lodash_placeholder__'; /** * Replaces all `placeholder` elements in `array` with an internal placeholder * and returns an array of their indexes. * * @private * @param {Array} array The array to modify. * @param {*} placeholder The placeholder to replace. * @returns {Array} Returns the new array of placeholder indexes. */ function replaceHolders(array, placeholder) { var index = -1, length = array.length, resIndex = 0, result = []; while (++index < length) { var value = array[index]; if (value === placeholder || value === PLACEHOLDER) { array[index] = PLACEHOLDER; result[resIndex++] = index; } } return result; } module.exports = replaceHolders; /***/ }), /* 38 */ /***/ (function(module, exports) { /** Used for built-in method references. */ var objectProto = Object.prototype; /** * Checks if `value` is likely a prototype object. * * @private * @param {*} value The value to check. * @returns {boolean} Returns `true` if `value` is a prototype, else `false`. */ function isPrototype(value) { var Ctor = value && value.constructor, proto = (typeof Ctor == 'function' && Ctor.prototype) || objectProto; return value === proto; } module.exports = isPrototype; /***/ }), /* 39 */ /***/ (function(module, exports, __webpack_require__) { var ListCache = __webpack_require__(28), stackClear = __webpack_require__(118), stackDelete = __webpack_require__(119), stackGet = __webpack_require__(120), stackHas = __webpack_require__(121), stackSet = __webpack_require__(122); /** * Creates a stack cache object to store key-value pairs. * * @private * @constructor * @param {Array} [entries] The key-value pairs to cache. */ function Stack(entries) { var data = this.__data__ = new ListCache(entries); this.size = data.size; } // Add methods to `Stack`. Stack.prototype.clear = stackClear; Stack.prototype['delete'] = stackDelete; Stack.prototype.get = stackGet; Stack.prototype.has = stackHas; Stack.prototype.set = stackSet; module.exports = Stack; /***/ }), /* 40 */ /***/ (function(module, exports, __webpack_require__) { var getNative = __webpack_require__(10), root = __webpack_require__(3); /* Built-in method references that are verified to be native. */ var Map = getNative(root, 'Map'); module.exports = Map; /***/ }), /* 41 */ /***/ (function(module, exports, __webpack_require__) { var mapCacheClear = __webpack_require__(129), mapCacheDelete = __webpack_require__(136), mapCacheGet = __webpack_require__(138), mapCacheHas = __webpack_require__(139), mapCacheSet = __webpack_require__(140); /** * Creates a map cache object to store key-value pairs. * * @private * @constructor * @param {Array} [entries] The key-value pairs to cache. */ function MapCache(entries) { var index = -1, length = entries == null ? 0 : entries.length; this.clear(); while (++index < length) { var entry = entries[index]; this.set(entry[0], entry[1]); } } // Add methods to `MapCache`. MapCache.prototype.clear = mapCacheClear; MapCache.prototype['delete'] = mapCacheDelete; MapCache.prototype.get = mapCacheGet; MapCache.prototype.has = mapCacheHas; MapCache.prototype.set = mapCacheSet; module.exports = MapCache; /***/ }), /* 42 */ /***/ (function(module, exports) { /** Used as references for various `Number` constants. */ var MAX_SAFE_INTEGER = 9007199254740991; /** * Checks if `value` is a valid array-like length. * * **Note:** This method is loosely based on * [`ToLength`](http://ecma-international.org/ecma-262/7.0/#sec-tolength). * * @static * @memberOf _ * @since 4.0.0 * @category Lang * @param {*} value The value to check. * @returns {boolean} Returns `true` if `value` is a valid length, else `false`. * @example * * _.isLength(3); * // => true * * _.isLength(Number.MIN_VALUE); * // => false * * _.isLength(Infinity); * // => false * * _.isLength('3'); * // => false */ function isLength(value) { return typeof value == 'number' && value > -1 && value % 1 == 0 && value <= MAX_SAFE_INTEGER; } module.exports = isLength; /***/ }), /* 43 */ /***/ (function(module, exports) { /** * The base implementation of `_.unary` without support for storing metadata. * * @private * @param {Function} func The function to cap arguments for. * @returns {Function} Returns the new capped function. */ function baseUnary(func) { return function(value) { return func(value); }; } module.exports = baseUnary; /***/ }), /* 44 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.defer = undefined; var _isPlainObject2 = __webpack_require__(45); var _isPlainObject3 = _interopRequireDefault(_isPlainObject2); var _isEmpty2 = __webpack_require__(15); var _isEmpty3 = _interopRequireDefault(_isEmpty2); exports.shallowEqual = shallowEqual; exports.isSpecialClick = isSpecialClick; exports.capitalize = capitalize; exports.assertFacetDefined = assertFacetDefined; exports.getDisplayName = getDisplayName; exports.removeEmptyKey = removeEmptyKey; function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } // From https://github.com/reactjs/react-redux/blob/master/src/utils/shallowEqual.js function shallowEqual(objA, objB) { if (objA === objB) { return true; } var keysA = Object.keys(objA); var keysB = Object.keys(objB); if (keysA.length !== keysB.length) { return false; } // Test for A's keys different from B. var hasOwn = Object.prototype.hasOwnProperty; for (var i = 0; i < keysA.length; i++) { if (!hasOwn.call(objB, keysA[i]) || objA[keysA[i]] !== objB[keysA[i]]) { return false; } } return true; } function isSpecialClick(event) { var isMiddleClick = event.button === 1; return Boolean(isMiddleClick || event.altKey || event.ctrlKey || event.metaKey || event.shiftKey); } function capitalize(key) { return key.length === 0 ? '' : '' + key[0].toUpperCase() + key.slice(1); } function assertFacetDefined(searchParameters, searchResults, facet) { var wasRequested = searchParameters.isConjunctiveFacet(facet) || searchParameters.isDisjunctiveFacet(facet); var wasReceived = Boolean(searchResults.getFacetByName(facet)); if (searchResults.nbHits > 0 && wasRequested && !wasReceived) { // eslint-disable-next-line no-console console.warn('A component requested values for facet "' + facet + '", but no facet ' + 'values were retrieved from the API. This means that you should add ' + ('the attribute "' + facet + '" to the list of attributes for faceting in ') + 'your index settings.'); } } function getDisplayName(Component) { return Component.displayName || Component.name || 'UnknownComponent'; } var resolved = Promise.resolve(); var defer = exports.defer = function defer(f) { resolved.then(f); }; function removeEmptyKey(obj) { Object.keys(obj).forEach(function (key) { var value = obj[key]; if ((0, _isEmpty3.default)(value) && (0, _isPlainObject3.default)(value)) { delete obj[key]; } else if ((0, _isPlainObject3.default)(value)) { removeEmptyKey(value); } }); return obj; } /***/ }), /* 45 */ /***/ (function(module, exports, __webpack_require__) { var baseGetTag = __webpack_require__(8), getPrototype = __webpack_require__(67), isObjectLike = __webpack_require__(7); /** `Object#toString` result references. */ var objectTag = '[object Object]'; /** Used for built-in method references. */ var funcProto = Function.prototype, objectProto = Object.prototype; /** Used to resolve the decompiled source of functions. */ var funcToString = funcProto.toString; /** Used to check objects for own properties. */ var hasOwnProperty = objectProto.hasOwnProperty; /** Used to infer the `Object` constructor. */ var objectCtorString = funcToString.call(Object); /** * Checks if `value` is a plain object, that is, an object created by the * `Object` constructor or one with a `[[Prototype]]` of `null`. * * @static * @memberOf _ * @since 0.8.0 * @category Lang * @param {*} value The value to check. * @returns {boolean} Returns `true` if `value` is a plain object, else `false`. * @example * * function Foo() { * this.a = 1; * } * * _.isPlainObject(new Foo); * // => false * * _.isPlainObject([1, 2, 3]); * // => false * * _.isPlainObject({ 'x': 0, 'y': 0 }); * // => true * * _.isPlainObject(Object.create(null)); * // => true */ function isPlainObject(value) { if (!isObjectLike(value) || baseGetTag(value) != objectTag) { return false; } var proto = getPrototype(value); if (proto === null) { return true; } var Ctor = hasOwnProperty.call(proto, 'constructor') && proto.constructor; return typeof Ctor == 'function' && Ctor instanceof Ctor && funcToString.call(Ctor) == objectCtorString; } module.exports = isPlainObject; /***/ }), /* 46 */ /***/ (function(module, exports, __webpack_require__) { var baseFindIndex = __webpack_require__(163), baseIsNaN = __webpack_require__(225), strictIndexOf = __webpack_require__(226); /** * The base implementation of `_.indexOf` without `fromIndex` bounds checks. * * @private * @param {Array} array The array to inspect. * @param {*} value The value to search for. * @param {number} fromIndex The index to search from. * @returns {number} Returns the index of the matched value, else `-1`. */ function baseIndexOf(array, value, fromIndex) { return value === value ? strictIndexOf(array, value, fromIndex) : baseFindIndex(array, baseIsNaN, fromIndex); } module.exports = baseIndexOf; /***/ }), /* 47 */ /***/ (function(module, exports, __webpack_require__) { var defineProperty = __webpack_require__(168); /** * The base implementation of `assignValue` and `assignMergeValue` without * value checks. * * @private * @param {Object} object The object to modify. * @param {string} key The key of the property to assign. * @param {*} value The value to assign. */ function baseAssignValue(object, key, value) { if (key == '__proto__' && defineProperty) { defineProperty(object, key, { 'configurable': true, 'enumerable': true, 'value': value, 'writable': true }); } else { object[key] = value; } } module.exports = baseAssignValue; /***/ }), /* 48 */ /***/ (function(module, exports, __webpack_require__) { var arrayLikeKeys = __webpack_require__(89), baseKeysIn = __webpack_require__(232), isArrayLike = __webpack_require__(11); /** * Creates an array of the own and inherited enumerable property names of `object`. * * **Note:** Non-object values are coerced to objects. * * @static * @memberOf _ * @since 3.0.0 * @category Object * @param {Object} object The object to query. * @returns {Array} Returns the array of property names. * @example * * function Foo() { * this.a = 1; * this.b = 2; * } * * Foo.prototype.c = 3; * * _.keysIn(new Foo); * // => ['a', 'b', 'c'] (iteration order is not guaranteed) */ function keysIn(object) { return isArrayLike(object) ? arrayLikeKeys(object, true) : baseKeysIn(object); } module.exports = keysIn; /***/ }), /* 49 */ /***/ (function(module, exports, __webpack_require__) { var baseFor = __webpack_require__(178), keys = __webpack_require__(9); /** * The base implementation of `_.forOwn` without support for iteratee shorthands. * * @private * @param {Object} object The object to iterate over. * @param {Function} iteratee The function invoked per iteration. * @returns {Object} Returns `object`. */ function baseForOwn(object, iteratee) { return object && baseFor(object, iteratee, keys); } module.exports = baseForOwn; /***/ }), /* 50 */ /***/ (function(module, exports, __webpack_require__) { var arrayReduce = __webpack_require__(99), baseEach = __webpack_require__(73), baseIteratee = __webpack_require__(13), baseReduce = __webpack_require__(265), isArray = __webpack_require__(1); /** * Reduces `collection` to a value which is the accumulated result of running * each element in `collection` thru `iteratee`, where each successive * invocation is supplied the return value of the previous. If `accumulator` * is not given, the first element of `collection` is used as the initial * value. The iteratee is invoked with four arguments: * (accumulator, value, index|key, collection). * * Many lodash methods are guarded to work as iteratees for methods like * `_.reduce`, `_.reduceRight`, and `_.transform`. * * The guarded methods are: * `assign`, `defaults`, `defaultsDeep`, `includes`, `merge`, `orderBy`, * and `sortBy` * * @static * @memberOf _ * @since 0.1.0 * @category Collection * @param {Array|Object} collection The collection to iterate over. * @param {Function} [iteratee=_.identity] The function invoked per iteration. * @param {*} [accumulator] The initial value. * @returns {*} Returns the accumulated value. * @see _.reduceRight * @example * * _.reduce([1, 2], function(sum, n) { * return sum + n; * }, 0); * // => 3 * * _.reduce({ 'a': 1, 'b': 2, 'c': 1 }, function(result, value, key) { * (result[value] || (result[value] = [])).push(key); * return result; * }, {}); * // => { '1': ['a', 'c'], '2': ['b'] } (iteration order is not guaranteed) */ function reduce(collection, iteratee, accumulator) { var func = isArray(collection) ? arrayReduce : baseReduce, initAccum = arguments.length < 3; return func(collection, baseIteratee(iteratee, 4), accumulator, initAccum, baseEach); } module.exports = reduce; /***/ }), /* 51 */ /***/ (function(module, exports, __webpack_require__) { var toFinite = __webpack_require__(213); /** * Converts `value` to an integer. * * **Note:** This method is loosely based on * [`ToInteger`](http://www.ecma-international.org/ecma-262/7.0/#sec-tointeger). * * @static * @memberOf _ * @since 4.0.0 * @category Lang * @param {*} value The value to convert. * @returns {number} Returns the converted integer. * @example * * _.toInteger(3.2); * // => 3 * * _.toInteger(Number.MIN_VALUE); * // => 0 * * _.toInteger(Infinity); * // => 1.7976931348623157e+308 * * _.toInteger('3.2'); * // => 3 */ function toInteger(value) { var result = toFinite(value), remainder = result % 1; return result === result ? (remainder ? result - remainder : result) : 0; } module.exports = toInteger; /***/ }), /* 52 */ /***/ (function(module, exports, __webpack_require__) { var baseGetTag = __webpack_require__(8), isArray = __webpack_require__(1), isObjectLike = __webpack_require__(7); /** `Object#toString` result references. */ var stringTag = '[object String]'; /** * Checks if `value` is classified as a `String` primitive or object. * * @static * @since 0.1.0 * @memberOf _ * @category Lang * @param {*} value The value to check. * @returns {boolean} Returns `true` if `value` is a string, else `false`. * @example * * _.isString('abc'); * // => true * * _.isString(1); * // => false */ function isString(value) { return typeof value == 'string' || (!isArray(value) && isObjectLike(value) && baseGetTag(value) == stringTag); } module.exports = isString; /***/ }), /* 53 */ /***/ (function(module, exports, __webpack_require__) { var createFind = __webpack_require__(267), findIndex = __webpack_require__(186); /** * Iterates over elements of `collection`, returning the first element * `predicate` returns truthy for. The predicate is invoked with three * arguments: (value, index|key, collection). * * @static * @memberOf _ * @since 0.1.0 * @category Collection * @param {Array|Object} collection The collection to inspect. * @param {Function} [predicate=_.identity] The function invoked per iteration. * @param {number} [fromIndex=0] The index to search from. * @returns {*} Returns the matched element, else `undefined`. * @example * * var users = [ * { 'user': 'barney', 'age': 36, 'active': true }, * { 'user': 'fred', 'age': 40, 'active': false }, * { 'user': 'pebbles', 'age': 1, 'active': true } * ]; * * _.find(users, function(o) { return o.age < 40; }); * // => object for 'barney' * * // The `_.matches` iteratee shorthand. * _.find(users, { 'age': 1, 'active': true }); * // => object for 'pebbles' * * // The `_.matchesProperty` iteratee shorthand. * _.find(users, ['active', false]); * // => object for 'fred' * * // The `_.property` iteratee shorthand. * _.find(users, 'active'); * // => object for 'barney' */ var find = createFind(findIndex); module.exports = find; /***/ }), /* 54 */ /***/ (function(module, exports) { /** * Gets the argument placeholder value for `func`. * * @private * @param {Function} func The function to inspect. * @returns {*} Returns the placeholder value. */ function getHolder(func) { var object = func; return object.placeholder; } module.exports = getHolder; /***/ }), /* 55 */ /***/ (function(module, exports) { var g; // This works in non-strict mode g = (function() { return this; })(); try { // This works if eval is allowed (see CSP) g = g || Function("return this")() || (1,eval)("this"); } catch(e) { // This works if the window reference is available if(typeof window === "object") g = window; } // g can still be undefined, but nothing to do about it... // We return undefined, instead of nothing here, so it's // easier to handle this case. if(!global) { ...} module.exports = g; /***/ }), /* 56 */ /***/ (function(module, exports) { module.exports = function(module) { if(!module.webpackPolyfill) { module.deprecate = function() {}; module.paths = []; // module.parent = undefined by default if(!module.children) module.children = []; Object.defineProperty(module, "loaded", { enumerable: true, get: function() { return module.l; } }); Object.defineProperty(module, "id", { enumerable: true, get: function() { return module.i; } }); module.webpackPolyfill = 1; } return module; }; /***/ }), /* 57 */ /***/ (function(module, exports, __webpack_require__) { var DataView = __webpack_require__(152), Map = __webpack_require__(40), Promise = __webpack_require__(153), Set = __webpack_require__(154), WeakMap = __webpack_require__(90), baseGetTag = __webpack_require__(8), toSource = __webpack_require__(77); /** `Object#toString` result references. */ var mapTag = '[object Map]', objectTag = '[object Object]', promiseTag = '[object Promise]', setTag = '[object Set]', weakMapTag = '[object WeakMap]'; var dataViewTag = '[object DataView]'; /** Used to detect maps, sets, and weakmaps. */ var dataViewCtorString = toSource(DataView), mapCtorString = toSource(Map), promiseCtorString = toSource(Promise), setCtorString = toSource(Set), weakMapCtorString = toSource(WeakMap); /** * Gets the `toStringTag` of `value`. * * @private * @param {*} value The value to query. * @returns {string} Returns the `toStringTag`. */ var getTag = baseGetTag; // Fallback for data views, maps, sets, and weak maps in IE 11 and promises in Node.js < 6. if ((DataView && getTag(new DataView(new ArrayBuffer(1))) != dataViewTag) || (Map && getTag(new Map) != mapTag) || (Promise && getTag(Promise.resolve()) != promiseTag) || (Set && getTag(new Set) != setTag) || (WeakMap && getTag(new WeakMap) != weakMapTag)) { getTag = function(value) { var result = baseGetTag(value), Ctor = result == objectTag ? value.constructor : undefined, ctorString = Ctor ? toSource(Ctor) : ''; if (ctorString) { switch (ctorString) { case dataViewCtorString: return dataViewTag; case mapCtorString: return mapTag; case promiseCtorString: return promiseTag; case setCtorString: return setTag; case weakMapCtorString: return weakMapTag; } } return result; }; } module.exports = getTag; /***/ }), /* 58 */ /***/ (function(module, exports, __webpack_require__) { var baseHas = __webpack_require__(155), hasPath = __webpack_require__(91); /** * Checks if `path` is a direct property of `object`. * * @static * @since 0.1.0 * @memberOf _ * @category Object * @param {Object} object The object to query. * @param {Array|string} path The path to check. * @returns {boolean} Returns `true` if `path` exists, else `false`. * @example * * var object = { 'a': { 'b': 2 } }; * var other = _.create({ 'a': _.create({ 'b': 2 }) }); * * _.has(object, 'a'); * // => true * * _.has(object, 'a.b'); * // => true * * _.has(object, ['a', 'b']); * // => true * * _.has(other, 'a'); * // => false */ function has(object, path) { return object != null && hasPath(object, path, baseHas); } module.exports = has; /***/ }), /* 59 */ /***/ (function(module, exports, __webpack_require__) { var baseIsEqualDeep = __webpack_require__(112), isObjectLike = __webpack_require__(7); /** * The base implementation of `_.isEqual` which supports partial comparisons * and tracks traversed objects. * * @private * @param {*} value The value to compare. * @param {*} other The other value to compare. * @param {boolean} bitmask The bitmask flags. * 1 - Unordered comparison * 2 - Partial comparison * @param {Function} [customizer] The function to customize comparisons. * @param {Object} [stack] Tracks traversed `value` and `other` objects. * @returns {boolean} Returns `true` if the values are equivalent, else `false`. */ function baseIsEqual(value, other, bitmask, customizer, stack) { if (value === other) { return true; } if (value == null || other == null || (!isObjectLike(value) && !isObjectLike(other))) { return value !== value && other !== other; } return baseIsEqualDeep(value, other, bitmask, customizer, baseIsEqual, stack); } module.exports = baseIsEqual; /***/ }), /* 60 */ /***/ (function(module, exports, __webpack_require__) { var MapCache = __webpack_require__(41), setCacheAdd = __webpack_require__(141), setCacheHas = __webpack_require__(142); /** * * Creates an array cache object to store unique values. * * @private * @constructor * @param {Array} [values] The values to cache. */ function SetCache(values) { var index = -1, length = values == null ? 0 : values.length; this.__data__ = new MapCache; while (++index < length) { this.add(values[index]); } } // Add methods to `SetCache`. SetCache.prototype.add = SetCache.prototype.push = setCacheAdd; SetCache.prototype.has = setCacheHas; module.exports = SetCache; /***/ }), /* 61 */ /***/ (function(module, exports) { /** * Checks if a `cache` value for `key` exists. * * @private * @param {Object} cache The cache to query. * @param {string} key The key of the entry to check. * @returns {boolean} Returns `true` if an entry for `key` exists, else `false`. */ function cacheHas(cache, key) { return cache.has(key); } module.exports = cacheHas; /***/ }), /* 62 */ /***/ (function(module, exports) { /** * Appends the elements of `values` to `array`. * * @private * @param {Array} array The array to modify. * @param {Array} values The values to append. * @returns {Array} Returns `array`. */ function arrayPush(array, values) { var index = -1, length = values.length, offset = array.length; while (++index < length) { array[offset + index] = values[index]; } return array; } module.exports = arrayPush; /***/ }), /* 63 */ /***/ (function(module, exports, __webpack_require__) { var arrayFilter = __webpack_require__(87), stubArray = __webpack_require__(88); /** Used for built-in method references. */ var objectProto = Object.prototype; /** Built-in value references. */ var propertyIsEnumerable = objectProto.propertyIsEnumerable; /* Built-in method references for those with the same name as other `lodash` methods. */ var nativeGetSymbols = Object.getOwnPropertySymbols; /** * Creates an array of the own enumerable symbols of `object`. * * @private * @param {Object} object The object to query. * @returns {Array} Returns the array of symbols. */ var getSymbols = !nativeGetSymbols ? stubArray : function(object) { if (object == null) { return []; } object = Object(object); return arrayFilter(nativeGetSymbols(object), function(symbol) { return propertyIsEnumerable.call(object, symbol); }); }; module.exports = getSymbols; /***/ }), /* 64 */ /***/ (function(module, exports, __webpack_require__) { var isArray = __webpack_require__(1), isSymbol = __webpack_require__(23); /** Used to match property names within property paths. */ var reIsDeepProp = /\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\\]|\\.)*?\1)\]/, reIsPlainProp = /^\w*$/; /** * Checks if `value` is a property name and not a property path. * * @private * @param {*} value The value to check. * @param {Object} [object] The object to query keys on. * @returns {boolean} Returns `true` if `value` is a property name, else `false`. */ function isKey(value, object) { if (isArray(value)) { return false; } var type = typeof value; if (type == 'number' || type == 'symbol' || type == 'boolean' || value == null || isSymbol(value)) { return true; } return reIsPlainProp.test(value) || !reIsDeepProp.test(value) || (object != null && value in Object(object)); } module.exports = isKey; /***/ }), /* 65 */ /***/ (function(module, exports, __webpack_require__) { var baseToString = __webpack_require__(66); /** * Converts `value` to a string. An empty string is returned for `null` * and `undefined` values. The sign of `-0` is preserved. * * @static * @memberOf _ * @since 4.0.0 * @category Lang * @param {*} value The value to convert. * @returns {string} Returns the converted string. * @example * * _.toString(null); * // => '' * * _.toString(-0); * // => '-0' * * _.toString([1, 2, 3]); * // => '1,2,3' */ function toString(value) { return value == null ? '' : baseToString(value); } module.exports = toString; /***/ }), /* 66 */ /***/ (function(module, exports, __webpack_require__) { var Symbol = __webpack_require__(16), arrayMap = __webpack_require__(12), isArray = __webpack_require__(1), isSymbol = __webpack_require__(23); /** Used as references for various `Number` constants. */ var INFINITY = 1 / 0; /** Used to convert symbols to primitives and strings. */ var symbolProto = Symbol ? Symbol.prototype : undefined, symbolToString = symbolProto ? symbolProto.toString : undefined; /** * The base implementation of `_.toString` which doesn't convert nullish * values to empty strings. * * @private * @param {*} value The value to process. * @returns {string} Returns the string. */ function baseToString(value) { // Exit early for strings to avoid a performance hit in some environments. if (typeof value == 'string') { return value; } if (isArray(value)) { // Recursively convert values (susceptible to call stack limits). return arrayMap(value, baseToString) + ''; } if (isSymbol(value)) { return symbolToString ? symbolToString.call(value) : ''; } var result = (value + ''); return (result == '0' && (1 / value) == -INFINITY) ? '-0' : result; } module.exports = baseToString; /***/ }), /* 67 */ /***/ (function(module, exports, __webpack_require__) { var overArg = __webpack_require__(80); /** Built-in value references. */ var getPrototype = overArg(Object.getPrototypeOf, Object); module.exports = getPrototype; /***/ }), /* 68 */ /***/ (function(module, exports) { /** * A faster alternative to `Function#apply`, this function invokes `func` * with the `this` binding of `thisArg` and the arguments of `args`. * * @private * @param {Function} func The function to invoke. * @param {*} thisArg The `this` binding of `func`. * @param {Array} args The arguments to invoke `func` with. * @returns {*} Returns the result of `func`. */ function apply(func, thisArg, args) { switch (args.length) { case 0: return func.call(thisArg); case 1: return func.call(thisArg, args[0]); case 2: return func.call(thisArg, args[0], args[1]); case 3: return func.call(thisArg, args[0], args[1], args[2]); } return func.apply(thisArg, args); } module.exports = apply; /***/ }), /* 69 */ /***/ (function(module, exports) { /** * Copies the values of `source` to `array`. * * @private * @param {Array} source The array to copy values from. * @param {Array} [array=[]] The array to copy values to. * @returns {Array} Returns `array`. */ function copyArray(source, array) { var index = -1, length = source.length; array || (array = Array(length)); while (++index < length) { array[index] = source[index]; } return array; } module.exports = copyArray; /***/ }), /* 70 */ /***/ (function(module, exports, __webpack_require__) { var isObject = __webpack_require__(6); /** Built-in value references. */ var objectCreate = Object.create; /** * The base implementation of `_.create` without support for assigning * properties to the created object. * * @private * @param {Object} proto The object to inherit from. * @returns {Object} Returns the new object. */ var baseCreate = (function() { function object() {} return function(proto) { if (!isObject(proto)) { return {}; } if (objectCreate) { return objectCreate(proto); } object.prototype = proto; var result = new object; object.prototype = undefined; return result; }; }()); module.exports = baseCreate; /***/ }), /* 71 */ /***/ (function(module, exports, __webpack_require__) { var castPath = __webpack_require__(22), toKey = __webpack_require__(24); /** * The base implementation of `_.get` without support for default values. * * @private * @param {Object} object The object to query. * @param {Array|string} path The path of the property to get. * @returns {*} Returns the resolved value. */ function baseGet(object, path) { path = castPath(path, object); var index = 0, length = path.length; while (object != null && index < length) { object = object[toKey(path[index++])]; } return (index && index == length) ? object : undefined; } module.exports = baseGet; /***/ }), /* 72 */ /***/ (function(module, exports, __webpack_require__) { var baseGet = __webpack_require__(71); /** * Gets the value at `path` of `object`. If the resolved value is * `undefined`, the `defaultValue` is returned in its place. * * @static * @memberOf _ * @since 3.7.0 * @category Object * @param {Object} object The object to query. * @param {Array|string} path The path of the property to get. * @param {*} [defaultValue] The value returned for `undefined` resolved values. * @returns {*} Returns the resolved value. * @example * * var object = { 'a': [{ 'b': { 'c': 3 } }] }; * * _.get(object, 'a[0].b.c'); * // => 3 * * _.get(object, ['a', '0', 'b', 'c']); * // => 3 * * _.get(object, 'a.b.c', 'default'); * // => 'default' */ function get(object, path, defaultValue) { var result = object == null ? undefined : baseGet(object, path); return result === undefined ? defaultValue : result; } module.exports = get; /***/ }), /* 73 */ /***/ (function(module, exports, __webpack_require__) { var baseForOwn = __webpack_require__(49), createBaseEach = __webpack_require__(255); /** * The base implementation of `_.forEach` without support for iteratee shorthands. * * @private * @param {Array|Object} collection The collection to iterate over. * @param {Function} iteratee The function invoked per iteration. * @returns {Array|Object} Returns `collection`. */ var baseEach = createBaseEach(baseForOwn); module.exports = baseEach; /***/ }), /* 74 */ /***/ (function(module, exports, __webpack_require__) { var baseIndexOf = __webpack_require__(46), toInteger = __webpack_require__(51); /* Built-in method references for those with the same name as other `lodash` methods. */ var nativeMax = Math.max; /** * Gets the index at which the first occurrence of `value` is found in `array` * using [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero) * for equality comparisons. If `fromIndex` is negative, it's used as the * offset from the end of `array`. * * @static * @memberOf _ * @since 0.1.0 * @category Array * @param {Array} array The array to inspect. * @param {*} value The value to search for. * @param {number} [fromIndex=0] The index to search from. * @returns {number} Returns the index of the matched value, else `-1`. * @example * * _.indexOf([1, 2, 1, 2], 2); * // => 1 * * // Search from the `fromIndex`. * _.indexOf([1, 2, 1, 2], 2, 2); * // => 3 */ function indexOf(array, value, fromIndex) { var length = array == null ? 0 : array.length; if (!length) { return -1; } var index = fromIndex == null ? 0 : toInteger(fromIndex); if (index < 0) { index = nativeMax(length + index, 0); } return baseIndexOf(array, value, index); } module.exports = indexOf; /***/ }), /* 75 */ /***/ (function(module, exports, __webpack_require__) { var baseCreate = __webpack_require__(70), isObject = __webpack_require__(6); /** * Creates a function that produces an instance of `Ctor` regardless of * whether it was invoked as part of a `new` expression or by `call` or `apply`. * * @private * @param {Function} Ctor The constructor to wrap. * @returns {Function} Returns the new wrapped function. */ function createCtor(Ctor) { return function() { // Use a `switch` statement to work with class constructors. See // http://ecma-international.org/ecma-262/7.0/#sec-ecmascript-function-objects-call-thisargument-argumentslist // for more details. var args = arguments; switch (args.length) { case 0: return new Ctor; case 1: return new Ctor(args[0]); case 2: return new Ctor(args[0], args[1]); case 3: return new Ctor(args[0], args[1], args[2]); case 4: return new Ctor(args[0], args[1], args[2], args[3]); case 5: return new Ctor(args[0], args[1], args[2], args[3], args[4]); case 6: return new Ctor(args[0], args[1], args[2], args[3], args[4], args[5]); case 7: return new Ctor(args[0], args[1], args[2], args[3], args[4], args[5], args[6]); } var thisBinding = baseCreate(Ctor.prototype), result = Ctor.apply(thisBinding, args); // Mimic the constructor's `return` behavior. // See https://es5.github.io/#x13.2.2 for more details. return isObject(result) ? result : thisBinding; }; } module.exports = createCtor; /***/ }), /* 76 */ /***/ (function(module, exports, __webpack_require__) { /* WEBPACK VAR INJECTION */(function(global) {/** Detect free variable `global` from Node.js. */ var freeGlobal = typeof global == 'object' && global && global.Object === Object && global; module.exports = freeGlobal; /* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(55))) /***/ }), /* 77 */ /***/ (function(module, exports) { /** Used for built-in method references. */ var funcProto = Function.prototype; /** Used to resolve the decompiled source of functions. */ var funcToString = funcProto.toString; /** * Converts `func` to its source code. * * @private * @param {Function} func The function to convert. * @returns {string} Returns the source code. */ function toSource(func) { if (func != null) { try { return funcToString.call(func); } catch (e) {} try { return (func + ''); } catch (e) {} } return ''; } module.exports = toSource; /***/ }), /* 78 */ /***/ (function(module, exports, __webpack_require__) { var SetCache = __webpack_require__(60), arraySome = __webpack_require__(143), cacheHas = __webpack_require__(61); /** Used to compose bitmasks for value comparisons. */ var COMPARE_PARTIAL_FLAG = 1, COMPARE_UNORDERED_FLAG = 2; /** * A specialized version of `baseIsEqualDeep` for arrays with support for * partial deep comparisons. * * @private * @param {Array} array The array to compare. * @param {Array} other The other array to compare. * @param {number} bitmask The bitmask flags. See `baseIsEqual` for more details. * @param {Function} customizer The function to customize comparisons. * @param {Function} equalFunc The function to determine equivalents of values. * @param {Object} stack Tracks traversed `array` and `other` objects. * @returns {boolean} Returns `true` if the arrays are equivalent, else `false`. */ function equalArrays(array, other, bitmask, customizer, equalFunc, stack) { var isPartial = bitmask & COMPARE_PARTIAL_FLAG, arrLength = array.length, othLength = other.length; if (arrLength != othLength && !(isPartial && othLength > arrLength)) { return false; } // Assume cyclic values are equal. var stacked = stack.get(array); if (stacked && stack.get(other)) { return stacked == other; } var index = -1, result = true, seen = (bitmask & COMPARE_UNORDERED_FLAG) ? new SetCache : undefined; stack.set(array, other); stack.set(other, array); // Ignore non-index properties. while (++index < arrLength) { var arrValue = array[index], othValue = other[index]; if (customizer) { var compared = isPartial ? customizer(othValue, arrValue, index, other, array, stack) : customizer(arrValue, othValue, index, array, other, stack); } if (compared !== undefined) { if (compared) { continue; } result = false; break; } // Recursively compare arrays (susceptible to call stack limits). if (seen) { if (!arraySome(other, function(othValue, othIndex) { if (!cacheHas(seen, othIndex) && (arrValue === othValue || equalFunc(arrValue, othValue, bitmask, customizer, stack))) { return seen.push(othIndex); } })) { result = false; break; } } else if (!( arrValue === othValue || equalFunc(arrValue, othValue, bitmask, customizer, stack) )) { result = false; break; } } stack['delete'](array); stack['delete'](other); return result; } module.exports = equalArrays; /***/ }), /* 79 */ /***/ (function(module, exports, __webpack_require__) { var isPrototype = __webpack_require__(38), nativeKeys = __webpack_require__(151); /** Used for built-in method references. */ var objectProto = Object.prototype; /** Used to check objects for own properties. */ var hasOwnProperty = objectProto.hasOwnProperty; /** * The base implementation of `_.keys` which doesn't treat sparse arrays as dense. * * @private * @param {Object} object The object to query. * @returns {Array} Returns the array of property names. */ function baseKeys(object) { if (!isPrototype(object)) { return nativeKeys(object); } var result = []; for (var key in Object(object)) { if (hasOwnProperty.call(object, key) && key != 'constructor') { result.push(key); } } return result; } module.exports = baseKeys; /***/ }), /* 80 */ /***/ (function(module, exports) { /** * Creates a unary function that invokes `func` with its argument transformed. * * @private * @param {Function} func The function to wrap. * @param {Function} transform The argument transform. * @returns {Function} Returns the new function. */ function overArg(func, transform) { return function(arg) { return func(transform(arg)); }; } module.exports = overArg; /***/ }), /* 81 */ /***/ (function(module, exports, __webpack_require__) { var baseIsEqual = __webpack_require__(59); /** * Performs a deep comparison between two values to determine if they are * equivalent. * * **Note:** This method supports comparing arrays, array buffers, booleans, * date objects, error objects, maps, numbers, `Object` objects, regexes, * sets, strings, symbols, and typed arrays. `Object` objects are compared * by their own, not inherited, enumerable properties. Functions and DOM * nodes are compared by strict equality, i.e. `===`. * * @static * @memberOf _ * @since 0.1.0 * @category Lang * @param {*} value The value to compare. * @param {*} other The other value to compare. * @returns {boolean} Returns `true` if the values are equivalent, else `false`. * @example * * var object = { 'a': 1 }; * var other = { 'a': 1 }; * * _.isEqual(object, other); * // => true * * object === other; * // => false */ function isEqual(value, other) { return baseIsEqual(value, other); } module.exports = isEqual; /***/ }), /* 82 */ /***/ (function(module, exports, __webpack_require__) { var root = __webpack_require__(3); /** Built-in value references. */ var Uint8Array = root.Uint8Array; module.exports = Uint8Array; /***/ }), /* 83 */ /***/ (function(module, exports) { /** * Converts `map` to its key-value pairs. * * @private * @param {Object} map The map to convert. * @returns {Array} Returns the key-value pairs. */ function mapToArray(map) { var index = -1, result = Array(map.size); map.forEach(function(value, key) { result[++index] = [key, value]; }); return result; } module.exports = mapToArray; /***/ }), /* 84 */ /***/ (function(module, exports) { /** * Converts `set` to an array of its values. * * @private * @param {Object} set The set to convert. * @returns {Array} Returns the values. */ function setToArray(set) { var index = -1, result = Array(set.size); set.forEach(function(value) { result[++index] = value; }); return result; } module.exports = setToArray; /***/ }), /* 85 */ /***/ (function(module, exports, __webpack_require__) { var baseGetAllKeys = __webpack_require__(86), getSymbols = __webpack_require__(63), keys = __webpack_require__(9); /** * Creates an array of own enumerable property names and symbols of `object`. * * @private * @param {Object} object The object to query. * @returns {Array} Returns the array of property names and symbols. */ function getAllKeys(object) { return baseGetAllKeys(object, keys, getSymbols); } module.exports = getAllKeys; /***/ }), /* 86 */ /***/ (function(module, exports, __webpack_require__) { var arrayPush = __webpack_require__(62), isArray = __webpack_require__(1); /** * The base implementation of `getAllKeys` and `getAllKeysIn` which uses * `keysFunc` and `symbolsFunc` to get the enumerable property names and * symbols of `object`. * * @private * @param {Object} object The object to query. * @param {Function} keysFunc The function to get the keys of `object`. * @param {Function} symbolsFunc The function to get the symbols of `object`. * @returns {Array} Returns the array of property names and symbols. */ function baseGetAllKeys(object, keysFunc, symbolsFunc) { var result = keysFunc(object); return isArray(object) ? result : arrayPush(result, symbolsFunc(object)); } module.exports = baseGetAllKeys; /***/ }), /* 87 */ /***/ (function(module, exports) { /** * A specialized version of `_.filter` for arrays without support for * iteratee shorthands. * * @private * @param {Array} [array] The array to iterate over. * @param {Function} predicate The function invoked per iteration. * @returns {Array} Returns the new filtered array. */ function arrayFilter(array, predicate) { var index = -1, length = array == null ? 0 : array.length, resIndex = 0, result = []; while (++index < length) { var value = array[index]; if (predicate(value, index, array)) { result[resIndex++] = value; } } return result; } module.exports = arrayFilter; /***/ }), /* 88 */ /***/ (function(module, exports) { /** * This method returns a new empty array. * * @static * @memberOf _ * @since 4.13.0 * @category Util * @returns {Array} Returns the new empty array. * @example * * var arrays = _.times(2, _.stubArray); * * console.log(arrays); * // => [[], []] * * console.log(arrays[0] === arrays[1]); * // => false */ function stubArray() { return []; } module.exports = stubArray; /***/ }), /* 89 */ /***/ (function(module, exports, __webpack_require__) { var baseTimes = __webpack_require__(146), isArguments = __webpack_require__(20), isArray = __webpack_require__(1), isBuffer = __webpack_require__(21), isIndex = __webpack_require__(32), isTypedArray = __webpack_require__(34); /** Used for built-in method references. */ var objectProto = Object.prototype; /** Used to check objects for own properties. */ var hasOwnProperty = objectProto.hasOwnProperty; /** * Creates an array of the enumerable property names of the array-like `value`. * * @private * @param {*} value The value to query. * @param {boolean} inherited Specify returning inherited property names. * @returns {Array} Returns the array of property names. */ function arrayLikeKeys(value, inherited) { var isArr = isArray(value), isArg = !isArr && isArguments(value), isBuff = !isArr && !isArg && isBuffer(value), isType = !isArr && !isArg && !isBuff && isTypedArray(value), skipIndexes = isArr || isArg || isBuff || isType, result = skipIndexes ? baseTimes(value.length, String) : [], length = result.length; for (var key in value) { if ((inherited || hasOwnProperty.call(value, key)) && !(skipIndexes && ( // Safari 9 has enumerable `arguments.length` in strict mode. key == 'length' || // Node.js 0.10 has enumerable non-index properties on buffers. (isBuff && (key == 'offset' || key == 'parent')) || // PhantomJS 2 has enumerable non-index properties on typed arrays. (isType && (key == 'buffer' || key == 'byteLength' || key == 'byteOffset')) || // Skip index properties. isIndex(key, length) ))) { result.push(key); } } return result; } module.exports = arrayLikeKeys; /***/ }), /* 90 */ /***/ (function(module, exports, __webpack_require__) { var getNative = __webpack_require__(10), root = __webpack_require__(3); /* Built-in method references that are verified to be native. */ var WeakMap = getNative(root, 'WeakMap'); module.exports = WeakMap; /***/ }), /* 91 */ /***/ (function(module, exports, __webpack_require__) { var castPath = __webpack_require__(22), isArguments = __webpack_require__(20), isArray = __webpack_require__(1), isIndex = __webpack_require__(32), isLength = __webpack_require__(42), toKey = __webpack_require__(24); /** * Checks if `path` exists on `object`. * * @private * @param {Object} object The object to query. * @param {Array|string} path The path to check. * @param {Function} hasFunc The function to check properties. * @returns {boolean} Returns `true` if `path` exists, else `false`. */ function hasPath(object, path, hasFunc) { path = castPath(path, object); var index = -1, length = path.length, result = false; while (++index < length) { var key = toKey(path[index]); if (!(result = object != null && hasFunc(object, key))) { break; } object = object[key]; } if (result || ++index != length) { return result; } length = object == null ? 0 : object.length; return !!length && isLength(length) && isIndex(key, length) && (isArray(object) || isArguments(object)); } module.exports = hasPath; /***/ }), /* 92 */ /***/ (function(module, exports, __webpack_require__) { var baseIndexOf = __webpack_require__(46); /** * A specialized version of `_.includes` for arrays without support for * specifying an index to search from. * * @private * @param {Array} [array] The array to inspect. * @param {*} target The value to search for. * @returns {boolean} Returns `true` if `target` is found, else `false`. */ function arrayIncludes(array, value) { var length = array == null ? 0 : array.length; return !!length && baseIndexOf(array, value, 0) > -1; } module.exports = arrayIncludes; /***/ }), /* 93 */ /***/ (function(module, exports, __webpack_require__) { var baseSetToString = __webpack_require__(228), shortOut = __webpack_require__(169); /** * Sets the `toString` method of `func` to return `string`. * * @private * @param {Function} func The function to modify. * @param {Function} string The `toString` result. * @returns {Function} Returns `func`. */ var setToString = shortOut(baseSetToString); module.exports = setToString; /***/ }), /* 94 */ /***/ (function(module, exports, __webpack_require__) { var isArrayLike = __webpack_require__(11), isObjectLike = __webpack_require__(7); /** * This method is like `_.isArrayLike` except that it also checks if `value` * is an object. * * @static * @memberOf _ * @since 4.0.0 * @category Lang * @param {*} value The value to check. * @returns {boolean} Returns `true` if `value` is an array-like object, * else `false`. * @example * * _.isArrayLikeObject([1, 2, 3]); * // => true * * _.isArrayLikeObject(document.body.children); * // => true * * _.isArrayLikeObject('abc'); * // => false * * _.isArrayLikeObject(_.noop); * // => false */ function isArrayLikeObject(value) { return isObjectLike(value) && isArrayLike(value); } module.exports = isArrayLikeObject; /***/ }), /* 95 */ /***/ (function(module, exports) { /** * A specialized version of `_.forEach` for arrays without support for * iteratee shorthands. * * @private * @param {Array} [array] The array to iterate over. * @param {Function} iteratee The function invoked per iteration. * @returns {Array} Returns `array`. */ function arrayEach(array, iteratee) { var index = -1, length = array == null ? 0 : array.length; while (++index < length) { if (iteratee(array[index], index, array) === false) { break; } } return array; } module.exports = arrayEach; /***/ }), /* 96 */ /***/ (function(module, exports, __webpack_require__) { var baseAssignValue = __webpack_require__(47), eq = __webpack_require__(18); /** Used for built-in method references. */ var objectProto = Object.prototype; /** Used to check objects for own properties. */ var hasOwnProperty = objectProto.hasOwnProperty; /** * Assigns `value` to `key` of `object` if the existing value is not equivalent * using [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero) * for equality comparisons. * * @private * @param {Object} object The object to modify. * @param {string} key The key of the property to assign. * @param {*} value The value to assign. */ function assignValue(object, key, value) { var objValue = object[key]; if (!(hasOwnProperty.call(object, key) && eq(objValue, value)) || (value === undefined && !(key in object))) { baseAssignValue(object, key, value); } } module.exports = assignValue; /***/ }), /* 97 */ /***/ (function(module, exports, __webpack_require__) { var baseGetAllKeys = __webpack_require__(86), getSymbolsIn = __webpack_require__(171), keysIn = __webpack_require__(48); /** * Creates an array of own and inherited enumerable property names and * symbols of `object`. * * @private * @param {Object} object The object to query. * @returns {Array} Returns the array of property names and symbols. */ function getAllKeysIn(object) { return baseGetAllKeys(object, keysIn, getSymbolsIn); } module.exports = getAllKeysIn; /***/ }), /* 98 */ /***/ (function(module, exports, __webpack_require__) { var Uint8Array = __webpack_require__(82); /** * Creates a clone of `arrayBuffer`. * * @private * @param {ArrayBuffer} arrayBuffer The array buffer to clone. * @returns {ArrayBuffer} Returns the cloned array buffer. */ function cloneArrayBuffer(arrayBuffer) { var result = new arrayBuffer.constructor(arrayBuffer.byteLength); new Uint8Array(result).set(new Uint8Array(arrayBuffer)); return result; } module.exports = cloneArrayBuffer; /***/ }), /* 99 */ /***/ (function(module, exports) { /** * A specialized version of `_.reduce` for arrays without support for * iteratee shorthands. * * @private * @param {Array} [array] The array to iterate over. * @param {Function} iteratee The function invoked per iteration. * @param {*} [accumulator] The initial value. * @param {boolean} [initAccum] Specify using the first element of `array` as * the initial value. * @returns {*} Returns the accumulated value. */ function arrayReduce(array, iteratee, accumulator, initAccum) { var index = -1, length = array == null ? 0 : array.length; if (initAccum && length) { accumulator = array[++index]; } while (++index < length) { accumulator = iteratee(accumulator, array[index], index, array); } return accumulator; } module.exports = arrayReduce; /***/ }), /* 100 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; var keys = __webpack_require__(9); var intersection = __webpack_require__(250); var forOwn = __webpack_require__(253); var forEach = __webpack_require__(36); var filter = __webpack_require__(101); var map = __webpack_require__(17); var reduce = __webpack_require__(50); var omit = __webpack_require__(35); var indexOf = __webpack_require__(74); var isNaN = __webpack_require__(214); var isArray = __webpack_require__(1); var isEmpty = __webpack_require__(15); var isEqual = __webpack_require__(81); var isUndefined = __webpack_require__(185); var isString = __webpack_require__(52); var isFunction = __webpack_require__(19); var find = __webpack_require__(53); var trim = __webpack_require__(187); var defaults = __webpack_require__(102); var merge = __webpack_require__(103); var valToNumber = __webpack_require__(280); var filterState = __webpack_require__(281); var RefinementList = __webpack_require__(282); /** * like _.find but using _.isEqual to be able to use it * to find arrays. * @private * @param {any[]} array array to search into * @param {any} searchedValue the value we're looking for * @return {any} the searched value or undefined */ function findArray(array, searchedValue) { return find(array, function(currentValue) { return isEqual(currentValue, searchedValue); }); } /** * The facet list is the structure used to store the list of values used to * filter a single attribute. * @typedef {string[]} SearchParameters.FacetList */ /** * Structure to store numeric filters with the operator as the key. The supported operators * are `=`, `>`, `<`, `>=`, `<=` and `!=`. * @typedef {Object.<string, Array.<number|number[]>>} SearchParameters.OperatorList */ /** * SearchParameters is the data structure that contains all the information * usable for making a search to Algolia API. It doesn't do the search itself, * nor does it contains logic about the parameters. * It is an immutable object, therefore it has been created in a way that each * changes does not change the object itself but returns a copy with the * modification. * This object should probably not be instantiated outside of the helper. It will * be provided when needed. This object is documented for reference as you'll * get it from events generated by the {@link AlgoliaSearchHelper}. * If need be, instantiate the Helper from the factory function {@link SearchParameters.make} * @constructor * @classdesc contains all the parameters of a search * @param {object|SearchParameters} newParameters existing parameters or partial object * for the properties of a new SearchParameters * @see SearchParameters.make * @example <caption>SearchParameters of the first query in * <a href="http://demos.algolia.com/instant-search-demo/">the instant search demo</a></caption> { "query": "", "disjunctiveFacets": [ "customerReviewCount", "category", "salePrice_range", "manufacturer" ], "maxValuesPerFacet": 30, "page": 0, "hitsPerPage": 10, "facets": [ "type", "shipping" ] } */ function SearchParameters(newParameters) { var params = newParameters ? SearchParameters._parseNumbers(newParameters) : {}; /** * Targeted index. This parameter is mandatory. * @member {string} */ this.index = params.index || ''; // Query /** * Query string of the instant search. The empty string is a valid query. * @member {string} * @see https://www.algolia.com/doc/rest#param-query */ this.query = params.query || ''; // Facets /** * This attribute contains the list of all the conjunctive facets * used. This list will be added to requested facets in the * [facets attribute](https://www.algolia.com/doc/rest-api/search#param-facets) sent to algolia. * @member {string[]} */ this.facets = params.facets || []; /** * This attribute contains the list of all the disjunctive facets * used. This list will be added to requested facets in the * [facets attribute](https://www.algolia.com/doc/rest-api/search#param-facets) sent to algolia. * @member {string[]} */ this.disjunctiveFacets = params.disjunctiveFacets || []; /** * This attribute contains the list of all the hierarchical facets * used. This list will be added to requested facets in the * [facets attribute](https://www.algolia.com/doc/rest-api/search#param-facets) sent to algolia. * Hierarchical facets are a sub type of disjunctive facets that * let you filter faceted attributes hierarchically. * @member {string[]|object[]} */ this.hierarchicalFacets = params.hierarchicalFacets || []; // Refinements /** * This attribute contains all the filters that need to be * applied on the conjunctive facets. Each facet must be properly * defined in the `facets` attribute. * * The key is the name of the facet, and the `FacetList` contains all * filters selected for the associated facet name. * * When querying algolia, the values stored in this attribute will * be translated into the `facetFilters` attribute. * @member {Object.<string, SearchParameters.FacetList>} */ this.facetsRefinements = params.facetsRefinements || {}; /** * This attribute contains all the filters that need to be * excluded from the conjunctive facets. Each facet must be properly * defined in the `facets` attribute. * * The key is the name of the facet, and the `FacetList` contains all * filters excluded for the associated facet name. * * When querying algolia, the values stored in this attribute will * be translated into the `facetFilters` attribute. * @member {Object.<string, SearchParameters.FacetList>} */ this.facetsExcludes = params.facetsExcludes || {}; /** * This attribute contains all the filters that need to be * applied on the disjunctive facets. Each facet must be properly * defined in the `disjunctiveFacets` attribute. * * The key is the name of the facet, and the `FacetList` contains all * filters selected for the associated facet name. * * When querying algolia, the values stored in this attribute will * be translated into the `facetFilters` attribute. * @member {Object.<string, SearchParameters.FacetList>} */ this.disjunctiveFacetsRefinements = params.disjunctiveFacetsRefinements || {}; /** * This attribute contains all the filters that need to be * applied on the numeric attributes. * * The key is the name of the attribute, and the value is the * filters to apply to this attribute. * * When querying algolia, the values stored in this attribute will * be translated into the `numericFilters` attribute. * @member {Object.<string, SearchParameters.OperatorList>} */ this.numericRefinements = params.numericRefinements || {}; /** * This attribute contains all the tags used to refine the query. * * When querying algolia, the values stored in this attribute will * be translated into the `tagFilters` attribute. * @member {string[]} */ this.tagRefinements = params.tagRefinements || []; /** * This attribute contains all the filters that need to be * applied on the hierarchical facets. Each facet must be properly * defined in the `hierarchicalFacets` attribute. * * The key is the name of the facet, and the `FacetList` contains all * filters selected for the associated facet name. The FacetList values * are structured as a string that contain the values for each level * separated by the configured separator. * * When querying algolia, the values stored in this attribute will * be translated into the `facetFilters` attribute. * @member {Object.<string, SearchParameters.FacetList>} */ this.hierarchicalFacetsRefinements = params.hierarchicalFacetsRefinements || {}; /** * Contains the numeric filters in the raw format of the Algolia API. Setting * this parameter is not compatible with the usage of numeric filters methods. * @see https://www.algolia.com/doc/javascript#numericFilters * @member {string} */ this.numericFilters = params.numericFilters; /** * Contains the tag filters in the raw format of the Algolia API. Setting this * parameter is not compatible with the of the add/remove/toggle methods of the * tag api. * @see https://www.algolia.com/doc/rest#param-tagFilters * @member {string} */ this.tagFilters = params.tagFilters; /** * Contains the optional tag filters in the raw format of the Algolia API. * @see https://www.algolia.com/doc/rest#param-tagFilters * @member {string} */ this.optionalTagFilters = params.optionalTagFilters; /** * Contains the optional facet filters in the raw format of the Algolia API. * @see https://www.algolia.com/doc/rest#param-tagFilters * @member {string} */ this.optionalFacetFilters = params.optionalFacetFilters; // Misc. parameters /** * Number of hits to be returned by the search API * @member {number} * @see https://www.algolia.com/doc/rest#param-hitsPerPage */ this.hitsPerPage = params.hitsPerPage; /** * Number of values for each faceted attribute * @member {number} * @see https://www.algolia.com/doc/rest#param-maxValuesPerFacet */ this.maxValuesPerFacet = params.maxValuesPerFacet; /** * The current page number * @member {number} * @see https://www.algolia.com/doc/rest#param-page */ this.page = params.page || 0; /** * How the query should be treated by the search engine. * Possible values: prefixAll, prefixLast, prefixNone * @see https://www.algolia.com/doc/rest#param-queryType * @member {string} */ this.queryType = params.queryType; /** * How the typo tolerance behave in the search engine. * Possible values: true, false, min, strict * @see https://www.algolia.com/doc/rest#param-typoTolerance * @member {string} */ this.typoTolerance = params.typoTolerance; /** * Number of characters to wait before doing one character replacement. * @see https://www.algolia.com/doc/rest#param-minWordSizefor1Typo * @member {number} */ this.minWordSizefor1Typo = params.minWordSizefor1Typo; /** * Number of characters to wait before doing a second character replacement. * @see https://www.algolia.com/doc/rest#param-minWordSizefor2Typos * @member {number} */ this.minWordSizefor2Typos = params.minWordSizefor2Typos; /** * Configure the precision of the proximity ranking criterion * @see https://www.algolia.com/doc/rest#param-minProximity */ this.minProximity = params.minProximity; /** * Should the engine allow typos on numerics. * @see https://www.algolia.com/doc/rest#param-allowTyposOnNumericTokens * @member {boolean} */ this.allowTyposOnNumericTokens = params.allowTyposOnNumericTokens; /** * Should the plurals be ignored * @see https://www.algolia.com/doc/rest#param-ignorePlurals * @member {boolean} */ this.ignorePlurals = params.ignorePlurals; /** * Restrict which attribute is searched. * @see https://www.algolia.com/doc/rest#param-restrictSearchableAttributes * @member {string} */ this.restrictSearchableAttributes = params.restrictSearchableAttributes; /** * Enable the advanced syntax. * @see https://www.algolia.com/doc/rest#param-advancedSyntax * @member {boolean} */ this.advancedSyntax = params.advancedSyntax; /** * Enable the analytics * @see https://www.algolia.com/doc/rest#param-analytics * @member {boolean} */ this.analytics = params.analytics; /** * Tag of the query in the analytics. * @see https://www.algolia.com/doc/rest#param-analyticsTags * @member {string} */ this.analyticsTags = params.analyticsTags; /** * Enable the synonyms * @see https://www.algolia.com/doc/rest#param-synonyms * @member {boolean} */ this.synonyms = params.synonyms; /** * Should the engine replace the synonyms in the highlighted results. * @see https://www.algolia.com/doc/rest#param-replaceSynonymsInHighlight * @member {boolean} */ this.replaceSynonymsInHighlight = params.replaceSynonymsInHighlight; /** * Add some optional words to those defined in the dashboard * @see https://www.algolia.com/doc/rest#param-optionalWords * @member {string} */ this.optionalWords = params.optionalWords; /** * Possible values are "lastWords" "firstWords" "allOptional" "none" (default) * @see https://www.algolia.com/doc/rest#param-removeWordsIfNoResults * @member {string} */ this.removeWordsIfNoResults = params.removeWordsIfNoResults; /** * List of attributes to retrieve * @see https://www.algolia.com/doc/rest#param-attributesToRetrieve * @member {string} */ this.attributesToRetrieve = params.attributesToRetrieve; /** * List of attributes to highlight * @see https://www.algolia.com/doc/rest#param-attributesToHighlight * @member {string} */ this.attributesToHighlight = params.attributesToHighlight; /** * Code to be embedded on the left part of the highlighted results * @see https://www.algolia.com/doc/rest#param-highlightPreTag * @member {string} */ this.highlightPreTag = params.highlightPreTag; /** * Code to be embedded on the right part of the highlighted results * @see https://www.algolia.com/doc/rest#param-highlightPostTag * @member {string} */ this.highlightPostTag = params.highlightPostTag; /** * List of attributes to snippet * @see https://www.algolia.com/doc/rest#param-attributesToSnippet * @member {string} */ this.attributesToSnippet = params.attributesToSnippet; /** * Enable the ranking informations in the response, set to 1 to activate * @see https://www.algolia.com/doc/rest#param-getRankingInfo * @member {number} */ this.getRankingInfo = params.getRankingInfo; /** * Remove duplicates based on the index setting attributeForDistinct * @see https://www.algolia.com/doc/rest#param-distinct * @member {boolean|number} */ this.distinct = params.distinct; /** * Center of the geo search. * @see https://www.algolia.com/doc/rest#param-aroundLatLng * @member {string} */ this.aroundLatLng = params.aroundLatLng; /** * Center of the search, retrieve from the user IP. * @see https://www.algolia.com/doc/rest#param-aroundLatLngViaIP * @member {boolean} */ this.aroundLatLngViaIP = params.aroundLatLngViaIP; /** * Radius of the geo search. * @see https://www.algolia.com/doc/rest#param-aroundRadius * @member {number} */ this.aroundRadius = params.aroundRadius; /** * Precision of the geo search. * @see https://www.algolia.com/doc/rest#param-aroundPrecision * @member {number} */ this.minimumAroundRadius = params.minimumAroundRadius; /** * Precision of the geo search. * @see https://www.algolia.com/doc/rest#param-minimumAroundRadius * @member {number} */ this.aroundPrecision = params.aroundPrecision; /** * Geo search inside a box. * @see https://www.algolia.com/doc/rest#param-insideBoundingBox * @member {string} */ this.insideBoundingBox = params.insideBoundingBox; /** * Geo search inside a polygon. * @see https://www.algolia.com/doc/rest#param-insidePolygon * @member {string} */ this.insidePolygon = params.insidePolygon; /** * Allows to specify an ellipsis character for the snippet when we truncate the text * (added before and after if truncated). * The default value is an empty string and we recommend to set it to "…" * @see https://www.algolia.com/doc/rest#param-insidePolygon * @member {string} */ this.snippetEllipsisText = params.snippetEllipsisText; /** * Allows to specify some attributes name on which exact won't be applied. * Attributes are separated with a comma (for example "name,address" ), you can also use a * JSON string array encoding (for example encodeURIComponent('["name","address"]') ). * By default the list is empty. * @see https://www.algolia.com/doc/rest#param-disableExactOnAttributes * @member {string|string[]} */ this.disableExactOnAttributes = params.disableExactOnAttributes; /** * Applies 'exact' on single word queries if the word contains at least 3 characters * and is not a stop word. * Can take two values: true or false. * By default, its set to false. * @see https://www.algolia.com/doc/rest#param-enableExactOnSingleWordQuery * @member {boolean} */ this.enableExactOnSingleWordQuery = params.enableExactOnSingleWordQuery; // Undocumented parameters, still needed otherwise we fail this.offset = params.offset; this.length = params.length; var self = this; forOwn(params, function checkForUnknownParameter(paramValue, paramName) { if (SearchParameters.PARAMETERS.indexOf(paramName) === -1) { self[paramName] = paramValue; } }); } /** * List all the properties in SearchParameters and therefore all the known Algolia properties * This doesn't contain any beta/hidden features. * @private */ SearchParameters.PARAMETERS = keys(new SearchParameters()); /** * @private * @param {object} partialState full or part of a state * @return {object} a new object with the number keys as number */ SearchParameters._parseNumbers = function(partialState) { // Do not reparse numbers in SearchParameters, they ought to be parsed already if (partialState instanceof SearchParameters) return partialState; var numbers = {}; var numberKeys = [ 'aroundPrecision', 'aroundRadius', 'getRankingInfo', 'minWordSizefor2Typos', 'minWordSizefor1Typo', 'page', 'maxValuesPerFacet', 'distinct', 'minimumAroundRadius', 'hitsPerPage', 'minProximity' ]; forEach(numberKeys, function(k) { var value = partialState[k]; if (isString(value)) { var parsedValue = parseFloat(value); numbers[k] = isNaN(parsedValue) ? value : parsedValue; } }); if (partialState.numericRefinements) { var numericRefinements = {}; forEach(partialState.numericRefinements, function(operators, attribute) { numericRefinements[attribute] = {}; forEach(operators, function(values, operator) { var parsedValues = map(values, function(v) { if (isArray(v)) { return map(v, function(vPrime) { if (isString(vPrime)) { return parseFloat(vPrime); } return vPrime; }); } else if (isString(v)) { return parseFloat(v); } return v; }); numericRefinements[attribute][operator] = parsedValues; }); }); numbers.numericRefinements = numericRefinements; } return merge({}, partialState, numbers); }; /** * Factory for SearchParameters * @param {object|SearchParameters} newParameters existing parameters or partial * object for the properties of a new SearchParameters * @return {SearchParameters} frozen instance of SearchParameters */ SearchParameters.make = function makeSearchParameters(newParameters) { var instance = new SearchParameters(newParameters); forEach(newParameters.hierarchicalFacets, function(facet) { if (facet.rootPath) { var currentRefinement = instance.getHierarchicalRefinement(facet.name); if (currentRefinement.length > 0 && currentRefinement[0].indexOf(facet.rootPath) !== 0) { instance = instance.clearRefinements(facet.name); } // get it again in case it has been cleared currentRefinement = instance.getHierarchicalRefinement(facet.name); if (currentRefinement.length === 0) { instance = instance.toggleHierarchicalFacetRefinement(facet.name, facet.rootPath); } } }); return instance; }; /** * Validates the new parameters based on the previous state * @param {SearchParameters} currentState the current state * @param {object|SearchParameters} parameters the new parameters to set * @return {Error|null} Error if the modification is invalid, null otherwise */ SearchParameters.validate = function(currentState, parameters) { var params = parameters || {}; if (currentState.tagFilters && params.tagRefinements && params.tagRefinements.length > 0) { return new Error( '[Tags] Cannot switch from the managed tag API to the advanced API. It is probably ' + 'an error, if it is really what you want, you should first clear the tags with clearTags method.'); } if (currentState.tagRefinements.length > 0 && params.tagFilters) { return new Error( '[Tags] Cannot switch from the advanced tag API to the managed API. It is probably ' + 'an error, if it is not, you should first clear the tags with clearTags method.'); } if (currentState.numericFilters && params.numericRefinements && !isEmpty(params.numericRefinements)) { return new Error( "[Numeric filters] Can't switch from the advanced to the managed API. It" + ' is probably an error, if this is really what you want, you have to first' + ' clear the numeric filters.'); } if (!isEmpty(currentState.numericRefinements) && params.numericFilters) { return new Error( "[Numeric filters] Can't switch from the managed API to the advanced. It" + ' is probably an error, if this is really what you want, you have to first' + ' clear the numeric filters.'); } return null; }; SearchParameters.prototype = { constructor: SearchParameters, /** * Remove all refinements (disjunctive + conjunctive + excludes + numeric filters) * @method * @param {undefined|string|SearchParameters.clearCallback} [attribute] optional string or function * - If not given, means to clear all the filters. * - If `string`, means to clear all refinements for the `attribute` named filter. * - If `function`, means to clear all the refinements that return truthy values. * @return {SearchParameters} */ clearRefinements: function clearRefinements(attribute) { var clear = RefinementList.clearRefinement; return this.setQueryParameters({ numericRefinements: this._clearNumericRefinements(attribute), facetsRefinements: clear(this.facetsRefinements, attribute, 'conjunctiveFacet'), facetsExcludes: clear(this.facetsExcludes, attribute, 'exclude'), disjunctiveFacetsRefinements: clear(this.disjunctiveFacetsRefinements, attribute, 'disjunctiveFacet'), hierarchicalFacetsRefinements: clear(this.hierarchicalFacetsRefinements, attribute, 'hierarchicalFacet') }); }, /** * Remove all the refined tags from the SearchParameters * @method * @return {SearchParameters} */ clearTags: function clearTags() { if (this.tagFilters === undefined && this.tagRefinements.length === 0) return this; return this.setQueryParameters({ tagFilters: undefined, tagRefinements: [] }); }, /** * Set the index. * @method * @param {string} index the index name * @return {SearchParameters} */ setIndex: function setIndex(index) { if (index === this.index) return this; return this.setQueryParameters({ index: index }); }, /** * Query setter * @method * @param {string} newQuery value for the new query * @return {SearchParameters} */ setQuery: function setQuery(newQuery) { if (newQuery === this.query) return this; return this.setQueryParameters({ query: newQuery }); }, /** * Page setter * @method * @param {number} newPage new page number * @return {SearchParameters} */ setPage: function setPage(newPage) { if (newPage === this.page) return this; return this.setQueryParameters({ page: newPage }); }, /** * Facets setter * The facets are the simple facets, used for conjunctive (and) faceting. * @method * @param {string[]} facets all the attributes of the algolia records used for conjunctive faceting * @return {SearchParameters} */ setFacets: function setFacets(facets) { return this.setQueryParameters({ facets: facets }); }, /** * Disjunctive facets setter * Change the list of disjunctive (or) facets the helper chan handle. * @method * @param {string[]} facets all the attributes of the algolia records used for disjunctive faceting * @return {SearchParameters} */ setDisjunctiveFacets: function setDisjunctiveFacets(facets) { return this.setQueryParameters({ disjunctiveFacets: facets }); }, /** * HitsPerPage setter * Hits per page represents the number of hits retrieved for this query * @method * @param {number} n number of hits retrieved per page of results * @return {SearchParameters} */ setHitsPerPage: function setHitsPerPage(n) { if (this.hitsPerPage === n) return this; return this.setQueryParameters({ hitsPerPage: n }); }, /** * typoTolerance setter * Set the value of typoTolerance * @method * @param {string} typoTolerance new value of typoTolerance ("true", "false", "min" or "strict") * @return {SearchParameters} */ setTypoTolerance: function setTypoTolerance(typoTolerance) { if (this.typoTolerance === typoTolerance) return this; return this.setQueryParameters({ typoTolerance: typoTolerance }); }, /** * Add a numeric filter for a given attribute * When value is an array, they are combined with OR * When value is a single value, it will combined with AND * @method * @param {string} attribute attribute to set the filter on * @param {string} operator operator of the filter (possible values: =, >, >=, <, <=, !=) * @param {number | number[]} value value of the filter * @return {SearchParameters} * @example * // for price = 50 or 40 * searchparameter.addNumericRefinement('price', '=', [50, 40]); * @example * // for size = 38 and 40 * searchparameter.addNumericRefinement('size', '=', 38); * searchparameter.addNumericRefinement('size', '=', 40); */ addNumericRefinement: function(attribute, operator, v) { var value = valToNumber(v); if (this.isNumericRefined(attribute, operator, value)) return this; var mod = merge({}, this.numericRefinements); mod[attribute] = merge({}, mod[attribute]); if (mod[attribute][operator]) { // Array copy mod[attribute][operator] = mod[attribute][operator].slice(); // Add the element. Concat can't be used here because value can be an array. mod[attribute][operator].push(value); } else { mod[attribute][operator] = [value]; } return this.setQueryParameters({ numericRefinements: mod }); }, /** * Get the list of conjunctive refinements for a single facet * @param {string} facetName name of the attribute used for faceting * @return {string[]} list of refinements */ getConjunctiveRefinements: function(facetName) { if (!this.isConjunctiveFacet(facetName)) { throw new Error(facetName + ' is not defined in the facets attribute of the helper configuration'); } return this.facetsRefinements[facetName] || []; }, /** * Get the list of disjunctive refinements for a single facet * @param {string} facetName name of the attribute used for faceting * @return {string[]} list of refinements */ getDisjunctiveRefinements: function(facetName) { if (!this.isDisjunctiveFacet(facetName)) { throw new Error( facetName + ' is not defined in the disjunctiveFacets attribute of the helper configuration' ); } return this.disjunctiveFacetsRefinements[facetName] || []; }, /** * Get the list of hierarchical refinements for a single facet * @param {string} facetName name of the attribute used for faceting * @return {string[]} list of refinements */ getHierarchicalRefinement: function(facetName) { // we send an array but we currently do not support multiple // hierarchicalRefinements for a hierarchicalFacet return this.hierarchicalFacetsRefinements[facetName] || []; }, /** * Get the list of exclude refinements for a single facet * @param {string} facetName name of the attribute used for faceting * @return {string[]} list of refinements */ getExcludeRefinements: function(facetName) { if (!this.isConjunctiveFacet(facetName)) { throw new Error(facetName + ' is not defined in the facets attribute of the helper configuration'); } return this.facetsExcludes[facetName] || []; }, /** * Remove all the numeric filter for a given (attribute, operator) * @method * @param {string} attribute attribute to set the filter on * @param {string} [operator] operator of the filter (possible values: =, >, >=, <, <=, !=) * @param {number} [number] the value to be removed * @return {SearchParameters} */ removeNumericRefinement: function(attribute, operator, paramValue) { if (paramValue !== undefined) { var paramValueAsNumber = valToNumber(paramValue); if (!this.isNumericRefined(attribute, operator, paramValueAsNumber)) return this; return this.setQueryParameters({ numericRefinements: this._clearNumericRefinements(function(value, key) { return key === attribute && value.op === operator && isEqual(value.val, paramValueAsNumber); }) }); } else if (operator !== undefined) { if (!this.isNumericRefined(attribute, operator)) return this; return this.setQueryParameters({ numericRefinements: this._clearNumericRefinements(function(value, key) { return key === attribute && value.op === operator; }) }); } if (!this.isNumericRefined(attribute)) return this; return this.setQueryParameters({ numericRefinements: this._clearNumericRefinements(function(value, key) { return key === attribute; }) }); }, /** * Get the list of numeric refinements for a single facet * @param {string} facetName name of the attribute used for faceting * @return {SearchParameters.OperatorList[]} list of refinements */ getNumericRefinements: function(facetName) { return this.numericRefinements[facetName] || {}; }, /** * Return the current refinement for the (attribute, operator) * @param {string} attribute of the record * @param {string} operator applied * @return {number} value of the refinement */ getNumericRefinement: function(attribute, operator) { return this.numericRefinements[attribute] && this.numericRefinements[attribute][operator]; }, /** * Clear numeric filters. * @method * @private * @param {string|SearchParameters.clearCallback} [attribute] optional string or function * - If not given, means to clear all the filters. * - If `string`, means to clear all refinements for the `attribute` named filter. * - If `function`, means to clear all the refinements that return truthy values. * @return {Object.<string, OperatorList>} */ _clearNumericRefinements: function _clearNumericRefinements(attribute) { if (isUndefined(attribute)) { return {}; } else if (isString(attribute)) { return omit(this.numericRefinements, attribute); } else if (isFunction(attribute)) { return reduce(this.numericRefinements, function(memo, operators, key) { var operatorList = {}; forEach(operators, function(values, operator) { var outValues = []; forEach(values, function(value) { var predicateResult = attribute({val: value, op: operator}, key, 'numeric'); if (!predicateResult) outValues.push(value); }); if (!isEmpty(outValues)) operatorList[operator] = outValues; }); if (!isEmpty(operatorList)) memo[key] = operatorList; return memo; }, {}); } }, /** * Add a facet to the facets attribute of the helper configuration, if it * isn't already present. * @method * @param {string} facet facet name to add * @return {SearchParameters} */ addFacet: function addFacet(facet) { if (this.isConjunctiveFacet(facet)) { return this; } return this.setQueryParameters({ facets: this.facets.concat([facet]) }); }, /** * Add a disjunctive facet to the disjunctiveFacets attribute of the helper * configuration, if it isn't already present. * @method * @param {string} facet disjunctive facet name to add * @return {SearchParameters} */ addDisjunctiveFacet: function addDisjunctiveFacet(facet) { if (this.isDisjunctiveFacet(facet)) { return this; } return this.setQueryParameters({ disjunctiveFacets: this.disjunctiveFacets.concat([facet]) }); }, /** * Add a hierarchical facet to the hierarchicalFacets attribute of the helper * configuration. * @method * @param {object} hierarchicalFacet hierarchical facet to add * @return {SearchParameters} * @throws will throw an error if a hierarchical facet with the same name was already declared */ addHierarchicalFacet: function addHierarchicalFacet(hierarchicalFacet) { if (this.isHierarchicalFacet(hierarchicalFacet.name)) { throw new Error( 'Cannot declare two hierarchical facets with the same name: `' + hierarchicalFacet.name + '`'); } return this.setQueryParameters({ hierarchicalFacets: this.hierarchicalFacets.concat([hierarchicalFacet]) }); }, /** * Add a refinement on a "normal" facet * @method * @param {string} facet attribute to apply the faceting on * @param {string} value value of the attribute (will be converted to string) * @return {SearchParameters} */ addFacetRefinement: function addFacetRefinement(facet, value) { if (!this.isConjunctiveFacet(facet)) { throw new Error(facet + ' is not defined in the facets attribute of the helper configuration'); } if (RefinementList.isRefined(this.facetsRefinements, facet, value)) return this; return this.setQueryParameters({ facetsRefinements: RefinementList.addRefinement(this.facetsRefinements, facet, value) }); }, /** * Exclude a value from a "normal" facet * @method * @param {string} facet attribute to apply the exclusion on * @param {string} value value of the attribute (will be converted to string) * @return {SearchParameters} */ addExcludeRefinement: function addExcludeRefinement(facet, value) { if (!this.isConjunctiveFacet(facet)) { throw new Error(facet + ' is not defined in the facets attribute of the helper configuration'); } if (RefinementList.isRefined(this.facetsExcludes, facet, value)) return this; return this.setQueryParameters({ facetsExcludes: RefinementList.addRefinement(this.facetsExcludes, facet, value) }); }, /** * Adds a refinement on a disjunctive facet. * @method * @param {string} facet attribute to apply the faceting on * @param {string} value value of the attribute (will be converted to string) * @return {SearchParameters} */ addDisjunctiveFacetRefinement: function addDisjunctiveFacetRefinement(facet, value) { if (!this.isDisjunctiveFacet(facet)) { throw new Error( facet + ' is not defined in the disjunctiveFacets attribute of the helper configuration'); } if (RefinementList.isRefined(this.disjunctiveFacetsRefinements, facet, value)) return this; return this.setQueryParameters({ disjunctiveFacetsRefinements: RefinementList.addRefinement( this.disjunctiveFacetsRefinements, facet, value) }); }, /** * addTagRefinement adds a tag to the list used to filter the results * @param {string} tag tag to be added * @return {SearchParameters} */ addTagRefinement: function addTagRefinement(tag) { if (this.isTagRefined(tag)) return this; var modification = { tagRefinements: this.tagRefinements.concat(tag) }; return this.setQueryParameters(modification); }, /** * Remove a facet from the facets attribute of the helper configuration, if it * is present. * @method * @param {string} facet facet name to remove * @return {SearchParameters} */ removeFacet: function removeFacet(facet) { if (!this.isConjunctiveFacet(facet)) { return this; } return this.clearRefinements(facet).setQueryParameters({ facets: filter(this.facets, function(f) { return f !== facet; }) }); }, /** * Remove a disjunctive facet from the disjunctiveFacets attribute of the * helper configuration, if it is present. * @method * @param {string} facet disjunctive facet name to remove * @return {SearchParameters} */ removeDisjunctiveFacet: function removeDisjunctiveFacet(facet) { if (!this.isDisjunctiveFacet(facet)) { return this; } return this.clearRefinements(facet).setQueryParameters({ disjunctiveFacets: filter(this.disjunctiveFacets, function(f) { return f !== facet; }) }); }, /** * Remove a hierarchical facet from the hierarchicalFacets attribute of the * helper configuration, if it is present. * @method * @param {string} facet hierarchical facet name to remove * @return {SearchParameters} */ removeHierarchicalFacet: function removeHierarchicalFacet(facet) { if (!this.isHierarchicalFacet(facet)) { return this; } return this.clearRefinements(facet).setQueryParameters({ hierarchicalFacets: filter(this.hierarchicalFacets, function(f) { return f.name !== facet; }) }); }, /** * Remove a refinement set on facet. If a value is provided, it will clear the * refinement for the given value, otherwise it will clear all the refinement * values for the faceted attribute. * @method * @param {string} facet name of the attribute used for faceting * @param {string} [value] value used to filter * @return {SearchParameters} */ removeFacetRefinement: function removeFacetRefinement(facet, value) { if (!this.isConjunctiveFacet(facet)) { throw new Error(facet + ' is not defined in the facets attribute of the helper configuration'); } if (!RefinementList.isRefined(this.facetsRefinements, facet, value)) return this; return this.setQueryParameters({ facetsRefinements: RefinementList.removeRefinement(this.facetsRefinements, facet, value) }); }, /** * Remove a negative refinement on a facet * @method * @param {string} facet name of the attribute used for faceting * @param {string} value value used to filter * @return {SearchParameters} */ removeExcludeRefinement: function removeExcludeRefinement(facet, value) { if (!this.isConjunctiveFacet(facet)) { throw new Error(facet + ' is not defined in the facets attribute of the helper configuration'); } if (!RefinementList.isRefined(this.facetsExcludes, facet, value)) return this; return this.setQueryParameters({ facetsExcludes: RefinementList.removeRefinement(this.facetsExcludes, facet, value) }); }, /** * Remove a refinement on a disjunctive facet * @method * @param {string} facet name of the attribute used for faceting * @param {string} value value used to filter * @return {SearchParameters} */ removeDisjunctiveFacetRefinement: function removeDisjunctiveFacetRefinement(facet, value) { if (!this.isDisjunctiveFacet(facet)) { throw new Error( facet + ' is not defined in the disjunctiveFacets attribute of the helper configuration'); } if (!RefinementList.isRefined(this.disjunctiveFacetsRefinements, facet, value)) return this; return this.setQueryParameters({ disjunctiveFacetsRefinements: RefinementList.removeRefinement( this.disjunctiveFacetsRefinements, facet, value) }); }, /** * Remove a tag from the list of tag refinements * @method * @param {string} tag the tag to remove * @return {SearchParameters} */ removeTagRefinement: function removeTagRefinement(tag) { if (!this.isTagRefined(tag)) return this; var modification = { tagRefinements: filter(this.tagRefinements, function(t) { return t !== tag; }) }; return this.setQueryParameters(modification); }, /** * Generic toggle refinement method to use with facet, disjunctive facets * and hierarchical facets * @param {string} facet the facet to refine * @param {string} value the associated value * @return {SearchParameters} * @throws will throw an error if the facet is not declared in the settings of the helper * @deprecated since version 2.19.0, see {@link SearchParameters#toggleFacetRefinement} */ toggleRefinement: function toggleRefinement(facet, value) { return this.toggleFacetRefinement(facet, value); }, /** * Generic toggle refinement method to use with facet, disjunctive facets * and hierarchical facets * @param {string} facet the facet to refine * @param {string} value the associated value * @return {SearchParameters} * @throws will throw an error if the facet is not declared in the settings of the helper */ toggleFacetRefinement: function toggleFacetRefinement(facet, value) { if (this.isHierarchicalFacet(facet)) { return this.toggleHierarchicalFacetRefinement(facet, value); } else if (this.isConjunctiveFacet(facet)) { return this.toggleConjunctiveFacetRefinement(facet, value); } else if (this.isDisjunctiveFacet(facet)) { return this.toggleDisjunctiveFacetRefinement(facet, value); } throw new Error('Cannot refine the undeclared facet ' + facet + '; it should be added to the helper options facets, disjunctiveFacets or hierarchicalFacets'); }, /** * Switch the refinement applied over a facet/value * @method * @param {string} facet name of the attribute used for faceting * @param {value} value value used for filtering * @return {SearchParameters} */ toggleConjunctiveFacetRefinement: function toggleConjunctiveFacetRefinement(facet, value) { if (!this.isConjunctiveFacet(facet)) { throw new Error(facet + ' is not defined in the facets attribute of the helper configuration'); } return this.setQueryParameters({ facetsRefinements: RefinementList.toggleRefinement(this.facetsRefinements, facet, value) }); }, /** * Switch the refinement applied over a facet/value * @method * @param {string} facet name of the attribute used for faceting * @param {value} value value used for filtering * @return {SearchParameters} */ toggleExcludeFacetRefinement: function toggleExcludeFacetRefinement(facet, value) { if (!this.isConjunctiveFacet(facet)) { throw new Error(facet + ' is not defined in the facets attribute of the helper configuration'); } return this.setQueryParameters({ facetsExcludes: RefinementList.toggleRefinement(this.facetsExcludes, facet, value) }); }, /** * Switch the refinement applied over a facet/value * @method * @param {string} facet name of the attribute used for faceting * @param {value} value value used for filtering * @return {SearchParameters} */ toggleDisjunctiveFacetRefinement: function toggleDisjunctiveFacetRefinement(facet, value) { if (!this.isDisjunctiveFacet(facet)) { throw new Error( facet + ' is not defined in the disjunctiveFacets attribute of the helper configuration'); } return this.setQueryParameters({ disjunctiveFacetsRefinements: RefinementList.toggleRefinement( this.disjunctiveFacetsRefinements, facet, value) }); }, /** * Switch the refinement applied over a facet/value * @method * @param {string} facet name of the attribute used for faceting * @param {value} value value used for filtering * @return {SearchParameters} */ toggleHierarchicalFacetRefinement: function toggleHierarchicalFacetRefinement(facet, value) { if (!this.isHierarchicalFacet(facet)) { throw new Error( facet + ' is not defined in the hierarchicalFacets attribute of the helper configuration'); } var separator = this._getHierarchicalFacetSeparator(this.getHierarchicalFacetByName(facet)); var mod = {}; var upOneOrMultipleLevel = this.hierarchicalFacetsRefinements[facet] !== undefined && this.hierarchicalFacetsRefinements[facet].length > 0 && ( // remove current refinement: // refinement was 'beer > IPA', call is toggleRefine('beer > IPA'), refinement should be `beer` this.hierarchicalFacetsRefinements[facet][0] === value || // remove a parent refinement of the current refinement: // - refinement was 'beer > IPA > Flying dog' // - call is toggleRefine('beer > IPA') // - refinement should be `beer` this.hierarchicalFacetsRefinements[facet][0].indexOf(value + separator) === 0 ); if (upOneOrMultipleLevel) { if (value.indexOf(separator) === -1) { // go back to root level mod[facet] = []; } else { mod[facet] = [value.slice(0, value.lastIndexOf(separator))]; } } else { mod[facet] = [value]; } return this.setQueryParameters({ hierarchicalFacetsRefinements: defaults({}, mod, this.hierarchicalFacetsRefinements) }); }, /** * Adds a refinement on a hierarchical facet. * @param {string} facet the facet name * @param {string} path the hierarchical facet path * @return {SearchParameter} the new state * @throws Error if the facet is not defined or if the facet is refined */ addHierarchicalFacetRefinement: function(facet, path) { if (this.isHierarchicalFacetRefined(facet)) { throw new Error(facet + ' is already refined.'); } var mod = {}; mod[facet] = [path]; return this.setQueryParameters({ hierarchicalFacetsRefinements: defaults({}, mod, this.hierarchicalFacetsRefinements) }); }, /** * Removes the refinement set on a hierarchical facet. * @param {string} facet the facet name * @return {SearchParameter} the new state * @throws Error if the facet is not defined or if the facet is not refined */ removeHierarchicalFacetRefinement: function(facet) { if (!this.isHierarchicalFacetRefined(facet)) { throw new Error(facet + ' is not refined.'); } var mod = {}; mod[facet] = []; return this.setQueryParameters({ hierarchicalFacetsRefinements: defaults({}, mod, this.hierarchicalFacetsRefinements) }); }, /** * Switch the tag refinement * @method * @param {string} tag the tag to remove or add * @return {SearchParameters} */ toggleTagRefinement: function toggleTagRefinement(tag) { if (this.isTagRefined(tag)) { return this.removeTagRefinement(tag); } return this.addTagRefinement(tag); }, /** * Test if the facet name is from one of the disjunctive facets * @method * @param {string} facet facet name to test * @return {boolean} */ isDisjunctiveFacet: function(facet) { return indexOf(this.disjunctiveFacets, facet) > -1; }, /** * Test if the facet name is from one of the hierarchical facets * @method * @param {string} facetName facet name to test * @return {boolean} */ isHierarchicalFacet: function(facetName) { return this.getHierarchicalFacetByName(facetName) !== undefined; }, /** * Test if the facet name is from one of the conjunctive/normal facets * @method * @param {string} facet facet name to test * @return {boolean} */ isConjunctiveFacet: function(facet) { return indexOf(this.facets, facet) > -1; }, /** * Returns true if the facet is refined, either for a specific value or in * general. * @method * @param {string} facet name of the attribute for used for faceting * @param {string} value, optional value. If passed will test that this value * is filtering the given facet. * @return {boolean} returns true if refined */ isFacetRefined: function isFacetRefined(facet, value) { if (!this.isConjunctiveFacet(facet)) { throw new Error(facet + ' is not defined in the facets attribute of the helper configuration'); } return RefinementList.isRefined(this.facetsRefinements, facet, value); }, /** * Returns true if the facet contains exclusions or if a specific value is * excluded. * * @method * @param {string} facet name of the attribute for used for faceting * @param {string} [value] optional value. If passed will test that this value * is filtering the given facet. * @return {boolean} returns true if refined */ isExcludeRefined: function isExcludeRefined(facet, value) { if (!this.isConjunctiveFacet(facet)) { throw new Error(facet + ' is not defined in the facets attribute of the helper configuration'); } return RefinementList.isRefined(this.facetsExcludes, facet, value); }, /** * Returns true if the facet contains a refinement, or if a value passed is a * refinement for the facet. * @method * @param {string} facet name of the attribute for used for faceting * @param {string} value optional, will test if the value is used for refinement * if there is one, otherwise will test if the facet contains any refinement * @return {boolean} */ isDisjunctiveFacetRefined: function isDisjunctiveFacetRefined(facet, value) { if (!this.isDisjunctiveFacet(facet)) { throw new Error( facet + ' is not defined in the disjunctiveFacets attribute of the helper configuration'); } return RefinementList.isRefined(this.disjunctiveFacetsRefinements, facet, value); }, /** * Returns true if the facet contains a refinement, or if a value passed is a * refinement for the facet. * @method * @param {string} facet name of the attribute for used for faceting * @param {string} value optional, will test if the value is used for refinement * if there is one, otherwise will test if the facet contains any refinement * @return {boolean} */ isHierarchicalFacetRefined: function isHierarchicalFacetRefined(facet, value) { if (!this.isHierarchicalFacet(facet)) { throw new Error( facet + ' is not defined in the hierarchicalFacets attribute of the helper configuration'); } var refinements = this.getHierarchicalRefinement(facet); if (!value) { return refinements.length > 0; } return indexOf(refinements, value) !== -1; }, /** * Test if the triple (attribute, operator, value) is already refined. * If only the attribute and the operator are provided, it tests if the * contains any refinement value. * @method * @param {string} attribute attribute for which the refinement is applied * @param {string} [operator] operator of the refinement * @param {string} [value] value of the refinement * @return {boolean} true if it is refined */ isNumericRefined: function isNumericRefined(attribute, operator, value) { if (isUndefined(value) && isUndefined(operator)) { return !!this.numericRefinements[attribute]; } var isOperatorDefined = this.numericRefinements[attribute] && !isUndefined(this.numericRefinements[attribute][operator]); if (isUndefined(value) || !isOperatorDefined) { return isOperatorDefined; } var parsedValue = valToNumber(value); var isAttributeValueDefined = !isUndefined( findArray(this.numericRefinements[attribute][operator], parsedValue) ); return isOperatorDefined && isAttributeValueDefined; }, /** * Returns true if the tag refined, false otherwise * @method * @param {string} tag the tag to check * @return {boolean} */ isTagRefined: function isTagRefined(tag) { return indexOf(this.tagRefinements, tag) !== -1; }, /** * Returns the list of all disjunctive facets refined * @method * @param {string} facet name of the attribute used for faceting * @param {value} value value used for filtering * @return {string[]} */ getRefinedDisjunctiveFacets: function getRefinedDisjunctiveFacets() { // attributes used for numeric filter can also be disjunctive var disjunctiveNumericRefinedFacets = intersection( keys(this.numericRefinements), this.disjunctiveFacets ); return keys(this.disjunctiveFacetsRefinements) .concat(disjunctiveNumericRefinedFacets) .concat(this.getRefinedHierarchicalFacets()); }, /** * Returns the list of all disjunctive facets refined * @method * @param {string} facet name of the attribute used for faceting * @param {value} value value used for filtering * @return {string[]} */ getRefinedHierarchicalFacets: function getRefinedHierarchicalFacets() { return intersection( // enforce the order between the two arrays, // so that refinement name index === hierarchical facet index map(this.hierarchicalFacets, 'name'), keys(this.hierarchicalFacetsRefinements) ); }, /** * Returned the list of all disjunctive facets not refined * @method * @return {string[]} */ getUnrefinedDisjunctiveFacets: function() { var refinedFacets = this.getRefinedDisjunctiveFacets(); return filter(this.disjunctiveFacets, function(f) { return indexOf(refinedFacets, f) === -1; }); }, managedParameters: [ 'index', 'facets', 'disjunctiveFacets', 'facetsRefinements', 'facetsExcludes', 'disjunctiveFacetsRefinements', 'numericRefinements', 'tagRefinements', 'hierarchicalFacets', 'hierarchicalFacetsRefinements' ], getQueryParams: function getQueryParams() { var managedParameters = this.managedParameters; var queryParams = {}; forOwn(this, function(paramValue, paramName) { if (indexOf(managedParameters, paramName) === -1 && paramValue !== undefined) { queryParams[paramName] = paramValue; } }); return queryParams; }, /** * Let the user retrieve any parameter value from the SearchParameters * @param {string} paramName name of the parameter * @return {any} the value of the parameter */ getQueryParameter: function getQueryParameter(paramName) { if (!this.hasOwnProperty(paramName)) { throw new Error( "Parameter '" + paramName + "' is not an attribute of SearchParameters " + '(http://algolia.github.io/algoliasearch-helper-js/docs/SearchParameters.html)'); } return this[paramName]; }, /** * Let the user set a specific value for a given parameter. Will return the * same instance if the parameter is invalid or if the value is the same as the * previous one. * @method * @param {string} parameter the parameter name * @param {any} value the value to be set, must be compliant with the definition * of the attribute on the object * @return {SearchParameters} the updated state */ setQueryParameter: function setParameter(parameter, value) { if (this[parameter] === value) return this; var modification = {}; modification[parameter] = value; return this.setQueryParameters(modification); }, /** * Let the user set any of the parameters with a plain object. * @method * @param {object} params all the keys and the values to be updated * @return {SearchParameters} a new updated instance */ setQueryParameters: function setQueryParameters(params) { if (!params) return this; var error = SearchParameters.validate(this, params); if (error) { throw error; } var parsedParams = SearchParameters._parseNumbers(params); return this.mutateMe(function mergeWith(newInstance) { var ks = keys(params); forEach(ks, function(k) { newInstance[k] = parsedParams[k]; }); return newInstance; }); }, /** * Returns an object with only the selected attributes. * @param {string[]} filters filters to retrieve only a subset of the state. It * accepts strings that can be either attributes of the SearchParameters (e.g. hitsPerPage) * or attributes of the index with the notation 'attribute:nameOfMyAttribute' * @return {object} */ filter: function(filters) { return filterState(this, filters); }, /** * Helper function to make it easier to build new instances from a mutating * function * @private * @param {function} fn newMutableState -> previousState -> () function that will * change the value of the newMutable to the desired state * @return {SearchParameters} a new instance with the specified modifications applied */ mutateMe: function mutateMe(fn) { var newState = new this.constructor(this); fn(newState, this); return newState; }, /** * Helper function to get the hierarchicalFacet separator or the default one (`>`) * @param {object} hierarchicalFacet * @return {string} returns the hierarchicalFacet.separator or `>` as default */ _getHierarchicalFacetSortBy: function(hierarchicalFacet) { return hierarchicalFacet.sortBy || ['isRefined:desc', 'name:asc']; }, /** * Helper function to get the hierarchicalFacet separator or the default one (`>`) * @private * @param {object} hierarchicalFacet * @return {string} returns the hierarchicalFacet.separator or `>` as default */ _getHierarchicalFacetSeparator: function(hierarchicalFacet) { return hierarchicalFacet.separator || ' > '; }, /** * Helper function to get the hierarchicalFacet prefix path or null * @private * @param {object} hierarchicalFacet * @return {string} returns the hierarchicalFacet.rootPath or null as default */ _getHierarchicalRootPath: function(hierarchicalFacet) { return hierarchicalFacet.rootPath || null; }, /** * Helper function to check if we show the parent level of the hierarchicalFacet * @private * @param {object} hierarchicalFacet * @return {string} returns the hierarchicalFacet.showParentLevel or true as default */ _getHierarchicalShowParentLevel: function(hierarchicalFacet) { if (typeof hierarchicalFacet.showParentLevel === 'boolean') { return hierarchicalFacet.showParentLevel; } return true; }, /** * Helper function to get the hierarchicalFacet by it's name * @param {string} hierarchicalFacetName * @return {object} a hierarchicalFacet */ getHierarchicalFacetByName: function(hierarchicalFacetName) { return find( this.hierarchicalFacets, {name: hierarchicalFacetName} ); }, /** * Get the current breadcrumb for a hierarchical facet, as an array * @param {string} facetName Hierarchical facet name * @return {array.<string>} the path as an array of string */ getHierarchicalFacetBreadcrumb: function(facetName) { if (!this.isHierarchicalFacet(facetName)) { throw new Error( 'Cannot get the breadcrumb of an unknown hierarchical facet: `' + facetName + '`'); } var refinement = this.getHierarchicalRefinement(facetName)[0]; if (!refinement) return []; var separator = this._getHierarchicalFacetSeparator( this.getHierarchicalFacetByName(facetName) ); var path = refinement.split(separator); return map(path, trim); } }; /** * Callback used for clearRefinement method * @callback SearchParameters.clearCallback * @param {OperatorList|FacetList} value the value of the filter * @param {string} key the current attribute name * @param {string} type `numeric`, `disjunctiveFacet`, `conjunctiveFacet`, `hierarchicalFacet` or `exclude` * depending on the type of facet * @return {boolean} `true` if the element should be removed. `false` otherwise. */ module.exports = SearchParameters; /***/ }), /* 101 */ /***/ (function(module, exports, __webpack_require__) { var arrayFilter = __webpack_require__(87), baseFilter = __webpack_require__(256), baseIteratee = __webpack_require__(13), isArray = __webpack_require__(1); /** * Iterates over elements of `collection`, returning an array of all elements * `predicate` returns truthy for. The predicate is invoked with three * arguments: (value, index|key, collection). * * **Note:** Unlike `_.remove`, this method returns a new array. * * @static * @memberOf _ * @since 0.1.0 * @category Collection * @param {Array|Object} collection The collection to iterate over. * @param {Function} [predicate=_.identity] The function invoked per iteration. * @returns {Array} Returns the new filtered array. * @see _.reject * @example * * var users = [ * { 'user': 'barney', 'age': 36, 'active': true }, * { 'user': 'fred', 'age': 40, 'active': false } * ]; * * _.filter(users, function(o) { return !o.active; }); * // => objects for ['fred'] * * // The `_.matches` iteratee shorthand. * _.filter(users, { 'age': 36, 'active': true }); * // => objects for ['barney'] * * // The `_.matchesProperty` iteratee shorthand. * _.filter(users, ['active', false]); * // => objects for ['fred'] * * // The `_.property` iteratee shorthand. * _.filter(users, 'active'); * // => objects for ['barney'] */ function filter(collection, predicate) { var func = isArray(collection) ? arrayFilter : baseFilter; return func(collection, baseIteratee(predicate, 3)); } module.exports = filter; /***/ }), /* 102 */ /***/ (function(module, exports, __webpack_require__) { var apply = __webpack_require__(68), assignInWith = __webpack_require__(275), baseRest = __webpack_require__(25), customDefaultsAssignIn = __webpack_require__(276); /** * Assigns own and inherited enumerable string keyed properties of source * objects to the destination object for all destination properties that * resolve to `undefined`. Source objects are applied from left to right. * Once a property is set, additional values of the same property are ignored. * * **Note:** This method mutates `object`. * * @static * @since 0.1.0 * @memberOf _ * @category Object * @param {Object} object The destination object. * @param {...Object} [sources] The source objects. * @returns {Object} Returns `object`. * @see _.defaultsDeep * @example * * _.defaults({ 'a': 1 }, { 'b': 2 }, { 'a': 3 }); * // => { 'a': 1, 'b': 2 } */ var defaults = baseRest(function(args) { args.push(undefined, customDefaultsAssignIn); return apply(assignInWith, undefined, args); }); module.exports = defaults; /***/ }), /* 103 */ /***/ (function(module, exports, __webpack_require__) { var baseMerge = __webpack_require__(277), createAssigner = __webpack_require__(188); /** * This method is like `_.assign` except that it recursively merges own and * inherited enumerable string keyed properties of source objects into the * destination object. Source properties that resolve to `undefined` are * skipped if a destination value exists. Array and plain object properties * are merged recursively. Other objects and value types are overridden by * assignment. Source objects are applied from left to right. Subsequent * sources overwrite property assignments of previous sources. * * **Note:** This method mutates `object`. * * @static * @memberOf _ * @since 0.5.0 * @category Object * @param {Object} object The destination object. * @param {...Object} [sources] The source objects. * @returns {Object} Returns `object`. * @example * * var object = { * 'a': [{ 'b': 2 }, { 'd': 4 }] * }; * * var other = { * 'a': [{ 'c': 3 }, { 'e': 5 }] * }; * * _.merge(object, other); * // => { 'a': [{ 'b': 2, 'c': 3 }, { 'd': 4, 'e': 5 }] } */ var merge = createAssigner(function(object, source, srcIndex) { baseMerge(object, source, srcIndex); }); module.exports = merge; /***/ }), /* 104 */ /***/ (function(module, exports, __webpack_require__) { var baseOrderBy = __webpack_require__(289), isArray = __webpack_require__(1); /** * This method is like `_.sortBy` except that it allows specifying the sort * orders of the iteratees to sort by. If `orders` is unspecified, all values * are sorted in ascending order. Otherwise, specify an order of "desc" for * descending or "asc" for ascending sort order of corresponding values. * * @static * @memberOf _ * @since 4.0.0 * @category Collection * @param {Array|Object} collection The collection to iterate over. * @param {Array[]|Function[]|Object[]|string[]} [iteratees=[_.identity]] * The iteratees to sort by. * @param {string[]} [orders] The sort orders of `iteratees`. * @param- {Object} [guard] Enables use as an iteratee for methods like `_.reduce`. * @returns {Array} Returns the new sorted array. * @example * * var users = [ * { 'user': 'fred', 'age': 48 }, * { 'user': 'barney', 'age': 34 }, * { 'user': 'fred', 'age': 40 }, * { 'user': 'barney', 'age': 36 } * ]; * * // Sort by `user` in ascending order and by `age` in descending order. * _.orderBy(users, ['user', 'age'], ['asc', 'desc']); * // => objects for [['barney', 36], ['barney', 34], ['fred', 48], ['fred', 40]] */ function orderBy(collection, iteratees, orders, guard) { if (collection == null) { return []; } if (!isArray(iteratees)) { iteratees = iteratees == null ? [] : [iteratees]; } orders = guard ? undefined : orders; if (!isArray(orders)) { orders = orders == null ? [] : [orders]; } return baseOrderBy(collection, iteratees, orders); } module.exports = orderBy; /***/ }), /* 105 */ /***/ (function(module, exports, __webpack_require__) { var baseSetData = __webpack_require__(191), createBind = __webpack_require__(294), createCurry = __webpack_require__(295), createHybrid = __webpack_require__(193), createPartial = __webpack_require__(307), getData = __webpack_require__(197), mergeData = __webpack_require__(308), setData = __webpack_require__(199), setWrapToString = __webpack_require__(200), toInteger = __webpack_require__(51); /** Error message constants. */ var FUNC_ERROR_TEXT = 'Expected a function'; /** Used to compose bitmasks for function metadata. */ var WRAP_BIND_FLAG = 1, WRAP_BIND_KEY_FLAG = 2, WRAP_CURRY_FLAG = 8, WRAP_CURRY_RIGHT_FLAG = 16, WRAP_PARTIAL_FLAG = 32, WRAP_PARTIAL_RIGHT_FLAG = 64; /* Built-in method references for those with the same name as other `lodash` methods. */ var nativeMax = Math.max; /** * Creates a function that either curries or invokes `func` with optional * `this` binding and partially applied arguments. * * @private * @param {Function|string} func The function or method name to wrap. * @param {number} bitmask The bitmask flags. * 1 - `_.bind` * 2 - `_.bindKey` * 4 - `_.curry` or `_.curryRight` of a bound function * 8 - `_.curry` * 16 - `_.curryRight` * 32 - `_.partial` * 64 - `_.partialRight` * 128 - `_.rearg` * 256 - `_.ary` * 512 - `_.flip` * @param {*} [thisArg] The `this` binding of `func`. * @param {Array} [partials] The arguments to be partially applied. * @param {Array} [holders] The `partials` placeholder indexes. * @param {Array} [argPos] The argument positions of the new function. * @param {number} [ary] The arity cap of `func`. * @param {number} [arity] The arity of `func`. * @returns {Function} Returns the new wrapped function. */ function createWrap(func, bitmask, thisArg, partials, holders, argPos, ary, arity) { var isBindKey = bitmask & WRAP_BIND_KEY_FLAG; if (!isBindKey && typeof func != 'function') { throw new TypeError(FUNC_ERROR_TEXT); } var length = partials ? partials.length : 0; if (!length) { bitmask &= ~(WRAP_PARTIAL_FLAG | WRAP_PARTIAL_RIGHT_FLAG); partials = holders = undefined; } ary = ary === undefined ? ary : nativeMax(toInteger(ary), 0); arity = arity === undefined ? arity : toInteger(arity); length -= holders ? holders.length : 0; if (bitmask & WRAP_PARTIAL_RIGHT_FLAG) { var partialsRight = partials, holdersRight = holders; partials = holders = undefined; } var data = isBindKey ? undefined : getData(func); var newData = [ func, bitmask, thisArg, partials, holders, partialsRight, holdersRight, argPos, ary, arity ]; if (data) { mergeData(newData, data); } func = newData[0]; bitmask = newData[1]; thisArg = newData[2]; partials = newData[3]; holders = newData[4]; arity = newData[9] = newData[9] === undefined ? (isBindKey ? 0 : func.length) : nativeMax(newData[9] - length, 0); if (!arity && bitmask & (WRAP_CURRY_FLAG | WRAP_CURRY_RIGHT_FLAG)) { bitmask &= ~(WRAP_CURRY_FLAG | WRAP_CURRY_RIGHT_FLAG); } if (!bitmask || bitmask == WRAP_BIND_FLAG) { var result = createBind(func, bitmask, thisArg); } else if (bitmask == WRAP_CURRY_FLAG || bitmask == WRAP_CURRY_RIGHT_FLAG) { result = createCurry(func, bitmask, arity); } else if ((bitmask == WRAP_PARTIAL_FLAG || bitmask == (WRAP_BIND_FLAG | WRAP_PARTIAL_FLAG)) && !holders.length) { result = createPartial(func, bitmask, thisArg, partials); } else { result = createHybrid.apply(undefined, newData); } var setter = data ? baseSetData : setData; return setWrapToString(setter(result, newData), func, bitmask); } module.exports = createWrap; /***/ }), /* 106 */ /***/ (function(module, exports, __webpack_require__) { var baseCreate = __webpack_require__(70), baseLodash = __webpack_require__(107); /** Used as references for the maximum length and index of an array. */ var MAX_ARRAY_LENGTH = 4294967295; /** * Creates a lazy wrapper object which wraps `value` to enable lazy evaluation. * * @private * @constructor * @param {*} value The value to wrap. */ function LazyWrapper(value) { this.__wrapped__ = value; this.__actions__ = []; this.__dir__ = 1; this.__filtered__ = false; this.__iteratees__ = []; this.__takeCount__ = MAX_ARRAY_LENGTH; this.__views__ = []; } // Ensure `LazyWrapper` is an instance of `baseLodash`. LazyWrapper.prototype = baseCreate(baseLodash.prototype); LazyWrapper.prototype.constructor = LazyWrapper; module.exports = LazyWrapper; /***/ }), /* 107 */ /***/ (function(module, exports) { /** * The function whose prototype chain sequence wrappers inherit from. * * @private */ function baseLodash() { // No operation performed. } module.exports = baseLodash; /***/ }), /* 108 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; var has = Object.prototype.hasOwnProperty; var hexTable = (function () { var array = []; for (var i = 0; i < 256; ++i) { array.push('%' + ((i < 16 ? '0' : '') + i.toString(16)).toUpperCase()); } return array; }()); var compactQueue = function compactQueue(queue) { var obj; while (queue.length) { var item = queue.pop(); obj = item.obj[item.prop]; if (Array.isArray(obj)) { var compacted = []; for (var j = 0; j < obj.length; ++j) { if (typeof obj[j] !== 'undefined') { compacted.push(obj[j]); } } item.obj[item.prop] = compacted; } } return obj; }; exports.arrayToObject = function arrayToObject(source, options) { var obj = options && options.plainObjects ? Object.create(null) : {}; for (var i = 0; i < source.length; ++i) { if (typeof source[i] !== 'undefined') { obj[i] = source[i]; } } return obj; }; exports.merge = function merge(target, source, options) { if (!source) { return target; } if (typeof source !== 'object') { if (Array.isArray(target)) { target.push(source); } else if (typeof target === 'object') { if (options.plainObjects || options.allowPrototypes || !has.call(Object.prototype, source)) { target[source] = true; } } else { return [target, source]; } return target; } if (typeof target !== 'object') { return [target].concat(source); } var mergeTarget = target; if (Array.isArray(target) && !Array.isArray(source)) { mergeTarget = exports.arrayToObject(target, options); } if (Array.isArray(target) && Array.isArray(source)) { source.forEach(function (item, i) { if (has.call(target, i)) { if (target[i] && typeof target[i] === 'object') { target[i] = exports.merge(target[i], item, options); } else { target.push(item); } } else { target[i] = item; } }); return target; } return Object.keys(source).reduce(function (acc, key) { var value = source[key]; if (has.call(acc, key)) { acc[key] = exports.merge(acc[key], value, options); } else { acc[key] = value; } return acc; }, mergeTarget); }; exports.assign = function assignSingleSource(target, source) { return Object.keys(source).reduce(function (acc, key) { acc[key] = source[key]; return acc; }, target); }; exports.decode = function (str) { try { return decodeURIComponent(str.replace(/\+/g, ' ')); } catch (e) { return str; } }; exports.encode = function encode(str) { // This code was originally written by Brian White (mscdex) for the io.js core querystring library. // It has been adapted here for stricter adherence to RFC 3986 if (str.length === 0) { return str; } var string = typeof str === 'string' ? str : String(str); var out = ''; for (var i = 0; i < string.length; ++i) { var c = string.charCodeAt(i); if ( c === 0x2D // - || c === 0x2E // . || c === 0x5F // _ || c === 0x7E // ~ || (c >= 0x30 && c <= 0x39) // 0-9 || (c >= 0x41 && c <= 0x5A) // a-z || (c >= 0x61 && c <= 0x7A) // A-Z ) { out += string.charAt(i); continue; } if (c < 0x80) { out = out + hexTable[c]; continue; } if (c < 0x800) { out = out + (hexTable[0xC0 | (c >> 6)] + hexTable[0x80 | (c & 0x3F)]); continue; } if (c < 0xD800 || c >= 0xE000) { out = out + (hexTable[0xE0 | (c >> 12)] + hexTable[0x80 | ((c >> 6) & 0x3F)] + hexTable[0x80 | (c & 0x3F)]); continue; } i += 1; c = 0x10000 + (((c & 0x3FF) << 10) | (string.charCodeAt(i) & 0x3FF)); out += hexTable[0xF0 | (c >> 18)] + hexTable[0x80 | ((c >> 12) & 0x3F)] + hexTable[0x80 | ((c >> 6) & 0x3F)] + hexTable[0x80 | (c & 0x3F)]; } return out; }; exports.compact = function compact(value) { var queue = [{ obj: { o: value }, prop: 'o' }]; var refs = []; for (var i = 0; i < queue.length; ++i) { var item = queue[i]; var obj = item.obj[item.prop]; var keys = Object.keys(obj); for (var j = 0; j < keys.length; ++j) { var key = keys[j]; var val = obj[key]; if (typeof val === 'object' && val !== null && refs.indexOf(val) === -1) { queue.push({ obj: obj, prop: key }); refs.push(val); } } } return compactQueue(queue); }; exports.isRegExp = function isRegExp(obj) { return Object.prototype.toString.call(obj) === '[object RegExp]'; }; exports.isBuffer = function isBuffer(obj) { if (obj === null || typeof obj === 'undefined') { return false; } return !!(obj.constructor && obj.constructor.isBuffer && obj.constructor.isBuffer(obj)); }; /***/ }), /* 109 */ /***/ (function(module, exports) { // shim for using process in browser var process = module.exports = {}; // cached from whatever global is present so that test runners that stub it // don't break things. But we need to wrap it in a try catch in case it is // wrapped in strict mode code which doesn't define any globals. It's inside a // function because try/catches deoptimize in certain engines. var cachedSetTimeout; var cachedClearTimeout; function defaultSetTimout() { throw new Error('setTimeout has not been defined'); } function defaultClearTimeout () { throw new Error('clearTimeout has not been defined'); } (function () { try { if (typeof setTimeout === 'function') { cachedSetTimeout = setTimeout; } else { cachedSetTimeout = defaultSetTimout; } } catch (e) { cachedSetTimeout = defaultSetTimout; } try { if (typeof clearTimeout === 'function') { cachedClearTimeout = clearTimeout; } else { cachedClearTimeout = defaultClearTimeout; } } catch (e) { cachedClearTimeout = defaultClearTimeout; } } ()) function runTimeout(fun) { if (cachedSetTimeout === setTimeout) { //normal enviroments in sane situations return setTimeout(fun, 0); } // if setTimeout wasn't available but was latter defined if ((cachedSetTimeout === defaultSetTimout || !cachedSetTimeout) && setTimeout) { cachedSetTimeout = setTimeout; return setTimeout(fun, 0); } try { // when when somebody has screwed with setTimeout but no I.E. maddness return cachedSetTimeout(fun, 0); } catch(e){ try { // When we are in I.E. but the script has been evaled so I.E. doesn't trust the global object when called normally return cachedSetTimeout.call(null, fun, 0); } catch(e){ // same as above but when it's a version of I.E. that must have the global object for 'this', hopfully our context correct otherwise it will throw a global error return cachedSetTimeout.call(this, fun, 0); } } } function runClearTimeout(marker) { if (cachedClearTimeout === clearTimeout) { //normal enviroments in sane situations return clearTimeout(marker); } // if clearTimeout wasn't available but was latter defined if ((cachedClearTimeout === defaultClearTimeout || !cachedClearTimeout) && clearTimeout) { cachedClearTimeout = clearTimeout; return clearTimeout(marker); } try { // when when somebody has screwed with setTimeout but no I.E. maddness return cachedClearTimeout(marker); } catch (e){ try { // When we are in I.E. but the script has been evaled so I.E. doesn't trust the global object when called normally return cachedClearTimeout.call(null, marker); } catch (e){ // same as above but when it's a version of I.E. that must have the global object for 'this', hopfully our context correct otherwise it will throw a global error. // Some versions of I.E. have different rules for clearTimeout vs setTimeout return cachedClearTimeout.call(this, marker); } } } var queue = []; var draining = false; var currentQueue; var queueIndex = -1; function cleanUpNextTick() { if (!draining || !currentQueue) { return; } draining = false; if (currentQueue.length) { queue = currentQueue.concat(queue); } else { queueIndex = -1; } if (queue.length) { drainQueue(); } } function drainQueue() { if (draining) { return; } var timeout = runTimeout(cleanUpNextTick); draining = true; var len = queue.length; while(len) { currentQueue = queue; queue = []; while (++queueIndex < len) { if (currentQueue) { currentQueue[queueIndex].run(); } } queueIndex = -1; len = queue.length; } currentQueue = null; draining = false; runClearTimeout(timeout); } process.nextTick = function (fun) { var args = new Array(arguments.length - 1); if (arguments.length > 1) { for (var i = 1; i < arguments.length; i++) { args[i - 1] = arguments[i]; } } queue.push(new Item(fun, args)); if (queue.length === 1 && !draining) { runTimeout(drainQueue); } }; // v8 likes predictible objects function Item(fun, array) { this.fun = fun; this.array = array; } Item.prototype.run = function () { this.fun.apply(null, this.array); }; process.title = 'browser'; process.browser = true; process.env = {}; process.argv = []; process.version = ''; // empty string to avoid regexp issues process.versions = {}; function noop() {} process.on = noop; process.addListener = noop; process.once = noop; process.off = noop; process.removeListener = noop; process.removeAllListeners = noop; process.emit = noop; process.prependListener = noop; process.prependOnceListener = noop; process.listeners = function (name) { return [] } process.binding = function (name) { throw new Error('process.binding is not supported'); }; process.cwd = function () { return '/' }; process.chdir = function (dir) { throw new Error('process.chdir is not supported'); }; process.umask = function() { return 0; }; /***/ }), /* 110 */ /***/ (function(module, exports, __webpack_require__) { var basePick = __webpack_require__(326), flatRest = __webpack_require__(176); /** * Creates an object composed of the picked `object` properties. * * @static * @since 0.1.0 * @memberOf _ * @category Object * @param {Object} object The source object. * @param {...(string|string[])} [paths] The property paths to pick. * @returns {Object} Returns the new object. * @example * * var object = { 'a': 1, 'b': '2', 'c': 3 }; * * _.pick(object, ['a', 'c']); * // => { 'a': 1, 'c': 3 } */ var pick = flatRest(function(object, paths) { return object == null ? {} : basePick(object, paths); }); module.exports = pick; /***/ }), /* 111 */ /***/ (function(module, exports) { var hasOwn = Object.prototype.hasOwnProperty; var toString = Object.prototype.toString; module.exports = function forEach (obj, fn, ctx) { if (toString.call(fn) !== '[object Function]') { throw new TypeError('iterator must be a function'); } var l = obj.length; if (l === +l) { for (var i = 0; i < l; i++) { fn.call(ctx, obj[i], i, obj); } } else { for (var k in obj) { if (hasOwn.call(obj, k)) { fn.call(ctx, obj[k], k, obj); } } } }; /***/ }), /* 112 */ /***/ (function(module, exports, __webpack_require__) { var Stack = __webpack_require__(39), equalArrays = __webpack_require__(78), equalByTag = __webpack_require__(144), equalObjects = __webpack_require__(145), getTag = __webpack_require__(57), isArray = __webpack_require__(1), isBuffer = __webpack_require__(21), isTypedArray = __webpack_require__(34); /** Used to compose bitmasks for value comparisons. */ var COMPARE_PARTIAL_FLAG = 1; /** `Object#toString` result references. */ var argsTag = '[object Arguments]', arrayTag = '[object Array]', objectTag = '[object Object]'; /** Used for built-in method references. */ var objectProto = Object.prototype; /** Used to check objects for own properties. */ var hasOwnProperty = objectProto.hasOwnProperty; /** * A specialized version of `baseIsEqual` for arrays and objects which performs * deep comparisons and tracks traversed objects enabling objects with circular * references to be compared. * * @private * @param {Object} object The object to compare. * @param {Object} other The other object to compare. * @param {number} bitmask The bitmask flags. See `baseIsEqual` for more details. * @param {Function} customizer The function to customize comparisons. * @param {Function} equalFunc The function to determine equivalents of values. * @param {Object} [stack] Tracks traversed `object` and `other` objects. * @returns {boolean} Returns `true` if the objects are equivalent, else `false`. */ function baseIsEqualDeep(object, other, bitmask, customizer, equalFunc, stack) { var objIsArr = isArray(object), othIsArr = isArray(other), objTag = objIsArr ? arrayTag : getTag(object), othTag = othIsArr ? arrayTag : getTag(other); objTag = objTag == argsTag ? objectTag : objTag; othTag = othTag == argsTag ? objectTag : othTag; var objIsObj = objTag == objectTag, othIsObj = othTag == objectTag, isSameTag = objTag == othTag; if (isSameTag && isBuffer(object)) { if (!isBuffer(other)) { return false; } objIsArr = true; objIsObj = false; } if (isSameTag && !objIsObj) { stack || (stack = new Stack); return (objIsArr || isTypedArray(object)) ? equalArrays(object, other, bitmask, customizer, equalFunc, stack) : equalByTag(object, other, objTag, bitmask, customizer, equalFunc, stack); } if (!(bitmask & COMPARE_PARTIAL_FLAG)) { var objIsWrapped = objIsObj && hasOwnProperty.call(object, '__wrapped__'), othIsWrapped = othIsObj && hasOwnProperty.call(other, '__wrapped__'); if (objIsWrapped || othIsWrapped) { var objUnwrapped = objIsWrapped ? object.value() : object, othUnwrapped = othIsWrapped ? other.value() : other; stack || (stack = new Stack); return equalFunc(objUnwrapped, othUnwrapped, bitmask, customizer, stack); } } if (!isSameTag) { return false; } stack || (stack = new Stack); return equalObjects(object, other, bitmask, customizer, equalFunc, stack); } module.exports = baseIsEqualDeep; /***/ }), /* 113 */ /***/ (function(module, exports) { /** * Removes all key-value entries from the list cache. * * @private * @name clear * @memberOf ListCache */ function listCacheClear() { this.__data__ = []; this.size = 0; } module.exports = listCacheClear; /***/ }), /* 114 */ /***/ (function(module, exports, __webpack_require__) { var assocIndexOf = __webpack_require__(29); /** Used for built-in method references. */ var arrayProto = Array.prototype; /** Built-in value references. */ var splice = arrayProto.splice; /** * Removes `key` and its value from the list cache. * * @private * @name delete * @memberOf ListCache * @param {string} key The key of the value to remove. * @returns {boolean} Returns `true` if the entry was removed, else `false`. */ function listCacheDelete(key) { var data = this.__data__, index = assocIndexOf(data, key); if (index < 0) { return false; } var lastIndex = data.length - 1; if (index == lastIndex) { data.pop(); } else { splice.call(data, index, 1); } --this.size; return true; } module.exports = listCacheDelete; /***/ }), /* 115 */ /***/ (function(module, exports, __webpack_require__) { var assocIndexOf = __webpack_require__(29); /** * Gets the list cache value for `key`. * * @private * @name get * @memberOf ListCache * @param {string} key The key of the value to get. * @returns {*} Returns the entry value. */ function listCacheGet(key) { var data = this.__data__, index = assocIndexOf(data, key); return index < 0 ? undefined : data[index][1]; } module.exports = listCacheGet; /***/ }), /* 116 */ /***/ (function(module, exports, __webpack_require__) { var assocIndexOf = __webpack_require__(29); /** * Checks if a list cache value for `key` exists. * * @private * @name has * @memberOf ListCache * @param {string} key The key of the entry to check. * @returns {boolean} Returns `true` if an entry for `key` exists, else `false`. */ function listCacheHas(key) { return assocIndexOf(this.__data__, key) > -1; } module.exports = listCacheHas; /***/ }), /* 117 */ /***/ (function(module, exports, __webpack_require__) { var assocIndexOf = __webpack_require__(29); /** * Sets the list cache `key` to `value`. * * @private * @name set * @memberOf ListCache * @param {string} key The key of the value to set. * @param {*} value The value to set. * @returns {Object} Returns the list cache instance. */ function listCacheSet(key, value) { var data = this.__data__, index = assocIndexOf(data, key); if (index < 0) { ++this.size; data.push([key, value]); } else { data[index][1] = value; } return this; } module.exports = listCacheSet; /***/ }), /* 118 */ /***/ (function(module, exports, __webpack_require__) { var ListCache = __webpack_require__(28); /** * Removes all key-value entries from the stack. * * @private * @name clear * @memberOf Stack */ function stackClear() { this.__data__ = new ListCache; this.size = 0; } module.exports = stackClear; /***/ }), /* 119 */ /***/ (function(module, exports) { /** * Removes `key` and its value from the stack. * * @private * @name delete * @memberOf Stack * @param {string} key The key of the value to remove. * @returns {boolean} Returns `true` if the entry was removed, else `false`. */ function stackDelete(key) { var data = this.__data__, result = data['delete'](key); this.size = data.size; return result; } module.exports = stackDelete; /***/ }), /* 120 */ /***/ (function(module, exports) { /** * Gets the stack value for `key`. * * @private * @name get * @memberOf Stack * @param {string} key The key of the value to get. * @returns {*} Returns the entry value. */ function stackGet(key) { return this.__data__.get(key); } module.exports = stackGet; /***/ }), /* 121 */ /***/ (function(module, exports) { /** * Checks if a stack value for `key` exists. * * @private * @name has * @memberOf Stack * @param {string} key The key of the entry to check. * @returns {boolean} Returns `true` if an entry for `key` exists, else `false`. */ function stackHas(key) { return this.__data__.has(key); } module.exports = stackHas; /***/ }), /* 122 */ /***/ (function(module, exports, __webpack_require__) { var ListCache = __webpack_require__(28), Map = __webpack_require__(40), MapCache = __webpack_require__(41); /** Used as the size to enable large array optimizations. */ var LARGE_ARRAY_SIZE = 200; /** * Sets the stack `key` to `value`. * * @private * @name set * @memberOf Stack * @param {string} key The key of the value to set. * @param {*} value The value to set. * @returns {Object} Returns the stack cache instance. */ function stackSet(key, value) { var data = this.__data__; if (data instanceof ListCache) { var pairs = data.__data__; if (!Map || (pairs.length < LARGE_ARRAY_SIZE - 1)) { pairs.push([key, value]); this.size = ++data.size; return this; } data = this.__data__ = new MapCache(pairs); } data.set(key, value); this.size = data.size; return this; } module.exports = stackSet; /***/ }), /* 123 */ /***/ (function(module, exports, __webpack_require__) { var isFunction = __webpack_require__(19), isMasked = __webpack_require__(126), isObject = __webpack_require__(6), toSource = __webpack_require__(77); /** * Used to match `RegExp` * [syntax characters](http://ecma-international.org/ecma-262/7.0/#sec-patterns). */ var reRegExpChar = /[\\^$.*+?()[\]{}|]/g; /** Used to detect host constructors (Safari). */ var reIsHostCtor = /^\[object .+?Constructor\]$/; /** Used for built-in method references. */ var funcProto = Function.prototype, objectProto = Object.prototype; /** Used to resolve the decompiled source of functions. */ var funcToString = funcProto.toString; /** Used to check objects for own properties. */ var hasOwnProperty = objectProto.hasOwnProperty; /** Used to detect if a method is native. */ var reIsNative = RegExp('^' + funcToString.call(hasOwnProperty).replace(reRegExpChar, '\\$&') .replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g, '$1.*?') + '$' ); /** * The base implementation of `_.isNative` without bad shim checks. * * @private * @param {*} value The value to check. * @returns {boolean} Returns `true` if `value` is a native function, * else `false`. */ function baseIsNative(value) { if (!isObject(value) || isMasked(value)) { return false; } var pattern = isFunction(value) ? reIsNative : reIsHostCtor; return pattern.test(toSource(value)); } module.exports = baseIsNative; /***/ }), /* 124 */ /***/ (function(module, exports, __webpack_require__) { var Symbol = __webpack_require__(16); /** Used for built-in method references. */ var objectProto = Object.prototype; /** Used to check objects for own properties. */ var hasOwnProperty = objectProto.hasOwnProperty; /** * Used to resolve the * [`toStringTag`](http://ecma-international.org/ecma-262/7.0/#sec-object.prototype.tostring) * of values. */ var nativeObjectToString = objectProto.toString; /** Built-in value references. */ var symToStringTag = Symbol ? Symbol.toStringTag : undefined; /** * A specialized version of `baseGetTag` which ignores `Symbol.toStringTag` values. * * @private * @param {*} value The value to query. * @returns {string} Returns the raw `toStringTag`. */ function getRawTag(value) { var isOwn = hasOwnProperty.call(value, symToStringTag), tag = value[symToStringTag]; try { value[symToStringTag] = undefined; var unmasked = true; } catch (e) {} var result = nativeObjectToString.call(value); if (unmasked) { if (isOwn) { value[symToStringTag] = tag; } else { delete value[symToStringTag]; } } return result; } module.exports = getRawTag; /***/ }), /* 125 */ /***/ (function(module, exports) { /** Used for built-in method references. */ var objectProto = Object.prototype; /** * Used to resolve the * [`toStringTag`](http://ecma-international.org/ecma-262/7.0/#sec-object.prototype.tostring) * of values. */ var nativeObjectToString = objectProto.toString; /** * Converts `value` to a string using `Object.prototype.toString`. * * @private * @param {*} value The value to convert. * @returns {string} Returns the converted string. */ function objectToString(value) { return nativeObjectToString.call(value); } module.exports = objectToString; /***/ }), /* 126 */ /***/ (function(module, exports, __webpack_require__) { var coreJsData = __webpack_require__(127); /** Used to detect methods masquerading as native. */ var maskSrcKey = (function() { var uid = /[^.]+$/.exec(coreJsData && coreJsData.keys && coreJsData.keys.IE_PROTO || ''); return uid ? ('Symbol(src)_1.' + uid) : ''; }()); /** * Checks if `func` has its source masked. * * @private * @param {Function} func The function to check. * @returns {boolean} Returns `true` if `func` is masked, else `false`. */ function isMasked(func) { return !!maskSrcKey && (maskSrcKey in func); } module.exports = isMasked; /***/ }), /* 127 */ /***/ (function(module, exports, __webpack_require__) { var root = __webpack_require__(3); /** Used to detect overreaching core-js shims. */ var coreJsData = root['__core-js_shared__']; module.exports = coreJsData; /***/ }), /* 128 */ /***/ (function(module, exports) { /** * Gets the value at `key` of `object`. * * @private * @param {Object} [object] The object to query. * @param {string} key The key of the property to get. * @returns {*} Returns the property value. */ function getValue(object, key) { return object == null ? undefined : object[key]; } module.exports = getValue; /***/ }), /* 129 */ /***/ (function(module, exports, __webpack_require__) { var Hash = __webpack_require__(130), ListCache = __webpack_require__(28), Map = __webpack_require__(40); /** * Removes all key-value entries from the map. * * @private * @name clear * @memberOf MapCache */ function mapCacheClear() { this.size = 0; this.__data__ = { 'hash': new Hash, 'map': new (Map || ListCache), 'string': new Hash }; } module.exports = mapCacheClear; /***/ }), /* 130 */ /***/ (function(module, exports, __webpack_require__) { var hashClear = __webpack_require__(131), hashDelete = __webpack_require__(132), hashGet = __webpack_require__(133), hashHas = __webpack_require__(134), hashSet = __webpack_require__(135); /** * Creates a hash object. * * @private * @constructor * @param {Array} [entries] The key-value pairs to cache. */ function Hash(entries) { var index = -1, length = entries == null ? 0 : entries.length; this.clear(); while (++index < length) { var entry = entries[index]; this.set(entry[0], entry[1]); } } // Add methods to `Hash`. Hash.prototype.clear = hashClear; Hash.prototype['delete'] = hashDelete; Hash.prototype.get = hashGet; Hash.prototype.has = hashHas; Hash.prototype.set = hashSet; module.exports = Hash; /***/ }), /* 131 */ /***/ (function(module, exports, __webpack_require__) { var nativeCreate = __webpack_require__(30); /** * Removes all key-value entries from the hash. * * @private * @name clear * @memberOf Hash */ function hashClear() { this.__data__ = nativeCreate ? nativeCreate(null) : {}; this.size = 0; } module.exports = hashClear; /***/ }), /* 132 */ /***/ (function(module, exports) { /** * Removes `key` and its value from the hash. * * @private * @name delete * @memberOf Hash * @param {Object} hash The hash to modify. * @param {string} key The key of the value to remove. * @returns {boolean} Returns `true` if the entry was removed, else `false`. */ function hashDelete(key) { var result = this.has(key) && delete this.__data__[key]; this.size -= result ? 1 : 0; return result; } module.exports = hashDelete; /***/ }), /* 133 */ /***/ (function(module, exports, __webpack_require__) { var nativeCreate = __webpack_require__(30); /** Used to stand-in for `undefined` hash values. */ var HASH_UNDEFINED = '__lodash_hash_undefined__'; /** Used for built-in method references. */ var objectProto = Object.prototype; /** Used to check objects for own properties. */ var hasOwnProperty = objectProto.hasOwnProperty; /** * Gets the hash value for `key`. * * @private * @name get * @memberOf Hash * @param {string} key The key of the value to get. * @returns {*} Returns the entry value. */ function hashGet(key) { var data = this.__data__; if (nativeCreate) { var result = data[key]; return result === HASH_UNDEFINED ? undefined : result; } return hasOwnProperty.call(data, key) ? data[key] : undefined; } module.exports = hashGet; /***/ }), /* 134 */ /***/ (function(module, exports, __webpack_require__) { var nativeCreate = __webpack_require__(30); /** Used for built-in method references. */ var objectProto = Object.prototype; /** Used to check objects for own properties. */ var hasOwnProperty = objectProto.hasOwnProperty; /** * Checks if a hash value for `key` exists. * * @private * @name has * @memberOf Hash * @param {string} key The key of the entry to check. * @returns {boolean} Returns `true` if an entry for `key` exists, else `false`. */ function hashHas(key) { var data = this.__data__; return nativeCreate ? (data[key] !== undefined) : hasOwnProperty.call(data, key); } module.exports = hashHas; /***/ }), /* 135 */ /***/ (function(module, exports, __webpack_require__) { var nativeCreate = __webpack_require__(30); /** Used to stand-in for `undefined` hash values. */ var HASH_UNDEFINED = '__lodash_hash_undefined__'; /** * Sets the hash `key` to `value`. * * @private * @name set * @memberOf Hash * @param {string} key The key of the value to set. * @param {*} value The value to set. * @returns {Object} Returns the hash instance. */ function hashSet(key, value) { var data = this.__data__; this.size += this.has(key) ? 0 : 1; data[key] = (nativeCreate && value === undefined) ? HASH_UNDEFINED : value; return this; } module.exports = hashSet; /***/ }), /* 136 */ /***/ (function(module, exports, __webpack_require__) { var getMapData = __webpack_require__(31); /** * Removes `key` and its value from the map. * * @private * @name delete * @memberOf MapCache * @param {string} key The key of the value to remove. * @returns {boolean} Returns `true` if the entry was removed, else `false`. */ function mapCacheDelete(key) { var result = getMapData(this, key)['delete'](key); this.size -= result ? 1 : 0; return result; } module.exports = mapCacheDelete; /***/ }), /* 137 */ /***/ (function(module, exports) { /** * Checks if `value` is suitable for use as unique object key. * * @private * @param {*} value The value to check. * @returns {boolean} Returns `true` if `value` is suitable, else `false`. */ function isKeyable(value) { var type = typeof value; return (type == 'string' || type == 'number' || type == 'symbol' || type == 'boolean') ? (value !== '__proto__') : (value === null); } module.exports = isKeyable; /***/ }), /* 138 */ /***/ (function(module, exports, __webpack_require__) { var getMapData = __webpack_require__(31); /** * Gets the map value for `key`. * * @private * @name get * @memberOf MapCache * @param {string} key The key of the value to get. * @returns {*} Returns the entry value. */ function mapCacheGet(key) { return getMapData(this, key).get(key); } module.exports = mapCacheGet; /***/ }), /* 139 */ /***/ (function(module, exports, __webpack_require__) { var getMapData = __webpack_require__(31); /** * Checks if a map value for `key` exists. * * @private * @name has * @memberOf MapCache * @param {string} key The key of the entry to check. * @returns {boolean} Returns `true` if an entry for `key` exists, else `false`. */ function mapCacheHas(key) { return getMapData(this, key).has(key); } module.exports = mapCacheHas; /***/ }), /* 140 */ /***/ (function(module, exports, __webpack_require__) { var getMapData = __webpack_require__(31); /** * Sets the map `key` to `value`. * * @private * @name set * @memberOf MapCache * @param {string} key The key of the value to set. * @param {*} value The value to set. * @returns {Object} Returns the map cache instance. */ function mapCacheSet(key, value) { var data = getMapData(this, key), size = data.size; data.set(key, value); this.size += data.size == size ? 0 : 1; return this; } module.exports = mapCacheSet; /***/ }), /* 141 */ /***/ (function(module, exports) { /** Used to stand-in for `undefined` hash values. */ var HASH_UNDEFINED = '__lodash_hash_undefined__'; /** * Adds `value` to the array cache. * * @private * @name add * @memberOf SetCache * @alias push * @param {*} value The value to cache. * @returns {Object} Returns the cache instance. */ function setCacheAdd(value) { this.__data__.set(value, HASH_UNDEFINED); return this; } module.exports = setCacheAdd; /***/ }), /* 142 */ /***/ (function(module, exports) { /** * Checks if `value` is in the array cache. * * @private * @name has * @memberOf SetCache * @param {*} value The value to search for. * @returns {number} Returns `true` if `value` is found, else `false`. */ function setCacheHas(value) { return this.__data__.has(value); } module.exports = setCacheHas; /***/ }), /* 143 */ /***/ (function(module, exports) { /** * A specialized version of `_.some` for arrays without support for iteratee * shorthands. * * @private * @param {Array} [array] The array to iterate over. * @param {Function} predicate The function invoked per iteration. * @returns {boolean} Returns `true` if any element passes the predicate check, * else `false`. */ function arraySome(array, predicate) { var index = -1, length = array == null ? 0 : array.length; while (++index < length) { if (predicate(array[index], index, array)) { return true; } } return false; } module.exports = arraySome; /***/ }), /* 144 */ /***/ (function(module, exports, __webpack_require__) { var Symbol = __webpack_require__(16), Uint8Array = __webpack_require__(82), eq = __webpack_require__(18), equalArrays = __webpack_require__(78), mapToArray = __webpack_require__(83), setToArray = __webpack_require__(84); /** Used to compose bitmasks for value comparisons. */ var COMPARE_PARTIAL_FLAG = 1, COMPARE_UNORDERED_FLAG = 2; /** `Object#toString` result references. */ var boolTag = '[object Boolean]', dateTag = '[object Date]', errorTag = '[object Error]', mapTag = '[object Map]', numberTag = '[object Number]', regexpTag = '[object RegExp]', setTag = '[object Set]', stringTag = '[object String]', symbolTag = '[object Symbol]'; var arrayBufferTag = '[object ArrayBuffer]', dataViewTag = '[object DataView]'; /** Used to convert symbols to primitives and strings. */ var symbolProto = Symbol ? Symbol.prototype : undefined, symbolValueOf = symbolProto ? symbolProto.valueOf : undefined; /** * A specialized version of `baseIsEqualDeep` for comparing objects of * the same `toStringTag`. * * **Note:** This function only supports comparing values with tags of * `Boolean`, `Date`, `Error`, `Number`, `RegExp`, or `String`. * * @private * @param {Object} object The object to compare. * @param {Object} other The other object to compare. * @param {string} tag The `toStringTag` of the objects to compare. * @param {number} bitmask The bitmask flags. See `baseIsEqual` for more details. * @param {Function} customizer The function to customize comparisons. * @param {Function} equalFunc The function to determine equivalents of values. * @param {Object} stack Tracks traversed `object` and `other` objects. * @returns {boolean} Returns `true` if the objects are equivalent, else `false`. */ function equalByTag(object, other, tag, bitmask, customizer, equalFunc, stack) { switch (tag) { case dataViewTag: if ((object.byteLength != other.byteLength) || (object.byteOffset != other.byteOffset)) { return false; } object = object.buffer; other = other.buffer; case arrayBufferTag: if ((object.byteLength != other.byteLength) || !equalFunc(new Uint8Array(object), new Uint8Array(other))) { return false; } return true; case boolTag: case dateTag: case numberTag: // Coerce booleans to `1` or `0` and dates to milliseconds. // Invalid dates are coerced to `NaN`. return eq(+object, +other); case errorTag: return object.name == other.name && object.message == other.message; case regexpTag: case stringTag: // Coerce regexes to strings and treat strings, primitives and objects, // as equal. See http://www.ecma-international.org/ecma-262/7.0/#sec-regexp.prototype.tostring // for more details. return object == (other + ''); case mapTag: var convert = mapToArray; case setTag: var isPartial = bitmask & COMPARE_PARTIAL_FLAG; convert || (convert = setToArray); if (object.size != other.size && !isPartial) { return false; } // Assume cyclic values are equal. var stacked = stack.get(object); if (stacked) { return stacked == other; } bitmask |= COMPARE_UNORDERED_FLAG; // Recursively compare objects (susceptible to call stack limits). stack.set(object, other); var result = equalArrays(convert(object), convert(other), bitmask, customizer, equalFunc, stack); stack['delete'](object); return result; case symbolTag: if (symbolValueOf) { return symbolValueOf.call(object) == symbolValueOf.call(other); } } return false; } module.exports = equalByTag; /***/ }), /* 145 */ /***/ (function(module, exports, __webpack_require__) { var getAllKeys = __webpack_require__(85); /** Used to compose bitmasks for value comparisons. */ var COMPARE_PARTIAL_FLAG = 1; /** Used for built-in method references. */ var objectProto = Object.prototype; /** Used to check objects for own properties. */ var hasOwnProperty = objectProto.hasOwnProperty; /** * A specialized version of `baseIsEqualDeep` for objects with support for * partial deep comparisons. * * @private * @param {Object} object The object to compare. * @param {Object} other The other object to compare. * @param {number} bitmask The bitmask flags. See `baseIsEqual` for more details. * @param {Function} customizer The function to customize comparisons. * @param {Function} equalFunc The function to determine equivalents of values. * @param {Object} stack Tracks traversed `object` and `other` objects. * @returns {boolean} Returns `true` if the objects are equivalent, else `false`. */ function equalObjects(object, other, bitmask, customizer, equalFunc, stack) { var isPartial = bitmask & COMPARE_PARTIAL_FLAG, objProps = getAllKeys(object), objLength = objProps.length, othProps = getAllKeys(other), othLength = othProps.length; if (objLength != othLength && !isPartial) { return false; } var index = objLength; while (index--) { var key = objProps[index]; if (!(isPartial ? key in other : hasOwnProperty.call(other, key))) { return false; } } // Assume cyclic values are equal. var stacked = stack.get(object); if (stacked && stack.get(other)) { return stacked == other; } var result = true; stack.set(object, other); stack.set(other, object); var skipCtor = isPartial; while (++index < objLength) { key = objProps[index]; var objValue = object[key], othValue = other[key]; if (customizer) { var compared = isPartial ? customizer(othValue, objValue, key, other, object, stack) : customizer(objValue, othValue, key, object, other, stack); } // Recursively compare objects (susceptible to call stack limits). if (!(compared === undefined ? (objValue === othValue || equalFunc(objValue, othValue, bitmask, customizer, stack)) : compared )) { result = false; break; } skipCtor || (skipCtor = key == 'constructor'); } if (result && !skipCtor) { var objCtor = object.constructor, othCtor = other.constructor; // Non `Object` object instances with different constructors are not equal. if (objCtor != othCtor && ('constructor' in object && 'constructor' in other) && !(typeof objCtor == 'function' && objCtor instanceof objCtor && typeof othCtor == 'function' && othCtor instanceof othCtor)) { result = false; } } stack['delete'](object); stack['delete'](other); return result; } module.exports = equalObjects; /***/ }), /* 146 */ /***/ (function(module, exports) { /** * The base implementation of `_.times` without support for iteratee shorthands * or max array length checks. * * @private * @param {number} n The number of times to invoke `iteratee`. * @param {Function} iteratee The function invoked per iteration. * @returns {Array} Returns the array of results. */ function baseTimes(n, iteratee) { var index = -1, result = Array(n); while (++index < n) { result[index] = iteratee(index); } return result; } module.exports = baseTimes; /***/ }), /* 147 */ /***/ (function(module, exports, __webpack_require__) { var baseGetTag = __webpack_require__(8), isObjectLike = __webpack_require__(7); /** `Object#toString` result references. */ var argsTag = '[object Arguments]'; /** * The base implementation of `_.isArguments`. * * @private * @param {*} value The value to check. * @returns {boolean} Returns `true` if `value` is an `arguments` object, */ function baseIsArguments(value) { return isObjectLike(value) && baseGetTag(value) == argsTag; } module.exports = baseIsArguments; /***/ }), /* 148 */ /***/ (function(module, exports) { /** * This method returns `false`. * * @static * @memberOf _ * @since 4.13.0 * @category Util * @returns {boolean} Returns `false`. * @example * * _.times(2, _.stubFalse); * // => [false, false] */ function stubFalse() { return false; } module.exports = stubFalse; /***/ }), /* 149 */ /***/ (function(module, exports, __webpack_require__) { var baseGetTag = __webpack_require__(8), isLength = __webpack_require__(42), isObjectLike = __webpack_require__(7); /** `Object#toString` result references. */ var argsTag = '[object Arguments]', arrayTag = '[object Array]', boolTag = '[object Boolean]', dateTag = '[object Date]', errorTag = '[object Error]', funcTag = '[object Function]', mapTag = '[object Map]', numberTag = '[object Number]', objectTag = '[object Object]', regexpTag = '[object RegExp]', setTag = '[object Set]', stringTag = '[object String]', weakMapTag = '[object WeakMap]'; var arrayBufferTag = '[object ArrayBuffer]', dataViewTag = '[object DataView]', float32Tag = '[object Float32Array]', float64Tag = '[object Float64Array]', int8Tag = '[object Int8Array]', int16Tag = '[object Int16Array]', int32Tag = '[object Int32Array]', uint8Tag = '[object Uint8Array]', uint8ClampedTag = '[object Uint8ClampedArray]', uint16Tag = '[object Uint16Array]', uint32Tag = '[object Uint32Array]'; /** Used to identify `toStringTag` values of typed arrays. */ var typedArrayTags = {}; typedArrayTags[float32Tag] = typedArrayTags[float64Tag] = typedArrayTags[int8Tag] = typedArrayTags[int16Tag] = typedArrayTags[int32Tag] = typedArrayTags[uint8Tag] = typedArrayTags[uint8ClampedTag] = typedArrayTags[uint16Tag] = typedArrayTags[uint32Tag] = true; typedArrayTags[argsTag] = typedArrayTags[arrayTag] = typedArrayTags[arrayBufferTag] = typedArrayTags[boolTag] = typedArrayTags[dataViewTag] = typedArrayTags[dateTag] = typedArrayTags[errorTag] = typedArrayTags[funcTag] = typedArrayTags[mapTag] = typedArrayTags[numberTag] = typedArrayTags[objectTag] = typedArrayTags[regexpTag] = typedArrayTags[setTag] = typedArrayTags[stringTag] = typedArrayTags[weakMapTag] = false; /** * The base implementation of `_.isTypedArray` without Node.js optimizations. * * @private * @param {*} value The value to check. * @returns {boolean} Returns `true` if `value` is a typed array, else `false`. */ function baseIsTypedArray(value) { return isObjectLike(value) && isLength(value.length) && !!typedArrayTags[baseGetTag(value)]; } module.exports = baseIsTypedArray; /***/ }), /* 150 */ /***/ (function(module, exports, __webpack_require__) { /* WEBPACK VAR INJECTION */(function(module) {var freeGlobal = __webpack_require__(76); /** Detect free variable `exports`. */ var freeExports = typeof exports == 'object' && exports && !exports.nodeType && exports; /** Detect free variable `module`. */ var freeModule = freeExports && typeof module == 'object' && module && !module.nodeType && module; /** Detect the popular CommonJS extension `module.exports`. */ var moduleExports = freeModule && freeModule.exports === freeExports; /** Detect free variable `process` from Node.js. */ var freeProcess = moduleExports && freeGlobal.process; /** Used to access faster Node.js helpers. */ var nodeUtil = (function() { try { return freeProcess && freeProcess.binding && freeProcess.binding('util'); } catch (e) {} }()); module.exports = nodeUtil; /* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(56)(module))) /***/ }), /* 151 */ /***/ (function(module, exports, __webpack_require__) { var overArg = __webpack_require__(80); /* Built-in method references for those with the same name as other `lodash` methods. */ var nativeKeys = overArg(Object.keys, Object); module.exports = nativeKeys; /***/ }), /* 152 */ /***/ (function(module, exports, __webpack_require__) { var getNative = __webpack_require__(10), root = __webpack_require__(3); /* Built-in method references that are verified to be native. */ var DataView = getNative(root, 'DataView'); module.exports = DataView; /***/ }), /* 153 */ /***/ (function(module, exports, __webpack_require__) { var getNative = __webpack_require__(10), root = __webpack_require__(3); /* Built-in method references that are verified to be native. */ var Promise = getNative(root, 'Promise'); module.exports = Promise; /***/ }), /* 154 */ /***/ (function(module, exports, __webpack_require__) { var getNative = __webpack_require__(10), root = __webpack_require__(3); /* Built-in method references that are verified to be native. */ var Set = getNative(root, 'Set'); module.exports = Set; /***/ }), /* 155 */ /***/ (function(module, exports) { /** Used for built-in method references. */ var objectProto = Object.prototype; /** Used to check objects for own properties. */ var hasOwnProperty = objectProto.hasOwnProperty; /** * The base implementation of `_.has` without support for deep paths. * * @private * @param {Object} [object] The object to query. * @param {Array|string} key The key to check. * @returns {boolean} Returns `true` if `key` exists, else `false`. */ function baseHas(object, key) { return object != null && hasOwnProperty.call(object, key); } module.exports = baseHas; /***/ }), /* 156 */ /***/ (function(module, exports, __webpack_require__) { var memoizeCapped = __webpack_require__(157); /** Used to match property names within property paths. */ var reLeadingDot = /^\./, rePropName = /[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|$))/g; /** Used to match backslashes in property paths. */ var reEscapeChar = /\\(\\)?/g; /** * Converts `string` to a property path array. * * @private * @param {string} string The string to convert. * @returns {Array} Returns the property path array. */ var stringToPath = memoizeCapped(function(string) { var result = []; if (reLeadingDot.test(string)) { result.push(''); } string.replace(rePropName, function(match, number, quote, string) { result.push(quote ? string.replace(reEscapeChar, '$1') : (number || match)); }); return result; }); module.exports = stringToPath; /***/ }), /* 157 */ /***/ (function(module, exports, __webpack_require__) { var memoize = __webpack_require__(158); /** Used as the maximum memoize cache size. */ var MAX_MEMOIZE_SIZE = 500; /** * A specialized version of `_.memoize` which clears the memoized function's * cache when it exceeds `MAX_MEMOIZE_SIZE`. * * @private * @param {Function} func The function to have its output memoized. * @returns {Function} Returns the new memoized function. */ function memoizeCapped(func) { var result = memoize(func, function(key) { if (cache.size === MAX_MEMOIZE_SIZE) { cache.clear(); } return key; }); var cache = result.cache; return result; } module.exports = memoizeCapped; /***/ }), /* 158 */ /***/ (function(module, exports, __webpack_require__) { var MapCache = __webpack_require__(41); /** Error message constants. */ var FUNC_ERROR_TEXT = 'Expected a function'; /** * Creates a function that memoizes the result of `func`. If `resolver` is * provided, it determines the cache key for storing the result based on the * arguments provided to the memoized function. By default, the first argument * provided to the memoized function is used as the map cache key. The `func` * is invoked with the `this` binding of the memoized function. * * **Note:** The cache is exposed as the `cache` property on the memoized * function. Its creation may be customized by replacing the `_.memoize.Cache` * constructor with one whose instances implement the * [`Map`](http://ecma-international.org/ecma-262/7.0/#sec-properties-of-the-map-prototype-object) * method interface of `clear`, `delete`, `get`, `has`, and `set`. * * @static * @memberOf _ * @since 0.1.0 * @category Function * @param {Function} func The function to have its output memoized. * @param {Function} [resolver] The function to resolve the cache key. * @returns {Function} Returns the new memoized function. * @example * * var object = { 'a': 1, 'b': 2 }; * var other = { 'c': 3, 'd': 4 }; * * var values = _.memoize(_.values); * values(object); * // => [1, 2] * * values(other); * // => [3, 4] * * object.a = 2; * values(object); * // => [1, 2] * * // Modify the result cache. * values.cache.set(object, ['a', 'b']); * values(object); * // => ['a', 'b'] * * // Replace `_.memoize.Cache`. * _.memoize.Cache = WeakMap; */ function memoize(func, resolver) { if (typeof func != 'function' || (resolver != null && typeof resolver != 'function')) { throw new TypeError(FUNC_ERROR_TEXT); } var memoized = function() { var args = arguments, key = resolver ? resolver.apply(this, args) : args[0], cache = memoized.cache; if (cache.has(key)) { return cache.get(key); } var result = func.apply(this, args); memoized.cache = cache.set(key, result) || cache; return result; }; memoized.cache = new (memoize.Cache || MapCache); return memoized; } // Expose `MapCache`. memoize.Cache = MapCache; module.exports = memoize; /***/ }), /* 159 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; /** * Copyright (c) 2013-present, Facebook, Inc. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ var emptyFunction = __webpack_require__(160); var invariant = __webpack_require__(161); var ReactPropTypesSecret = __webpack_require__(162); module.exports = function() { function shim(props, propName, componentName, location, propFullName, secret) { if (secret === ReactPropTypesSecret) { // It is still safe when called from React. return; } invariant( false, 'Calling PropTypes validators directly is not supported by the `prop-types` package. ' + 'Use PropTypes.checkPropTypes() to call them. ' + 'Read more at http://fb.me/use-check-prop-types' ); }; shim.isRequired = shim; function getShim() { return shim; }; // Important! // Keep this list in sync with production version in `./factoryWithTypeCheckers.js`. var ReactPropTypes = { array: shim, bool: shim, func: shim, number: shim, object: shim, string: shim, symbol: shim, any: shim, arrayOf: getShim, element: shim, instanceOf: getShim, node: shim, objectOf: getShim, oneOf: getShim, oneOfType: getShim, shape: getShim, exact: getShim }; ReactPropTypes.checkPropTypes = emptyFunction; ReactPropTypes.PropTypes = ReactPropTypes; return ReactPropTypes; }; /***/ }), /* 160 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; /** * Copyright (c) 2013-present, Facebook, Inc. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * * */ function makeEmptyFunction(arg) { return function () { return arg; }; } /** * This function accepts and discards inputs; it has no side effects. This is * primarily useful idiomatically for overridable function endpoints which * always need to be callable, since JS lacks a null-call idiom ala Cocoa. */ var emptyFunction = function emptyFunction() {}; emptyFunction.thatReturns = makeEmptyFunction; emptyFunction.thatReturnsFalse = makeEmptyFunction(false); emptyFunction.thatReturnsTrue = makeEmptyFunction(true); emptyFunction.thatReturnsNull = makeEmptyFunction(null); emptyFunction.thatReturnsThis = function () { return this; }; emptyFunction.thatReturnsArgument = function (arg) { return arg; }; module.exports = emptyFunction; /***/ }), /* 161 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; /** * Copyright (c) 2013-present, Facebook, Inc. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * */ /** * Use invariant() to assert state which your program assumes to be true. * * Provide sprintf-style format (only %s is supported) and arguments * to provide information about what broke and what you were * expecting. * * The invariant message will be stripped in production, but the invariant * will remain to ensure logic does not differ in production. */ var validateFormat = function validateFormat(format) {}; if (false) { validateFormat = function validateFormat(format) { if (format === undefined) { throw new Error('invariant requires an error message argument'); } }; } function invariant(condition, format, a, b, c, d, e, f) { validateFormat(format); if (!condition) { var error; if (format === undefined) { error = new Error('Minified exception occurred; use the non-minified dev environment ' + 'for the full error message and additional helpful warnings.'); } else { var args = [a, b, c, d, e, f]; var argIndex = 0; error = new Error(format.replace(/%s/g, function () { return args[argIndex++]; })); error.name = 'Invariant Violation'; } error.framesToPop = 1; // we don't care about invariant's own frame throw error; } } module.exports = invariant; /***/ }), /* 162 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; /** * Copyright (c) 2013-present, Facebook, Inc. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ var ReactPropTypesSecret = 'SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED'; module.exports = ReactPropTypesSecret; /***/ }), /* 163 */ /***/ (function(module, exports) { /** * The base implementation of `_.findIndex` and `_.findLastIndex` without * support for iteratee shorthands. * * @private * @param {Array} array The array to inspect. * @param {Function} predicate The function invoked per iteration. * @param {number} fromIndex The index to search from. * @param {boolean} [fromRight] Specify iterating from right to left. * @returns {number} Returns the index of the matched value, else `-1`. */ function baseFindIndex(array, predicate, fromIndex, fromRight) { var length = array.length, index = fromIndex + (fromRight ? 1 : -1); while ((fromRight ? index-- : ++index < length)) { if (predicate(array[index], index, array)) { return index; } } return -1; } module.exports = baseFindIndex; /***/ }), /* 164 */ /***/ (function(module, exports) { /** * This function is like `arrayIncludes` except that it accepts a comparator. * * @private * @param {Array} [array] The array to inspect. * @param {*} target The value to search for. * @param {Function} comparator The comparator invoked per element. * @returns {boolean} Returns `true` if `target` is found, else `false`. */ function arrayIncludesWith(array, value, comparator) { var index = -1, length = array == null ? 0 : array.length; while (++index < length) { if (comparator(value, array[index])) { return true; } } return false; } module.exports = arrayIncludesWith; /***/ }), /* 165 */ /***/ (function(module, exports, __webpack_require__) { var arrayPush = __webpack_require__(62), isFlattenable = __webpack_require__(227); /** * The base implementation of `_.flatten` with support for restricting flattening. * * @private * @param {Array} array The array to flatten. * @param {number} depth The maximum recursion depth. * @param {boolean} [predicate=isFlattenable] The function invoked per iteration. * @param {boolean} [isStrict] Restrict to values that pass `predicate` checks. * @param {Array} [result=[]] The initial result value. * @returns {Array} Returns the new flattened array. */ function baseFlatten(array, depth, predicate, isStrict, result) { var index = -1, length = array.length; predicate || (predicate = isFlattenable); result || (result = []); while (++index < length) { var value = array[index]; if (depth > 0 && predicate(value)) { if (depth > 1) { // Recursively flatten arrays (susceptible to call stack limits). baseFlatten(value, depth - 1, predicate, isStrict, result); } else { arrayPush(result, value); } } else if (!isStrict) { result[result.length] = value; } } return result; } module.exports = baseFlatten; /***/ }), /* 166 */ /***/ (function(module, exports, __webpack_require__) { var apply = __webpack_require__(68); /* Built-in method references for those with the same name as other `lodash` methods. */ var nativeMax = Math.max; /** * A specialized version of `baseRest` which transforms the rest array. * * @private * @param {Function} func The function to apply a rest parameter to. * @param {number} [start=func.length-1] The start position of the rest parameter. * @param {Function} transform The rest array transform. * @returns {Function} Returns the new function. */ function overRest(func, start, transform) { start = nativeMax(start === undefined ? (func.length - 1) : start, 0); return function() { var args = arguments, index = -1, length = nativeMax(args.length - start, 0), array = Array(length); while (++index < length) { array[index] = args[start + index]; } index = -1; var otherArgs = Array(start + 1); while (++index < start) { otherArgs[index] = args[index]; } otherArgs[start] = transform(array); return apply(func, this, otherArgs); }; } module.exports = overRest; /***/ }), /* 167 */ /***/ (function(module, exports) { /** * Creates a function that returns `value`. * * @static * @memberOf _ * @since 2.4.0 * @category Util * @param {*} value The value to return from the new function. * @returns {Function} Returns the new constant function. * @example * * var objects = _.times(2, _.constant({ 'a': 1 })); * * console.log(objects); * // => [{ 'a': 1 }, { 'a': 1 }] * * console.log(objects[0] === objects[1]); * // => true */ function constant(value) { return function() { return value; }; } module.exports = constant; /***/ }), /* 168 */ /***/ (function(module, exports, __webpack_require__) { var getNative = __webpack_require__(10); var defineProperty = (function() { try { var func = getNative(Object, 'defineProperty'); func({}, '', {}); return func; } catch (e) {} }()); module.exports = defineProperty; /***/ }), /* 169 */ /***/ (function(module, exports) { /** Used to detect hot functions by number of calls within a span of milliseconds. */ var HOT_COUNT = 800, HOT_SPAN = 16; /* Built-in method references for those with the same name as other `lodash` methods. */ var nativeNow = Date.now; /** * Creates a function that'll short out and invoke `identity` instead * of `func` when it's called `HOT_COUNT` or more times in `HOT_SPAN` * milliseconds. * * @private * @param {Function} func The function to restrict. * @returns {Function} Returns the new shortable function. */ function shortOut(func) { var count = 0, lastCalled = 0; return function() { var stamp = nativeNow(), remaining = HOT_SPAN - (stamp - lastCalled); lastCalled = stamp; if (remaining > 0) { if (++count >= HOT_COUNT) { return arguments[0]; } } else { count = 0; } return func.apply(undefined, arguments); }; } module.exports = shortOut; /***/ }), /* 170 */ /***/ (function(module, exports, __webpack_require__) { /* WEBPACK VAR INJECTION */(function(module) {var root = __webpack_require__(3); /** Detect free variable `exports`. */ var freeExports = typeof exports == 'object' && exports && !exports.nodeType && exports; /** Detect free variable `module`. */ var freeModule = freeExports && typeof module == 'object' && module && !module.nodeType && module; /** Detect the popular CommonJS extension `module.exports`. */ var moduleExports = freeModule && freeModule.exports === freeExports; /** Built-in value references. */ var Buffer = moduleExports ? root.Buffer : undefined, allocUnsafe = Buffer ? Buffer.allocUnsafe : undefined; /** * Creates a clone of `buffer`. * * @private * @param {Buffer} buffer The buffer to clone. * @param {boolean} [isDeep] Specify a deep clone. * @returns {Buffer} Returns the cloned buffer. */ function cloneBuffer(buffer, isDeep) { if (isDeep) { return buffer.slice(); } var length = buffer.length, result = allocUnsafe ? allocUnsafe(length) : new buffer.constructor(length); buffer.copy(result); return result; } module.exports = cloneBuffer; /* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(56)(module))) /***/ }), /* 171 */ /***/ (function(module, exports, __webpack_require__) { var arrayPush = __webpack_require__(62), getPrototype = __webpack_require__(67), getSymbols = __webpack_require__(63), stubArray = __webpack_require__(88); /* Built-in method references for those with the same name as other `lodash` methods. */ var nativeGetSymbols = Object.getOwnPropertySymbols; /** * Creates an array of the own and inherited enumerable symbols of `object`. * * @private * @param {Object} object The object to query. * @returns {Array} Returns the array of symbols. */ var getSymbolsIn = !nativeGetSymbols ? stubArray : function(object) { var result = []; while (object) { arrayPush(result, getSymbols(object)); object = getPrototype(object); } return result; }; module.exports = getSymbolsIn; /***/ }), /* 172 */ /***/ (function(module, exports, __webpack_require__) { var cloneArrayBuffer = __webpack_require__(98); /** * Creates a clone of `typedArray`. * * @private * @param {Object} typedArray The typed array to clone. * @param {boolean} [isDeep] Specify a deep clone. * @returns {Object} Returns the cloned typed array. */ function cloneTypedArray(typedArray, isDeep) { var buffer = isDeep ? cloneArrayBuffer(typedArray.buffer) : typedArray.buffer; return new typedArray.constructor(buffer, typedArray.byteOffset, typedArray.length); } module.exports = cloneTypedArray; /***/ }), /* 173 */ /***/ (function(module, exports, __webpack_require__) { var baseCreate = __webpack_require__(70), getPrototype = __webpack_require__(67), isPrototype = __webpack_require__(38); /** * Initializes an object clone. * * @private * @param {Object} object The object to clone. * @returns {Object} Returns the initialized clone. */ function initCloneObject(object) { return (typeof object.constructor == 'function' && !isPrototype(object)) ? baseCreate(getPrototype(object)) : {}; } module.exports = initCloneObject; /***/ }), /* 174 */ /***/ (function(module, exports) { /** * Gets the last element of `array`. * * @static * @memberOf _ * @since 0.1.0 * @category Array * @param {Array} array The array to query. * @returns {*} Returns the last element of `array`. * @example * * _.last([1, 2, 3]); * // => 3 */ function last(array) { var length = array == null ? 0 : array.length; return length ? array[length - 1] : undefined; } module.exports = last; /***/ }), /* 175 */ /***/ (function(module, exports) { /** * The base implementation of `_.slice` without an iteratee call guard. * * @private * @param {Array} array The array to slice. * @param {number} [start=0] The start position. * @param {number} [end=array.length] The end position. * @returns {Array} Returns the slice of `array`. */ function baseSlice(array, start, end) { var index = -1, length = array.length; if (start < 0) { start = -start > length ? 0 : (length + start); } end = end > length ? length : end; if (end < 0) { end += length; } length = start > end ? 0 : ((end - start) >>> 0); start >>>= 0; var result = Array(length); while (++index < length) { result[index] = array[index + start]; } return result; } module.exports = baseSlice; /***/ }), /* 176 */ /***/ (function(module, exports, __webpack_require__) { var flatten = __webpack_require__(177), overRest = __webpack_require__(166), setToString = __webpack_require__(93); /** * A specialized version of `baseRest` which flattens the rest array. * * @private * @param {Function} func The function to apply a rest parameter to. * @returns {Function} Returns the new function. */ function flatRest(func) { return setToString(overRest(func, undefined, flatten), func + ''); } module.exports = flatRest; /***/ }), /* 177 */ /***/ (function(module, exports, __webpack_require__) { var baseFlatten = __webpack_require__(165); /** * Flattens `array` a single level deep. * * @static * @memberOf _ * @since 0.1.0 * @category Array * @param {Array} array The array to flatten. * @returns {Array} Returns the new flattened array. * @example * * _.flatten([1, [2, [3, [4]], 5]]); * // => [1, 2, [3, [4]], 5] */ function flatten(array) { var length = array == null ? 0 : array.length; return length ? baseFlatten(array, 1) : []; } module.exports = flatten; /***/ }), /* 178 */ /***/ (function(module, exports, __webpack_require__) { var createBaseFor = __webpack_require__(254); /** * The base implementation of `baseForOwn` which iterates over `object` * properties returned by `keysFunc` and invokes `iteratee` for each property. * Iteratee functions may exit iteration early by explicitly returning `false`. * * @private * @param {Object} object The object to iterate over. * @param {Function} iteratee The function invoked per iteration. * @param {Function} keysFunc The function to get the keys of `object`. * @returns {Object} Returns `object`. */ var baseFor = createBaseFor(); module.exports = baseFor; /***/ }), /* 179 */ /***/ (function(module, exports, __webpack_require__) { var identity = __webpack_require__(26); /** * Casts `value` to `identity` if it's not a function. * * @private * @param {*} value The value to inspect. * @returns {Function} Returns cast function. */ function castFunction(value) { return typeof value == 'function' ? value : identity; } module.exports = castFunction; /***/ }), /* 180 */ /***/ (function(module, exports, __webpack_require__) { var isObject = __webpack_require__(6); /** * Checks if `value` is suitable for strict equality comparisons, i.e. `===`. * * @private * @param {*} value The value to check. * @returns {boolean} Returns `true` if `value` if suitable for strict * equality comparisons, else `false`. */ function isStrictComparable(value) { return value === value && !isObject(value); } module.exports = isStrictComparable; /***/ }), /* 181 */ /***/ (function(module, exports) { /** * A specialized version of `matchesProperty` for source values suitable * for strict equality comparisons, i.e. `===`. * * @private * @param {string} key The key of the property to get. * @param {*} srcValue The value to match. * @returns {Function} Returns the new spec function. */ function matchesStrictComparable(key, srcValue) { return function(object) { if (object == null) { return false; } return object[key] === srcValue && (srcValue !== undefined || (key in Object(object))); }; } module.exports = matchesStrictComparable; /***/ }), /* 182 */ /***/ (function(module, exports, __webpack_require__) { var baseHasIn = __webpack_require__(261), hasPath = __webpack_require__(91); /** * Checks if `path` is a direct or inherited property of `object`. * * @static * @memberOf _ * @since 4.0.0 * @category Object * @param {Object} object The object to query. * @param {Array|string} path The path to check. * @returns {boolean} Returns `true` if `path` exists, else `false`. * @example * * var object = _.create({ 'a': _.create({ 'b': 2 }) }); * * _.hasIn(object, 'a'); * // => true * * _.hasIn(object, 'a.b'); * // => true * * _.hasIn(object, ['a', 'b']); * // => true * * _.hasIn(object, 'b'); * // => false */ function hasIn(object, path) { return object != null && hasPath(object, path, baseHasIn); } module.exports = hasIn; /***/ }), /* 183 */ /***/ (function(module, exports, __webpack_require__) { var baseEach = __webpack_require__(73), isArrayLike = __webpack_require__(11); /** * The base implementation of `_.map` without support for iteratee shorthands. * * @private * @param {Array|Object} collection The collection to iterate over. * @param {Function} iteratee The function invoked per iteration. * @returns {Array} Returns the new mapped array. */ function baseMap(collection, iteratee) { var index = -1, result = isArrayLike(collection) ? Array(collection.length) : []; baseEach(collection, function(value, key, collection) { result[++index] = iteratee(value, key, collection); }); return result; } module.exports = baseMap; /***/ }), /* 184 */ /***/ (function(module, exports, __webpack_require__) { var baseGetTag = __webpack_require__(8), isObjectLike = __webpack_require__(7); /** `Object#toString` result references. */ var numberTag = '[object Number]'; /** * Checks if `value` is classified as a `Number` primitive or object. * * **Note:** To exclude `Infinity`, `-Infinity`, and `NaN`, which are * classified as numbers, use the `_.isFinite` method. * * @static * @memberOf _ * @since 0.1.0 * @category Lang * @param {*} value The value to check. * @returns {boolean} Returns `true` if `value` is a number, else `false`. * @example * * _.isNumber(3); * // => true * * _.isNumber(Number.MIN_VALUE); * // => true * * _.isNumber(Infinity); * // => true * * _.isNumber('3'); * // => false */ function isNumber(value) { return typeof value == 'number' || (isObjectLike(value) && baseGetTag(value) == numberTag); } module.exports = isNumber; /***/ }), /* 185 */ /***/ (function(module, exports) { /** * Checks if `value` is `undefined`. * * @static * @since 0.1.0 * @memberOf _ * @category Lang * @param {*} value The value to check. * @returns {boolean} Returns `true` if `value` is `undefined`, else `false`. * @example * * _.isUndefined(void 0); * // => true * * _.isUndefined(null); * // => false */ function isUndefined(value) { return value === undefined; } module.exports = isUndefined; /***/ }), /* 186 */ /***/ (function(module, exports, __webpack_require__) { var baseFindIndex = __webpack_require__(163), baseIteratee = __webpack_require__(13), toInteger = __webpack_require__(51); /* Built-in method references for those with the same name as other `lodash` methods. */ var nativeMax = Math.max; /** * This method is like `_.find` except that it returns the index of the first * element `predicate` returns truthy for instead of the element itself. * * @static * @memberOf _ * @since 1.1.0 * @category Array * @param {Array} array The array to inspect. * @param {Function} [predicate=_.identity] The function invoked per iteration. * @param {number} [fromIndex=0] The index to search from. * @returns {number} Returns the index of the found element, else `-1`. * @example * * var users = [ * { 'user': 'barney', 'active': false }, * { 'user': 'fred', 'active': false }, * { 'user': 'pebbles', 'active': true } * ]; * * _.findIndex(users, function(o) { return o.user == 'barney'; }); * // => 0 * * // The `_.matches` iteratee shorthand. * _.findIndex(users, { 'user': 'fred', 'active': false }); * // => 1 * * // The `_.matchesProperty` iteratee shorthand. * _.findIndex(users, ['active', false]); * // => 0 * * // The `_.property` iteratee shorthand. * _.findIndex(users, 'active'); * // => 2 */ function findIndex(array, predicate, fromIndex) { var length = array == null ? 0 : array.length; if (!length) { return -1; } var index = fromIndex == null ? 0 : toInteger(fromIndex); if (index < 0) { index = nativeMax(length + index, 0); } return baseFindIndex(array, baseIteratee(predicate, 3), index); } module.exports = findIndex; /***/ }), /* 187 */ /***/ (function(module, exports, __webpack_require__) { var baseToString = __webpack_require__(66), castSlice = __webpack_require__(268), charsEndIndex = __webpack_require__(269), charsStartIndex = __webpack_require__(270), stringToArray = __webpack_require__(271), toString = __webpack_require__(65); /** Used to match leading and trailing whitespace. */ var reTrim = /^\s+|\s+$/g; /** * Removes leading and trailing whitespace or specified characters from `string`. * * @static * @memberOf _ * @since 3.0.0 * @category String * @param {string} [string=''] The string to trim. * @param {string} [chars=whitespace] The characters to trim. * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`. * @returns {string} Returns the trimmed string. * @example * * _.trim(' abc '); * // => 'abc' * * _.trim('-_-abc-_-', '_-'); * // => 'abc' * * _.map([' foo ', ' bar '], _.trim); * // => ['foo', 'bar'] */ function trim(string, chars, guard) { string = toString(string); if (string && (guard || chars === undefined)) { return string.replace(reTrim, ''); } if (!string || !(chars = baseToString(chars))) { return string; } var strSymbols = stringToArray(string), chrSymbols = stringToArray(chars), start = charsStartIndex(strSymbols, chrSymbols), end = charsEndIndex(strSymbols, chrSymbols) + 1; return castSlice(strSymbols, start, end).join(''); } module.exports = trim; /***/ }), /* 188 */ /***/ (function(module, exports, __webpack_require__) { var baseRest = __webpack_require__(25), isIterateeCall = __webpack_require__(215); /** * Creates a function like `_.assign`. * * @private * @param {Function} assigner The function to assign values. * @returns {Function} Returns the new assigner function. */ function createAssigner(assigner) { return baseRest(function(object, sources) { var index = -1, length = sources.length, customizer = length > 1 ? sources[length - 1] : undefined, guard = length > 2 ? sources[2] : undefined; customizer = (assigner.length > 3 && typeof customizer == 'function') ? (length--, customizer) : undefined; if (guard && isIterateeCall(sources[0], sources[1], guard)) { customizer = length < 3 ? undefined : customizer; length = 1; } object = Object(object); while (++index < length) { var source = sources[index]; if (source) { assigner(object, source, index, customizer); } } return object; }); } module.exports = createAssigner; /***/ }), /* 189 */ /***/ (function(module, exports, __webpack_require__) { var baseAssignValue = __webpack_require__(47), eq = __webpack_require__(18); /** * This function is like `assignValue` except that it doesn't assign * `undefined` values. * * @private * @param {Object} object The object to modify. * @param {string} key The key of the property to assign. * @param {*} value The value to assign. */ function assignMergeValue(object, key, value) { if ((value !== undefined && !eq(object[key], value)) || (value === undefined && !(key in object))) { baseAssignValue(object, key, value); } } module.exports = assignMergeValue; /***/ }), /* 190 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; var forEach = __webpack_require__(36); var compact = __webpack_require__(283); var indexOf = __webpack_require__(74); var findIndex = __webpack_require__(186); var get = __webpack_require__(72); var sumBy = __webpack_require__(284); var find = __webpack_require__(53); var includes = __webpack_require__(286); var map = __webpack_require__(17); var orderBy = __webpack_require__(104); var defaults = __webpack_require__(102); var merge = __webpack_require__(103); var isArray = __webpack_require__(1); var isFunction = __webpack_require__(19); var partial = __webpack_require__(293); var partialRight = __webpack_require__(309); var formatSort = __webpack_require__(201); var generateHierarchicalTree = __webpack_require__(312); /** * @typedef SearchResults.Facet * @type {object} * @property {string} name name of the attribute in the record * @property {object} data the faceting data: value, number of entries * @property {object} stats undefined unless facet_stats is retrieved from algolia */ /** * @typedef SearchResults.HierarchicalFacet * @type {object} * @property {string} name name of the current value given the hierarchical level, trimmed. * If root node, you get the facet name * @property {number} count number of objects matching this hierarchical value * @property {string} path the current hierarchical value full path * @property {boolean} isRefined `true` if the current value was refined, `false` otherwise * @property {HierarchicalFacet[]} data sub values for the current level */ /** * @typedef SearchResults.FacetValue * @type {object} * @property {string} value the facet value itself * @property {number} count times this facet appears in the results * @property {boolean} isRefined is the facet currently selected * @property {boolean} isExcluded is the facet currently excluded (only for conjunctive facets) */ /** * @typedef Refinement * @type {object} * @property {string} type the type of filter used: * `numeric`, `facet`, `exclude`, `disjunctive`, `hierarchical` * @property {string} attributeName name of the attribute used for filtering * @property {string} name the value of the filter * @property {number} numericValue the value as a number. Only for numeric filters. * @property {string} operator the operator used. Only for numeric filters. * @property {number} count the number of computed hits for this filter. Only on facets. * @property {boolean} exhaustive if the count is exhaustive */ function getIndices(obj) { var indices = {}; forEach(obj, function(val, idx) { indices[val] = idx; }); return indices; } function assignFacetStats(dest, facetStats, key) { if (facetStats && facetStats[key]) { dest.stats = facetStats[key]; } } function findMatchingHierarchicalFacetFromAttributeName(hierarchicalFacets, hierarchicalAttributeName) { return find( hierarchicalFacets, function facetKeyMatchesAttribute(hierarchicalFacet) { return includes(hierarchicalFacet.attributes, hierarchicalAttributeName); } ); } /*eslint-disable */ /** * Constructor for SearchResults * @class * @classdesc SearchResults contains the results of a query to Algolia using the * {@link AlgoliaSearchHelper}. * @param {SearchParameters} state state that led to the response * @param {array.<object>} results the results from algolia client * @example <caption>SearchResults of the first query in * <a href="http://demos.algolia.com/instant-search-demo">the instant search demo</a></caption> { "hitsPerPage": 10, "processingTimeMS": 2, "facets": [ { "name": "type", "data": { "HardGood": 6627, "BlackTie": 550, "Music": 665, "Software": 131, "Game": 456, "Movie": 1571 }, "exhaustive": false }, { "exhaustive": false, "data": { "Free shipping": 5507 }, "name": "shipping" } ], "hits": [ { "thumbnailImage": "http://img.bbystatic.com/BestBuy_US/images/products/1688/1688832_54x108_s.gif", "_highlightResult": { "shortDescription": { "matchLevel": "none", "value": "Safeguard your PC, Mac, Android and iOS devices with comprehensive Internet protection", "matchedWords": [] }, "category": { "matchLevel": "none", "value": "Computer Security Software", "matchedWords": [] }, "manufacturer": { "matchedWords": [], "value": "Webroot", "matchLevel": "none" }, "name": { "value": "Webroot SecureAnywhere Internet Security (3-Device) (1-Year Subscription) - Mac/Windows", "matchedWords": [], "matchLevel": "none" } }, "image": "http://img.bbystatic.com/BestBuy_US/images/products/1688/1688832_105x210_sc.jpg", "shipping": "Free shipping", "bestSellingRank": 4, "shortDescription": "Safeguard your PC, Mac, Android and iOS devices with comprehensive Internet protection", "url": "http://www.bestbuy.com/site/webroot-secureanywhere-internet-security-3-devi…d=1219060687969&skuId=1688832&cmp=RMX&ky=2d3GfEmNIzjA0vkzveHdZEBgpPCyMnLTJ", "name": "Webroot SecureAnywhere Internet Security (3-Device) (1-Year Subscription) - Mac/Windows", "category": "Computer Security Software", "salePrice_range": "1 - 50", "objectID": "1688832", "type": "Software", "customerReviewCount": 5980, "salePrice": 49.99, "manufacturer": "Webroot" }, .... ], "nbHits": 10000, "disjunctiveFacets": [ { "exhaustive": false, "data": { "5": 183, "12": 112, "7": 149, ... }, "name": "customerReviewCount", "stats": { "max": 7461, "avg": 157.939, "min": 1 } }, { "data": { "Printer Ink": 142, "Wireless Speakers": 60, "Point & Shoot Cameras": 48, ... }, "name": "category", "exhaustive": false }, { "exhaustive": false, "data": { "> 5000": 2, "1 - 50": 6524, "501 - 2000": 566, "201 - 500": 1501, "101 - 200": 1360, "2001 - 5000": 47 }, "name": "salePrice_range" }, { "data": { "Dynex™": 202, "Insignia™": 230, "PNY": 72, ... }, "name": "manufacturer", "exhaustive": false } ], "query": "", "nbPages": 100, "page": 0, "index": "bestbuy" } **/ /*eslint-enable */ function SearchResults(state, results) { var mainSubResponse = results[0]; this._rawResults = results; /** * query used to generate the results * @member {string} */ this.query = mainSubResponse.query; /** * The query as parsed by the engine given all the rules. * @member {string} */ this.parsedQuery = mainSubResponse.parsedQuery; /** * all the records that match the search parameters. Each record is * augmented with a new attribute `_highlightResult` * which is an object keyed by attribute and with the following properties: * - `value` : the value of the facet highlighted (html) * - `matchLevel`: full, partial or none depending on how the query terms match * @member {object[]} */ this.hits = mainSubResponse.hits; /** * index where the results come from * @member {string} */ this.index = mainSubResponse.index; /** * number of hits per page requested * @member {number} */ this.hitsPerPage = mainSubResponse.hitsPerPage; /** * total number of hits of this query on the index * @member {number} */ this.nbHits = mainSubResponse.nbHits; /** * total number of pages with respect to the number of hits per page and the total number of hits * @member {number} */ this.nbPages = mainSubResponse.nbPages; /** * current page * @member {number} */ this.page = mainSubResponse.page; /** * sum of the processing time of all the queries * @member {number} */ this.processingTimeMS = sumBy(results, 'processingTimeMS'); /** * The position if the position was guessed by IP. * @member {string} * @example "48.8637,2.3615", */ this.aroundLatLng = mainSubResponse.aroundLatLng; /** * The radius computed by Algolia. * @member {string} * @example "126792922", */ this.automaticRadius = mainSubResponse.automaticRadius; /** * String identifying the server used to serve this request. * @member {string} * @example "c7-use-2.algolia.net", */ this.serverUsed = mainSubResponse.serverUsed; /** * Boolean that indicates if the computation of the counts did time out. * @deprecated * @member {boolean} */ this.timeoutCounts = mainSubResponse.timeoutCounts; /** * Boolean that indicates if the computation of the hits did time out. * @deprecated * @member {boolean} */ this.timeoutHits = mainSubResponse.timeoutHits; /** * True if the counts of the facets is exhaustive * @member {boolean} */ this.exhaustiveFacetsCount = mainSubResponse.exhaustiveFacetsCount; /** * True if the number of hits is exhaustive * @member {boolean} */ this.exhaustiveNbHits = mainSubResponse.exhaustiveNbHits; /** * disjunctive facets results * @member {SearchResults.Facet[]} */ this.disjunctiveFacets = []; /** * disjunctive facets results * @member {SearchResults.HierarchicalFacet[]} */ this.hierarchicalFacets = map(state.hierarchicalFacets, function initFutureTree() { return []; }); /** * other facets results * @member {SearchResults.Facet[]} */ this.facets = []; var disjunctiveFacets = state.getRefinedDisjunctiveFacets(); var facetsIndices = getIndices(state.facets); var disjunctiveFacetsIndices = getIndices(state.disjunctiveFacets); var nextDisjunctiveResult = 1; var self = this; // Since we send request only for disjunctive facets that have been refined, // we get the facets informations from the first, general, response. forEach(mainSubResponse.facets, function(facetValueObject, facetKey) { var hierarchicalFacet = findMatchingHierarchicalFacetFromAttributeName( state.hierarchicalFacets, facetKey ); if (hierarchicalFacet) { // Place the hierarchicalFacet data at the correct index depending on // the attributes order that was defined at the helper initialization var facetIndex = hierarchicalFacet.attributes.indexOf(facetKey); var idxAttributeName = findIndex(state.hierarchicalFacets, {name: hierarchicalFacet.name}); self.hierarchicalFacets[idxAttributeName][facetIndex] = { attribute: facetKey, data: facetValueObject, exhaustive: mainSubResponse.exhaustiveFacetsCount }; } else { var isFacetDisjunctive = indexOf(state.disjunctiveFacets, facetKey) !== -1; var isFacetConjunctive = indexOf(state.facets, facetKey) !== -1; var position; if (isFacetDisjunctive) { position = disjunctiveFacetsIndices[facetKey]; self.disjunctiveFacets[position] = { name: facetKey, data: facetValueObject, exhaustive: mainSubResponse.exhaustiveFacetsCount }; assignFacetStats(self.disjunctiveFacets[position], mainSubResponse.facets_stats, facetKey); } if (isFacetConjunctive) { position = facetsIndices[facetKey]; self.facets[position] = { name: facetKey, data: facetValueObject, exhaustive: mainSubResponse.exhaustiveFacetsCount }; assignFacetStats(self.facets[position], mainSubResponse.facets_stats, facetKey); } } }); // Make sure we do not keep holes within the hierarchical facets this.hierarchicalFacets = compact(this.hierarchicalFacets); // aggregate the refined disjunctive facets forEach(disjunctiveFacets, function(disjunctiveFacet) { var result = results[nextDisjunctiveResult]; var hierarchicalFacet = state.getHierarchicalFacetByName(disjunctiveFacet); // There should be only item in facets. forEach(result.facets, function(facetResults, dfacet) { var position; if (hierarchicalFacet) { position = findIndex(state.hierarchicalFacets, {name: hierarchicalFacet.name}); var attributeIndex = findIndex(self.hierarchicalFacets[position], {attribute: dfacet}); // previous refinements and no results so not able to find it if (attributeIndex === -1) { return; } self.hierarchicalFacets[position][attributeIndex].data = merge( {}, self.hierarchicalFacets[position][attributeIndex].data, facetResults ); } else { position = disjunctiveFacetsIndices[dfacet]; var dataFromMainRequest = mainSubResponse.facets && mainSubResponse.facets[dfacet] || {}; self.disjunctiveFacets[position] = { name: dfacet, data: defaults({}, facetResults, dataFromMainRequest), exhaustive: result.exhaustiveFacetsCount }; assignFacetStats(self.disjunctiveFacets[position], result.facets_stats, dfacet); if (state.disjunctiveFacetsRefinements[dfacet]) { forEach(state.disjunctiveFacetsRefinements[dfacet], function(refinementValue) { // add the disjunctive refinements if it is no more retrieved if (!self.disjunctiveFacets[position].data[refinementValue] && indexOf(state.disjunctiveFacetsRefinements[dfacet], refinementValue) > -1) { self.disjunctiveFacets[position].data[refinementValue] = 0; } }); } } }); nextDisjunctiveResult++; }); // if we have some root level values for hierarchical facets, merge them forEach(state.getRefinedHierarchicalFacets(), function(refinedFacet) { var hierarchicalFacet = state.getHierarchicalFacetByName(refinedFacet); var separator = state._getHierarchicalFacetSeparator(hierarchicalFacet); var currentRefinement = state.getHierarchicalRefinement(refinedFacet); // if we are already at a root refinement (or no refinement at all), there is no // root level values request if (currentRefinement.length === 0 || currentRefinement[0].split(separator).length < 2) { return; } var result = results[nextDisjunctiveResult]; forEach(result.facets, function(facetResults, dfacet) { var position = findIndex(state.hierarchicalFacets, {name: hierarchicalFacet.name}); var attributeIndex = findIndex(self.hierarchicalFacets[position], {attribute: dfacet}); // previous refinements and no results so not able to find it if (attributeIndex === -1) { return; } // when we always get root levels, if the hits refinement is `beers > IPA` (count: 5), // then the disjunctive values will be `beers` (count: 100), // but we do not want to display // | beers (100) // > IPA (5) // We want // | beers (5) // > IPA (5) var defaultData = {}; if (currentRefinement.length > 0) { var root = currentRefinement[0].split(separator)[0]; defaultData[root] = self.hierarchicalFacets[position][attributeIndex].data[root]; } self.hierarchicalFacets[position][attributeIndex].data = defaults( defaultData, facetResults, self.hierarchicalFacets[position][attributeIndex].data ); }); nextDisjunctiveResult++; }); // add the excludes forEach(state.facetsExcludes, function(excludes, facetName) { var position = facetsIndices[facetName]; self.facets[position] = { name: facetName, data: mainSubResponse.facets[facetName], exhaustive: mainSubResponse.exhaustiveFacetsCount }; forEach(excludes, function(facetValue) { self.facets[position] = self.facets[position] || {name: facetName}; self.facets[position].data = self.facets[position].data || {}; self.facets[position].data[facetValue] = 0; }); }); this.hierarchicalFacets = map(this.hierarchicalFacets, generateHierarchicalTree(state)); this.facets = compact(this.facets); this.disjunctiveFacets = compact(this.disjunctiveFacets); this._state = state; } /** * Get a facet object with its name * @deprecated * @param {string} name name of the faceted attribute * @return {SearchResults.Facet} the facet object */ SearchResults.prototype.getFacetByName = function(name) { var predicate = {name: name}; return find(this.facets, predicate) || find(this.disjunctiveFacets, predicate) || find(this.hierarchicalFacets, predicate); }; /** * Get the facet values of a specified attribute from a SearchResults object. * @private * @param {SearchResults} results the search results to search in * @param {string} attribute name of the faceted attribute to search for * @return {array|object} facet values. For the hierarchical facets it is an object. */ function extractNormalizedFacetValues(results, attribute) { var predicate = {name: attribute}; if (results._state.isConjunctiveFacet(attribute)) { var facet = find(results.facets, predicate); if (!facet) return []; return map(facet.data, function(v, k) { return { name: k, count: v, isRefined: results._state.isFacetRefined(attribute, k), isExcluded: results._state.isExcludeRefined(attribute, k) }; }); } else if (results._state.isDisjunctiveFacet(attribute)) { var disjunctiveFacet = find(results.disjunctiveFacets, predicate); if (!disjunctiveFacet) return []; return map(disjunctiveFacet.data, function(v, k) { return { name: k, count: v, isRefined: results._state.isDisjunctiveFacetRefined(attribute, k) }; }); } else if (results._state.isHierarchicalFacet(attribute)) { return find(results.hierarchicalFacets, predicate); } } /** * Sort nodes of a hierarchical facet results * @private * @param {HierarchicalFacet} node node to upon which we want to apply the sort */ function recSort(sortFn, node) { if (!node.data || node.data.length === 0) { return node; } var children = map(node.data, partial(recSort, sortFn)); var sortedChildren = sortFn(children); var newNode = merge({}, node, {data: sortedChildren}); return newNode; } SearchResults.DEFAULT_SORT = ['isRefined:desc', 'count:desc', 'name:asc']; function vanillaSortFn(order, data) { return data.sort(order); } /** * Get a the list of values for a given facet attribute. Those values are sorted * refinement first, descending count (bigger value on top), and name ascending * (alphabetical order). The sort formula can overridden using either string based * predicates or a function. * * This method will return all the values returned by the Algolia engine plus all * the values already refined. This means that it can happen that the * `maxValuesPerFacet` [configuration](https://www.algolia.com/doc/rest-api/search#param-maxValuesPerFacet) * might not be respected if you have facet values that are already refined. * @param {string} attribute attribute name * @param {object} opts configuration options. * @param {Array.<string> | function} opts.sortBy * When using strings, it consists of * the name of the [FacetValue](#SearchResults.FacetValue) or the * [HierarchicalFacet](#SearchResults.HierarchicalFacet) attributes with the * order (`asc` or `desc`). For example to order the value by count, the * argument would be `['count:asc']`. * * If only the attribute name is specified, the ordering defaults to the one * specified in the default value for this attribute. * * When not specified, the order is * ascending. This parameter can also be a function which takes two facet * values and should return a number, 0 if equal, 1 if the first argument is * bigger or -1 otherwise. * * The default value for this attribute `['isRefined:desc', 'count:desc', 'name:asc']` * @return {FacetValue[]|HierarchicalFacet} depending on the type of facet of * the attribute requested (hierarchical, disjunctive or conjunctive) * @example * helper.on('results', function(content){ * //get values ordered only by name ascending using the string predicate * content.getFacetValues('city', {sortBy: ['name:asc']}); * //get values ordered only by count ascending using a function * content.getFacetValues('city', { * // this is equivalent to ['count:asc'] * sortBy: function(a, b) { * if (a.count === b.count) return 0; * if (a.count > b.count) return 1; * if (b.count > a.count) return -1; * } * }); * }); */ SearchResults.prototype.getFacetValues = function(attribute, opts) { var facetValues = extractNormalizedFacetValues(this, attribute); if (!facetValues) throw new Error(attribute + ' is not a retrieved facet.'); var options = defaults({}, opts, {sortBy: SearchResults.DEFAULT_SORT}); if (isArray(options.sortBy)) { var order = formatSort(options.sortBy, SearchResults.DEFAULT_SORT); if (isArray(facetValues)) { return orderBy(facetValues, order[0], order[1]); } // If facetValues is not an array, it's an object thus a hierarchical facet object return recSort(partialRight(orderBy, order[0], order[1]), facetValues); } else if (isFunction(options.sortBy)) { if (isArray(facetValues)) { return facetValues.sort(options.sortBy); } // If facetValues is not an array, it's an object thus a hierarchical facet object return recSort(partial(vanillaSortFn, options.sortBy), facetValues); } throw new Error( 'options.sortBy is optional but if defined it must be ' + 'either an array of string (predicates) or a sorting function' ); }; /** * Returns the facet stats if attribute is defined and the facet contains some. * Otherwise returns undefined. * @param {string} attribute name of the faceted attribute * @return {object} The stats of the facet */ SearchResults.prototype.getFacetStats = function(attribute) { if (this._state.isConjunctiveFacet(attribute)) { return getFacetStatsIfAvailable(this.facets, attribute); } else if (this._state.isDisjunctiveFacet(attribute)) { return getFacetStatsIfAvailable(this.disjunctiveFacets, attribute); } throw new Error(attribute + ' is not present in `facets` or `disjunctiveFacets`'); }; function getFacetStatsIfAvailable(facetList, facetName) { var data = find(facetList, {name: facetName}); return data && data.stats; } /** * Returns all refinements for all filters + tags. It also provides * additional information: count and exhausistivity for each filter. * * See the [refinement type](#Refinement) for an exhaustive view of the available * data. * * @return {Array.<Refinement>} all the refinements */ SearchResults.prototype.getRefinements = function() { var state = this._state; var results = this; var res = []; forEach(state.facetsRefinements, function(refinements, attributeName) { forEach(refinements, function(name) { res.push(getRefinement(state, 'facet', attributeName, name, results.facets)); }); }); forEach(state.facetsExcludes, function(refinements, attributeName) { forEach(refinements, function(name) { res.push(getRefinement(state, 'exclude', attributeName, name, results.facets)); }); }); forEach(state.disjunctiveFacetsRefinements, function(refinements, attributeName) { forEach(refinements, function(name) { res.push(getRefinement(state, 'disjunctive', attributeName, name, results.disjunctiveFacets)); }); }); forEach(state.hierarchicalFacetsRefinements, function(refinements, attributeName) { forEach(refinements, function(name) { res.push(getHierarchicalRefinement(state, attributeName, name, results.hierarchicalFacets)); }); }); forEach(state.numericRefinements, function(operators, attributeName) { forEach(operators, function(values, operator) { forEach(values, function(value) { res.push({ type: 'numeric', attributeName: attributeName, name: value, numericValue: value, operator: operator }); }); }); }); forEach(state.tagRefinements, function(name) { res.push({type: 'tag', attributeName: '_tags', name: name}); }); return res; }; function getRefinement(state, type, attributeName, name, resultsFacets) { var facet = find(resultsFacets, {name: attributeName}); var count = get(facet, 'data[' + name + ']'); var exhaustive = get(facet, 'exhaustive'); return { type: type, attributeName: attributeName, name: name, count: count || 0, exhaustive: exhaustive || false }; } function getHierarchicalRefinement(state, attributeName, name, resultsFacets) { var facet = find(resultsFacets, {name: attributeName}); var facetDeclaration = state.getHierarchicalFacetByName(attributeName); var splitted = name.split(facetDeclaration.separator); var configuredName = splitted[splitted.length - 1]; for (var i = 0; facet !== undefined && i < splitted.length; ++i) { facet = find(facet.data, {name: splitted[i]}); } var count = get(facet, 'count'); var exhaustive = get(facet, 'exhaustive'); return { type: 'hierarchical', attributeName: attributeName, name: configuredName, count: count || 0, exhaustive: exhaustive || false }; } module.exports = SearchResults; /***/ }), /* 191 */ /***/ (function(module, exports, __webpack_require__) { var identity = __webpack_require__(26), metaMap = __webpack_require__(192); /** * The base implementation of `setData` without support for hot loop shorting. * * @private * @param {Function} func The function to associate metadata with. * @param {*} data The metadata. * @returns {Function} Returns `func`. */ var baseSetData = !metaMap ? identity : function(func, data) { metaMap.set(func, data); return func; }; module.exports = baseSetData; /***/ }), /* 192 */ /***/ (function(module, exports, __webpack_require__) { var WeakMap = __webpack_require__(90); /** Used to store function metadata. */ var metaMap = WeakMap && new WeakMap; module.exports = metaMap; /***/ }), /* 193 */ /***/ (function(module, exports, __webpack_require__) { var composeArgs = __webpack_require__(194), composeArgsRight = __webpack_require__(195), countHolders = __webpack_require__(296), createCtor = __webpack_require__(75), createRecurry = __webpack_require__(196), getHolder = __webpack_require__(54), reorder = __webpack_require__(306), replaceHolders = __webpack_require__(37), root = __webpack_require__(3); /** Used to compose bitmasks for function metadata. */ var WRAP_BIND_FLAG = 1, WRAP_BIND_KEY_FLAG = 2, WRAP_CURRY_FLAG = 8, WRAP_CURRY_RIGHT_FLAG = 16, WRAP_ARY_FLAG = 128, WRAP_FLIP_FLAG = 512; /** * Creates a function that wraps `func` to invoke it with optional `this` * binding of `thisArg`, partial application, and currying. * * @private * @param {Function|string} func The function or method name to wrap. * @param {number} bitmask The bitmask flags. See `createWrap` for more details. * @param {*} [thisArg] The `this` binding of `func`. * @param {Array} [partials] The arguments to prepend to those provided to * the new function. * @param {Array} [holders] The `partials` placeholder indexes. * @param {Array} [partialsRight] The arguments to append to those provided * to the new function. * @param {Array} [holdersRight] The `partialsRight` placeholder indexes. * @param {Array} [argPos] The argument positions of the new function. * @param {number} [ary] The arity cap of `func`. * @param {number} [arity] The arity of `func`. * @returns {Function} Returns the new wrapped function. */ function createHybrid(func, bitmask, thisArg, partials, holders, partialsRight, holdersRight, argPos, ary, arity) { var isAry = bitmask & WRAP_ARY_FLAG, isBind = bitmask & WRAP_BIND_FLAG, isBindKey = bitmask & WRAP_BIND_KEY_FLAG, isCurried = bitmask & (WRAP_CURRY_FLAG | WRAP_CURRY_RIGHT_FLAG), isFlip = bitmask & WRAP_FLIP_FLAG, Ctor = isBindKey ? undefined : createCtor(func); function wrapper() { var length = arguments.length, args = Array(length), index = length; while (index--) { args[index] = arguments[index]; } if (isCurried) { var placeholder = getHolder(wrapper), holdersCount = countHolders(args, placeholder); } if (partials) { args = composeArgs(args, partials, holders, isCurried); } if (partialsRight) { args = composeArgsRight(args, partialsRight, holdersRight, isCurried); } length -= holdersCount; if (isCurried && length < arity) { var newHolders = replaceHolders(args, placeholder); return createRecurry( func, bitmask, createHybrid, wrapper.placeholder, thisArg, args, newHolders, argPos, ary, arity - length ); } var thisBinding = isBind ? thisArg : this, fn = isBindKey ? thisBinding[func] : func; length = args.length; if (argPos) { args = reorder(args, argPos); } else if (isFlip && length > 1) { args.reverse(); } if (isAry && ary < length) { args.length = ary; } if (this && this !== root && this instanceof wrapper) { fn = Ctor || createCtor(fn); } return fn.apply(thisBinding, args); } return wrapper; } module.exports = createHybrid; /***/ }), /* 194 */ /***/ (function(module, exports) { /* Built-in method references for those with the same name as other `lodash` methods. */ var nativeMax = Math.max; /** * Creates an array that is the composition of partially applied arguments, * placeholders, and provided arguments into a single array of arguments. * * @private * @param {Array} args The provided arguments. * @param {Array} partials The arguments to prepend to those provided. * @param {Array} holders The `partials` placeholder indexes. * @params {boolean} [isCurried] Specify composing for a curried function. * @returns {Array} Returns the new array of composed arguments. */ function composeArgs(args, partials, holders, isCurried) { var argsIndex = -1, argsLength = args.length, holdersLength = holders.length, leftIndex = -1, leftLength = partials.length, rangeLength = nativeMax(argsLength - holdersLength, 0), result = Array(leftLength + rangeLength), isUncurried = !isCurried; while (++leftIndex < leftLength) { result[leftIndex] = partials[leftIndex]; } while (++argsIndex < holdersLength) { if (isUncurried || argsIndex < argsLength) { result[holders[argsIndex]] = args[argsIndex]; } } while (rangeLength--) { result[leftIndex++] = args[argsIndex++]; } return result; } module.exports = composeArgs; /***/ }), /* 195 */ /***/ (function(module, exports) { /* Built-in method references for those with the same name as other `lodash` methods. */ var nativeMax = Math.max; /** * This function is like `composeArgs` except that the arguments composition * is tailored for `_.partialRight`. * * @private * @param {Array} args The provided arguments. * @param {Array} partials The arguments to append to those provided. * @param {Array} holders The `partials` placeholder indexes. * @params {boolean} [isCurried] Specify composing for a curried function. * @returns {Array} Returns the new array of composed arguments. */ function composeArgsRight(args, partials, holders, isCurried) { var argsIndex = -1, argsLength = args.length, holdersIndex = -1, holdersLength = holders.length, rightIndex = -1, rightLength = partials.length, rangeLength = nativeMax(argsLength - holdersLength, 0), result = Array(rangeLength + rightLength), isUncurried = !isCurried; while (++argsIndex < rangeLength) { result[argsIndex] = args[argsIndex]; } var offset = argsIndex; while (++rightIndex < rightLength) { result[offset + rightIndex] = partials[rightIndex]; } while (++holdersIndex < holdersLength) { if (isUncurried || argsIndex < argsLength) { result[offset + holders[holdersIndex]] = args[argsIndex++]; } } return result; } module.exports = composeArgsRight; /***/ }), /* 196 */ /***/ (function(module, exports, __webpack_require__) { var isLaziable = __webpack_require__(297), setData = __webpack_require__(199), setWrapToString = __webpack_require__(200); /** Used to compose bitmasks for function metadata. */ var WRAP_BIND_FLAG = 1, WRAP_BIND_KEY_FLAG = 2, WRAP_CURRY_BOUND_FLAG = 4, WRAP_CURRY_FLAG = 8, WRAP_PARTIAL_FLAG = 32, WRAP_PARTIAL_RIGHT_FLAG = 64; /** * Creates a function that wraps `func` to continue currying. * * @private * @param {Function} func The function to wrap. * @param {number} bitmask The bitmask flags. See `createWrap` for more details. * @param {Function} wrapFunc The function to create the `func` wrapper. * @param {*} placeholder The placeholder value. * @param {*} [thisArg] The `this` binding of `func`. * @param {Array} [partials] The arguments to prepend to those provided to * the new function. * @param {Array} [holders] The `partials` placeholder indexes. * @param {Array} [argPos] The argument positions of the new function. * @param {number} [ary] The arity cap of `func`. * @param {number} [arity] The arity of `func`. * @returns {Function} Returns the new wrapped function. */ function createRecurry(func, bitmask, wrapFunc, placeholder, thisArg, partials, holders, argPos, ary, arity) { var isCurry = bitmask & WRAP_CURRY_FLAG, newHolders = isCurry ? holders : undefined, newHoldersRight = isCurry ? undefined : holders, newPartials = isCurry ? partials : undefined, newPartialsRight = isCurry ? undefined : partials; bitmask |= (isCurry ? WRAP_PARTIAL_FLAG : WRAP_PARTIAL_RIGHT_FLAG); bitmask &= ~(isCurry ? WRAP_PARTIAL_RIGHT_FLAG : WRAP_PARTIAL_FLAG); if (!(bitmask & WRAP_CURRY_BOUND_FLAG)) { bitmask &= ~(WRAP_BIND_FLAG | WRAP_BIND_KEY_FLAG); } var newData = [ func, bitmask, thisArg, newPartials, newHolders, newPartialsRight, newHoldersRight, argPos, ary, arity ]; var result = wrapFunc.apply(undefined, newData); if (isLaziable(func)) { setData(result, newData); } result.placeholder = placeholder; return setWrapToString(result, func, bitmask); } module.exports = createRecurry; /***/ }), /* 197 */ /***/ (function(module, exports, __webpack_require__) { var metaMap = __webpack_require__(192), noop = __webpack_require__(298); /** * Gets metadata for `func`. * * @private * @param {Function} func The function to query. * @returns {*} Returns the metadata for `func`. */ var getData = !metaMap ? noop : function(func) { return metaMap.get(func); }; module.exports = getData; /***/ }), /* 198 */ /***/ (function(module, exports, __webpack_require__) { var baseCreate = __webpack_require__(70), baseLodash = __webpack_require__(107); /** * The base constructor for creating `lodash` wrapper objects. * * @private * @param {*} value The value to wrap. * @param {boolean} [chainAll] Enable explicit method chain sequences. */ function LodashWrapper(value, chainAll) { this.__wrapped__ = value; this.__actions__ = []; this.__chain__ = !!chainAll; this.__index__ = 0; this.__values__ = undefined; } LodashWrapper.prototype = baseCreate(baseLodash.prototype); LodashWrapper.prototype.constructor = LodashWrapper; module.exports = LodashWrapper; /***/ }), /* 199 */ /***/ (function(module, exports, __webpack_require__) { var baseSetData = __webpack_require__(191), shortOut = __webpack_require__(169); /** * Sets metadata for `func`. * * **Note:** If this function becomes hot, i.e. is invoked a lot in a short * period of time, it will trip its breaker and transition to an identity * function to avoid garbage collection pauses in V8. See * [V8 issue 2070](https://bugs.chromium.org/p/v8/issues/detail?id=2070) * for more details. * * @private * @param {Function} func The function to associate metadata with. * @param {*} data The metadata. * @returns {Function} Returns `func`. */ var setData = shortOut(baseSetData); module.exports = setData; /***/ }), /* 200 */ /***/ (function(module, exports, __webpack_require__) { var getWrapDetails = __webpack_require__(303), insertWrapDetails = __webpack_require__(304), setToString = __webpack_require__(93), updateWrapDetails = __webpack_require__(305); /** * Sets the `toString` method of `wrapper` to mimic the source of `reference` * with wrapper details in a comment at the top of the source body. * * @private * @param {Function} wrapper The function to modify. * @param {Function} reference The reference function. * @param {number} bitmask The bitmask flags. See `createWrap` for more details. * @returns {Function} Returns `wrapper`. */ function setWrapToString(wrapper, reference, bitmask) { var source = (reference + ''); return setToString(wrapper, insertWrapDetails(source, updateWrapDetails(getWrapDetails(source), bitmask))); } module.exports = setWrapToString; /***/ }), /* 201 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; var reduce = __webpack_require__(50); var find = __webpack_require__(53); var startsWith = __webpack_require__(310); /** * Transform sort format from user friendly notation to lodash format * @param {string[]} sortBy array of predicate of the form "attribute:order" * @return {array.<string[]>} array containing 2 elements : attributes, orders */ module.exports = function formatSort(sortBy, defaults) { return reduce(sortBy, function preparePredicate(out, sortInstruction) { var sortInstructions = sortInstruction.split(':'); if (defaults && sortInstructions.length === 1) { var similarDefault = find(defaults, function(predicate) { return startsWith(predicate, sortInstruction[0]); }); if (similarDefault) { sortInstructions = similarDefault.split(':'); } } out[0].push(sortInstructions[0]); out[1].push(sortInstructions[1]); return out; }, [[], []]); }; /***/ }), /* 202 */ /***/ (function(module, exports, __webpack_require__) { var baseGet = __webpack_require__(71), baseSet = __webpack_require__(314), castPath = __webpack_require__(22); /** * The base implementation of `_.pickBy` without support for iteratee shorthands. * * @private * @param {Object} object The source object. * @param {string[]} paths The property paths to pick. * @param {Function} predicate The function invoked per property. * @returns {Object} Returns the new object. */ function basePickBy(object, paths, predicate) { var index = -1, length = paths.length, result = {}; while (++index < length) { var path = paths[index], value = baseGet(object, path); if (predicate(value, path)) { baseSet(result, castPath(path, object), value); } } return result; } module.exports = basePickBy; /***/ }), /* 203 */ /***/ (function(module, exports, __webpack_require__) { /* WEBPACK VAR INJECTION */(function(global, process) {// Copyright Joyent, Inc. and other Node contributors. // // Permission is hereby granted, free of charge, to any person obtaining a // copy of this software and associated documentation files (the // "Software"), to deal in the Software without restriction, including // without limitation the rights to use, copy, modify, merge, publish, // distribute, sublicense, and/or sell copies of the Software, and to permit // persons to whom the Software is furnished to do so, subject to the // following conditions: // // The above copyright notice and this permission notice shall be included // in all copies or substantial portions of the Software. // // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS // OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN // NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, // DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR // OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE // USE OR OTHER DEALINGS IN THE SOFTWARE. var formatRegExp = /%[sdj%]/g; exports.format = function(f) { if (!isString(f)) { var objects = []; for (var i = 0; i < arguments.length; i++) { objects.push(inspect(arguments[i])); } return objects.join(' '); } var i = 1; var args = arguments; var len = args.length; var str = String(f).replace(formatRegExp, function(x) { if (x === '%%') return '%'; if (i >= len) return x; switch (x) { case '%s': return String(args[i++]); case '%d': return Number(args[i++]); case '%j': try { return JSON.stringify(args[i++]); } catch (_) { return '[Circular]'; } default: return x; } }); for (var x = args[i]; i < len; x = args[++i]) { if (isNull(x) || !isObject(x)) { str += ' ' + x; } else { str += ' ' + inspect(x); } } return str; }; // Mark that a method should not be used. // Returns a modified function which warns once by default. // If --no-deprecation is set, then it is a no-op. exports.deprecate = function(fn, msg) { // Allow for deprecating things in the process of starting up. if (isUndefined(global.process)) { return function() { return exports.deprecate(fn, msg).apply(this, arguments); }; } if (process.noDeprecation === true) { return fn; } var warned = false; function deprecated() { if (!warned) { if (process.throwDeprecation) { throw new Error(msg); } else if (process.traceDeprecation) { console.trace(msg); } else { console.error(msg); } warned = true; } return fn.apply(this, arguments); } return deprecated; }; var debugs = {}; var debugEnviron; exports.debuglog = function(set) { if (isUndefined(debugEnviron)) debugEnviron = process.env.NODE_DEBUG || ''; set = set.toUpperCase(); if (!debugs[set]) { if (new RegExp('\\b' + set + '\\b', 'i').test(debugEnviron)) { var pid = process.pid; debugs[set] = function() { var msg = exports.format.apply(exports, arguments); console.error('%s %d: %s', set, pid, msg); }; } else { debugs[set] = function() {}; } } return debugs[set]; }; /** * Echos the value of a value. Trys to print the value out * in the best way possible given the different types. * * @param {Object} obj The object to print out. * @param {Object} opts Optional options object that alters the output. */ /* legacy: obj, showHidden, depth, colors*/ function inspect(obj, opts) { // default options var ctx = { seen: [], stylize: stylizeNoColor }; // legacy... if (arguments.length >= 3) ctx.depth = arguments[2]; if (arguments.length >= 4) ctx.colors = arguments[3]; if (isBoolean(opts)) { // legacy... ctx.showHidden = opts; } else if (opts) { // got an "options" object exports._extend(ctx, opts); } // set default options if (isUndefined(ctx.showHidden)) ctx.showHidden = false; if (isUndefined(ctx.depth)) ctx.depth = 2; if (isUndefined(ctx.colors)) ctx.colors = false; if (isUndefined(ctx.customInspect)) ctx.customInspect = true; if (ctx.colors) ctx.stylize = stylizeWithColor; return formatValue(ctx, obj, ctx.depth); } exports.inspect = inspect; // http://en.wikipedia.org/wiki/ANSI_escape_code#graphics inspect.colors = { 'bold' : [1, 22], 'italic' : [3, 23], 'underline' : [4, 24], 'inverse' : [7, 27], 'white' : [37, 39], 'grey' : [90, 39], 'black' : [30, 39], 'blue' : [34, 39], 'cyan' : [36, 39], 'green' : [32, 39], 'magenta' : [35, 39], 'red' : [31, 39], 'yellow' : [33, 39] }; // Don't use 'blue' not visible on cmd.exe inspect.styles = { 'special': 'cyan', 'number': 'yellow', 'boolean': 'yellow', 'undefined': 'grey', 'null': 'bold', 'string': 'green', 'date': 'magenta', // "name": intentionally not styling 'regexp': 'red' }; function stylizeWithColor(str, styleType) { var style = inspect.styles[styleType]; if (style) { return '\u001b[' + inspect.colors[style][0] + 'm' + str + '\u001b[' + inspect.colors[style][1] + 'm'; } else { return str; } } function stylizeNoColor(str, styleType) { return str; } function arrayToHash(array) { var hash = {}; array.forEach(function(val, idx) { hash[val] = true; }); return hash; } function formatValue(ctx, value, recurseTimes) { // Provide a hook for user-specified inspect functions. // Check that value is an object with an inspect function on it if (ctx.customInspect && value && isFunction(value.inspect) && // Filter out the util module, it's inspect function is special value.inspect !== exports.inspect && // Also filter out any prototype objects using the circular check. !(value.constructor && value.constructor.prototype === value)) { var ret = value.inspect(recurseTimes, ctx); if (!isString(ret)) { ret = formatValue(ctx, ret, recurseTimes); } return ret; } // Primitive types cannot have properties var primitive = formatPrimitive(ctx, value); if (primitive) { return primitive; } // Look up the keys of the object. var keys = Object.keys(value); var visibleKeys = arrayToHash(keys); if (ctx.showHidden) { keys = Object.getOwnPropertyNames(value); } // IE doesn't make error fields non-enumerable // http://msdn.microsoft.com/en-us/library/ie/dww52sbt(v=vs.94).aspx if (isError(value) && (keys.indexOf('message') >= 0 || keys.indexOf('description') >= 0)) { return formatError(value); } // Some type of object without properties can be shortcutted. if (keys.length === 0) { if (isFunction(value)) { var name = value.name ? ': ' + value.name : ''; return ctx.stylize('[Function' + name + ']', 'special'); } if (isRegExp(value)) { return ctx.stylize(RegExp.prototype.toString.call(value), 'regexp'); } if (isDate(value)) { return ctx.stylize(Date.prototype.toString.call(value), 'date'); } if (isError(value)) { return formatError(value); } } var base = '', array = false, braces = ['{', '}']; // Make Array say that they are Array if (isArray(value)) { array = true; braces = ['[', ']']; } // Make functions say that they are functions if (isFunction(value)) { var n = value.name ? ': ' + value.name : ''; base = ' [Function' + n + ']'; } // Make RegExps say that they are RegExps if (isRegExp(value)) { base = ' ' + RegExp.prototype.toString.call(value); } // Make dates with properties first say the date if (isDate(value)) { base = ' ' + Date.prototype.toUTCString.call(value); } // Make error with message first say the error if (isError(value)) { base = ' ' + formatError(value); } if (keys.length === 0 && (!array || value.length == 0)) { return braces[0] + base + braces[1]; } if (recurseTimes < 0) { if (isRegExp(value)) { return ctx.stylize(RegExp.prototype.toString.call(value), 'regexp'); } else { return ctx.stylize('[Object]', 'special'); } } ctx.seen.push(value); var output; if (array) { output = formatArray(ctx, value, recurseTimes, visibleKeys, keys); } else { output = keys.map(function(key) { return formatProperty(ctx, value, recurseTimes, visibleKeys, key, array); }); } ctx.seen.pop(); return reduceToSingleString(output, base, braces); } function formatPrimitive(ctx, value) { if (isUndefined(value)) return ctx.stylize('undefined', 'undefined'); if (isString(value)) { var simple = '\'' + JSON.stringify(value).replace(/^"|"$/g, '') .replace(/'/g, "\\'") .replace(/\\"/g, '"') + '\''; return ctx.stylize(simple, 'string'); } if (isNumber(value)) return ctx.stylize('' + value, 'number'); if (isBoolean(value)) return ctx.stylize('' + value, 'boolean'); // For some reason typeof null is "object", so special case here. if (isNull(value)) return ctx.stylize('null', 'null'); } function formatError(value) { return '[' + Error.prototype.toString.call(value) + ']'; } function formatArray(ctx, value, recurseTimes, visibleKeys, keys) { var output = []; for (var i = 0, l = value.length; i < l; ++i) { if (hasOwnProperty(value, String(i))) { output.push(formatProperty(ctx, value, recurseTimes, visibleKeys, String(i), true)); } else { output.push(''); } } keys.forEach(function(key) { if (!key.match(/^\d+$/)) { output.push(formatProperty(ctx, value, recurseTimes, visibleKeys, key, true)); } }); return output; } function formatProperty(ctx, value, recurseTimes, visibleKeys, key, array) { var name, str, desc; desc = Object.getOwnPropertyDescriptor(value, key) || { value: value[key] }; if (desc.get) { if (desc.set) { str = ctx.stylize('[Getter/Setter]', 'special'); } else { str = ctx.stylize('[Getter]', 'special'); } } else { if (desc.set) { str = ctx.stylize('[Setter]', 'special'); } } if (!hasOwnProperty(visibleKeys, key)) { name = '[' + key + ']'; } if (!str) { if (ctx.seen.indexOf(desc.value) < 0) { if (isNull(recurseTimes)) { str = formatValue(ctx, desc.value, null); } else { str = formatValue(ctx, desc.value, recurseTimes - 1); } if (str.indexOf('\n') > -1) { if (array) { str = str.split('\n').map(function(line) { return ' ' + line; }).join('\n').substr(2); } else { str = '\n' + str.split('\n').map(function(line) { return ' ' + line; }).join('\n'); } } } else { str = ctx.stylize('[Circular]', 'special'); } } if (isUndefined(name)) { if (array && key.match(/^\d+$/)) { return str; } name = JSON.stringify('' + key); if (name.match(/^"([a-zA-Z_][a-zA-Z_0-9]*)"$/)) { name = name.substr(1, name.length - 2); name = ctx.stylize(name, 'name'); } else { name = name.replace(/'/g, "\\'") .replace(/\\"/g, '"') .replace(/(^"|"$)/g, "'"); name = ctx.stylize(name, 'string'); } } return name + ': ' + str; } function reduceToSingleString(output, base, braces) { var numLinesEst = 0; var length = output.reduce(function(prev, cur) { numLinesEst++; if (cur.indexOf('\n') >= 0) numLinesEst++; return prev + cur.replace(/\u001b\[\d\d?m/g, '').length + 1; }, 0); if (length > 60) { return braces[0] + (base === '' ? '' : base + '\n ') + ' ' + output.join(',\n ') + ' ' + braces[1]; } return braces[0] + base + ' ' + output.join(', ') + ' ' + braces[1]; } // NOTE: These type checking functions intentionally don't use `instanceof` // because it is fragile and can be easily faked with `Object.create()`. function isArray(ar) { return Array.isArray(ar); } exports.isArray = isArray; function isBoolean(arg) { return typeof arg === 'boolean'; } exports.isBoolean = isBoolean; function isNull(arg) { return arg === null; } exports.isNull = isNull; function isNullOrUndefined(arg) { return arg == null; } exports.isNullOrUndefined = isNullOrUndefined; function isNumber(arg) { return typeof arg === 'number'; } exports.isNumber = isNumber; function isString(arg) { return typeof arg === 'string'; } exports.isString = isString; function isSymbol(arg) { return typeof arg === 'symbol'; } exports.isSymbol = isSymbol; function isUndefined(arg) { return arg === void 0; } exports.isUndefined = isUndefined; function isRegExp(re) { return isObject(re) && objectToString(re) === '[object RegExp]'; } exports.isRegExp = isRegExp; function isObject(arg) { return typeof arg === 'object' && arg !== null; } exports.isObject = isObject; function isDate(d) { return isObject(d) && objectToString(d) === '[object Date]'; } exports.isDate = isDate; function isError(e) { return isObject(e) && (objectToString(e) === '[object Error]' || e instanceof Error); } exports.isError = isError; function isFunction(arg) { return typeof arg === 'function'; } exports.isFunction = isFunction; function isPrimitive(arg) { return arg === null || typeof arg === 'boolean' || typeof arg === 'number' || typeof arg === 'string' || typeof arg === 'symbol' || // ES6 symbol typeof arg === 'undefined'; } exports.isPrimitive = isPrimitive; exports.isBuffer = __webpack_require__(316); function objectToString(o) { return Object.prototype.toString.call(o); } function pad(n) { return n < 10 ? '0' + n.toString(10) : n.toString(10); } var months = ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec']; // 26 Feb 16:19:34 function timestamp() { var d = new Date(); var time = [pad(d.getHours()), pad(d.getMinutes()), pad(d.getSeconds())].join(':'); return [d.getDate(), months[d.getMonth()], time].join(' '); } // log is just a thin wrapper to console.log that prepends a timestamp exports.log = function() { console.log('%s - %s', timestamp(), exports.format.apply(exports, arguments)); }; /** * Inherit the prototype methods from one constructor into another. * * The Function.prototype.inherits from lang.js rewritten as a standalone * function (not on Function.prototype). NOTE: If this file is to be loaded * during bootstrapping this function needs to be rewritten using some native * functions as prototype setup using normal JavaScript does not work as * expected during bootstrapping (see mirror.js in r114903). * * @param {function} ctor Constructor function which needs to inherit the * prototype. * @param {function} superCtor Constructor function to inherit prototype from. */ exports.inherits = __webpack_require__(317); exports._extend = function(origin, add) { // Don't do anything if add isn't an object if (!add || !isObject(add)) return origin; var keys = Object.keys(add); var i = keys.length; while (i--) { origin[keys[i]] = add[keys[i]]; } return origin; }; function hasOwnProperty(obj, prop) { return Object.prototype.hasOwnProperty.call(obj, prop); } /* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(55), __webpack_require__(109))) /***/ }), /* 204 */ /***/ (function(module, exports) { // Copyright Joyent, Inc. and other Node contributors. // // Permission is hereby granted, free of charge, to any person obtaining a // copy of this software and associated documentation files (the // "Software"), to deal in the Software without restriction, including // without limitation the rights to use, copy, modify, merge, publish, // distribute, sublicense, and/or sell copies of the Software, and to permit // persons to whom the Software is furnished to do so, subject to the // following conditions: // // The above copyright notice and this permission notice shall be included // in all copies or substantial portions of the Software. // // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS // OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN // NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, // DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR // OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE // USE OR OTHER DEALINGS IN THE SOFTWARE. function EventEmitter() { this._events = this._events || {}; this._maxListeners = this._maxListeners || undefined; } module.exports = EventEmitter; // Backwards-compat with node 0.10.x EventEmitter.EventEmitter = EventEmitter; EventEmitter.prototype._events = undefined; EventEmitter.prototype._maxListeners = undefined; // By default EventEmitters will print a warning if more than 10 listeners are // added to it. This is a useful default which helps finding memory leaks. EventEmitter.defaultMaxListeners = 10; // Obviously not all Emitters should be limited to 10. This function allows // that to be increased. Set to zero for unlimited. EventEmitter.prototype.setMaxListeners = function(n) { if (!isNumber(n) || n < 0 || isNaN(n)) throw TypeError('n must be a positive number'); this._maxListeners = n; return this; }; EventEmitter.prototype.emit = function(type) { var er, handler, len, args, i, listeners; if (!this._events) this._events = {}; // If there is no 'error' event listener then throw. if (type === 'error') { if (!this._events.error || (isObject(this._events.error) && !this._events.error.length)) { er = arguments[1]; if (er instanceof Error) { throw er; // Unhandled 'error' event } else { // At least give some kind of context to the user var err = new Error('Uncaught, unspecified "error" event. (' + er + ')'); err.context = er; throw err; } } } handler = this._events[type]; if (isUndefined(handler)) return false; if (isFunction(handler)) { switch (arguments.length) { // fast cases case 1: handler.call(this); break; case 2: handler.call(this, arguments[1]); break; case 3: handler.call(this, arguments[1], arguments[2]); break; // slower default: args = Array.prototype.slice.call(arguments, 1); handler.apply(this, args); } } else if (isObject(handler)) { args = Array.prototype.slice.call(arguments, 1); listeners = handler.slice(); len = listeners.length; for (i = 0; i < len; i++) listeners[i].apply(this, args); } return true; }; EventEmitter.prototype.addListener = function(type, listener) { var m; if (!isFunction(listener)) throw TypeError('listener must be a function'); if (!this._events) this._events = {}; // To avoid recursion in the case that type === "newListener"! Before // adding it to the listeners, first emit "newListener". if (this._events.newListener) this.emit('newListener', type, isFunction(listener.listener) ? listener.listener : listener); if (!this._events[type]) // Optimize the case of one listener. Don't need the extra array object. this._events[type] = listener; else if (isObject(this._events[type])) // If we've already got an array, just append. this._events[type].push(listener); else // Adding the second element, need to change to array. this._events[type] = [this._events[type], listener]; // Check for listener leak if (isObject(this._events[type]) && !this._events[type].warned) { if (!isUndefined(this._maxListeners)) { m = this._maxListeners; } else { m = EventEmitter.defaultMaxListeners; } if (m && m > 0 && this._events[type].length > m) { this._events[type].warned = true; console.error('(node) warning: possible EventEmitter memory ' + 'leak detected. %d listeners added. ' + 'Use emitter.setMaxListeners() to increase limit.', this._events[type].length); if (typeof console.trace === 'function') { // not supported in IE 10 console.trace(); } } } return this; }; EventEmitter.prototype.on = EventEmitter.prototype.addListener; EventEmitter.prototype.once = function(type, listener) { if (!isFunction(listener)) throw TypeError('listener must be a function'); var fired = false; function g() { this.removeListener(type, g); if (!fired) { fired = true; listener.apply(this, arguments); } } g.listener = listener; this.on(type, g); return this; }; // emits a 'removeListener' event iff the listener was removed EventEmitter.prototype.removeListener = function(type, listener) { var list, position, length, i; if (!isFunction(listener)) throw TypeError('listener must be a function'); if (!this._events || !this._events[type]) return this; list = this._events[type]; length = list.length; position = -1; if (list === listener || (isFunction(list.listener) && list.listener === listener)) { delete this._events[type]; if (this._events.removeListener) this.emit('removeListener', type, listener); } else if (isObject(list)) { for (i = length; i-- > 0;) { if (list[i] === listener || (list[i].listener && list[i].listener === listener)) { position = i; break; } } if (position < 0) return this; if (list.length === 1) { list.length = 0; delete this._events[type]; } else { list.splice(position, 1); } if (this._events.removeListener) this.emit('removeListener', type, listener); } return this; }; EventEmitter.prototype.removeAllListeners = function(type) { var key, listeners; if (!this._events) return this; // not listening for removeListener, no need to emit if (!this._events.removeListener) { if (arguments.length === 0) this._events = {}; else if (this._events[type]) delete this._events[type]; return this; } // emit removeListener for all listeners on all events if (arguments.length === 0) { for (key in this._events) { if (key === 'removeListener') continue; this.removeAllListeners(key); } this.removeAllListeners('removeListener'); this._events = {}; return this; } listeners = this._events[type]; if (isFunction(listeners)) { this.removeListener(type, listeners); } else if (listeners) { // LIFO order while (listeners.length) this.removeListener(type, listeners[listeners.length - 1]); } delete this._events[type]; return this; }; EventEmitter.prototype.listeners = function(type) { var ret; if (!this._events || !this._events[type]) ret = []; else if (isFunction(this._events[type])) ret = [this._events[type]]; else ret = this._events[type].slice(); return ret; }; EventEmitter.prototype.listenerCount = function(type) { if (this._events) { var evlistener = this._events[type]; if (isFunction(evlistener)) return 1; else if (evlistener) return evlistener.length; } return 0; }; EventEmitter.listenerCount = function(emitter, type) { return emitter.listenerCount(type); }; function isFunction(arg) { return typeof arg === 'function'; } function isNumber(arg) { return typeof arg === 'number'; } function isObject(arg) { return typeof arg === 'object' && arg !== null; } function isUndefined(arg) { return arg === void 0; } /***/ }), /* 205 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; /** * Module containing the functions to serialize and deserialize * {SearchParameters} in the query string format * @module algoliasearchHelper.url */ var shortener = __webpack_require__(319); var SearchParameters = __webpack_require__(100); var qs = __webpack_require__(322); var bind = __webpack_require__(325); var forEach = __webpack_require__(36); var pick = __webpack_require__(110); var map = __webpack_require__(17); var mapKeys = __webpack_require__(327); var mapValues = __webpack_require__(328); var isString = __webpack_require__(52); var isPlainObject = __webpack_require__(45); var isArray = __webpack_require__(1); var isEmpty = __webpack_require__(15); var invert = __webpack_require__(206); var encode = __webpack_require__(108).encode; function recursiveEncode(input) { if (isPlainObject(input)) { return mapValues(input, recursiveEncode); } if (isArray(input)) { return map(input, recursiveEncode); } if (isString(input)) { return encode(input); } return input; } var refinementsParameters = ['dFR', 'fR', 'nR', 'hFR', 'tR']; var stateKeys = shortener.ENCODED_PARAMETERS; function sortQueryStringValues(prefixRegexp, invertedMapping, a, b) { if (prefixRegexp !== null) { a = a.replace(prefixRegexp, ''); b = b.replace(prefixRegexp, ''); } a = invertedMapping[a] || a; b = invertedMapping[b] || b; if (stateKeys.indexOf(a) !== -1 || stateKeys.indexOf(b) !== -1) { if (a === 'q') return -1; if (b === 'q') return 1; var isARefinements = refinementsParameters.indexOf(a) !== -1; var isBRefinements = refinementsParameters.indexOf(b) !== -1; if (isARefinements && !isBRefinements) { return 1; } else if (isBRefinements && !isARefinements) { return -1; } } return a.localeCompare(b); } /** * Read a query string and return an object containing the state * @param {string} queryString the query string that will be decoded * @param {object} [options] accepted options : * - prefix : the prefix used for the saved attributes, you have to provide the * same that was used for serialization * - mapping : map short attributes to another value e.g. {q: 'query'} * @return {object} partial search parameters object (same properties than in the * SearchParameters but not exhaustive) */ exports.getStateFromQueryString = function(queryString, options) { var prefixForParameters = options && options.prefix || ''; var mapping = options && options.mapping || {}; var invertedMapping = invert(mapping); var partialStateWithPrefix = qs.parse(queryString); var prefixRegexp = new RegExp('^' + prefixForParameters); var partialState = mapKeys( partialStateWithPrefix, function(v, k) { var hasPrefix = prefixForParameters && prefixRegexp.test(k); var unprefixedKey = hasPrefix ? k.replace(prefixRegexp, '') : k; var decodedKey = shortener.decode(invertedMapping[unprefixedKey] || unprefixedKey); return decodedKey || unprefixedKey; } ); var partialStateWithParsedNumbers = SearchParameters._parseNumbers(partialState); return pick(partialStateWithParsedNumbers, SearchParameters.PARAMETERS); }; /** * Retrieve an object of all the properties that are not understandable as helper * parameters. * @param {string} queryString the query string to read * @param {object} [options] the options * - prefixForParameters : prefix used for the helper configuration keys * - mapping : map short attributes to another value e.g. {q: 'query'} * @return {object} the object containing the parsed configuration that doesn't * to the helper */ exports.getUnrecognizedParametersInQueryString = function(queryString, options) { var prefixForParameters = options && options.prefix; var mapping = options && options.mapping || {}; var invertedMapping = invert(mapping); var foreignConfig = {}; var config = qs.parse(queryString); if (prefixForParameters) { var prefixRegexp = new RegExp('^' + prefixForParameters); forEach(config, function(v, key) { if (!prefixRegexp.test(key)) foreignConfig[key] = v; }); } else { forEach(config, function(v, key) { if (!shortener.decode(invertedMapping[key] || key)) foreignConfig[key] = v; }); } return foreignConfig; }; /** * Generate a query string for the state passed according to the options * @param {SearchParameters} state state to serialize * @param {object} [options] May contain the following parameters : * - prefix : prefix in front of the keys * - mapping : map short attributes to another value e.g. {q: 'query'} * - moreAttributes : more values to be added in the query string. Those values * won't be prefixed. * - safe : get safe urls for use in emails, chat apps or any application auto linking urls. * All parameters and values will be encoded in a way that it's safe to share them. * Default to false for legacy reasons () * @return {string} the query string */ exports.getQueryStringFromState = function(state, options) { var moreAttributes = options && options.moreAttributes; var prefixForParameters = options && options.prefix || ''; var mapping = options && options.mapping || {}; var safe = options && options.safe || false; var invertedMapping = invert(mapping); var stateForUrl = safe ? state : recursiveEncode(state); var encodedState = mapKeys( stateForUrl, function(v, k) { var shortK = shortener.encode(k); return prefixForParameters + (mapping[shortK] || shortK); } ); var prefixRegexp = prefixForParameters === '' ? null : new RegExp('^' + prefixForParameters); var sort = bind(sortQueryStringValues, null, prefixRegexp, invertedMapping); if (!isEmpty(moreAttributes)) { var stateQs = qs.stringify(encodedState, {encode: safe, sort: sort}); var moreQs = qs.stringify(moreAttributes, {encode: safe}); if (!stateQs) return moreQs; return stateQs + '&' + moreQs; } return qs.stringify(encodedState, {encode: safe, sort: sort}); }; /***/ }), /* 206 */ /***/ (function(module, exports, __webpack_require__) { var constant = __webpack_require__(167), createInverter = __webpack_require__(320), identity = __webpack_require__(26); /** * Creates an object composed of the inverted keys and values of `object`. * If `object` contains duplicate values, subsequent values overwrite * property assignments of previous values. * * @static * @memberOf _ * @since 0.7.0 * @category Object * @param {Object} object The object to invert. * @returns {Object} Returns the new inverted object. * @example * * var object = { 'a': 1, 'b': 2, 'c': 1 }; * * _.invert(object); * // => { '1': 'c', '2': 'b' } */ var invert = createInverter(function(result, value, key) { result[value] = key; }, constant(identity)); module.exports = invert; /***/ }), /* 207 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; var replace = String.prototype.replace; var percentTwenties = /%20/g; module.exports = { 'default': 'RFC3986', formatters: { RFC1738: function (value) { return replace.call(value, percentTwenties, '+'); }, RFC3986: function (value) { return value; } }, RFC1738: 'RFC1738', RFC3986: 'RFC3986' }; /***/ }), /* 208 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; module.exports = '2.21.2'; /***/ }), /* 209 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var _propTypes = __webpack_require__(0); var _propTypes2 = _interopRequireDefault(_propTypes); var _indexUtils = __webpack_require__(5); var _createConnector = __webpack_require__(2); var _createConnector2 = _interopRequireDefault(_createConnector); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; } /** * connectRange connector provides the logic to create connected * components that will give the ability for a user to refine results using * a numeric range. * @name connectRange * @kind connector * @requirements The attribute passed to the `attributeName` prop must be holding numerical values. * @propType {string} attributeName - Name of the attribute for faceting * @propType {{min: number, max: number}} [defaultRefinement] - Default searchState of the widget containing the start and the end of the range. * @propType {number} [min] - Minimum value. When this isn't set, the minimum value will be automatically computed by Algolia using the data in the index. * @propType {number} [max] - Maximum value. When this isn't set, the maximum value will be automatically computed by Algolia using the data in the index. * @providedPropType {function} refine - a function to select a range. * @providedPropType {function} createURL - a function to generate a URL for the corresponding search state * @providedPropType {string} currentRefinement - the refinement currently applied */ function getId(props) { return props.attributeName; } var namespace = 'range'; function getCurrentRefinement(props, searchState, context) { return (0, _indexUtils.getCurrentRefinementValue)(props, searchState, context, namespace + '.' + getId(props), {}, function (currentRefinement) { var min = currentRefinement.min, max = currentRefinement.max; if (typeof min === 'string') { min = parseInt(min, 10); } if (typeof max === 'string') { max = parseInt(max, 10); } return { min: min, max: max }; }); } function _refine(props, searchState, nextRefinement, context) { if (!isFinite(nextRefinement.min) || !isFinite(nextRefinement.max)) { throw new Error("You can't provide non finite values to the range connector"); } var id = getId(props); var nextValue = _defineProperty({}, id, nextRefinement); var resetPage = true; return (0, _indexUtils.refineValue)(searchState, nextValue, context, resetPage, namespace); } function _cleanUp(props, searchState, context) { return (0, _indexUtils.cleanUpValue)(searchState, context, namespace + '.' + getId(props)); } exports.default = (0, _createConnector2.default)({ displayName: 'AlgoliaRange', propTypes: { id: _propTypes2.default.string, attributeName: _propTypes2.default.string.isRequired, defaultRefinement: _propTypes2.default.shape({ min: _propTypes2.default.number.isRequired, max: _propTypes2.default.number.isRequired }), min: _propTypes2.default.number, max: _propTypes2.default.number }, getProvidedProps: function getProvidedProps(props, searchState, searchResults) { var attributeName = props.attributeName; var min = props.min, max = props.max; var hasMin = typeof min !== 'undefined'; var hasMax = typeof max !== 'undefined'; var results = (0, _indexUtils.getResults)(searchResults, this.context); if (!hasMin || !hasMax) { if (!results) { return { canRefine: false }; } var stats = results.getFacetByName(attributeName) ? results.getFacetStats(attributeName) : null; if (!stats) { return { canRefine: false }; } if (!hasMin) { min = stats.min; } if (!hasMax) { max = stats.max; } } var count = results ? results.getFacetValues(attributeName).map(function (v) { return { value: v.name, count: v.count }; }) : []; var _getCurrentRefinement = getCurrentRefinement(props, searchState, this.context), _getCurrentRefinement2 = _getCurrentRefinement.min, valueMin = _getCurrentRefinement2 === undefined ? min : _getCurrentRefinement2, _getCurrentRefinement3 = _getCurrentRefinement.max, valueMax = _getCurrentRefinement3 === undefined ? max : _getCurrentRefinement3; return { min: min, max: max, currentRefinement: { min: valueMin, max: valueMax }, count: count, canRefine: count.length > 0 }; }, refine: function refine(props, searchState, nextRefinement) { return _refine(props, searchState, nextRefinement, this.context); }, cleanUp: function cleanUp(props, searchState) { return _cleanUp(props, searchState, this.context); }, getSearchParameters: function getSearchParameters(params, props, searchState) { var attributeName = props.attributeName; var currentRefinement = getCurrentRefinement(props, searchState, this.context); params = params.addDisjunctiveFacet(attributeName); var min = currentRefinement.min, max = currentRefinement.max; if (typeof min !== 'undefined') { params = params.addNumericRefinement(attributeName, '>=', min); } if (typeof max !== 'undefined') { params = params.addNumericRefinement(attributeName, '<=', max); } return params; }, getMetadata: function getMetadata(props, searchState) { var _this = this; var id = getId(props); var currentRefinement = getCurrentRefinement(props, searchState, this.context); var item = void 0; var hasMin = typeof currentRefinement.min !== 'undefined'; var hasMax = typeof currentRefinement.max !== 'undefined'; if (hasMin || hasMax) { var itemLabel = ''; if (hasMin) { itemLabel += currentRefinement.min + ' <= '; } itemLabel += props.attributeName; if (hasMax) { itemLabel += ' <= ' + currentRefinement.max; } item = { label: itemLabel, currentRefinement: currentRefinement, attributeName: props.attributeName, value: function value(nextState) { return _cleanUp(props, nextState, _this.context); } }; } return { id: id, index: (0, _indexUtils.getIndex)(this.context), items: item ? [item] : [] }; } }); /***/ }), /* 210 */ /***/ (function(module, exports) { module.exports = function clone(obj) { return JSON.parse(JSON.stringify(obj)); }; /***/ }), /* 211 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var _createConnector = __webpack_require__(2); var _createConnector2 = _interopRequireDefault(_createConnector); var _propTypes = __webpack_require__(0); var _propTypes2 = _interopRequireDefault(_propTypes); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } /** * connectCurrentRefinements connector provides the logic to build a widget that will * give the user the ability to remove all or some of the filters that were * set. * @name connectCurrentRefinements * @kind connector * @propType {function} [transformItems] - Function to modify the items being displayed, e.g. for filtering or sorting them. Takes an items as parameter and expects it back in return. * @propType {function} [clearsQuery=false] - Pass true to also clear the search query * @providedPropType {function} refine - a function to remove a single filter * @providedPropType {array.<{label: string, attributeName: string, currentRefinement: string || object, items: array, value: function}>} items - all the filters, the `value` is to pass to the `refine` function for removing all currentrefinements, `label` is for the display. When existing several refinements for the same atribute name, then you get a nested `items` object that contains a `label` and a `value` function to use to remove a single filter. `attributeName` and `currentRefinement` are metadata containing row values. * @providedPropType {string} query - the search query */ exports.default = (0, _createConnector2.default)({ displayName: 'AlgoliaCurrentRefinements', propTypes: { transformItems: _propTypes2.default.func }, getProvidedProps: function getProvidedProps(props, searchState, searchResults, metadata) { var items = metadata.reduce(function (res, meta) { if (typeof meta.items !== 'undefined') { if (!props.clearsQuery && meta.id === 'query') { return res; } else { if (props.clearsQuery && meta.id === 'query' && meta.items[0].currentRefinement === '') { return res; } return res.concat(meta.items); } } return res; }, []); return { items: props.transformItems ? props.transformItems(items) : items, canRefine: items.length > 0 }; }, refine: function refine(props, searchState, items) { // `value` corresponds to our internal clear function computed in each connector metadata. var refinementsToClear = items instanceof Array ? items.map(function (item) { return item.value; }) : [items]; return refinementsToClear.reduce(function (res, clear) { return clear(res); }, searchState); } }); /***/ }), /* 212 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; var AlgoliaSearchHelper = __webpack_require__(249); var SearchParameters = __webpack_require__(100); var SearchResults = __webpack_require__(190); /** * The algoliasearchHelper module is the function that will let its * contains everything needed to use the Algoliasearch * Helper. It is a also a function that instanciate the helper. * To use the helper, you also need the Algolia JS client v3. * @example * //using the UMD build * var client = algoliasearch('latency', '6be0576ff61c053d5f9a3225e2a90f76'); * var helper = algoliasearchHelper(client, 'bestbuy', { * facets: ['shipping'], * disjunctiveFacets: ['category'] * }); * helper.on('result', function(result) { * console.log(result); * }); * helper.toggleRefine('Movies & TV Shows') * .toggleRefine('Free shipping') * .search(); * @example * // The helper is an event emitter using the node API * helper.on('result', updateTheResults); * helper.once('result', updateTheResults); * helper.removeListener('result', updateTheResults); * helper.removeAllListeners('result'); * @module algoliasearchHelper * @param {AlgoliaSearch} client an AlgoliaSearch client * @param {string} index the name of the index to query * @param {SearchParameters|object} opts an object defining the initial config of the search. It doesn't have to be a {SearchParameters}, just an object containing the properties you need from it. * @return {AlgoliaSearchHelper} */ function algoliasearchHelper(client, index, opts) { return new AlgoliaSearchHelper(client, index, opts); } /** * The version currently used * @member module:algoliasearchHelper.version * @type {number} */ algoliasearchHelper.version = __webpack_require__(208); /** * Constructor for the Helper. * @member module:algoliasearchHelper.AlgoliaSearchHelper * @type {AlgoliaSearchHelper} */ algoliasearchHelper.AlgoliaSearchHelper = AlgoliaSearchHelper; /** * Constructor for the object containing all the parameters of the search. * @member module:algoliasearchHelper.SearchParameters * @type {SearchParameters} */ algoliasearchHelper.SearchParameters = SearchParameters; /** * Constructor for the object containing the results of the search. * @member module:algoliasearchHelper.SearchResults * @type {SearchResults} */ algoliasearchHelper.SearchResults = SearchResults; /** * URL tools to generate query string and parse them from/into * SearchParameters * @member module:algoliasearchHelper.url * @type {object} {@link url} * */ algoliasearchHelper.url = __webpack_require__(205); module.exports = algoliasearchHelper; /***/ }), /* 213 */ /***/ (function(module, exports, __webpack_require__) { var toNumber = __webpack_require__(266); /** Used as references for various `Number` constants. */ var INFINITY = 1 / 0, MAX_INTEGER = 1.7976931348623157e+308; /** * Converts `value` to a finite number. * * @static * @memberOf _ * @since 4.12.0 * @category Lang * @param {*} value The value to convert. * @returns {number} Returns the converted number. * @example * * _.toFinite(3.2); * // => 3.2 * * _.toFinite(Number.MIN_VALUE); * // => 5e-324 * * _.toFinite(Infinity); * // => 1.7976931348623157e+308 * * _.toFinite('3.2'); * // => 3.2 */ function toFinite(value) { if (!value) { return value === 0 ? value : 0; } value = toNumber(value); if (value === INFINITY || value === -INFINITY) { var sign = (value < 0 ? -1 : 1); return sign * MAX_INTEGER; } return value === value ? value : 0; } module.exports = toFinite; /***/ }), /* 214 */ /***/ (function(module, exports, __webpack_require__) { var isNumber = __webpack_require__(184); /** * Checks if `value` is `NaN`. * * **Note:** This method is based on * [`Number.isNaN`](https://mdn.io/Number/isNaN) and is not the same as * global [`isNaN`](https://mdn.io/isNaN) which returns `true` for * `undefined` and other non-number values. * * @static * @memberOf _ * @since 0.1.0 * @category Lang * @param {*} value The value to check. * @returns {boolean} Returns `true` if `value` is `NaN`, else `false`. * @example * * _.isNaN(NaN); * // => true * * _.isNaN(new Number(NaN)); * // => true * * isNaN(undefined); * // => true * * _.isNaN(undefined); * // => false */ function isNaN(value) { // An `NaN` primitive is the only value that is not equal to itself. // Perform the `toStringTag` check first to avoid errors with some // ActiveX objects in IE. return isNumber(value) && value != +value; } module.exports = isNaN; /***/ }), /* 215 */ /***/ (function(module, exports, __webpack_require__) { var eq = __webpack_require__(18), isArrayLike = __webpack_require__(11), isIndex = __webpack_require__(32), isObject = __webpack_require__(6); /** * Checks if the given arguments are from an iteratee call. * * @private * @param {*} value The potential iteratee value argument. * @param {*} index The potential iteratee index or key argument. * @param {*} object The potential iteratee object argument. * @returns {boolean} Returns `true` if the arguments are from an iteratee call, * else `false`. */ function isIterateeCall(value, index, object) { if (!isObject(object)) { return false; } var type = typeof index; if (type == 'number' ? (isArrayLike(object) && isIndex(index, object.length)) : (type == 'string' && index in object) ) { return eq(object[index], value); } return false; } module.exports = isIterateeCall; /***/ }), /* 216 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }(); var _propTypes = __webpack_require__(0); var _propTypes2 = _interopRequireDefault(_propTypes); var _react = __webpack_require__(4); var _react2 = _interopRequireDefault(_react); var _SearchBox = __webpack_require__(347); var _SearchBox2 = _interopRequireDefault(_SearchBox); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; } function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; } var itemsPropType = _propTypes2.default.arrayOf(_propTypes2.default.shape({ value: _propTypes2.default.any, label: _propTypes2.default.node.isRequired, items: function items() { return itemsPropType.apply(undefined, arguments); } })); var List = function (_Component) { _inherits(List, _Component); function List() { _classCallCheck(this, List); var _this = _possibleConstructorReturn(this, (List.__proto__ || Object.getPrototypeOf(List)).call(this)); _this.defaultProps = { isFromSearch: false }; _this.onShowMoreClick = function () { _this.setState(function (state) { return { extended: !state.extended }; }); }; _this.getLimit = function () { var _this$props = _this.props, limitMin = _this$props.limitMin, limitMax = _this$props.limitMax; var extended = _this.state.extended; return extended ? limitMax : limitMin; }; _this.resetQuery = function () { _this.setState({ query: '' }); }; _this.renderItem = function (item, resetQuery) { var items = item.items && _react2.default.createElement( 'div', _this.props.cx('itemItems'), item.items.slice(0, _this.getLimit()).map(function (child) { return _this.renderItem(child, item); }) ); return _react2.default.createElement( 'div', _extends({ key: item.key || item.label }, _this.props.cx('item', item.isRefined && 'itemSelected', item.noRefinement && 'itemNoRefinement', items && 'itemParent', items && item.isRefined && 'itemSelectedParent')), _this.props.renderItem(item, resetQuery), items ); }; _this.state = { extended: false, query: '' }; return _this; } _createClass(List, [{ key: 'renderShowMore', value: function renderShowMore() { var _props = this.props, showMore = _props.showMore, translate = _props.translate, cx = _props.cx; var extended = this.state.extended; var disabled = this.props.limitMin >= this.props.items.length; if (!showMore) { return null; } return _react2.default.createElement( 'button', _extends({ disabled: disabled }, cx('showMore', disabled && 'showMoreDisabled'), { onClick: this.onShowMoreClick }), translate('showMore', extended) ); } }, { key: 'renderSearchBox', value: function renderSearchBox() { var _this2 = this; var _props2 = this.props, cx = _props2.cx, searchForItems = _props2.searchForItems, isFromSearch = _props2.isFromSearch, translate = _props2.translate, items = _props2.items, selectItem = _props2.selectItem; var noResults = items.length === 0 && this.state.query !== '' ? _react2.default.createElement( 'div', cx('noResults'), translate('noResults') ) : null; return _react2.default.createElement( 'div', cx('SearchBox'), _react2.default.createElement(_SearchBox2.default, { currentRefinement: this.state.query, refine: function refine(value) { _this2.setState({ query: value }); searchForItems(value); }, focusShortcuts: [], translate: translate, onSubmit: function onSubmit(e) { e.preventDefault(); e.stopPropagation(); if (isFromSearch) { selectItem(items[0], _this2.resetQuery); } } }), noResults ); } }, { key: 'render', value: function render() { var _this3 = this; var _props3 = this.props, cx = _props3.cx, items = _props3.items, withSearchBox = _props3.withSearchBox, canRefine = _props3.canRefine; var searchBox = withSearchBox ? this.renderSearchBox() : null; if (items.length === 0) { return _react2.default.createElement( 'div', cx('root', !canRefine && 'noRefinement'), searchBox ); } // Always limit the number of items we show on screen, since the actual // number of retrieved items might vary with the `maxValuesPerFacet` config // option. var limit = this.getLimit(); return _react2.default.createElement( 'div', cx('root', !this.props.canRefine && 'noRefinement'), searchBox, _react2.default.createElement( 'div', cx('items'), items.slice(0, limit).map(function (item) { return _this3.renderItem(item, _this3.resetQuery); }) ), this.renderShowMore() ); } }]); return List; }(_react.Component); List.propTypes = { cx: _propTypes2.default.func.isRequired, // Only required with showMore. translate: _propTypes2.default.func, items: itemsPropType, renderItem: _propTypes2.default.func.isRequired, selectItem: _propTypes2.default.func, showMore: _propTypes2.default.bool, limitMin: _propTypes2.default.number, limitMax: _propTypes2.default.number, limit: _propTypes2.default.number, show: _propTypes2.default.func, searchForItems: _propTypes2.default.func, withSearchBox: _propTypes2.default.bool, isFromSearch: _propTypes2.default.bool, canRefine: _propTypes2.default.bool }; exports.default = List; /***/ }), /* 217 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var _omit2 = __webpack_require__(35); var _omit3 = _interopRequireDefault(_omit2); var _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }(); var _propTypes = __webpack_require__(0); var _propTypes2 = _interopRequireDefault(_propTypes); var _react = __webpack_require__(4); var _react2 = _interopRequireDefault(_react); var _utils = __webpack_require__(44); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; } function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; } var Link = function (_Component) { _inherits(Link, _Component); function Link() { var _ref; var _temp, _this, _ret; _classCallCheck(this, Link); for (var _len = arguments.length, args = Array(_len), _key = 0; _key < _len; _key++) { args[_key] = arguments[_key]; } return _ret = (_temp = (_this = _possibleConstructorReturn(this, (_ref = Link.__proto__ || Object.getPrototypeOf(Link)).call.apply(_ref, [this].concat(args))), _this), _this.onClick = function (e) { if ((0, _utils.isSpecialClick)(e)) { return; } _this.props.onClick(); e.preventDefault(); }, _temp), _possibleConstructorReturn(_this, _ret); } _createClass(Link, [{ key: 'render', value: function render() { return _react2.default.createElement('a', _extends({}, (0, _omit3.default)(this.props, 'onClick'), { onClick: this.onClick })); } }]); return Link; }(_react.Component); Link.propTypes = { onClick: _propTypes2.default.func.isRequired }; exports.default = Link; /***/ }), /* 218 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var _createConnector = __webpack_require__(2); var _createConnector2 = _interopRequireDefault(_createConnector); var _highlight = __webpack_require__(330); var _highlight2 = _interopRequireDefault(_highlight); var _highlightTags = __webpack_require__(219); var _highlightTags2 = _interopRequireDefault(_highlightTags); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } var highlight = function highlight(_ref) { var attributeName = _ref.attributeName, hit = _ref.hit, highlightProperty = _ref.highlightProperty; return (0, _highlight2.default)({ attributeName: attributeName, hit: hit, preTag: _highlightTags2.default.highlightPreTag, postTag: _highlightTags2.default.highlightPostTag, highlightProperty: highlightProperty }); }; /** * connectHighlight connector provides the logic to create an highlighter * component that will retrieve, parse and render an highlighted attribute * from an Algolia hit. * @name connectHighlight * @kind connector * @category connector * @providedPropType {function} highlight - the function to retrieve and parse an attribute from a hit. It takes a configuration object with 3 attribute: `highlightProperty` which is the property that contains the highlight structure from the records, `attributeName` which is the name of the attribute to look for and `hit` which is the hit from Algolia. It returns an array of object `{value: string, isHighlighted: boolean}`. * @example * import React from 'react'; * import { connectHighlight } from 'react-instantsearch/connectors'; * import { InstantSearch, Hits } from 'react-instantsearch/dom'; * * const CustomHighlight = connectHighlight( * ({ highlight, attributeName, hit, highlightProperty }) => { * const parsedHit = highlight({ attributeName, hit, highlightProperty: '_highlightResult' }); * const highlightedHits = parsedHit.map(part => { * if (part.isHighlighted) return <mark>{part.value}</mark>; * return part.value; * }); * return <div>{highlightedHits}</div>; * } * ); * * const Hit = ({hit}) => * <p> * <CustomHighlight attributeName="description" hit={hit} /> * </p>; * * export default function App() { * return ( * <InstantSearch * appId="latency" * apiKey="6be0576ff61c053d5f9a3225e2a90f76" * indexName="ikea"> * <Hits hitComponent={Hit} /> * </InstantSearch> * ); * } */ exports.default = (0, _createConnector2.default)({ displayName: 'AlgoliaHighlighter', propTypes: {}, getProvidedProps: function getProvidedProps() { return { highlight: highlight }; } }); /***/ }), /* 219 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = { highlightPreTag: "<ais-highlight-0000000000>", highlightPostTag: "</ais-highlight-0000000000>" }; /***/ }), /* 220 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; // This file hosts our error definitions // We use custom error "types" so that we can act on them when we need it // e.g.: if error instanceof errors.UnparsableJSON then.. var inherits = __webpack_require__(350); function AlgoliaSearchError(message, extraProperties) { var forEach = __webpack_require__(111); var error = this; // try to get a stacktrace if (typeof Error.captureStackTrace === 'function') { Error.captureStackTrace(this, this.constructor); } else { error.stack = (new Error()).stack || 'Cannot get a stacktrace, browser is too old'; } this.name = 'AlgoliaSearchError'; this.message = message || 'Unknown error'; if (extraProperties) { forEach(extraProperties, function addToErrorObject(value, key) { error[key] = value; }); } } inherits(AlgoliaSearchError, Error); function createCustomError(name, message) { function AlgoliaSearchCustomError() { var args = Array.prototype.slice.call(arguments, 0); // custom message not set, use default if (typeof args[0] !== 'string') { args.unshift(message); } AlgoliaSearchError.apply(this, args); this.name = 'AlgoliaSearch' + name + 'Error'; } inherits(AlgoliaSearchCustomError, AlgoliaSearchError); return AlgoliaSearchCustomError; } // late exports to let various fn defs and inherits take place module.exports = { AlgoliaSearchError: AlgoliaSearchError, UnparsableJSON: createCustomError( 'UnparsableJSON', 'Could not parse the incoming response as JSON, see err.more for details' ), RequestTimeout: createCustomError( 'RequestTimeout', 'Request timedout before getting a response' ), Network: createCustomError( 'Network', 'Network issue, see err.more for details' ), JSONPScriptFail: createCustomError( 'JSONPScriptFail', '<script> was loaded but did not call our provided callback' ), JSONPScriptError: createCustomError( 'JSONPScriptError', '<script> unable to load due to an `error` event on it' ), Unknown: createCustomError( 'Unknown', 'Unknown error occured' ) }; /***/ }), /* 221 */ /***/ (function(module, exports, __webpack_require__) { /* WEBPACK VAR INJECTION */(function(process) {/** * This is the web browser implementation of `debug()`. * * Expose `debug()` as the module. */ exports = module.exports = __webpack_require__(423); exports.log = log; exports.formatArgs = formatArgs; exports.save = save; exports.load = load; exports.useColors = useColors; exports.storage = 'undefined' != typeof chrome && 'undefined' != typeof chrome.storage ? chrome.storage.local : localstorage(); /** * Colors. */ exports.colors = [ 'lightseagreen', 'forestgreen', 'goldenrod', 'dodgerblue', 'darkorchid', 'crimson' ]; /** * Currently only WebKit-based Web Inspectors, Firefox >= v31, * and the Firebug extension (any Firefox version) are known * to support "%c" CSS customizations. * * TODO: add a `localStorage` variable to explicitly enable/disable colors */ function useColors() { // NB: In an Electron preload script, document will be defined but not fully // initialized. Since we know we're in Chrome, we'll just detect this case // explicitly if (typeof window !== 'undefined' && window.process && window.process.type === 'renderer') { return true; } // is webkit? http://stackoverflow.com/a/16459606/376773 // document is undefined in react-native: https://github.com/facebook/react-native/pull/1632 return (typeof document !== 'undefined' && document.documentElement && document.documentElement.style && document.documentElement.style.WebkitAppearance) || // is firebug? http://stackoverflow.com/a/398120/376773 (typeof window !== 'undefined' && window.console && (window.console.firebug || (window.console.exception && window.console.table))) || // is firefox >= v31? // https://developer.mozilla.org/en-US/docs/Tools/Web_Console#Styling_messages (typeof navigator !== 'undefined' && navigator.userAgent && navigator.userAgent.toLowerCase().match(/firefox\/(\d+)/) && parseInt(RegExp.$1, 10) >= 31) || // double check webkit in userAgent just in case we are in a worker (typeof navigator !== 'undefined' && navigator.userAgent && navigator.userAgent.toLowerCase().match(/applewebkit\/(\d+)/)); } /** * Map %j to `JSON.stringify()`, since no Web Inspectors do that by default. */ exports.formatters.j = function(v) { try { return JSON.stringify(v); } catch (err) { return '[UnexpectedJSONParseError]: ' + err.message; } }; /** * Colorize log arguments if enabled. * * @api public */ function formatArgs(args) { var useColors = this.useColors; args[0] = (useColors ? '%c' : '') + this.namespace + (useColors ? ' %c' : ' ') + args[0] + (useColors ? '%c ' : ' ') + '+' + exports.humanize(this.diff); if (!useColors) return; var c = 'color: ' + this.color; args.splice(1, 0, c, 'color: inherit') // the final "%c" is somewhat tricky, because there could be other // arguments passed either before or after the %c, so we need to // figure out the correct index to insert the CSS into var index = 0; var lastC = 0; args[0].replace(/%[a-zA-Z%]/g, function(match) { if ('%%' === match) return; index++; if ('%c' === match) { // we only are interested in the *last* %c // (the user may have provided their own) lastC = index; } }); args.splice(lastC, 0, c); } /** * Invokes `console.log()` when available. * No-op when `console.log` is not a "function". * * @api public */ function log() { // this hackery is required for IE8/9, where // the `console.log` function doesn't have 'apply' return 'object' === typeof console && console.log && Function.prototype.apply.call(console.log, console, arguments); } /** * Save `namespaces`. * * @param {String} namespaces * @api private */ function save(namespaces) { try { if (null == namespaces) { exports.storage.removeItem('debug'); } else { exports.storage.debug = namespaces; } } catch(e) {} } /** * Load `namespaces`. * * @return {String} returns the previously persisted debug modes * @api private */ function load() { var r; try { r = exports.storage.debug; } catch(e) {} // If debug isn't set in LS, and we're in Electron, try to load $DEBUG if (!r && typeof process !== 'undefined' && 'env' in process) { r = process.env.DEBUG; } return r; } /** * Enable namespaces listed in `localStorage.debug` initially. */ exports.enable(load()); /** * Localstorage attempts to return the localstorage. * * This is necessary because safari throws * when a user disables cookies/localstorage * and you attempt to access it. * * @return {LocalStorage} * @api private */ function localstorage() { try { return window.localStorage; } catch (e) {} } /* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(109))) /***/ }), /* 222 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var _keys2 = __webpack_require__(9); var _keys3 = _interopRequireDefault(_keys2); var _difference2 = __webpack_require__(223); var _difference3 = _interopRequireDefault(_difference2); var _omit2 = __webpack_require__(35); var _omit3 = _interopRequireDefault(_omit2); var _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; var _createConnector = __webpack_require__(2); var _createConnector2 = _interopRequireDefault(_createConnector); var _indexUtils = __webpack_require__(5); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; } function getId() { return 'configure'; } exports.default = (0, _createConnector2.default)({ displayName: 'AlgoliaConfigure', getProvidedProps: function getProvidedProps() { return {}; }, getSearchParameters: function getSearchParameters(searchParameters, props) { var items = (0, _omit3.default)(props, 'children'); return searchParameters.setQueryParameters(items); }, transitionState: function transitionState(props, prevSearchState, nextSearchState) { var id = getId(); var items = (0, _omit3.default)(props, 'children'); var nonPresentKeys = this._props ? (0, _difference3.default)((0, _keys3.default)(this._props), (0, _keys3.default)(props)) : []; this._props = props; var nextValue = _defineProperty({}, id, _extends({}, (0, _omit3.default)(nextSearchState[id], nonPresentKeys), items)); return (0, _indexUtils.refineValue)(nextSearchState, nextValue, this.context); }, cleanUp: function cleanUp(props, searchState) { var id = getId(); var index = (0, _indexUtils.getIndex)(this.context); var subState = (0, _indexUtils.hasMultipleIndex)(this.context) && searchState.indices ? searchState.indices[index] : searchState; var configureKeys = subState && subState[id] ? Object.keys(subState[id]) : []; var configureState = configureKeys.reduce(function (acc, item) { if (!props[item]) { acc[item] = subState[id][item]; } return acc; }, {}); var nextValue = _defineProperty({}, id, configureState); return (0, _indexUtils.refineValue)(searchState, nextValue, this.context); } }); /***/ }), /* 223 */ /***/ (function(module, exports, __webpack_require__) { var baseDifference = __webpack_require__(224), baseFlatten = __webpack_require__(165), baseRest = __webpack_require__(25), isArrayLikeObject = __webpack_require__(94); /** * Creates an array of `array` values not included in the other given arrays * using [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero) * for equality comparisons. The order and references of result values are * determined by the first array. * * **Note:** Unlike `_.pullAll`, this method returns a new array. * * @static * @memberOf _ * @since 0.1.0 * @category Array * @param {Array} array The array to inspect. * @param {...Array} [values] The values to exclude. * @returns {Array} Returns the new array of filtered values. * @see _.without, _.xor * @example * * _.difference([2, 1], [2, 3]); * // => [1] */ var difference = baseRest(function(array, values) { return isArrayLikeObject(array) ? baseDifference(array, baseFlatten(values, 1, isArrayLikeObject, true)) : []; }); module.exports = difference; /***/ }), /* 224 */ /***/ (function(module, exports, __webpack_require__) { var SetCache = __webpack_require__(60), arrayIncludes = __webpack_require__(92), arrayIncludesWith = __webpack_require__(164), arrayMap = __webpack_require__(12), baseUnary = __webpack_require__(43), cacheHas = __webpack_require__(61); /** Used as the size to enable large array optimizations. */ var LARGE_ARRAY_SIZE = 200; /** * The base implementation of methods like `_.difference` without support * for excluding multiple arrays or iteratee shorthands. * * @private * @param {Array} array The array to inspect. * @param {Array} values The values to exclude. * @param {Function} [iteratee] The iteratee invoked per element. * @param {Function} [comparator] The comparator invoked per element. * @returns {Array} Returns the new array of filtered values. */ function baseDifference(array, values, iteratee, comparator) { var index = -1, includes = arrayIncludes, isCommon = true, length = array.length, result = [], valuesLength = values.length; if (!length) { return result; } if (iteratee) { values = arrayMap(values, baseUnary(iteratee)); } if (comparator) { includes = arrayIncludesWith; isCommon = false; } else if (values.length >= LARGE_ARRAY_SIZE) { includes = cacheHas; isCommon = false; values = new SetCache(values); } outer: while (++index < length) { var value = array[index], computed = iteratee == null ? value : iteratee(value); value = (comparator || value !== 0) ? value : 0; if (isCommon && computed === computed) { var valuesIndex = valuesLength; while (valuesIndex--) { if (values[valuesIndex] === computed) { continue outer; } } result.push(value); } else if (!includes(values, computed, comparator)) { result.push(value); } } return result; } module.exports = baseDifference; /***/ }), /* 225 */ /***/ (function(module, exports) { /** * The base implementation of `_.isNaN` without support for number objects. * * @private * @param {*} value The value to check. * @returns {boolean} Returns `true` if `value` is `NaN`, else `false`. */ function baseIsNaN(value) { return value !== value; } module.exports = baseIsNaN; /***/ }), /* 226 */ /***/ (function(module, exports) { /** * A specialized version of `_.indexOf` which performs strict equality * comparisons of values, i.e. `===`. * * @private * @param {Array} array The array to inspect. * @param {*} value The value to search for. * @param {number} fromIndex The index to search from. * @returns {number} Returns the index of the matched value, else `-1`. */ function strictIndexOf(array, value, fromIndex) { var index = fromIndex - 1, length = array.length; while (++index < length) { if (array[index] === value) { return index; } } return -1; } module.exports = strictIndexOf; /***/ }), /* 227 */ /***/ (function(module, exports, __webpack_require__) { var Symbol = __webpack_require__(16), isArguments = __webpack_require__(20), isArray = __webpack_require__(1); /** Built-in value references. */ var spreadableSymbol = Symbol ? Symbol.isConcatSpreadable : undefined; /** * Checks if `value` is a flattenable `arguments` object or array. * * @private * @param {*} value The value to check. * @returns {boolean} Returns `true` if `value` is flattenable, else `false`. */ function isFlattenable(value) { return isArray(value) || isArguments(value) || !!(spreadableSymbol && value && value[spreadableSymbol]); } module.exports = isFlattenable; /***/ }), /* 228 */ /***/ (function(module, exports, __webpack_require__) { var constant = __webpack_require__(167), defineProperty = __webpack_require__(168), identity = __webpack_require__(26); /** * The base implementation of `setToString` without support for hot loop shorting. * * @private * @param {Function} func The function to modify. * @param {Function} string The `toString` result. * @returns {Function} Returns `func`. */ var baseSetToString = !defineProperty ? identity : function(func, string) { return defineProperty(func, 'toString', { 'configurable': true, 'enumerable': false, 'value': constant(string), 'writable': true }); }; module.exports = baseSetToString; /***/ }), /* 229 */ /***/ (function(module, exports, __webpack_require__) { var Stack = __webpack_require__(39), arrayEach = __webpack_require__(95), assignValue = __webpack_require__(96), baseAssign = __webpack_require__(230), baseAssignIn = __webpack_require__(231), cloneBuffer = __webpack_require__(170), copyArray = __webpack_require__(69), copySymbols = __webpack_require__(234), copySymbolsIn = __webpack_require__(235), getAllKeys = __webpack_require__(85), getAllKeysIn = __webpack_require__(97), getTag = __webpack_require__(57), initCloneArray = __webpack_require__(236), initCloneByTag = __webpack_require__(237), initCloneObject = __webpack_require__(173), isArray = __webpack_require__(1), isBuffer = __webpack_require__(21), isObject = __webpack_require__(6), keys = __webpack_require__(9); /** Used to compose bitmasks for cloning. */ var CLONE_DEEP_FLAG = 1, CLONE_FLAT_FLAG = 2, CLONE_SYMBOLS_FLAG = 4; /** `Object#toString` result references. */ var argsTag = '[object Arguments]', arrayTag = '[object Array]', boolTag = '[object Boolean]', dateTag = '[object Date]', errorTag = '[object Error]', funcTag = '[object Function]', genTag = '[object GeneratorFunction]', mapTag = '[object Map]', numberTag = '[object Number]', objectTag = '[object Object]', regexpTag = '[object RegExp]', setTag = '[object Set]', stringTag = '[object String]', symbolTag = '[object Symbol]', weakMapTag = '[object WeakMap]'; var arrayBufferTag = '[object ArrayBuffer]', dataViewTag = '[object DataView]', float32Tag = '[object Float32Array]', float64Tag = '[object Float64Array]', int8Tag = '[object Int8Array]', int16Tag = '[object Int16Array]', int32Tag = '[object Int32Array]', uint8Tag = '[object Uint8Array]', uint8ClampedTag = '[object Uint8ClampedArray]', uint16Tag = '[object Uint16Array]', uint32Tag = '[object Uint32Array]'; /** Used to identify `toStringTag` values supported by `_.clone`. */ var cloneableTags = {}; cloneableTags[argsTag] = cloneableTags[arrayTag] = cloneableTags[arrayBufferTag] = cloneableTags[dataViewTag] = cloneableTags[boolTag] = cloneableTags[dateTag] = cloneableTags[float32Tag] = cloneableTags[float64Tag] = cloneableTags[int8Tag] = cloneableTags[int16Tag] = cloneableTags[int32Tag] = cloneableTags[mapTag] = cloneableTags[numberTag] = cloneableTags[objectTag] = cloneableTags[regexpTag] = cloneableTags[setTag] = cloneableTags[stringTag] = cloneableTags[symbolTag] = cloneableTags[uint8Tag] = cloneableTags[uint8ClampedTag] = cloneableTags[uint16Tag] = cloneableTags[uint32Tag] = true; cloneableTags[errorTag] = cloneableTags[funcTag] = cloneableTags[weakMapTag] = false; /** * The base implementation of `_.clone` and `_.cloneDeep` which tracks * traversed objects. * * @private * @param {*} value The value to clone. * @param {boolean} bitmask The bitmask flags. * 1 - Deep clone * 2 - Flatten inherited properties * 4 - Clone symbols * @param {Function} [customizer] The function to customize cloning. * @param {string} [key] The key of `value`. * @param {Object} [object] The parent object of `value`. * @param {Object} [stack] Tracks traversed objects and their clone counterparts. * @returns {*} Returns the cloned value. */ function baseClone(value, bitmask, customizer, key, object, stack) { var result, isDeep = bitmask & CLONE_DEEP_FLAG, isFlat = bitmask & CLONE_FLAT_FLAG, isFull = bitmask & CLONE_SYMBOLS_FLAG; if (customizer) { result = object ? customizer(value, key, object, stack) : customizer(value); } if (result !== undefined) { return result; } if (!isObject(value)) { return value; } var isArr = isArray(value); if (isArr) { result = initCloneArray(value); if (!isDeep) { return copyArray(value, result); } } else { var tag = getTag(value), isFunc = tag == funcTag || tag == genTag; if (isBuffer(value)) { return cloneBuffer(value, isDeep); } if (tag == objectTag || tag == argsTag || (isFunc && !object)) { result = (isFlat || isFunc) ? {} : initCloneObject(value); if (!isDeep) { return isFlat ? copySymbolsIn(value, baseAssignIn(result, value)) : copySymbols(value, baseAssign(result, value)); } } else { if (!cloneableTags[tag]) { return object ? value : {}; } result = initCloneByTag(value, tag, baseClone, isDeep); } } // Check for circular references and return its corresponding clone. stack || (stack = new Stack); var stacked = stack.get(value); if (stacked) { return stacked; } stack.set(value, result); var keysFunc = isFull ? (isFlat ? getAllKeysIn : getAllKeys) : (isFlat ? keysIn : keys); var props = isArr ? undefined : keysFunc(value); arrayEach(props || value, function(subValue, key) { if (props) { key = subValue; subValue = value[key]; } // Recursively populate clone (susceptible to call stack limits). assignValue(result, key, baseClone(subValue, bitmask, customizer, key, value, stack)); }); return result; } module.exports = baseClone; /***/ }), /* 230 */ /***/ (function(module, exports, __webpack_require__) { var copyObject = __webpack_require__(27), keys = __webpack_require__(9); /** * The base implementation of `_.assign` without support for multiple sources * or `customizer` functions. * * @private * @param {Object} object The destination object. * @param {Object} source The source object. * @returns {Object} Returns `object`. */ function baseAssign(object, source) { return object && copyObject(source, keys(source), object); } module.exports = baseAssign; /***/ }), /* 231 */ /***/ (function(module, exports, __webpack_require__) { var copyObject = __webpack_require__(27), keysIn = __webpack_require__(48); /** * The base implementation of `_.assignIn` without support for multiple sources * or `customizer` functions. * * @private * @param {Object} object The destination object. * @param {Object} source The source object. * @returns {Object} Returns `object`. */ function baseAssignIn(object, source) { return object && copyObject(source, keysIn(source), object); } module.exports = baseAssignIn; /***/ }), /* 232 */ /***/ (function(module, exports, __webpack_require__) { var isObject = __webpack_require__(6), isPrototype = __webpack_require__(38), nativeKeysIn = __webpack_require__(233); /** Used for built-in method references. */ var objectProto = Object.prototype; /** Used to check objects for own properties. */ var hasOwnProperty = objectProto.hasOwnProperty; /** * The base implementation of `_.keysIn` which doesn't treat sparse arrays as dense. * * @private * @param {Object} object The object to query. * @returns {Array} Returns the array of property names. */ function baseKeysIn(object) { if (!isObject(object)) { return nativeKeysIn(object); } var isProto = isPrototype(object), result = []; for (var key in object) { if (!(key == 'constructor' && (isProto || !hasOwnProperty.call(object, key)))) { result.push(key); } } return result; } module.exports = baseKeysIn; /***/ }), /* 233 */ /***/ (function(module, exports) { /** * This function is like * [`Object.keys`](http://ecma-international.org/ecma-262/7.0/#sec-object.keys) * except that it includes inherited enumerable properties. * * @private * @param {Object} object The object to query. * @returns {Array} Returns the array of property names. */ function nativeKeysIn(object) { var result = []; if (object != null) { for (var key in Object(object)) { result.push(key); } } return result; } module.exports = nativeKeysIn; /***/ }), /* 234 */ /***/ (function(module, exports, __webpack_require__) { var copyObject = __webpack_require__(27), getSymbols = __webpack_require__(63); /** * Copies own symbols of `source` to `object`. * * @private * @param {Object} source The object to copy symbols from. * @param {Object} [object={}] The object to copy symbols to. * @returns {Object} Returns `object`. */ function copySymbols(source, object) { return copyObject(source, getSymbols(source), object); } module.exports = copySymbols; /***/ }), /* 235 */ /***/ (function(module, exports, __webpack_require__) { var copyObject = __webpack_require__(27), getSymbolsIn = __webpack_require__(171); /** * Copies own and inherited symbols of `source` to `object`. * * @private * @param {Object} source The object to copy symbols from. * @param {Object} [object={}] The object to copy symbols to. * @returns {Object} Returns `object`. */ function copySymbolsIn(source, object) { return copyObject(source, getSymbolsIn(source), object); } module.exports = copySymbolsIn; /***/ }), /* 236 */ /***/ (function(module, exports) { /** Used for built-in method references. */ var objectProto = Object.prototype; /** Used to check objects for own properties. */ var hasOwnProperty = objectProto.hasOwnProperty; /** * Initializes an array clone. * * @private * @param {Array} array The array to clone. * @returns {Array} Returns the initialized clone. */ function initCloneArray(array) { var length = array.length, result = array.constructor(length); // Add properties assigned by `RegExp#exec`. if (length && typeof array[0] == 'string' && hasOwnProperty.call(array, 'index')) { result.index = array.index; result.input = array.input; } return result; } module.exports = initCloneArray; /***/ }), /* 237 */ /***/ (function(module, exports, __webpack_require__) { var cloneArrayBuffer = __webpack_require__(98), cloneDataView = __webpack_require__(238), cloneMap = __webpack_require__(239), cloneRegExp = __webpack_require__(241), cloneSet = __webpack_require__(242), cloneSymbol = __webpack_require__(244), cloneTypedArray = __webpack_require__(172); /** `Object#toString` result references. */ var boolTag = '[object Boolean]', dateTag = '[object Date]', mapTag = '[object Map]', numberTag = '[object Number]', regexpTag = '[object RegExp]', setTag = '[object Set]', stringTag = '[object String]', symbolTag = '[object Symbol]'; var arrayBufferTag = '[object ArrayBuffer]', dataViewTag = '[object DataView]', float32Tag = '[object Float32Array]', float64Tag = '[object Float64Array]', int8Tag = '[object Int8Array]', int16Tag = '[object Int16Array]', int32Tag = '[object Int32Array]', uint8Tag = '[object Uint8Array]', uint8ClampedTag = '[object Uint8ClampedArray]', uint16Tag = '[object Uint16Array]', uint32Tag = '[object Uint32Array]'; /** * Initializes an object clone based on its `toStringTag`. * * **Note:** This function only supports cloning values with tags of * `Boolean`, `Date`, `Error`, `Number`, `RegExp`, or `String`. * * @private * @param {Object} object The object to clone. * @param {string} tag The `toStringTag` of the object to clone. * @param {Function} cloneFunc The function to clone values. * @param {boolean} [isDeep] Specify a deep clone. * @returns {Object} Returns the initialized clone. */ function initCloneByTag(object, tag, cloneFunc, isDeep) { var Ctor = object.constructor; switch (tag) { case arrayBufferTag: return cloneArrayBuffer(object); case boolTag: case dateTag: return new Ctor(+object); case dataViewTag: return cloneDataView(object, isDeep); case float32Tag: case float64Tag: case int8Tag: case int16Tag: case int32Tag: case uint8Tag: case uint8ClampedTag: case uint16Tag: case uint32Tag: return cloneTypedArray(object, isDeep); case mapTag: return cloneMap(object, isDeep, cloneFunc); case numberTag: case stringTag: return new Ctor(object); case regexpTag: return cloneRegExp(object); case setTag: return cloneSet(object, isDeep, cloneFunc); case symbolTag: return cloneSymbol(object); } } module.exports = initCloneByTag; /***/ }), /* 238 */ /***/ (function(module, exports, __webpack_require__) { var cloneArrayBuffer = __webpack_require__(98); /** * Creates a clone of `dataView`. * * @private * @param {Object} dataView The data view to clone. * @param {boolean} [isDeep] Specify a deep clone. * @returns {Object} Returns the cloned data view. */ function cloneDataView(dataView, isDeep) { var buffer = isDeep ? cloneArrayBuffer(dataView.buffer) : dataView.buffer; return new dataView.constructor(buffer, dataView.byteOffset, dataView.byteLength); } module.exports = cloneDataView; /***/ }), /* 239 */ /***/ (function(module, exports, __webpack_require__) { var addMapEntry = __webpack_require__(240), arrayReduce = __webpack_require__(99), mapToArray = __webpack_require__(83); /** Used to compose bitmasks for cloning. */ var CLONE_DEEP_FLAG = 1; /** * Creates a clone of `map`. * * @private * @param {Object} map The map to clone. * @param {Function} cloneFunc The function to clone values. * @param {boolean} [isDeep] Specify a deep clone. * @returns {Object} Returns the cloned map. */ function cloneMap(map, isDeep, cloneFunc) { var array = isDeep ? cloneFunc(mapToArray(map), CLONE_DEEP_FLAG) : mapToArray(map); return arrayReduce(array, addMapEntry, new map.constructor); } module.exports = cloneMap; /***/ }), /* 240 */ /***/ (function(module, exports) { /** * Adds the key-value `pair` to `map`. * * @private * @param {Object} map The map to modify. * @param {Array} pair The key-value pair to add. * @returns {Object} Returns `map`. */ function addMapEntry(map, pair) { // Don't return `map.set` because it's not chainable in IE 11. map.set(pair[0], pair[1]); return map; } module.exports = addMapEntry; /***/ }), /* 241 */ /***/ (function(module, exports) { /** Used to match `RegExp` flags from their coerced string values. */ var reFlags = /\w*$/; /** * Creates a clone of `regexp`. * * @private * @param {Object} regexp The regexp to clone. * @returns {Object} Returns the cloned regexp. */ function cloneRegExp(regexp) { var result = new regexp.constructor(regexp.source, reFlags.exec(regexp)); result.lastIndex = regexp.lastIndex; return result; } module.exports = cloneRegExp; /***/ }), /* 242 */ /***/ (function(module, exports, __webpack_require__) { var addSetEntry = __webpack_require__(243), arrayReduce = __webpack_require__(99), setToArray = __webpack_require__(84); /** Used to compose bitmasks for cloning. */ var CLONE_DEEP_FLAG = 1; /** * Creates a clone of `set`. * * @private * @param {Object} set The set to clone. * @param {Function} cloneFunc The function to clone values. * @param {boolean} [isDeep] Specify a deep clone. * @returns {Object} Returns the cloned set. */ function cloneSet(set, isDeep, cloneFunc) { var array = isDeep ? cloneFunc(setToArray(set), CLONE_DEEP_FLAG) : setToArray(set); return arrayReduce(array, addSetEntry, new set.constructor); } module.exports = cloneSet; /***/ }), /* 243 */ /***/ (function(module, exports) { /** * Adds `value` to `set`. * * @private * @param {Object} set The set to modify. * @param {*} value The value to add. * @returns {Object} Returns `set`. */ function addSetEntry(set, value) { // Don't return `set.add` because it's not chainable in IE 11. set.add(value); return set; } module.exports = addSetEntry; /***/ }), /* 244 */ /***/ (function(module, exports, __webpack_require__) { var Symbol = __webpack_require__(16); /** Used to convert symbols to primitives and strings. */ var symbolProto = Symbol ? Symbol.prototype : undefined, symbolValueOf = symbolProto ? symbolProto.valueOf : undefined; /** * Creates a clone of the `symbol` object. * * @private * @param {Object} symbol The symbol object to clone. * @returns {Object} Returns the cloned symbol object. */ function cloneSymbol(symbol) { return symbolValueOf ? Object(symbolValueOf.call(symbol)) : {}; } module.exports = cloneSymbol; /***/ }), /* 245 */ /***/ (function(module, exports, __webpack_require__) { var castPath = __webpack_require__(22), last = __webpack_require__(174), parent = __webpack_require__(246), toKey = __webpack_require__(24); /** * The base implementation of `_.unset`. * * @private * @param {Object} object The object to modify. * @param {Array|string} path The property path to unset. * @returns {boolean} Returns `true` if the property is deleted, else `false`. */ function baseUnset(object, path) { path = castPath(path, object); object = parent(object, path); return object == null || delete object[toKey(last(path))]; } module.exports = baseUnset; /***/ }), /* 246 */ /***/ (function(module, exports, __webpack_require__) { var baseGet = __webpack_require__(71), baseSlice = __webpack_require__(175); /** * Gets the parent value at `path` of `object`. * * @private * @param {Object} object The object to query. * @param {Array} path The path to get the parent value of. * @returns {*} Returns the parent value. */ function parent(object, path) { return path.length < 2 ? object : baseGet(object, baseSlice(path, 0, -1)); } module.exports = parent; /***/ }), /* 247 */ /***/ (function(module, exports, __webpack_require__) { var isPlainObject = __webpack_require__(45); /** * Used by `_.omit` to customize its `_.cloneDeep` use to only clone plain * objects. * * @private * @param {*} value The value to inspect. * @param {string} key The key of the property to inspect. * @returns {*} Returns the uncloned value or `undefined` to defer cloning to `_.cloneDeep`. */ function customOmitClone(value) { return isPlainObject(value) ? undefined : value; } module.exports = customOmitClone; /***/ }), /* 248 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.getId = undefined; var _propTypes = __webpack_require__(0); var _propTypes2 = _interopRequireDefault(_propTypes); var _createConnector = __webpack_require__(2); var _createConnector2 = _interopRequireDefault(_createConnector); var _algoliasearchHelper = __webpack_require__(212); var _indexUtils = __webpack_require__(5); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; } var getId = exports.getId = function getId(props) { return props.attributes[0]; }; var namespace = 'hierarchicalMenu'; function getCurrentRefinement(props, searchState, context) { return (0, _indexUtils.getCurrentRefinementValue)(props, searchState, context, namespace + '.' + getId(props), null, function (currentRefinement) { if (currentRefinement === '') { return null; } return currentRefinement; }); } function getValue(path, props, searchState, context) { var id = props.id, attributes = props.attributes, separator = props.separator, rootPath = props.rootPath, showParentLevel = props.showParentLevel; var currentRefinement = getCurrentRefinement(props, searchState, context); var nextRefinement = void 0; if (currentRefinement === null) { nextRefinement = path; } else { var tmpSearchParameters = new _algoliasearchHelper.SearchParameters({ hierarchicalFacets: [{ name: id, attributes: attributes, separator: separator, rootPath: rootPath, showParentLevel: showParentLevel }] }); nextRefinement = tmpSearchParameters.toggleHierarchicalFacetRefinement(id, currentRefinement).toggleHierarchicalFacetRefinement(id, path).getHierarchicalRefinement(id)[0]; } return nextRefinement; } function transformValue(value, limit, props, searchState, context) { return value.slice(0, limit).map(function (v) { return { label: v.name, value: getValue(v.path, props, searchState, context), count: v.count, isRefined: v.isRefined, items: v.data && transformValue(v.data, limit, props, searchState, context) }; }); } function _refine(props, searchState, nextRefinement, context) { var id = getId(props); var nextValue = _defineProperty({}, id, nextRefinement || ''); var resetPage = true; return (0, _indexUtils.refineValue)(searchState, nextValue, context, resetPage, namespace); } function _cleanUp(props, searchState, context) { return (0, _indexUtils.cleanUpValue)(searchState, context, namespace + '.' + getId(props)); } var sortBy = ['name:asc']; /** * connectHierarchicalMenu connector provides the logic to build a widget that will * give the user the ability to explore a tree-like structure. * This is commonly used for multi-level categorization of products on e-commerce * websites. From a UX point of view, we suggest not displaying more than two levels deep. * @name connectHierarchicalMenu * @requirements To use this widget, your attributes must be formatted in a specific way. * If you want for example to have a hiearchical menu of categories, objects in your index * should be formatted this way: * * ```json * { * "categories.lvl0": "products", * "categories.lvl1": "products > fruits", * "categories.lvl2": "products > fruits > citrus" * } * ``` * * It's also possible to provide more than one path for each level: * * ```json * { * "categories.lvl0": ["products", "goods"], * "categories.lvl1": ["products > fruits", "goods > to eat"] * } * ``` * * All attributes passed to the `attributes` prop must be present in "attributes for faceting" * on the Algolia dashboard or configured as `attributesForFaceting` via a set settings call to the Algolia API. * * @kind connector * @propType {string} attributes - List of attributes to use to generate the hierarchy of the menu. See the example for the convention to follow. * @propType {string} [defaultRefinement] - the item value selected by default * @propType {boolean} [showMore=false] - Flag to activate the show more button, for toggling the number of items between limitMin and limitMax. * @propType {number} [limitMin=10] - The maximum number of items displayed. * @propType {number} [limitMax=20] - The maximum number of items displayed when the user triggers the show more. Not considered if `showMore` is false. * @propType {string} [separator='>'] - Specifies the level separator used in the data. * @propType {string[]} [rootPath=null] - The already selected and hidden path. * @propType {boolean} [showParentLevel=true] - Flag to set if the parent level should be displayed. * @propType {function} [transformItems] - Function to modify the items being displayed, e.g. for filtering or sorting them. Takes an items as parameter and expects it back in return. * @providedPropType {function} refine - a function to toggle a refinement * @providedPropType {function} createURL - a function to generate a URL for the corresponding search state * @providedPropType {string} currentRefinement - the refinement currently applied * @providedPropType {array.<{items: object, count: number, isRefined: boolean, label: string, value: string}>} items - the list of items the HierarchicalMenu can display. items has the same shape as parent items. */ exports.default = (0, _createConnector2.default)({ displayName: 'AlgoliaHierarchicalMenu', propTypes: { attributes: function attributes(props, propName, componentName) { var isNotString = function isNotString(val) { return typeof val !== 'string'; }; if (!Array.isArray(props[propName]) || props[propName].some(isNotString) || props[propName].length < 1) { return new Error('Invalid prop ' + propName + ' supplied to ' + componentName + '. Expected an Array of Strings'); } return undefined; }, separator: _propTypes2.default.string, rootPath: _propTypes2.default.string, showParentLevel: _propTypes2.default.bool, defaultRefinement: _propTypes2.default.string, showMore: _propTypes2.default.bool, limitMin: _propTypes2.default.number, limitMax: _propTypes2.default.number, transformItems: _propTypes2.default.func }, defaultProps: { showMore: false, limitMin: 10, limitMax: 20, separator: ' > ', rootPath: null, showParentLevel: true }, getProvidedProps: function getProvidedProps(props, searchState, searchResults) { var showMore = props.showMore, limitMin = props.limitMin, limitMax = props.limitMax; var id = getId(props); var results = (0, _indexUtils.getResults)(searchResults, this.context); var isFacetPresent = Boolean(results) && Boolean(results.getFacetByName(id)); if (!isFacetPresent) { return { items: [], currentRefinement: getCurrentRefinement(props, searchState, this.context), canRefine: false }; } var limit = showMore ? limitMax : limitMin; var value = results.getFacetValues(id, { sortBy: sortBy }); var items = value.data ? transformValue(value.data, limit, props, searchState, this.context) : []; return { items: props.transformItems ? props.transformItems(items) : items, currentRefinement: getCurrentRefinement(props, searchState, this.context), canRefine: items.length > 0 }; }, refine: function refine(props, searchState, nextRefinement) { return _refine(props, searchState, nextRefinement, this.context); }, cleanUp: function cleanUp(props, searchState) { return _cleanUp(props, searchState, this.context); }, getSearchParameters: function getSearchParameters(searchParameters, props, searchState) { var attributes = props.attributes, separator = props.separator, rootPath = props.rootPath, showParentLevel = props.showParentLevel, showMore = props.showMore, limitMin = props.limitMin, limitMax = props.limitMax; var id = getId(props); var limit = showMore ? limitMax : limitMin; searchParameters = searchParameters.addHierarchicalFacet({ name: id, attributes: attributes, separator: separator, rootPath: rootPath, showParentLevel: showParentLevel }).setQueryParameters({ maxValuesPerFacet: Math.max(searchParameters.maxValuesPerFacet || 0, limit) }); var currentRefinement = getCurrentRefinement(props, searchState, this.context); if (currentRefinement !== null) { searchParameters = searchParameters.toggleHierarchicalFacetRefinement(id, currentRefinement); } return searchParameters; }, getMetadata: function getMetadata(props, searchState) { var _this = this; var rootAttribute = props.attributes[0]; var id = getId(props); var currentRefinement = getCurrentRefinement(props, searchState, this.context); return { id: id, index: (0, _indexUtils.getIndex)(this.context), items: !currentRefinement ? [] : [{ label: rootAttribute + ': ' + currentRefinement, attributeName: rootAttribute, value: function value(nextState) { return _refine(props, nextState, '', _this.context); }, currentRefinement: currentRefinement }] }; } }); /***/ }), /* 249 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; var SearchParameters = __webpack_require__(100); var SearchResults = __webpack_require__(190); var DerivedHelper = __webpack_require__(315); var requestBuilder = __webpack_require__(318); var util = __webpack_require__(203); var events = __webpack_require__(204); var flatten = __webpack_require__(177); var forEach = __webpack_require__(36); var isEmpty = __webpack_require__(15); var map = __webpack_require__(17); var url = __webpack_require__(205); var version = __webpack_require__(208); /** * Event triggered when a parameter is set or updated * @event AlgoliaSearchHelper#event:change * @property {SearchParameters} state the current parameters with the latest changes applied * @property {SearchResults} lastResults the previous results received from Algolia. `null` before * the first request * @example * helper.on('change', function(state, lastResults) { * console.log('The parameters have changed'); * }); */ /** * Event triggered when a main search is sent to Algolia * @event AlgoliaSearchHelper#event:search * @property {SearchParameters} state the parameters used for this search * @property {SearchResults} lastResults the results from the previous search. `null` if * it is the first search. * @example * helper.on('search', function(state, lastResults) { * console.log('Search sent'); * }); */ /** * Event triggered when a search using `searchForFacetValues` is sent to Algolia * @event AlgoliaSearchHelper#event:searchForFacetValues * @property {SearchParameters} state the parameters used for this search * it is the first search. * @property {string} facet the facet searched into * @property {string} query the query used to search in the facets * @example * helper.on('searchForFacetValues', function(state, facet, query) { * console.log('searchForFacetValues sent'); * }); */ /** * Event triggered when a search using `searchOnce` is sent to Algolia * @event AlgoliaSearchHelper#event:searchOnce * @property {SearchParameters} state the parameters used for this search * it is the first search. * @example * helper.on('searchOnce', function(state) { * console.log('searchOnce sent'); * }); */ /** * Event triggered when the results are retrieved from Algolia * @event AlgoliaSearchHelper#event:result * @property {SearchResults} results the results received from Algolia * @property {SearchParameters} state the parameters used to query Algolia. Those might * be different from the one in the helper instance (for example if the network is unreliable). * @example * helper.on('result', function(results, state) { * console.log('Search results received'); * }); */ /** * Event triggered when Algolia sends back an error. For example, if an unknown parameter is * used, the error can be caught using this event. * @event AlgoliaSearchHelper#event:error * @property {Error} error the error returned by the Algolia. * @example * helper.on('error', function(error) { * console.log('Houston we got a problem.'); * }); */ /** * Event triggered when the queue of queries have been depleted (with any result or outdated queries) * @event AlgoliaSearchHelper#event:searchQueueEmpty * @example * helper.on('searchQueueEmpty', function() { * console.log('No more search pending'); * // This is received before the result event if we're not expecting new results * }); * * helper.search(); */ /** * Initialize a new AlgoliaSearchHelper * @class * @classdesc The AlgoliaSearchHelper is a class that ease the management of the * search. It provides an event based interface for search callbacks: * - change: when the internal search state is changed. * This event contains a {@link SearchParameters} object and the * {@link SearchResults} of the last result if any. * - search: when a search is triggered using the `search()` method. * - result: when the response is retrieved from Algolia and is processed. * This event contains a {@link SearchResults} object and the * {@link SearchParameters} corresponding to this answer. * - error: when the response is an error. This event contains the error returned by the server. * @param {AlgoliaSearch} client an AlgoliaSearch client * @param {string} index the index name to query * @param {SearchParameters | object} options an object defining the initial * config of the search. It doesn't have to be a {SearchParameters}, * just an object containing the properties you need from it. */ function AlgoliaSearchHelper(client, index, options) { if (!client.addAlgoliaAgent) console.log('Please upgrade to the newest version of the JS Client.'); // eslint-disable-line else if (!doesClientAgentContainsHelper(client)) client.addAlgoliaAgent('JS Helper ' + version); this.setClient(client); var opts = options || {}; opts.index = index; this.state = SearchParameters.make(opts); this.lastResults = null; this._queryId = 0; this._lastQueryIdReceived = -1; this.derivedHelpers = []; this._currentNbQueries = 0; } util.inherits(AlgoliaSearchHelper, events.EventEmitter); /** * Start the search with the parameters set in the state. When the * method is called, it triggers a `search` event. The results will * be available through the `result` event. If an error occurs, an * `error` will be fired instead. * @return {AlgoliaSearchHelper} * @fires search * @fires result * @fires error * @chainable */ AlgoliaSearchHelper.prototype.search = function() { this._search(); return this; }; /** * Gets the search query parameters that would be sent to the Algolia Client * for the hits * @return {object} Query Parameters */ AlgoliaSearchHelper.prototype.getQuery = function() { var state = this.state; return requestBuilder._getHitsSearchParams(state); }; /** * Start a search using a modified version of the current state. This method does * not trigger the helper lifecycle and does not modify the state kept internally * by the helper. This second aspect means that the next search call will be the * same as a search call before calling searchOnce. * @param {object} options can contain all the parameters that can be set to SearchParameters * plus the index * @param {function} [callback] optional callback executed when the response from the * server is back. * @return {promise|undefined} if a callback is passed the method returns undefined * otherwise it returns a promise containing an object with two keys : * - content with a SearchResults * - state with the state used for the query as a SearchParameters * @example * // Changing the number of records returned per page to 1 * // This example uses the callback API * var state = helper.searchOnce({hitsPerPage: 1}, * function(error, content, state) { * // if an error occurred it will be passed in error, otherwise its value is null * // content contains the results formatted as a SearchResults * // state is the instance of SearchParameters used for this search * }); * @example * // Changing the number of records returned per page to 1 * // This example uses the promise API * var state1 = helper.searchOnce({hitsPerPage: 1}) * .then(promiseHandler); * * function promiseHandler(res) { * // res contains * // { * // content : SearchResults * // state : SearchParameters (the one used for this specific search) * // } * } */ AlgoliaSearchHelper.prototype.searchOnce = function(options, cb) { var tempState = !options ? this.state : this.state.setQueryParameters(options); var queries = requestBuilder._getQueries(tempState.index, tempState); var self = this; this._currentNbQueries++; this.emit('searchOnce', tempState); if (cb) { return this.client.search( queries, function(err, content) { self._currentNbQueries--; if (self._currentNbQueries === 0) self.emit('searchQueueEmpty'); if (err) cb(err, null, tempState); else cb(err, new SearchResults(tempState, content.results), tempState); } ); } return this.client.search(queries).then(function(content) { self._currentNbQueries--; if (self._currentNbQueries === 0) self.emit('searchQueueEmpty'); return { content: new SearchResults(tempState, content.results), state: tempState, _originalResponse: content }; }, function(e) { self._currentNbQueries--; if (self._currentNbQueries === 0) self.emit('searchQueueEmpty'); throw e; }); }; /** * Structure of each result when using * [`searchForFacetValues()`](reference.html#AlgoliaSearchHelper#searchForFacetValues) * @typedef FacetSearchHit * @type {object} * @property {string} value the facet value * @property {string} highlighted the facet value highlighted with the query string * @property {number} count number of occurrence of this facet value * @property {boolean} isRefined true if the value is already refined */ /** * Structure of the data resolved by the * [`searchForFacetValues()`](reference.html#AlgoliaSearchHelper#searchForFacetValues) * promise. * @typedef FacetSearchResult * @type {object} * @property {FacetSearchHit} facetHits the results for this search for facet values * @property {number} processingTimeMS time taken by the query inside the engine */ /** * Search for facet values based on an query and the name of a faceted attribute. This * triggers a search and will return a promise. On top of using the query, it also sends * the parameters from the state so that the search is narrowed down to only the possible values. * * See the description of [FacetSearchResult](reference.html#FacetSearchResult) * @param {string} facet the name of the faceted attribute * @param {string} query the string query for the search * @param {number} maxFacetHits the maximum number values returned. Should be > 0 and <= 100 * @return {promise<FacetSearchResult>} the results of the search */ AlgoliaSearchHelper.prototype.searchForFacetValues = function(facet, query, maxFacetHits) { var state = this.state; var index = this.client.initIndex(this.state.index); var isDisjunctive = state.isDisjunctiveFacet(facet); var algoliaQuery = requestBuilder.getSearchForFacetQuery(facet, query, maxFacetHits, this.state); this._currentNbQueries++; var self = this; this.emit('searchForFacetValues', state, facet, query); return index.searchForFacetValues(algoliaQuery).then(function addIsRefined(content) { self._currentNbQueries--; if (self._currentNbQueries === 0) self.emit('searchQueueEmpty'); content.facetHits = forEach(content.facetHits, function(f) { f.isRefined = isDisjunctive ? state.isDisjunctiveFacetRefined(facet, f.value) : state.isFacetRefined(facet, f.value); }); return content; }, function(e) { self._currentNbQueries--; if (self._currentNbQueries === 0) self.emit('searchQueueEmpty'); throw e; }); }; /** * Sets the text query used for the search. * * This method resets the current page to 0. * @param {string} q the user query * @return {AlgoliaSearchHelper} * @fires change * @chainable */ AlgoliaSearchHelper.prototype.setQuery = function(q) { this.state = this.state.setPage(0).setQuery(q); this._change(); return this; }; /** * Remove all the types of refinements except tags. A string can be provided to remove * only the refinements of a specific attribute. For more advanced use case, you can * provide a function instead. This function should follow the * [clearCallback definition](#SearchParameters.clearCallback). * * This method resets the current page to 0. * @param {string} [name] optional name of the facet / attribute on which we want to remove all refinements * @return {AlgoliaSearchHelper} * @fires change * @chainable * @example * // Removing all the refinements * helper.clearRefinements().search(); * @example * // Removing all the filters on a the category attribute. * helper.clearRefinements('category').search(); * @example * // Removing only the exclude filters on the category facet. * helper.clearRefinements(function(value, attribute, type) { * return type === 'exclude' && attribute === 'category'; * }).search(); */ AlgoliaSearchHelper.prototype.clearRefinements = function(name) { this.state = this.state.setPage(0).clearRefinements(name); this._change(); return this; }; /** * Remove all the tag filters. * * This method resets the current page to 0. * @return {AlgoliaSearchHelper} * @fires change * @chainable */ AlgoliaSearchHelper.prototype.clearTags = function() { this.state = this.state.setPage(0).clearTags(); this._change(); return this; }; /** * Adds a disjunctive filter to a faceted attribute with the `value` provided. If the * filter is already set, it doesn't change the filters. * * This method resets the current page to 0. * @param {string} facet the facet to refine * @param {string} value the associated value (will be converted to string) * @return {AlgoliaSearchHelper} * @fires change * @chainable */ AlgoliaSearchHelper.prototype.addDisjunctiveFacetRefinement = function(facet, value) { this.state = this.state.setPage(0).addDisjunctiveFacetRefinement(facet, value); this._change(); return this; }; /** * @deprecated since version 2.4.0, see {@link AlgoliaSearchHelper#addDisjunctiveFacetRefinement} */ AlgoliaSearchHelper.prototype.addDisjunctiveRefine = function() { return this.addDisjunctiveFacetRefinement.apply(this, arguments); }; /** * Adds a refinement on a hierarchical facet. It will throw * an exception if the facet is not defined or if the facet * is already refined. * * This method resets the current page to 0. * @param {string} facet the facet name * @param {string} path the hierarchical facet path * @return {AlgoliaSearchHelper} * @throws Error if the facet is not defined or if the facet is refined * @chainable * @fires change */ AlgoliaSearchHelper.prototype.addHierarchicalFacetRefinement = function(facet, value) { this.state = this.state.setPage(0).addHierarchicalFacetRefinement(facet, value); this._change(); return this; }; /** * Adds a an numeric filter to an attribute with the `operator` and `value` provided. If the * filter is already set, it doesn't change the filters. * * This method resets the current page to 0. * @param {string} attribute the attribute on which the numeric filter applies * @param {string} operator the operator of the filter * @param {number} value the value of the filter * @return {AlgoliaSearchHelper} * @fires change * @chainable */ AlgoliaSearchHelper.prototype.addNumericRefinement = function(attribute, operator, value) { this.state = this.state.setPage(0).addNumericRefinement(attribute, operator, value); this._change(); return this; }; /** * Adds a filter to a faceted attribute with the `value` provided. If the * filter is already set, it doesn't change the filters. * * This method resets the current page to 0. * @param {string} facet the facet to refine * @param {string} value the associated value (will be converted to string) * @return {AlgoliaSearchHelper} * @fires change * @chainable */ AlgoliaSearchHelper.prototype.addFacetRefinement = function(facet, value) { this.state = this.state.setPage(0).addFacetRefinement(facet, value); this._change(); return this; }; /** * @deprecated since version 2.4.0, see {@link AlgoliaSearchHelper#addFacetRefinement} */ AlgoliaSearchHelper.prototype.addRefine = function() { return this.addFacetRefinement.apply(this, arguments); }; /** * Adds a an exclusion filter to a faceted attribute with the `value` provided. If the * filter is already set, it doesn't change the filters. * * This method resets the current page to 0. * @param {string} facet the facet to refine * @param {string} value the associated value (will be converted to string) * @return {AlgoliaSearchHelper} * @fires change * @chainable */ AlgoliaSearchHelper.prototype.addFacetExclusion = function(facet, value) { this.state = this.state.setPage(0).addExcludeRefinement(facet, value); this._change(); return this; }; /** * @deprecated since version 2.4.0, see {@link AlgoliaSearchHelper#addFacetExclusion} */ AlgoliaSearchHelper.prototype.addExclude = function() { return this.addFacetExclusion.apply(this, arguments); }; /** * Adds a tag filter with the `tag` provided. If the * filter is already set, it doesn't change the filters. * * This method resets the current page to 0. * @param {string} tag the tag to add to the filter * @return {AlgoliaSearchHelper} * @fires change * @chainable */ AlgoliaSearchHelper.prototype.addTag = function(tag) { this.state = this.state.setPage(0).addTagRefinement(tag); this._change(); return this; }; /** * Removes an numeric filter to an attribute with the `operator` and `value` provided. If the * filter is not set, it doesn't change the filters. * * Some parameters are optional, triggering different behavior: * - if the value is not provided, then all the numeric value will be removed for the * specified attribute/operator couple. * - if the operator is not provided either, then all the numeric filter on this attribute * will be removed. * * This method resets the current page to 0. * @param {string} attribute the attribute on which the numeric filter applies * @param {string} [operator] the operator of the filter * @param {number} [value] the value of the filter * @return {AlgoliaSearchHelper} * @fires change * @chainable */ AlgoliaSearchHelper.prototype.removeNumericRefinement = function(attribute, operator, value) { this.state = this.state.setPage(0).removeNumericRefinement(attribute, operator, value); this._change(); return this; }; /** * Removes a disjunctive filter to a faceted attribute with the `value` provided. If the * filter is not set, it doesn't change the filters. * * If the value is omitted, then this method will remove all the filters for the * attribute. * * This method resets the current page to 0. * @param {string} facet the facet to refine * @param {string} [value] the associated value * @return {AlgoliaSearchHelper} * @fires change * @chainable */ AlgoliaSearchHelper.prototype.removeDisjunctiveFacetRefinement = function(facet, value) { this.state = this.state.setPage(0).removeDisjunctiveFacetRefinement(facet, value); this._change(); return this; }; /** * @deprecated since version 2.4.0, see {@link AlgoliaSearchHelper#removeDisjunctiveFacetRefinement} */ AlgoliaSearchHelper.prototype.removeDisjunctiveRefine = function() { return this.removeDisjunctiveFacetRefinement.apply(this, arguments); }; /** * Removes the refinement set on a hierarchical facet. * @param {string} facet the facet name * @return {AlgoliaSearchHelper} * @throws Error if the facet is not defined or if the facet is not refined * @fires change * @chainable */ AlgoliaSearchHelper.prototype.removeHierarchicalFacetRefinement = function(facet) { this.state = this.state.setPage(0).removeHierarchicalFacetRefinement(facet); this._change(); return this; }; /** * Removes a filter to a faceted attribute with the `value` provided. If the * filter is not set, it doesn't change the filters. * * If the value is omitted, then this method will remove all the filters for the * attribute. * * This method resets the current page to 0. * @param {string} facet the facet to refine * @param {string} [value] the associated value * @return {AlgoliaSearchHelper} * @fires change * @chainable */ AlgoliaSearchHelper.prototype.removeFacetRefinement = function(facet, value) { this.state = this.state.setPage(0).removeFacetRefinement(facet, value); this._change(); return this; }; /** * @deprecated since version 2.4.0, see {@link AlgoliaSearchHelper#removeFacetRefinement} */ AlgoliaSearchHelper.prototype.removeRefine = function() { return this.removeFacetRefinement.apply(this, arguments); }; /** * Removes an exclusion filter to a faceted attribute with the `value` provided. If the * filter is not set, it doesn't change the filters. * * If the value is omitted, then this method will remove all the filters for the * attribute. * * This method resets the current page to 0. * @param {string} facet the facet to refine * @param {string} [value] the associated value * @return {AlgoliaSearchHelper} * @fires change * @chainable */ AlgoliaSearchHelper.prototype.removeFacetExclusion = function(facet, value) { this.state = this.state.setPage(0).removeExcludeRefinement(facet, value); this._change(); return this; }; /** * @deprecated since version 2.4.0, see {@link AlgoliaSearchHelper#removeFacetExclusion} */ AlgoliaSearchHelper.prototype.removeExclude = function() { return this.removeFacetExclusion.apply(this, arguments); }; /** * Removes a tag filter with the `tag` provided. If the * filter is not set, it doesn't change the filters. * * This method resets the current page to 0. * @param {string} tag tag to remove from the filter * @return {AlgoliaSearchHelper} * @fires change * @chainable */ AlgoliaSearchHelper.prototype.removeTag = function(tag) { this.state = this.state.setPage(0).removeTagRefinement(tag); this._change(); return this; }; /** * Adds or removes an exclusion filter to a faceted attribute with the `value` provided. If * the value is set then it removes it, otherwise it adds the filter. * * This method resets the current page to 0. * @param {string} facet the facet to refine * @param {string} value the associated value * @return {AlgoliaSearchHelper} * @fires change * @chainable */ AlgoliaSearchHelper.prototype.toggleFacetExclusion = function(facet, value) { this.state = this.state.setPage(0).toggleExcludeFacetRefinement(facet, value); this._change(); return this; }; /** * @deprecated since version 2.4.0, see {@link AlgoliaSearchHelper#toggleFacetExclusion} */ AlgoliaSearchHelper.prototype.toggleExclude = function() { return this.toggleFacetExclusion.apply(this, arguments); }; /** * Adds or removes a filter to a faceted attribute with the `value` provided. If * the value is set then it removes it, otherwise it adds the filter. * * This method can be used for conjunctive, disjunctive and hierarchical filters. * * This method resets the current page to 0. * @param {string} facet the facet to refine * @param {string} value the associated value * @return {AlgoliaSearchHelper} * @throws Error will throw an error if the facet is not declared in the settings of the helper * @fires change * @chainable * @deprecated since version 2.19.0, see {@link AlgoliaSearchHelper#toggleFacetRefinement} */ AlgoliaSearchHelper.prototype.toggleRefinement = function(facet, value) { return this.toggleFacetRefinement(facet, value); }; /** * Adds or removes a filter to a faceted attribute with the `value` provided. If * the value is set then it removes it, otherwise it adds the filter. * * This method can be used for conjunctive, disjunctive and hierarchical filters. * * This method resets the current page to 0. * @param {string} facet the facet to refine * @param {string} value the associated value * @return {AlgoliaSearchHelper} * @throws Error will throw an error if the facet is not declared in the settings of the helper * @fires change * @chainable */ AlgoliaSearchHelper.prototype.toggleFacetRefinement = function(facet, value) { this.state = this.state.setPage(0).toggleFacetRefinement(facet, value); this._change(); return this; }; /** * @deprecated since version 2.4.0, see {@link AlgoliaSearchHelper#toggleFacetRefinement} */ AlgoliaSearchHelper.prototype.toggleRefine = function() { return this.toggleFacetRefinement.apply(this, arguments); }; /** * Adds or removes a tag filter with the `value` provided. If * the value is set then it removes it, otherwise it adds the filter. * * This method resets the current page to 0. * @param {string} tag tag to remove or add * @return {AlgoliaSearchHelper} * @fires change * @chainable */ AlgoliaSearchHelper.prototype.toggleTag = function(tag) { this.state = this.state.setPage(0).toggleTagRefinement(tag); this._change(); return this; }; /** * Increments the page number by one. * @return {AlgoliaSearchHelper} * @fires change * @chainable * @example * helper.setPage(0).nextPage().getPage(); * // returns 1 */ AlgoliaSearchHelper.prototype.nextPage = function() { return this.setPage(this.state.page + 1); }; /** * Decrements the page number by one. * @fires change * @return {AlgoliaSearchHelper} * @chainable * @example * helper.setPage(1).previousPage().getPage(); * // returns 0 */ AlgoliaSearchHelper.prototype.previousPage = function() { return this.setPage(this.state.page - 1); }; /** * @private */ function setCurrentPage(page) { if (page < 0) throw new Error('Page requested below 0.'); this.state = this.state.setPage(page); this._change(); return this; } /** * Change the current page * @deprecated * @param {number} page The page number * @return {AlgoliaSearchHelper} * @fires change * @chainable */ AlgoliaSearchHelper.prototype.setCurrentPage = setCurrentPage; /** * Updates the current page. * @function * @param {number} page The page number * @return {AlgoliaSearchHelper} * @fires change * @chainable */ AlgoliaSearchHelper.prototype.setPage = setCurrentPage; /** * Updates the name of the index that will be targeted by the query. * * This method resets the current page to 0. * @param {string} name the index name * @return {AlgoliaSearchHelper} * @fires change * @chainable */ AlgoliaSearchHelper.prototype.setIndex = function(name) { this.state = this.state.setPage(0).setIndex(name); this._change(); return this; }; /** * Update a parameter of the search. This method reset the page * * The complete list of parameters is available on the * [Algolia website](https://www.algolia.com/doc/rest#query-an-index). * The most commonly used parameters have their own [shortcuts](#query-parameters-shortcuts) * or benefit from higher-level APIs (all the kind of filters and facets have their own API) * * This method resets the current page to 0. * @param {string} parameter name of the parameter to update * @param {any} value new value of the parameter * @return {AlgoliaSearchHelper} * @fires change * @chainable * @example * helper.setQueryParameter('hitsPerPage', 20).search(); */ AlgoliaSearchHelper.prototype.setQueryParameter = function(parameter, value) { var newState = this.state.setPage(0).setQueryParameter(parameter, value); if (this.state === newState) return this; this.state = newState; this._change(); return this; }; /** * Set the whole state (warning: will erase previous state) * @param {SearchParameters} newState the whole new state * @return {AlgoliaSearchHelper} * @fires change * @chainable */ AlgoliaSearchHelper.prototype.setState = function(newState) { this.state = new SearchParameters(newState); this._change(); return this; }; /** * Get the current search state stored in the helper. This object is immutable. * @param {string[]} [filters] optional filters to retrieve only a subset of the state * @return {SearchParameters|object} if filters is specified a plain object is * returned containing only the requested fields, otherwise return the unfiltered * state * @example * // Get the complete state as stored in the helper * helper.getState(); * @example * // Get a part of the state with all the refinements on attributes and the query * helper.getState(['query', 'attribute:category']); */ AlgoliaSearchHelper.prototype.getState = function(filters) { if (filters === undefined) return this.state; return this.state.filter(filters); }; /** * DEPRECATED Get part of the state as a query string. By default, the output keys will not * be prefixed and will only take the applied refinements and the query. * @deprecated * @param {object} [options] May contain the following parameters : * * **filters** : possible values are all the keys of the [SearchParameters](#searchparameters), `index` for * the index, all the refinements with `attribute:*` or for some specific attributes with * `attribute:theAttribute` * * **prefix** : prefix in front of the keys * * **moreAttributes** : more values to be added in the query string. Those values * won't be prefixed. * @return {string} the query string */ AlgoliaSearchHelper.prototype.getStateAsQueryString = function getStateAsQueryString(options) { var filters = options && options.filters || ['query', 'attribute:*']; var partialState = this.getState(filters); return url.getQueryStringFromState(partialState, options); }; /** * DEPRECATED Read a query string and return an object containing the state. Use * url module. * @deprecated * @static * @param {string} queryString the query string that will be decoded * @param {object} options accepted options : * - prefix : the prefix used for the saved attributes, you have to provide the * same that was used for serialization * @return {object} partial search parameters object (same properties than in the * SearchParameters but not exhaustive) * @see {@link url#getStateFromQueryString} */ AlgoliaSearchHelper.getConfigurationFromQueryString = url.getStateFromQueryString; /** * DEPRECATED Retrieve an object of all the properties that are not understandable as helper * parameters. Use url module. * @deprecated * @static * @param {string} queryString the query string to read * @param {object} options the options * - prefixForParameters : prefix used for the helper configuration keys * @return {object} the object containing the parsed configuration that doesn't * to the helper */ AlgoliaSearchHelper.getForeignConfigurationInQueryString = url.getUnrecognizedParametersInQueryString; /** * DEPRECATED Overrides part of the state with the properties stored in the provided query * string. * @deprecated * @param {string} queryString the query string containing the informations to url the state * @param {object} options optional parameters : * - prefix : prefix used for the algolia parameters * - triggerChange : if set to true the state update will trigger a change event */ AlgoliaSearchHelper.prototype.setStateFromQueryString = function(queryString, options) { var triggerChange = options && options.triggerChange || false; var configuration = url.getStateFromQueryString(queryString, options); var updatedState = this.state.setQueryParameters(configuration); if (triggerChange) this.setState(updatedState); else this.overrideStateWithoutTriggeringChangeEvent(updatedState); }; /** * Override the current state without triggering a change event. * Do not use this method unless you know what you are doing. (see the example * for a legit use case) * @param {SearchParameters} newState the whole new state * @return {AlgoliaSearchHelper} * @example * helper.on('change', function(state){ * // In this function you might want to find a way to store the state in the url/history * updateYourURL(state) * }) * window.onpopstate = function(event){ * // This is naive though as you should check if the state is really defined etc. * helper.overrideStateWithoutTriggeringChangeEvent(event.state).search() * } * @chainable */ AlgoliaSearchHelper.prototype.overrideStateWithoutTriggeringChangeEvent = function(newState) { this.state = new SearchParameters(newState); return this; }; /** * @deprecated since 2.4.0, see {@link AlgoliaSearchHelper#hasRefinements} */ AlgoliaSearchHelper.prototype.isRefined = function(facet, value) { if (this.state.isConjunctiveFacet(facet)) { return this.state.isFacetRefined(facet, value); } else if (this.state.isDisjunctiveFacet(facet)) { return this.state.isDisjunctiveFacetRefined(facet, value); } throw new Error(facet + ' is not properly defined in this helper configuration' + '(use the facets or disjunctiveFacets keys to configure it)'); }; /** * Check if an attribute has any numeric, conjunctive, disjunctive or hierarchical filters. * @param {string} attribute the name of the attribute * @return {boolean} true if the attribute is filtered by at least one value * @example * // hasRefinements works with numeric, conjunctive, disjunctive and hierarchical filters * helper.hasRefinements('price'); // false * helper.addNumericRefinement('price', '>', 100); * helper.hasRefinements('price'); // true * * helper.hasRefinements('color'); // false * helper.addFacetRefinement('color', 'blue'); * helper.hasRefinements('color'); // true * * helper.hasRefinements('material'); // false * helper.addDisjunctiveFacetRefinement('material', 'plastic'); * helper.hasRefinements('material'); // true * * helper.hasRefinements('categories'); // false * helper.toggleFacetRefinement('categories', 'kitchen > knife'); * helper.hasRefinements('categories'); // true * */ AlgoliaSearchHelper.prototype.hasRefinements = function(attribute) { if (!isEmpty(this.state.getNumericRefinements(attribute))) { return true; } else if (this.state.isConjunctiveFacet(attribute)) { return this.state.isFacetRefined(attribute); } else if (this.state.isDisjunctiveFacet(attribute)) { return this.state.isDisjunctiveFacetRefined(attribute); } else if (this.state.isHierarchicalFacet(attribute)) { return this.state.isHierarchicalFacetRefined(attribute); } // there's currently no way to know that the user did call `addNumericRefinement` at some point // thus we cannot distinguish if there once was a numeric refinement that was cleared // so we will return false in every other situations to be consistent // while what we should do here is throw because we did not find the attribute in any type // of refinement return false; }; /** * Check if a value is excluded for a specific faceted attribute. If the value * is omitted then the function checks if there is any excluding refinements. * * @param {string} facet name of the attribute for used for faceting * @param {string} [value] optional value. If passed will test that this value * is filtering the given facet. * @return {boolean} true if refined * @example * helper.isExcludeRefined('color'); // false * helper.isExcludeRefined('color', 'blue') // false * helper.isExcludeRefined('color', 'red') // false * * helper.addFacetExclusion('color', 'red'); * * helper.isExcludeRefined('color'); // true * helper.isExcludeRefined('color', 'blue') // false * helper.isExcludeRefined('color', 'red') // true */ AlgoliaSearchHelper.prototype.isExcluded = function(facet, value) { return this.state.isExcludeRefined(facet, value); }; /** * @deprecated since 2.4.0, see {@link AlgoliaSearchHelper#hasRefinements} */ AlgoliaSearchHelper.prototype.isDisjunctiveRefined = function(facet, value) { return this.state.isDisjunctiveFacetRefined(facet, value); }; /** * Check if the string is a currently filtering tag. * @param {string} tag tag to check * @return {boolean} */ AlgoliaSearchHelper.prototype.hasTag = function(tag) { return this.state.isTagRefined(tag); }; /** * @deprecated since 2.4.0, see {@link AlgoliaSearchHelper#hasTag} */ AlgoliaSearchHelper.prototype.isTagRefined = function() { return this.hasTagRefinements.apply(this, arguments); }; /** * Get the name of the currently used index. * @return {string} * @example * helper.setIndex('highestPrice_products').getIndex(); * // returns 'highestPrice_products' */ AlgoliaSearchHelper.prototype.getIndex = function() { return this.state.index; }; function getCurrentPage() { return this.state.page; } /** * Get the currently selected page * @deprecated * @return {number} the current page */ AlgoliaSearchHelper.prototype.getCurrentPage = getCurrentPage; /** * Get the currently selected page * @function * @return {number} the current page */ AlgoliaSearchHelper.prototype.getPage = getCurrentPage; /** * Get all the tags currently set to filters the results. * * @return {string[]} The list of tags currently set. */ AlgoliaSearchHelper.prototype.getTags = function() { return this.state.tagRefinements; }; /** * Get a parameter of the search by its name. It is possible that a parameter is directly * defined in the index dashboard, but it will be undefined using this method. * * The complete list of parameters is * available on the * [Algolia website](https://www.algolia.com/doc/rest#query-an-index). * The most commonly used parameters have their own [shortcuts](#query-parameters-shortcuts) * or benefit from higher-level APIs (all the kind of filters have their own API) * @param {string} parameterName the parameter name * @return {any} the parameter value * @example * var hitsPerPage = helper.getQueryParameter('hitsPerPage'); */ AlgoliaSearchHelper.prototype.getQueryParameter = function(parameterName) { return this.state.getQueryParameter(parameterName); }; /** * Get the list of refinements for a given attribute. This method works with * conjunctive, disjunctive, excluding and numerical filters. * * See also SearchResults#getRefinements * * @param {string} facetName attribute name used for faceting * @return {Array.<FacetRefinement|NumericRefinement>} All Refinement are objects that contain a value, and * a type. Numeric also contains an operator. * @example * helper.addNumericRefinement('price', '>', 100); * helper.getRefinements('price'); * // [ * // { * // "value": [ * // 100 * // ], * // "operator": ">", * // "type": "numeric" * // } * // ] * @example * helper.addFacetRefinement('color', 'blue'); * helper.addFacetExclusion('color', 'red'); * helper.getRefinements('color'); * // [ * // { * // "value": "blue", * // "type": "conjunctive" * // }, * // { * // "value": "red", * // "type": "exclude" * // } * // ] * @example * helper.addDisjunctiveFacetRefinement('material', 'plastic'); * // [ * // { * // "value": "plastic", * // "type": "disjunctive" * // } * // ] */ AlgoliaSearchHelper.prototype.getRefinements = function(facetName) { var refinements = []; if (this.state.isConjunctiveFacet(facetName)) { var conjRefinements = this.state.getConjunctiveRefinements(facetName); forEach(conjRefinements, function(r) { refinements.push({ value: r, type: 'conjunctive' }); }); var excludeRefinements = this.state.getExcludeRefinements(facetName); forEach(excludeRefinements, function(r) { refinements.push({ value: r, type: 'exclude' }); }); } else if (this.state.isDisjunctiveFacet(facetName)) { var disjRefinements = this.state.getDisjunctiveRefinements(facetName); forEach(disjRefinements, function(r) { refinements.push({ value: r, type: 'disjunctive' }); }); } var numericRefinements = this.state.getNumericRefinements(facetName); forEach(numericRefinements, function(value, operator) { refinements.push({ value: value, operator: operator, type: 'numeric' }); }); return refinements; }; /** * Return the current refinement for the (attribute, operator) * @param {string} attribute of the record * @param {string} operator applied * @return {number} value of the refinement */ AlgoliaSearchHelper.prototype.getNumericRefinement = function(attribute, operator) { return this.state.getNumericRefinement(attribute, operator); }; /** * Get the current breadcrumb for a hierarchical facet, as an array * @param {string} facetName Hierarchical facet name * @return {array.<string>} the path as an array of string */ AlgoliaSearchHelper.prototype.getHierarchicalFacetBreadcrumb = function(facetName) { return this.state.getHierarchicalFacetBreadcrumb(facetName); }; // /////////// PRIVATE /** * Perform the underlying queries * @private * @return {undefined} * @fires search * @fires result * @fires error */ AlgoliaSearchHelper.prototype._search = function() { var state = this.state; var mainQueries = requestBuilder._getQueries(state.index, state); var states = [{ state: state, queriesCount: mainQueries.length, helper: this }]; this.emit('search', state, this.lastResults); var derivedQueries = map(this.derivedHelpers, function(derivedHelper) { var derivedState = derivedHelper.getModifiedState(state); var queries = requestBuilder._getQueries(derivedState.index, derivedState); states.push({ state: derivedState, queriesCount: queries.length, helper: derivedHelper }); derivedHelper.emit('search', derivedState, derivedHelper.lastResults); return queries; }); var queries = mainQueries.concat(flatten(derivedQueries)); var queryId = this._queryId++; this._currentNbQueries++; this.client.search(queries, this._dispatchAlgoliaResponse.bind(this, states, queryId)); }; /** * Transform the responses as sent by the server and transform them into a user * usable object that merge the results of all the batch requests. It will dispatch * over the different helper + derived helpers (when there are some). * @private * @param {array.<{SearchParameters, AlgoliaQueries, AlgoliaSearchHelper}>} * state state used for to generate the request * @param {number} queryId id of the current request * @param {Error} err error if any, null otherwise * @param {object} content content of the response * @return {undefined} */ AlgoliaSearchHelper.prototype._dispatchAlgoliaResponse = function(states, queryId, err, content) { // FIXME remove the number of outdated queries discarded instead of just one if (queryId < this._lastQueryIdReceived) { // Outdated answer return; } this._currentNbQueries -= (queryId - this._lastQueryIdReceived); this._lastQueryIdReceived = queryId; if (err) { this.emit('error', err); if (this._currentNbQueries === 0) this.emit('searchQueueEmpty'); } else { if (this._currentNbQueries === 0) this.emit('searchQueueEmpty'); var results = content.results; forEach(states, function(s) { var state = s.state; var queriesCount = s.queriesCount; var helper = s.helper; var specificResults = results.splice(0, queriesCount); var formattedResponse = helper.lastResults = new SearchResults(state, specificResults); helper.emit('result', formattedResponse, state); }); } }; AlgoliaSearchHelper.prototype.containsRefinement = function(query, facetFilters, numericFilters, tagFilters) { return query || facetFilters.length !== 0 || numericFilters.length !== 0 || tagFilters.length !== 0; }; /** * Test if there are some disjunctive refinements on the facet * @private * @param {string} facet the attribute to test * @return {boolean} */ AlgoliaSearchHelper.prototype._hasDisjunctiveRefinements = function(facet) { return this.state.disjunctiveRefinements[facet] && this.state.disjunctiveRefinements[facet].length > 0; }; AlgoliaSearchHelper.prototype._change = function() { this.emit('change', this.state, this.lastResults); }; /** * Clears the cache of the underlying Algolia client. * @return {AlgoliaSearchHelper} */ AlgoliaSearchHelper.prototype.clearCache = function() { this.client.clearCache(); return this; }; /** * Updates the internal client instance. If the reference of the clients * are equal then no update is actually done. * @param {AlgoliaSearch} newClient an AlgoliaSearch client * @return {AlgoliaSearchHelper} */ AlgoliaSearchHelper.prototype.setClient = function(newClient) { if (this.client === newClient) return this; if (newClient.addAlgoliaAgent && !doesClientAgentContainsHelper(newClient)) newClient.addAlgoliaAgent('JS Helper ' + version); this.client = newClient; return this; }; /** * Gets the instance of the currently used client. * @return {AlgoliaSearch} */ AlgoliaSearchHelper.prototype.getClient = function() { return this.client; }; /** * Creates an derived instance of the Helper. A derived helper * is a way to request other indices synchronised with the lifecycle * of the main Helper. This mechanism uses the multiqueries feature * of Algolia to aggregate all the requests in a single network call. * * This method takes a function that is used to create a new SearchParameter * that will be used to create requests to Algolia. Those new requests * are created just before the `search` event. The signature of the function * is `SearchParameters -> SearchParameters`. * * This method returns a new DerivedHelper which is an EventEmitter * that fires the same `search`, `result` and `error` events. Those * events, however, will receive data specific to this DerivedHelper * and the SearchParameters that is returned by the call of the * parameter function. * @param {function} fn SearchParameters -> SearchParameters * @return {DerivedHelper} */ AlgoliaSearchHelper.prototype.derive = function(fn) { var derivedHelper = new DerivedHelper(this, fn); this.derivedHelpers.push(derivedHelper); return derivedHelper; }; /** * This method detaches a derived Helper from the main one. Prefer using the one from the * derived helper itself, to remove the event listeners too. * @private * @return {undefined} * @throws Error */ AlgoliaSearchHelper.prototype.detachDerivedHelper = function(derivedHelper) { var pos = this.derivedHelpers.indexOf(derivedHelper); if (pos === -1) throw new Error('Derived helper already detached'); this.derivedHelpers.splice(pos, 1); }; /** * This method returns true if there is currently at least one on-going search. * @return {boolean} true if there is a search pending */ AlgoliaSearchHelper.prototype.hasPendingRequests = function() { return this._currentNbQueries > 0; }; /** * @typedef AlgoliaSearchHelper.NumericRefinement * @type {object} * @property {number[]} value the numbers that are used for filtering this attribute with * the operator specified. * @property {string} operator the faceting data: value, number of entries * @property {string} type will be 'numeric' */ /** * @typedef AlgoliaSearchHelper.FacetRefinement * @type {object} * @property {string} value the string use to filter the attribute * @property {string} type the type of filter: 'conjunctive', 'disjunctive', 'exclude' */ /* * This function tests if the _ua parameter of the client * already contains the JS Helper UA */ function doesClientAgentContainsHelper(client) { // this relies on JS Client internal variable, this might break if implementation changes var currentAgent = client._ua; return !currentAgent ? false : currentAgent.indexOf('JS Helper') !== -1; } module.exports = AlgoliaSearchHelper; /***/ }), /* 250 */ /***/ (function(module, exports, __webpack_require__) { var arrayMap = __webpack_require__(12), baseIntersection = __webpack_require__(251), baseRest = __webpack_require__(25), castArrayLikeObject = __webpack_require__(252); /** * Creates an array of unique values that are included in all given arrays * using [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero) * for equality comparisons. The order and references of result values are * determined by the first array. * * @static * @memberOf _ * @since 0.1.0 * @category Array * @param {...Array} [arrays] The arrays to inspect. * @returns {Array} Returns the new array of intersecting values. * @example * * _.intersection([2, 1], [2, 3]); * // => [2] */ var intersection = baseRest(function(arrays) { var mapped = arrayMap(arrays, castArrayLikeObject); return (mapped.length && mapped[0] === arrays[0]) ? baseIntersection(mapped) : []; }); module.exports = intersection; /***/ }), /* 251 */ /***/ (function(module, exports, __webpack_require__) { var SetCache = __webpack_require__(60), arrayIncludes = __webpack_require__(92), arrayIncludesWith = __webpack_require__(164), arrayMap = __webpack_require__(12), baseUnary = __webpack_require__(43), cacheHas = __webpack_require__(61); /* Built-in method references for those with the same name as other `lodash` methods. */ var nativeMin = Math.min; /** * The base implementation of methods like `_.intersection`, without support * for iteratee shorthands, that accepts an array of arrays to inspect. * * @private * @param {Array} arrays The arrays to inspect. * @param {Function} [iteratee] The iteratee invoked per element. * @param {Function} [comparator] The comparator invoked per element. * @returns {Array} Returns the new array of shared values. */ function baseIntersection(arrays, iteratee, comparator) { var includes = comparator ? arrayIncludesWith : arrayIncludes, length = arrays[0].length, othLength = arrays.length, othIndex = othLength, caches = Array(othLength), maxLength = Infinity, result = []; while (othIndex--) { var array = arrays[othIndex]; if (othIndex && iteratee) { array = arrayMap(array, baseUnary(iteratee)); } maxLength = nativeMin(array.length, maxLength); caches[othIndex] = !comparator && (iteratee || (length >= 120 && array.length >= 120)) ? new SetCache(othIndex && array) : undefined; } array = arrays[0]; var index = -1, seen = caches[0]; outer: while (++index < length && result.length < maxLength) { var value = array[index], computed = iteratee ? iteratee(value) : value; value = (comparator || value !== 0) ? value : 0; if (!(seen ? cacheHas(seen, computed) : includes(result, computed, comparator) )) { othIndex = othLength; while (--othIndex) { var cache = caches[othIndex]; if (!(cache ? cacheHas(cache, computed) : includes(arrays[othIndex], computed, comparator)) ) { continue outer; } } if (seen) { seen.push(computed); } result.push(value); } } return result; } module.exports = baseIntersection; /***/ }), /* 252 */ /***/ (function(module, exports, __webpack_require__) { var isArrayLikeObject = __webpack_require__(94); /** * Casts `value` to an empty array if it's not an array like object. * * @private * @param {*} value The value to inspect. * @returns {Array|Object} Returns the cast array-like object. */ function castArrayLikeObject(value) { return isArrayLikeObject(value) ? value : []; } module.exports = castArrayLikeObject; /***/ }), /* 253 */ /***/ (function(module, exports, __webpack_require__) { var baseForOwn = __webpack_require__(49), castFunction = __webpack_require__(179); /** * Iterates over own enumerable string keyed properties of an object and * invokes `iteratee` for each property. The iteratee is invoked with three * arguments: (value, key, object). Iteratee functions may exit iteration * early by explicitly returning `false`. * * @static * @memberOf _ * @since 0.3.0 * @category Object * @param {Object} object The object to iterate over. * @param {Function} [iteratee=_.identity] The function invoked per iteration. * @returns {Object} Returns `object`. * @see _.forOwnRight * @example * * function Foo() { * this.a = 1; * this.b = 2; * } * * Foo.prototype.c = 3; * * _.forOwn(new Foo, function(value, key) { * console.log(key); * }); * // => Logs 'a' then 'b' (iteration order is not guaranteed). */ function forOwn(object, iteratee) { return object && baseForOwn(object, castFunction(iteratee)); } module.exports = forOwn; /***/ }), /* 254 */ /***/ (function(module, exports) { /** * Creates a base function for methods like `_.forIn` and `_.forOwn`. * * @private * @param {boolean} [fromRight] Specify iterating from right to left. * @returns {Function} Returns the new base function. */ function createBaseFor(fromRight) { return function(object, iteratee, keysFunc) { var index = -1, iterable = Object(object), props = keysFunc(object), length = props.length; while (length--) { var key = props[fromRight ? length : ++index]; if (iteratee(iterable[key], key, iterable) === false) { break; } } return object; }; } module.exports = createBaseFor; /***/ }), /* 255 */ /***/ (function(module, exports, __webpack_require__) { var isArrayLike = __webpack_require__(11); /** * Creates a `baseEach` or `baseEachRight` function. * * @private * @param {Function} eachFunc The function to iterate over a collection. * @param {boolean} [fromRight] Specify iterating from right to left. * @returns {Function} Returns the new base function. */ function createBaseEach(eachFunc, fromRight) { return function(collection, iteratee) { if (collection == null) { return collection; } if (!isArrayLike(collection)) { return eachFunc(collection, iteratee); } var length = collection.length, index = fromRight ? length : -1, iterable = Object(collection); while ((fromRight ? index-- : ++index < length)) { if (iteratee(iterable[index], index, iterable) === false) { break; } } return collection; }; } module.exports = createBaseEach; /***/ }), /* 256 */ /***/ (function(module, exports, __webpack_require__) { var baseEach = __webpack_require__(73); /** * The base implementation of `_.filter` without support for iteratee shorthands. * * @private * @param {Array|Object} collection The collection to iterate over. * @param {Function} predicate The function invoked per iteration. * @returns {Array} Returns the new filtered array. */ function baseFilter(collection, predicate) { var result = []; baseEach(collection, function(value, index, collection) { if (predicate(value, index, collection)) { result.push(value); } }); return result; } module.exports = baseFilter; /***/ }), /* 257 */ /***/ (function(module, exports, __webpack_require__) { var baseIsMatch = __webpack_require__(258), getMatchData = __webpack_require__(259), matchesStrictComparable = __webpack_require__(181); /** * The base implementation of `_.matches` which doesn't clone `source`. * * @private * @param {Object} source The object of property values to match. * @returns {Function} Returns the new spec function. */ function baseMatches(source) { var matchData = getMatchData(source); if (matchData.length == 1 && matchData[0][2]) { return matchesStrictComparable(matchData[0][0], matchData[0][1]); } return function(object) { return object === source || baseIsMatch(object, source, matchData); }; } module.exports = baseMatches; /***/ }), /* 258 */ /***/ (function(module, exports, __webpack_require__) { var Stack = __webpack_require__(39), baseIsEqual = __webpack_require__(59); /** Used to compose bitmasks for value comparisons. */ var COMPARE_PARTIAL_FLAG = 1, COMPARE_UNORDERED_FLAG = 2; /** * The base implementation of `_.isMatch` without support for iteratee shorthands. * * @private * @param {Object} object The object to inspect. * @param {Object} source The object of property values to match. * @param {Array} matchData The property names, values, and compare flags to match. * @param {Function} [customizer] The function to customize comparisons. * @returns {boolean} Returns `true` if `object` is a match, else `false`. */ function baseIsMatch(object, source, matchData, customizer) { var index = matchData.length, length = index, noCustomizer = !customizer; if (object == null) { return !length; } object = Object(object); while (index--) { var data = matchData[index]; if ((noCustomizer && data[2]) ? data[1] !== object[data[0]] : !(data[0] in object) ) { return false; } } while (++index < length) { data = matchData[index]; var key = data[0], objValue = object[key], srcValue = data[1]; if (noCustomizer && data[2]) { if (objValue === undefined && !(key in object)) { return false; } } else { var stack = new Stack; if (customizer) { var result = customizer(objValue, srcValue, key, object, source, stack); } if (!(result === undefined ? baseIsEqual(srcValue, objValue, COMPARE_PARTIAL_FLAG | COMPARE_UNORDERED_FLAG, customizer, stack) : result )) { return false; } } } return true; } module.exports = baseIsMatch; /***/ }), /* 259 */ /***/ (function(module, exports, __webpack_require__) { var isStrictComparable = __webpack_require__(180), keys = __webpack_require__(9); /** * Gets the property names, values, and compare flags of `object`. * * @private * @param {Object} object The object to query. * @returns {Array} Returns the match data of `object`. */ function getMatchData(object) { var result = keys(object), length = result.length; while (length--) { var key = result[length], value = object[key]; result[length] = [key, value, isStrictComparable(value)]; } return result; } module.exports = getMatchData; /***/ }), /* 260 */ /***/ (function(module, exports, __webpack_require__) { var baseIsEqual = __webpack_require__(59), get = __webpack_require__(72), hasIn = __webpack_require__(182), isKey = __webpack_require__(64), isStrictComparable = __webpack_require__(180), matchesStrictComparable = __webpack_require__(181), toKey = __webpack_require__(24); /** Used to compose bitmasks for value comparisons. */ var COMPARE_PARTIAL_FLAG = 1, COMPARE_UNORDERED_FLAG = 2; /** * The base implementation of `_.matchesProperty` which doesn't clone `srcValue`. * * @private * @param {string} path The path of the property to get. * @param {*} srcValue The value to match. * @returns {Function} Returns the new spec function. */ function baseMatchesProperty(path, srcValue) { if (isKey(path) && isStrictComparable(srcValue)) { return matchesStrictComparable(toKey(path), srcValue); } return function(object) { var objValue = get(object, path); return (objValue === undefined && objValue === srcValue) ? hasIn(object, path) : baseIsEqual(srcValue, objValue, COMPARE_PARTIAL_FLAG | COMPARE_UNORDERED_FLAG); }; } module.exports = baseMatchesProperty; /***/ }), /* 261 */ /***/ (function(module, exports) { /** * The base implementation of `_.hasIn` without support for deep paths. * * @private * @param {Object} [object] The object to query. * @param {Array|string} key The key to check. * @returns {boolean} Returns `true` if `key` exists, else `false`. */ function baseHasIn(object, key) { return object != null && key in Object(object); } module.exports = baseHasIn; /***/ }), /* 262 */ /***/ (function(module, exports, __webpack_require__) { var baseProperty = __webpack_require__(263), basePropertyDeep = __webpack_require__(264), isKey = __webpack_require__(64), toKey = __webpack_require__(24); /** * Creates a function that returns the value at `path` of a given object. * * @static * @memberOf _ * @since 2.4.0 * @category Util * @param {Array|string} path The path of the property to get. * @returns {Function} Returns the new accessor function. * @example * * var objects = [ * { 'a': { 'b': 2 } }, * { 'a': { 'b': 1 } } * ]; * * _.map(objects, _.property('a.b')); * // => [2, 1] * * _.map(_.sortBy(objects, _.property(['a', 'b'])), 'a.b'); * // => [1, 2] */ function property(path) { return isKey(path) ? baseProperty(toKey(path)) : basePropertyDeep(path); } module.exports = property; /***/ }), /* 263 */ /***/ (function(module, exports) { /** * The base implementation of `_.property` without support for deep paths. * * @private * @param {string} key The key of the property to get. * @returns {Function} Returns the new accessor function. */ function baseProperty(key) { return function(object) { return object == null ? undefined : object[key]; }; } module.exports = baseProperty; /***/ }), /* 264 */ /***/ (function(module, exports, __webpack_require__) { var baseGet = __webpack_require__(71); /** * A specialized version of `baseProperty` which supports deep paths. * * @private * @param {Array|string} path The path of the property to get. * @returns {Function} Returns the new accessor function. */ function basePropertyDeep(path) { return function(object) { return baseGet(object, path); }; } module.exports = basePropertyDeep; /***/ }), /* 265 */ /***/ (function(module, exports) { /** * The base implementation of `_.reduce` and `_.reduceRight`, without support * for iteratee shorthands, which iterates over `collection` using `eachFunc`. * * @private * @param {Array|Object} collection The collection to iterate over. * @param {Function} iteratee The function invoked per iteration. * @param {*} accumulator The initial value. * @param {boolean} initAccum Specify using the first or last element of * `collection` as the initial value. * @param {Function} eachFunc The function to iterate over `collection`. * @returns {*} Returns the accumulated value. */ function baseReduce(collection, iteratee, accumulator, initAccum, eachFunc) { eachFunc(collection, function(value, index, collection) { accumulator = initAccum ? (initAccum = false, value) : iteratee(accumulator, value, index, collection); }); return accumulator; } module.exports = baseReduce; /***/ }), /* 266 */ /***/ (function(module, exports, __webpack_require__) { var isObject = __webpack_require__(6), isSymbol = __webpack_require__(23); /** Used as references for various `Number` constants. */ var NAN = 0 / 0; /** Used to match leading and trailing whitespace. */ var reTrim = /^\s+|\s+$/g; /** Used to detect bad signed hexadecimal string values. */ var reIsBadHex = /^[-+]0x[0-9a-f]+$/i; /** Used to detect binary string values. */ var reIsBinary = /^0b[01]+$/i; /** Used to detect octal string values. */ var reIsOctal = /^0o[0-7]+$/i; /** Built-in method references without a dependency on `root`. */ var freeParseInt = parseInt; /** * Converts `value` to a number. * * @static * @memberOf _ * @since 4.0.0 * @category Lang * @param {*} value The value to process. * @returns {number} Returns the number. * @example * * _.toNumber(3.2); * // => 3.2 * * _.toNumber(Number.MIN_VALUE); * // => 5e-324 * * _.toNumber(Infinity); * // => Infinity * * _.toNumber('3.2'); * // => 3.2 */ function toNumber(value) { if (typeof value == 'number') { return value; } if (isSymbol(value)) { return NAN; } if (isObject(value)) { var other = typeof value.valueOf == 'function' ? value.valueOf() : value; value = isObject(other) ? (other + '') : other; } if (typeof value != 'string') { return value === 0 ? value : +value; } value = value.replace(reTrim, ''); var isBinary = reIsBinary.test(value); return (isBinary || reIsOctal.test(value)) ? freeParseInt(value.slice(2), isBinary ? 2 : 8) : (reIsBadHex.test(value) ? NAN : +value); } module.exports = toNumber; /***/ }), /* 267 */ /***/ (function(module, exports, __webpack_require__) { var baseIteratee = __webpack_require__(13), isArrayLike = __webpack_require__(11), keys = __webpack_require__(9); /** * Creates a `_.find` or `_.findLast` function. * * @private * @param {Function} findIndexFunc The function to find the collection index. * @returns {Function} Returns the new find function. */ function createFind(findIndexFunc) { return function(collection, predicate, fromIndex) { var iterable = Object(collection); if (!isArrayLike(collection)) { var iteratee = baseIteratee(predicate, 3); collection = keys(collection); predicate = function(key) { return iteratee(iterable[key], key, iterable); }; } var index = findIndexFunc(collection, predicate, fromIndex); return index > -1 ? iterable[iteratee ? collection[index] : index] : undefined; }; } module.exports = createFind; /***/ }), /* 268 */ /***/ (function(module, exports, __webpack_require__) { var baseSlice = __webpack_require__(175); /** * Casts `array` to a slice if it's needed. * * @private * @param {Array} array The array to inspect. * @param {number} start The start position. * @param {number} [end=array.length] The end position. * @returns {Array} Returns the cast slice. */ function castSlice(array, start, end) { var length = array.length; end = end === undefined ? length : end; return (!start && end >= length) ? array : baseSlice(array, start, end); } module.exports = castSlice; /***/ }), /* 269 */ /***/ (function(module, exports, __webpack_require__) { var baseIndexOf = __webpack_require__(46); /** * Used by `_.trim` and `_.trimEnd` to get the index of the last string symbol * that is not found in the character symbols. * * @private * @param {Array} strSymbols The string symbols to inspect. * @param {Array} chrSymbols The character symbols to find. * @returns {number} Returns the index of the last unmatched string symbol. */ function charsEndIndex(strSymbols, chrSymbols) { var index = strSymbols.length; while (index-- && baseIndexOf(chrSymbols, strSymbols[index], 0) > -1) {} return index; } module.exports = charsEndIndex; /***/ }), /* 270 */ /***/ (function(module, exports, __webpack_require__) { var baseIndexOf = __webpack_require__(46); /** * Used by `_.trim` and `_.trimStart` to get the index of the first string symbol * that is not found in the character symbols. * * @private * @param {Array} strSymbols The string symbols to inspect. * @param {Array} chrSymbols The character symbols to find. * @returns {number} Returns the index of the first unmatched string symbol. */ function charsStartIndex(strSymbols, chrSymbols) { var index = -1, length = strSymbols.length; while (++index < length && baseIndexOf(chrSymbols, strSymbols[index], 0) > -1) {} return index; } module.exports = charsStartIndex; /***/ }), /* 271 */ /***/ (function(module, exports, __webpack_require__) { var asciiToArray = __webpack_require__(272), hasUnicode = __webpack_require__(273), unicodeToArray = __webpack_require__(274); /** * Converts `string` to an array. * * @private * @param {string} string The string to convert. * @returns {Array} Returns the converted array. */ function stringToArray(string) { return hasUnicode(string) ? unicodeToArray(string) : asciiToArray(string); } module.exports = stringToArray; /***/ }), /* 272 */ /***/ (function(module, exports) { /** * Converts an ASCII `string` to an array. * * @private * @param {string} string The string to convert. * @returns {Array} Returns the converted array. */ function asciiToArray(string) { return string.split(''); } module.exports = asciiToArray; /***/ }), /* 273 */ /***/ (function(module, exports) { /** Used to compose unicode character classes. */ var rsAstralRange = '\\ud800-\\udfff', rsComboMarksRange = '\\u0300-\\u036f', reComboHalfMarksRange = '\\ufe20-\\ufe2f', rsComboSymbolsRange = '\\u20d0-\\u20ff', rsComboRange = rsComboMarksRange + reComboHalfMarksRange + rsComboSymbolsRange, rsVarRange = '\\ufe0e\\ufe0f'; /** Used to compose unicode capture groups. */ var rsZWJ = '\\u200d'; /** Used to detect strings with [zero-width joiners or code points from the astral planes](http://eev.ee/blog/2015/09/12/dark-corners-of-unicode/). */ var reHasUnicode = RegExp('[' + rsZWJ + rsAstralRange + rsComboRange + rsVarRange + ']'); /** * Checks if `string` contains Unicode symbols. * * @private * @param {string} string The string to inspect. * @returns {boolean} Returns `true` if a symbol is found, else `false`. */ function hasUnicode(string) { return reHasUnicode.test(string); } module.exports = hasUnicode; /***/ }), /* 274 */ /***/ (function(module, exports) { /** Used to compose unicode character classes. */ var rsAstralRange = '\\ud800-\\udfff', rsComboMarksRange = '\\u0300-\\u036f', reComboHalfMarksRange = '\\ufe20-\\ufe2f', rsComboSymbolsRange = '\\u20d0-\\u20ff', rsComboRange = rsComboMarksRange + reComboHalfMarksRange + rsComboSymbolsRange, rsVarRange = '\\ufe0e\\ufe0f'; /** Used to compose unicode capture groups. */ var rsAstral = '[' + rsAstralRange + ']', rsCombo = '[' + rsComboRange + ']', rsFitz = '\\ud83c[\\udffb-\\udfff]', rsModifier = '(?:' + rsCombo + '|' + rsFitz + ')', rsNonAstral = '[^' + rsAstralRange + ']', rsRegional = '(?:\\ud83c[\\udde6-\\uddff]){2}', rsSurrPair = '[\\ud800-\\udbff][\\udc00-\\udfff]', rsZWJ = '\\u200d'; /** Used to compose unicode regexes. */ var reOptMod = rsModifier + '?', rsOptVar = '[' + rsVarRange + ']?', rsOptJoin = '(?:' + rsZWJ + '(?:' + [rsNonAstral, rsRegional, rsSurrPair].join('|') + ')' + rsOptVar + reOptMod + ')*', rsSeq = rsOptVar + reOptMod + rsOptJoin, rsSymbol = '(?:' + [rsNonAstral + rsCombo + '?', rsCombo, rsRegional, rsSurrPair, rsAstral].join('|') + ')'; /** Used to match [string symbols](https://mathiasbynens.be/notes/javascript-unicode). */ var reUnicode = RegExp(rsFitz + '(?=' + rsFitz + ')|' + rsSymbol + rsSeq, 'g'); /** * Converts a Unicode `string` to an array. * * @private * @param {string} string The string to convert. * @returns {Array} Returns the converted array. */ function unicodeToArray(string) { return string.match(reUnicode) || []; } module.exports = unicodeToArray; /***/ }), /* 275 */ /***/ (function(module, exports, __webpack_require__) { var copyObject = __webpack_require__(27), createAssigner = __webpack_require__(188), keysIn = __webpack_require__(48); /** * This method is like `_.assignIn` except that it accepts `customizer` * which is invoked to produce the assigned values. If `customizer` returns * `undefined`, assignment is handled by the method instead. The `customizer` * is invoked with five arguments: (objValue, srcValue, key, object, source). * * **Note:** This method mutates `object`. * * @static * @memberOf _ * @since 4.0.0 * @alias extendWith * @category Object * @param {Object} object The destination object. * @param {...Object} sources The source objects. * @param {Function} [customizer] The function to customize assigned values. * @returns {Object} Returns `object`. * @see _.assignWith * @example * * function customizer(objValue, srcValue) { * return _.isUndefined(objValue) ? srcValue : objValue; * } * * var defaults = _.partialRight(_.assignInWith, customizer); * * defaults({ 'a': 1 }, { 'b': 2 }, { 'a': 3 }); * // => { 'a': 1, 'b': 2 } */ var assignInWith = createAssigner(function(object, source, srcIndex, customizer) { copyObject(source, keysIn(source), object, customizer); }); module.exports = assignInWith; /***/ }), /* 276 */ /***/ (function(module, exports, __webpack_require__) { var eq = __webpack_require__(18); /** Used for built-in method references. */ var objectProto = Object.prototype; /** Used to check objects for own properties. */ var hasOwnProperty = objectProto.hasOwnProperty; /** * Used by `_.defaults` to customize its `_.assignIn` use to assign properties * of source objects to the destination object for all destination properties * that resolve to `undefined`. * * @private * @param {*} objValue The destination value. * @param {*} srcValue The source value. * @param {string} key The key of the property to assign. * @param {Object} object The parent object of `objValue`. * @returns {*} Returns the value to assign. */ function customDefaultsAssignIn(objValue, srcValue, key, object) { if (objValue === undefined || (eq(objValue, objectProto[key]) && !hasOwnProperty.call(object, key))) { return srcValue; } return objValue; } module.exports = customDefaultsAssignIn; /***/ }), /* 277 */ /***/ (function(module, exports, __webpack_require__) { var Stack = __webpack_require__(39), assignMergeValue = __webpack_require__(189), baseFor = __webpack_require__(178), baseMergeDeep = __webpack_require__(278), isObject = __webpack_require__(6), keysIn = __webpack_require__(48); /** * The base implementation of `_.merge` without support for multiple sources. * * @private * @param {Object} object The destination object. * @param {Object} source The source object. * @param {number} srcIndex The index of `source`. * @param {Function} [customizer] The function to customize merged values. * @param {Object} [stack] Tracks traversed source values and their merged * counterparts. */ function baseMerge(object, source, srcIndex, customizer, stack) { if (object === source) { return; } baseFor(source, function(srcValue, key) { if (isObject(srcValue)) { stack || (stack = new Stack); baseMergeDeep(object, source, key, srcIndex, baseMerge, customizer, stack); } else { var newValue = customizer ? customizer(object[key], srcValue, (key + ''), object, source, stack) : undefined; if (newValue === undefined) { newValue = srcValue; } assignMergeValue(object, key, newValue); } }, keysIn); } module.exports = baseMerge; /***/ }), /* 278 */ /***/ (function(module, exports, __webpack_require__) { var assignMergeValue = __webpack_require__(189), cloneBuffer = __webpack_require__(170), cloneTypedArray = __webpack_require__(172), copyArray = __webpack_require__(69), initCloneObject = __webpack_require__(173), isArguments = __webpack_require__(20), isArray = __webpack_require__(1), isArrayLikeObject = __webpack_require__(94), isBuffer = __webpack_require__(21), isFunction = __webpack_require__(19), isObject = __webpack_require__(6), isPlainObject = __webpack_require__(45), isTypedArray = __webpack_require__(34), toPlainObject = __webpack_require__(279); /** * A specialized version of `baseMerge` for arrays and objects which performs * deep merges and tracks traversed objects enabling objects with circular * references to be merged. * * @private * @param {Object} object The destination object. * @param {Object} source The source object. * @param {string} key The key of the value to merge. * @param {number} srcIndex The index of `source`. * @param {Function} mergeFunc The function to merge values. * @param {Function} [customizer] The function to customize assigned values. * @param {Object} [stack] Tracks traversed source values and their merged * counterparts. */ function baseMergeDeep(object, source, key, srcIndex, mergeFunc, customizer, stack) { var objValue = object[key], srcValue = source[key], stacked = stack.get(srcValue); if (stacked) { assignMergeValue(object, key, stacked); return; } var newValue = customizer ? customizer(objValue, srcValue, (key + ''), object, source, stack) : undefined; var isCommon = newValue === undefined; if (isCommon) { var isArr = isArray(srcValue), isBuff = !isArr && isBuffer(srcValue), isTyped = !isArr && !isBuff && isTypedArray(srcValue); newValue = srcValue; if (isArr || isBuff || isTyped) { if (isArray(objValue)) { newValue = objValue; } else if (isArrayLikeObject(objValue)) { newValue = copyArray(objValue); } else if (isBuff) { isCommon = false; newValue = cloneBuffer(srcValue, true); } else if (isTyped) { isCommon = false; newValue = cloneTypedArray(srcValue, true); } else { newValue = []; } } else if (isPlainObject(srcValue) || isArguments(srcValue)) { newValue = objValue; if (isArguments(objValue)) { newValue = toPlainObject(objValue); } else if (!isObject(objValue) || (srcIndex && isFunction(objValue))) { newValue = initCloneObject(srcValue); } } else { isCommon = false; } } if (isCommon) { // Recursively merge objects and arrays (susceptible to call stack limits). stack.set(srcValue, newValue); mergeFunc(newValue, srcValue, srcIndex, customizer, stack); stack['delete'](srcValue); } assignMergeValue(object, key, newValue); } module.exports = baseMergeDeep; /***/ }), /* 279 */ /***/ (function(module, exports, __webpack_require__) { var copyObject = __webpack_require__(27), keysIn = __webpack_require__(48); /** * Converts `value` to a plain object flattening inherited enumerable string * keyed properties of `value` to own properties of the plain object. * * @static * @memberOf _ * @since 3.0.0 * @category Lang * @param {*} value The value to convert. * @returns {Object} Returns the converted plain object. * @example * * function Foo() { * this.b = 2; * } * * Foo.prototype.c = 3; * * _.assign({ 'a': 1 }, new Foo); * // => { 'a': 1, 'b': 2 } * * _.assign({ 'a': 1 }, _.toPlainObject(new Foo)); * // => { 'a': 1, 'b': 2, 'c': 3 } */ function toPlainObject(value) { return copyObject(value, keysIn(value)); } module.exports = toPlainObject; /***/ }), /* 280 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; var map = __webpack_require__(17); var isArray = __webpack_require__(1); var isNumber = __webpack_require__(184); var isString = __webpack_require__(52); function valToNumber(v) { if (isNumber(v)) { return v; } else if (isString(v)) { return parseFloat(v); } else if (isArray(v)) { return map(v, valToNumber); } throw new Error('The value should be a number, a parseable string or an array of those.'); } module.exports = valToNumber; /***/ }), /* 281 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; var forEach = __webpack_require__(36); var filter = __webpack_require__(101); var map = __webpack_require__(17); var isEmpty = __webpack_require__(15); var indexOf = __webpack_require__(74); function filterState(state, filters) { var partialState = {}; var attributeFilters = filter(filters, function(f) { return f.indexOf('attribute:') !== -1; }); var attributes = map(attributeFilters, function(aF) { return aF.split(':')[1]; }); if (indexOf(attributes, '*') === -1) { forEach(attributes, function(attr) { if (state.isConjunctiveFacet(attr) && state.isFacetRefined(attr)) { if (!partialState.facetsRefinements) partialState.facetsRefinements = {}; partialState.facetsRefinements[attr] = state.facetsRefinements[attr]; } if (state.isDisjunctiveFacet(attr) && state.isDisjunctiveFacetRefined(attr)) { if (!partialState.disjunctiveFacetsRefinements) partialState.disjunctiveFacetsRefinements = {}; partialState.disjunctiveFacetsRefinements[attr] = state.disjunctiveFacetsRefinements[attr]; } if (state.isHierarchicalFacet(attr) && state.isHierarchicalFacetRefined(attr)) { if (!partialState.hierarchicalFacetsRefinements) partialState.hierarchicalFacetsRefinements = {}; partialState.hierarchicalFacetsRefinements[attr] = state.hierarchicalFacetsRefinements[attr]; } var numericRefinements = state.getNumericRefinements(attr); if (!isEmpty(numericRefinements)) { if (!partialState.numericRefinements) partialState.numericRefinements = {}; partialState.numericRefinements[attr] = state.numericRefinements[attr]; } }); } else { if (!isEmpty(state.numericRefinements)) { partialState.numericRefinements = state.numericRefinements; } if (!isEmpty(state.facetsRefinements)) partialState.facetsRefinements = state.facetsRefinements; if (!isEmpty(state.disjunctiveFacetsRefinements)) { partialState.disjunctiveFacetsRefinements = state.disjunctiveFacetsRefinements; } if (!isEmpty(state.hierarchicalFacetsRefinements)) { partialState.hierarchicalFacetsRefinements = state.hierarchicalFacetsRefinements; } } var searchParameters = filter( filters, function(f) { return f.indexOf('attribute:') === -1; } ); forEach( searchParameters, function(parameterKey) { partialState[parameterKey] = state[parameterKey]; } ); return partialState; } module.exports = filterState; /***/ }), /* 282 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; /** * Functions to manipulate refinement lists * * The RefinementList is not formally defined through a prototype but is based * on a specific structure. * * @module SearchParameters.refinementList * * @typedef {string[]} SearchParameters.refinementList.Refinements * @typedef {Object.<string, SearchParameters.refinementList.Refinements>} SearchParameters.refinementList.RefinementList */ var isUndefined = __webpack_require__(185); var isString = __webpack_require__(52); var isFunction = __webpack_require__(19); var isEmpty = __webpack_require__(15); var defaults = __webpack_require__(102); var reduce = __webpack_require__(50); var filter = __webpack_require__(101); var omit = __webpack_require__(35); var lib = { /** * Adds a refinement to a RefinementList * @param {RefinementList} refinementList the initial list * @param {string} attribute the attribute to refine * @param {string} value the value of the refinement, if the value is not a string it will be converted * @return {RefinementList} a new and updated refinement list */ addRefinement: function addRefinement(refinementList, attribute, value) { if (lib.isRefined(refinementList, attribute, value)) { return refinementList; } var valueAsString = '' + value; var facetRefinement = !refinementList[attribute] ? [valueAsString] : refinementList[attribute].concat(valueAsString); var mod = {}; mod[attribute] = facetRefinement; return defaults({}, mod, refinementList); }, /** * Removes refinement(s) for an attribute: * - if the value is specified removes the refinement for the value on the attribute * - if no value is specified removes all the refinements for this attribute * @param {RefinementList} refinementList the initial list * @param {string} attribute the attribute to refine * @param {string} [value] the value of the refinement * @return {RefinementList} a new and updated refinement lst */ removeRefinement: function removeRefinement(refinementList, attribute, value) { if (isUndefined(value)) { return lib.clearRefinement(refinementList, attribute); } var valueAsString = '' + value; return lib.clearRefinement(refinementList, function(v, f) { return attribute === f && valueAsString === v; }); }, /** * Toggles the refinement value for an attribute. * @param {RefinementList} refinementList the initial list * @param {string} attribute the attribute to refine * @param {string} value the value of the refinement * @return {RefinementList} a new and updated list */ toggleRefinement: function toggleRefinement(refinementList, attribute, value) { if (isUndefined(value)) throw new Error('toggleRefinement should be used with a value'); if (lib.isRefined(refinementList, attribute, value)) { return lib.removeRefinement(refinementList, attribute, value); } return lib.addRefinement(refinementList, attribute, value); }, /** * Clear all or parts of a RefinementList. Depending on the arguments, three * kinds of behavior can happen: * - if no attribute is provided: clears the whole list * - if an attribute is provided as a string: clears the list for the specific attribute * - if an attribute is provided as a function: discards the elements for which the function returns true * @param {RefinementList} refinementList the initial list * @param {string} [attribute] the attribute or function to discard * @param {string} [refinementType] optional parameter to give more context to the attribute function * @return {RefinementList} a new and updated refinement list */ clearRefinement: function clearRefinement(refinementList, attribute, refinementType) { if (isUndefined(attribute)) { return {}; } else if (isString(attribute)) { return omit(refinementList, attribute); } else if (isFunction(attribute)) { return reduce(refinementList, function(memo, values, key) { var facetList = filter(values, function(value) { return !attribute(value, key, refinementType); }); if (!isEmpty(facetList)) memo[key] = facetList; return memo; }, {}); } }, /** * Test if the refinement value is used for the attribute. If no refinement value * is provided, test if the refinementList contains any refinement for the * given attribute. * @param {RefinementList} refinementList the list of refinement * @param {string} attribute name of the attribute * @param {string} [refinementValue] value of the filter/refinement * @return {boolean} */ isRefined: function isRefined(refinementList, attribute, refinementValue) { var indexOf = __webpack_require__(74); var containsRefinements = !!refinementList[attribute] && refinementList[attribute].length > 0; if (isUndefined(refinementValue) || !containsRefinements) { return containsRefinements; } var refinementValueAsString = '' + refinementValue; return indexOf(refinementList[attribute], refinementValueAsString) !== -1; } }; module.exports = lib; /***/ }), /* 283 */ /***/ (function(module, exports) { /** * Creates an array with all falsey values removed. The values `false`, `null`, * `0`, `""`, `undefined`, and `NaN` are falsey. * * @static * @memberOf _ * @since 0.1.0 * @category Array * @param {Array} array The array to compact. * @returns {Array} Returns the new array of filtered values. * @example * * _.compact([0, 1, false, 2, '', 3]); * // => [1, 2, 3] */ function compact(array) { var index = -1, length = array == null ? 0 : array.length, resIndex = 0, result = []; while (++index < length) { var value = array[index]; if (value) { result[resIndex++] = value; } } return result; } module.exports = compact; /***/ }), /* 284 */ /***/ (function(module, exports, __webpack_require__) { var baseIteratee = __webpack_require__(13), baseSum = __webpack_require__(285); /** * This method is like `_.sum` except that it accepts `iteratee` which is * invoked for each element in `array` to generate the value to be summed. * The iteratee is invoked with one argument: (value). * * @static * @memberOf _ * @since 4.0.0 * @category Math * @param {Array} array The array to iterate over. * @param {Function} [iteratee=_.identity] The iteratee invoked per element. * @returns {number} Returns the sum. * @example * * var objects = [{ 'n': 4 }, { 'n': 2 }, { 'n': 8 }, { 'n': 6 }]; * * _.sumBy(objects, function(o) { return o.n; }); * // => 20 * * // The `_.property` iteratee shorthand. * _.sumBy(objects, 'n'); * // => 20 */ function sumBy(array, iteratee) { return (array && array.length) ? baseSum(array, baseIteratee(iteratee, 2)) : 0; } module.exports = sumBy; /***/ }), /* 285 */ /***/ (function(module, exports) { /** * The base implementation of `_.sum` and `_.sumBy` without support for * iteratee shorthands. * * @private * @param {Array} array The array to iterate over. * @param {Function} iteratee The function invoked per iteration. * @returns {number} Returns the sum. */ function baseSum(array, iteratee) { var result, index = -1, length = array.length; while (++index < length) { var current = iteratee(array[index]); if (current !== undefined) { result = result === undefined ? current : (result + current); } } return result; } module.exports = baseSum; /***/ }), /* 286 */ /***/ (function(module, exports, __webpack_require__) { var baseIndexOf = __webpack_require__(46), isArrayLike = __webpack_require__(11), isString = __webpack_require__(52), toInteger = __webpack_require__(51), values = __webpack_require__(287); /* Built-in method references for those with the same name as other `lodash` methods. */ var nativeMax = Math.max; /** * Checks if `value` is in `collection`. If `collection` is a string, it's * checked for a substring of `value`, otherwise * [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero) * is used for equality comparisons. If `fromIndex` is negative, it's used as * the offset from the end of `collection`. * * @static * @memberOf _ * @since 0.1.0 * @category Collection * @param {Array|Object|string} collection The collection to inspect. * @param {*} value The value to search for. * @param {number} [fromIndex=0] The index to search from. * @param- {Object} [guard] Enables use as an iteratee for methods like `_.reduce`. * @returns {boolean} Returns `true` if `value` is found, else `false`. * @example * * _.includes([1, 2, 3], 1); * // => true * * _.includes([1, 2, 3], 1, 2); * // => false * * _.includes({ 'a': 1, 'b': 2 }, 1); * // => true * * _.includes('abcd', 'bc'); * // => true */ function includes(collection, value, fromIndex, guard) { collection = isArrayLike(collection) ? collection : values(collection); fromIndex = (fromIndex && !guard) ? toInteger(fromIndex) : 0; var length = collection.length; if (fromIndex < 0) { fromIndex = nativeMax(length + fromIndex, 0); } return isString(collection) ? (fromIndex <= length && collection.indexOf(value, fromIndex) > -1) : (!!length && baseIndexOf(collection, value, fromIndex) > -1); } module.exports = includes; /***/ }), /* 287 */ /***/ (function(module, exports, __webpack_require__) { var baseValues = __webpack_require__(288), keys = __webpack_require__(9); /** * Creates an array of the own enumerable string keyed property values of `object`. * * **Note:** Non-object values are coerced to objects. * * @static * @since 0.1.0 * @memberOf _ * @category Object * @param {Object} object The object to query. * @returns {Array} Returns the array of property values. * @example * * function Foo() { * this.a = 1; * this.b = 2; * } * * Foo.prototype.c = 3; * * _.values(new Foo); * // => [1, 2] (iteration order is not guaranteed) * * _.values('hi'); * // => ['h', 'i'] */ function values(object) { return object == null ? [] : baseValues(object, keys(object)); } module.exports = values; /***/ }), /* 288 */ /***/ (function(module, exports, __webpack_require__) { var arrayMap = __webpack_require__(12); /** * The base implementation of `_.values` and `_.valuesIn` which creates an * array of `object` property values corresponding to the property names * of `props`. * * @private * @param {Object} object The object to query. * @param {Array} props The property names to get values for. * @returns {Object} Returns the array of property values. */ function baseValues(object, props) { return arrayMap(props, function(key) { return object[key]; }); } module.exports = baseValues; /***/ }), /* 289 */ /***/ (function(module, exports, __webpack_require__) { var arrayMap = __webpack_require__(12), baseIteratee = __webpack_require__(13), baseMap = __webpack_require__(183), baseSortBy = __webpack_require__(290), baseUnary = __webpack_require__(43), compareMultiple = __webpack_require__(291), identity = __webpack_require__(26); /** * The base implementation of `_.orderBy` without param guards. * * @private * @param {Array|Object} collection The collection to iterate over. * @param {Function[]|Object[]|string[]} iteratees The iteratees to sort by. * @param {string[]} orders The sort orders of `iteratees`. * @returns {Array} Returns the new sorted array. */ function baseOrderBy(collection, iteratees, orders) { var index = -1; iteratees = arrayMap(iteratees.length ? iteratees : [identity], baseUnary(baseIteratee)); var result = baseMap(collection, function(value, key, collection) { var criteria = arrayMap(iteratees, function(iteratee) { return iteratee(value); }); return { 'criteria': criteria, 'index': ++index, 'value': value }; }); return baseSortBy(result, function(object, other) { return compareMultiple(object, other, orders); }); } module.exports = baseOrderBy; /***/ }), /* 290 */ /***/ (function(module, exports) { /** * The base implementation of `_.sortBy` which uses `comparer` to define the * sort order of `array` and replaces criteria objects with their corresponding * values. * * @private * @param {Array} array The array to sort. * @param {Function} comparer The function to define sort order. * @returns {Array} Returns `array`. */ function baseSortBy(array, comparer) { var length = array.length; array.sort(comparer); while (length--) { array[length] = array[length].value; } return array; } module.exports = baseSortBy; /***/ }), /* 291 */ /***/ (function(module, exports, __webpack_require__) { var compareAscending = __webpack_require__(292); /** * Used by `_.orderBy` to compare multiple properties of a value to another * and stable sort them. * * If `orders` is unspecified, all values are sorted in ascending order. Otherwise, * specify an order of "desc" for descending or "asc" for ascending sort order * of corresponding values. * * @private * @param {Object} object The object to compare. * @param {Object} other The other object to compare. * @param {boolean[]|string[]} orders The order to sort by for each property. * @returns {number} Returns the sort order indicator for `object`. */ function compareMultiple(object, other, orders) { var index = -1, objCriteria = object.criteria, othCriteria = other.criteria, length = objCriteria.length, ordersLength = orders.length; while (++index < length) { var result = compareAscending(objCriteria[index], othCriteria[index]); if (result) { if (index >= ordersLength) { return result; } var order = orders[index]; return result * (order == 'desc' ? -1 : 1); } } // Fixes an `Array#sort` bug in the JS engine embedded in Adobe applications // that causes it, under certain circumstances, to provide the same value for // `object` and `other`. See https://github.com/jashkenas/underscore/pull/1247 // for more details. // // This also ensures a stable sort in V8 and other engines. // See https://bugs.chromium.org/p/v8/issues/detail?id=90 for more details. return object.index - other.index; } module.exports = compareMultiple; /***/ }), /* 292 */ /***/ (function(module, exports, __webpack_require__) { var isSymbol = __webpack_require__(23); /** * Compares values to sort them in ascending order. * * @private * @param {*} value The value to compare. * @param {*} other The other value to compare. * @returns {number} Returns the sort order indicator for `value`. */ function compareAscending(value, other) { if (value !== other) { var valIsDefined = value !== undefined, valIsNull = value === null, valIsReflexive = value === value, valIsSymbol = isSymbol(value); var othIsDefined = other !== undefined, othIsNull = other === null, othIsReflexive = other === other, othIsSymbol = isSymbol(other); if ((!othIsNull && !othIsSymbol && !valIsSymbol && value > other) || (valIsSymbol && othIsDefined && othIsReflexive && !othIsNull && !othIsSymbol) || (valIsNull && othIsDefined && othIsReflexive) || (!valIsDefined && othIsReflexive) || !valIsReflexive) { return 1; } if ((!valIsNull && !valIsSymbol && !othIsSymbol && value < other) || (othIsSymbol && valIsDefined && valIsReflexive && !valIsNull && !valIsSymbol) || (othIsNull && valIsDefined && valIsReflexive) || (!othIsDefined && valIsReflexive) || !othIsReflexive) { return -1; } } return 0; } module.exports = compareAscending; /***/ }), /* 293 */ /***/ (function(module, exports, __webpack_require__) { var baseRest = __webpack_require__(25), createWrap = __webpack_require__(105), getHolder = __webpack_require__(54), replaceHolders = __webpack_require__(37); /** Used to compose bitmasks for function metadata. */ var WRAP_PARTIAL_FLAG = 32; /** * Creates a function that invokes `func` with `partials` prepended to the * arguments it receives. This method is like `_.bind` except it does **not** * alter the `this` binding. * * The `_.partial.placeholder` value, which defaults to `_` in monolithic * builds, may be used as a placeholder for partially applied arguments. * * **Note:** This method doesn't set the "length" property of partially * applied functions. * * @static * @memberOf _ * @since 0.2.0 * @category Function * @param {Function} func The function to partially apply arguments to. * @param {...*} [partials] The arguments to be partially applied. * @returns {Function} Returns the new partially applied function. * @example * * function greet(greeting, name) { * return greeting + ' ' + name; * } * * var sayHelloTo = _.partial(greet, 'hello'); * sayHelloTo('fred'); * // => 'hello fred' * * // Partially applied with placeholders. * var greetFred = _.partial(greet, _, 'fred'); * greetFred('hi'); * // => 'hi fred' */ var partial = baseRest(function(func, partials) { var holders = replaceHolders(partials, getHolder(partial)); return createWrap(func, WRAP_PARTIAL_FLAG, undefined, partials, holders); }); // Assign default placeholders. partial.placeholder = {}; module.exports = partial; /***/ }), /* 294 */ /***/ (function(module, exports, __webpack_require__) { var createCtor = __webpack_require__(75), root = __webpack_require__(3); /** Used to compose bitmasks for function metadata. */ var WRAP_BIND_FLAG = 1; /** * Creates a function that wraps `func` to invoke it with the optional `this` * binding of `thisArg`. * * @private * @param {Function} func The function to wrap. * @param {number} bitmask The bitmask flags. See `createWrap` for more details. * @param {*} [thisArg] The `this` binding of `func`. * @returns {Function} Returns the new wrapped function. */ function createBind(func, bitmask, thisArg) { var isBind = bitmask & WRAP_BIND_FLAG, Ctor = createCtor(func); function wrapper() { var fn = (this && this !== root && this instanceof wrapper) ? Ctor : func; return fn.apply(isBind ? thisArg : this, arguments); } return wrapper; } module.exports = createBind; /***/ }), /* 295 */ /***/ (function(module, exports, __webpack_require__) { var apply = __webpack_require__(68), createCtor = __webpack_require__(75), createHybrid = __webpack_require__(193), createRecurry = __webpack_require__(196), getHolder = __webpack_require__(54), replaceHolders = __webpack_require__(37), root = __webpack_require__(3); /** * Creates a function that wraps `func` to enable currying. * * @private * @param {Function} func The function to wrap. * @param {number} bitmask The bitmask flags. See `createWrap` for more details. * @param {number} arity The arity of `func`. * @returns {Function} Returns the new wrapped function. */ function createCurry(func, bitmask, arity) { var Ctor = createCtor(func); function wrapper() { var length = arguments.length, args = Array(length), index = length, placeholder = getHolder(wrapper); while (index--) { args[index] = arguments[index]; } var holders = (length < 3 && args[0] !== placeholder && args[length - 1] !== placeholder) ? [] : replaceHolders(args, placeholder); length -= holders.length; if (length < arity) { return createRecurry( func, bitmask, createHybrid, wrapper.placeholder, undefined, args, holders, undefined, undefined, arity - length); } var fn = (this && this !== root && this instanceof wrapper) ? Ctor : func; return apply(fn, this, args); } return wrapper; } module.exports = createCurry; /***/ }), /* 296 */ /***/ (function(module, exports) { /** * Gets the number of `placeholder` occurrences in `array`. * * @private * @param {Array} array The array to inspect. * @param {*} placeholder The placeholder to search for. * @returns {number} Returns the placeholder count. */ function countHolders(array, placeholder) { var length = array.length, result = 0; while (length--) { if (array[length] === placeholder) { ++result; } } return result; } module.exports = countHolders; /***/ }), /* 297 */ /***/ (function(module, exports, __webpack_require__) { var LazyWrapper = __webpack_require__(106), getData = __webpack_require__(197), getFuncName = __webpack_require__(299), lodash = __webpack_require__(301); /** * Checks if `func` has a lazy counterpart. * * @private * @param {Function} func The function to check. * @returns {boolean} Returns `true` if `func` has a lazy counterpart, * else `false`. */ function isLaziable(func) { var funcName = getFuncName(func), other = lodash[funcName]; if (typeof other != 'function' || !(funcName in LazyWrapper.prototype)) { return false; } if (func === other) { return true; } var data = getData(other); return !!data && func === data[0]; } module.exports = isLaziable; /***/ }), /* 298 */ /***/ (function(module, exports) { /** * This method returns `undefined`. * * @static * @memberOf _ * @since 2.3.0 * @category Util * @example * * _.times(2, _.noop); * // => [undefined, undefined] */ function noop() { // No operation performed. } module.exports = noop; /***/ }), /* 299 */ /***/ (function(module, exports, __webpack_require__) { var realNames = __webpack_require__(300); /** Used for built-in method references. */ var objectProto = Object.prototype; /** Used to check objects for own properties. */ var hasOwnProperty = objectProto.hasOwnProperty; /** * Gets the name of `func`. * * @private * @param {Function} func The function to query. * @returns {string} Returns the function name. */ function getFuncName(func) { var result = (func.name + ''), array = realNames[result], length = hasOwnProperty.call(realNames, result) ? array.length : 0; while (length--) { var data = array[length], otherFunc = data.func; if (otherFunc == null || otherFunc == func) { return data.name; } } return result; } module.exports = getFuncName; /***/ }), /* 300 */ /***/ (function(module, exports) { /** Used to lookup unminified function names. */ var realNames = {}; module.exports = realNames; /***/ }), /* 301 */ /***/ (function(module, exports, __webpack_require__) { var LazyWrapper = __webpack_require__(106), LodashWrapper = __webpack_require__(198), baseLodash = __webpack_require__(107), isArray = __webpack_require__(1), isObjectLike = __webpack_require__(7), wrapperClone = __webpack_require__(302); /** Used for built-in method references. */ var objectProto = Object.prototype; /** Used to check objects for own properties. */ var hasOwnProperty = objectProto.hasOwnProperty; /** * Creates a `lodash` object which wraps `value` to enable implicit method * chain sequences. Methods that operate on and return arrays, collections, * and functions can be chained together. Methods that retrieve a single value * or may return a primitive value will automatically end the chain sequence * and return the unwrapped value. Otherwise, the value must be unwrapped * with `_#value`. * * Explicit chain sequences, which must be unwrapped with `_#value`, may be * enabled using `_.chain`. * * The execution of chained methods is lazy, that is, it's deferred until * `_#value` is implicitly or explicitly called. * * Lazy evaluation allows several methods to support shortcut fusion. * Shortcut fusion is an optimization to merge iteratee calls; this avoids * the creation of intermediate arrays and can greatly reduce the number of * iteratee executions. Sections of a chain sequence qualify for shortcut * fusion if the section is applied to an array and iteratees accept only * one argument. The heuristic for whether a section qualifies for shortcut * fusion is subject to change. * * Chaining is supported in custom builds as long as the `_#value` method is * directly or indirectly included in the build. * * In addition to lodash methods, wrappers have `Array` and `String` methods. * * The wrapper `Array` methods are: * `concat`, `join`, `pop`, `push`, `shift`, `sort`, `splice`, and `unshift` * * The wrapper `String` methods are: * `replace` and `split` * * The wrapper methods that support shortcut fusion are: * `at`, `compact`, `drop`, `dropRight`, `dropWhile`, `filter`, `find`, * `findLast`, `head`, `initial`, `last`, `map`, `reject`, `reverse`, `slice`, * `tail`, `take`, `takeRight`, `takeRightWhile`, `takeWhile`, and `toArray` * * The chainable wrapper methods are: * `after`, `ary`, `assign`, `assignIn`, `assignInWith`, `assignWith`, `at`, * `before`, `bind`, `bindAll`, `bindKey`, `castArray`, `chain`, `chunk`, * `commit`, `compact`, `concat`, `conforms`, `constant`, `countBy`, `create`, * `curry`, `debounce`, `defaults`, `defaultsDeep`, `defer`, `delay`, * `difference`, `differenceBy`, `differenceWith`, `drop`, `dropRight`, * `dropRightWhile`, `dropWhile`, `extend`, `extendWith`, `fill`, `filter`, * `flatMap`, `flatMapDeep`, `flatMapDepth`, `flatten`, `flattenDeep`, * `flattenDepth`, `flip`, `flow`, `flowRight`, `fromPairs`, `functions`, * `functionsIn`, `groupBy`, `initial`, `intersection`, `intersectionBy`, * `intersectionWith`, `invert`, `invertBy`, `invokeMap`, `iteratee`, `keyBy`, * `keys`, `keysIn`, `map`, `mapKeys`, `mapValues`, `matches`, `matchesProperty`, * `memoize`, `merge`, `mergeWith`, `method`, `methodOf`, `mixin`, `negate`, * `nthArg`, `omit`, `omitBy`, `once`, `orderBy`, `over`, `overArgs`, * `overEvery`, `overSome`, `partial`, `partialRight`, `partition`, `pick`, * `pickBy`, `plant`, `property`, `propertyOf`, `pull`, `pullAll`, `pullAllBy`, * `pullAllWith`, `pullAt`, `push`, `range`, `rangeRight`, `rearg`, `reject`, * `remove`, `rest`, `reverse`, `sampleSize`, `set`, `setWith`, `shuffle`, * `slice`, `sort`, `sortBy`, `splice`, `spread`, `tail`, `take`, `takeRight`, * `takeRightWhile`, `takeWhile`, `tap`, `throttle`, `thru`, `toArray`, * `toPairs`, `toPairsIn`, `toPath`, `toPlainObject`, `transform`, `unary`, * `union`, `unionBy`, `unionWith`, `uniq`, `uniqBy`, `uniqWith`, `unset`, * `unshift`, `unzip`, `unzipWith`, `update`, `updateWith`, `values`, * `valuesIn`, `without`, `wrap`, `xor`, `xorBy`, `xorWith`, `zip`, * `zipObject`, `zipObjectDeep`, and `zipWith` * * The wrapper methods that are **not** chainable by default are: * `add`, `attempt`, `camelCase`, `capitalize`, `ceil`, `clamp`, `clone`, * `cloneDeep`, `cloneDeepWith`, `cloneWith`, `conformsTo`, `deburr`, * `defaultTo`, `divide`, `each`, `eachRight`, `endsWith`, `eq`, `escape`, * `escapeRegExp`, `every`, `find`, `findIndex`, `findKey`, `findLast`, * `findLastIndex`, `findLastKey`, `first`, `floor`, `forEach`, `forEachRight`, * `forIn`, `forInRight`, `forOwn`, `forOwnRight`, `get`, `gt`, `gte`, `has`, * `hasIn`, `head`, `identity`, `includes`, `indexOf`, `inRange`, `invoke`, * `isArguments`, `isArray`, `isArrayBuffer`, `isArrayLike`, `isArrayLikeObject`, * `isBoolean`, `isBuffer`, `isDate`, `isElement`, `isEmpty`, `isEqual`, * `isEqualWith`, `isError`, `isFinite`, `isFunction`, `isInteger`, `isLength`, * `isMap`, `isMatch`, `isMatchWith`, `isNaN`, `isNative`, `isNil`, `isNull`, * `isNumber`, `isObject`, `isObjectLike`, `isPlainObject`, `isRegExp`, * `isSafeInteger`, `isSet`, `isString`, `isUndefined`, `isTypedArray`, * `isWeakMap`, `isWeakSet`, `join`, `kebabCase`, `last`, `lastIndexOf`, * `lowerCase`, `lowerFirst`, `lt`, `lte`, `max`, `maxBy`, `mean`, `meanBy`, * `min`, `minBy`, `multiply`, `noConflict`, `noop`, `now`, `nth`, `pad`, * `padEnd`, `padStart`, `parseInt`, `pop`, `random`, `reduce`, `reduceRight`, * `repeat`, `result`, `round`, `runInContext`, `sample`, `shift`, `size`, * `snakeCase`, `some`, `sortedIndex`, `sortedIndexBy`, `sortedLastIndex`, * `sortedLastIndexBy`, `startCase`, `startsWith`, `stubArray`, `stubFalse`, * `stubObject`, `stubString`, `stubTrue`, `subtract`, `sum`, `sumBy`, * `template`, `times`, `toFinite`, `toInteger`, `toJSON`, `toLength`, * `toLower`, `toNumber`, `toSafeInteger`, `toString`, `toUpper`, `trim`, * `trimEnd`, `trimStart`, `truncate`, `unescape`, `uniqueId`, `upperCase`, * `upperFirst`, `value`, and `words` * * @name _ * @constructor * @category Seq * @param {*} value The value to wrap in a `lodash` instance. * @returns {Object} Returns the new `lodash` wrapper instance. * @example * * function square(n) { * return n * n; * } * * var wrapped = _([1, 2, 3]); * * // Returns an unwrapped value. * wrapped.reduce(_.add); * // => 6 * * // Returns a wrapped value. * var squares = wrapped.map(square); * * _.isArray(squares); * // => false * * _.isArray(squares.value()); * // => true */ function lodash(value) { if (isObjectLike(value) && !isArray(value) && !(value instanceof LazyWrapper)) { if (value instanceof LodashWrapper) { return value; } if (hasOwnProperty.call(value, '__wrapped__')) { return wrapperClone(value); } } return new LodashWrapper(value); } // Ensure wrappers are instances of `baseLodash`. lodash.prototype = baseLodash.prototype; lodash.prototype.constructor = lodash; module.exports = lodash; /***/ }), /* 302 */ /***/ (function(module, exports, __webpack_require__) { var LazyWrapper = __webpack_require__(106), LodashWrapper = __webpack_require__(198), copyArray = __webpack_require__(69); /** * Creates a clone of `wrapper`. * * @private * @param {Object} wrapper The wrapper to clone. * @returns {Object} Returns the cloned wrapper. */ function wrapperClone(wrapper) { if (wrapper instanceof LazyWrapper) { return wrapper.clone(); } var result = new LodashWrapper(wrapper.__wrapped__, wrapper.__chain__); result.__actions__ = copyArray(wrapper.__actions__); result.__index__ = wrapper.__index__; result.__values__ = wrapper.__values__; return result; } module.exports = wrapperClone; /***/ }), /* 303 */ /***/ (function(module, exports) { /** Used to match wrap detail comments. */ var reWrapDetails = /\{\n\/\* \[wrapped with (.+)\] \*/, reSplitDetails = /,? & /; /** * Extracts wrapper details from the `source` body comment. * * @private * @param {string} source The source to inspect. * @returns {Array} Returns the wrapper details. */ function getWrapDetails(source) { var match = source.match(reWrapDetails); return match ? match[1].split(reSplitDetails) : []; } module.exports = getWrapDetails; /***/ }), /* 304 */ /***/ (function(module, exports) { /** Used to match wrap detail comments. */ var reWrapComment = /\{(?:\n\/\* \[wrapped with .+\] \*\/)?\n?/; /** * Inserts wrapper `details` in a comment at the top of the `source` body. * * @private * @param {string} source The source to modify. * @returns {Array} details The details to insert. * @returns {string} Returns the modified source. */ function insertWrapDetails(source, details) { var length = details.length; if (!length) { return source; } var lastIndex = length - 1; details[lastIndex] = (length > 1 ? '& ' : '') + details[lastIndex]; details = details.join(length > 2 ? ', ' : ' '); return source.replace(reWrapComment, '{\n/* [wrapped with ' + details + '] */\n'); } module.exports = insertWrapDetails; /***/ }), /* 305 */ /***/ (function(module, exports, __webpack_require__) { var arrayEach = __webpack_require__(95), arrayIncludes = __webpack_require__(92); /** Used to compose bitmasks for function metadata. */ var WRAP_BIND_FLAG = 1, WRAP_BIND_KEY_FLAG = 2, WRAP_CURRY_FLAG = 8, WRAP_CURRY_RIGHT_FLAG = 16, WRAP_PARTIAL_FLAG = 32, WRAP_PARTIAL_RIGHT_FLAG = 64, WRAP_ARY_FLAG = 128, WRAP_REARG_FLAG = 256, WRAP_FLIP_FLAG = 512; /** Used to associate wrap methods with their bit flags. */ var wrapFlags = [ ['ary', WRAP_ARY_FLAG], ['bind', WRAP_BIND_FLAG], ['bindKey', WRAP_BIND_KEY_FLAG], ['curry', WRAP_CURRY_FLAG], ['curryRight', WRAP_CURRY_RIGHT_FLAG], ['flip', WRAP_FLIP_FLAG], ['partial', WRAP_PARTIAL_FLAG], ['partialRight', WRAP_PARTIAL_RIGHT_FLAG], ['rearg', WRAP_REARG_FLAG] ]; /** * Updates wrapper `details` based on `bitmask` flags. * * @private * @returns {Array} details The details to modify. * @param {number} bitmask The bitmask flags. See `createWrap` for more details. * @returns {Array} Returns `details`. */ function updateWrapDetails(details, bitmask) { arrayEach(wrapFlags, function(pair) { var value = '_.' + pair[0]; if ((bitmask & pair[1]) && !arrayIncludes(details, value)) { details.push(value); } }); return details.sort(); } module.exports = updateWrapDetails; /***/ }), /* 306 */ /***/ (function(module, exports, __webpack_require__) { var copyArray = __webpack_require__(69), isIndex = __webpack_require__(32); /* Built-in method references for those with the same name as other `lodash` methods. */ var nativeMin = Math.min; /** * Reorder `array` according to the specified indexes where the element at * the first index is assigned as the first element, the element at * the second index is assigned as the second element, and so on. * * @private * @param {Array} array The array to reorder. * @param {Array} indexes The arranged array indexes. * @returns {Array} Returns `array`. */ function reorder(array, indexes) { var arrLength = array.length, length = nativeMin(indexes.length, arrLength), oldArray = copyArray(array); while (length--) { var index = indexes[length]; array[length] = isIndex(index, arrLength) ? oldArray[index] : undefined; } return array; } module.exports = reorder; /***/ }), /* 307 */ /***/ (function(module, exports, __webpack_require__) { var apply = __webpack_require__(68), createCtor = __webpack_require__(75), root = __webpack_require__(3); /** Used to compose bitmasks for function metadata. */ var WRAP_BIND_FLAG = 1; /** * Creates a function that wraps `func` to invoke it with the `this` binding * of `thisArg` and `partials` prepended to the arguments it receives. * * @private * @param {Function} func The function to wrap. * @param {number} bitmask The bitmask flags. See `createWrap` for more details. * @param {*} thisArg The `this` binding of `func`. * @param {Array} partials The arguments to prepend to those provided to * the new function. * @returns {Function} Returns the new wrapped function. */ function createPartial(func, bitmask, thisArg, partials) { var isBind = bitmask & WRAP_BIND_FLAG, Ctor = createCtor(func); function wrapper() { var argsIndex = -1, argsLength = arguments.length, leftIndex = -1, leftLength = partials.length, args = Array(leftLength + argsLength), fn = (this && this !== root && this instanceof wrapper) ? Ctor : func; while (++leftIndex < leftLength) { args[leftIndex] = partials[leftIndex]; } while (argsLength--) { args[leftIndex++] = arguments[++argsIndex]; } return apply(fn, isBind ? thisArg : this, args); } return wrapper; } module.exports = createPartial; /***/ }), /* 308 */ /***/ (function(module, exports, __webpack_require__) { var composeArgs = __webpack_require__(194), composeArgsRight = __webpack_require__(195), replaceHolders = __webpack_require__(37); /** Used as the internal argument placeholder. */ var PLACEHOLDER = '__lodash_placeholder__'; /** Used to compose bitmasks for function metadata. */ var WRAP_BIND_FLAG = 1, WRAP_BIND_KEY_FLAG = 2, WRAP_CURRY_BOUND_FLAG = 4, WRAP_CURRY_FLAG = 8, WRAP_ARY_FLAG = 128, WRAP_REARG_FLAG = 256; /* Built-in method references for those with the same name as other `lodash` methods. */ var nativeMin = Math.min; /** * Merges the function metadata of `source` into `data`. * * Merging metadata reduces the number of wrappers used to invoke a function. * This is possible because methods like `_.bind`, `_.curry`, and `_.partial` * may be applied regardless of execution order. Methods like `_.ary` and * `_.rearg` modify function arguments, making the order in which they are * executed important, preventing the merging of metadata. However, we make * an exception for a safe combined case where curried functions have `_.ary` * and or `_.rearg` applied. * * @private * @param {Array} data The destination metadata. * @param {Array} source The source metadata. * @returns {Array} Returns `data`. */ function mergeData(data, source) { var bitmask = data[1], srcBitmask = source[1], newBitmask = bitmask | srcBitmask, isCommon = newBitmask < (WRAP_BIND_FLAG | WRAP_BIND_KEY_FLAG | WRAP_ARY_FLAG); var isCombo = ((srcBitmask == WRAP_ARY_FLAG) && (bitmask == WRAP_CURRY_FLAG)) || ((srcBitmask == WRAP_ARY_FLAG) && (bitmask == WRAP_REARG_FLAG) && (data[7].length <= source[8])) || ((srcBitmask == (WRAP_ARY_FLAG | WRAP_REARG_FLAG)) && (source[7].length <= source[8]) && (bitmask == WRAP_CURRY_FLAG)); // Exit early if metadata can't be merged. if (!(isCommon || isCombo)) { return data; } // Use source `thisArg` if available. if (srcBitmask & WRAP_BIND_FLAG) { data[2] = source[2]; // Set when currying a bound function. newBitmask |= bitmask & WRAP_BIND_FLAG ? 0 : WRAP_CURRY_BOUND_FLAG; } // Compose partial arguments. var value = source[3]; if (value) { var partials = data[3]; data[3] = partials ? composeArgs(partials, value, source[4]) : value; data[4] = partials ? replaceHolders(data[3], PLACEHOLDER) : source[4]; } // Compose partial right arguments. value = source[5]; if (value) { partials = data[5]; data[5] = partials ? composeArgsRight(partials, value, source[6]) : value; data[6] = partials ? replaceHolders(data[5], PLACEHOLDER) : source[6]; } // Use source `argPos` if available. value = source[7]; if (value) { data[7] = value; } // Use source `ary` if it's smaller. if (srcBitmask & WRAP_ARY_FLAG) { data[8] = data[8] == null ? source[8] : nativeMin(data[8], source[8]); } // Use source `arity` if one is not provided. if (data[9] == null) { data[9] = source[9]; } // Use source `func` and merge bitmasks. data[0] = source[0]; data[1] = newBitmask; return data; } module.exports = mergeData; /***/ }), /* 309 */ /***/ (function(module, exports, __webpack_require__) { var baseRest = __webpack_require__(25), createWrap = __webpack_require__(105), getHolder = __webpack_require__(54), replaceHolders = __webpack_require__(37); /** Used to compose bitmasks for function metadata. */ var WRAP_PARTIAL_RIGHT_FLAG = 64; /** * This method is like `_.partial` except that partially applied arguments * are appended to the arguments it receives. * * The `_.partialRight.placeholder` value, which defaults to `_` in monolithic * builds, may be used as a placeholder for partially applied arguments. * * **Note:** This method doesn't set the "length" property of partially * applied functions. * * @static * @memberOf _ * @since 1.0.0 * @category Function * @param {Function} func The function to partially apply arguments to. * @param {...*} [partials] The arguments to be partially applied. * @returns {Function} Returns the new partially applied function. * @example * * function greet(greeting, name) { * return greeting + ' ' + name; * } * * var greetFred = _.partialRight(greet, 'fred'); * greetFred('hi'); * // => 'hi fred' * * // Partially applied with placeholders. * var sayHelloTo = _.partialRight(greet, 'hello', _); * sayHelloTo('fred'); * // => 'hello fred' */ var partialRight = baseRest(function(func, partials) { var holders = replaceHolders(partials, getHolder(partialRight)); return createWrap(func, WRAP_PARTIAL_RIGHT_FLAG, undefined, partials, holders); }); // Assign default placeholders. partialRight.placeholder = {}; module.exports = partialRight; /***/ }), /* 310 */ /***/ (function(module, exports, __webpack_require__) { var baseClamp = __webpack_require__(311), baseToString = __webpack_require__(66), toInteger = __webpack_require__(51), toString = __webpack_require__(65); /** * Checks if `string` starts with the given target string. * * @static * @memberOf _ * @since 3.0.0 * @category String * @param {string} [string=''] The string to inspect. * @param {string} [target] The string to search for. * @param {number} [position=0] The position to search from. * @returns {boolean} Returns `true` if `string` starts with `target`, * else `false`. * @example * * _.startsWith('abc', 'a'); * // => true * * _.startsWith('abc', 'b'); * // => false * * _.startsWith('abc', 'b', 1); * // => true */ function startsWith(string, target, position) { string = toString(string); position = position == null ? 0 : baseClamp(toInteger(position), 0, string.length); target = baseToString(target); return string.slice(position, position + target.length) == target; } module.exports = startsWith; /***/ }), /* 311 */ /***/ (function(module, exports) { /** * The base implementation of `_.clamp` which doesn't coerce arguments. * * @private * @param {number} number The number to clamp. * @param {number} [lower] The lower bound. * @param {number} upper The upper bound. * @returns {number} Returns the clamped number. */ function baseClamp(number, lower, upper) { if (number === number) { if (upper !== undefined) { number = number <= upper ? number : upper; } if (lower !== undefined) { number = number >= lower ? number : lower; } } return number; } module.exports = baseClamp; /***/ }), /* 312 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; module.exports = generateTrees; var last = __webpack_require__(174); var map = __webpack_require__(17); var reduce = __webpack_require__(50); var orderBy = __webpack_require__(104); var trim = __webpack_require__(187); var find = __webpack_require__(53); var pickBy = __webpack_require__(313); var prepareHierarchicalFacetSortBy = __webpack_require__(201); function generateTrees(state) { return function generate(hierarchicalFacetResult, hierarchicalFacetIndex) { var hierarchicalFacet = state.hierarchicalFacets[hierarchicalFacetIndex]; var hierarchicalFacetRefinement = state.hierarchicalFacetsRefinements[hierarchicalFacet.name] && state.hierarchicalFacetsRefinements[hierarchicalFacet.name][0] || ''; var hierarchicalSeparator = state._getHierarchicalFacetSeparator(hierarchicalFacet); var hierarchicalRootPath = state._getHierarchicalRootPath(hierarchicalFacet); var hierarchicalShowParentLevel = state._getHierarchicalShowParentLevel(hierarchicalFacet); var sortBy = prepareHierarchicalFacetSortBy(state._getHierarchicalFacetSortBy(hierarchicalFacet)); var generateTreeFn = generateHierarchicalTree(sortBy, hierarchicalSeparator, hierarchicalRootPath, hierarchicalShowParentLevel, hierarchicalFacetRefinement); var results = hierarchicalFacetResult; if (hierarchicalRootPath) { results = hierarchicalFacetResult.slice(hierarchicalRootPath.split(hierarchicalSeparator).length); } return reduce(results, generateTreeFn, { name: state.hierarchicalFacets[hierarchicalFacetIndex].name, count: null, // root level, no count isRefined: true, // root level, always refined path: null, // root level, no path data: null }); }; } function generateHierarchicalTree(sortBy, hierarchicalSeparator, hierarchicalRootPath, hierarchicalShowParentLevel, currentRefinement) { return function generateTree(hierarchicalTree, hierarchicalFacetResult, currentHierarchicalLevel) { var parent = hierarchicalTree; if (currentHierarchicalLevel > 0) { var level = 0; parent = hierarchicalTree; while (level < currentHierarchicalLevel) { parent = parent && find(parent.data, {isRefined: true}); level++; } } // we found a refined parent, let's add current level data under it if (parent) { // filter values in case an object has multiple categories: // { // categories: { // level0: ['beers', 'bières'], // level1: ['beers > IPA', 'bières > Belges'] // } // } // // If parent refinement is `beers`, then we do not want to have `bières > Belges` // showing up var onlyMatchingValuesFn = filterFacetValues(parent.path || hierarchicalRootPath, currentRefinement, hierarchicalSeparator, hierarchicalRootPath, hierarchicalShowParentLevel); parent.data = orderBy( map( pickBy(hierarchicalFacetResult.data, onlyMatchingValuesFn), formatHierarchicalFacetValue(hierarchicalSeparator, currentRefinement) ), sortBy[0], sortBy[1] ); } return hierarchicalTree; }; } function filterFacetValues(parentPath, currentRefinement, hierarchicalSeparator, hierarchicalRootPath, hierarchicalShowParentLevel) { return function(facetCount, facetValue) { // we want the facetValue is a child of hierarchicalRootPath if (hierarchicalRootPath && (facetValue.indexOf(hierarchicalRootPath) !== 0 || hierarchicalRootPath === facetValue)) { return false; } // we always want root levels (only when there is no prefix path) return !hierarchicalRootPath && facetValue.indexOf(hierarchicalSeparator) === -1 || // if there is a rootPath, being root level mean 1 level under rootPath hierarchicalRootPath && facetValue.split(hierarchicalSeparator).length - hierarchicalRootPath.split(hierarchicalSeparator).length === 1 || // if current refinement is a root level and current facetValue is a root level, // keep the facetValue facetValue.indexOf(hierarchicalSeparator) === -1 && currentRefinement.indexOf(hierarchicalSeparator) === -1 || // currentRefinement is a child of the facet value currentRefinement.indexOf(facetValue) === 0 || // facetValue is a child of the current parent, add it facetValue.indexOf(parentPath + hierarchicalSeparator) === 0 && (hierarchicalShowParentLevel || facetValue.indexOf(currentRefinement) === 0); }; } function formatHierarchicalFacetValue(hierarchicalSeparator, currentRefinement) { return function format(facetCount, facetValue) { return { name: trim(last(facetValue.split(hierarchicalSeparator))), path: facetValue, count: facetCount, isRefined: currentRefinement === facetValue || currentRefinement.indexOf(facetValue + hierarchicalSeparator) === 0, data: null }; }; } /***/ }), /* 313 */ /***/ (function(module, exports, __webpack_require__) { var arrayMap = __webpack_require__(12), baseIteratee = __webpack_require__(13), basePickBy = __webpack_require__(202), getAllKeysIn = __webpack_require__(97); /** * Creates an object composed of the `object` properties `predicate` returns * truthy for. The predicate is invoked with two arguments: (value, key). * * @static * @memberOf _ * @since 4.0.0 * @category Object * @param {Object} object The source object. * @param {Function} [predicate=_.identity] The function invoked per property. * @returns {Object} Returns the new object. * @example * * var object = { 'a': 1, 'b': '2', 'c': 3 }; * * _.pickBy(object, _.isNumber); * // => { 'a': 1, 'c': 3 } */ function pickBy(object, predicate) { if (object == null) { return {}; } var props = arrayMap(getAllKeysIn(object), function(prop) { return [prop]; }); predicate = baseIteratee(predicate); return basePickBy(object, props, function(value, path) { return predicate(value, path[0]); }); } module.exports = pickBy; /***/ }), /* 314 */ /***/ (function(module, exports, __webpack_require__) { var assignValue = __webpack_require__(96), castPath = __webpack_require__(22), isIndex = __webpack_require__(32), isObject = __webpack_require__(6), toKey = __webpack_require__(24); /** * The base implementation of `_.set`. * * @private * @param {Object} object The object to modify. * @param {Array|string} path The path of the property to set. * @param {*} value The value to set. * @param {Function} [customizer] The function to customize path creation. * @returns {Object} Returns `object`. */ function baseSet(object, path, value, customizer) { if (!isObject(object)) { return object; } path = castPath(path, object); var index = -1, length = path.length, lastIndex = length - 1, nested = object; while (nested != null && ++index < length) { var key = toKey(path[index]), newValue = value; if (index != lastIndex) { var objValue = nested[key]; newValue = customizer ? customizer(objValue, key, nested) : undefined; if (newValue === undefined) { newValue = isObject(objValue) ? objValue : (isIndex(path[index + 1]) ? [] : {}); } } assignValue(nested, key, newValue); nested = nested[key]; } return object; } module.exports = baseSet; /***/ }), /* 315 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; var util = __webpack_require__(203); var events = __webpack_require__(204); /** * A DerivedHelper is a way to create sub requests to * Algolia from a main helper. * @class * @classdesc The DerivedHelper provides an event based interface for search callbacks: * - search: when a search is triggered using the `search()` method. * - result: when the response is retrieved from Algolia and is processed. * This event contains a {@link SearchResults} object and the * {@link SearchParameters} corresponding to this answer. */ function DerivedHelper(mainHelper, fn) { this.main = mainHelper; this.fn = fn; this.lastResults = null; } util.inherits(DerivedHelper, events.EventEmitter); /** * Detach this helper from the main helper * @return {undefined} * @throws Error if the derived helper is already detached */ DerivedHelper.prototype.detach = function() { this.removeAllListeners(); this.main.detachDerivedHelper(this); }; DerivedHelper.prototype.getModifiedState = function(parameters) { return this.fn(parameters); }; module.exports = DerivedHelper; /***/ }), /* 316 */ /***/ (function(module, exports) { module.exports = function isBuffer(arg) { return arg && typeof arg === 'object' && typeof arg.copy === 'function' && typeof arg.fill === 'function' && typeof arg.readUInt8 === 'function'; } /***/ }), /* 317 */ /***/ (function(module, exports) { if (typeof Object.create === 'function') { // implementation from standard node.js 'util' module module.exports = function inherits(ctor, superCtor) { ctor.super_ = superCtor ctor.prototype = Object.create(superCtor.prototype, { constructor: { value: ctor, enumerable: false, writable: true, configurable: true } }); }; } else { // old school shim for old browsers module.exports = function inherits(ctor, superCtor) { ctor.super_ = superCtor var TempCtor = function () {} TempCtor.prototype = superCtor.prototype ctor.prototype = new TempCtor() ctor.prototype.constructor = ctor } } /***/ }), /* 318 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; var forEach = __webpack_require__(36); var map = __webpack_require__(17); var reduce = __webpack_require__(50); var merge = __webpack_require__(103); var isArray = __webpack_require__(1); var requestBuilder = { /** * Get all the queries to send to the client, those queries can used directly * with the Algolia client. * @private * @return {object[]} The queries */ _getQueries: function getQueries(index, state) { var queries = []; // One query for the hits queries.push({ indexName: index, params: requestBuilder._getHitsSearchParams(state) }); // One for each disjunctive facets forEach(state.getRefinedDisjunctiveFacets(), function(refinedFacet) { queries.push({ indexName: index, params: requestBuilder._getDisjunctiveFacetSearchParams(state, refinedFacet) }); }); // maybe more to get the root level of hierarchical facets when activated forEach(state.getRefinedHierarchicalFacets(), function(refinedFacet) { var hierarchicalFacet = state.getHierarchicalFacetByName(refinedFacet); var currentRefinement = state.getHierarchicalRefinement(refinedFacet); // if we are deeper than level 0 (starting from `beer > IPA`) // we want to get the root values var separator = state._getHierarchicalFacetSeparator(hierarchicalFacet); if (currentRefinement.length > 0 && currentRefinement[0].split(separator).length > 1) { queries.push({ indexName: index, params: requestBuilder._getDisjunctiveFacetSearchParams(state, refinedFacet, true) }); } }); return queries; }, /** * Build search parameters used to fetch hits * @private * @return {object.<string, any>} */ _getHitsSearchParams: function(state) { var facets = state.facets .concat(state.disjunctiveFacets) .concat(requestBuilder._getHitsHierarchicalFacetsAttributes(state)); var facetFilters = requestBuilder._getFacetFilters(state); var numericFilters = requestBuilder._getNumericFilters(state); var tagFilters = requestBuilder._getTagFilters(state); var additionalParams = { facets: facets, tagFilters: tagFilters }; if (facetFilters.length > 0) { additionalParams.facetFilters = facetFilters; } if (numericFilters.length > 0) { additionalParams.numericFilters = numericFilters; } return merge(state.getQueryParams(), additionalParams); }, /** * Build search parameters used to fetch a disjunctive facet * @private * @param {string} facet the associated facet name * @param {boolean} hierarchicalRootLevel ?? FIXME * @return {object} */ _getDisjunctiveFacetSearchParams: function(state, facet, hierarchicalRootLevel) { var facetFilters = requestBuilder._getFacetFilters(state, facet, hierarchicalRootLevel); var numericFilters = requestBuilder._getNumericFilters(state, facet); var tagFilters = requestBuilder._getTagFilters(state); var additionalParams = { hitsPerPage: 1, page: 0, attributesToRetrieve: [], attributesToHighlight: [], attributesToSnippet: [], tagFilters: tagFilters }; var hierarchicalFacet = state.getHierarchicalFacetByName(facet); if (hierarchicalFacet) { additionalParams.facets = requestBuilder._getDisjunctiveHierarchicalFacetAttribute( state, hierarchicalFacet, hierarchicalRootLevel ); } else { additionalParams.facets = facet; } if (numericFilters.length > 0) { additionalParams.numericFilters = numericFilters; } if (facetFilters.length > 0) { additionalParams.facetFilters = facetFilters; } return merge(state.getQueryParams(), additionalParams); }, /** * Return the numeric filters in an algolia request fashion * @private * @param {string} [facetName] the name of the attribute for which the filters should be excluded * @return {string[]} the numeric filters in the algolia format */ _getNumericFilters: function(state, facetName) { if (state.numericFilters) { return state.numericFilters; } var numericFilters = []; forEach(state.numericRefinements, function(operators, attribute) { forEach(operators, function(values, operator) { if (facetName !== attribute) { forEach(values, function(value) { if (isArray(value)) { var vs = map(value, function(v) { return attribute + operator + v; }); numericFilters.push(vs); } else { numericFilters.push(attribute + operator + value); } }); } }); }); return numericFilters; }, /** * Return the tags filters depending * @private * @return {string} */ _getTagFilters: function(state) { if (state.tagFilters) { return state.tagFilters; } return state.tagRefinements.join(','); }, /** * Build facetFilters parameter based on current refinements. The array returned * contains strings representing the facet filters in the algolia format. * @private * @param {string} [facet] if set, the current disjunctive facet * @return {array.<string>} */ _getFacetFilters: function(state, facet, hierarchicalRootLevel) { var facetFilters = []; forEach(state.facetsRefinements, function(facetValues, facetName) { forEach(facetValues, function(facetValue) { facetFilters.push(facetName + ':' + facetValue); }); }); forEach(state.facetsExcludes, function(facetValues, facetName) { forEach(facetValues, function(facetValue) { facetFilters.push(facetName + ':-' + facetValue); }); }); forEach(state.disjunctiveFacetsRefinements, function(facetValues, facetName) { if (facetName === facet || !facetValues || facetValues.length === 0) return; var orFilters = []; forEach(facetValues, function(facetValue) { orFilters.push(facetName + ':' + facetValue); }); facetFilters.push(orFilters); }); forEach(state.hierarchicalFacetsRefinements, function(facetValues, facetName) { var facetValue = facetValues[0]; if (facetValue === undefined) { return; } var hierarchicalFacet = state.getHierarchicalFacetByName(facetName); var separator = state._getHierarchicalFacetSeparator(hierarchicalFacet); var rootPath = state._getHierarchicalRootPath(hierarchicalFacet); var attributeToRefine; var attributesIndex; // we ask for parent facet values only when the `facet` is the current hierarchical facet if (facet === facetName) { // if we are at the root level already, no need to ask for facet values, we get them from // the hits query if (facetValue.indexOf(separator) === -1 || (!rootPath && hierarchicalRootLevel === true) || (rootPath && rootPath.split(separator).length === facetValue.split(separator).length)) { return; } if (!rootPath) { attributesIndex = facetValue.split(separator).length - 2; facetValue = facetValue.slice(0, facetValue.lastIndexOf(separator)); } else { attributesIndex = rootPath.split(separator).length - 1; facetValue = rootPath; } attributeToRefine = hierarchicalFacet.attributes[attributesIndex]; } else { attributesIndex = facetValue.split(separator).length - 1; attributeToRefine = hierarchicalFacet.attributes[attributesIndex]; } if (attributeToRefine) { facetFilters.push([attributeToRefine + ':' + facetValue]); } }); return facetFilters; }, _getHitsHierarchicalFacetsAttributes: function(state) { var out = []; return reduce( state.hierarchicalFacets, // ask for as much levels as there's hierarchical refinements function getHitsAttributesForHierarchicalFacet(allAttributes, hierarchicalFacet) { var hierarchicalRefinement = state.getHierarchicalRefinement(hierarchicalFacet.name)[0]; // if no refinement, ask for root level if (!hierarchicalRefinement) { allAttributes.push(hierarchicalFacet.attributes[0]); return allAttributes; } var separator = state._getHierarchicalFacetSeparator(hierarchicalFacet); var level = hierarchicalRefinement.split(separator).length; var newAttributes = hierarchicalFacet.attributes.slice(0, level + 1); return allAttributes.concat(newAttributes); }, out); }, _getDisjunctiveHierarchicalFacetAttribute: function(state, hierarchicalFacet, rootLevel) { var separator = state._getHierarchicalFacetSeparator(hierarchicalFacet); if (rootLevel === true) { var rootPath = state._getHierarchicalRootPath(hierarchicalFacet); var attributeIndex = 0; if (rootPath) { attributeIndex = rootPath.split(separator).length; } return [hierarchicalFacet.attributes[attributeIndex]]; } var hierarchicalRefinement = state.getHierarchicalRefinement(hierarchicalFacet.name)[0] || ''; // if refinement is 'beers > IPA > Flying dog', // then we want `facets: ['beers > IPA']` as disjunctive facet (parent level values) var parentLevel = hierarchicalRefinement.split(separator).length - 1; return hierarchicalFacet.attributes.slice(0, parentLevel + 1); }, getSearchForFacetQuery: function(facetName, query, maxFacetHits, state) { var stateForSearchForFacetValues = state.isDisjunctiveFacet(facetName) ? state.clearRefinements(facetName) : state; var searchForFacetSearchParameters = { facetQuery: query, facetName: facetName }; if (typeof maxFacetHits === 'number') { searchForFacetSearchParameters.maxFacetHits = maxFacetHits; } var queries = merge(requestBuilder._getHitsSearchParams(stateForSearchForFacetValues), searchForFacetSearchParameters); return queries; } }; module.exports = requestBuilder; /***/ }), /* 319 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; var invert = __webpack_require__(206); var keys = __webpack_require__(9); var keys2Short = { advancedSyntax: 'aS', allowTyposOnNumericTokens: 'aTONT', analyticsTags: 'aT', analytics: 'a', aroundLatLngViaIP: 'aLLVIP', aroundLatLng: 'aLL', aroundPrecision: 'aP', aroundRadius: 'aR', attributesToHighlight: 'aTH', attributesToRetrieve: 'aTR', attributesToSnippet: 'aTS', disjunctiveFacetsRefinements: 'dFR', disjunctiveFacets: 'dF', distinct: 'd', facetsExcludes: 'fE', facetsRefinements: 'fR', facets: 'f', getRankingInfo: 'gRI', hierarchicalFacetsRefinements: 'hFR', hierarchicalFacets: 'hF', highlightPostTag: 'hPoT', highlightPreTag: 'hPrT', hitsPerPage: 'hPP', ignorePlurals: 'iP', index: 'idx', insideBoundingBox: 'iBB', insidePolygon: 'iPg', length: 'l', maxValuesPerFacet: 'mVPF', minimumAroundRadius: 'mAR', minProximity: 'mP', minWordSizefor1Typo: 'mWS1T', minWordSizefor2Typos: 'mWS2T', numericFilters: 'nF', numericRefinements: 'nR', offset: 'o', optionalWords: 'oW', page: 'p', queryType: 'qT', query: 'q', removeWordsIfNoResults: 'rWINR', replaceSynonymsInHighlight: 'rSIH', restrictSearchableAttributes: 'rSA', synonyms: 's', tagFilters: 'tF', tagRefinements: 'tR', typoTolerance: 'tT', optionalTagFilters: 'oTF', optionalFacetFilters: 'oFF', snippetEllipsisText: 'sET', disableExactOnAttributes: 'dEOA', enableExactOnSingleWordQuery: 'eEOSWQ' }; var short2Keys = invert(keys2Short); module.exports = { /** * All the keys of the state, encoded. * @const */ ENCODED_PARAMETERS: keys(short2Keys), /** * Decode a shorten attribute * @param {string} shortKey the shorten attribute * @return {string} the decoded attribute, undefined otherwise */ decode: function(shortKey) { return short2Keys[shortKey]; }, /** * Encode an attribute into a short version * @param {string} key the attribute * @return {string} the shorten attribute */ encode: function(key) { return keys2Short[key]; } }; /***/ }), /* 320 */ /***/ (function(module, exports, __webpack_require__) { var baseInverter = __webpack_require__(321); /** * Creates a function like `_.invertBy`. * * @private * @param {Function} setter The function to set accumulator values. * @param {Function} toIteratee The function to resolve iteratees. * @returns {Function} Returns the new inverter function. */ function createInverter(setter, toIteratee) { return function(object, iteratee) { return baseInverter(object, setter, toIteratee(iteratee), {}); }; } module.exports = createInverter; /***/ }), /* 321 */ /***/ (function(module, exports, __webpack_require__) { var baseForOwn = __webpack_require__(49); /** * The base implementation of `_.invert` and `_.invertBy` which inverts * `object` with values transformed by `iteratee` and set by `setter`. * * @private * @param {Object} object The object to iterate over. * @param {Function} setter The function to set `accumulator` values. * @param {Function} iteratee The iteratee to transform values. * @param {Object} accumulator The initial inverted object. * @returns {Function} Returns `accumulator`. */ function baseInverter(object, setter, iteratee, accumulator) { baseForOwn(object, function(value, key, object) { setter(accumulator, iteratee(value), key, object); }); return accumulator; } module.exports = baseInverter; /***/ }), /* 322 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; var stringify = __webpack_require__(323); var parse = __webpack_require__(324); var formats = __webpack_require__(207); module.exports = { formats: formats, parse: parse, stringify: stringify }; /***/ }), /* 323 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; var utils = __webpack_require__(108); var formats = __webpack_require__(207); var arrayPrefixGenerators = { brackets: function brackets(prefix) { // eslint-disable-line func-name-matching return prefix + '[]'; }, indices: function indices(prefix, key) { // eslint-disable-line func-name-matching return prefix + '[' + key + ']'; }, repeat: function repeat(prefix) { // eslint-disable-line func-name-matching return prefix; } }; var toISO = Date.prototype.toISOString; var defaults = { delimiter: '&', encode: true, encoder: utils.encode, encodeValuesOnly: false, serializeDate: function serializeDate(date) { // eslint-disable-line func-name-matching return toISO.call(date); }, skipNulls: false, strictNullHandling: false }; var stringify = function stringify( // eslint-disable-line func-name-matching object, prefix, generateArrayPrefix, strictNullHandling, skipNulls, encoder, filter, sort, allowDots, serializeDate, formatter, encodeValuesOnly ) { var obj = object; if (typeof filter === 'function') { obj = filter(prefix, obj); } else if (obj instanceof Date) { obj = serializeDate(obj); } else if (obj === null) { if (strictNullHandling) { return encoder && !encodeValuesOnly ? encoder(prefix, defaults.encoder) : prefix; } obj = ''; } if (typeof obj === 'string' || typeof obj === 'number' || typeof obj === 'boolean' || utils.isBuffer(obj)) { if (encoder) { var keyValue = encodeValuesOnly ? prefix : encoder(prefix, defaults.encoder); return [formatter(keyValue) + '=' + formatter(encoder(obj, defaults.encoder))]; } return [formatter(prefix) + '=' + formatter(String(obj))]; } var values = []; if (typeof obj === 'undefined') { return values; } var objKeys; if (Array.isArray(filter)) { objKeys = filter; } else { var keys = Object.keys(obj); objKeys = sort ? keys.sort(sort) : keys; } for (var i = 0; i < objKeys.length; ++i) { var key = objKeys[i]; if (skipNulls && obj[key] === null) { continue; } if (Array.isArray(obj)) { values = values.concat(stringify( obj[key], generateArrayPrefix(prefix, key), generateArrayPrefix, strictNullHandling, skipNulls, encoder, filter, sort, allowDots, serializeDate, formatter, encodeValuesOnly )); } else { values = values.concat(stringify( obj[key], prefix + (allowDots ? '.' + key : '[' + key + ']'), generateArrayPrefix, strictNullHandling, skipNulls, encoder, filter, sort, allowDots, serializeDate, formatter, encodeValuesOnly )); } } return values; }; module.exports = function (object, opts) { var obj = object; var options = opts ? utils.assign({}, opts) : {}; if (options.encoder !== null && options.encoder !== undefined && typeof options.encoder !== 'function') { throw new TypeError('Encoder has to be a function.'); } var delimiter = typeof options.delimiter === 'undefined' ? defaults.delimiter : options.delimiter; var strictNullHandling = typeof options.strictNullHandling === 'boolean' ? options.strictNullHandling : defaults.strictNullHandling; var skipNulls = typeof options.skipNulls === 'boolean' ? options.skipNulls : defaults.skipNulls; var encode = typeof options.encode === 'boolean' ? options.encode : defaults.encode; var encoder = typeof options.encoder === 'function' ? options.encoder : defaults.encoder; var sort = typeof options.sort === 'function' ? options.sort : null; var allowDots = typeof options.allowDots === 'undefined' ? false : options.allowDots; var serializeDate = typeof options.serializeDate === 'function' ? options.serializeDate : defaults.serializeDate; var encodeValuesOnly = typeof options.encodeValuesOnly === 'boolean' ? options.encodeValuesOnly : defaults.encodeValuesOnly; if (typeof options.format === 'undefined') { options.format = formats['default']; } else if (!Object.prototype.hasOwnProperty.call(formats.formatters, options.format)) { throw new TypeError('Unknown format option provided.'); } var formatter = formats.formatters[options.format]; var objKeys; var filter; if (typeof options.filter === 'function') { filter = options.filter; obj = filter('', obj); } else if (Array.isArray(options.filter)) { filter = options.filter; objKeys = filter; } var keys = []; if (typeof obj !== 'object' || obj === null) { return ''; } var arrayFormat; if (options.arrayFormat in arrayPrefixGenerators) { arrayFormat = options.arrayFormat; } else if ('indices' in options) { arrayFormat = options.indices ? 'indices' : 'repeat'; } else { arrayFormat = 'indices'; } var generateArrayPrefix = arrayPrefixGenerators[arrayFormat]; if (!objKeys) { objKeys = Object.keys(obj); } if (sort) { objKeys.sort(sort); } for (var i = 0; i < objKeys.length; ++i) { var key = objKeys[i]; if (skipNulls && obj[key] === null) { continue; } keys = keys.concat(stringify( obj[key], key, generateArrayPrefix, strictNullHandling, skipNulls, encode ? encoder : null, filter, sort, allowDots, serializeDate, formatter, encodeValuesOnly )); } var joined = keys.join(delimiter); var prefix = options.addQueryPrefix === true ? '?' : ''; return joined.length > 0 ? prefix + joined : ''; }; /***/ }), /* 324 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; var utils = __webpack_require__(108); var has = Object.prototype.hasOwnProperty; var defaults = { allowDots: false, allowPrototypes: false, arrayLimit: 20, decoder: utils.decode, delimiter: '&', depth: 5, parameterLimit: 1000, plainObjects: false, strictNullHandling: false }; var parseValues = function parseQueryStringValues(str, options) { var obj = {}; var cleanStr = options.ignoreQueryPrefix ? str.replace(/^\?/, '') : str; var limit = options.parameterLimit === Infinity ? undefined : options.parameterLimit; var parts = cleanStr.split(options.delimiter, limit); for (var i = 0; i < parts.length; ++i) { var part = parts[i]; var bracketEqualsPos = part.indexOf(']='); var pos = bracketEqualsPos === -1 ? part.indexOf('=') : bracketEqualsPos + 1; var key, val; if (pos === -1) { key = options.decoder(part, defaults.decoder); val = options.strictNullHandling ? null : ''; } else { key = options.decoder(part.slice(0, pos), defaults.decoder); val = options.decoder(part.slice(pos + 1), defaults.decoder); } if (has.call(obj, key)) { obj[key] = [].concat(obj[key]).concat(val); } else { obj[key] = val; } } return obj; }; var parseObject = function (chain, val, options) { var leaf = val; for (var i = chain.length - 1; i >= 0; --i) { var obj; var root = chain[i]; if (root === '[]') { obj = []; obj = obj.concat(leaf); } else { obj = options.plainObjects ? Object.create(null) : {}; var cleanRoot = root.charAt(0) === '[' && root.charAt(root.length - 1) === ']' ? root.slice(1, -1) : root; var index = parseInt(cleanRoot, 10); if ( !isNaN(index) && root !== cleanRoot && String(index) === cleanRoot && index >= 0 && (options.parseArrays && index <= options.arrayLimit) ) { obj = []; obj[index] = leaf; } else { obj[cleanRoot] = leaf; } } leaf = obj; } return leaf; }; var parseKeys = function parseQueryStringKeys(givenKey, val, options) { if (!givenKey) { return; } // Transform dot notation to bracket notation var key = options.allowDots ? givenKey.replace(/\.([^.[]+)/g, '[$1]') : givenKey; // The regex chunks var brackets = /(\[[^[\]]*])/; var child = /(\[[^[\]]*])/g; // Get the parent var segment = brackets.exec(key); var parent = segment ? key.slice(0, segment.index) : key; // Stash the parent if it exists var keys = []; if (parent) { // If we aren't using plain objects, optionally prefix keys // that would overwrite object prototype properties if (!options.plainObjects && has.call(Object.prototype, parent)) { if (!options.allowPrototypes) { return; } } keys.push(parent); } // Loop through children appending to the array until we hit depth var i = 0; while ((segment = child.exec(key)) !== null && i < options.depth) { i += 1; if (!options.plainObjects && has.call(Object.prototype, segment[1].slice(1, -1))) { if (!options.allowPrototypes) { return; } } keys.push(segment[1]); } // If there's a remainder, just add whatever is left if (segment) { keys.push('[' + key.slice(segment.index) + ']'); } return parseObject(keys, val, options); }; module.exports = function (str, opts) { var options = opts ? utils.assign({}, opts) : {}; if (options.decoder !== null && options.decoder !== undefined && typeof options.decoder !== 'function') { throw new TypeError('Decoder has to be a function.'); } options.ignoreQueryPrefix = options.ignoreQueryPrefix === true; options.delimiter = typeof options.delimiter === 'string' || utils.isRegExp(options.delimiter) ? options.delimiter : defaults.delimiter; options.depth = typeof options.depth === 'number' ? options.depth : defaults.depth; options.arrayLimit = typeof options.arrayLimit === 'number' ? options.arrayLimit : defaults.arrayLimit; options.parseArrays = options.parseArrays !== false; options.decoder = typeof options.decoder === 'function' ? options.decoder : defaults.decoder; options.allowDots = typeof options.allowDots === 'boolean' ? options.allowDots : defaults.allowDots; options.plainObjects = typeof options.plainObjects === 'boolean' ? options.plainObjects : defaults.plainObjects; options.allowPrototypes = typeof options.allowPrototypes === 'boolean' ? options.allowPrototypes : defaults.allowPrototypes; options.parameterLimit = typeof options.parameterLimit === 'number' ? options.parameterLimit : defaults.parameterLimit; options.strictNullHandling = typeof options.strictNullHandling === 'boolean' ? options.strictNullHandling : defaults.strictNullHandling; if (str === '' || str === null || typeof str === 'undefined') { return options.plainObjects ? Object.create(null) : {}; } var tempObj = typeof str === 'string' ? parseValues(str, options) : str; var obj = options.plainObjects ? Object.create(null) : {}; // Iterate over the keys and setup the new object var keys = Object.keys(tempObj); for (var i = 0; i < keys.length; ++i) { var key = keys[i]; var newObj = parseKeys(key, tempObj[key], options); obj = utils.merge(obj, newObj, options); } return utils.compact(obj); }; /***/ }), /* 325 */ /***/ (function(module, exports, __webpack_require__) { var baseRest = __webpack_require__(25), createWrap = __webpack_require__(105), getHolder = __webpack_require__(54), replaceHolders = __webpack_require__(37); /** Used to compose bitmasks for function metadata. */ var WRAP_BIND_FLAG = 1, WRAP_PARTIAL_FLAG = 32; /** * Creates a function that invokes `func` with the `this` binding of `thisArg` * and `partials` prepended to the arguments it receives. * * The `_.bind.placeholder` value, which defaults to `_` in monolithic builds, * may be used as a placeholder for partially applied arguments. * * **Note:** Unlike native `Function#bind`, this method doesn't set the "length" * property of bound functions. * * @static * @memberOf _ * @since 0.1.0 * @category Function * @param {Function} func The function to bind. * @param {*} thisArg The `this` binding of `func`. * @param {...*} [partials] The arguments to be partially applied. * @returns {Function} Returns the new bound function. * @example * * function greet(greeting, punctuation) { * return greeting + ' ' + this.user + punctuation; * } * * var object = { 'user': 'fred' }; * * var bound = _.bind(greet, object, 'hi'); * bound('!'); * // => 'hi fred!' * * // Bound with placeholders. * var bound = _.bind(greet, object, _, '!'); * bound('hi'); * // => 'hi fred!' */ var bind = baseRest(function(func, thisArg, partials) { var bitmask = WRAP_BIND_FLAG; if (partials.length) { var holders = replaceHolders(partials, getHolder(bind)); bitmask |= WRAP_PARTIAL_FLAG; } return createWrap(func, bitmask, thisArg, partials, holders); }); // Assign default placeholders. bind.placeholder = {}; module.exports = bind; /***/ }), /* 326 */ /***/ (function(module, exports, __webpack_require__) { var basePickBy = __webpack_require__(202), hasIn = __webpack_require__(182); /** * The base implementation of `_.pick` without support for individual * property identifiers. * * @private * @param {Object} object The source object. * @param {string[]} paths The property paths to pick. * @returns {Object} Returns the new object. */ function basePick(object, paths) { return basePickBy(object, paths, function(value, path) { return hasIn(object, path); }); } module.exports = basePick; /***/ }), /* 327 */ /***/ (function(module, exports, __webpack_require__) { var baseAssignValue = __webpack_require__(47), baseForOwn = __webpack_require__(49), baseIteratee = __webpack_require__(13); /** * The opposite of `_.mapValues`; this method creates an object with the * same values as `object` and keys generated by running each own enumerable * string keyed property of `object` thru `iteratee`. The iteratee is invoked * with three arguments: (value, key, object). * * @static * @memberOf _ * @since 3.8.0 * @category Object * @param {Object} object The object to iterate over. * @param {Function} [iteratee=_.identity] The function invoked per iteration. * @returns {Object} Returns the new mapped object. * @see _.mapValues * @example * * _.mapKeys({ 'a': 1, 'b': 2 }, function(value, key) { * return key + value; * }); * // => { 'a1': 1, 'b2': 2 } */ function mapKeys(object, iteratee) { var result = {}; iteratee = baseIteratee(iteratee, 3); baseForOwn(object, function(value, key, object) { baseAssignValue(result, iteratee(value, key, object), value); }); return result; } module.exports = mapKeys; /***/ }), /* 328 */ /***/ (function(module, exports, __webpack_require__) { var baseAssignValue = __webpack_require__(47), baseForOwn = __webpack_require__(49), baseIteratee = __webpack_require__(13); /** * Creates an object with the same keys as `object` and values generated * by running each own enumerable string keyed property of `object` thru * `iteratee`. The iteratee is invoked with three arguments: * (value, key, object). * * @static * @memberOf _ * @since 2.4.0 * @category Object * @param {Object} object The object to iterate over. * @param {Function} [iteratee=_.identity] The function invoked per iteration. * @returns {Object} Returns the new mapped object. * @see _.mapKeys * @example * * var users = { * 'fred': { 'user': 'fred', 'age': 40 }, * 'pebbles': { 'user': 'pebbles', 'age': 1 } * }; * * _.mapValues(users, function(o) { return o.age; }); * // => { 'fred': 40, 'pebbles': 1 } (iteration order is not guaranteed) * * // The `_.property` iteratee shorthand. * _.mapValues(users, 'age'); * // => { 'fred': 40, 'pebbles': 1 } (iteration order is not guaranteed) */ function mapValues(object, iteratee) { var result = {}; iteratee = baseIteratee(iteratee, 3); baseForOwn(object, function(value, key, object) { baseAssignValue(result, key, iteratee(value, key, object)); }); return result; } module.exports = mapValues; /***/ }), /* 329 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var _connectHighlight = __webpack_require__(218); var _connectHighlight2 = _interopRequireDefault(_connectHighlight); var _Highlight = __webpack_require__(362); var _Highlight2 = _interopRequireDefault(_Highlight); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } /** * Renders any attribute from an hit into its highlighted form when relevant. * * Read more about it in the [Highlighting results](guide/Highlighting_results.html) guide. * @name Highlight * @kind widget * @propType {string} attributeName - the location of the highlighted attribute in the hit * @propType {object} hit - the hit object containing the highlighted attribute * @propType {string} [tagName='em'] - the tag to be used for highlighted parts of the hit * @example * import React from 'react'; * * import { connectHits, Highlight, InstantSearch } from 'react-instantsearch/dom'; * * const CustomHits = connectHits(({ hits }) => * <div> * {hits.map(hit => * <p key={hit.objectID}> * <Highlight attributeName="description" hit={hit} /> * </p> * )} * </div> * ); * * export default function App() { * return ( * <InstantSearch * appId="latency" * apiKey="6be0576ff61c053d5f9a3225e2a90f76" * indexName="ikea" * > * <CustomHits /> * </InstantSearch> * ); * } */ exports.default = (0, _connectHighlight2.default)(_Highlight2.default); /***/ }), /* 330 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var _get2 = __webpack_require__(72); var _get3 = _interopRequireDefault(_get2); exports.default = parseAlgoliaHit; function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } /** * Find an highlighted attribute given an `attributeName` and an `highlightProperty`, parses it, * and provided an array of objects with the string value and a boolean if this * value is highlighted. * * In order to use this feature, highlight must be activated in the configuration of * the index. The `preTag` and `postTag` attributes are respectively highlightPreTag and * highligtPostTag in Algolia configuration. * * @param {string} preTag - string used to identify the start of an highlighted value * @param {string} postTag - string used to identify the end of an highlighted value * @param {string} highlightProperty - the property that contains the highlight structure in the results * @param {string} attributeName - the highlighted attribute to look for * @param {object} hit - the actual hit returned by Algolia. * @return {object[]} - An array of {value: string, isDefined: boolean}. */ function parseAlgoliaHit(_ref) { var _ref$preTag = _ref.preTag, preTag = _ref$preTag === undefined ? '<em>' : _ref$preTag, _ref$postTag = _ref.postTag, postTag = _ref$postTag === undefined ? '</em>' : _ref$postTag, highlightProperty = _ref.highlightProperty, attributeName = _ref.attributeName, hit = _ref.hit; if (!hit) throw new Error('`hit`, the matching record, must be provided'); var highlightObject = (0, _get3.default)(hit[highlightProperty], attributeName); var highlightedValue = !highlightObject ? '' : highlightObject.value; return parseHighlightedAttribute({ preTag: preTag, postTag: postTag, highlightedValue: highlightedValue }); } /** * Parses an highlighted attribute into an array of objects with the string value, and * a boolean that indicated if this part is highlighted. * * @param {string} preTag - string used to identify the start of an highlighted value * @param {string} postTag - string used to identify the end of an highlighted value * @param {string} highlightedValue - highlighted attribute as returned by Algolia highlight feature * @return {object[]} - An array of {value: string, isDefined: boolean}. */ function parseHighlightedAttribute(_ref2) { var preTag = _ref2.preTag, postTag = _ref2.postTag, highlightedValue = _ref2.highlightedValue; var splitByPreTag = highlightedValue.split(preTag); var firstValue = splitByPreTag.shift(); var elements = firstValue === '' ? [] : [{ value: firstValue, isHighlighted: false }]; if (postTag === preTag) { var isHighlighted = true; splitByPreTag.forEach(function (split) { elements.push({ value: split, isHighlighted: isHighlighted }); isHighlighted = !isHighlighted; }); } else { splitByPreTag.forEach(function (split) { var splitByPostTag = split.split(postTag); elements.push({ value: splitByPostTag[0], isHighlighted: true }); if (splitByPostTag[1] !== '') { elements.push({ value: splitByPostTag[1], isHighlighted: false }); } }); } return elements; } /***/ }), /* 331 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var _createConnector = __webpack_require__(2); var _createConnector2 = _interopRequireDefault(_createConnector); var _indexUtils = __webpack_require__(5); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } /** * connectHits connector provides the logic to create connected * components that will render the results retrieved from * Algolia. * * To configure the number of hits retrieved, use [HitsPerPage widget](widgets/HitsPerPage.html), * [connectHitsPerPage connector](connectors/connectHitsPerPage.html) or pass the hitsPerPage * prop to a [Configure](guide/Search_parameters.html) widget. * * **Warning:** you will need to use the **objectID** property available on every hit as a key * when iterating over them. This will ensure you have the best possible UI experience * especially on slow networks. * @name connectHits * @kind connector * @providedPropType {array.<object>} hits - the records that matched the search state * @example * import React from 'react'; * * import { Highlight, InstantSearch } from 'react-instantsearch/dom'; * import { connectHits } from 'react-instantsearch/connectors'; * const CustomHits = connectHits(({ hits }) => * <div> * {hits.map(hit => * <p key={hit.objectID}> * <Highlight attributeName="description" hit={hit} /> * </p> * )} * </div> * ); * * export default function App() { * return ( * <InstantSearch * appId="latency" * apiKey="6be0576ff61c053d5f9a3225e2a90f76" * indexName="ikea" * > * <CustomHits /> * </InstantSearch> * ); * } */ exports.default = (0, _createConnector2.default)({ displayName: 'AlgoliaHits', getProvidedProps: function getProvidedProps(props, searchState, searchResults) { var results = (0, _indexUtils.getResults)(searchResults, this.context); var hits = results ? results.hits : []; return { hits: hits }; }, /* Hits needs to be considered as a widget to trigger a search if no others widgets are used. * To be considered as a widget you need either getSearchParameters, getMetadata or getTransitionState * See createConnector.js * */ getSearchParameters: function getSearchParameters(searchParameters) { return searchParameters; } }); /***/ }), /* 332 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; var _propTypes = __webpack_require__(0); var _propTypes2 = _interopRequireDefault(_propTypes); var _createConnector = __webpack_require__(2); var _createConnector2 = _interopRequireDefault(_createConnector); var _indexUtils = __webpack_require__(5); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; } function getId() { return 'hitsPerPage'; } function getCurrentRefinement(props, searchState, context) { var id = getId(); return (0, _indexUtils.getCurrentRefinementValue)(props, searchState, context, id, null, function (currentRefinement) { if (typeof currentRefinement === 'string') { return parseInt(currentRefinement, 10); } return currentRefinement; }); } /** * connectHitsPerPage connector provides the logic to create connected * components that will allow a user to choose to display more or less results from Algolia. * @name connectHitsPerPage * @kind connector * @propType {number} defaultRefinement - The number of items selected by default * @propType {{value: number, label: string}[]} items - List of hits per page options. * @propType {function} [transformItems] - Function to modify the items being displayed, e.g. for filtering or sorting them. Takes an items as parameter and expects it back in return. * @providedPropType {function} refine - a function to remove a single filter * @providedPropType {function} createURL - a function to generate a URL for the corresponding search state * @providedPropType {string} currentRefinement - the refinement currently applied * @providedPropType {array.<{isRefined: boolean, label?: string, value: number}>} items - the list of items the HitsPerPage can display. If no label provided, the value will be displayed. */ exports.default = (0, _createConnector2.default)({ displayName: 'AlgoliaHitsPerPage', propTypes: { defaultRefinement: _propTypes2.default.number.isRequired, items: _propTypes2.default.arrayOf(_propTypes2.default.shape({ label: _propTypes2.default.string, value: _propTypes2.default.number.isRequired })).isRequired, transformItems: _propTypes2.default.func }, getProvidedProps: function getProvidedProps(props, searchState) { var currentRefinement = getCurrentRefinement(props, searchState, this.context); var items = props.items.map(function (item) { return item.value === currentRefinement ? _extends({}, item, { isRefined: true }) : _extends({}, item, { isRefined: false }); }); return { items: props.transformItems ? props.transformItems(items) : items, currentRefinement: currentRefinement }; }, refine: function refine(props, searchState, nextRefinement) { var id = getId(); var nextValue = _defineProperty({}, id, nextRefinement); var resetPage = true; return (0, _indexUtils.refineValue)(searchState, nextValue, this.context, resetPage); }, cleanUp: function cleanUp(props, searchState) { return (0, _indexUtils.cleanUpValue)(searchState, this.context, getId()); }, getSearchParameters: function getSearchParameters(searchParameters, props, searchState) { return searchParameters.setHitsPerPage(getCurrentRefinement(props, searchState, this.context)); }, getMetadata: function getMetadata() { return { id: getId() }; } }); /***/ }), /* 333 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var _createConnector = __webpack_require__(2); var _createConnector2 = _interopRequireDefault(_createConnector); var _indexUtils = __webpack_require__(5); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; } function _toConsumableArray(arr) { if (Array.isArray(arr)) { for (var i = 0, arr2 = Array(arr.length); i < arr.length; i++) { arr2[i] = arr[i]; } return arr2; } else { return Array.from(arr); } } function getId() { return 'page'; } function getCurrentRefinement(props, searchState, context) { var id = getId(); var page = 1; return (0, _indexUtils.getCurrentRefinementValue)(props, searchState, context, id, page, function (currentRefinement) { if (typeof currentRefinement === 'string') { currentRefinement = parseInt(currentRefinement, 10); } return currentRefinement; }); } /** * InfiniteHits connector provides the logic to create connected * components that will render an continuous list of results retrieved from * Algolia. This connector provides a function to load more results. * @name connectInfiniteHits * @kind connector * @providedPropType {array.<object>} hits - the records that matched the search state * @providedPropType {boolean} hasMore - indicates if there are more pages to load * @providedPropType {function} refine - call to load more results */ exports.default = (0, _createConnector2.default)({ displayName: 'AlgoliaInfiniteHits', getProvidedProps: function getProvidedProps(props, searchState, searchResults) { var results = (0, _indexUtils.getResults)(searchResults, this.context); if (!results) { this._allResults = []; return { hits: this._allResults, hasMore: false }; } var hits = results.hits, page = results.page, nbPages = results.nbPages; // If it is the same page we do not touch the page result list if (page === 0) { this._allResults = hits; } else if (page > this.previousPage) { this._allResults = [].concat(_toConsumableArray(this._allResults), _toConsumableArray(hits)); } else if (page < this.previousPage) { this._allResults = hits; } var lastPageIndex = nbPages - 1; var hasMore = page < lastPageIndex; this.previousPage = page; return { hits: this._allResults, hasMore: hasMore }; }, getSearchParameters: function getSearchParameters(searchParameters, props, searchState) { return searchParameters.setQueryParameters({ page: getCurrentRefinement(props, searchState, this.context) - 1 }); }, refine: function refine(props, searchState) { var id = getId(); var nextPage = getCurrentRefinement(props, searchState, this.context) + 1; var nextValue = _defineProperty({}, id, nextPage); var resetPage = false; return (0, _indexUtils.refineValue)(searchState, nextValue, this.context, resetPage); } }); /***/ }), /* 334 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var _orderBy2 = __webpack_require__(104); var _orderBy3 = _interopRequireDefault(_orderBy2); var _propTypes = __webpack_require__(0); var _propTypes2 = _interopRequireDefault(_propTypes); var _createConnector = __webpack_require__(2); var _createConnector2 = _interopRequireDefault(_createConnector); var _indexUtils = __webpack_require__(5); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; } var namespace = 'menu'; function getId(props) { return props.attributeName; } function getCurrentRefinement(props, searchState, context) { return (0, _indexUtils.getCurrentRefinementValue)(props, searchState, context, namespace + '.' + getId(props), null, function (currentRefinement) { if (currentRefinement === '') { return null; } return currentRefinement; }); } function getValue(name, props, searchState, context) { var currentRefinement = getCurrentRefinement(props, searchState, context); return name === currentRefinement ? '' : name; } function _refine(props, searchState, nextRefinement, context) { var id = getId(props); var nextValue = _defineProperty({}, id, nextRefinement ? nextRefinement : ''); var resetPage = true; return (0, _indexUtils.refineValue)(searchState, nextValue, context, resetPage, namespace); } function _cleanUp(props, searchState, context) { return (0, _indexUtils.cleanUpValue)(searchState, context, namespace + '.' + getId(props)); } var sortBy = ['count:desc', 'name:asc']; /** * connectMenu connector provides the logic to build a widget that will * give the user the ability to choose a single value for a specific facet. * @name connectMenu * @requirements The attribute passed to the `attributeName` prop must be present in "attributes for faceting" * on the Algolia dashboard or configured as `attributesForFaceting` via a set settings call to the Algolia API. * @kind connector * @propType {string} attributeName - the name of the attribute in the record * @propType {boolean} [showMore=false] - true if the component should display a button that will expand the number of items * @propType {number} [limitMin=10] - the minimum number of diplayed items * @propType {number} [limitMax=20] - the maximun number of displayed items. Only used when showMore is set to `true` * @propType {string} [defaultRefinement] - the value of the item selected by default * @propType {boolean} [withSearchBox=false] - allow search inside values * @providedPropType {function} refine - a function to toggle a refinement * @providedPropType {function} createURL - a function to generate a URL for the corresponding search state * @providedPropType {string} currentRefinement - the refinement currently applied * @providedPropType {array.<{count: number, isRefined: boolean, label: string, value: string}>} items - the list of items the Menu can display. * @providedPropType {function} searchForItems - a function to toggle a search inside items values * @providedPropType {boolean} isFromSearch - a boolean that says if the `items` props contains facet values from the global search or from the search inside items. */ exports.default = (0, _createConnector2.default)({ displayName: 'AlgoliaMenu', propTypes: { attributeName: _propTypes2.default.string.isRequired, showMore: _propTypes2.default.bool, limitMin: _propTypes2.default.number, limitMax: _propTypes2.default.number, defaultRefinement: _propTypes2.default.string, transformItems: _propTypes2.default.func, withSearchBox: _propTypes2.default.bool, searchForFacetValues: _propTypes2.default.bool // @deprecated }, defaultProps: { showMore: false, limitMin: 10, limitMax: 20 }, getProvidedProps: function getProvidedProps(props, searchState, searchResults, meta, searchForFacetValuesResults) { var _this = this; var attributeName = props.attributeName, showMore = props.showMore, limitMin = props.limitMin, limitMax = props.limitMax; var limit = showMore ? limitMax : limitMin; var results = (0, _indexUtils.getResults)(searchResults, this.context); var canRefine = Boolean(results) && Boolean(results.getFacetByName(attributeName)); var isFromSearch = Boolean(searchForFacetValuesResults && searchForFacetValuesResults[attributeName] && searchForFacetValuesResults.query !== ''); var withSearchBox = props.withSearchBox || props.searchForFacetValues; if (false) { // eslint-disable-next-line no-console console.warn('react-instantsearch: `searchForFacetValues` has been renamed to' + '`withSearchBox`, this will break in the next major version.'); } // Search For Facet Values is not available with derived helper (used for multi index search) if (props.withSearchBox && this.context.multiIndexContext) { throw new Error('react-instantsearch: searching in *List is not available when used inside a' + ' multi index context'); } if (!canRefine) { return { items: [], currentRefinement: getCurrentRefinement(props, searchState, this.context), isFromSearch: isFromSearch, withSearchBox: withSearchBox, canRefine: canRefine }; } var items = isFromSearch ? searchForFacetValuesResults[attributeName].map(function (v) { return { label: v.value, value: getValue(v.value, props, searchState, _this.context), _highlightResult: { label: { value: v.highlighted } }, count: v.count, isRefined: v.isRefined }; }) : results.getFacetValues(attributeName, { sortBy: sortBy }).map(function (v) { return { label: v.name, value: getValue(v.name, props, searchState, _this.context), count: v.count, isRefined: v.isRefined }; }); var sortedItems = withSearchBox && !isFromSearch ? (0, _orderBy3.default)(items, ['isRefined', 'count', 'label'], ['desc', 'desc', 'asc']) : items; var transformedItems = props.transformItems ? props.transformItems(sortedItems) : sortedItems; return { items: transformedItems.slice(0, limit), currentRefinement: getCurrentRefinement(props, searchState, this.context), isFromSearch: isFromSearch, withSearchBox: withSearchBox, canRefine: items.length > 0 }; }, refine: function refine(props, searchState, nextRefinement) { return _refine(props, searchState, nextRefinement, this.context); }, searchForFacetValues: function searchForFacetValues(props, searchState, nextRefinement) { return { facetName: props.attributeName, query: nextRefinement }; }, cleanUp: function cleanUp(props, searchState) { return _cleanUp(props, searchState, this.context); }, getSearchParameters: function getSearchParameters(searchParameters, props, searchState) { var attributeName = props.attributeName, showMore = props.showMore, limitMin = props.limitMin, limitMax = props.limitMax; var limit = showMore ? limitMax : limitMin; searchParameters = searchParameters.setQueryParameters({ maxValuesPerFacet: Math.max(searchParameters.maxValuesPerFacet || 0, limit) }); searchParameters = searchParameters.addDisjunctiveFacet(attributeName); var currentRefinement = getCurrentRefinement(props, searchState, this.context); if (currentRefinement !== null) { searchParameters = searchParameters.addDisjunctiveFacetRefinement(attributeName, currentRefinement); } return searchParameters; }, getMetadata: function getMetadata(props, searchState) { var _this2 = this; var id = getId(props); var currentRefinement = getCurrentRefinement(props, searchState, this.context); return { id: id, index: (0, _indexUtils.getIndex)(this.context), items: currentRefinement === null ? [] : [{ label: props.attributeName + ': ' + currentRefinement, attributeName: props.attributeName, value: function value(nextState) { return _refine(props, nextState, '', _this2.context); }, currentRefinement: currentRefinement }] }; } }); /***/ }), /* 335 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var _isEmpty2 = __webpack_require__(15); var _isEmpty3 = _interopRequireDefault(_isEmpty2); var _find3 = __webpack_require__(53); var _find4 = _interopRequireDefault(_find3); var _slicedToArray = function () { function sliceIterator(arr, i) { var _arr = []; var _n = true; var _d = false; var _e = undefined; try { for (var _i = arr[Symbol.iterator](), _s; !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally { try { if (!_n && _i["return"]) _i["return"](); } finally { if (_d) throw _e; } } return _arr; } return function (arr, i) { if (Array.isArray(arr)) { return arr; } else if (Symbol.iterator in Object(arr)) { return sliceIterator(arr, i); } else { throw new TypeError("Invalid attempt to destructure non-iterable instance"); } }; }(); var _propTypes = __webpack_require__(0); var _propTypes2 = _interopRequireDefault(_propTypes); var _indexUtils = __webpack_require__(5); var _createConnector = __webpack_require__(2); var _createConnector2 = _interopRequireDefault(_createConnector); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; } function stringifyItem(item) { if (typeof item.start === 'undefined' && typeof item.end === 'undefined') { return ''; } return (item.start ? item.start : '') + ':' + (item.end ? item.end : ''); } function parseItem(value) { if (value.length === 0) { return { start: null, end: null }; } var _value$split = value.split(':'), _value$split2 = _slicedToArray(_value$split, 2), startStr = _value$split2[0], endStr = _value$split2[1]; return { start: startStr.length > 0 ? parseInt(startStr, 10) : null, end: endStr.length > 0 ? parseInt(endStr, 10) : null }; } var namespace = 'multiRange'; function getId(props) { return props.attributeName; } function getCurrentRefinement(props, searchState, context) { return (0, _indexUtils.getCurrentRefinementValue)(props, searchState, context, namespace + '.' + getId(props), '', function (currentRefinement) { if (currentRefinement === '') { return ''; } return currentRefinement; }); } function isRefinementsRangeIncludesInsideItemRange(stats, start, end) { return stats.min > start && stats.min < end || stats.max > start && stats.max < end; } function isItemRangeIncludedInsideRefinementsRange(stats, start, end) { return start > stats.min && start < stats.max || end > stats.min && end < stats.max; } function itemHasRefinement(attributeName, results, value) { var stats = results.getFacetByName(attributeName) ? results.getFacetStats(attributeName) : null; var range = value.split(':'); var start = Number(range[0]) === 0 || value === '' ? Number.NEGATIVE_INFINITY : Number(range[0]); var end = Number(range[1]) === 0 || value === '' ? Number.POSITIVE_INFINITY : Number(range[1]); return !(Boolean(stats) && (isRefinementsRangeIncludesInsideItemRange(stats, start, end) || isItemRangeIncludedInsideRefinementsRange(stats, start, end))); } function _refine(props, searchState, nextRefinement, context) { var nextValue = _defineProperty({}, getId(props, searchState), nextRefinement); var resetPage = true; return (0, _indexUtils.refineValue)(searchState, nextValue, context, resetPage, namespace); } function _cleanUp(props, searchState, context) { return (0, _indexUtils.cleanUpValue)(searchState, context, namespace + '.' + getId(props)); } /** * connectMultiRange connector provides the logic to build a widget that will * give the user the ability to select a range value for a numeric attribute. * Ranges are defined statically. * @name connectMultiRange * @requirements The attribute passed to the `attributeName` prop must be holding numerical values. * @kind connector * @propType {string} attributeName - the name of the attribute in the records * @propType {{label: string, start: number, end: number}[]} items - List of options. With a text label, and upper and lower bounds. * @propType {string} [defaultRefinement] - the value of the item selected by default, follow the shape of a `string` with a pattern of `'{start}:{end}'`. * @propType {function} [transformItems] - Function to modify the items being displayed, e.g. for filtering or sorting them. Takes an items as parameter and expects it back in return. * @providedPropType {function} refine - a function to select a range. * @providedPropType {function} createURL - a function to generate a URL for the corresponding search state * @providedPropType {string} currentRefinement - the refinement currently applied. follow the shape of a `string` with a pattern of `'{start}:{end}'` which corresponds to the current selected item. For instance, when the selected item is `{start: 10, end: 20}`, the searchState of the widget is `'10:20'`. When `start` isn't defined, the searchState of the widget is `':{end}'`, and the same way around when `end` isn't defined. However, when neither `start` nor `end` are defined, the searchState is an empty string. * @providedPropType {array.<{isRefined: boolean, label: string, value: string, isRefined: boolean, noRefinement: boolean}>} items - the list of ranges the MultiRange can display. */ exports.default = (0, _createConnector2.default)({ displayName: 'AlgoliaMultiRange', propTypes: { id: _propTypes2.default.string, attributeName: _propTypes2.default.string.isRequired, items: _propTypes2.default.arrayOf(_propTypes2.default.shape({ label: _propTypes2.default.node, start: _propTypes2.default.number, end: _propTypes2.default.number })).isRequired, transformItems: _propTypes2.default.func }, getProvidedProps: function getProvidedProps(props, searchState, searchResults) { var attributeName = props.attributeName; var currentRefinement = getCurrentRefinement(props, searchState, this.context); var results = (0, _indexUtils.getResults)(searchResults, this.context); var items = props.items.map(function (item) { var value = stringifyItem(item); return { label: item.label, value: value, isRefined: value === currentRefinement, noRefinement: results ? itemHasRefinement(getId(props), results, value) : false }; }); var stats = results && results.getFacetByName(attributeName) ? results.getFacetStats(attributeName) : null; var refinedItem = (0, _find4.default)(items, function (item) { return item.isRefined === true; }); if (!items.some(function (item) { return item.value === ''; })) { items.push({ value: '', isRefined: (0, _isEmpty3.default)(refinedItem), noRefinement: !stats, label: 'All' }); } return { items: props.transformItems ? props.transformItems(items) : items, currentRefinement: currentRefinement, canRefine: items.length > 0 && items.some(function (item) { return item.noRefinement === false; }) }; }, refine: function refine(props, searchState, nextRefinement) { return _refine(props, searchState, nextRefinement, this.context); }, cleanUp: function cleanUp(props, searchState) { return _cleanUp(props, searchState, this.context); }, getSearchParameters: function getSearchParameters(searchParameters, props, searchState) { var attributeName = props.attributeName; var _parseItem = parseItem(getCurrentRefinement(props, searchState, this.context)), start = _parseItem.start, end = _parseItem.end; searchParameters = searchParameters.addDisjunctiveFacet(attributeName); if (start) { searchParameters = searchParameters.addNumericRefinement(attributeName, '>=', start); } if (end) { searchParameters = searchParameters.addNumericRefinement(attributeName, '<=', end); } return searchParameters; }, getMetadata: function getMetadata(props, searchState) { var _this = this; var id = getId(props); var value = getCurrentRefinement(props, searchState, this.context); var items = []; var index = (0, _indexUtils.getIndex)(this.context); if (value !== '') { var _find2 = (0, _find4.default)(props.items, function (item) { return stringifyItem(item) === value; }), label = _find2.label; items.push({ label: props.attributeName + ': ' + label, attributeName: props.attributeName, currentRefinement: label, value: function value(nextState) { return _refine(props, nextState, '', _this.context); } }); } return { id: id, index: index, items: items }; } }); /***/ }), /* 336 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var _indexUtils = __webpack_require__(5); var _createConnector = __webpack_require__(2); var _createConnector2 = _interopRequireDefault(_createConnector); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; } function getId() { return 'page'; } function getCurrentRefinement(props, searchState, context) { var id = getId(); var page = 1; return (0, _indexUtils.getCurrentRefinementValue)(props, searchState, context, id, page, function (currentRefinement) { if (typeof currentRefinement === 'string') { return parseInt(currentRefinement, 10); } return currentRefinement; }); } function _refine(props, searchState, nextPage, context) { var id = getId(); var nextValue = _defineProperty({}, id, nextPage); var resetPage = false; return (0, _indexUtils.refineValue)(searchState, nextValue, context, resetPage); } /** * connectPagination connector provides the logic to build a widget that will * let the user displays hits corresponding to a certain page. * @name connectPagination * @kind connector * @propType {boolean} [showFirst=true] - Display the first page link. * @propType {boolean} [showLast=false] - Display the last page link. * @propType {boolean} [showPrevious=true] - Display the previous page link. * @propType {boolean} [showNext=true] - Display the next page link. * @propType {number} [pagesPadding=3] - How many page links to display around the current page. * @propType {number} [maxPages=Infinity] - Maximum number of pages to display. * @providedPropType {function} refine - a function to remove a single filter * @providedPropType {function} createURL - a function to generate a URL for the corresponding search state * @providedPropType {number} nbPages - the total of existing pages * @providedPropType {number} currentRefinement - the page refinement currently applied */ exports.default = (0, _createConnector2.default)({ displayName: 'AlgoliaPagination', getProvidedProps: function getProvidedProps(props, searchState, searchResults) { var results = (0, _indexUtils.getResults)(searchResults, this.context); if (!results) { return null; } var nbPages = results.nbPages; return { nbPages: nbPages, currentRefinement: getCurrentRefinement(props, searchState, this.context), canRefine: nbPages > 1 }; }, refine: function refine(props, searchState, nextPage) { return _refine(props, searchState, nextPage, this.context); }, cleanUp: function cleanUp(props, searchState) { return (0, _indexUtils.cleanUpValue)(searchState, this.context, getId()); }, getSearchParameters: function getSearchParameters(searchParameters, props, searchState) { return searchParameters.setPage(getCurrentRefinement(props, searchState, this.context) - 1); }, getMetadata: function getMetadata() { return { id: getId() }; } }); /***/ }), /* 337 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var _createConnector = __webpack_require__(2); var _createConnector2 = _interopRequireDefault(_createConnector); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } /** * connectPoweredBy connector provides the logic to build a widget that * will display a link to algolia. * @name connectPoweredBy * @kind connector * @providedPropType {string} url - the url to redirect to algolia */ exports.default = (0, _createConnector2.default)({ displayName: 'AlgoliaPoweredBy', propTypes: {}, getProvidedProps: function getProvidedProps(props) { var url = 'https://www.algolia.com/?' + 'utm_source=react-instantsearch&' + 'utm_medium=website&' + ('utm_content=' + (props.canRender ? location.hostname : '') + '&') + 'utm_campaign=poweredby'; return { url: url }; } }); /***/ }), /* 338 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var _propTypes = __webpack_require__(0); var _propTypes2 = _interopRequireDefault(_propTypes); var _indexUtils = __webpack_require__(5); var _createConnector = __webpack_require__(2); var _createConnector2 = _interopRequireDefault(_createConnector); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; } var namespace = 'refinementList'; function getId(props) { return props.attributeName; } function getCurrentRefinement(props, searchState, context) { return (0, _indexUtils.getCurrentRefinementValue)(props, searchState, context, namespace + '.' + getId(props), [], function (currentRefinement) { if (typeof currentRefinement === 'string') { // All items were unselected if (currentRefinement === '') { return []; } // Only one item was in the searchState but we know it should be an array return [currentRefinement]; } return currentRefinement; }); } function getValue(name, props, searchState, context) { var currentRefinement = getCurrentRefinement(props, searchState, context); var isAnewValue = currentRefinement.indexOf(name) === -1; var nextRefinement = isAnewValue ? currentRefinement.concat([name]) // cannot use .push(), it mutates : currentRefinement.filter(function (selectedValue) { return selectedValue !== name; }); // cannot use .splice(), it mutates return nextRefinement; } function _refine(props, searchState, nextRefinement, context) { var id = getId(props); // Setting the value to an empty string ensures that it is persisted in // the URL as an empty value. // This is necessary in the case where `defaultRefinement` contains one // item and we try to deselect it. `nextSelected` would be an empty array, // which would not be persisted to the URL. // {foo: ['bar']} => "foo[0]=bar" // {foo: []} => "" var nextValue = _defineProperty({}, id, nextRefinement.length > 0 ? nextRefinement : ''); var resetPage = true; return (0, _indexUtils.refineValue)(searchState, nextValue, context, resetPage, namespace); } function _cleanUp(props, searchState, context) { return (0, _indexUtils.cleanUpValue)(searchState, context, namespace + '.' + getId(props)); } /** * connectRefinementList connector provides the logic to build a widget that will * give the user the ability to choose multiple values for a specific facet. * @name connectRefinementList * @kind connector * @requirements The attribute passed to the `attributeName` prop must be present in "attributes for faceting" * on the Algolia dashboard or configured as `attributesForFaceting` via a set settings call to the Algolia API. * @propType {string} attributeName - the name of the attribute in the record * @propType {boolean} [withSearchBox=false] - allow search inside values * @propType {string} [operator=or] - How to apply the refinements. Possible values: 'or' or 'and'. * @propType {boolean} [showMore=false] - true if the component should display a button that will expand the number of items * @propType {number} [limitMin=10] - the minimum number of displayed items * @propType {number} [limitMax=20] - the maximun number of displayed items. Only used when showMore is set to `true` * @propType {string[]} defaultRefinement - the values of the items selected by default. The searchState of this widget takes the form of a list of `string`s, which correspond to the values of all selected refinements. However, when there are no refinements selected, the value of the searchState is an empty string. * @propType {function} [transformItems] - Function to modify the items being displayed, e.g. for filtering or sorting them. Takes an items as parameter and expects it back in return. * @providedPropType {function} refine - a function to toggle a refinement * @providedPropType {function} createURL - a function to generate a URL for the corresponding search state * @providedPropType {string[]} currentRefinement - the refinement currently applied * @providedPropType {array.<{count: number, isRefined: boolean, label: string, value: string}>} items - the list of items the RefinementList can display. * @providedPropType {function} searchForItems - a function to toggle a search inside items values * @providedPropType {boolean} isFromSearch - a boolean that says if the `items` props contains facet values from the global search or from the search inside items. */ var sortBy = ['isRefined', 'count:desc', 'name:asc']; exports.default = (0, _createConnector2.default)({ displayName: 'AlgoliaRefinementList', propTypes: { id: _propTypes2.default.string, attributeName: _propTypes2.default.string.isRequired, operator: _propTypes2.default.oneOf(['and', 'or']), showMore: _propTypes2.default.bool, limitMin: _propTypes2.default.number, limitMax: _propTypes2.default.number, defaultRefinement: _propTypes2.default.arrayOf(_propTypes2.default.oneOfType([_propTypes2.default.string, _propTypes2.default.number])), withSearchBox: _propTypes2.default.bool, searchForFacetValues: _propTypes2.default.bool, // @deprecated transformItems: _propTypes2.default.func }, defaultProps: { operator: 'or', showMore: false, limitMin: 10, limitMax: 20 }, getProvidedProps: function getProvidedProps(props, searchState, searchResults, metadata, searchForFacetValuesResults) { var _this = this; var attributeName = props.attributeName, showMore = props.showMore, limitMin = props.limitMin, limitMax = props.limitMax; var limit = showMore ? limitMax : limitMin; var results = (0, _indexUtils.getResults)(searchResults, this.context); var canRefine = Boolean(results) && Boolean(results.getFacetByName(attributeName)); var isFromSearch = Boolean(searchForFacetValuesResults && searchForFacetValuesResults[attributeName] && searchForFacetValuesResults.query !== ''); var withSearchBox = props.withSearchBox || props.searchForFacetValues; if (false) { // eslint-disable-next-line no-console console.warn('react-instantsearch: `searchForFacetValues` has been renamed to' + '`withSearchBox`, this will break in the next major version.'); } // Search For Facet Values is not available with derived helper (used for multi index search) if (props.withSearchBox && this.context.multiIndexContext) { throw new Error('react-instantsearch: searching in *List is not available when used inside a' + ' multi index context'); } if (!canRefine) { return { items: [], currentRefinement: getCurrentRefinement(props, searchState, this.context), canRefine: canRefine, isFromSearch: isFromSearch, withSearchBox: withSearchBox }; } var items = isFromSearch ? searchForFacetValuesResults[attributeName].map(function (v) { return { label: v.value, value: getValue(v.value, props, searchState, _this.context), _highlightResult: { label: { value: v.highlighted } }, count: v.count, isRefined: v.isRefined }; }) : results.getFacetValues(attributeName, { sortBy: sortBy }).map(function (v) { return { label: v.name, value: getValue(v.name, props, searchState, _this.context), count: v.count, isRefined: v.isRefined }; }); var transformedItems = props.transformItems ? props.transformItems(items) : items; return { items: transformedItems.slice(0, limit), currentRefinement: getCurrentRefinement(props, searchState, this.context), isFromSearch: isFromSearch, withSearchBox: withSearchBox, canRefine: items.length > 0 }; }, refine: function refine(props, searchState, nextRefinement) { return _refine(props, searchState, nextRefinement, this.context); }, searchForFacetValues: function searchForFacetValues(props, searchState, nextRefinement) { return { facetName: props.attributeName, query: nextRefinement }; }, cleanUp: function cleanUp(props, searchState) { return _cleanUp(props, searchState, this.context); }, getSearchParameters: function getSearchParameters(searchParameters, props, searchState) { var attributeName = props.attributeName, operator = props.operator, showMore = props.showMore, limitMin = props.limitMin, limitMax = props.limitMax; var limit = showMore ? limitMax : limitMin; var addKey = operator === 'and' ? 'addFacet' : 'addDisjunctiveFacet'; var addRefinementKey = addKey + 'Refinement'; searchParameters = searchParameters.setQueryParameters({ maxValuesPerFacet: Math.max(searchParameters.maxValuesPerFacet || 0, limit) }); searchParameters = searchParameters[addKey](attributeName); return getCurrentRefinement(props, searchState, this.context).reduce(function (res, val) { return res[addRefinementKey](attributeName, val); }, searchParameters); }, getMetadata: function getMetadata(props, searchState) { var id = getId(props); var context = this.context; return { id: id, index: (0, _indexUtils.getIndex)(this.context), items: getCurrentRefinement(props, searchState, context).length > 0 ? [{ attributeName: props.attributeName, label: props.attributeName + ': ', currentRefinement: getCurrentRefinement(props, searchState, context), value: function value(nextState) { return _refine(props, nextState, [], context); }, items: getCurrentRefinement(props, searchState, context).map(function (item) { return { label: '' + item, value: function value(nextState) { var nextSelectedItems = getCurrentRefinement(props, nextState, context).filter(function (other) { return other !== item; }); return _refine(props, searchState, nextSelectedItems, context); } }; }) }] : [] }; } }); /***/ }), /* 339 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var _omit2 = __webpack_require__(35); var _omit3 = _interopRequireDefault(_omit2); var _propTypes = __webpack_require__(0); var _propTypes2 = _interopRequireDefault(_propTypes); var _createConnector = __webpack_require__(2); var _createConnector2 = _interopRequireDefault(_createConnector); var _indexUtils = __webpack_require__(5); var _utils = __webpack_require__(44); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } /** * connectScrollTo connector provides the logic to build a widget that will * let the page scroll to a certain point. * @name connectScrollTo * @kind connector * @propType {string} [scrollOn="page"] - Widget searchState key on which to listen for changes, default to the pagination widget. * @providedPropType {any} value - the current refinement applied to the widget listened by scrollTo * @providedPropType {boolean} hasNotChanged - indicates whether the refinement came from the scrollOn argument (for instance page by default) */ exports.default = (0, _createConnector2.default)({ displayName: 'AlgoliaScrollTo', propTypes: { scrollOn: _propTypes2.default.string }, defaultProps: { scrollOn: 'page' }, getProvidedProps: function getProvidedProps(props, searchState) { var id = props.scrollOn; var value = (0, _indexUtils.getCurrentRefinementValue)(props, searchState, this.context, id, null, function (currentRefinement) { return currentRefinement; }); if (!this._prevSearchState) { this._prevSearchState = {}; } /* Get the subpart of the state that interest us*/ if ((0, _indexUtils.hasMultipleIndex)(this.context)) { var index = (0, _indexUtils.getIndex)(this.context); searchState = searchState.indices ? searchState.indices[index] : {}; } /* if there is a change in the app that has been triggered by another element than "props.scrollOn (id) or the Configure widget, we need to keep track of the search state to know if there's a change in the app that was not triggered by the props.scrollOn (id) or the Configure widget. This is useful when using ScrollTo in combination of Pagination. As pagination can be change by every widget, we want to scroll only if it cames from the pagination widget itself. We also remove the configure key from the search state to do this comparaison because for now configure values are not present in the search state before a first refinement has been made and will false the results. See: https://github.com/algolia/react-instantsearch/issues/164 */ var cleanedSearchState = (0, _omit3.default)((0, _omit3.default)(searchState, 'configure'), id); var hasNotChanged = (0, _utils.shallowEqual)(this._prevSearchState, cleanedSearchState); this._prevSearchState = cleanedSearchState; return { value: value, hasNotChanged: hasNotChanged }; } }); /***/ }), /* 340 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var _createConnector = __webpack_require__(2); var _createConnector2 = _interopRequireDefault(_createConnector); var _propTypes = __webpack_require__(0); var _propTypes2 = _interopRequireDefault(_propTypes); var _indexUtils = __webpack_require__(5); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; } function getId() { return 'query'; } function getCurrentRefinement(props, searchState, context) { var id = getId(props); return (0, _indexUtils.getCurrentRefinementValue)(props, searchState, context, id, '', function (currentRefinement) { if (currentRefinement) { return currentRefinement; } return ''; }); } function _refine(props, searchState, nextRefinement, context) { var id = getId(); var nextValue = _defineProperty({}, id, nextRefinement); var resetPage = true; return (0, _indexUtils.refineValue)(searchState, nextValue, context, resetPage); } function _cleanUp(props, searchState, context) { return (0, _indexUtils.cleanUpValue)(searchState, context, getId()); } /** * connectSearchBox connector provides the logic to build a widget that will * let the user search for a query. * @name connectSearchBox * @kind connector * @providedPropType {function} refine - a function to remove a single filter * @providedPropType {function} createURL - a function to generate a URL for the corresponding search state * @providedPropType {string} currentRefinement - the query to search for. */ exports.default = (0, _createConnector2.default)({ displayName: 'AlgoliaSearchBox', propTypes: { defaultRefinement: _propTypes2.default.string }, getProvidedProps: function getProvidedProps(props, searchState) { return { currentRefinement: getCurrentRefinement(props, searchState, this.context) }; }, refine: function refine(props, searchState, nextRefinement) { return _refine(props, searchState, nextRefinement, this.context); }, cleanUp: function cleanUp(props, searchState) { return _cleanUp(props, searchState, this.context); }, getSearchParameters: function getSearchParameters(searchParameters, props, searchState) { return searchParameters.setQuery(getCurrentRefinement(props, searchState, this.context)); }, getMetadata: function getMetadata(props, searchState) { var _this = this; var id = getId(props); var currentRefinement = getCurrentRefinement(props, searchState, this.context); return { id: id, index: (0, _indexUtils.getIndex)(this.context), items: currentRefinement === null ? [] : [{ label: id + ': ' + currentRefinement, value: function value(nextState) { return _refine(props, nextState, '', _this.context); }, currentRefinement: currentRefinement }] }; } }); /***/ }), /* 341 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; var _propTypes = __webpack_require__(0); var _propTypes2 = _interopRequireDefault(_propTypes); var _indexUtils = __webpack_require__(5); var _createConnector = __webpack_require__(2); var _createConnector2 = _interopRequireDefault(_createConnector); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; } function getId() { return 'sortBy'; } function getCurrentRefinement(props, searchState, context) { var id = getId(props); return (0, _indexUtils.getCurrentRefinementValue)(props, searchState, context, id, null, function (currentRefinement) { if (currentRefinement) { return currentRefinement; } return null; }); } /** * The connectSortBy connector provides the logic to build a widget that will * display a list of indices. This allows a user to change how the hits are being sorted. * @name connectSortBy * @requirements Algolia handles sorting by creating replica indices. [Read more about sorting](https://www.algolia.com/doc/guides/relevance/sorting/) on * the Algolia website. * @kind connector * @propType {string} defaultRefinement - The default selected index. * @propType {{value: string, label: string}[]} items - The list of indexes to search in. * @propType {function} [transformItems] - Function to modify the items being displayed, e.g. for filtering or sorting them. Takes an items as parameter and expects it back in return. * @providedPropType {function} refine - a function to remove a single filter * @providedPropType {function} createURL - a function to generate a URL for the corresponding search state * @providedPropType {string[]} currentRefinement - the refinement currently applied * @providedPropType {array.<{isRefined: boolean, label?: string, value: string}>} items - the list of items the HitsPerPage can display. If no label provided, the value will be displayed. */ exports.default = (0, _createConnector2.default)({ displayName: 'AlgoliaSortBy', propTypes: { defaultRefinement: _propTypes2.default.string, items: _propTypes2.default.arrayOf(_propTypes2.default.shape({ label: _propTypes2.default.string, value: _propTypes2.default.string.isRequired })).isRequired, transformItems: _propTypes2.default.func }, getProvidedProps: function getProvidedProps(props, searchState) { var currentRefinement = getCurrentRefinement(props, searchState, this.context); var items = props.items.map(function (item) { return item.value === currentRefinement ? _extends({}, item, { isRefined: true }) : _extends({}, item, { isRefined: false }); }); return { items: props.transformItems ? props.transformItems(items) : items, currentRefinement: currentRefinement }; }, refine: function refine(props, searchState, nextRefinement) { var id = getId(); var nextValue = _defineProperty({}, id, nextRefinement); var resetPage = true; return (0, _indexUtils.refineValue)(searchState, nextValue, this.context, resetPage); }, cleanUp: function cleanUp(props, searchState) { return (0, _indexUtils.cleanUpValue)(searchState, this.context, getId()); }, getSearchParameters: function getSearchParameters(searchParameters, props, searchState) { var selectedIndex = getCurrentRefinement(props, searchState, this.context); return searchParameters.setIndex(selectedIndex); }, getMetadata: function getMetadata() { return { id: getId() }; } }); /***/ }), /* 342 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var _createConnector = __webpack_require__(2); var _createConnector2 = _interopRequireDefault(_createConnector); var _indexUtils = __webpack_require__(5); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } /** * connectStats connector provides the logic to build a widget that will * displays algolia search statistics (hits number and processing time). * @name connectStats * @kind connector * @providedPropType {number} nbHits - number of hits returned by Algolia. * @providedPropType {number} processingTimeMS - the time in ms took by Algolia to search for results. */ exports.default = (0, _createConnector2.default)({ displayName: 'AlgoliaStats', getProvidedProps: function getProvidedProps(props, searchState, searchResults) { var results = (0, _indexUtils.getResults)(searchResults, this.context); if (!results) { return null; } return { nbHits: results.nbHits, processingTimeMS: results.processingTimeMS }; } }); /***/ }), /* 343 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var _propTypes = __webpack_require__(0); var _propTypes2 = _interopRequireDefault(_propTypes); var _createConnector = __webpack_require__(2); var _createConnector2 = _interopRequireDefault(_createConnector); var _indexUtils = __webpack_require__(5); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; } function getId(props) { return props.attributeName; } var namespace = 'toggle'; function getCurrentRefinement(props, searchState, context) { return (0, _indexUtils.getCurrentRefinementValue)(props, searchState, context, namespace + '.' + getId(props), false, function (currentRefinement) { if (currentRefinement) { return currentRefinement; } return false; }); } function _refine(props, searchState, nextRefinement, context) { var id = getId(props); var nextValue = _defineProperty({}, id, nextRefinement ? nextRefinement : false); var resetPage = true; return (0, _indexUtils.refineValue)(searchState, nextValue, context, resetPage, namespace); } function _cleanUp(props, searchState, context) { return (0, _indexUtils.cleanUpValue)(searchState, context, namespace + '.' + getId(props)); } /** * connectToggle connector provides the logic to build a widget that will * provides an on/off filtering feature based on an attribute value. Note that if you provide an “off” option, it will be refined at initialization. * @name connectToggle * @kind connector * @requirements To use this widget, you'll need an attribute to toggle on. * * You can't toggle on null or not-null values. If you want to address this particular use-case you'll need to compute an * extra boolean attribute saying if the value exists or not. See this [thread](https://discourse.algolia.com/t/how-to-create-a-toggle-for-the-absence-of-a-string-attribute/2460) for more details. * * @propType {string} attributeName - Name of the attribute on which to apply the `value` refinement. Required when `value` is present. * @propType {string} label - Label for the toggle. * @propType {string} value - Value of the refinement to apply on `attributeName`. * @propType {boolean} [defaultRefinement=false] - Default searchState of the widget. Should the toggle be checked by default? * @providedPropType {function} refine - a function to toggle a refinement * @providedPropType {function} createURL - a function to generate a URL for the corresponding search state * @providedPropType {boolean} currentRefinement - the refinement currently applied */ exports.default = (0, _createConnector2.default)({ displayName: 'AlgoliaToggle', propTypes: { label: _propTypes2.default.string, filter: _propTypes2.default.func, attributeName: _propTypes2.default.string, value: _propTypes2.default.any, defaultRefinement: _propTypes2.default.bool }, getProvidedProps: function getProvidedProps(props, searchState) { var currentRefinement = getCurrentRefinement(props, searchState, this.context); return { currentRefinement: currentRefinement }; }, refine: function refine(props, searchState, nextRefinement) { return _refine(props, searchState, nextRefinement, this.context); }, cleanUp: function cleanUp(props, searchState) { return _cleanUp(props, searchState, this.context); }, getSearchParameters: function getSearchParameters(searchParameters, props, searchState) { var attributeName = props.attributeName, value = props.value, filter = props.filter; var checked = getCurrentRefinement(props, searchState, this.context); if (checked) { if (attributeName) { searchParameters = searchParameters.addFacet(attributeName).addFacetRefinement(attributeName, value); } if (filter) { searchParameters = filter(searchParameters); } } return searchParameters; }, getMetadata: function getMetadata(props, searchState) { var _this = this; var id = getId(props); var checked = getCurrentRefinement(props, searchState, this.context); var items = []; var index = (0, _indexUtils.getIndex)(this.context); if (checked) { items.push({ label: props.label, currentRefinement: props.label, attributeName: props.attributeName, value: function value(nextState) { return _refine(props, nextState, false, _this.context); } }); } return { id: id, index: index, items: items }; } }); /***/ }), /* 344 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.getId = undefined; var _propTypes = __webpack_require__(0); var _propTypes2 = _interopRequireDefault(_propTypes); var _createConnector = __webpack_require__(2); var _createConnector2 = _interopRequireDefault(_createConnector); var _indexUtils = __webpack_require__(5); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; } var getId = exports.getId = function getId(props) { return props.attributes[0]; }; var namespace = 'hierarchicalMenu'; function _refine(props, searchState, nextRefinement, context) { var id = getId(props); var nextValue = _defineProperty({}, id, nextRefinement || ''); var resetPage = true; return (0, _indexUtils.refineValue)(searchState, nextValue, context, resetPage, namespace); } function transformValue(values) { return values.reduce(function (acc, item) { if (item.isRefined) { acc.push({ label: item.name, // If dealing with a nested "items", "value" is equal to the previous value concatenated with the current label // If dealing with the first level, "value" is equal to the current label value: item.path }); // Create a variable in order to keep the same acc for the recursion, otherwise "reduce" returns a new one if (item.data) { acc = acc.concat(transformValue(item.data, acc)); } } return acc; }, []); } /** * The breadcrumb component is s a type of secondary navigation scheme that * reveals the user’s location in a website or web application. * * @name connectBreadcrumb * @requirements To use this widget, your attributes must be formatted in a specific way. * If you want for example to have a Breadcrumb of categories, objects in your index * should be formatted this way: * * ```json * { * "categories.lvl0": "products", * "categories.lvl1": "products > fruits", * "categories.lvl2": "products > fruits > citrus" * } * ``` * * It's also possible to provide more than one path for each level: * * ```json * { * "categories.lvl0": ["products", "goods"], * "categories.lvl1": ["products > fruits", "goods > to eat"] * } * ``` * * All attributes passed to the `attributes` prop must be present in "attributes for faceting" * on the Algolia dashboard or configured as `attributesForFaceting` via a set settings call to the Algolia API. * * @kind connector * @propType {string} attributes - List of attributes to use to generate the hierarchy of the menu. See the example for the convention to follow. * @propType {string} {React.Element} [separator=' > '] - Specifies the level separator used in the data. * @propType {string} [rootURL=null] - The root element's URL (the originating page). * @propType {function} [transformItems] - Function to modify the items being displayed, e.g. for filtering or sorting them. Takes an items as parameter and expects it back in return. * @providedPropType {function} refine - a function to toggle a refinement * @providedPropType {function} createURL - a function to generate a URL for the corresponding search state * @providedPropType {array.<{items: object, count: number, isRefined: boolean, label: string, value: string}>} items - the list of items the Breadcrumb can display. */ exports.default = (0, _createConnector2.default)({ displayName: 'AlgoliaBreadcrumb', propTypes: { attributes: function attributes(props, propName, componentName) { var isNotString = function isNotString(val) { return typeof val !== 'string'; }; if (!Array.isArray(props[propName]) || props[propName].some(isNotString) || props[propName].length < 1) { return new Error('Invalid prop ' + propName + ' supplied to ' + componentName + '. Expected an Array of Strings'); } return undefined; }, rootURL: _propTypes2.default.string, separator: _propTypes2.default.oneOfType([_propTypes2.default.string, _propTypes2.default.element]), transformItems: _propTypes2.default.func }, defaultProps: { rootURL: null, separator: ' > ' }, getProvidedProps: function getProvidedProps(props, searchState, searchResults) { var id = getId(props); var results = (0, _indexUtils.getResults)(searchResults, this.context); var isFacetPresent = Boolean(results) && Boolean(results.getFacetByName(id)); if (!isFacetPresent) { return { items: [], canRefine: false }; } var values = results.getFacetValues(id); var items = values.data ? transformValue(values.data) : []; var transformedItems = props.transformItems ? props.transformItems(items) : items; return { canRefine: transformedItems.length > 0, items: transformedItems }; }, refine: function refine(props, searchState, nextRefinement) { return _refine(props, searchState, nextRefinement, this.context); } }); /***/ }), /* 345 */ /***/ (function(module, exports) { var toString = {}.toString; module.exports = Array.isArray || function (arr) { return toString.call(arr) == '[object Array]'; }; /***/ }), /* 346 */ /***/ (function(module, exports, __webpack_require__) { var foreach = __webpack_require__(111); module.exports = function map(arr, fn) { var newArr = []; foreach(arr, function(item, itemIndex) { newArr.push(fn(item, itemIndex, arr)); }); return newArr; }; /***/ }), /* 347 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }(); var _propTypes = __webpack_require__(0); var _propTypes2 = _interopRequireDefault(_propTypes); var _react = __webpack_require__(4); var _react2 = _interopRequireDefault(_react); var _translatable = __webpack_require__(33); var _translatable2 = _interopRequireDefault(_translatable); var _classNames = __webpack_require__(14); var _classNames2 = _interopRequireDefault(_classNames); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; } function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; } function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; } var cx = (0, _classNames2.default)('SearchBox'); var SearchBox = function (_Component) { _inherits(SearchBox, _Component); function SearchBox(props) { _classCallCheck(this, SearchBox); var _this = _possibleConstructorReturn(this, (SearchBox.__proto__ || Object.getPrototypeOf(SearchBox)).call(this)); _this.getQuery = function () { return _this.props.searchAsYouType ? _this.props.currentRefinement : _this.state.query; }; _this.setQuery = function (val) { var _this$props = _this.props, refine = _this$props.refine, searchAsYouType = _this$props.searchAsYouType; if (searchAsYouType) { refine(val); } else { _this.setState({ query: val }); } }; _this.onInputMount = function (input) { _this.input = input; if (_this.props.__inputRef) { _this.props.__inputRef(input); } }; _this.onKeyDown = function (e) { if (!_this.props.focusShortcuts) { return; } var shortcuts = _this.props.focusShortcuts.map(function (key) { return typeof key === 'string' ? key.toUpperCase().charCodeAt(0) : key; }); var elt = e.target || e.srcElement; var tagName = elt.tagName; if (elt.isContentEditable || tagName === 'INPUT' || tagName === 'SELECT' || tagName === 'TEXTAREA') { // already in an input return; } var which = e.which || e.keyCode; if (shortcuts.indexOf(which) === -1) { // not the right shortcut return; } _this.input.focus(); e.stopPropagation(); e.preventDefault(); }; _this.onSubmit = function (e) { e.preventDefault(); e.stopPropagation(); _this.input.blur(); var _this$props2 = _this.props, refine = _this$props2.refine, searchAsYouType = _this$props2.searchAsYouType; if (!searchAsYouType) { refine(_this.getQuery()); } return false; }; _this.onChange = function (e) { _this.setQuery(e.target.value); if (_this.props.onChange) { _this.props.onChange(e); } }; _this.onReset = function () { _this.setQuery(''); _this.input.focus(); if (_this.props.onReset) { _this.props.onReset(); } }; _this.state = { query: props.searchAsYouType ? null : props.currentRefinement }; return _this; } _createClass(SearchBox, [{ key: 'componentDidMount', value: function componentDidMount() { document.addEventListener('keydown', this.onKeyDown); } }, { key: 'componentWillUnmount', value: function componentWillUnmount() { document.removeEventListener('keydown', this.onKeyDown); } }, { key: 'componentWillReceiveProps', value: function componentWillReceiveProps(nextProps) { // Reset query when the searchParameters query has changed. // This is kind of an anti-pattern (props in state), but it works here // since we know for sure that searchParameters having changed means a // new search has been triggered. if (!nextProps.searchAsYouType && nextProps.currentRefinement !== this.props.currentRefinement) { this.setState({ query: nextProps.currentRefinement }); } } // From https://github.com/algolia/autocomplete.js/pull/86 }, { key: 'render', value: function render() { var _this2 = this; var _props = this.props, translate = _props.translate, autoFocus = _props.autoFocus; var query = this.getQuery(); var submitComponent = this.props.submitComponent ? this.props.submitComponent : _react2.default.createElement( 'svg', { role: 'img', width: '1em', height: '1em' }, _react2.default.createElement('use', { xlinkHref: '#sbx-icon-search-13' }) ); var resetComponent = this.props.resetComponent ? this.props.resetComponent : _react2.default.createElement( 'svg', { role: 'img', width: '1em', height: '1em' }, _react2.default.createElement('use', { xlinkHref: '#sbx-icon-clear-3' }) ); var searchInputEvents = Object.keys(this.props).reduce(function (props, prop) { if (['onsubmit', 'onreset', 'onchange'].indexOf(prop.toLowerCase()) === -1 && prop.indexOf('on') === 0) { return _extends({}, props, _defineProperty({}, prop, _this2.props[prop])); } return props; }, {}); /* eslint-disable max-len */ return _react2.default.createElement( 'form', _extends({ noValidate: true, onSubmit: this.props.onSubmit ? this.props.onSubmit : this.onSubmit, onReset: this.onReset }, cx('root'), { action: '', role: 'search' }), _react2.default.createElement( 'svg', { xmlns: 'http://www.w3.org/2000/svg', style: { display: 'none' } }, _react2.default.createElement( 'symbol', { xmlns: 'http://www.w3.org/2000/svg', id: 'sbx-icon-search-13', viewBox: '0 0 40 40' }, _react2.default.createElement('path', { d: 'M26.804 29.01c-2.832 2.34-6.465 3.746-10.426 3.746C7.333 32.756 0 25.424 0 16.378 0 7.333 7.333 0 16.378 0c9.046 0 16.378 7.333 16.378 16.378 0 3.96-1.406 7.594-3.746 10.426l10.534 10.534c.607.607.61 1.59-.004 2.202-.61.61-1.597.61-2.202.004L26.804 29.01zm-10.426.627c7.323 0 13.26-5.936 13.26-13.26 0-7.32-5.937-13.257-13.26-13.257C9.056 3.12 3.12 9.056 3.12 16.378c0 7.323 5.936 13.26 13.258 13.26z', fillRule: 'evenodd' }) ), _react2.default.createElement( 'symbol', { xmlns: 'http://www.w3.org/2000/svg', id: 'sbx-icon-clear-3', viewBox: '0 0 20 20' }, _react2.default.createElement('path', { d: 'M8.114 10L.944 2.83 0 1.885 1.886 0l.943.943L10 8.113l7.17-7.17.944-.943L20 1.886l-.943.943-7.17 7.17 7.17 7.17.943.944L18.114 20l-.943-.943-7.17-7.17-7.17 7.17-.944.943L0 18.114l.943-.943L8.113 10z', fillRule: 'evenodd' }) ) ), _react2.default.createElement( 'div', _extends({ role: 'search' }, cx('wrapper')), _react2.default.createElement('input', _extends({ ref: this.onInputMount, type: 'search', placeholder: translate('placeholder'), autoFocus: autoFocus, autoComplete: 'off', autoCorrect: 'off', autoCapitalize: 'off', spellCheck: 'false', required: true, value: query, onChange: this.onChange }, searchInputEvents, cx('input'))), _react2.default.createElement( 'button', _extends({ type: 'submit', title: translate('submitTitle') }, cx('submit')), submitComponent ), _react2.default.createElement( 'button', _extends({ type: 'reset', title: translate('resetTitle') }, cx('reset'), { onClick: this.onReset }), resetComponent ) ) ); /* eslint-enable */ } }]); return SearchBox; }(_react.Component); SearchBox.propTypes = { currentRefinement: _propTypes2.default.string, refine: _propTypes2.default.func.isRequired, translate: _propTypes2.default.func.isRequired, resetComponent: _propTypes2.default.element, submitComponent: _propTypes2.default.element, focusShortcuts: _propTypes2.default.arrayOf(_propTypes2.default.oneOfType([_propTypes2.default.string, _propTypes2.default.number])), autoFocus: _propTypes2.default.bool, searchAsYouType: _propTypes2.default.bool, onSubmit: _propTypes2.default.func, onReset: _propTypes2.default.func, onChange: _propTypes2.default.func, // For testing purposes __inputRef: _propTypes2.default.func }; SearchBox.defaultProps = { currentRefinement: '', focusShortcuts: ['s', '/'], autoFocus: false, searchAsYouType: true }; exports.default = (0, _translatable2.default)({ resetTitle: 'Clear the search query.', submitTitle: 'Submit your search query.', placeholder: 'Search here…' })(SearchBox); /***/ }), /* 348 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = Highlighter; var _propTypes = __webpack_require__(0); var _propTypes2 = _interopRequireDefault(_propTypes); var _react = __webpack_require__(4); var _react2 = _interopRequireDefault(_react); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } function Highlighter(_ref) { var hit = _ref.hit, attributeName = _ref.attributeName, highlight = _ref.highlight, highlightProperty = _ref.highlightProperty, tagName = _ref.tagName; var parsedHighlightedValue = highlight({ hit: hit, attributeName: attributeName, highlightProperty: highlightProperty }); var reactHighlighted = parsedHighlightedValue.map(function (v, i) { var key = 'split-' + i + '-' + v.value; if (!v.isHighlighted) { return _react2.default.createElement( 'span', { key: key, className: 'ais-Highlight__nonHighlighted' }, v.value ); } var HighlightedTag = tagName ? tagName : 'em'; return _react2.default.createElement( HighlightedTag, { key: key, className: 'ais-Highlight__highlighted' }, v.value ); }); return _react2.default.createElement( 'span', { className: 'ais-Highlight' }, reactHighlighted ); } Highlighter.propTypes = { hit: _propTypes2.default.object.isRequired, attributeName: _propTypes2.default.string.isRequired, highlight: _propTypes2.default.func.isRequired, highlightProperty: _propTypes2.default.string.isRequired, tagName: _propTypes2.default.string }; /***/ }), /* 349 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var _has2 = __webpack_require__(58); var _has3 = _interopRequireDefault(_has2); var _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }(); var _propTypes = __webpack_require__(0); var _propTypes2 = _interopRequireDefault(_propTypes); var _react = __webpack_require__(4); var _react2 = _interopRequireDefault(_react); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; } function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; } var Select = function (_Component) { _inherits(Select, _Component); function Select() { var _ref; var _temp, _this, _ret; _classCallCheck(this, Select); for (var _len = arguments.length, args = Array(_len), _key = 0; _key < _len; _key++) { args[_key] = arguments[_key]; } return _ret = (_temp = (_this = _possibleConstructorReturn(this, (_ref = Select.__proto__ || Object.getPrototypeOf(Select)).call.apply(_ref, [this].concat(args))), _this), _this.onChange = function (e) { _this.props.onSelect(e.target.value); }, _temp), _possibleConstructorReturn(_this, _ret); } _createClass(Select, [{ key: 'render', value: function render() { var _props = this.props, cx = _props.cx, items = _props.items, selectedItem = _props.selectedItem; return _react2.default.createElement( 'select', _extends({}, cx('root'), { value: selectedItem, onChange: this.onChange }), items.map(function (item) { return _react2.default.createElement( 'option', { key: (0, _has3.default)(item, 'key') ? item.key : item.value, disabled: item.disabled, value: item.value }, (0, _has3.default)(item, 'label') ? item.label : item.value ); }) ); } }]); return Select; }(_react.Component); Select.propTypes = { cx: _propTypes2.default.func.isRequired, onSelect: _propTypes2.default.func.isRequired, items: _propTypes2.default.arrayOf(_propTypes2.default.shape({ value: _propTypes2.default.oneOfType([_propTypes2.default.string, _propTypes2.default.number]).isRequired, key: _propTypes2.default.oneOfType([_propTypes2.default.string, _propTypes2.default.number]), label: _propTypes2.default.string, disabled: _propTypes2.default.bool })).isRequired, selectedItem: _propTypes2.default.oneOfType([_propTypes2.default.string, _propTypes2.default.number]).isRequired }; exports.default = Select; /***/ }), /* 350 */ /***/ (function(module, exports) { if (typeof Object.create === 'function') { // implementation from standard node.js 'util' module module.exports = function inherits(ctor, superCtor) { ctor.super_ = superCtor ctor.prototype = Object.create(superCtor.prototype, { constructor: { value: ctor, enumerable: false, writable: true, configurable: true } }); }; } else { // old school shim for old browsers module.exports = function inherits(ctor, superCtor) { ctor.super_ = superCtor var TempCtor = function () {} TempCtor.prototype = superCtor.prototype ctor.prototype = new TempCtor() ctor.prototype.constructor = ctor } } /***/ }), /* 351 */ /***/ (function(module, exports, __webpack_require__) { module.exports = buildSearchMethod; var errors = __webpack_require__(220); /** * Creates a search method to be used in clients * @param {string} queryParam the name of the attribute used for the query * @param {string} url the url * @return {function} the search method */ function buildSearchMethod(queryParam, url) { /** * The search method. Prepares the data and send the query to Algolia. * @param {string} query the string used for query search * @param {object} args additional parameters to send with the search * @param {function} [callback] the callback to be called with the client gets the answer * @return {undefined|Promise} If the callback is not provided then this methods returns a Promise */ return function search(query, args, callback) { // warn V2 users on how to search if (typeof query === 'function' && typeof args === 'object' || typeof callback === 'object') { // .search(query, params, cb) // .search(cb, params) throw new errors.AlgoliaSearchError('index.search usage is index.search(query, params, cb)'); } // Normalizing the function signature if (arguments.length === 0 || typeof query === 'function') { // Usage : .search(), .search(cb) callback = query; query = ''; } else if (arguments.length === 1 || typeof args === 'function') { // Usage : .search(query/args), .search(query, cb) callback = args; args = undefined; } // At this point we have 3 arguments with values // Usage : .search(args) // careful: typeof null === 'object' if (typeof query === 'object' && query !== null) { args = query; query = undefined; } else if (query === undefined || query === null) { // .search(undefined/null) query = ''; } var params = ''; if (query !== undefined) { params += queryParam + '=' + encodeURIComponent(query); } var additionalUA; if (args !== undefined) { if (args.additionalUA) { additionalUA = args.additionalUA; delete args.additionalUA; } // `_getSearchParams` will augment params, do not be fooled by the = versus += from previous if params = this.as._getSearchParams(args, params); } return this._search(params, url, callback, additionalUA); }; } /***/ }), /* 352 */, /* 353 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.Breadcrumb = exports.Panel = exports.Toggle = exports.Stats = exports.SortBy = exports.SearchBox = exports.ScrollTo = exports.ClearAll = exports.RefinementList = exports.StarRating = exports.RangeSlider = exports.RangeInput = exports.PoweredBy = exports.Pagination = exports.MultiRange = exports.Menu = exports.InfiniteHits = exports.HitsPerPage = exports.Hits = exports.Snippet = exports.Highlight = exports.HierarchicalMenu = exports.CurrentRefinements = exports.Configure = exports.Index = exports.InstantSearch = undefined; var _Configure = __webpack_require__(354); Object.defineProperty(exports, 'Configure', { enumerable: true, get: function get() { return _interopRequireDefault(_Configure).default; } }); var _CurrentRefinements = __webpack_require__(356); Object.defineProperty(exports, 'CurrentRefinements', { enumerable: true, get: function get() { return _interopRequireDefault(_CurrentRefinements).default; } }); var _HierarchicalMenu = __webpack_require__(360); Object.defineProperty(exports, 'HierarchicalMenu', { enumerable: true, get: function get() { return _interopRequireDefault(_HierarchicalMenu).default; } }); var _Highlight = __webpack_require__(329); Object.defineProperty(exports, 'Highlight', { enumerable: true, get: function get() { return _interopRequireDefault(_Highlight).default; } }); var _Snippet = __webpack_require__(363); Object.defineProperty(exports, 'Snippet', { enumerable: true, get: function get() { return _interopRequireDefault(_Snippet).default; } }); var _Hits = __webpack_require__(365); Object.defineProperty(exports, 'Hits', { enumerable: true, get: function get() { return _interopRequireDefault(_Hits).default; } }); var _HitsPerPage = __webpack_require__(367); Object.defineProperty(exports, 'HitsPerPage', { enumerable: true, get: function get() { return _interopRequireDefault(_HitsPerPage).default; } }); var _InfiniteHits = __webpack_require__(369); Object.defineProperty(exports, 'InfiniteHits', { enumerable: true, get: function get() { return _interopRequireDefault(_InfiniteHits).default; } }); var _Menu = __webpack_require__(371); Object.defineProperty(exports, 'Menu', { enumerable: true, get: function get() { return _interopRequireDefault(_Menu).default; } }); var _MultiRange = __webpack_require__(373); Object.defineProperty(exports, 'MultiRange', { enumerable: true, get: function get() { return _interopRequireDefault(_MultiRange).default; } }); var _Pagination = __webpack_require__(375); Object.defineProperty(exports, 'Pagination', { enumerable: true, get: function get() { return _interopRequireDefault(_Pagination).default; } }); var _PoweredBy = __webpack_require__(381); Object.defineProperty(exports, 'PoweredBy', { enumerable: true, get: function get() { return _interopRequireDefault(_PoweredBy).default; } }); var _RangeInput = __webpack_require__(383); Object.defineProperty(exports, 'RangeInput', { enumerable: true, get: function get() { return _interopRequireDefault(_RangeInput).default; } }); var _RangeSlider = __webpack_require__(385); Object.defineProperty(exports, 'RangeSlider', { enumerable: true, get: function get() { return _interopRequireDefault(_RangeSlider).default; } }); var _StarRating = __webpack_require__(386); Object.defineProperty(exports, 'StarRating', { enumerable: true, get: function get() { return _interopRequireDefault(_StarRating).default; } }); var _RefinementList = __webpack_require__(388); Object.defineProperty(exports, 'RefinementList', { enumerable: true, get: function get() { return _interopRequireDefault(_RefinementList).default; } }); var _ClearAll = __webpack_require__(390); Object.defineProperty(exports, 'ClearAll', { enumerable: true, get: function get() { return _interopRequireDefault(_ClearAll).default; } }); var _ScrollTo = __webpack_require__(392); Object.defineProperty(exports, 'ScrollTo', { enumerable: true, get: function get() { return _interopRequireDefault(_ScrollTo).default; } }); var _SearchBox = __webpack_require__(394); Object.defineProperty(exports, 'SearchBox', { enumerable: true, get: function get() { return _interopRequireDefault(_SearchBox).default; } }); var _SortBy = __webpack_require__(395); Object.defineProperty(exports, 'SortBy', { enumerable: true, get: function get() { return _interopRequireDefault(_SortBy).default; } }); var _Stats = __webpack_require__(397); Object.defineProperty(exports, 'Stats', { enumerable: true, get: function get() { return _interopRequireDefault(_Stats).default; } }); var _Toggle = __webpack_require__(399); Object.defineProperty(exports, 'Toggle', { enumerable: true, get: function get() { return _interopRequireDefault(_Toggle).default; } }); var _Panel = __webpack_require__(401); Object.defineProperty(exports, 'Panel', { enumerable: true, get: function get() { return _interopRequireDefault(_Panel).default; } }); var _Breadcrumb = __webpack_require__(403); Object.defineProperty(exports, 'Breadcrumb', { enumerable: true, get: function get() { return _interopRequireDefault(_Breadcrumb).default; } }); var _createInstantSearch = __webpack_require__(405); var _createInstantSearch2 = _interopRequireDefault(_createInstantSearch); var _createIndex = __webpack_require__(410); var _createIndex2 = _interopRequireDefault(_createIndex); var _lite = __webpack_require__(412); var _lite2 = _interopRequireDefault(_lite); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } var InstantSearch = (0, _createInstantSearch2.default)(_lite2.default, { Root: 'div', props: { className: 'ais-InstantSearch__root' } }); exports.InstantSearch = InstantSearch; var Index = (0, _createIndex2.default)({ Root: 'div', props: { className: 'ais-MultiIndex__root' } }); exports.Index = Index; /***/ }), /* 354 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var _connectConfigure = __webpack_require__(222); var _connectConfigure2 = _interopRequireDefault(_connectConfigure); var _Configure = __webpack_require__(355); var _Configure2 = _interopRequireDefault(_Configure); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } /** * Configure is a widget that lets you provide raw search parameters * to the Algolia API. * * Any of the props added to this widget will be forwarded to Algolia. For more information * on the different parameters that can be set, have a look at the * [reference](https://www.algolia.com/doc/api-client/javascript/search#search-parameters). * * This widget can be used either with react-dom and react-native. It will not render anything * on screen, only configure some parameters. * * Read more in the [Search parameters](guide/Search_parameters.html) guide. * @name Configure * @kind widget * @example * import React from 'react'; * * import { Configure, InstantSearch } from 'react-instantsearch/dom'; * * export default function App() { * return ( * <InstantSearch * appId="latency" * apiKey="6be0576ff61c053d5f9a3225e2a90f76" * indexName="ikea" * > * <Configure distinct={1} /> * </InstantSearch> * ); * } */ exports.default = (0, _connectConfigure2.default)(_Configure2.default); /***/ }), /* 355 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = function () { return null; }; /***/ }), /* 356 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var _connectCurrentRefinements = __webpack_require__(211); var _connectCurrentRefinements2 = _interopRequireDefault(_connectCurrentRefinements); var _CurrentRefinements = __webpack_require__(357); var _CurrentRefinements2 = _interopRequireDefault(_CurrentRefinements); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } /** * The CurrentRefinements widget displays the list of currently applied filters. * * It allows the user to selectively remove them. * @name CurrentRefinements * @kind widget * @propType {function} [transformItems] - Function to modify the items being displayed, e.g. for filtering or sorting them. Takes an items as parameter and expects it back in return. * @themeKey ais-CurrentRefinements__root - the root div of the widget * @themeKey ais-CurrentRefinements__items - the container of the filters * @themeKey ais-CurrentRefinements__item - a single filter * @themeKey ais-CurrentRefinements__itemLabel - the label of a filter * @themeKey ais-CurrentRefinements__itemClear - the trigger to remove the filter * @themeKey ais-CurrentRefinements__noRefinement - present when there is no refinement * @translationKey clearFilter - the remove filter button label * @example * import React from 'react'; * * import { CurrentRefinements, RefinementList, InstantSearch } from 'react-instantsearch/dom'; * * export default function App() { * return ( * <InstantSearch * appId="latency" * apiKey="6be0576ff61c053d5f9a3225e2a90f76" * indexName="ikea" * > * <CurrentRefinements /> * <RefinementList attributeName="colors" defaultRefinement={['Black']} /> * </InstantSearch> * ); * } */ exports.default = (0, _connectCurrentRefinements2.default)(_CurrentRefinements2.default); /***/ }), /* 357 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }(); var _propTypes = __webpack_require__(0); var _propTypes2 = _interopRequireDefault(_propTypes); var _react = __webpack_require__(4); var _react2 = _interopRequireDefault(_react); var _translatable = __webpack_require__(33); var _translatable2 = _interopRequireDefault(_translatable); var _classNames = __webpack_require__(14); var _classNames2 = _interopRequireDefault(_classNames); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; } function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; } var cx = (0, _classNames2.default)('CurrentRefinements'); var CurrentRefinements = function (_Component) { _inherits(CurrentRefinements, _Component); function CurrentRefinements() { _classCallCheck(this, CurrentRefinements); return _possibleConstructorReturn(this, (CurrentRefinements.__proto__ || Object.getPrototypeOf(CurrentRefinements)).apply(this, arguments)); } _createClass(CurrentRefinements, [{ key: 'componentWillMount', value: function componentWillMount() { if (this.context.canRefine) this.context.canRefine(this.props.canRefine); } }, { key: 'componentWillReceiveProps', value: function componentWillReceiveProps(props) { if (this.context.canRefine) this.context.canRefine(props.canRefine); } }, { key: 'render', value: function render() { var _props = this.props, translate = _props.translate, items = _props.items, refine = _props.refine, canRefine = _props.canRefine; return _react2.default.createElement( 'div', cx('root', !canRefine && 'noRefinement'), _react2.default.createElement( 'div', cx('items'), items.map(function (item) { return _react2.default.createElement( 'div', _extends({ key: item.label }, cx('item', item.items && 'itemParent')), _react2.default.createElement( 'span', cx('itemLabel'), item.label ), item.items ? item.items.map(function (nestedItem) { return _react2.default.createElement( 'div', _extends({ key: nestedItem.label }, cx('item')), _react2.default.createElement( 'span', cx('itemLabel'), nestedItem.label ), _react2.default.createElement( 'button', _extends({}, cx('itemClear'), { onClick: refine.bind(null, nestedItem.value) }), translate('clearFilter', nestedItem) ) ); }) : _react2.default.createElement( 'button', _extends({}, cx('itemClear'), { onClick: refine.bind(null, item.value) }), translate('clearFilter', item) ) ); }) ) ); } }]); return CurrentRefinements; }(_react.Component); CurrentRefinements.propTypes = { translate: _propTypes2.default.func.isRequired, items: _propTypes2.default.arrayOf(_propTypes2.default.shape({ label: _propTypes2.default.string })).isRequired, refine: _propTypes2.default.func.isRequired, canRefine: _propTypes2.default.bool.isRequired, transformItems: _propTypes2.default.func }; CurrentRefinements.contextTypes = { canRefine: _propTypes2.default.func }; exports.default = (0, _translatable2.default)({ clearFilter: '✕' })(CurrentRefinements); /***/ }), /* 358 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.withKeysPropType = exports.stateManagerPropType = exports.configManagerPropType = undefined; var _propTypes = __webpack_require__(0); var _propTypes2 = _interopRequireDefault(_propTypes); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } var configManagerPropType = exports.configManagerPropType = _propTypes2.default.shape({ register: _propTypes2.default.func.isRequired, swap: _propTypes2.default.func.isRequired, unregister: _propTypes2.default.func.isRequired }); var stateManagerPropType = exports.stateManagerPropType = _propTypes2.default.shape({ createURL: _propTypes2.default.func.isRequired, setState: _propTypes2.default.func.isRequired, getState: _propTypes2.default.func.isRequired, unlisten: _propTypes2.default.func.isRequired }); var withKeysPropType = exports.withKeysPropType = function withKeysPropType(keys) { return function (props, propName, componentName) { var prop = props[propName]; if (prop) { var _iteratorNormalCompletion = true; var _didIteratorError = false; var _iteratorError = undefined; try { for (var _iterator = Object.keys(prop)[Symbol.iterator](), _step; !(_iteratorNormalCompletion = (_step = _iterator.next()).done); _iteratorNormalCompletion = true) { var key = _step.value; if (keys.indexOf(key) === -1) { return new Error('Unknown `' + propName + '` key `' + key + '`. Check the render method ' + ('of `' + componentName + '`.')); } } } catch (err) { _didIteratorError = true; _iteratorError = err; } finally { try { if (!_iteratorNormalCompletion && _iterator.return) { _iterator.return(); } } finally { if (_didIteratorError) { throw _iteratorError; } } } } return undefined; }; }; /***/ }), /* 359 */ /***/ (function(module, exports, __webpack_require__) { var __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;/*! Copyright (c) 2016 Jed Watson. Licensed under the MIT License (MIT), see http://jedwatson.github.io/classnames */ /* global define */ (function () { 'use strict'; var hasOwn = {}.hasOwnProperty; function classNames () { var classes = []; for (var i = 0; i < arguments.length; i++) { var arg = arguments[i]; if (!arg) continue; var argType = typeof arg; if (argType === 'string' || argType === 'number') { classes.push(arg); } else if (Array.isArray(arg)) { classes.push(classNames.apply(null, arg)); } else if (argType === 'object') { for (var key in arg) { if (hasOwn.call(arg, key) && arg[key]) { classes.push(key); } } } } return classes.join(' '); } if (typeof module !== 'undefined' && module.exports) { module.exports = classNames; } else if (true) { // register as 'classnames', consistent with npm package name !(__WEBPACK_AMD_DEFINE_ARRAY__ = [], __WEBPACK_AMD_DEFINE_RESULT__ = function () { return classNames; }.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__), __WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__)); } else { window.classNames = classNames; } }()); /***/ }), /* 360 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var _connectHierarchicalMenu = __webpack_require__(248); var _connectHierarchicalMenu2 = _interopRequireDefault(_connectHierarchicalMenu); var _HierarchicalMenu = __webpack_require__(361); var _HierarchicalMenu2 = _interopRequireDefault(_HierarchicalMenu); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } /** * The hierarchical menu lets the user browse attributes using a tree-like structure. * * This is commonly used for multi-level categorization of products on e-commerce * websites. From a UX point of view, we suggest not displaying more than two levels deep. * * @name HierarchicalMenu * @kind widget * @requirements To use this widget, your attributes must be formatted in a specific way. * If you want for example to have a hiearchical menu of categories, objects in your index * should be formatted this way: * * ```json * { * "categories.lvl0": "products", * "categories.lvl1": "products > fruits", * "categories.lvl2": "products > fruits > citrus" * } * ``` * * It's also possible to provide more than one path for each level: * * ```json * { * "categories.lvl0": ["products", "goods"], * "categories.lvl1": ["products > fruits", "goods > to eat"] * } * ``` * * All attributes passed to the `attributes` prop must be present in "attributes for faceting" * on the Algolia dashboard or configured as `attributesForFaceting` via a set settings call to the Algolia API. * * @propType {string} attributes - List of attributes to use to generate the hierarchy of the menu. See the example for the convention to follow. * @propType {boolean} [showMore=false] - Flag to activate the show more button, for toggling the number of items between limitMin and limitMax. * @propType {number} [limitMin=10] - The maximum number of items displayed. * @propType {number} [limitMax=20] - The maximum number of items displayed when the user triggers the show more. Not considered if `showMore` is false. * @propType {string} [separator='>'] - Specifies the level separator used in the data. * @propType {string[]} [rootPath=null] - The already selected and hidden path. * @propType {boolean} [showParentLevel=true] - Flag to set if the parent level should be displayed. * @propType {string} [defaultRefinement] - the item value selected by default * @propType {function} [transformItems] - Function to modify the items being displayed, e.g. for filtering or sorting them. Takes an items as parameter and expects it back in return. * @themeKey ais-HierarchicalMenu__root - Container of the widget * @themeKey ais-HierarchicalMenu__items - Container of the items * @themeKey ais-HierarchicalMenu__item - Id for a single list item * @themeKey ais-HierarchicalMenu__itemSelected - Id for the selected items in the list * @themeKey ais-HierarchicalMenu__itemParent - Id for the elements that have a sub list displayed * @themeKey ais-HierarchicalMenu__itemSelectedParent - Id for parents that have currently a child selected * @themeKey ais-HierarchicalMenu__itemLink - the link containing the label and the count * @themeKey ais-HierarchicalMenu__itemLabel - the label of the entry * @themeKey ais-HierarchicalMenu__itemCount - the count of the entry * @themeKey ais-HierarchicalMenu__itemItems - id representing a children * @themeKey ais-HierarchicalMenu__showMore - container for the show more button * @themeKey ais-HierarchicalMenu__noRefinement - present when there is no refinement * @translationKey showMore - The label of the show more button. Accepts one parameter, a boolean that is true if the values are expanded * @example * import React from 'react'; * import { HierarchicalMenu, InstantSearch } from 'react-instantsearch/dom'; * * export default function App() { * return ( * <InstantSearch * appId="latency" * apiKey="6be0576ff61c053d5f9a3225e2a90f76" * indexName="ikea" * > * <HierarchicalMenu * id="categories" * key="categories" * attributes={[ * 'category', * 'sub_category', * 'sub_sub_category', * ]} * /> * </InstantSearch> * ); * } */ exports.default = (0, _connectHierarchicalMenu2.default)(_HierarchicalMenu2.default); /***/ }), /* 361 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var _pick2 = __webpack_require__(110); var _pick3 = _interopRequireDefault(_pick2); var _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }(); var _propTypes = __webpack_require__(0); var _propTypes2 = _interopRequireDefault(_propTypes); var _react = __webpack_require__(4); var _react2 = _interopRequireDefault(_react); var _translatable = __webpack_require__(33); var _translatable2 = _interopRequireDefault(_translatable); var _List = __webpack_require__(216); var _List2 = _interopRequireDefault(_List); var _Link = __webpack_require__(217); var _Link2 = _interopRequireDefault(_Link); var _classNames = __webpack_require__(14); var _classNames2 = _interopRequireDefault(_classNames); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; } function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; } var cx = (0, _classNames2.default)('HierarchicalMenu'); var itemsPropType = _propTypes2.default.arrayOf(_propTypes2.default.shape({ label: _propTypes2.default.string.isRequired, value: _propTypes2.default.string, count: _propTypes2.default.number.isRequired, items: function items() { return itemsPropType.apply(undefined, arguments); } })); var HierarchicalMenu = function (_Component) { _inherits(HierarchicalMenu, _Component); function HierarchicalMenu() { var _ref; var _temp, _this, _ret; _classCallCheck(this, HierarchicalMenu); for (var _len = arguments.length, args = Array(_len), _key = 0; _key < _len; _key++) { args[_key] = arguments[_key]; } return _ret = (_temp = (_this = _possibleConstructorReturn(this, (_ref = HierarchicalMenu.__proto__ || Object.getPrototypeOf(HierarchicalMenu)).call.apply(_ref, [this].concat(args))), _this), _this.renderItem = function (item) { var _this$props = _this.props, createURL = _this$props.createURL, refine = _this$props.refine; return _react2.default.createElement( _Link2.default, _extends({}, cx('itemLink'), { onClick: function onClick() { return refine(item.value); }, href: createURL(item.value) }), _react2.default.createElement( 'span', cx('itemLabel'), item.label ), ' ', _react2.default.createElement( 'span', cx('itemCount'), item.count ) ); }, _temp), _possibleConstructorReturn(_this, _ret); } _createClass(HierarchicalMenu, [{ key: 'componentWillMount', value: function componentWillMount() { if (this.context.canRefine) this.context.canRefine(this.props.canRefine); } }, { key: 'componentWillReceiveProps', value: function componentWillReceiveProps(props) { if (this.context.canRefine) this.context.canRefine(props.canRefine); } }, { key: 'render', value: function render() { return _react2.default.createElement(_List2.default, _extends({ renderItem: this.renderItem, cx: cx }, (0, _pick3.default)(this.props, ['translate', 'items', 'showMore', 'limitMin', 'limitMax', 'isEmpty', 'canRefine']))); } }]); return HierarchicalMenu; }(_react.Component); HierarchicalMenu.propTypes = { translate: _propTypes2.default.func.isRequired, refine: _propTypes2.default.func.isRequired, createURL: _propTypes2.default.func.isRequired, canRefine: _propTypes2.default.bool.isRequired, items: itemsPropType, showMore: _propTypes2.default.bool, limitMin: _propTypes2.default.number, limitMax: _propTypes2.default.number, transformItems: _propTypes2.default.func }; HierarchicalMenu.contextTypes = { canRefine: _propTypes2.default.func }; exports.default = (0, _translatable2.default)({ showMore: function showMore(extended) { return extended ? 'Show less' : 'Show more'; } })(HierarchicalMenu); /***/ }), /* 362 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; exports.default = Highlight; var _propTypes = __webpack_require__(0); var _propTypes2 = _interopRequireDefault(_propTypes); var _react = __webpack_require__(4); var _react2 = _interopRequireDefault(_react); var _Highlighter = __webpack_require__(348); var _Highlighter2 = _interopRequireDefault(_Highlighter); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } function Highlight(props) { return _react2.default.createElement(_Highlighter2.default, _extends({ highlightProperty: '_highlightResult' }, props)); } Highlight.propTypes = { hit: _propTypes2.default.object.isRequired, attributeName: _propTypes2.default.string.isRequired, highlight: _propTypes2.default.func.isRequired, tagName: _propTypes2.default.string }; /***/ }), /* 363 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var _connectHighlight = __webpack_require__(218); var _connectHighlight2 = _interopRequireDefault(_connectHighlight); var _Snippet = __webpack_require__(364); var _Snippet2 = _interopRequireDefault(_Snippet); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } /** * Renders any attribute from an hit into its highlighted snippet form when relevant. * * Read more about it in the [Highlighting results](guide/Highlighting_results.html) guide. * @name Snippet * @kind widget * @requirements To use this widget, the attribute name passed to the `attributeName` prop must be * present in "Attributes to snippet" on the Algolia dashboard or configured as `attributesToSnippet` * via a set settings call to the Algolia API. * @propType {string} attributeName - the location of the highlighted snippet attribute in the hit * @propType {object} hit - the hit object containing the highlighted snippet attribute * @propType {string} [tagName='em'] - the tag to be used for highlighted parts of the attribute * @example * import React from 'react'; * * import { connectHits, Snippet, InstantSearch } from 'react-instantsearch/dom'; * * const CustomHits = connectHits(({ hits }) => * <div> * {hits.map(hit => * <p key={hit.objectID}> * <Snippet attributeName="description" hit={hit} /> * </p> * )} * </div> * ); * * export default function App() { * return ( * <InstantSearch * appId="latency" * apiKey="6be0576ff61c053d5f9a3225e2a90f76" * indexName="ikea" * > * <CustomHits /> * </InstantSearch> * ); * } */ exports.default = (0, _connectHighlight2.default)(_Snippet2.default); /***/ }), /* 364 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; exports.default = Snippet; var _propTypes = __webpack_require__(0); var _propTypes2 = _interopRequireDefault(_propTypes); var _react = __webpack_require__(4); var _react2 = _interopRequireDefault(_react); var _Highlighter = __webpack_require__(348); var _Highlighter2 = _interopRequireDefault(_Highlighter); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } function Snippet(props) { return _react2.default.createElement(_Highlighter2.default, _extends({ highlightProperty: '_snippetResult' }, props)); } Snippet.propTypes = { hit: _propTypes2.default.object.isRequired, attributeName: _propTypes2.default.string.isRequired, highlight: _propTypes2.default.func.isRequired, tagName: _propTypes2.default.string }; /***/ }), /* 365 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var _connectHits = __webpack_require__(331); var _connectHits2 = _interopRequireDefault(_connectHits); var _Hits = __webpack_require__(366); var _Hits2 = _interopRequireDefault(_Hits); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } /** * Displays a list of hits. * * To configure the number of hits being shown, use the [HitsPerPage widget](widgets/HitsPerPage.html), * [connectHitsPerPage connector](connectors/connectHitsPerPage.html) or the [Configure widget](widgets/Configure.html). * * @name Hits * @kind widget * @propType {Component} [hitComponent] - Component used for rendering each hit from * the results. If it is not provided the rendering defaults to displaying the * hit in its JSON form. The component will be called with a `hit` prop. * @themeKey ais-Hits__root - the root of the component * @example * import React from 'react'; * import { Hits, InstantSearch } from 'react-instantsearch/dom'; * * export default function App() { * return ( * <InstantSearch * appId="latency" * apiKey="6be0576ff61c053d5f9a3225e2a90f76" * indexName="ikea" * > * <Hits /> * </InstantSearch> * ); * } */ exports.default = (0, _connectHits2.default)(_Hits2.default); /***/ }), /* 366 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }(); var _propTypes = __webpack_require__(0); var _propTypes2 = _interopRequireDefault(_propTypes); var _react = __webpack_require__(4); var _react2 = _interopRequireDefault(_react); var _classNames = __webpack_require__(14); var _classNames2 = _interopRequireDefault(_classNames); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; } function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; } var cx = (0, _classNames2.default)('Hits'); var Hits = function (_Component) { _inherits(Hits, _Component); function Hits() { _classCallCheck(this, Hits); return _possibleConstructorReturn(this, (Hits.__proto__ || Object.getPrototypeOf(Hits)).apply(this, arguments)); } _createClass(Hits, [{ key: 'render', value: function render() { var _props = this.props, ItemComponent = _props.hitComponent, hits = _props.hits; return _react2.default.createElement( 'div', cx('root'), hits.map(function (hit) { return _react2.default.createElement(ItemComponent, { key: hit.objectID, hit: hit }); }) ); } }]); return Hits; }(_react.Component); Hits.propTypes = { hits: _propTypes2.default.array, hitComponent: _propTypes2.default.func.isRequired }; /* eslint-disable react/display-name */ Hits.defaultProps = { hitComponent: function hitComponent(hit) { return _react2.default.createElement( 'div', { style: { borderBottom: '1px solid #bbb', paddingBottom: '5px', marginBottom: '5px' } }, JSON.stringify(hit).slice(0, 100), '...' ); } }; /* eslint-enable react/display-name */ exports.default = Hits; /***/ }), /* 367 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var _connectHitsPerPage = __webpack_require__(332); var _connectHitsPerPage2 = _interopRequireDefault(_connectHitsPerPage); var _HitsPerPage = __webpack_require__(368); var _HitsPerPage2 = _interopRequireDefault(_HitsPerPage); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } /** * The HitsPerPage widget displays a dropdown menu to let the user change the number * of displayed hits. * * If you only want to configure the number of hits per page without * displaying a widget, you should use the `<Configure hitsPerPage={20} />` widget. See [`<Configure /> documentation`](widgets/Configure.html) * * @name HitsPerPage * @kind widget * @propType {{value: number, label: string}[]} items - List of available options. * @propType {number} defaultRefinement - The number of items selected by default * @propType {function} [transformItems] - Function to modify the items being displayed, e.g. for filtering or sorting them. Takes an items as parameter and expects it back in return. * @themeKey ais-HitsPerPage__root - the root of the component. * @example * import React from 'react'; * import { HitsPerPage, InstantSearch } from 'react-instantsearch/dom'; * * export default function App() { * return ( * <InstantSearch * appId="latency" * apiKey="6be0576ff61c053d5f9a3225e2a90f76" * indexName="ikea" * > * <HitsPerPage * defaultRefinement={20} * items={[{value: 20, label: 'Show 20 hits'}, {value: 50, label: 'Show 50 hits'}]} * /> * </InstantSearch> * ); * } */ exports.default = (0, _connectHitsPerPage2.default)(_HitsPerPage2.default); /***/ }), /* 368 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }(); var _propTypes = __webpack_require__(0); var _propTypes2 = _interopRequireDefault(_propTypes); var _react = __webpack_require__(4); var _react2 = _interopRequireDefault(_react); var _Select = __webpack_require__(349); var _Select2 = _interopRequireDefault(_Select); var _classNames = __webpack_require__(14); var _classNames2 = _interopRequireDefault(_classNames); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; } function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; } var cx = (0, _classNames2.default)('HitsPerPage'); var HitsPerPage = function (_Component) { _inherits(HitsPerPage, _Component); function HitsPerPage() { _classCallCheck(this, HitsPerPage); return _possibleConstructorReturn(this, (HitsPerPage.__proto__ || Object.getPrototypeOf(HitsPerPage)).apply(this, arguments)); } _createClass(HitsPerPage, [{ key: 'render', value: function render() { var _props = this.props, currentRefinement = _props.currentRefinement, refine = _props.refine, items = _props.items; return _react2.default.createElement(_Select2.default, { onSelect: refine, selectedItem: currentRefinement, items: items, cx: cx }); } }]); return HitsPerPage; }(_react.Component); HitsPerPage.propTypes = { refine: _propTypes2.default.func.isRequired, currentRefinement: _propTypes2.default.number.isRequired, transformItems: _propTypes2.default.func, items: _propTypes2.default.arrayOf(_propTypes2.default.shape({ /** * Number of hits to display. */ value: _propTypes2.default.number.isRequired, /** * Label to display on the option. */ label: _propTypes2.default.string })) }; exports.default = HitsPerPage; /***/ }), /* 369 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var _connectInfiniteHits = __webpack_require__(333); var _connectInfiniteHits2 = _interopRequireDefault(_connectInfiniteHits); var _InfiniteHits = __webpack_require__(370); var _InfiniteHits2 = _interopRequireDefault(_InfiniteHits); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } /** * Displays an infinite list of hits along with a **load more** button. * * To configure the number of hits being shown, use the [HitsPerPage widget](widgets/HitsPerPage.html), * [connectHitsPerPage connector](connectors/connectHitsPerPage.html) or the [Configure widget](widgets/Configure.html). * * @name InfiniteHits * @kind widget * @propType {Component} hitComponent - Component used for rendering each hit from * the results. If it is not provided the rendering defaults to displaying the * hit in its JSON form. The component will be called with a `hit` prop. * @themeKey ais-InfiniteHits__root - the root of the component * @translationKey loadMore - the label of load more button * @example * import React from 'react'; * import { InfiniteHits, InstantSearch } from 'react-instantsearch/dom'; * * export default function App() { * return ( * <InstantSearch * appId="latency" * apiKey="6be0576ff61c053d5f9a3225e2a90f76" * indexName="ikea" * > * <InfiniteHits /> * </InstantSearch> * ); * } */ exports.default = (0, _connectInfiniteHits2.default)(_InfiniteHits2.default); /***/ }), /* 370 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }(); var _propTypes = __webpack_require__(0); var _propTypes2 = _interopRequireDefault(_propTypes); var _react = __webpack_require__(4); var _react2 = _interopRequireDefault(_react); var _classNames = __webpack_require__(14); var _classNames2 = _interopRequireDefault(_classNames); var _translatable = __webpack_require__(33); var _translatable2 = _interopRequireDefault(_translatable); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; } function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; } var cx = (0, _classNames2.default)('InfiniteHits'); var InfiniteHits = function (_Component) { _inherits(InfiniteHits, _Component); function InfiniteHits() { _classCallCheck(this, InfiniteHits); return _possibleConstructorReturn(this, (InfiniteHits.__proto__ || Object.getPrototypeOf(InfiniteHits)).apply(this, arguments)); } _createClass(InfiniteHits, [{ key: 'render', value: function render() { var _props = this.props, ItemComponent = _props.hitComponent, hits = _props.hits, hasMore = _props.hasMore, refine = _props.refine, translate = _props.translate; var renderedHits = hits.map(function (hit) { return _react2.default.createElement(ItemComponent, { key: hit.objectID, hit: hit }); }); var loadMoreButton = hasMore ? _react2.default.createElement( 'button', _extends({}, cx('loadMore'), { onClick: function onClick() { return refine(); } }), translate('loadMore') ) : _react2.default.createElement( 'button', _extends({}, cx('loadMore'), { disabled: true }), translate('loadMore') ); return _react2.default.createElement( 'div', cx('root'), renderedHits, loadMoreButton ); } }]); return InfiniteHits; }(_react.Component); InfiniteHits.propTypes = { hits: _propTypes2.default.array, hitComponent: _propTypes2.default.oneOfType([_propTypes2.default.string, _propTypes2.default.func]).isRequired, hasMore: _propTypes2.default.bool.isRequired, refine: _propTypes2.default.func.isRequired, translate: _propTypes2.default.func.isRequired }; /* eslint-disable react/display-name */ InfiniteHits.defaultProps = { hitComponent: function hitComponent(hit) { return _react2.default.createElement( 'div', { style: { borderBottom: '1px solid #bbb', paddingBottom: '5px', marginBottom: '5px' } }, JSON.stringify(hit).slice(0, 100), '...' ); } }; /* eslint-enable react/display-name */ exports.default = (0, _translatable2.default)({ loadMore: 'Load more' })(InfiniteHits); /***/ }), /* 371 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var _connectMenu = __webpack_require__(334); var _connectMenu2 = _interopRequireDefault(_connectMenu); var _Menu = __webpack_require__(372); var _Menu2 = _interopRequireDefault(_Menu); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } /** * The Menu component displays a menu that lets the user choose a single value for a specific attribute. * @name Menu * @kind widget * @requirements The attribute passed to the `attributeName` prop must be present in "attributes for faceting" * on the Algolia dashboard or configured as `attributesForFaceting` via a set settings call to the Algolia API. * @propType {string} attributeName - the name of the attribute in the record * @propType {boolean} [showMore=false] - true if the component should display a button that will expand the number of items * @propType {number} [limitMin=10] - the minimum number of diplayed items * @propType {number} [limitMax=20] - the maximun number of displayed items. Only used when showMore is set to `true` * @propType {string} [defaultRefinement] - the value of the item selected by default * @propType {function} [transformItems] - Function to modify the items being displayed, e.g. for filtering or sorting them. Takes an items as parameter and expects it back in return. * @propType {boolean} [withSearchBox=false] - true if the component should display an input to search for facet values * @themeKey ais-Menu__root - the root of the component * @themeKey ais-Menu__items - the container of all items in the menu * @themeKey ais-Menu__item - a single item * @themeKey ais-Menu__itemLinkSelected - the selected menu item * @themeKey ais-Menu__itemLink - the item link * @themeKey ais-Menu__itemLabelSelected - the selected item label * @themeKey ais-Menu__itemLabel - the item label * @themeKey ais-Menu__itemCount - the item count * @themeKey ais-Menu__itemCountSelected - the selected item count * @themeKey ais-Menu__noRefinement - present when there is no refinement * @themeKey ais-Menu__showMore - the button that let the user toggle more results * @themeKey ais-Menu__SearchBox - the container of the search for facet values searchbox. See [the SearchBox documentation](widgets/SearchBox.html#classnames) for the classnames and translation keys of the SearchBox. * @translationkey showMore - The label of the show more button. Accepts one parameters, a boolean that is true if the values are expanded * @translationkey noResults - The label of the no results text when no search for facet values results are found. * @example * import React from 'react'; * * import { Menu, InstantSearch } from 'react-instantsearch/dom'; * * export default function App() { * return ( * <InstantSearch * appId="latency" * apiKey="6be0576ff61c053d5f9a3225e2a90f76" * indexName="ikea" * > * <Menu * attributeName="category" * /> * </InstantSearch> * ); * } */ exports.default = (0, _connectMenu2.default)(_Menu2.default); /***/ }), /* 372 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var _pick2 = __webpack_require__(110); var _pick3 = _interopRequireDefault(_pick2); var _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }(); var _propTypes = __webpack_require__(0); var _propTypes2 = _interopRequireDefault(_propTypes); var _react = __webpack_require__(4); var _react2 = _interopRequireDefault(_react); var _translatable = __webpack_require__(33); var _translatable2 = _interopRequireDefault(_translatable); var _List = __webpack_require__(216); var _List2 = _interopRequireDefault(_List); var _Link = __webpack_require__(217); var _Link2 = _interopRequireDefault(_Link); var _Highlight = __webpack_require__(329); var _Highlight2 = _interopRequireDefault(_Highlight); var _classNames = __webpack_require__(14); var _classNames2 = _interopRequireDefault(_classNames); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; } function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; } var cx = (0, _classNames2.default)('Menu'); var Menu = function (_Component) { _inherits(Menu, _Component); function Menu() { var _ref; var _temp, _this, _ret; _classCallCheck(this, Menu); for (var _len = arguments.length, args = Array(_len), _key = 0; _key < _len; _key++) { args[_key] = arguments[_key]; } return _ret = (_temp = (_this = _possibleConstructorReturn(this, (_ref = Menu.__proto__ || Object.getPrototypeOf(Menu)).call.apply(_ref, [this].concat(args))), _this), _this.renderItem = function (item, resetQuery) { var createURL = _this.props.createURL; var label = _this.props.isFromSearch ? _react2.default.createElement(_Highlight2.default, { attributeName: 'label', hit: item }) : item.label; return _react2.default.createElement( _Link2.default, _extends({}, cx('itemLink', item.isRefined && 'itemLinkSelected'), { onClick: function onClick() { return _this.selectItem(item, resetQuery); }, href: createURL(item.value) }), _react2.default.createElement( 'span', cx('itemLabel', item.isRefined && 'itemLabelSelected'), label ), ' ', _react2.default.createElement( 'span', cx('itemCount', item.isRefined && 'itemCountSelected'), item.count ) ); }, _this.selectItem = function (item, resetQuery) { resetQuery(); _this.props.refine(item.value); }, _temp), _possibleConstructorReturn(_this, _ret); } _createClass(Menu, [{ key: 'componentWillMount', value: function componentWillMount() { if (this.context.canRefine) this.context.canRefine(this.props.canRefine); } }, { key: 'componentWillReceiveProps', value: function componentWillReceiveProps(props) { if (this.context.canRefine) this.context.canRefine(props.canRefine); } }, { key: 'render', value: function render() { return _react2.default.createElement(_List2.default, _extends({ renderItem: this.renderItem, selectItem: this.selectItem, cx: cx }, (0, _pick3.default)(this.props, ['translate', 'items', 'showMore', 'limitMin', 'limitMax', 'isFromSearch', 'searchForItems', 'withSearchBox', 'canRefine']))); } }]); return Menu; }(_react.Component); Menu.propTypes = { translate: _propTypes2.default.func.isRequired, refine: _propTypes2.default.func.isRequired, searchForItems: _propTypes2.default.func.isRequired, withSearchBox: _propTypes2.default.bool, createURL: _propTypes2.default.func.isRequired, items: _propTypes2.default.arrayOf(_propTypes2.default.shape({ label: _propTypes2.default.string.isRequired, value: _propTypes2.default.string.isRequired, count: _propTypes2.default.number.isRequired, isRefined: _propTypes2.default.bool.isRequired })), isFromSearch: _propTypes2.default.bool.isRequired, canRefine: _propTypes2.default.bool.isRequired, showMore: _propTypes2.default.bool, limitMin: _propTypes2.default.number, limitMax: _propTypes2.default.number, transformItems: _propTypes2.default.func }; Menu.contextTypes = { canRefine: _propTypes2.default.func }; exports.default = (0, _translatable2.default)({ showMore: function showMore(extended) { return extended ? 'Show less' : 'Show more'; }, noResults: 'No results', submit: null, reset: null, resetTitle: 'Clear the search query.', submitTitle: 'Submit your search query.', placeholder: 'Search here…' })(Menu); /***/ }), /* 373 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var _connectMultiRange = __webpack_require__(335); var _connectMultiRange2 = _interopRequireDefault(_connectMultiRange); var _MultiRange = __webpack_require__(374); var _MultiRange2 = _interopRequireDefault(_MultiRange); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } /** * MultiRange is a widget used for selecting the range value of a numeric attribute. * @name MultiRange * @kind widget * @requirements The attribute passed to the `attributeName` prop must be holding numerical values. * @propType {string} attributeName - the name of the attribute in the records * @propType {{label: string, start: number, end: number}[]} items - List of options. With a text label, and upper and lower bounds. * @propType {string} [defaultRefinement] - the value of the item selected by default, follow the format "min:max". * @propType {function} [transformItems] - Function to modify the items being displayed, e.g. for filtering or sorting them. Takes an items as parameter and expects it back in return. * @themeKey ais-MultiRange__root - The root component of the widget * @themeKey ais-MultiRange__items - The container of the items * @themeKey ais-MultiRange__item - A single item * @themeKey ais-MultiRange__itemSelected - The selected item * @themeKey ais-MultiRange__itemLabel - The label of an item * @themeKey ais-MultiRange__itemLabelSelected - The selected label item * @themeKey ais-MultiRange__itemRadio - The radio of an item * @themeKey ais-MultiRange__itemRadioSelected - The selected radio item * @themeKey ais-MultiRange__noRefinement - present when there is no refinement for all ranges * @themeKey ais-MultiRange__itemNoRefinement - present when there is no refinement for one range * @themeKey ais-MultiRange__itemAll - indicate the range that will contain all the results * @translationkey all - The label of the largest range added automatically by react instantsearch * @example * import React from 'react'; * * import { MultiRange, InstantSearch } from 'react-instantsearch/dom'; * * export default function App() { * return ( * <InstantSearch * appId="latency" * apiKey="6be0576ff61c053d5f9a3225e2a90f76" * indexName="ikea" * > * <MultiRange * attributeName="price" * items={[ * { end: 10, label: '<$10' }, * { start: 10, end: 100, label: '$10-$100' }, * { start: 100, end: 500, label: '$100-$500' }, * { start: 500, label: '>$500' }, * ]} * /> * </InstantSearch> * ); * } */ exports.default = (0, _connectMultiRange2.default)(_MultiRange2.default); /***/ }), /* 374 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }(); var _propTypes = __webpack_require__(0); var _propTypes2 = _interopRequireDefault(_propTypes); var _react = __webpack_require__(4); var _react2 = _interopRequireDefault(_react); var _List = __webpack_require__(216); var _List2 = _interopRequireDefault(_List); var _classNames = __webpack_require__(14); var _classNames2 = _interopRequireDefault(_classNames); var _translatable = __webpack_require__(33); var _translatable2 = _interopRequireDefault(_translatable); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; } function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; } var cx = (0, _classNames2.default)('MultiRange'); var MultiRange = function (_Component) { _inherits(MultiRange, _Component); function MultiRange() { var _ref; var _temp, _this, _ret; _classCallCheck(this, MultiRange); for (var _len = arguments.length, args = Array(_len), _key = 0; _key < _len; _key++) { args[_key] = arguments[_key]; } return _ret = (_temp = (_this = _possibleConstructorReturn(this, (_ref = MultiRange.__proto__ || Object.getPrototypeOf(MultiRange)).call.apply(_ref, [this].concat(args))), _this), _this.renderItem = function (item) { var _this$props = _this.props, refine = _this$props.refine, translate = _this$props.translate; var label = item.value === '' ? translate('all') : item.label; return _react2.default.createElement( 'label', cx(item.value === '' && 'itemAll'), _react2.default.createElement('input', _extends({}, cx('itemRadio', item.isRefined && 'itemRadioSelected'), { type: 'radio', checked: item.isRefined, disabled: item.noRefinement, onChange: refine.bind(null, item.value) })), _react2.default.createElement('span', cx('itemBox', 'itemBox', item.isRefined && 'itemBoxSelected')), _react2.default.createElement( 'span', cx('itemLabel', 'itemLabel', item.isRefined && 'itemLabelSelected'), label ) ); }, _temp), _possibleConstructorReturn(_this, _ret); } _createClass(MultiRange, [{ key: 'componentWillMount', value: function componentWillMount() { if (this.context.canRefine) this.context.canRefine(this.props.canRefine); } }, { key: 'componentWillReceiveProps', value: function componentWillReceiveProps(props) { if (this.context.canRefine) this.context.canRefine(props.canRefine); } }, { key: 'render', value: function render() { var _props = this.props, items = _props.items, canRefine = _props.canRefine; return _react2.default.createElement(_List2.default, { renderItem: this.renderItem, showMore: false, canRefine: canRefine, cx: cx, items: items.map(function (item) { return _extends({}, item, { key: item.value }); }) }); } }]); return MultiRange; }(_react.Component); MultiRange.propTypes = { items: _propTypes2.default.arrayOf(_propTypes2.default.shape({ label: _propTypes2.default.node.isRequired, value: _propTypes2.default.string.isRequired, isRefined: _propTypes2.default.bool.isRequired, noRefinement: _propTypes2.default.bool.isRequired })).isRequired, refine: _propTypes2.default.func.isRequired, transformItems: _propTypes2.default.func, canRefine: _propTypes2.default.bool.isRequired, translate: _propTypes2.default.func.isRequired }; MultiRange.contextTypes = { canRefine: _propTypes2.default.func }; exports.default = (0, _translatable2.default)({ all: 'All' })(MultiRange); /***/ }), /* 375 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var _connectPagination = __webpack_require__(336); var _connectPagination2 = _interopRequireDefault(_connectPagination); var _Pagination = __webpack_require__(376); var _Pagination2 = _interopRequireDefault(_Pagination); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } /** * The Pagination widget displays a simple pagination system allowing the user to * change the current page. * @name Pagination * @kind widget * @propType {boolean} [showFirst=true] - Display the first page link. * @propType {boolean} [showLast=false] - Display the last page link. * @propType {boolean} [showPrevious=true] - Display the previous page link. * @propType {boolean} [showNext=true] - Display the next page link. * @propType {number} [pagesPadding=3] - How many page links to display around the current page. * @propType {number} [maxPages=Infinity] - Maximum number of pages to display. * @themeKey ais-Pagination__root - The root component of the widget * @themeKey ais-Pagination__itemFirst - The first page link item * @themeKey ais-Pagination__itemPrevious - The previous page link item * @themeKey ais-Pagination__itemPage - The page link item * @themeKey ais-Pagination__itemNext - The next page link item * @themeKey ais-Pagination__itemLast - The last page link item * @themeKey ais-Pagination__itemDisabled - a disabled item * @themeKey ais-Pagination__itemSelected - a selected item * @themeKey ais-Pagination__itemLink - The link of an item * @themeKey ais-Pagination__noRefinement - present when there is no refinement * @translationKey previous - Label value for the previous page link * @translationKey next - Label value for the next page link * @translationKey first - Label value for the first page link * @translationKey last - Label value for the last page link * @translationkey page - Label value for a page item. You get function(currentRefinement) and you need to return a string * @translationKey ariaPrevious - Accessibility label value for the previous page link * @translationKey ariaNext - Accessibility label value for the next page link * @translationKey ariaFirst - Accessibility label value for the first page link * @translationKey ariaLast - Accessibility label value for the last page link * @translationkey ariaPage - Accessibility label value for a page item. You get function(currentRefinement) and you need to return a string * @example * import React from 'react'; * * import { Pagination, InstantSearch } from '../packages/react-instantsearch/dom'; * * export default function App() { * return ( * <InstantSearch * appId="latency" * apiKey="6be0576ff61c053d5f9a3225e2a90f76" * indexName="ikea" * > * <Pagination /> * </InstantSearch> * ); * } */ exports.default = (0, _connectPagination2.default)(_Pagination2.default); /***/ }), /* 376 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var _range2 = __webpack_require__(377); var _range3 = _interopRequireDefault(_range2); var _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }(); var _propTypes = __webpack_require__(0); var _propTypes2 = _interopRequireDefault(_propTypes); var _react = __webpack_require__(4); var _react2 = _interopRequireDefault(_react); var _utils = __webpack_require__(44); var _translatable = __webpack_require__(33); var _translatable2 = _interopRequireDefault(_translatable); var _LinkList = __webpack_require__(380); var _LinkList2 = _interopRequireDefault(_LinkList); var _classNames = __webpack_require__(14); var _classNames2 = _interopRequireDefault(_classNames); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } function _objectWithoutProperties(obj, keys) { var target = {}; for (var i in obj) { if (keys.indexOf(i) >= 0) continue; if (!Object.prototype.hasOwnProperty.call(obj, i)) continue; target[i] = obj[i]; } return target; } function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; } function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; } var cx = (0, _classNames2.default)('Pagination'); // Determines the size of the widget (the number of pages displayed - that the user can directly click on) function calculateSize(padding, maxPages) { return Math.min(2 * padding + 1, maxPages); } function calculatePaddingLeft(currentPage, padding, maxPages, size) { if (currentPage <= padding) { return currentPage; } if (currentPage >= maxPages - padding) { return size - (maxPages - currentPage); } return padding + 1; } // Retrieve the correct page range to populate the widget function getPages(currentPage, maxPages, padding) { var size = calculateSize(padding, maxPages); // If the widget size is equal to the max number of pages, return the entire page range if (size === maxPages) return (0, _range3.default)(1, maxPages + 1); var paddingLeft = calculatePaddingLeft(currentPage, padding, maxPages, size); var paddingRight = size - paddingLeft; var first = currentPage - paddingLeft; var last = currentPage + paddingRight; return (0, _range3.default)(first + 1, last + 1); } var Pagination = function (_Component) { _inherits(Pagination, _Component); function Pagination() { _classCallCheck(this, Pagination); return _possibleConstructorReturn(this, (Pagination.__proto__ || Object.getPrototypeOf(Pagination)).apply(this, arguments)); } _createClass(Pagination, [{ key: 'componentWillMount', value: function componentWillMount() { if (this.context.canRefine) this.context.canRefine(this.props.canRefine); } }, { key: 'componentWillReceiveProps', value: function componentWillReceiveProps(props) { if (this.context.canRefine) this.context.canRefine(props.canRefine); } }, { key: 'getItem', value: function getItem(modifier, translationKey, value) { var _props = this.props, nbPages = _props.nbPages, maxPages = _props.maxPages, translate = _props.translate; return { key: modifier + '.' + value, modifier: modifier, disabled: value < 1 || value >= Math.min(maxPages, nbPages), label: translate(translationKey, value), value: value, ariaLabel: translate('aria' + (0, _utils.capitalize)(translationKey), value) }; } }, { key: 'render', value: function render() { var _props2 = this.props, nbPages = _props2.nbPages, maxPages = _props2.maxPages, currentRefinement = _props2.currentRefinement, pagesPadding = _props2.pagesPadding, showFirst = _props2.showFirst, showPrevious = _props2.showPrevious, showNext = _props2.showNext, showLast = _props2.showLast, refine = _props2.refine, createURL = _props2.createURL, translate = _props2.translate, ListComponent = _props2.listComponent, otherProps = _objectWithoutProperties(_props2, ['nbPages', 'maxPages', 'currentRefinement', 'pagesPadding', 'showFirst', 'showPrevious', 'showNext', 'showLast', 'refine', 'createURL', 'translate', 'listComponent']); var totalPages = Math.min(nbPages, maxPages); var lastPage = totalPages; var items = []; if (showFirst) { items.push({ key: 'first', modifier: 'itemFirst', disabled: currentRefinement === 1, label: translate('first'), value: 1, ariaLabel: translate('ariaFirst') }); } if (showPrevious) { items.push({ key: 'previous', modifier: 'itemPrevious', disabled: currentRefinement === 1, label: translate('previous'), value: currentRefinement - 1, ariaLabel: translate('ariaPrevious') }); } items = items.concat(getPages(currentRefinement, totalPages, pagesPadding).map(function (value) { return { key: value, modifier: 'itemPage', label: translate('page', value), value: value, selected: value === currentRefinement, ariaLabel: translate('ariaPage', value) }; })); if (showNext) { items.push({ key: 'next', modifier: 'itemNext', disabled: currentRefinement === lastPage || lastPage <= 1, label: translate('next'), value: currentRefinement + 1, ariaLabel: translate('ariaNext') }); } if (showLast) { items.push({ key: 'last', modifier: 'itemLast', disabled: currentRefinement === lastPage || lastPage <= 1, label: translate('last'), value: lastPage, ariaLabel: translate('ariaLast') }); } return _react2.default.createElement(ListComponent, _extends({}, otherProps, { cx: cx, items: items, onSelect: refine, createURL: createURL })); } }]); return Pagination; }(_react.Component); Pagination.propTypes = { nbPages: _propTypes2.default.number.isRequired, currentRefinement: _propTypes2.default.number.isRequired, refine: _propTypes2.default.func.isRequired, createURL: _propTypes2.default.func.isRequired, canRefine: _propTypes2.default.bool.isRequired, translate: _propTypes2.default.func.isRequired, listComponent: _propTypes2.default.func, showFirst: _propTypes2.default.bool, showPrevious: _propTypes2.default.bool, showNext: _propTypes2.default.bool, showLast: _propTypes2.default.bool, pagesPadding: _propTypes2.default.number, maxPages: _propTypes2.default.number }; Pagination.defaultProps = { listComponent: _LinkList2.default, showFirst: true, showPrevious: true, showNext: true, showLast: false, pagesPadding: 3, maxPages: Infinity }; Pagination.contextTypes = { canRefine: _propTypes2.default.func }; exports.default = (0, _translatable2.default)({ previous: '‹', next: '›', first: '«', last: '»', page: function page(currentRefinement) { return currentRefinement.toString(); }, ariaPrevious: 'Previous page', ariaNext: 'Next page', ariaFirst: 'First page', ariaLast: 'Last page', ariaPage: function ariaPage(currentRefinement) { return 'Page ' + currentRefinement.toString(); } })(Pagination); /***/ }), /* 377 */ /***/ (function(module, exports, __webpack_require__) { var createRange = __webpack_require__(378); /** * Creates an array of numbers (positive and/or negative) progressing from * `start` up to, but not including, `end`. A step of `-1` is used if a negative * `start` is specified without an `end` or `step`. If `end` is not specified, * it's set to `start` with `start` then set to `0`. * * **Note:** JavaScript follows the IEEE-754 standard for resolving * floating-point values which can produce unexpected results. * * @static * @since 0.1.0 * @memberOf _ * @category Util * @param {number} [start=0] The start of the range. * @param {number} end The end of the range. * @param {number} [step=1] The value to increment or decrement by. * @returns {Array} Returns the range of numbers. * @see _.inRange, _.rangeRight * @example * * _.range(4); * // => [0, 1, 2, 3] * * _.range(-4); * // => [0, -1, -2, -3] * * _.range(1, 5); * // => [1, 2, 3, 4] * * _.range(0, 20, 5); * // => [0, 5, 10, 15] * * _.range(0, -4, -1); * // => [0, -1, -2, -3] * * _.range(1, 4, 0); * // => [1, 1, 1] * * _.range(0); * // => [] */ var range = createRange(); module.exports = range; /***/ }), /* 378 */ /***/ (function(module, exports, __webpack_require__) { var baseRange = __webpack_require__(379), isIterateeCall = __webpack_require__(215), toFinite = __webpack_require__(213); /** * Creates a `_.range` or `_.rangeRight` function. * * @private * @param {boolean} [fromRight] Specify iterating from right to left. * @returns {Function} Returns the new range function. */ function createRange(fromRight) { return function(start, end, step) { if (step && typeof step != 'number' && isIterateeCall(start, end, step)) { end = step = undefined; } // Ensure the sign of `-0` is preserved. start = toFinite(start); if (end === undefined) { end = start; start = 0; } else { end = toFinite(end); } step = step === undefined ? (start < end ? 1 : -1) : toFinite(step); return baseRange(start, end, step, fromRight); }; } module.exports = createRange; /***/ }), /* 379 */ /***/ (function(module, exports) { /* Built-in method references for those with the same name as other `lodash` methods. */ var nativeCeil = Math.ceil, nativeMax = Math.max; /** * The base implementation of `_.range` and `_.rangeRight` which doesn't * coerce arguments. * * @private * @param {number} start The start of the range. * @param {number} end The end of the range. * @param {number} step The value to increment or decrement by. * @param {boolean} [fromRight] Specify iterating from right to left. * @returns {Array} Returns the range of numbers. */ function baseRange(start, end, step, fromRight) { var index = -1, length = nativeMax(nativeCeil((end - start) / (step || 1)), 0), result = Array(length); while (length--) { result[fromRight ? length : ++index] = start; start += step; } return result; } module.exports = baseRange; /***/ }), /* 380 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var _has2 = __webpack_require__(58); var _has3 = _interopRequireDefault(_has2); var _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }(); var _propTypes = __webpack_require__(0); var _propTypes2 = _interopRequireDefault(_propTypes); var _react = __webpack_require__(4); var _react2 = _interopRequireDefault(_react); var _Link = __webpack_require__(217); var _Link2 = _interopRequireDefault(_Link); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; } function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; } var LinkList = function (_Component) { _inherits(LinkList, _Component); function LinkList() { _classCallCheck(this, LinkList); return _possibleConstructorReturn(this, (LinkList.__proto__ || Object.getPrototypeOf(LinkList)).apply(this, arguments)); } _createClass(LinkList, [{ key: 'render', value: function render() { var _props = this.props, cx = _props.cx, createURL = _props.createURL, items = _props.items, onSelect = _props.onSelect, canRefine = _props.canRefine; return _react2.default.createElement( 'ul', cx('root', !canRefine && 'noRefinement'), items.map(function (item) { return _react2.default.createElement( 'li', _extends({ key: (0, _has3.default)(item, 'key') ? item.key : item.value }, cx('item', item.selected && !item.disabled && 'itemSelected', item.disabled && 'itemDisabled', item.modifier), { disabled: item.disabled }), item.disabled ? _react2.default.createElement( 'span', cx('itemLink', 'itemLinkDisabled'), (0, _has3.default)(item, 'label') ? item.label : item.value ) : _react2.default.createElement( _Link2.default, _extends({}, cx('itemLink', item.selected && 'itemLinkSelected'), { 'aria-label': item.ariaLabel, href: createURL(item.value), onClick: onSelect.bind(null, item.value) }), (0, _has3.default)(item, 'label') ? item.label : item.value ) ); }) ); } }]); return LinkList; }(_react.Component); LinkList.propTypes = { cx: _propTypes2.default.func.isRequired, createURL: _propTypes2.default.func.isRequired, items: _propTypes2.default.arrayOf(_propTypes2.default.shape({ value: _propTypes2.default.oneOfType([_propTypes2.default.string, _propTypes2.default.number, _propTypes2.default.object]).isRequired, key: _propTypes2.default.oneOfType([_propTypes2.default.string, _propTypes2.default.number]), label: _propTypes2.default.node, modifier: _propTypes2.default.string, ariaLabel: _propTypes2.default.string, disabled: _propTypes2.default.bool })), onSelect: _propTypes2.default.func.isRequired, canRefine: _propTypes2.default.bool.isRequired }; exports.default = LinkList; /***/ }), /* 381 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var _connectPoweredBy = __webpack_require__(337); var _connectPoweredBy2 = _interopRequireDefault(_connectPoweredBy); var _PoweredBy = __webpack_require__(382); var _PoweredBy2 = _interopRequireDefault(_PoweredBy); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } /** * PoweredBy displays an Algolia logo. * * Algolia requires that you use this widget if you are on a [community or free plan](https://www.algolia.com/pricing). * @name PoweredBy * @kind widget * @themeKey ais-PoweredBy__root - The root component of the widget * @themeKey ais-PoweredBy__searchBy - The powered by label * @themeKey ais-PoweredBy__algoliaLink - The algolia logo link * @translationKey searchBy - Label value for the powered by * @example * import React from 'react'; * * import { PoweredBy, InstantSearch } from 'react-instantsearch/dom'; * * export default function App() { * return ( * <InstantSearch * appId="latency" * apiKey="6be0576ff61c053d5f9a3225e2a90f76" * indexName="ikea" * > * <PoweredBy /> * </InstantSearch> * ); * } */ exports.default = (0, _connectPoweredBy2.default)(_PoweredBy2.default); /***/ }), /* 382 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }(); var _propTypes = __webpack_require__(0); var _propTypes2 = _interopRequireDefault(_propTypes); var _react = __webpack_require__(4); var _react2 = _interopRequireDefault(_react); var _translatable = __webpack_require__(33); var _translatable2 = _interopRequireDefault(_translatable); var _classNames = __webpack_require__(14); var _classNames2 = _interopRequireDefault(_classNames); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; } function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; } var cx = (0, _classNames2.default)('PoweredBy'); /* eslint-disable max-len */ var AlgoliaLogo = function AlgoliaLogo() { return _react2.default.createElement( 'svg', { xmlns: 'http://www.w3.org/2000/svg', baseProfile: 'basic', viewBox: '0 0 1366 362' }, _react2.default.createElement( 'linearGradient', { id: 'g', x1: '428.258', x2: '434.145', y1: '404.15', y2: '409.85', gradientUnits: 'userSpaceOnUse', gradientTransform: 'matrix(94.045 0 0 -94.072 -40381.527 38479.52)' }, _react2.default.createElement('stop', { offset: '0', stopColor: '#00AEFF' }), _react2.default.createElement('stop', { offset: '1', stopColor: '#3369E7' }) ), _react2.default.createElement('path', { d: 'M61.8 15.4h242.8c23.9 0 43.4 19.4 43.4 43.4v242.9c0 23.9-19.4 43.4-43.4 43.4H61.8c-23.9 0-43.4-19.4-43.4-43.4v-243c0-23.9 19.4-43.3 43.4-43.3z', fill: 'url(#g)' }), _react2.default.createElement('path', { d: 'M187 98.7c-51.4 0-93.1 41.7-93.1 93.2S135.6 285 187 285s93.1-41.7 93.1-93.2-41.6-93.1-93.1-93.1zm0 158.8c-36.2 0-65.6-29.4-65.6-65.6s29.4-65.6 65.6-65.6 65.6 29.4 65.6 65.6-29.3 65.6-65.6 65.6zm0-117.8v48.9c0 1.4 1.5 2.4 2.8 1.7l43.4-22.5c1-.5 1.3-1.7.8-2.7-9-15.8-25.7-26.6-45-27.3-1 0-2 .8-2 1.9zm-60.8-35.9l-5.7-5.7c-5.6-5.6-14.6-5.6-20.2 0l-6.8 6.8c-5.6 5.6-5.6 14.6 0 20.2l5.6 5.6c.9.9 2.2.7 3-.2 3.3-4.5 6.9-8.8 10.9-12.8 4.1-4.1 8.3-7.7 12.9-11 1-.6 1.1-2 .3-2.9zM217.5 89V77.7c0-7.9-6.4-14.3-14.3-14.3h-33.3c-7.9 0-14.3 6.4-14.3 14.3v11.6c0 1.3 1.2 2.2 2.5 1.9 9.3-2.7 19.1-4.1 29-4.1 9.5 0 18.9 1.3 28 3.8 1.2.3 2.4-.6 2.4-1.9z', fill: '#FFFFFF' }), _react2.default.createElement('path', { d: 'M842.5 267.6c0 26.7-6.8 46.2-20.5 58.6-13.7 12.4-34.6 18.6-62.8 18.6-10.3 0-31.7-2-48.8-5.8l6.3-31c14.3 3 33.2 3.8 43.1 3.8 15.7 0 26.9-3.2 33.6-9.6s10-15.9 10-28.5v-6.4c-3.9 1.9-9 3.8-15.3 5.8-6.3 1.9-13.6 2.9-21.8 2.9-10.8 0-20.6-1.7-29.5-5.1-8.9-3.4-16.6-8.4-22.9-15-6.3-6.6-11.3-14.9-14.8-24.8s-5.3-27.6-5.3-40.6c0-12.2 1.9-27.5 5.6-37.7 3.8-10.2 9.2-19 16.5-26.3 7.2-7.3 16-12.9 26.3-17s22.4-6.7 35.5-6.7c12.7 0 24.4 1.6 35.8 3.5 11.4 1.9 21.1 3.9 29 6.1v155.2zm-108.7-77.2c0 16.4 3.6 34.6 10.8 42.2 7.2 7.6 16.5 11.4 27.9 11.4 6.2 0 12.1-.9 17.6-2.6 5.5-1.7 9.9-3.7 13.4-6.1v-97.1c-2.8-.6-14.5-3-25.8-3.3-14.2-.4-25 5.4-32.6 14.7-7.5 9.3-11.3 25.6-11.3 40.8zm294.3 0c0 13.2-1.9 23.2-5.8 34.1s-9.4 20.2-16.5 27.9c-7.1 7.7-15.6 13.7-25.6 17.9s-25.4 6.6-33.1 6.6c-7.7-.1-23-2.3-32.9-6.6-9.9-4.3-18.4-10.2-25.5-17.9-7.1-7.7-12.6-17-16.6-27.9s-6-20.9-6-34.1c0-13.2 1.8-25.9 5.8-36.7 4-10.8 9.6-20 16.8-27.7s15.8-13.6 25.6-17.8c9.9-4.2 20.8-6.2 32.6-6.2s22.7 2.1 32.7 6.2c10 4.2 18.6 10.1 25.6 17.8 7.1 7.7 12.6 16.9 16.6 27.7 4.2 10.8 6.3 23.5 6.3 36.7zm-40 .1c0-16.9-3.7-31-10.9-40.8-7.2-9.9-17.3-14.8-30.2-14.8-12.9 0-23 4.9-30.2 14.8-7.2 9.9-10.7 23.9-10.7 40.8 0 17.1 3.6 28.6 10.8 38.5 7.2 10 17.3 14.9 30.2 14.9 12.9 0 23-5 30.2-14.9 7.2-10 10.8-21.4 10.8-38.5zm127.1 86.4c-64.1.3-64.1-51.8-64.1-60.1L1051 32l39.1-6.2v183.6c0 4.7 0 34.5 25.1 34.6v32.9zm68.9 0h-39.3V108.1l39.3-6.2v175zm-19.7-193.5c13.1 0 23.8-10.6 23.8-23.7S1177.6 36 1164.4 36s-23.8 10.6-23.8 23.7 10.7 23.7 23.8 23.7zm117.4 18.6c12.9 0 23.8 1.6 32.6 4.8 8.8 3.2 15.9 7.7 21.1 13.4s8.9 13.5 11.1 21.7c2.3 8.2 3.4 17.2 3.4 27.1v100.6c-6 1.3-15.1 2.8-27.3 4.6s-25.9 2.7-41.1 2.7c-10.1 0-19.4-1-27.7-2.9-8.4-1.9-15.5-5-21.5-9.3-5.9-4.3-10.5-9.8-13.9-16.6-3.3-6.8-5-16.4-5-26.4 0-9.6 1.9-15.7 5.6-22.3 3.8-6.6 8.9-12 15.3-16.2 6.5-4.2 13.9-7.2 22.4-9s17.4-2.7 26.6-2.7c4.3 0 8.8.3 13.6.8s9.8 1.4 15.2 2.7v-6.4c0-4.5-.5-8.8-1.6-12.8-1.1-4.1-3-7.6-5.6-10.7-2.7-3.1-6.2-5.5-10.6-7.2s-10-3-16.7-3c-9 0-17.2 1.1-24.7 2.4-7.5 1.3-13.7 2.8-18.4 4.5l-4.7-32.1c4.9-1.7 12.2-3.4 21.6-5.1s19.5-2.6 30.3-2.6zm3.3 141.9c12 0 20.9-.7 27.1-1.9v-39.8c-2.2-.6-5.3-1.3-9.4-1.9-4.1-.6-8.6-1-13.6-1-4.3 0-8.7.3-13.1 1-4.4.6-8.4 1.8-11.9 3.5s-6.4 4.1-8.5 7.2c-2.2 3.1-3.2 4.9-3.2 9.6 0 9.2 3.2 14.5 9 18 5.9 3.6 13.7 5.3 23.6 5.3zM512.9 103c12.9 0 23.8 1.6 32.6 4.8 8.8 3.2 15.9 7.7 21.1 13.4 5.3 5.8 8.9 13.5 11.1 21.7 2.3 8.2 3.4 17.2 3.4 27.1v100.6c-6 1.3-15.1 2.8-27.3 4.6-12.2 1.8-25.9 2.7-41.1 2.7-10.1 0-19.4-1-27.7-2.9-8.4-1.9-15.5-5-21.5-9.3-5.9-4.3-10.5-9.8-13.9-16.6-3.3-6.8-5-16.4-5-26.4 0-9.6 1.9-15.7 5.6-22.3 3.8-6.6 8.9-12 15.3-16.2 6.5-4.2 13.9-7.2 22.4-9s17.4-2.7 26.6-2.7c4.3 0 8.8.3 13.6.8 4.7.5 9.8 1.4 15.2 2.7v-6.4c0-4.5-.5-8.8-1.6-12.8-1.1-4.1-3-7.6-5.6-10.7-2.7-3.1-6.2-5.5-10.6-7.2-4.4-1.7-10-3-16.7-3-9 0-17.2 1.1-24.7 2.4-7.5 1.3-13.7 2.8-18.4 4.5l-4.7-32.1c4.9-1.7 12.2-3.4 21.6-5.1 9.4-1.8 19.5-2.6 30.3-2.6zm3.4 142c12 0 20.9-.7 27.1-1.9v-39.8c-2.2-.6-5.3-1.3-9.4-1.9-4.1-.6-8.6-1-13.6-1-4.3 0-8.7.3-13.1 1-4.4.6-8.4 1.8-11.9 3.5s-6.4 4.1-8.5 7.2c-2.2 3.1-3.2 4.9-3.2 9.6 0 9.2 3.2 14.5 9 18s13.7 5.3 23.6 5.3zm158.5 31.9c-64.1.3-64.1-51.8-64.1-60.1L610.6 32l39.1-6.2v183.6c0 4.7 0 34.5 25.1 34.6v32.9z', fill: '#182359' }) ); }; /* eslint-enable max-len */ var PoweredBy = function (_Component) { _inherits(PoweredBy, _Component); function PoweredBy() { _classCallCheck(this, PoweredBy); return _possibleConstructorReturn(this, (PoweredBy.__proto__ || Object.getPrototypeOf(PoweredBy)).apply(this, arguments)); } _createClass(PoweredBy, [{ key: 'render', value: function render() { var _props = this.props, translate = _props.translate, url = _props.url; return _react2.default.createElement( 'div', cx('root'), _react2.default.createElement( 'span', cx('searchBy'), translate('searchBy'), ' ' ), _react2.default.createElement( 'a', _extends({ href: url, target: '_blank' }, cx('algoliaLink'), { 'aria-label': 'Algolia' }), _react2.default.createElement(AlgoliaLogo, null) ) ); } }]); return PoweredBy; }(_react.Component); PoweredBy.propTypes = { url: _propTypes2.default.string.isRequired, translate: _propTypes2.default.func.isRequired }; exports.default = (0, _translatable2.default)({ searchBy: 'Search by' })(PoweredBy); /***/ }), /* 383 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var _connectRange = __webpack_require__(209); var _connectRange2 = _interopRequireDefault(_connectRange); var _RangeInput = __webpack_require__(384); var _RangeInput2 = _interopRequireDefault(_RangeInput); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } /** * RangeInput allows a user to select a numeric range using a minimum and maximum input. * @name RangeInput * @kind widget * @requirements The attribute passed to the `attributeName` prop must be holding numerical values. * @propType {string} attributeName - the name of the attribute in the record * @propType {{min: number, max: number}} [defaultRefinement] - Default state of the widget containing the start and the end of the range. * @propType {number} [min] - Minimum value. When this isn't set, the minimum value will be automatically computed by Algolia using the data in the index. * @propType {number} [max] - Maximum value. When this isn't set, the maximum value will be automatically computed by Algolia using the data in the index. * @themeKey ais-RangeInput__root - The root component of the widget * @themeKey ais-RangeInput__labelMin - The label for the min input * @themeKey ais-RangeInput__inputMin - The min input * @themeKey ais-RangeInput__separator - The separator between input * @themeKey ais-RangeInput__labelMax - The label for the max input * @themeKey ais-RangeInput__inputMax - The max input * @themeKey ais-RangeInput__submit - The submit button * @themeKey ais-RangeInput__noRefinement - present when there is no refinement * @translationKey submit - Label value for the submit button * @translationKey separator - Label value for the input separator * @example * import React from 'react'; * * import { RangeInput, InstantSearch } from 'react-instantsearch/dom'; * * export default function App() { * return ( * <InstantSearch * appId="latency" * apiKey="6be0576ff61c053d5f9a3225e2a90f76" * indexName="ikea" * > * <RangeInput attributeName="price"/> * </InstantSearch> * ); * } */ exports.default = (0, _connectRange2.default)(_RangeInput2.default); /***/ }), /* 384 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var _isNaN2 = __webpack_require__(214); var _isNaN3 = _interopRequireDefault(_isNaN2); var _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }(); var _propTypes = __webpack_require__(0); var _propTypes2 = _interopRequireDefault(_propTypes); var _react = __webpack_require__(4); var _react2 = _interopRequireDefault(_react); var _translatable = __webpack_require__(33); var _translatable2 = _interopRequireDefault(_translatable); var _classNames = __webpack_require__(14); var _classNames2 = _interopRequireDefault(_classNames); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; } function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; } var cx = (0, _classNames2.default)('RangeInput'); var RangeInput = function (_Component) { _inherits(RangeInput, _Component); function RangeInput(props) { _classCallCheck(this, RangeInput); var _this = _possibleConstructorReturn(this, (RangeInput.__proto__ || Object.getPrototypeOf(RangeInput)).call(this, props)); _this.onSubmit = function (e) { e.preventDefault(); e.stopPropagation(); if (!(0, _isNaN3.default)(parseFloat(_this.state.from, 10)) && !(0, _isNaN3.default)(parseFloat(_this.state.to, 10))) { _this.props.refine({ min: _this.state.from, max: _this.state.to }); } }; _this.state = _this.props.canRefine ? { from: props.currentRefinement.min, to: props.currentRefinement.max } : { from: '', to: '' }; return _this; } _createClass(RangeInput, [{ key: 'componentWillMount', value: function componentWillMount() { if (this.context.canRefine) this.context.canRefine(this.props.canRefine); } }, { key: 'componentWillReceiveProps', value: function componentWillReceiveProps(nextProps) { if (nextProps.canRefine) { this.setState({ from: nextProps.currentRefinement.min, to: nextProps.currentRefinement.max }); } if (this.context.canRefine) this.context.canRefine(nextProps.canRefine); } }, { key: 'render', value: function render() { var _this2 = this; var _props = this.props, translate = _props.translate, canRefine = _props.canRefine; return _react2.default.createElement( 'form', _extends({}, cx('root', !canRefine && 'noRefinement'), { onSubmit: this.onSubmit }), _react2.default.createElement( 'fieldset', _extends({ disabled: !canRefine }, cx('fieldset')), _react2.default.createElement( 'label', cx('labelMin'), _react2.default.createElement('input', _extends({}, cx('inputMin'), { type: 'number', value: this.state.from, onChange: function onChange(e) { return _this2.setState({ from: e.target.value }); } })) ), _react2.default.createElement( 'span', cx('separator'), translate('separator') ), _react2.default.createElement( 'label', cx('labelMax'), _react2.default.createElement('input', _extends({}, cx('inputMax'), { type: 'number', value: this.state.to, onChange: function onChange(e) { return _this2.setState({ to: e.target.value }); } })) ), _react2.default.createElement( 'button', _extends({}, cx('submit'), { type: 'submit' }), translate('submit') ) ) ); } }]); return RangeInput; }(_react.Component); RangeInput.propTypes = { translate: _propTypes2.default.func.isRequired, refine: _propTypes2.default.func.isRequired, min: _propTypes2.default.number, max: _propTypes2.default.number, currentRefinement: _propTypes2.default.shape({ min: _propTypes2.default.number, max: _propTypes2.default.number }), canRefine: _propTypes2.default.bool.isRequired }; RangeInput.contextTypes = { canRefine: _propTypes2.default.func }; exports.default = (0, _translatable2.default)({ submit: 'ok', separator: 'to' })(RangeInput); /***/ }), /* 385 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var _connectRange = __webpack_require__(209); var _connectRange2 = _interopRequireDefault(_connectRange); var _react = __webpack_require__(4); var _react2 = _interopRequireDefault(_react); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } /** * Since a lot of sliders already exist, we did not include one by default. * However you can easily connect React InstantSearch to an existing one * using the [connectRange connector](connectors/connectRange.html). * * @name RangeSlider * @requirements To connect any slider to Algolia, the underlying attribute used must be holding numerical values. * @kind widget * @example * * // Here's an example showing how to connect the airbnb rheostat slider to React InstantSearch using the * // range connector import PropTypes from 'prop-types'; import React, {Component} from 'react'; import {connectRange} from 'react-instantsearch/connectors'; import Rheostat from 'rheostat'; class Range extends React.Component { static propTypes = { min: PropTypes.number, max: PropTypes.number, currentRefinement: PropTypes.object, refine: PropTypes.func.isRequired, canRefine: PropTypes.bool.isRequired, }; state = {currentValues: {min: this.props.min, max: this.props.max}}; componentWillReceiveProps(sliderState) { if (sliderState.canRefine) { this.setState({currentValues: {min: sliderState.currentRefinement.min, max: sliderState.currentRefinement.max}}); } } onValuesUpdated = (sliderState) => { this.setState({currentValues: {min: sliderState.values[0], max: sliderState.values[1]}}); }; onChange = (sliderState) => { if (this.props.currentRefinement.min !== sliderState.values[0] || this.props.currentRefinement.max !== sliderState.values[1]) { this.props.refine({min: sliderState.values[0], max: sliderState.values[1]}); } }; render() { const {min, max, currentRefinement} = this.props; const {currentValues} = this.state; return min !== max ? <div> <Rheostat min={min} max={max} values={[currentRefinement.min, currentRefinement.max]} onChange={this.onChange} onValuesUpdated={this.onValuesUpdated} /> <div style={{display: 'flex', justifyContent: 'space-between'}}> <div>{currentValues.min}</div> <div>{currentValues.max}</div> </div> </div> : null; } } const ConnectedRange = connectRange(Range); */ exports.default = (0, _connectRange2.default)(function () { return _react2.default.createElement( 'div', null, 'We do not provide any Slider, see the documentation to learn how to connect one easily:', _react2.default.createElement( 'a', { target: '_blank', rel: 'noopener noreferrer', href: 'https://community.algolia.com/react-instantsearch/widgets/RangeSlider.html' }, 'https://community.algolia.com/react-instantsearch/widgets/RangeSlider.html' ) ); }); /***/ }), /* 386 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var _connectRange = __webpack_require__(209); var _connectRange2 = _interopRequireDefault(_connectRange); var _StarRating = __webpack_require__(387); var _StarRating2 = _interopRequireDefault(_StarRating); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } /** * StarRating lets the user refine search results by clicking on stars. * * The stars are based on the selected `attributeName`. * @requirements The attribute passed to the `attributeName` prop must be holding numerical values. * @name StarRating * @kind widget * @propType {string} attributeName - the name of the attribute in the record * @propType {number} [min] - Minimum value for the rating. When this isn't set, the minimum value will be automatically computed by Algolia using the data in the index. * @propType {number} [max] - Maximum value for the rating. When this isn't set, the maximum value will be automatically computed by Algolia using the data in the index. * @propType {{min: number, max: number}} [defaultRefinement] - Default state of the widget containing the lower bound (end) and the max for the rating. * @themeKey ais-StarRating__root - The root component of the widget * @themeKey ais-StarRating__ratingLink - The item link * @themeKey ais-StarRating__ratingLinkSelected - The selected link item * @themeKey ais-StarRating__ratingLinkDisabled - The disabled link item * @themeKey ais-StarRating__ratingIcon - The rating icon * @themeKey ais-StarRating__ratingIconSelected - The selected rating icon * @themeKey ais-StarRating__ratingIconDisabled - The disabled rating icon * @themeKey ais-StarRating__ratingIconEmpty - The rating empty icon * @themeKey ais-StarRating__ratingIconEmptySelected - The selected rating empty icon * @themeKey ais-StarRating__ratingIconEmptyDisabled - The disabled rating empty icon * @themeKey ais-StarRating__ratingLabel - The link label * @themeKey ais-StarRating__ratingLabelSelected - The selected link label * @themeKey ais-StarRating__ratingLabelDisabled - The disabled link label * @themeKey ais-StarRating__ratingCount - The link count * @themeKey ais-StarRating__ratingCountSelected - The selected link count * @themeKey ais-StarRating__ratingCountDisabled - The disabled link count * @themeKey ais-StarRating__noRefinement - present when there is no refinement * @translationKey ratingLabel - Label value for the rating link * @example * import React from 'react'; * * import { StarRating, InstantSearch } from 'react-instantsearch/dom'; * * export default function App() { * return ( * <InstantSearch * appId="latency" * apiKey="6be0576ff61c053d5f9a3225e2a90f76" * indexName="ikea" * > * <StarRating attributeName="rating" /> * </InstantSearch> * ); * } */ exports.default = (0, _connectRange2.default)(_StarRating2.default); /***/ }), /* 387 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var _isEmpty2 = __webpack_require__(15); var _isEmpty3 = _interopRequireDefault(_isEmpty2); var _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }(); var _propTypes = __webpack_require__(0); var _propTypes2 = _interopRequireDefault(_propTypes); var _react = __webpack_require__(4); var _react2 = _interopRequireDefault(_react); var _translatable = __webpack_require__(33); var _translatable2 = _interopRequireDefault(_translatable); var _classNames = __webpack_require__(14); var _classNames2 = _interopRequireDefault(_classNames); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; } function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; } var cx = (0, _classNames2.default)('StarRating'); var StarRating = function (_Component) { _inherits(StarRating, _Component); function StarRating() { _classCallCheck(this, StarRating); return _possibleConstructorReturn(this, (StarRating.__proto__ || Object.getPrototypeOf(StarRating)).apply(this, arguments)); } _createClass(StarRating, [{ key: 'componentWillMount', value: function componentWillMount() { if (this.context.canRefine) this.context.canRefine(this.props.canRefine); } }, { key: 'componentWillReceiveProps', value: function componentWillReceiveProps(props) { if (this.context.canRefine) this.context.canRefine(props.canRefine); } }, { key: 'onClick', value: function onClick(min, max, e) { e.preventDefault(); e.stopPropagation(); if (min === this.props.currentRefinement.min && max === this.props.currentRefinement.max) { this.props.refine({ min: this.props.min, max: this.props.max }); } else { this.props.refine({ min: min, max: max }); } } }, { key: 'buildItem', value: function buildItem(_ref) { var max = _ref.max, lowerBound = _ref.lowerBound, count = _ref.count, translate = _ref.translate, createURL = _ref.createURL, isLastSelectableItem = _ref.isLastSelectableItem; var disabled = !count; var isCurrentMinLower = this.props.currentRefinement.min < lowerBound; var selected = isLastSelectableItem && isCurrentMinLower || !disabled && lowerBound === this.props.currentRefinement.min && max === this.props.currentRefinement.max; var icons = []; for (var icon = 0; icon < max; icon++) { var iconTheme = icon >= lowerBound ? 'ratingIconEmpty' : 'ratingIcon'; icons.push(_react2.default.createElement('span', _extends({ key: icon }, cx(iconTheme, selected && iconTheme + 'Selected', disabled && iconTheme + 'Disabled')))); } // The last item of the list (the default item), should not // be clickable if it is selected. var isLastAndSelect = isLastSelectableItem && selected; var StarsWrapper = isLastAndSelect ? 'div' : 'a'; var onClickHandler = isLastAndSelect ? {} : { href: createURL({ min: lowerBound, max: max }), onClick: this.onClick.bind(this, lowerBound, max) }; return _react2.default.createElement( StarsWrapper, _extends({}, cx('ratingLink', selected && 'ratingLinkSelected', disabled && 'ratingLinkDisabled'), { disabled: disabled, key: lowerBound }, onClickHandler), icons, _react2.default.createElement( 'span', cx('ratingLabel', selected && 'ratingLabelSelected', disabled && 'ratingLabelDisabled'), translate('ratingLabel') ), _react2.default.createElement( 'span', null, ' ' ), _react2.default.createElement( 'span', cx('ratingCount', selected && 'ratingCountSelected', disabled && 'ratingCountDisabled'), count ) ); } }, { key: 'render', value: function render() { var _this2 = this; var _props = this.props, translate = _props.translate, refine = _props.refine, min = _props.min, max = _props.max, count = _props.count, createURL = _props.createURL, canRefine = _props.canRefine; var items = []; var _loop = function _loop(i) { var hasCount = !(0, _isEmpty3.default)(count.filter(function (item) { return Number(item.value) === i; })); var lastSelectableItem = count.reduce(function (acc, item) { return item.value < acc.value || !acc.value && hasCount ? item : acc; }, {}); var itemCount = count.reduce(function (acc, item) { return item.value >= i && hasCount ? acc + item.count : acc; }, 0); items.push(_this2.buildItem({ lowerBound: i, max: max, refine: refine, count: itemCount, translate: translate, createURL: createURL, isLastSelectableItem: i === Number(lastSelectableItem.value) })); }; for (var i = max; i >= min; i--) { _loop(i); } return _react2.default.createElement( 'div', cx('root', !canRefine && 'noRefinement'), items ); } }]); return StarRating; }(_react.Component); StarRating.propTypes = { translate: _propTypes2.default.func.isRequired, refine: _propTypes2.default.func.isRequired, createURL: _propTypes2.default.func.isRequired, min: _propTypes2.default.number, max: _propTypes2.default.number, currentRefinement: _propTypes2.default.shape({ min: _propTypes2.default.number, max: _propTypes2.default.number }), count: _propTypes2.default.arrayOf(_propTypes2.default.shape({ value: _propTypes2.default.string, count: _propTypes2.default.number })), canRefine: _propTypes2.default.bool.isRequired }; StarRating.contextTypes = { canRefine: _propTypes2.default.func }; exports.default = (0, _translatable2.default)({ ratingLabel: ' & Up' })(StarRating); /***/ }), /* 388 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var _connectRefinementList = __webpack_require__(338); var _connectRefinementList2 = _interopRequireDefault(_connectRefinementList); var _RefinementList = __webpack_require__(389); var _RefinementList2 = _interopRequireDefault(_RefinementList); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } /** * The RefinementList component displays a list that let the end user choose multiple values for a specific facet. * @name RefinementList * @kind widget * @propType {string} attributeName - the name of the attribute in the record * @propType {boolean} [withSearchBox=false] - true if the component should display an input to search for facet values * @propType {string} [operator=or] - How to apply the refinements. Possible values: 'or' or 'and'. * @propType {boolean} [showMore=false] - true if the component should display a button that will expand the number of items * @propType {number} [limitMin=10] - the minimum number of displayed items * @propType {number} [limitMax=20] - the maximum number of displayed items. Only used when showMore is set to `true` * @propType {string[]} [defaultRefinement] - the values of the items selected by default * @propType {function} [transformItems] - Function to modify the items being displayed, e.g. for filtering or sorting them. Takes an items as parameter and expects it back in return. * @themeKey ais-RefinementList__root - the root of the component * @themeKey ais-RefinementList__items - the container of all items in the list * @themeKey ais-RefinementList__itemSelected - the selected list item * @themeKey ais-RefinementList__itemCheckbox - the item checkbox * @themeKey ais-RefinementList__itemCheckboxSelected - the selected item checkbox * @themeKey ais-RefinementList__itemLabel - the item label * @themeKey ais-RefinementList__itemLabelSelected - the selected item label * @themeKey ais-RefinementList__itemCount - the item count * @themeKey ais-RefinementList__itemCountSelected - the selected item count * @themeKey ais-RefinementList__showMore - the button that let the user toggle more results * @themeKey ais-RefinementList__noRefinement - present when there is no refinement * @themeKey ais-RefinementList__SearchBox - the container of the search for facet values searchbox. See [the SearchBox documentation](widgets/SearchBox.html#classnames) for the classnames and translation keys of the SearchBox. * @translationkey showMore - The label of the show more button. Accepts one parameters, a boolean that is true if the values are expanded * @translationkey noResults - The label of the no results text when no search for facet values results are found. * @requirements The attribute passed to the `attributeName` prop must be present in "attributes for faceting" * on the Algolia dashboard or configured as `attributesForFaceting` via a set settings call to the Algolia API. * @example * import React from 'react'; * * import { RefinementList, InstantSearch } from '../packages/react-instantsearch/dom'; * * export default function App() { * return ( * <InstantSearch * appId="latency" * apiKey="6be0576ff61c053d5f9a3225e2a90f76" * indexName="ikea" * > * <RefinementList attributeName="colors" /> * </InstantSearch> * ); * } */ exports.default = (0, _connectRefinementList2.default)(_RefinementList2.default); /***/ }), /* 389 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var _pick2 = __webpack_require__(110); var _pick3 = _interopRequireDefault(_pick2); var _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }(); var _propTypes = __webpack_require__(0); var _propTypes2 = _interopRequireDefault(_propTypes); var _react = __webpack_require__(4); var _react2 = _interopRequireDefault(_react); var _translatable = __webpack_require__(33); var _translatable2 = _interopRequireDefault(_translatable); var _List = __webpack_require__(216); var _List2 = _interopRequireDefault(_List); var _classNames = __webpack_require__(14); var _classNames2 = _interopRequireDefault(_classNames); var _Highlight = __webpack_require__(329); var _Highlight2 = _interopRequireDefault(_Highlight); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; } function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; } var cx = (0, _classNames2.default)('RefinementList'); var RefinementList = function (_Component) { _inherits(RefinementList, _Component); function RefinementList(props) { _classCallCheck(this, RefinementList); var _this = _possibleConstructorReturn(this, (RefinementList.__proto__ || Object.getPrototypeOf(RefinementList)).call(this, props)); _this.selectItem = function (item, resetQuery) { resetQuery(); _this.props.refine(item.value); }; _this.renderItem = function (item, resetQuery) { var label = _this.props.isFromSearch ? _react2.default.createElement(_Highlight2.default, { attributeName: 'label', hit: item }) : item.label; return _react2.default.createElement( 'label', null, _react2.default.createElement('input', _extends({}, cx('itemCheckbox', item.isRefined && 'itemCheckboxSelected'), { type: 'checkbox', checked: item.isRefined, onChange: function onChange() { return _this.selectItem(item, resetQuery); } })), _react2.default.createElement('span', cx('itemBox', 'itemBox', item.isRefined && 'itemBoxSelected')), _react2.default.createElement( 'span', cx('itemLabel', 'itemLabel', item.isRefined && 'itemLabelSelected'), label ), ' ', _react2.default.createElement( 'span', cx('itemCount', item.isRefined && 'itemCountSelected'), item.count.toLocaleString() ) ); }; _this.state = { query: '' }; return _this; } _createClass(RefinementList, [{ key: 'componentWillMount', value: function componentWillMount() { if (this.context.canRefine) this.context.canRefine(this.props.canRefine); } }, { key: 'componentWillReceiveProps', value: function componentWillReceiveProps(props) { if (this.context.canRefine) this.context.canRefine(props.canRefine); } }, { key: 'render', value: function render() { return _react2.default.createElement( 'div', null, _react2.default.createElement(_List2.default, _extends({ renderItem: this.renderItem, selectItem: this.selectItem, cx: cx }, (0, _pick3.default)(this.props, ['translate', 'items', 'showMore', 'limitMin', 'limitMax', 'isFromSearch', 'searchForItems', 'withSearchBox', 'canRefine']), { query: this.state.query })) ); } }]); return RefinementList; }(_react.Component); RefinementList.propTypes = { translate: _propTypes2.default.func.isRequired, refine: _propTypes2.default.func.isRequired, searchForItems: _propTypes2.default.func.isRequired, withSearchBox: _propTypes2.default.bool, createURL: _propTypes2.default.func.isRequired, items: _propTypes2.default.arrayOf(_propTypes2.default.shape({ label: _propTypes2.default.string.isRequired, value: _propTypes2.default.arrayOf(_propTypes2.default.string).isRequired, count: _propTypes2.default.number.isRequired, isRefined: _propTypes2.default.bool.isRequired })), isFromSearch: _propTypes2.default.bool.isRequired, canRefine: _propTypes2.default.bool.isRequired, showMore: _propTypes2.default.bool, limitMin: _propTypes2.default.number, limitMax: _propTypes2.default.number, transformItems: _propTypes2.default.func }; RefinementList.contextTypes = { canRefine: _propTypes2.default.func }; exports.default = (0, _translatable2.default)({ showMore: function showMore(extended) { return extended ? 'Show less' : 'Show more'; }, noResults: 'No results', submit: null, reset: null, resetTitle: 'Clear the search query.', submitTitle: 'Submit your search query.', placeholder: 'Search here…' })(RefinementList); /***/ }), /* 390 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var _connectCurrentRefinements = __webpack_require__(211); var _connectCurrentRefinements2 = _interopRequireDefault(_connectCurrentRefinements); var _ClearAll = __webpack_require__(391); var _ClearAll2 = _interopRequireDefault(_ClearAll); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } /** * The ClearAll widget displays a button that lets the user clean every refinement applied * to the search. * @name ClearAll * @kind widget * @propType {function} [transformItems] - Function to modify the items being displayed, e.g. for filtering or sorting them. Takes an items as parameter and expects it back in return. * @propType {boolean} [clearsQuery=false] - Pass true to also clear the search query * @themeKey ais-ClearAll__root - the widget button * @translationKey reset - the clear all button value * @example * import React from 'react'; * * import { ClearAll, RefinementList, InstantSearch } from 'react-instantsearch/dom'; * * export default function App() { * return ( * <InstantSearch * appId="latency" * apiKey="6be0576ff61c053d5f9a3225e2a90f76" * indexName="ikea" * > * <ClearAll /> * <RefinementList attributeName="colors" defaultRefinement={['Black']} /> * </InstantSearch> * ); * } */ exports.default = (0, _connectCurrentRefinements2.default)(_ClearAll2.default); /***/ }), /* 391 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }(); var _propTypes = __webpack_require__(0); var _propTypes2 = _interopRequireDefault(_propTypes); var _react = __webpack_require__(4); var _react2 = _interopRequireDefault(_react); var _translatable = __webpack_require__(33); var _translatable2 = _interopRequireDefault(_translatable); var _classNames = __webpack_require__(14); var _classNames2 = _interopRequireDefault(_classNames); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; } function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; } var cx = (0, _classNames2.default)('ClearAll'); var ClearAll = function (_Component) { _inherits(ClearAll, _Component); function ClearAll() { _classCallCheck(this, ClearAll); return _possibleConstructorReturn(this, (ClearAll.__proto__ || Object.getPrototypeOf(ClearAll)).apply(this, arguments)); } _createClass(ClearAll, [{ key: 'render', value: function render() { var _props = this.props, translate = _props.translate, items = _props.items, refine = _props.refine; var isDisabled = items.length === 0; if (isDisabled) { return _react2.default.createElement( 'button', _extends({}, cx('root'), { disabled: true }), translate('reset') ); } return _react2.default.createElement( 'button', _extends({}, cx('root'), { onClick: refine.bind(null, items) }), translate('reset') ); } }]); return ClearAll; }(_react.Component); ClearAll.propTypes = { translate: _propTypes2.default.func.isRequired, items: _propTypes2.default.arrayOf(_propTypes2.default.object).isRequired, refine: _propTypes2.default.func.isRequired }; exports.default = (0, _translatable2.default)({ reset: 'Clear all filters' })(ClearAll); /***/ }), /* 392 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var _connectScrollTo = __webpack_require__(339); var _connectScrollTo2 = _interopRequireDefault(_connectScrollTo); var _ScrollTo = __webpack_require__(393); var _ScrollTo2 = _interopRequireDefault(_ScrollTo); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } /** * The ScrollTo component will made the page scroll to the component wrapped by it when one of the * [search state](guide/Search_state.html) prop is updated. By default when the page number changes, * the scroll goes to the wrapped component. * * @name ScrollTo * @kind widget * @propType {string} [scrollOn="page"] - Widget state key on which to listen for changes. * @example * import React from 'react'; * * import { ScrollTo, Hits, InstantSearch } from 'react-instantsearch/dom'; * * export default function App() { * return ( * <InstantSearch * appId="latency" * apiKey="6be0576ff61c053d5f9a3225e2a90f76" * indexName="ikea" * > * <ScrollTo> * <Hits /> * </ScrollTo> * </InstantSearch> * ); * } */ exports.default = (0, _connectScrollTo2.default)(_ScrollTo2.default); /***/ }), /* 393 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }(); var _propTypes = __webpack_require__(0); var _propTypes2 = _interopRequireDefault(_propTypes); var _react = __webpack_require__(4); var _react2 = _interopRequireDefault(_react); var _classNames = __webpack_require__(14); var _classNames2 = _interopRequireDefault(_classNames); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; } function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; } var cx = (0, _classNames2.default)('ScrollTo'); var ScrollTo = function (_Component) { _inherits(ScrollTo, _Component); function ScrollTo() { _classCallCheck(this, ScrollTo); return _possibleConstructorReturn(this, (ScrollTo.__proto__ || Object.getPrototypeOf(ScrollTo)).apply(this, arguments)); } _createClass(ScrollTo, [{ key: 'componentDidUpdate', value: function componentDidUpdate(prevProps) { var _props = this.props, value = _props.value, hasNotChanged = _props.hasNotChanged; if (value !== prevProps.value && hasNotChanged) { this.el.scrollIntoView(); } } }, { key: 'render', value: function render() { var _this2 = this; return _react2.default.createElement( 'div', _extends({ ref: function ref(_ref) { return _this2.el = _ref; } }, cx('root')), this.props.children ); } }]); return ScrollTo; }(_react.Component); ScrollTo.propTypes = { value: _propTypes2.default.any, children: _propTypes2.default.node, hasNotChanged: _propTypes2.default.bool }; exports.default = ScrollTo; /***/ }), /* 394 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var _connectSearchBox = __webpack_require__(340); var _connectSearchBox2 = _interopRequireDefault(_connectSearchBox); var _SearchBox = __webpack_require__(347); var _SearchBox2 = _interopRequireDefault(_SearchBox); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } /** * The SearchBox component displays a search box that lets the user search for a specific query. * @name SearchBox * @kind widget * @propType {string[]} [focusShortcuts=['s','/']] - List of keyboard shortcuts that focus the search box. Accepts key names and key codes. * @propType {boolean} [autoFocus=false] - Should the search box be focused on render? * @propType {boolean} [searchAsYouType=true] - Should we search on every change to the query? If you disable this option, new searches will only be triggered by clicking the search button or by pressing the enter key while the search box is focused. * @propType {function} [onSubmit] - Intercept submit event sent from the SearchBox form container. * @propType {function} [onReset] - Listen to `reset` event sent from the SearchBox form container. * @propType {function} [on*] - Listen to any events sent form the search input itself. * @propType {React.Element} [submitComponent] - Change the apparence of the default submit button (magnifying glass). * @propType {React.Element} [resetComponent] - Change the apparence of the default reset button (cross). * @propType {string} [defaultRefinement] - Provide default refinement value when component is mounted. * @themeKey ais-SearchBox__root - the root of the component * @themeKey ais-SearchBox__wrapper - the search box wrapper * @themeKey ais-SearchBox__input - the search box input * @themeKey ais-SearchBox__submit - the submit button * @themeKey ais-SearchBox__reset - the reset button * @translationkey submitTitle - The submit button title * @translationkey resetTitle - The reset button title * @translationkey placeholder - The label of the input placeholder * @example * import React from 'react'; * * import { SearchBox, InstantSearch } from 'react-instantsearch/dom'; * * export default function App() { * return ( * <InstantSearch * appId="latency" * apiKey="6be0576ff61c053d5f9a3225e2a90f76" * indexName="ikea" * > * <SearchBox /> * </InstantSearch> * ); * } */ exports.default = (0, _connectSearchBox2.default)(_SearchBox2.default); /***/ }), /* 395 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var _connectSortBy = __webpack_require__(341); var _connectSortBy2 = _interopRequireDefault(_connectSortBy); var _SortBy = __webpack_require__(396); var _SortBy2 = _interopRequireDefault(_SortBy); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } /** * The SortBy component displays a list of indexes allowing a user to change the hits are sorting. * @name SortBy * @requirements Algolia handles sorting by creating replica indices. [Read more about sorting](https://www.algolia.com/doc/guides/relevance/sorting/) on * the Algolia website. * @kind widget * @propType {{value: string, label: string}[]} items - The list of indexes to search in. * @propType {string} defaultRefinement - The default selected index. * @propType {function} [transformItems] - Function to modify the items being displayed, e.g. for filtering or sorting them. Takes an items as parameter and expects it back in return. * @themeKey ais-SortBy__root - the root of the component * @example * import React from 'react'; * * import { SortBy, InstantSearch } from 'react-instantsearch/dom'; * * export default function App() { * return ( * <InstantSearch * appId="latency" * apiKey="6be0576ff61c053d5f9a3225e2a90f76" * indexName="ikea" * > * <SortBy * items={[ * { value: 'ikea', label: 'Featured' }, * { value: 'ikea_price_asc', label: 'Price asc.' }, * { value: 'ikea_price_desc', label: 'Price desc.' }, * ]} * defaultRefinement="ikea" * /> * </InstantSearch> * ); * } */ exports.default = (0, _connectSortBy2.default)(_SortBy2.default); /***/ }), /* 396 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }(); var _propTypes = __webpack_require__(0); var _propTypes2 = _interopRequireDefault(_propTypes); var _react = __webpack_require__(4); var _react2 = _interopRequireDefault(_react); var _Select = __webpack_require__(349); var _Select2 = _interopRequireDefault(_Select); var _classNames = __webpack_require__(14); var _classNames2 = _interopRequireDefault(_classNames); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; } function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; } var cx = (0, _classNames2.default)('SortBy'); var SortBy = function (_Component) { _inherits(SortBy, _Component); function SortBy() { _classCallCheck(this, SortBy); return _possibleConstructorReturn(this, (SortBy.__proto__ || Object.getPrototypeOf(SortBy)).apply(this, arguments)); } _createClass(SortBy, [{ key: 'render', value: function render() { var _props = this.props, refine = _props.refine, items = _props.items, currentRefinement = _props.currentRefinement; return _react2.default.createElement(_Select2.default, { cx: cx, selectedItem: currentRefinement, onSelect: refine, items: items }); } }]); return SortBy; }(_react.Component); SortBy.propTypes = { refine: _propTypes2.default.func.isRequired, items: _propTypes2.default.arrayOf(_propTypes2.default.shape({ label: _propTypes2.default.string, value: _propTypes2.default.string.isRequired })).isRequired, currentRefinement: _propTypes2.default.string.isRequired, transformItems: _propTypes2.default.func }; exports.default = SortBy; /***/ }), /* 397 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var _connectStats = __webpack_require__(342); var _connectStats2 = _interopRequireDefault(_connectStats); var _Stats = __webpack_require__(398); var _Stats2 = _interopRequireDefault(_Stats); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } /** * The Stats component displays the total number of matching hits and the time it took to get them (time spent in the Algolia server). * @name Stats * @kind widget * @themeKey ais-Stats__root - the root of the component * @translationkey stats - The string displayed by the stats widget. You get function(n, ms) and you need to return a string. n is a number of hits retrieved, ms is a processed time. * @example * import React from 'react'; * * import { Stats, InstantSearch } from 'react-instantsearch/dom'; * * export default function App() { * return ( * <InstantSearch * appId="latency" * apiKey="6be0576ff61c053d5f9a3225e2a90f76" * indexName="ikea" * > * <Stats /> * </InstantSearch> * ); * } */ exports.default = (0, _connectStats2.default)(_Stats2.default); /***/ }), /* 398 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }(); var _propTypes = __webpack_require__(0); var _propTypes2 = _interopRequireDefault(_propTypes); var _react = __webpack_require__(4); var _react2 = _interopRequireDefault(_react); var _translatable = __webpack_require__(33); var _translatable2 = _interopRequireDefault(_translatable); var _classNames = __webpack_require__(14); var _classNames2 = _interopRequireDefault(_classNames); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; } function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; } var cx = (0, _classNames2.default)('Stats'); var Stats = function (_Component) { _inherits(Stats, _Component); function Stats() { _classCallCheck(this, Stats); return _possibleConstructorReturn(this, (Stats.__proto__ || Object.getPrototypeOf(Stats)).apply(this, arguments)); } _createClass(Stats, [{ key: 'render', value: function render() { var _props = this.props, translate = _props.translate, nbHits = _props.nbHits, processingTimeMS = _props.processingTimeMS; return _react2.default.createElement( 'span', cx('root'), translate('stats', nbHits, processingTimeMS) ); } }]); return Stats; }(_react.Component); Stats.propTypes = { translate: _propTypes2.default.func.isRequired, nbHits: _propTypes2.default.number.isRequired, processingTimeMS: _propTypes2.default.number.isRequired }; exports.default = (0, _translatable2.default)({ stats: function stats(n, ms) { return n.toLocaleString() + ' results found in ' + ms.toLocaleString() + 'ms'; } })(Stats); /***/ }), /* 399 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var _connectToggle = __webpack_require__(343); var _connectToggle2 = _interopRequireDefault(_connectToggle); var _Toggle = __webpack_require__(400); var _Toggle2 = _interopRequireDefault(_Toggle); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } /** * The Toggle provides an on/off filtering feature based on an attribute value. Note that if you provide an “off” option, it will be refined at initialization. * @name Toggle * @kind widget * @requirements To use this widget, you'll need an attribute to toggle on. * * You can't toggle on null or not-null values. If you want to address this particular use-case you'll need to compute an * extra boolean attribute saying if the value exists or not. See this [thread](https://discourse.algolia.com/t/how-to-create-a-toggle-for-the-absence-of-a-string-attribute/2460) for more details. * * @propType {string} attributeName - Name of the attribute on which to apply the `value` refinement. Required when `value` is present. * @propType {string} label - Label for the toggle. * @propType {string} value - Value of the refinement to apply on `attributeName` when checked. * @propType {boolean} [defaultRefinement=false] - Default state of the widget. Should the toggle be checked by default? * @themeKey ais-Toggle__root - the root of the component * @themeKey ais-Toggle__checkbox - the toggle checkbox * @themeKey ais-Toggle__label - the toggle label * @example * import React from 'react'; * * import { Toggle, InstantSearch } from 'react-instantsearch/dom'; * * export default function App() { * return ( * <InstantSearch * appId="latency" * apiKey="6be0576ff61c053d5f9a3225e2a90f76" * indexName="ikea" * > * <Toggle * attributeName="materials" * label="Made with solid pine" * value={'Solid pine'} * /> * </InstantSearch> * ); * } */ exports.default = (0, _connectToggle2.default)(_Toggle2.default); /***/ }), /* 400 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }(); var _propTypes = __webpack_require__(0); var _propTypes2 = _interopRequireDefault(_propTypes); var _react = __webpack_require__(4); var _react2 = _interopRequireDefault(_react); var _classNames = __webpack_require__(14); var _classNames2 = _interopRequireDefault(_classNames); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; } function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; } var cx = (0, _classNames2.default)('Toggle'); var Toggle = function (_Component) { _inherits(Toggle, _Component); function Toggle() { var _ref; var _temp, _this, _ret; _classCallCheck(this, Toggle); for (var _len = arguments.length, args = Array(_len), _key = 0; _key < _len; _key++) { args[_key] = arguments[_key]; } return _ret = (_temp = (_this = _possibleConstructorReturn(this, (_ref = Toggle.__proto__ || Object.getPrototypeOf(Toggle)).call.apply(_ref, [this].concat(args))), _this), _this.onChange = function (e) { _this.props.refine(e.target.checked); }, _temp), _possibleConstructorReturn(_this, _ret); } _createClass(Toggle, [{ key: 'render', value: function render() { var _props = this.props, currentRefinement = _props.currentRefinement, label = _props.label; return _react2.default.createElement( 'label', cx('root'), _react2.default.createElement('input', _extends({}, cx('checkbox'), { type: 'checkbox', checked: currentRefinement, onChange: this.onChange })), _react2.default.createElement( 'span', cx('label'), label ) ); } }]); return Toggle; }(_react.Component); Toggle.propTypes = { currentRefinement: _propTypes2.default.bool.isRequired, refine: _propTypes2.default.func.isRequired, label: _propTypes2.default.string.isRequired }; exports.default = Toggle; /***/ }), /* 401 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var _Panel = __webpack_require__(402); var _Panel2 = _interopRequireDefault(_Panel); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } /** * The Panel widget wraps other widgets in a consistent panel design. * * It also reacts, indicates and set CSS classes when widgets are no more * relevant for refining. E.g. when a RefinementList becomes empty because of * the current search results. * @name Panel * @kind widget * @propType {string} title - The panel title * @themeKey ais-Panel__root - Container of the widget * @themeKey ais-Panel__title - The panel title * @themeKey ais-Panel__noRefinement - Present if the panel content is empty * @example * import React from 'react'; * * import { Panel, RefinementList, InstantSearch } from 'react-instantsearch/dom'; * * export default function App() { * return ( * <InstantSearch * appId="latency" * apiKey="6be0576ff61c053d5f9a3225e2a90f76" * indexName="ikea" * > * <Panel title="category"> * <RefinementList attributeName="category" /> * </Panel> * </InstantSearch> * ); * } */ exports.default = _Panel2.default; /***/ }), /* 402 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }(); var _propTypes = __webpack_require__(0); var _propTypes2 = _interopRequireDefault(_propTypes); var _react = __webpack_require__(4); var _react2 = _interopRequireDefault(_react); var _classNames = __webpack_require__(14); var _classNames2 = _interopRequireDefault(_classNames); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; } function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; } var cx = (0, _classNames2.default)('Panel'); var Panel = function (_Component) { _inherits(Panel, _Component); _createClass(Panel, [{ key: 'getChildContext', value: function getChildContext() { return { canRefine: this.canRefine }; } }]); function Panel(props) { _classCallCheck(this, Panel); var _this = _possibleConstructorReturn(this, (Panel.__proto__ || Object.getPrototypeOf(Panel)).call(this, props)); _this.state = { canRefine: true }; _this.canRefine = function (canRefine) { _this.setState({ canRefine: canRefine }); }; return _this; } _createClass(Panel, [{ key: 'render', value: function render() { return _react2.default.createElement( 'div', cx('root', !this.state.canRefine && 'noRefinement'), _react2.default.createElement( 'h5', cx('title'), this.props.title ), this.props.children ); } }]); return Panel; }(_react.Component); Panel.propTypes = { title: _propTypes2.default.string.isRequired, children: _propTypes2.default.node }; Panel.childContextTypes = { canRefine: _propTypes2.default.func }; exports.default = Panel; /***/ }), /* 403 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var _connectBreadcrumb = __webpack_require__(344); var _connectBreadcrumb2 = _interopRequireDefault(_connectBreadcrumb); var _Breadcrumb = __webpack_require__(404); var _Breadcrumb2 = _interopRequireDefault(_Breadcrumb); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } /** * A breadcrumb is a secondary navigation scheme that allows the user to see where the current page * is in relation to the website or web application’s hierarchy. * In terms of usability, using a breadcrumb reduces the number of actions a visitor needs to take in * order to get to a higher-level page. * * If you want to select a specific refinement for your Breadcrumb component, you will need to use a Virtual Hierarchical Menu * (https://community.algolia.com/react-instantsearch/guide/Virtual_widgets.html) and set its * defaultRefinement that will be then used by the Breadcrumb. * * @name Breadcrumb * @kind widget * @requirements Breadcrumbs are used for websites with a large amount of content organised in a hierarchical manner. * The typical example is an e-commerce website which has a large variety of products grouped into logical categories * (with categories, subcategories which also have subcategories).To use this widget, your attributes must be formatted in a specific way. * * Keep in mind that breadcrumbs shouldn’t replace effective primary navigation menus: * it is only an alternative way to navigate around the website. * * If, for instance, you would like to have a breadcrumb of categories, objects in your index * should be formatted this way: * * ```json * { * "categories.lvl0": "products", * "categories.lvl1": "products > fruits", * "categories.lvl2": "products > fruits > citrus" * } * ``` * * It's also possible to provide more than one path for each level: * * ```json * { * "categories.lvl0": ["products", "goods"], * "categories.lvl1": ["products > fruits", "goods > to eat"] * } * ``` * * All attributes passed to the `attributes` prop must be present in "attributes for faceting" * on the Algolia dashboard or configured as `attributesForFaceting` via a set settings call to the Algolia API. * * @propType {string} attributes - List of attributes to use to generate the hierarchy of the menu. See the example for the convention to follow * @propType {string} [separator='>'] - Symbol used for separating hyperlinks * @propType {string} [rootURL=null] - The originating page (homepage) * @propType {function} [transformItems] - Function to modify the items being displayed, e.g. for filtering or sorting them. Takes an items as parameter and expects it back in return * @themeKey ais-Breadcrumb__root - The widget container * @themeKey ais-Breadcrumb__itemLinkRoot - The root link (originating page) * @themeKey ais-Breadcrumb__rootLabel - The root label * @themeKey ais-Breadcrumb__item - Contains the link, the label and the separator * @themeKey ais-Breadcrumb__itemLink - The link containing the label * @themeKey ais-Breadcrumb__itemLabel - The link's label * @themeKey ais-Breadcrumb__itemDisabled - For the last item of the breadcrumb which is not clickable * @themeKey ais-Breadcrumb__separator - The separator * @themeKey ais-Breadcrumb__noRefinement - present when there is no refinement * @translationKey rootLabel - The root's label. Accepts a string * @example * import React from 'react'; * import { Breadcrumb, InstantSearch } from 'react-instantsearch/dom'; * * export default function App() { * return ( * <InstantSearch * appId="latency" * apiKey="6be0576ff61c053d5f9a3225e2a90f76" * indexName="ikea" * > * <Breadcrumb * attributes={[ * 'category', * 'sub_category', * 'sub_sub_category', * ]} * rootURL="www.algolia.com" * separator=" / " * /> * </InstantSearch> * ); * } */ exports.default = (0, _connectBreadcrumb2.default)(_Breadcrumb2.default); /***/ }), /* 404 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }(); var _propTypes = __webpack_require__(0); var _propTypes2 = _interopRequireDefault(_propTypes); var _react = __webpack_require__(4); var _react2 = _interopRequireDefault(_react); var _Link = __webpack_require__(217); var _Link2 = _interopRequireDefault(_Link); var _classNames = __webpack_require__(14); var _classNames2 = _interopRequireDefault(_classNames); var _translatable = __webpack_require__(33); var _translatable2 = _interopRequireDefault(_translatable); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; } function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; } var cx = (0, _classNames2.default)('Breadcrumb'); var itemsPropType = _propTypes2.default.arrayOf(_propTypes2.default.shape({ label: _propTypes2.default.string.isRequired, value: _propTypes2.default.string.isRequired })); var Breadcrumb = function (_Component) { _inherits(Breadcrumb, _Component); function Breadcrumb() { _classCallCheck(this, Breadcrumb); return _possibleConstructorReturn(this, (Breadcrumb.__proto__ || Object.getPrototypeOf(Breadcrumb)).apply(this, arguments)); } _createClass(Breadcrumb, [{ key: 'componentWillMount', value: function componentWillMount() { if (this.context.canRefine) this.context.canRefine(this.props.canRefine); } }, { key: 'componentWillReceiveProps', value: function componentWillReceiveProps(props) { if (this.context.canRefine) this.context.canRefine(props.canRefine); } }, { key: 'render', value: function render() { var _this2 = this; var _props = this.props, canRefine = _props.canRefine, createURL = _props.createURL, items = _props.items, refine = _props.refine, translate = _props.translate; var rootPath = canRefine ? _react2.default.createElement( 'span', cx('item'), _react2.default.createElement( 'a', _extends({}, cx('itemLink', 'itemLinkRoot'), { onClick: function onClick() { return !_this2.props.rootURL ? refine() : null; }, href: this.props.rootURL ? this.props.rootURL : createURL() }), _react2.default.createElement( 'span', cx('rootLabel'), translate('rootLabel') ) ), _react2.default.createElement( 'span', cx('separator'), this.props.separator ) ) : null; var breadcrumb = items.map(function (item, idx) { var isLast = idx === items.length - 1; var separator = isLast ? '' : _this2.props.separator; return !isLast ? _react2.default.createElement( 'span', _extends({}, cx('item'), { key: idx }), _react2.default.createElement( _Link2.default, _extends({}, cx('itemLink'), { onClick: function onClick() { return refine(item.value); }, href: createURL(item.value), key: idx }), _react2.default.createElement( 'span', cx('itemLabel'), item.label ) ), _react2.default.createElement( 'span', cx('separator'), separator ) ) : _react2.default.createElement( 'span', _extends({}, cx('itemLink', 'itemDisabled', 'item'), { key: idx }), _react2.default.createElement( 'span', cx('itemLabel'), item.label ) ); }); return _react2.default.createElement( 'div', cx('root', !canRefine && 'noRefinement'), rootPath, breadcrumb ); } }]); return Breadcrumb; }(_react.Component); Breadcrumb.propTypes = { canRefine: _propTypes2.default.bool.isRequired, createURL: _propTypes2.default.func.isRequired, items: itemsPropType, refine: _propTypes2.default.func.isRequired, rootURL: _propTypes2.default.string, separator: _propTypes2.default.oneOfType([_propTypes2.default.string, _propTypes2.default.element]), translate: _propTypes2.default.func.isRequired }; Breadcrumb.contextTypes = { canRefine: _propTypes2.default.func }; exports.default = (0, _translatable2.default)({ rootLabel: 'Home' })(Breadcrumb); /***/ }), /* 405 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }(); exports.default = createInstantSearch; var _propTypes = __webpack_require__(0); var _propTypes2 = _interopRequireDefault(_propTypes); var _react = __webpack_require__(4); var _react2 = _interopRequireDefault(_react); var _InstantSearch = __webpack_require__(406); var _InstantSearch2 = _interopRequireDefault(_InstantSearch); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; } function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; } var _name$author$main$mod = { name: 'react-instantsearch', author: { name: 'Algolia, Inc.', url: 'https://www.algolia.com' }, main: 'index.js', module: 'es/index.js', description: '\u26A1 Lightning-fast search for React and React Native apps, by Algolia', keywords: ['react', 'search', 'fast', 'algolia', 'instantsearch', 'components', 'react-native'], version: '4.1.2', scripts: { build: './scripts/build.sh', 'build-and-publish': './scripts/build-and-publish.sh' }, homepage: 'https://community.algolia.com/react-instantsearch/', repository: { type: 'git', url: 'https://github.com/algolia/react-instantsearch/' }, dependencies: { algoliasearch: '^3.24.0', 'algoliasearch-helper': '^2.21.0', classnames: '^2.2.5', lodash: '^4.17.4', 'prop-types': '^15.5.10' }, license: 'MIT', devDependencies: { enzyme: '2.9.1', react: '15.6.2', 'react-dom': '15.6.2', 'react-native': '^0.46.3', 'react-test-renderer': '15.6.2' } }, version = _name$author$main$mod.version; /** * Creates a specialized root InstantSearch component. It accepts * an algolia client and a specification of the root Element. * @param {function} defaultAlgoliaClient - a function that builds an Algolia client * @param {object} root - the defininition of the root of an InstantSearch sub tree. * @returns {object} an InstantSearch root */ function createInstantSearch(defaultAlgoliaClient, root) { var _class, _temp; return _temp = _class = function (_Component) { _inherits(CreateInstantSearch, _Component); function CreateInstantSearch(props) { _classCallCheck(this, CreateInstantSearch); var _this = _possibleConstructorReturn(this, (CreateInstantSearch.__proto__ || Object.getPrototypeOf(CreateInstantSearch)).call(this)); _this.client = props.algoliaClient || defaultAlgoliaClient(props.appId, props.apiKey); _this.client.addAlgoliaAgent('react-instantsearch ' + version); return _this; } _createClass(CreateInstantSearch, [{ key: 'componentWillReceiveProps', value: function componentWillReceiveProps(nextProps) { var props = this.props; if (nextProps.algoliaClient) { this.client = nextProps.algoliaClient; } else if (props.appId !== nextProps.appId || props.apiKey !== nextProps.apiKey) { this.client = defaultAlgoliaClient(nextProps.appId, nextProps.apiKey); } this.client.addAlgoliaAgent('react-instantsearch ' + version); } }, { key: 'render', value: function render() { return _react2.default.createElement( _InstantSearch2.default, { createURL: this.props.createURL, indexName: this.props.indexName, searchParameters: this.props.searchParameters, searchState: this.props.searchState, onSearchStateChange: this.props.onSearchStateChange, onSearchParameters: this.props.onSearchParameters, root: root, algoliaClient: this.client, resultsState: this.props.resultsState }, this.props.children ); } }]); return CreateInstantSearch; }(_react.Component), _class.propTypes = { algoliaClient: _propTypes2.default.object, appId: _propTypes2.default.string, apiKey: _propTypes2.default.string, children: _propTypes2.default.oneOfType([_propTypes2.default.arrayOf(_propTypes2.default.node), _propTypes2.default.node]), indexName: _propTypes2.default.string.isRequired, searchParameters: _propTypes2.default.object, createURL: _propTypes2.default.func, searchState: _propTypes2.default.object, onSearchStateChange: _propTypes2.default.func, onSearchParameters: _propTypes2.default.func, resultsState: _propTypes2.default.oneOfType([_propTypes2.default.object, _propTypes2.default.array]) }, _temp; } /***/ }), /* 406 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }(); var _propTypes = __webpack_require__(0); var _propTypes2 = _interopRequireDefault(_propTypes); var _react = __webpack_require__(4); var _react2 = _interopRequireDefault(_react); var _createInstantSearchManager = __webpack_require__(407); var _createInstantSearchManager2 = _interopRequireDefault(_createInstantSearchManager); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; } function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; } function validateNextProps(props, nextProps) { if (!props.searchState && nextProps.searchState) { throw new Error("You can't switch <InstantSearch> from being uncontrolled to controlled"); } else if (props.searchState && !nextProps.searchState) { throw new Error("You can't switch <InstantSearch> from being controlled to uncontrolled"); } } /* eslint valid-jsdoc: 0 */ /** * @description * `<InstantSearch>` is the root component of all React InstantSearch implementations. * It provides all the connected components (aka widgets) a means to interact * with the searchState. * @kind widget * @requirements You will need to have an Algolia account to be able to use this widget. * [Create one now](https://www.algolia.com/users/sign_up). * @propType {string} appId - Your Algolia application id. * @propType {string} apiKey - Your Algolia search-only API key. * @propType {string} indexName - Main index in which to search. * @propType {object} [algoliaClient] - Provide a custom Algolia client instead of the internal one. * @propType {func} [onSearchStateChange] - Function to be called everytime a new search is done. Useful for [URL Routing](guide/Routing.html). * @propType {object} [searchState] - Object to inject some search state. Switches the InstantSearch component in controlled mode. Useful for [URL Routing](guide/Routing.html). * @propType {func} [createURL] - Function to call when creating links, useful for [URL Routing](guide/Routing.html). * @propType {SearchResults|SearchResults[]} [resultsState] - Use this to inject the results that will be used at first rendering. Those results are found by using the `findResultsState` function. Useful for [Server Side Rendering](guide/Server-side_rendering.html). * @example * import {InstantSearch, SearchBox, Hits} from 'react-instantsearch/dom'; * * export default function Search() { * return ( * <InstantSearch * appId="appId" * apiKey="apiKey" * indexName="indexName" * > * <SearchBox /> * <Hits /> * </InstantSearch> * ); * } */ var InstantSearch = function (_Component) { _inherits(InstantSearch, _Component); function InstantSearch(props) { _classCallCheck(this, InstantSearch); var _this = _possibleConstructorReturn(this, (InstantSearch.__proto__ || Object.getPrototypeOf(InstantSearch)).call(this, props)); _this.isControlled = Boolean(props.searchState); var initialState = _this.isControlled ? props.searchState : {}; _this.isUnmounting = false; _this.aisManager = (0, _createInstantSearchManager2.default)({ indexName: props.indexName, searchParameters: props.searchParameters, algoliaClient: props.algoliaClient, initialState: initialState, resultsState: props.resultsState }); return _this; } _createClass(InstantSearch, [{ key: 'componentWillReceiveProps', value: function componentWillReceiveProps(nextProps) { validateNextProps(this.props, nextProps); if (this.props.indexName !== nextProps.indexName) { this.aisManager.updateIndex(nextProps.indexName); } if (this.props.algoliaClient !== nextProps.algoliaClient) { this.aisManager.updateClient(nextProps.algoliaClient); } if (this.isControlled) { this.aisManager.onExternalStateUpdate(nextProps.searchState); } } }, { key: 'componentWillUnmount', value: function componentWillUnmount() { this.isUnmounting = true; this.aisManager.skipSearch(); } }, { key: 'getChildContext', value: function getChildContext() { // If not already cached, cache the bound methods so that we can forward them as part // of the context. if (!this._aisContextCache) { this._aisContextCache = { ais: { onInternalStateUpdate: this.onWidgetsInternalStateUpdate.bind(this), createHrefForState: this.createHrefForState.bind(this), onSearchForFacetValues: this.onSearchForFacetValues.bind(this), onSearchStateChange: this.onSearchStateChange.bind(this), onSearchParameters: this.onSearchParameters.bind(this) } }; } return { ais: _extends({}, this._aisContextCache.ais, { store: this.aisManager.store, widgetsManager: this.aisManager.widgetsManager, mainTargetedIndex: this.props.indexName }) }; } }, { key: 'createHrefForState', value: function createHrefForState(searchState) { searchState = this.aisManager.transitionState(searchState); return this.isControlled && this.props.createURL ? this.props.createURL(searchState, this.getKnownKeys()) : '#'; } }, { key: 'onWidgetsInternalStateUpdate', value: function onWidgetsInternalStateUpdate(searchState) { searchState = this.aisManager.transitionState(searchState); this.onSearchStateChange(searchState); if (!this.isControlled) { this.aisManager.onExternalStateUpdate(searchState); } } }, { key: 'onSearchStateChange', value: function onSearchStateChange(searchState) { if (this.props.onSearchStateChange && !this.isUnmounting) { this.props.onSearchStateChange(searchState); } } }, { key: 'onSearchParameters', value: function onSearchParameters(getSearchParameters, context, props) { if (this.props.onSearchParameters) { var searchState = this.props.searchState ? this.props.searchState : {}; this.props.onSearchParameters(getSearchParameters, context, props, searchState); } } }, { key: 'onSearchForFacetValues', value: function onSearchForFacetValues(searchState) { this.aisManager.onSearchForFacetValues(searchState); } }, { key: 'getKnownKeys', value: function getKnownKeys() { return this.aisManager.getWidgetsIds(); } }, { key: 'render', value: function render() { var childrenCount = _react.Children.count(this.props.children); var _props$root = this.props.root, Root = _props$root.Root, props = _props$root.props; if (childrenCount === 0) return null;else return _react2.default.createElement( Root, props, this.props.children ); } }]); return InstantSearch; }(_react.Component); InstantSearch.propTypes = { // @TODO: These props are currently constant. indexName: _propTypes2.default.string.isRequired, algoliaClient: _propTypes2.default.object.isRequired, searchParameters: _propTypes2.default.object, createURL: _propTypes2.default.func, searchState: _propTypes2.default.object, onSearchStateChange: _propTypes2.default.func, onSearchParameters: _propTypes2.default.func, resultsState: _propTypes2.default.oneOfType([_propTypes2.default.object, _propTypes2.default.array]), children: _propTypes2.default.node, root: _propTypes2.default.shape({ Root: _propTypes2.default.oneOfType([_propTypes2.default.string, _propTypes2.default.func]), props: _propTypes2.default.object }).isRequired }; InstantSearch.childContextTypes = { // @TODO: more precise widgets manager propType ais: _propTypes2.default.object.isRequired }; exports.default = InstantSearch; /***/ }), /* 407 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var _isEmpty2 = __webpack_require__(15); var _isEmpty3 = _interopRequireDefault(_isEmpty2); var _omit2 = __webpack_require__(35); var _omit3 = _interopRequireDefault(_omit2); var _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; exports.default = createInstantSearchManager; var _algoliasearchHelper = __webpack_require__(212); var _algoliasearchHelper2 = _interopRequireDefault(_algoliasearchHelper); var _createWidgetsManager = __webpack_require__(408); var _createWidgetsManager2 = _interopRequireDefault(_createWidgetsManager); var _createStore = __webpack_require__(409); var _createStore2 = _interopRequireDefault(_createStore); var _highlightTags = __webpack_require__(219); var _highlightTags2 = _interopRequireDefault(_highlightTags); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; } /** * Creates a new instance of the InstantSearchManager which controls the widgets and * trigger the search when the widgets are updated. * @param {string} indexName - the main index name * @param {object} initialState - initial widget state * @param {object} SearchParameters - optional additional parameters to send to the algolia API * @return {InstantSearchManager} a new instance of InstantSearchManager */ function createInstantSearchManager(_ref) { var indexName = _ref.indexName, _ref$initialState = _ref.initialState, initialState = _ref$initialState === undefined ? {} : _ref$initialState, algoliaClient = _ref.algoliaClient, _ref$searchParameters = _ref.searchParameters, searchParameters = _ref$searchParameters === undefined ? {} : _ref$searchParameters, resultsState = _ref.resultsState; var baseSP = new _algoliasearchHelper.SearchParameters(_extends({}, searchParameters, { index: indexName }, _highlightTags2.default)); var helper = (0, _algoliasearchHelper2.default)(algoliaClient, indexName, baseSP); helper.on('result', handleSearchSuccess); helper.on('error', handleSearchError); var derivedHelpers = {}; var indexMapping = {}; // keep track of the original index where the parameters applied when sortBy is used. var initialSearchParameters = helper.state; var widgetsManager = (0, _createWidgetsManager2.default)(onWidgetsUpdate); var store = (0, _createStore2.default)({ widgets: initialState, metadata: [], results: resultsState || null, error: null, searching: false, searchingForFacetValues: false }); var skip = false; function skipSearch() { skip = true; } function updateClient(client) { helper.setClient(client); search(); } function getMetadata(state) { return widgetsManager.getWidgets().filter(function (widget) { return Boolean(widget.getMetadata); }).map(function (widget) { return widget.getMetadata(state); }); } function getSearchParameters() { indexMapping = {}; var sharedParameters = widgetsManager.getWidgets().filter(function (widget) { return Boolean(widget.getSearchParameters); }).filter(function (widget) { return !widget.context.multiIndexContext && (widget.props.indexName === indexName || !widget.props.indexName); }).reduce(function (res, widget) { return widget.getSearchParameters(res); }, initialSearchParameters); indexMapping[sharedParameters.index] = indexName; var derivatedWidgets = widgetsManager.getWidgets().filter(function (widget) { return Boolean(widget.getSearchParameters); }).filter(function (widget) { return widget.context.multiIndexContext && widget.context.multiIndexContext.targetedIndex !== indexName || widget.props.indexName && widget.props.indexName !== indexName; }).reduce(function (indices, widget) { var targetedIndex = widget.context.multiIndexContext ? widget.context.multiIndexContext.targetedIndex : widget.props.indexName; var index = indices.find(function (i) { return i.targetedIndex === targetedIndex; }); if (index) { index.widgets.push(widget); } else { indices.push({ targetedIndex: targetedIndex, widgets: [widget] }); } return indices; }, []); var mainIndexParameters = widgetsManager.getWidgets().filter(function (widget) { return Boolean(widget.getSearchParameters); }).filter(function (widget) { return widget.context.multiIndexContext && widget.context.multiIndexContext.targetedIndex === indexName || widget.props.indexName && widget.props.indexName === indexName; }).reduce(function (res, widget) { return widget.getSearchParameters(res); }, sharedParameters); return { sharedParameters: sharedParameters, mainIndexParameters: mainIndexParameters, derivatedWidgets: derivatedWidgets }; } function search() { if (!skip) { var _getSearchParameters = getSearchParameters(helper.state), sharedParameters = _getSearchParameters.sharedParameters, mainIndexParameters = _getSearchParameters.mainIndexParameters, derivatedWidgets = _getSearchParameters.derivatedWidgets; Object.keys(derivedHelpers).forEach(function (key) { return derivedHelpers[key].detach(); }); derivedHelpers = {}; helper.setState(sharedParameters); derivatedWidgets.forEach(function (derivatedSearchParameters) { var index = derivatedSearchParameters.targetedIndex; var derivedHelper = helper.derive(function () { var parameters = derivatedSearchParameters.widgets.reduce(function (res, widget) { return widget.getSearchParameters(res); }, sharedParameters); indexMapping[parameters.index] = index; return parameters; }); derivedHelper.on('result', handleSearchSuccess); derivedHelper.on('error', handleSearchError); derivedHelpers[index] = derivedHelper; }); helper.setState(mainIndexParameters); helper.search(); } } function handleSearchSuccess(content) { var state = store.getState(); var results = state.results ? state.results : {}; /* if switching from mono index to multi index and vice versa, results needs to reset to {}*/ results = !(0, _isEmpty3.default)(derivedHelpers) && results.getFacetByName ? {} : results; if (!(0, _isEmpty3.default)(derivedHelpers)) { results[indexMapping[content.index]] = content; } else { results = content; } var nextState = (0, _omit3.default)(_extends({}, store.getState(), { results: results, searching: false, error: null }), 'resultsFacetValues'); store.setState(nextState); } function handleSearchError(error) { var nextState = (0, _omit3.default)(_extends({}, store.getState(), { error: error, searching: false }), 'resultsFacetValues'); store.setState(nextState); } // Called whenever a widget has been rendered with new props. function onWidgetsUpdate() { var metadata = getMetadata(store.getState().widgets); store.setState(_extends({}, store.getState(), { metadata: metadata, searching: true })); // Since the `getSearchParameters` method of widgets also depends on props, // the result search parameters might have changed. search(); } function transitionState(nextSearchState) { var searchState = store.getState().widgets; return widgetsManager.getWidgets().filter(function (widget) { return Boolean(widget.transitionState); }).reduce(function (res, widget) { return widget.transitionState(searchState, res); }, nextSearchState); } function onExternalStateUpdate(nextSearchState) { var metadata = getMetadata(nextSearchState); store.setState(_extends({}, store.getState(), { widgets: nextSearchState, metadata: metadata, searching: true })); search(); } function onSearchForFacetValues(nextSearchState) { store.setState(_extends({}, store.getState(), { searchingForFacetValues: true })); helper.searchForFacetValues(nextSearchState.facetName, nextSearchState.query).then(function (content) { var _extends2; store.setState(_extends({}, store.getState(), { resultsFacetValues: _extends({}, store.getState().resultsFacetValues, (_extends2 = {}, _defineProperty(_extends2, nextSearchState.facetName, content.facetHits), _defineProperty(_extends2, 'query', nextSearchState.query), _extends2)), searchingForFacetValues: false })); }, function (error) { store.setState(_extends({}, store.getState(), { error: error, searchingForFacetValues: false })); }).catch(function (error) { // Since setState is synchronous, any error that occurs in the render of a // component will be swallowed by this promise. // This is a trick to make the error show up correctly in the console. // See http://stackoverflow.com/a/30741722/969302 setTimeout(function () { throw error; }); }); } function updateIndex(newIndex) { initialSearchParameters = initialSearchParameters.setIndex(newIndex); search(); } function getWidgetsIds() { return store.getState().metadata.reduce(function (res, meta) { return typeof meta.id !== 'undefined' ? res.concat(meta.id) : res; }, []); } return { store: store, widgetsManager: widgetsManager, getWidgetsIds: getWidgetsIds, onExternalStateUpdate: onExternalStateUpdate, transitionState: transitionState, onSearchForFacetValues: onSearchForFacetValues, updateClient: updateClient, updateIndex: updateIndex, skipSearch: skipSearch }; } /***/ }), /* 408 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = createWidgetsManager; var _utils = __webpack_require__(44); function createWidgetsManager(onWidgetsUpdate) { var widgets = []; // Is an update scheduled? var scheduled = false; // The state manager's updates need to be batched since more than one // component can register or unregister widgets during the same tick. function scheduleUpdate() { if (scheduled) { return; } scheduled = true; (0, _utils.defer)(function () { scheduled = false; onWidgetsUpdate(); }); } return { registerWidget: function registerWidget(widget) { widgets.push(widget); scheduleUpdate(); return function unregisterWidget() { widgets.splice(widgets.indexOf(widget), 1); scheduleUpdate(); }; }, update: scheduleUpdate, getWidgets: function getWidgets() { return widgets; } }; } /***/ }), /* 409 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = createStore; function createStore(initialState) { var state = initialState; var listeners = []; function dispatch() { listeners.forEach(function (listener) { return listener(); }); } return { getState: function getState() { return state; }, setState: function setState(nextState) { state = nextState; dispatch(); }, subscribe: function subscribe(listener) { listeners.push(listener); return function unsubcribe() { listeners.splice(listeners.indexOf(listener), 1); }; } }; } /***/ }), /* 410 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }(); exports.default = createIndex; var _propTypes = __webpack_require__(0); var _propTypes2 = _interopRequireDefault(_propTypes); var _react = __webpack_require__(4); var _react2 = _interopRequireDefault(_react); var _Index = __webpack_require__(411); var _Index2 = _interopRequireDefault(_Index); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; } function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; } /** * Creates a specialized root Index component. It accepts * a specification of the root Element. * @param {object} root - the defininition of the root of an Index sub tree. * @returns {object} a Index root */ function createIndex(root) { var _class, _temp; return _temp = _class = function (_Component) { _inherits(CreateIndex, _Component); function CreateIndex() { _classCallCheck(this, CreateIndex); return _possibleConstructorReturn(this, (CreateIndex.__proto__ || Object.getPrototypeOf(CreateIndex)).apply(this, arguments)); } _createClass(CreateIndex, [{ key: 'render', value: function render() { return _react2.default.createElement( _Index2.default, { indexName: this.props.indexName, root: root }, this.props.children ); } }]); return CreateIndex; }(_react.Component), _class.propTypes = { children: _propTypes2.default.oneOfType([_propTypes2.default.arrayOf(_propTypes2.default.node), _propTypes2.default.node]), indexName: _propTypes2.default.string.isRequired }, _temp; } /***/ }), /* 411 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }(); var _propTypes = __webpack_require__(0); var _propTypes2 = _interopRequireDefault(_propTypes); var _react = __webpack_require__(4); var _react2 = _interopRequireDefault(_react); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; } function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; } /* eslint valid-jsdoc: 0 */ /** * @description * `<Index>` is the component that allows you to apply widgets to a dedicated index. It's * useful if you want to build an interface that targets multiple indices. * @kind widget * @name <Index> * @propType {string} indexName - index in which to search. * @example * import {InstantSearch, Index, SearchBox, Hits, Configure} from 'react-instantsearch/dom'; * * export default function Search() { * return ( * <InstantSearch appId="" apiKey="" indexName="index1"> <SearchBox/> <Configure hitsPerPage={1} /> <Index indexName="index1"> <Hits /> </Index> <Index indexName="index2"> <Hits /> </Index> </InstantSearch> * ); * } */ var Index = function (_Component) { _inherits(Index, _Component); function Index(props, context) { _classCallCheck(this, Index); var _this = _possibleConstructorReturn(this, (Index.__proto__ || Object.getPrototypeOf(Index)).call(this, props)); var widgetsManager = context.ais.widgetsManager; /* we want <Index> to be seen as a regular widget. It means that with only <Index> present a new query will be sent to Algolia. That way you don't need a virtual hits widget to use the connectAutoComplete. */ _this.unregisterWidget = widgetsManager.registerWidget(_this); return _this; } _createClass(Index, [{ key: 'componentWillMount', value: function componentWillMount() { this.context.ais.onSearchParameters(this.getSearchParameters, this.getChildContext(), this.props); } }, { key: 'componentWillReceiveProps', value: function componentWillReceiveProps(nextProps) { if (this.props.indexName !== nextProps.indexName) { this.context.ais.widgetsManager.update(); } } }, { key: 'componentWillUnmount', value: function componentWillUnmount() { this.unregisterWidget(); } }, { key: 'getChildContext', value: function getChildContext() { return { multiIndexContext: { targetedIndex: this.props.indexName } }; } }, { key: 'getSearchParameters', value: function getSearchParameters(searchParameters, props) { return searchParameters.setIndex(this.props ? this.props.indexName : props.indexName); } }, { key: 'render', value: function render() { var childrenCount = _react.Children.count(this.props.children); var _props$root = this.props.root, Root = _props$root.Root, props = _props$root.props; if (childrenCount === 0) return null;else return _react2.default.createElement( Root, props, this.props.children ); } }]); return Index; }(_react.Component); Index.propTypes = { // @TODO: These props are currently constant. indexName: _propTypes2.default.string.isRequired, children: _propTypes2.default.node, root: _propTypes2.default.shape({ Root: _propTypes2.default.oneOfType([_propTypes2.default.string, _propTypes2.default.func]), props: _propTypes2.default.object }).isRequired }; Index.childContextTypes = { multiIndexContext: _propTypes2.default.object.isRequired }; Index.contextTypes = { // @TODO: more precise widgets manager propType ais: _propTypes2.default.object.isRequired }; exports.default = Index; /***/ }), /* 412 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; var AlgoliaSearchCore = __webpack_require__(413); var createAlgoliasearch = __webpack_require__(425); module.exports = createAlgoliasearch(AlgoliaSearchCore, '(lite) '); /***/ }), /* 413 */ /***/ (function(module, exports, __webpack_require__) { /* WEBPACK VAR INJECTION */(function(process) {module.exports = AlgoliaSearchCore; var errors = __webpack_require__(220); var exitPromise = __webpack_require__(414); var IndexCore = __webpack_require__(415); var store = __webpack_require__(422); // We will always put the API KEY in the JSON body in case of too long API KEY, // to avoid query string being too long and failing in various conditions (our server limit, browser limit, // proxies limit) var MAX_API_KEY_LENGTH = 500; var RESET_APP_DATA_TIMER = process.env.RESET_APP_DATA_TIMER && parseInt(process.env.RESET_APP_DATA_TIMER, 10) || 60 * 2 * 1000; // after 2 minutes reset to first host /* * Algolia Search library initialization * https://www.algolia.com/ * * @param {string} applicationID - Your applicationID, found in your dashboard * @param {string} apiKey - Your API key, found in your dashboard * @param {Object} [opts] * @param {number} [opts.timeout=2000] - The request timeout set in milliseconds, * another request will be issued after this timeout * @param {string} [opts.protocol='http:'] - The protocol used to query Algolia Search API. * Set to 'https:' to force using https. * Default to document.location.protocol in browsers * @param {Object|Array} [opts.hosts={ * read: [this.applicationID + '-dsn.algolia.net'].concat([ * this.applicationID + '-1.algolianet.com', * this.applicationID + '-2.algolianet.com', * this.applicationID + '-3.algolianet.com'] * ]), * write: [this.applicationID + '.algolia.net'].concat([ * this.applicationID + '-1.algolianet.com', * this.applicationID + '-2.algolianet.com', * this.applicationID + '-3.algolianet.com'] * ]) - The hosts to use for Algolia Search API. * If you provide them, you will less benefit from our HA implementation */ function AlgoliaSearchCore(applicationID, apiKey, opts) { var debug = __webpack_require__(221)('algoliasearch'); var clone = __webpack_require__(210); var isArray = __webpack_require__(345); var map = __webpack_require__(346); var usage = 'Usage: algoliasearch(applicationID, apiKey, opts)'; if (opts._allowEmptyCredentials !== true && !applicationID) { throw new errors.AlgoliaSearchError('Please provide an application ID. ' + usage); } if (opts._allowEmptyCredentials !== true && !apiKey) { throw new errors.AlgoliaSearchError('Please provide an API key. ' + usage); } this.applicationID = applicationID; this.apiKey = apiKey; this.hosts = { read: [], write: [] }; opts = opts || {}; var protocol = opts.protocol || 'https:'; this._timeouts = opts.timeouts || { connect: 1 * 1000, // 500ms connect is GPRS latency read: 2 * 1000, write: 30 * 1000 }; // backward compat, if opts.timeout is passed, we use it to configure all timeouts like before if (opts.timeout) { this._timeouts.connect = this._timeouts.read = this._timeouts.write = opts.timeout; } // while we advocate for colon-at-the-end values: 'http:' for `opts.protocol` // we also accept `http` and `https`. It's a common error. if (!/:$/.test(protocol)) { protocol = protocol + ':'; } if (opts.protocol !== 'http:' && opts.protocol !== 'https:') { throw new errors.AlgoliaSearchError('protocol must be `http:` or `https:` (was `' + opts.protocol + '`)'); } this._checkAppIdData(); if (!opts.hosts) { var defaultHosts = map(this._shuffleResult, function(hostNumber) { return applicationID + '-' + hostNumber + '.algolianet.com'; }); // no hosts given, compute defaults this.hosts.read = [this.applicationID + '-dsn.algolia.net'].concat(defaultHosts); this.hosts.write = [this.applicationID + '.algolia.net'].concat(defaultHosts); } else if (isArray(opts.hosts)) { // when passing custom hosts, we need to have a different host index if the number // of write/read hosts are different. this.hosts.read = clone(opts.hosts); this.hosts.write = clone(opts.hosts); } else { this.hosts.read = clone(opts.hosts.read); this.hosts.write = clone(opts.hosts.write); } // add protocol and lowercase hosts this.hosts.read = map(this.hosts.read, prepareHost(protocol)); this.hosts.write = map(this.hosts.write, prepareHost(protocol)); this.extraHeaders = {}; // In some situations you might want to warm the cache this.cache = opts._cache || {}; this._ua = opts._ua; this._useCache = opts._useCache === undefined || opts._cache ? true : opts._useCache; this._useFallback = opts.useFallback === undefined ? true : opts.useFallback; this._setTimeout = opts._setTimeout; debug('init done, %j', this); } /* * Get the index object initialized * * @param indexName the name of index * @param callback the result callback with one argument (the Index instance) */ AlgoliaSearchCore.prototype.initIndex = function(indexName) { return new IndexCore(this, indexName); }; /** * Add an extra field to the HTTP request * * @param name the header field name * @param value the header field value */ AlgoliaSearchCore.prototype.setExtraHeader = function(name, value) { this.extraHeaders[name.toLowerCase()] = value; }; /** * Get the value of an extra HTTP header * * @param name the header field name */ AlgoliaSearchCore.prototype.getExtraHeader = function(name) { return this.extraHeaders[name.toLowerCase()]; }; /** * Remove an extra field from the HTTP request * * @param name the header field name */ AlgoliaSearchCore.prototype.unsetExtraHeader = function(name) { delete this.extraHeaders[name.toLowerCase()]; }; /** * Augment sent x-algolia-agent with more data, each agent part * is automatically separated from the others by a semicolon; * * @param algoliaAgent the agent to add */ AlgoliaSearchCore.prototype.addAlgoliaAgent = function(algoliaAgent) { if (this._ua.indexOf(';' + algoliaAgent) === -1) { this._ua += ';' + algoliaAgent; } }; /* * Wrapper that try all hosts to maximize the quality of service */ AlgoliaSearchCore.prototype._jsonRequest = function(initialOpts) { this._checkAppIdData(); var requestDebug = __webpack_require__(221)('algoliasearch:' + initialOpts.url); var body; var additionalUA = initialOpts.additionalUA || ''; var cache = initialOpts.cache; var client = this; var tries = 0; var usingFallback = false; var hasFallback = client._useFallback && client._request.fallback && initialOpts.fallback; var headers; if ( this.apiKey.length > MAX_API_KEY_LENGTH && initialOpts.body !== undefined && (initialOpts.body.params !== undefined || // index.search() initialOpts.body.requests !== undefined) // client.search() ) { initialOpts.body.apiKey = this.apiKey; headers = this._computeRequestHeaders(additionalUA, false); } else { headers = this._computeRequestHeaders(additionalUA); } if (initialOpts.body !== undefined) { body = safeJSONStringify(initialOpts.body); } requestDebug('request start'); var debugData = []; function doRequest(requester, reqOpts) { client._checkAppIdData(); var startTime = new Date(); var cacheID; if (client._useCache) { cacheID = initialOpts.url; } // as we sometime use POST requests to pass parameters (like query='aa'), // the cacheID must also include the body to be different between calls if (client._useCache && body) { cacheID += '_body_' + reqOpts.body; } // handle cache existence if (client._useCache && cache && cache[cacheID] !== undefined) { requestDebug('serving response from cache'); return client._promise.resolve(JSON.parse(cache[cacheID])); } // if we reached max tries if (tries >= client.hosts[initialOpts.hostType].length) { if (!hasFallback || usingFallback) { requestDebug('could not get any response'); // then stop return client._promise.reject(new errors.AlgoliaSearchError( 'Cannot connect to the AlgoliaSearch API.' + ' Send an email to support@algolia.com to report and resolve the issue.' + ' Application id was: ' + client.applicationID, {debugData: debugData} )); } requestDebug('switching to fallback'); // let's try the fallback starting from here tries = 0; // method, url and body are fallback dependent reqOpts.method = initialOpts.fallback.method; reqOpts.url = initialOpts.fallback.url; reqOpts.jsonBody = initialOpts.fallback.body; if (reqOpts.jsonBody) { reqOpts.body = safeJSONStringify(reqOpts.jsonBody); } // re-compute headers, they could be omitting the API KEY headers = client._computeRequestHeaders(additionalUA); reqOpts.timeouts = client._getTimeoutsForRequest(initialOpts.hostType); client._setHostIndexByType(0, initialOpts.hostType); usingFallback = true; // the current request is now using fallback return doRequest(client._request.fallback, reqOpts); } var currentHost = client._getHostByType(initialOpts.hostType); var url = currentHost + reqOpts.url; var options = { body: reqOpts.body, jsonBody: reqOpts.jsonBody, method: reqOpts.method, headers: headers, timeouts: reqOpts.timeouts, debug: requestDebug }; requestDebug('method: %s, url: %s, headers: %j, timeouts: %d', options.method, url, options.headers, options.timeouts); if (requester === client._request.fallback) { requestDebug('using fallback'); } // `requester` is any of this._request or this._request.fallback // thus it needs to be called using the client as context return requester.call(client, url, options).then(success, tryFallback); function success(httpResponse) { // compute the status of the response, // // When in browser mode, using XDR or JSONP, we have no statusCode available // So we rely on our API response `status` property. // But `waitTask` can set a `status` property which is not the statusCode (it's the task status) // So we check if there's a `message` along `status` and it means it's an error // // That's the only case where we have a response.status that's not the http statusCode var status = httpResponse && httpResponse.body && httpResponse.body.message && httpResponse.body.status || // this is important to check the request statusCode AFTER the body eventual // statusCode because some implementations (jQuery XDomainRequest transport) may // send statusCode 200 while we had an error httpResponse.statusCode || // When in browser mode, using XDR or JSONP // we default to success when no error (no response.status && response.message) // If there was a JSON.parse() error then body is null and it fails httpResponse && httpResponse.body && 200; requestDebug('received response: statusCode: %s, computed statusCode: %d, headers: %j', httpResponse.statusCode, status, httpResponse.headers); var httpResponseOk = Math.floor(status / 100) === 2; var endTime = new Date(); debugData.push({ currentHost: currentHost, headers: removeCredentials(headers), content: body || null, contentLength: body !== undefined ? body.length : null, method: reqOpts.method, timeouts: reqOpts.timeouts, url: reqOpts.url, startTime: startTime, endTime: endTime, duration: endTime - startTime, statusCode: status }); if (httpResponseOk) { if (client._useCache && cache) { cache[cacheID] = httpResponse.responseText; } return httpResponse.body; } var shouldRetry = Math.floor(status / 100) !== 4; if (shouldRetry) { tries += 1; return retryRequest(); } requestDebug('unrecoverable error'); // no success and no retry => fail var unrecoverableError = new errors.AlgoliaSearchError( httpResponse.body && httpResponse.body.message, {debugData: debugData, statusCode: status} ); return client._promise.reject(unrecoverableError); } function tryFallback(err) { // error cases: // While not in fallback mode: // - CORS not supported // - network error // While in fallback mode: // - timeout // - network error // - badly formatted JSONP (script loaded, did not call our callback) // In both cases: // - uncaught exception occurs (TypeError) requestDebug('error: %s, stack: %s', err.message, err.stack); var endTime = new Date(); debugData.push({ currentHost: currentHost, headers: removeCredentials(headers), content: body || null, contentLength: body !== undefined ? body.length : null, method: reqOpts.method, timeouts: reqOpts.timeouts, url: reqOpts.url, startTime: startTime, endTime: endTime, duration: endTime - startTime }); if (!(err instanceof errors.AlgoliaSearchError)) { err = new errors.Unknown(err && err.message, err); } tries += 1; // stop the request implementation when: if ( // we did not generate this error, // it comes from a throw in some other piece of code err instanceof errors.Unknown || // server sent unparsable JSON err instanceof errors.UnparsableJSON || // max tries and already using fallback or no fallback tries >= client.hosts[initialOpts.hostType].length && (usingFallback || !hasFallback)) { // stop request implementation for this command err.debugData = debugData; return client._promise.reject(err); } // When a timeout occured, retry by raising timeout if (err instanceof errors.RequestTimeout) { return retryRequestWithHigherTimeout(); } return retryRequest(); } function retryRequest() { requestDebug('retrying request'); client._incrementHostIndex(initialOpts.hostType); return doRequest(requester, reqOpts); } function retryRequestWithHigherTimeout() { requestDebug('retrying request with higher timeout'); client._incrementHostIndex(initialOpts.hostType); client._incrementTimeoutMultipler(); reqOpts.timeouts = client._getTimeoutsForRequest(initialOpts.hostType); return doRequest(requester, reqOpts); } } var promise = doRequest( client._request, { url: initialOpts.url, method: initialOpts.method, body: body, jsonBody: initialOpts.body, timeouts: client._getTimeoutsForRequest(initialOpts.hostType) } ); // either we have a callback // either we are using promises if (typeof initialOpts.callback === 'function') { promise.then(function okCb(content) { exitPromise(function() { initialOpts.callback(null, content); }, client._setTimeout || setTimeout); }, function nookCb(err) { exitPromise(function() { initialOpts.callback(err); }, client._setTimeout || setTimeout); }); } else { return promise; } }; /* * Transform search param object in query string * @param {object} args arguments to add to the current query string * @param {string} params current query string * @return {string} the final query string */ AlgoliaSearchCore.prototype._getSearchParams = function(args, params) { if (args === undefined || args === null) { return params; } for (var key in args) { if (key !== null && args[key] !== undefined && args.hasOwnProperty(key)) { params += params === '' ? '' : '&'; params += key + '=' + encodeURIComponent(Object.prototype.toString.call(args[key]) === '[object Array]' ? safeJSONStringify(args[key]) : args[key]); } } return params; }; AlgoliaSearchCore.prototype._computeRequestHeaders = function(additionalUA, withAPIKey) { var forEach = __webpack_require__(111); var ua = additionalUA ? this._ua + ';' + additionalUA : this._ua; var requestHeaders = { 'x-algolia-agent': ua, 'x-algolia-application-id': this.applicationID }; // browser will inline headers in the url, node.js will use http headers // but in some situations, the API KEY will be too long (big secured API keys) // so if the request is a POST and the KEY is very long, we will be asked to not put // it into headers but in the JSON body if (withAPIKey !== false) { requestHeaders['x-algolia-api-key'] = this.apiKey; } if (this.userToken) { requestHeaders['x-algolia-usertoken'] = this.userToken; } if (this.securityTags) { requestHeaders['x-algolia-tagfilters'] = this.securityTags; } forEach(this.extraHeaders, function addToRequestHeaders(value, key) { requestHeaders[key] = value; }); return requestHeaders; }; /** * Search through multiple indices at the same time * @param {Object[]} queries An array of queries you want to run. * @param {string} queries[].indexName The index name you want to target * @param {string} [queries[].query] The query to issue on this index. Can also be passed into `params` * @param {Object} queries[].params Any search param like hitsPerPage, .. * @param {Function} callback Callback to be called * @return {Promise|undefined} Returns a promise if no callback given */ AlgoliaSearchCore.prototype.search = function(queries, opts, callback) { var isArray = __webpack_require__(345); var map = __webpack_require__(346); var usage = 'Usage: client.search(arrayOfQueries[, callback])'; if (!isArray(queries)) { throw new Error(usage); } if (typeof opts === 'function') { callback = opts; opts = {}; } else if (opts === undefined) { opts = {}; } var client = this; var postObj = { requests: map(queries, function prepareRequest(query) { var params = ''; // allow query.query // so we are mimicing the index.search(query, params) method // {indexName:, query:, params:} if (query.query !== undefined) { params += 'query=' + encodeURIComponent(query.query); } return { indexName: query.indexName, params: client._getSearchParams(query.params, params) }; }) }; var JSONPParams = map(postObj.requests, function prepareJSONPParams(request, requestId) { return requestId + '=' + encodeURIComponent( '/1/indexes/' + encodeURIComponent(request.indexName) + '?' + request.params ); }).join('&'); var url = '/1/indexes/*/queries'; if (opts.strategy !== undefined) { url += '?strategy=' + opts.strategy; } return this._jsonRequest({ cache: this.cache, method: 'POST', url: url, body: postObj, hostType: 'read', fallback: { method: 'GET', url: '/1/indexes/*', body: { params: JSONPParams } }, callback: callback }); }; /** * Set the extra security tagFilters header * @param {string|array} tags The list of tags defining the current security filters */ AlgoliaSearchCore.prototype.setSecurityTags = function(tags) { if (Object.prototype.toString.call(tags) === '[object Array]') { var strTags = []; for (var i = 0; i < tags.length; ++i) { if (Object.prototype.toString.call(tags[i]) === '[object Array]') { var oredTags = []; for (var j = 0; j < tags[i].length; ++j) { oredTags.push(tags[i][j]); } strTags.push('(' + oredTags.join(',') + ')'); } else { strTags.push(tags[i]); } } tags = strTags.join(','); } this.securityTags = tags; }; /** * Set the extra user token header * @param {string} userToken The token identifying a uniq user (used to apply rate limits) */ AlgoliaSearchCore.prototype.setUserToken = function(userToken) { this.userToken = userToken; }; /** * Clear all queries in client's cache * @return undefined */ AlgoliaSearchCore.prototype.clearCache = function() { this.cache = {}; }; /** * Set the number of milliseconds a request can take before automatically being terminated. * @deprecated * @param {Number} milliseconds */ AlgoliaSearchCore.prototype.setRequestTimeout = function(milliseconds) { if (milliseconds) { this._timeouts.connect = this._timeouts.read = this._timeouts.write = milliseconds; } }; /** * Set the three different (connect, read, write) timeouts to be used when requesting * @param {Object} timeouts */ AlgoliaSearchCore.prototype.setTimeouts = function(timeouts) { this._timeouts = timeouts; }; /** * Get the three different (connect, read, write) timeouts to be used when requesting * @param {Object} timeouts */ AlgoliaSearchCore.prototype.getTimeouts = function() { return this._timeouts; }; AlgoliaSearchCore.prototype._getAppIdData = function() { var data = store.get(this.applicationID); if (data !== null) this._cacheAppIdData(data); return data; }; AlgoliaSearchCore.prototype._setAppIdData = function(data) { data.lastChange = (new Date()).getTime(); this._cacheAppIdData(data); return store.set(this.applicationID, data); }; AlgoliaSearchCore.prototype._checkAppIdData = function() { var data = this._getAppIdData(); var now = (new Date()).getTime(); if (data === null || now - data.lastChange > RESET_APP_DATA_TIMER) { return this._resetInitialAppIdData(data); } return data; }; AlgoliaSearchCore.prototype._resetInitialAppIdData = function(data) { var newData = data || {}; newData.hostIndexes = {read: 0, write: 0}; newData.timeoutMultiplier = 1; newData.shuffleResult = newData.shuffleResult || shuffle([1, 2, 3]); return this._setAppIdData(newData); }; AlgoliaSearchCore.prototype._cacheAppIdData = function(data) { this._hostIndexes = data.hostIndexes; this._timeoutMultiplier = data.timeoutMultiplier; this._shuffleResult = data.shuffleResult; }; AlgoliaSearchCore.prototype._partialAppIdDataUpdate = function(newData) { var foreach = __webpack_require__(111); var currentData = this._getAppIdData(); foreach(newData, function(value, key) { currentData[key] = value; }); return this._setAppIdData(currentData); }; AlgoliaSearchCore.prototype._getHostByType = function(hostType) { return this.hosts[hostType][this._getHostIndexByType(hostType)]; }; AlgoliaSearchCore.prototype._getTimeoutMultiplier = function() { return this._timeoutMultiplier; }; AlgoliaSearchCore.prototype._getHostIndexByType = function(hostType) { return this._hostIndexes[hostType]; }; AlgoliaSearchCore.prototype._setHostIndexByType = function(hostIndex, hostType) { var clone = __webpack_require__(210); var newHostIndexes = clone(this._hostIndexes); newHostIndexes[hostType] = hostIndex; this._partialAppIdDataUpdate({hostIndexes: newHostIndexes}); return hostIndex; }; AlgoliaSearchCore.prototype._incrementHostIndex = function(hostType) { return this._setHostIndexByType( (this._getHostIndexByType(hostType) + 1) % this.hosts[hostType].length, hostType ); }; AlgoliaSearchCore.prototype._incrementTimeoutMultipler = function() { var timeoutMultiplier = Math.max(this._timeoutMultiplier + 1, 4); return this._partialAppIdDataUpdate({timeoutMultiplier: timeoutMultiplier}); }; AlgoliaSearchCore.prototype._getTimeoutsForRequest = function(hostType) { return { connect: this._timeouts.connect * this._timeoutMultiplier, complete: this._timeouts[hostType] * this._timeoutMultiplier }; }; function prepareHost(protocol) { return function prepare(host) { return protocol + '//' + host.toLowerCase(); }; } // Prototype.js < 1.7, a widely used library, defines a weird // Array.prototype.toJSON function that will fail to stringify our content // appropriately // refs: // - https://groups.google.com/forum/#!topic/prototype-core/E-SAVvV_V9Q // - https://github.com/sstephenson/prototype/commit/038a2985a70593c1a86c230fadbdfe2e4898a48c // - http://stackoverflow.com/a/3148441/147079 function safeJSONStringify(obj) { /* eslint no-extend-native:0 */ if (Array.prototype.toJSON === undefined) { return JSON.stringify(obj); } var toJSON = Array.prototype.toJSON; delete Array.prototype.toJSON; var out = JSON.stringify(obj); Array.prototype.toJSON = toJSON; return out; } function shuffle(array) { var currentIndex = array.length; var temporaryValue; var randomIndex; // While there remain elements to shuffle... while (currentIndex !== 0) { // Pick a remaining element... randomIndex = Math.floor(Math.random() * currentIndex); currentIndex -= 1; // And swap it with the current element. temporaryValue = array[currentIndex]; array[currentIndex] = array[randomIndex]; array[randomIndex] = temporaryValue; } return array; } function removeCredentials(headers) { var newHeaders = {}; for (var headerName in headers) { if (Object.prototype.hasOwnProperty.call(headers, headerName)) { var value; if (headerName === 'x-algolia-api-key' || headerName === 'x-algolia-application-id') { value = '**hidden for security purposes**'; } else { value = headers[headerName]; } newHeaders[headerName] = value; } } return newHeaders; } /* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(109))) /***/ }), /* 414 */ /***/ (function(module, exports) { // Parse cloud does not supports setTimeout // We do not store a setTimeout reference in the client everytime // We only fallback to a fake setTimeout when not available // setTimeout cannot be override globally sadly module.exports = function exitPromise(fn, _setTimeout) { _setTimeout(fn, 0); }; /***/ }), /* 415 */ /***/ (function(module, exports, __webpack_require__) { var buildSearchMethod = __webpack_require__(351); var deprecate = __webpack_require__(416); var deprecatedMessage = __webpack_require__(417); module.exports = IndexCore; /* * Index class constructor. * You should not use this method directly but use initIndex() function */ function IndexCore(algoliasearch, indexName) { this.indexName = indexName; this.as = algoliasearch; this.typeAheadArgs = null; this.typeAheadValueOption = null; // make sure every index instance has it's own cache this.cache = {}; } /* * Clear all queries in cache */ IndexCore.prototype.clearCache = function() { this.cache = {}; }; /* * Search inside the index using XMLHttpRequest request (Using a POST query to * minimize number of OPTIONS queries: Cross-Origin Resource Sharing). * * @param {string} [query] the full text query * @param {object} [args] (optional) if set, contains an object with query parameters: * - page: (integer) Pagination parameter used to select the page to retrieve. * Page is zero-based and defaults to 0. Thus, * to retrieve the 10th page you need to set page=9 * - hitsPerPage: (integer) Pagination parameter used to select the number of hits per page. Defaults to 20. * - attributesToRetrieve: a string that contains the list of object attributes * you want to retrieve (let you minimize the answer size). * Attributes are separated with a comma (for example "name,address"). * You can also use an array (for example ["name","address"]). * By default, all attributes are retrieved. You can also use '*' to retrieve all * values when an attributesToRetrieve setting is specified for your index. * - attributesToHighlight: a string that contains the list of attributes you * want to highlight according to the query. * Attributes are separated by a comma. You can also use an array (for example ["name","address"]). * If an attribute has no match for the query, the raw value is returned. * By default all indexed text attributes are highlighted. * You can use `*` if you want to highlight all textual attributes. * Numerical attributes are not highlighted. * A matchLevel is returned for each highlighted attribute and can contain: * - full: if all the query terms were found in the attribute, * - partial: if only some of the query terms were found, * - none: if none of the query terms were found. * - attributesToSnippet: a string that contains the list of attributes to snippet alongside * the number of words to return (syntax is `attributeName:nbWords`). * Attributes are separated by a comma (Example: attributesToSnippet=name:10,content:10). * You can also use an array (Example: attributesToSnippet: ['name:10','content:10']). * By default no snippet is computed. * - minWordSizefor1Typo: the minimum number of characters in a query word to accept one typo in this word. * Defaults to 3. * - minWordSizefor2Typos: the minimum number of characters in a query word * to accept two typos in this word. Defaults to 7. * - getRankingInfo: if set to 1, the result hits will contain ranking * information in _rankingInfo attribute. * - aroundLatLng: search for entries around a given * latitude/longitude (specified as two floats separated by a comma). * For example aroundLatLng=47.316669,5.016670). * You can specify the maximum distance in meters with the aroundRadius parameter (in meters) * and the precision for ranking with aroundPrecision * (for example if you set aroundPrecision=100, two objects that are distant of * less than 100m will be considered as identical for "geo" ranking parameter). * At indexing, you should specify geoloc of an object with the _geoloc attribute * (in the form {"_geoloc":{"lat":48.853409, "lng":2.348800}}) * - insideBoundingBox: search entries inside a given area defined by the two extreme points * of a rectangle (defined by 4 floats: p1Lat,p1Lng,p2Lat,p2Lng). * For example insideBoundingBox=47.3165,4.9665,47.3424,5.0201). * At indexing, you should specify geoloc of an object with the _geoloc attribute * (in the form {"_geoloc":{"lat":48.853409, "lng":2.348800}}) * - numericFilters: a string that contains the list of numeric filters you want to * apply separated by a comma. * The syntax of one filter is `attributeName` followed by `operand` followed by `value`. * Supported operands are `<`, `<=`, `=`, `>` and `>=`. * You can have multiple conditions on one attribute like for example numericFilters=price>100,price<1000. * You can also use an array (for example numericFilters: ["price>100","price<1000"]). * - tagFilters: filter the query by a set of tags. You can AND tags by separating them by commas. * To OR tags, you must add parentheses. For example, tags=tag1,(tag2,tag3) means tag1 AND (tag2 OR tag3). * You can also use an array, for example tagFilters: ["tag1",["tag2","tag3"]] * means tag1 AND (tag2 OR tag3). * At indexing, tags should be added in the _tags** attribute * of objects (for example {"_tags":["tag1","tag2"]}). * - facetFilters: filter the query by a list of facets. * Facets are separated by commas and each facet is encoded as `attributeName:value`. * For example: `facetFilters=category:Book,author:John%20Doe`. * You can also use an array (for example `["category:Book","author:John%20Doe"]`). * - facets: List of object attributes that you want to use for faceting. * Comma separated list: `"category,author"` or array `['category','author']` * Only attributes that have been added in **attributesForFaceting** index setting * can be used in this parameter. * You can also use `*` to perform faceting on all attributes specified in **attributesForFaceting**. * - queryType: select how the query words are interpreted, it can be one of the following value: * - prefixAll: all query words are interpreted as prefixes, * - prefixLast: only the last word is interpreted as a prefix (default behavior), * - prefixNone: no query word is interpreted as a prefix. This option is not recommended. * - optionalWords: a string that contains the list of words that should * be considered as optional when found in the query. * Comma separated and array are accepted. * - distinct: If set to 1, enable the distinct feature (disabled by default) * if the attributeForDistinct index setting is set. * This feature is similar to the SQL "distinct" keyword: when enabled * in a query with the distinct=1 parameter, * all hits containing a duplicate value for the attributeForDistinct attribute are removed from results. * For example, if the chosen attribute is show_name and several hits have * the same value for show_name, then only the best * one is kept and others are removed. * - restrictSearchableAttributes: List of attributes you want to use for * textual search (must be a subset of the attributesToIndex index setting) * either comma separated or as an array * @param {function} [callback] the result callback called with two arguments: * error: null or Error('message'). If false, the content contains the error. * content: the server answer that contains the list of results. */ IndexCore.prototype.search = buildSearchMethod('query'); /* * -- BETA -- * Search a record similar to the query inside the index using XMLHttpRequest request (Using a POST query to * minimize number of OPTIONS queries: Cross-Origin Resource Sharing). * * @param {string} [query] the similar query * @param {object} [args] (optional) if set, contains an object with query parameters. * All search parameters are supported (see search function), restrictSearchableAttributes and facetFilters * are the two most useful to restrict the similar results and get more relevant content */ IndexCore.prototype.similarSearch = buildSearchMethod('similarQuery'); /* * Browse index content. The response content will have a `cursor` property that you can use * to browse subsequent pages for this query. Use `index.browseFrom(cursor)` when you want. * * @param {string} query - The full text query * @param {Object} [queryParameters] - Any search query parameter * @param {Function} [callback] - The result callback called with two arguments * error: null or Error('message') * content: the server answer with the browse result * @return {Promise|undefined} Returns a promise if no callback given * @example * index.browse('cool songs', { * tagFilters: 'public,comments', * hitsPerPage: 500 * }, callback); * @see {@link https://www.algolia.com/doc/rest_api#Browse|Algolia REST API Documentation} */ IndexCore.prototype.browse = function(query, queryParameters, callback) { var merge = __webpack_require__(418); var indexObj = this; var page; var hitsPerPage; // we check variadic calls that are not the one defined // .browse()/.browse(fn) // => page = 0 if (arguments.length === 0 || arguments.length === 1 && typeof arguments[0] === 'function') { page = 0; callback = arguments[0]; query = undefined; } else if (typeof arguments[0] === 'number') { // .browse(2)/.browse(2, 10)/.browse(2, fn)/.browse(2, 10, fn) page = arguments[0]; if (typeof arguments[1] === 'number') { hitsPerPage = arguments[1]; } else if (typeof arguments[1] === 'function') { callback = arguments[1]; hitsPerPage = undefined; } query = undefined; queryParameters = undefined; } else if (typeof arguments[0] === 'object') { // .browse(queryParameters)/.browse(queryParameters, cb) if (typeof arguments[1] === 'function') { callback = arguments[1]; } queryParameters = arguments[0]; query = undefined; } else if (typeof arguments[0] === 'string' && typeof arguments[1] === 'function') { // .browse(query, cb) callback = arguments[1]; queryParameters = undefined; } // otherwise it's a .browse(query)/.browse(query, queryParameters)/.browse(query, queryParameters, cb) // get search query parameters combining various possible calls // to .browse(); queryParameters = merge({}, queryParameters || {}, { page: page, hitsPerPage: hitsPerPage, query: query }); var params = this.as._getSearchParams(queryParameters, ''); return this.as._jsonRequest({ method: 'POST', url: '/1/indexes/' + encodeURIComponent(indexObj.indexName) + '/browse', body: {params: params}, hostType: 'read', callback: callback }); }; /* * Continue browsing from a previous position (cursor), obtained via a call to `.browse()`. * * @param {string} query - The full text query * @param {Object} [queryParameters] - Any search query parameter * @param {Function} [callback] - The result callback called with two arguments * error: null or Error('message') * content: the server answer with the browse result * @return {Promise|undefined} Returns a promise if no callback given * @example * index.browseFrom('14lkfsakl32', callback); * @see {@link https://www.algolia.com/doc/rest_api#Browse|Algolia REST API Documentation} */ IndexCore.prototype.browseFrom = function(cursor, callback) { return this.as._jsonRequest({ method: 'POST', url: '/1/indexes/' + encodeURIComponent(this.indexName) + '/browse', body: {cursor: cursor}, hostType: 'read', callback: callback }); }; /* * Search for facet values * https://www.algolia.com/doc/rest-api/search#search-for-facet-values * * @param {string} params.facetName Facet name, name of the attribute to search for values in. * Must be declared as a facet * @param {string} params.facetQuery Query for the facet search * @param {string} [params.*] Any search parameter of Algolia, * see https://www.algolia.com/doc/api-client/javascript/search#search-parameters * Pagination is not supported. The page and hitsPerPage parameters will be ignored. * @param callback (optional) */ IndexCore.prototype.searchForFacetValues = function(params, callback) { var clone = __webpack_require__(210); var omit = __webpack_require__(419); var usage = 'Usage: index.searchForFacetValues({facetName, facetQuery, ...params}[, callback])'; if (params.facetName === undefined || params.facetQuery === undefined) { throw new Error(usage); } var facetName = params.facetName; var filteredParams = omit(clone(params), function(keyName) { return keyName === 'facetName'; }); var searchParameters = this.as._getSearchParams(filteredParams, ''); return this.as._jsonRequest({ method: 'POST', url: '/1/indexes/' + encodeURIComponent(this.indexName) + '/facets/' + encodeURIComponent(facetName) + '/query', hostType: 'read', body: {params: searchParameters}, callback: callback }); }; IndexCore.prototype.searchFacet = deprecate(function(params, callback) { return this.searchForFacetValues(params, callback); }, deprecatedMessage( 'index.searchFacet(params[, callback])', 'index.searchForFacetValues(params[, callback])' )); IndexCore.prototype._search = function(params, url, callback, additionalUA) { return this.as._jsonRequest({ cache: this.cache, method: 'POST', url: url || '/1/indexes/' + encodeURIComponent(this.indexName) + '/query', body: {params: params}, hostType: 'read', fallback: { method: 'GET', url: '/1/indexes/' + encodeURIComponent(this.indexName), body: {params: params} }, callback: callback, additionalUA: additionalUA }); }; /* * Get an object from this index * * @param objectID the unique identifier of the object to retrieve * @param attrs (optional) if set, contains the array of attribute names to retrieve * @param callback (optional) the result callback called with two arguments * error: null or Error('message') * content: the object to retrieve or the error message if a failure occured */ IndexCore.prototype.getObject = function(objectID, attrs, callback) { var indexObj = this; if (arguments.length === 1 || typeof attrs === 'function') { callback = attrs; attrs = undefined; } var params = ''; if (attrs !== undefined) { params = '?attributes='; for (var i = 0; i < attrs.length; ++i) { if (i !== 0) { params += ','; } params += attrs[i]; } } return this.as._jsonRequest({ method: 'GET', url: '/1/indexes/' + encodeURIComponent(indexObj.indexName) + '/' + encodeURIComponent(objectID) + params, hostType: 'read', callback: callback }); }; /* * Get several objects from this index * * @param objectIDs the array of unique identifier of objects to retrieve */ IndexCore.prototype.getObjects = function(objectIDs, attributesToRetrieve, callback) { var isArray = __webpack_require__(345); var map = __webpack_require__(346); var usage = 'Usage: index.getObjects(arrayOfObjectIDs[, callback])'; if (!isArray(objectIDs)) { throw new Error(usage); } var indexObj = this; if (arguments.length === 1 || typeof attributesToRetrieve === 'function') { callback = attributesToRetrieve; attributesToRetrieve = undefined; } var body = { requests: map(objectIDs, function prepareRequest(objectID) { var request = { indexName: indexObj.indexName, objectID: objectID }; if (attributesToRetrieve) { request.attributesToRetrieve = attributesToRetrieve.join(','); } return request; }) }; return this.as._jsonRequest({ method: 'POST', url: '/1/indexes/*/objects', hostType: 'read', body: body, callback: callback }); }; IndexCore.prototype.as = null; IndexCore.prototype.indexName = null; IndexCore.prototype.typeAheadArgs = null; IndexCore.prototype.typeAheadValueOption = null; /***/ }), /* 416 */ /***/ (function(module, exports) { module.exports = function deprecate(fn, message) { var warned = false; function deprecated() { if (!warned) { /* eslint no-console:0 */ console.warn(message); warned = true; } return fn.apply(this, arguments); } return deprecated; }; /***/ }), /* 417 */ /***/ (function(module, exports) { module.exports = function deprecatedMessage(previousUsage, newUsage) { var githubAnchorLink = previousUsage.toLowerCase() .replace(/[\.\(\)]/g, ''); return 'algoliasearch: `' + previousUsage + '` was replaced by `' + newUsage + '`. Please see https://github.com/algolia/algoliasearch-client-javascript/wiki/Deprecated#' + githubAnchorLink; }; /***/ }), /* 418 */ /***/ (function(module, exports, __webpack_require__) { var foreach = __webpack_require__(111); module.exports = function merge(destination/* , sources */) { var sources = Array.prototype.slice.call(arguments); foreach(sources, function(source) { for (var keyName in source) { if (source.hasOwnProperty(keyName)) { if (typeof destination[keyName] === 'object' && typeof source[keyName] === 'object') { destination[keyName] = merge({}, destination[keyName], source[keyName]); } else if (source[keyName] !== undefined) { destination[keyName] = source[keyName]; } } } }); return destination; }; /***/ }), /* 419 */ /***/ (function(module, exports, __webpack_require__) { module.exports = function omit(obj, test) { var keys = __webpack_require__(420); var foreach = __webpack_require__(111); var filtered = {}; foreach(keys(obj), function doFilter(keyName) { if (test(keyName) !== true) { filtered[keyName] = obj[keyName]; } }); return filtered; }; /***/ }), /* 420 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; // modified from https://github.com/es-shims/es5-shim var has = Object.prototype.hasOwnProperty; var toStr = Object.prototype.toString; var slice = Array.prototype.slice; var isArgs = __webpack_require__(421); var isEnumerable = Object.prototype.propertyIsEnumerable; var hasDontEnumBug = !isEnumerable.call({ toString: null }, 'toString'); var hasProtoEnumBug = isEnumerable.call(function () {}, 'prototype'); var dontEnums = [ 'toString', 'toLocaleString', 'valueOf', 'hasOwnProperty', 'isPrototypeOf', 'propertyIsEnumerable', 'constructor' ]; var equalsConstructorPrototype = function (o) { var ctor = o.constructor; return ctor && ctor.prototype === o; }; var excludedKeys = { $console: true, $external: true, $frame: true, $frameElement: true, $frames: true, $innerHeight: true, $innerWidth: true, $outerHeight: true, $outerWidth: true, $pageXOffset: true, $pageYOffset: true, $parent: true, $scrollLeft: true, $scrollTop: true, $scrollX: true, $scrollY: true, $self: true, $webkitIndexedDB: true, $webkitStorageInfo: true, $window: true }; var hasAutomationEqualityBug = (function () { /* global window */ if (typeof window === 'undefined') { return false; } for (var k in window) { try { if (!excludedKeys['$' + k] && has.call(window, k) && window[k] !== null && typeof window[k] === 'object') { try { equalsConstructorPrototype(window[k]); } catch (e) { return true; } } } catch (e) { return true; } } return false; }()); var equalsConstructorPrototypeIfNotBuggy = function (o) { /* global window */ if (typeof window === 'undefined' || !hasAutomationEqualityBug) { return equalsConstructorPrototype(o); } try { return equalsConstructorPrototype(o); } catch (e) { return false; } }; var keysShim = function keys(object) { var isObject = object !== null && typeof object === 'object'; var isFunction = toStr.call(object) === '[object Function]'; var isArguments = isArgs(object); var isString = isObject && toStr.call(object) === '[object String]'; var theKeys = []; if (!isObject && !isFunction && !isArguments) { throw new TypeError('Object.keys called on a non-object'); } var skipProto = hasProtoEnumBug && isFunction; if (isString && object.length > 0 && !has.call(object, 0)) { for (var i = 0; i < object.length; ++i) { theKeys.push(String(i)); } } if (isArguments && object.length > 0) { for (var j = 0; j < object.length; ++j) { theKeys.push(String(j)); } } else { for (var name in object) { if (!(skipProto && name === 'prototype') && has.call(object, name)) { theKeys.push(String(name)); } } } if (hasDontEnumBug) { var skipConstructor = equalsConstructorPrototypeIfNotBuggy(object); for (var k = 0; k < dontEnums.length; ++k) { if (!(skipConstructor && dontEnums[k] === 'constructor') && has.call(object, dontEnums[k])) { theKeys.push(dontEnums[k]); } } } return theKeys; }; keysShim.shim = function shimObjectKeys() { if (Object.keys) { var keysWorksWithArguments = (function () { // Safari 5.0 bug return (Object.keys(arguments) || '').length === 2; }(1, 2)); if (!keysWorksWithArguments) { var originalKeys = Object.keys; Object.keys = function keys(object) { if (isArgs(object)) { return originalKeys(slice.call(object)); } else { return originalKeys(object); } }; } } else { Object.keys = keysShim; } return Object.keys || keysShim; }; module.exports = keysShim; /***/ }), /* 421 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; var toStr = Object.prototype.toString; module.exports = function isArguments(value) { var str = toStr.call(value); var isArgs = str === '[object Arguments]'; if (!isArgs) { isArgs = str !== '[object Array]' && value !== null && typeof value === 'object' && typeof value.length === 'number' && value.length >= 0 && toStr.call(value.callee) === '[object Function]'; } return isArgs; }; /***/ }), /* 422 */ /***/ (function(module, exports, __webpack_require__) { /* WEBPACK VAR INJECTION */(function(global) {var debug = __webpack_require__(221)('algoliasearch:src/hostIndexState.js'); var localStorageNamespace = 'algoliasearch-client-js'; var store; var moduleStore = { state: {}, set: function(key, data) { this.state[key] = data; return this.state[key]; }, get: function(key) { return this.state[key] || null; } }; var localStorageStore = { set: function(key, data) { moduleStore.set(key, data); // always replicate localStorageStore to moduleStore in case of failure try { var namespace = JSON.parse(global.localStorage[localStorageNamespace]); namespace[key] = data; global.localStorage[localStorageNamespace] = JSON.stringify(namespace); return namespace[key]; } catch (e) { return localStorageFailure(key, e); } }, get: function(key) { try { return JSON.parse(global.localStorage[localStorageNamespace])[key] || null; } catch (e) { return localStorageFailure(key, e); } } }; function localStorageFailure(key, e) { debug('localStorage failed with', e); cleanup(); store = moduleStore; return store.get(key); } store = supportsLocalStorage() ? localStorageStore : moduleStore; module.exports = { get: getOrSet, set: getOrSet, supportsLocalStorage: supportsLocalStorage }; function getOrSet(key, data) { if (arguments.length === 1) { return store.get(key); } return store.set(key, data); } function supportsLocalStorage() { try { if ('localStorage' in global && global.localStorage !== null) { if (!global.localStorage[localStorageNamespace]) { // actual creation of the namespace global.localStorage.setItem(localStorageNamespace, JSON.stringify({})); } return true; } return false; } catch (_) { return false; } } // In case of any error on localStorage, we clean our own namespace, this should handle // quota errors when a lot of keys + data are used function cleanup() { try { global.localStorage.removeItem(localStorageNamespace); } catch (_) { // nothing to do } } /* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(55))) /***/ }), /* 423 */ /***/ (function(module, exports, __webpack_require__) { /** * This is the common logic for both the Node.js and web browser * implementations of `debug()`. * * Expose `debug()` as the module. */ exports = module.exports = createDebug.debug = createDebug['default'] = createDebug; exports.coerce = coerce; exports.disable = disable; exports.enable = enable; exports.enabled = enabled; exports.humanize = __webpack_require__(424); /** * The currently active debug mode names, and names to skip. */ exports.names = []; exports.skips = []; /** * Map of special "%n" handling functions, for the debug "format" argument. * * Valid key names are a single, lower or upper-case letter, i.e. "n" and "N". */ exports.formatters = {}; /** * Previous log timestamp. */ var prevTime; /** * Select a color. * @param {String} namespace * @return {Number} * @api private */ function selectColor(namespace) { var hash = 0, i; for (i in namespace) { hash = ((hash << 5) - hash) + namespace.charCodeAt(i); hash |= 0; // Convert to 32bit integer } return exports.colors[Math.abs(hash) % exports.colors.length]; } /** * Create a debugger with the given `namespace`. * * @param {String} namespace * @return {Function} * @api public */ function createDebug(namespace) { function debug() { // disabled? if (!debug.enabled) return; var self = debug; // set `diff` timestamp var curr = +new Date(); var ms = curr - (prevTime || curr); self.diff = ms; self.prev = prevTime; self.curr = curr; prevTime = curr; // turn the `arguments` into a proper Array var args = new Array(arguments.length); for (var i = 0; i < args.length; i++) { args[i] = arguments[i]; } args[0] = exports.coerce(args[0]); if ('string' !== typeof args[0]) { // anything else let's inspect with %O args.unshift('%O'); } // apply any `formatters` transformations var index = 0; args[0] = args[0].replace(/%([a-zA-Z%])/g, function(match, format) { // if we encounter an escaped % then don't increase the array index if (match === '%%') return match; index++; var formatter = exports.formatters[format]; if ('function' === typeof formatter) { var val = args[index]; match = formatter.call(self, val); // now we need to remove `args[index]` since it's inlined in the `format` args.splice(index, 1); index--; } return match; }); // apply env-specific formatting (colors, etc.) exports.formatArgs.call(self, args); var logFn = debug.log || exports.log || console.log.bind(console); logFn.apply(self, args); } debug.namespace = namespace; debug.enabled = exports.enabled(namespace); debug.useColors = exports.useColors(); debug.color = selectColor(namespace); // env-specific initialization logic for debug instances if ('function' === typeof exports.init) { exports.init(debug); } return debug; } /** * Enables a debug mode by namespaces. This can include modes * separated by a colon and wildcards. * * @param {String} namespaces * @api public */ function enable(namespaces) { exports.save(namespaces); exports.names = []; exports.skips = []; var split = (typeof namespaces === 'string' ? namespaces : '').split(/[\s,]+/); var len = split.length; for (var i = 0; i < len; i++) { if (!split[i]) continue; // ignore empty strings namespaces = split[i].replace(/\*/g, '.*?'); if (namespaces[0] === '-') { exports.skips.push(new RegExp('^' + namespaces.substr(1) + '$')); } else { exports.names.push(new RegExp('^' + namespaces + '$')); } } } /** * Disable debug output. * * @api public */ function disable() { exports.enable(''); } /** * Returns true if the given mode name is enabled, false otherwise. * * @param {String} name * @return {Boolean} * @api public */ function enabled(name) { var i, len; for (i = 0, len = exports.skips.length; i < len; i++) { if (exports.skips[i].test(name)) { return false; } } for (i = 0, len = exports.names.length; i < len; i++) { if (exports.names[i].test(name)) { return true; } } return false; } /** * Coerce `val`. * * @param {Mixed} val * @return {Mixed} * @api private */ function coerce(val) { if (val instanceof Error) return val.stack || val.message; return val; } /***/ }), /* 424 */ /***/ (function(module, exports) { /** * Helpers. */ var s = 1000; var m = s * 60; var h = m * 60; var d = h * 24; var y = d * 365.25; /** * Parse or format the given `val`. * * Options: * * - `long` verbose formatting [false] * * @param {String|Number} val * @param {Object} [options] * @throws {Error} throw an error if val is not a non-empty string or a number * @return {String|Number} * @api public */ module.exports = function(val, options) { options = options || {}; var type = typeof val; if (type === 'string' && val.length > 0) { return parse(val); } else if (type === 'number' && isNaN(val) === false) { return options.long ? fmtLong(val) : fmtShort(val); } throw new Error( 'val is not a non-empty string or a valid number. val=' + JSON.stringify(val) ); }; /** * Parse the given `str` and return milliseconds. * * @param {String} str * @return {Number} * @api private */ function parse(str) { str = String(str); if (str.length > 100) { return; } var match = /^((?:\d+)?\.?\d+) *(milliseconds?|msecs?|ms|seconds?|secs?|s|minutes?|mins?|m|hours?|hrs?|h|days?|d|years?|yrs?|y)?$/i.exec( str ); if (!match) { return; } var n = parseFloat(match[1]); var type = (match[2] || 'ms').toLowerCase(); switch (type) { case 'years': case 'year': case 'yrs': case 'yr': case 'y': return n * y; case 'days': case 'day': case 'd': return n * d; case 'hours': case 'hour': case 'hrs': case 'hr': case 'h': return n * h; case 'minutes': case 'minute': case 'mins': case 'min': case 'm': return n * m; case 'seconds': case 'second': case 'secs': case 'sec': case 's': return n * s; case 'milliseconds': case 'millisecond': case 'msecs': case 'msec': case 'ms': return n; default: return undefined; } } /** * Short format for `ms`. * * @param {Number} ms * @return {String} * @api private */ function fmtShort(ms) { if (ms >= d) { return Math.round(ms / d) + 'd'; } if (ms >= h) { return Math.round(ms / h) + 'h'; } if (ms >= m) { return Math.round(ms / m) + 'm'; } if (ms >= s) { return Math.round(ms / s) + 's'; } return ms + 'ms'; } /** * Long format for `ms`. * * @param {Number} ms * @return {String} * @api private */ function fmtLong(ms) { return plural(ms, d, 'day') || plural(ms, h, 'hour') || plural(ms, m, 'minute') || plural(ms, s, 'second') || ms + ' ms'; } /** * Pluralization helper. */ function plural(ms, n, name) { if (ms < n) { return; } if (ms < n * 1.5) { return Math.floor(ms / n) + ' ' + name; } return Math.ceil(ms / n) + ' ' + name + 's'; } /***/ }), /* 425 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; var global = __webpack_require__(426); var Promise = global.Promise || __webpack_require__(427).Promise; // This is the standalone browser build entry point // Browser implementation of the Algolia Search JavaScript client, // using XMLHttpRequest, XDomainRequest and JSONP as fallback module.exports = function createAlgoliasearch(AlgoliaSearch, uaSuffix) { var inherits = __webpack_require__(350); var errors = __webpack_require__(220); var inlineHeaders = __webpack_require__(429); var jsonpRequest = __webpack_require__(431); var places = __webpack_require__(432); uaSuffix = uaSuffix || ''; if (false) { require('debug').enable('algoliasearch*'); } function algoliasearch(applicationID, apiKey, opts) { var cloneDeep = __webpack_require__(210); var getDocumentProtocol = __webpack_require__(433); opts = cloneDeep(opts || {}); if (opts.protocol === undefined) { opts.protocol = getDocumentProtocol(); } opts._ua = opts._ua || algoliasearch.ua; return new AlgoliaSearchBrowser(applicationID, apiKey, opts); } algoliasearch.version = __webpack_require__(434); algoliasearch.ua = 'Algolia for vanilla JavaScript ' + uaSuffix + algoliasearch.version; algoliasearch.initPlaces = places(algoliasearch); // we expose into window no matter how we are used, this will allow // us to easily debug any website running algolia global.__algolia = { debug: __webpack_require__(221), algoliasearch: algoliasearch }; var support = { hasXMLHttpRequest: 'XMLHttpRequest' in global, hasXDomainRequest: 'XDomainRequest' in global }; if (support.hasXMLHttpRequest) { support.cors = 'withCredentials' in new XMLHttpRequest(); } function AlgoliaSearchBrowser() { // call AlgoliaSearch constructor AlgoliaSearch.apply(this, arguments); } inherits(AlgoliaSearchBrowser, AlgoliaSearch); AlgoliaSearchBrowser.prototype._request = function request(url, opts) { return new Promise(function wrapRequest(resolve, reject) { // no cors or XDomainRequest, no request if (!support.cors && !support.hasXDomainRequest) { // very old browser, not supported reject(new errors.Network('CORS not supported')); return; } url = inlineHeaders(url, opts.headers); var body = opts.body; var req = support.cors ? new XMLHttpRequest() : new XDomainRequest(); var reqTimeout; var timedOut; var connected = false; reqTimeout = setTimeout(onTimeout, opts.timeouts.connect); // we set an empty onprogress listener // so that XDomainRequest on IE9 is not aborted // refs: // - https://github.com/algolia/algoliasearch-client-js/issues/76 // - https://social.msdn.microsoft.com/Forums/ie/en-US/30ef3add-767c-4436-b8a9-f1ca19b4812e/ie9-rtm-xdomainrequest-issued-requests-may-abort-if-all-event-handlers-not-specified?forum=iewebdevelopment req.onprogress = onProgress; if ('onreadystatechange' in req) req.onreadystatechange = onReadyStateChange; req.onload = onLoad; req.onerror = onError; // do not rely on default XHR async flag, as some analytics code like hotjar // breaks it and set it to false by default if (req instanceof XMLHttpRequest) { req.open(opts.method, url, true); } else { req.open(opts.method, url); } // headers are meant to be sent after open if (support.cors) { if (body) { if (opts.method === 'POST') { // https://developer.mozilla.org/en-US/docs/Web/HTTP/Access_control_CORS#Simple_requests req.setRequestHeader('content-type', 'application/x-www-form-urlencoded'); } else { req.setRequestHeader('content-type', 'application/json'); } } req.setRequestHeader('accept', 'application/json'); } req.send(body); // event object not received in IE8, at least // but we do not use it, still important to note function onLoad(/* event */) { // When browser does not supports req.timeout, we can // have both a load and timeout event, since handled by a dumb setTimeout if (timedOut) { return; } clearTimeout(reqTimeout); var out; try { out = { body: JSON.parse(req.responseText), responseText: req.responseText, statusCode: req.status, // XDomainRequest does not have any response headers headers: req.getAllResponseHeaders && req.getAllResponseHeaders() || {} }; } catch (e) { out = new errors.UnparsableJSON({ more: req.responseText }); } if (out instanceof errors.UnparsableJSON) { reject(out); } else { resolve(out); } } function onError(event) { if (timedOut) { return; } clearTimeout(reqTimeout); // error event is trigerred both with XDR/XHR on: // - DNS error // - unallowed cross domain request reject( new errors.Network({ more: event }) ); } function onTimeout() { timedOut = true; req.abort(); reject(new errors.RequestTimeout()); } function onConnect() { connected = true; clearTimeout(reqTimeout); reqTimeout = setTimeout(onTimeout, opts.timeouts.complete); } function onProgress() { if (!connected) onConnect(); } function onReadyStateChange() { if (!connected && req.readyState > 1) onConnect(); } }); }; AlgoliaSearchBrowser.prototype._request.fallback = function requestFallback(url, opts) { url = inlineHeaders(url, opts.headers); return new Promise(function wrapJsonpRequest(resolve, reject) { jsonpRequest(url, opts, function jsonpRequestDone(err, content) { if (err) { reject(err); return; } resolve(content); }); }); }; AlgoliaSearchBrowser.prototype._promise = { reject: function rejectPromise(val) { return Promise.reject(val); }, resolve: function resolvePromise(val) { return Promise.resolve(val); }, delay: function delayPromise(ms) { return new Promise(function resolveOnTimeout(resolve/* , reject*/) { setTimeout(resolve, ms); }); } }; return algoliasearch; }; /***/ }), /* 426 */ /***/ (function(module, exports, __webpack_require__) { /* WEBPACK VAR INJECTION */(function(global) {var win; if (typeof window !== "undefined") { win = window; } else if (typeof global !== "undefined") { win = global; } else if (typeof self !== "undefined"){ win = self; } else { win = {}; } module.exports = win; /* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(55))) /***/ }), /* 427 */ /***/ (function(module, exports, __webpack_require__) { /* WEBPACK VAR INJECTION */(function(process, global) {var require;/*! * @overview es6-promise - a tiny implementation of Promises/A+. * @copyright Copyright (c) 2014 Yehuda Katz, Tom Dale, Stefan Penner and contributors (Conversion to ES6 API by Jake Archibald) * @license Licensed under MIT license * See https://raw.githubusercontent.com/stefanpenner/es6-promise/master/LICENSE * @version 4.1.1 */ (function (global, factory) { true ? module.exports = factory() : typeof define === 'function' && define.amd ? define(factory) : (global.ES6Promise = factory()); }(this, (function () { 'use strict'; function objectOrFunction(x) { var type = typeof x; return x !== null && (type === 'object' || type === 'function'); } function isFunction(x) { return typeof x === 'function'; } var _isArray = undefined; if (Array.isArray) { _isArray = Array.isArray; } else { _isArray = function (x) { return Object.prototype.toString.call(x) === '[object Array]'; }; } var isArray = _isArray; var len = 0; var vertxNext = undefined; var customSchedulerFn = undefined; var asap = function asap(callback, arg) { queue[len] = callback; queue[len + 1] = arg; len += 2; if (len === 2) { // If len is 2, that means that we need to schedule an async flush. // If additional callbacks are queued before the queue is flushed, they // will be processed by this flush that we are scheduling. if (customSchedulerFn) { customSchedulerFn(flush); } else { scheduleFlush(); } } }; function setScheduler(scheduleFn) { customSchedulerFn = scheduleFn; } function setAsap(asapFn) { asap = asapFn; } var browserWindow = typeof window !== 'undefined' ? window : undefined; var browserGlobal = browserWindow || {}; var BrowserMutationObserver = browserGlobal.MutationObserver || browserGlobal.WebKitMutationObserver; var isNode = typeof self === 'undefined' && typeof process !== 'undefined' && ({}).toString.call(process) === '[object process]'; // test for web worker but not in IE10 var isWorker = typeof Uint8ClampedArray !== 'undefined' && typeof importScripts !== 'undefined' && typeof MessageChannel !== 'undefined'; // node function useNextTick() { // node version 0.10.x displays a deprecation warning when nextTick is used recursively // see https://github.com/cujojs/when/issues/410 for details return function () { return process.nextTick(flush); }; } // vertx function useVertxTimer() { if (typeof vertxNext !== 'undefined') { return function () { vertxNext(flush); }; } return useSetTimeout(); } function useMutationObserver() { var iterations = 0; var observer = new BrowserMutationObserver(flush); var node = document.createTextNode(''); observer.observe(node, { characterData: true }); return function () { node.data = iterations = ++iterations % 2; }; } // web worker function useMessageChannel() { var channel = new MessageChannel(); channel.port1.onmessage = flush; return function () { return channel.port2.postMessage(0); }; } function useSetTimeout() { // Store setTimeout reference so es6-promise will be unaffected by // other code modifying setTimeout (like sinon.useFakeTimers()) var globalSetTimeout = setTimeout; return function () { return globalSetTimeout(flush, 1); }; } var queue = new Array(1000); function flush() { for (var i = 0; i < len; i += 2) { var callback = queue[i]; var arg = queue[i + 1]; callback(arg); queue[i] = undefined; queue[i + 1] = undefined; } len = 0; } function attemptVertx() { try { var r = require; var vertx = __webpack_require__(428); vertxNext = vertx.runOnLoop || vertx.runOnContext; return useVertxTimer(); } catch (e) { return useSetTimeout(); } } var scheduleFlush = undefined; // Decide what async method to use to triggering processing of queued callbacks: if (isNode) { scheduleFlush = useNextTick(); } else if (BrowserMutationObserver) { scheduleFlush = useMutationObserver(); } else if (isWorker) { scheduleFlush = useMessageChannel(); } else if (browserWindow === undefined && "function" === 'function') { scheduleFlush = attemptVertx(); } else { scheduleFlush = useSetTimeout(); } function then(onFulfillment, onRejection) { var _arguments = arguments; var parent = this; var child = new this.constructor(noop); if (child[PROMISE_ID] === undefined) { makePromise(child); } var _state = parent._state; if (_state) { (function () { var callback = _arguments[_state - 1]; asap(function () { return invokeCallback(_state, child, callback, parent._result); }); })(); } else { subscribe(parent, child, onFulfillment, onRejection); } return child; } /** `Promise.resolve` returns a promise that will become resolved with the passed `value`. It is shorthand for the following: ```javascript let promise = new Promise(function(resolve, reject){ resolve(1); }); promise.then(function(value){ // value === 1 }); ``` Instead of writing the above, your code now simply becomes the following: ```javascript let promise = Promise.resolve(1); promise.then(function(value){ // value === 1 }); ``` @method resolve @static @param {Any} value value that the returned promise will be resolved with Useful for tooling. @return {Promise} a promise that will become fulfilled with the given `value` */ function resolve$1(object) { /*jshint validthis:true */ var Constructor = this; if (object && typeof object === 'object' && object.constructor === Constructor) { return object; } var promise = new Constructor(noop); resolve(promise, object); return promise; } var PROMISE_ID = Math.random().toString(36).substring(16); function noop() {} var PENDING = void 0; var FULFILLED = 1; var REJECTED = 2; var GET_THEN_ERROR = new ErrorObject(); function selfFulfillment() { return new TypeError("You cannot resolve a promise with itself"); } function cannotReturnOwn() { return new TypeError('A promises callback cannot return that same promise.'); } function getThen(promise) { try { return promise.then; } catch (error) { GET_THEN_ERROR.error = error; return GET_THEN_ERROR; } } function tryThen(then$$1, value, fulfillmentHandler, rejectionHandler) { try { then$$1.call(value, fulfillmentHandler, rejectionHandler); } catch (e) { return e; } } function handleForeignThenable(promise, thenable, then$$1) { asap(function (promise) { var sealed = false; var error = tryThen(then$$1, thenable, function (value) { if (sealed) { return; } sealed = true; if (thenable !== value) { resolve(promise, value); } else { fulfill(promise, value); } }, function (reason) { if (sealed) { return; } sealed = true; reject(promise, reason); }, 'Settle: ' + (promise._label || ' unknown promise')); if (!sealed && error) { sealed = true; reject(promise, error); } }, promise); } function handleOwnThenable(promise, thenable) { if (thenable._state === FULFILLED) { fulfill(promise, thenable._result); } else if (thenable._state === REJECTED) { reject(promise, thenable._result); } else { subscribe(thenable, undefined, function (value) { return resolve(promise, value); }, function (reason) { return reject(promise, reason); }); } } function handleMaybeThenable(promise, maybeThenable, then$$1) { if (maybeThenable.constructor === promise.constructor && then$$1 === then && maybeThenable.constructor.resolve === resolve$1) { handleOwnThenable(promise, maybeThenable); } else { if (then$$1 === GET_THEN_ERROR) { reject(promise, GET_THEN_ERROR.error); GET_THEN_ERROR.error = null; } else if (then$$1 === undefined) { fulfill(promise, maybeThenable); } else if (isFunction(then$$1)) { handleForeignThenable(promise, maybeThenable, then$$1); } else { fulfill(promise, maybeThenable); } } } function resolve(promise, value) { if (promise === value) { reject(promise, selfFulfillment()); } else if (objectOrFunction(value)) { handleMaybeThenable(promise, value, getThen(value)); } else { fulfill(promise, value); } } function publishRejection(promise) { if (promise._onerror) { promise._onerror(promise._result); } publish(promise); } function fulfill(promise, value) { if (promise._state !== PENDING) { return; } promise._result = value; promise._state = FULFILLED; if (promise._subscribers.length !== 0) { asap(publish, promise); } } function reject(promise, reason) { if (promise._state !== PENDING) { return; } promise._state = REJECTED; promise._result = reason; asap(publishRejection, promise); } function subscribe(parent, child, onFulfillment, onRejection) { var _subscribers = parent._subscribers; var length = _subscribers.length; parent._onerror = null; _subscribers[length] = child; _subscribers[length + FULFILLED] = onFulfillment; _subscribers[length + REJECTED] = onRejection; if (length === 0 && parent._state) { asap(publish, parent); } } function publish(promise) { var subscribers = promise._subscribers; var settled = promise._state; if (subscribers.length === 0) { return; } var child = undefined, callback = undefined, detail = promise._result; for (var i = 0; i < subscribers.length; i += 3) { child = subscribers[i]; callback = subscribers[i + settled]; if (child) { invokeCallback(settled, child, callback, detail); } else { callback(detail); } } promise._subscribers.length = 0; } function ErrorObject() { this.error = null; } var TRY_CATCH_ERROR = new ErrorObject(); function tryCatch(callback, detail) { try { return callback(detail); } catch (e) { TRY_CATCH_ERROR.error = e; return TRY_CATCH_ERROR; } } function invokeCallback(settled, promise, callback, detail) { var hasCallback = isFunction(callback), value = undefined, error = undefined, succeeded = undefined, failed = undefined; if (hasCallback) { value = tryCatch(callback, detail); if (value === TRY_CATCH_ERROR) { failed = true; error = value.error; value.error = null; } else { succeeded = true; } if (promise === value) { reject(promise, cannotReturnOwn()); return; } } else { value = detail; succeeded = true; } if (promise._state !== PENDING) { // noop } else if (hasCallback && succeeded) { resolve(promise, value); } else if (failed) { reject(promise, error); } else if (settled === FULFILLED) { fulfill(promise, value); } else if (settled === REJECTED) { reject(promise, value); } } function initializePromise(promise, resolver) { try { resolver(function resolvePromise(value) { resolve(promise, value); }, function rejectPromise(reason) { reject(promise, reason); }); } catch (e) { reject(promise, e); } } var id = 0; function nextId() { return id++; } function makePromise(promise) { promise[PROMISE_ID] = id++; promise._state = undefined; promise._result = undefined; promise._subscribers = []; } function Enumerator$1(Constructor, input) { this._instanceConstructor = Constructor; this.promise = new Constructor(noop); if (!this.promise[PROMISE_ID]) { makePromise(this.promise); } if (isArray(input)) { this.length = input.length; this._remaining = input.length; this._result = new Array(this.length); if (this.length === 0) { fulfill(this.promise, this._result); } else { this.length = this.length || 0; this._enumerate(input); if (this._remaining === 0) { fulfill(this.promise, this._result); } } } else { reject(this.promise, validationError()); } } function validationError() { return new Error('Array Methods must be provided an Array'); } Enumerator$1.prototype._enumerate = function (input) { for (var i = 0; this._state === PENDING && i < input.length; i++) { this._eachEntry(input[i], i); } }; Enumerator$1.prototype._eachEntry = function (entry, i) { var c = this._instanceConstructor; var resolve$$1 = c.resolve; if (resolve$$1 === resolve$1) { var _then = getThen(entry); if (_then === then && entry._state !== PENDING) { this._settledAt(entry._state, i, entry._result); } else if (typeof _then !== 'function') { this._remaining--; this._result[i] = entry; } else if (c === Promise$2) { var promise = new c(noop); handleMaybeThenable(promise, entry, _then); this._willSettleAt(promise, i); } else { this._willSettleAt(new c(function (resolve$$1) { return resolve$$1(entry); }), i); } } else { this._willSettleAt(resolve$$1(entry), i); } }; Enumerator$1.prototype._settledAt = function (state, i, value) { var promise = this.promise; if (promise._state === PENDING) { this._remaining--; if (state === REJECTED) { reject(promise, value); } else { this._result[i] = value; } } if (this._remaining === 0) { fulfill(promise, this._result); } }; Enumerator$1.prototype._willSettleAt = function (promise, i) { var enumerator = this; subscribe(promise, undefined, function (value) { return enumerator._settledAt(FULFILLED, i, value); }, function (reason) { return enumerator._settledAt(REJECTED, i, reason); }); }; /** `Promise.all` accepts an array of promises, and returns a new promise which is fulfilled with an array of fulfillment values for the passed promises, or rejected with the reason of the first passed promise to be rejected. It casts all elements of the passed iterable to promises as it runs this algorithm. Example: ```javascript let promise1 = resolve(1); let promise2 = resolve(2); let promise3 = resolve(3); let promises = [ promise1, promise2, promise3 ]; Promise.all(promises).then(function(array){ // The array here would be [ 1, 2, 3 ]; }); ``` If any of the `promises` given to `all` are rejected, the first promise that is rejected will be given as an argument to the returned promises's rejection handler. For example: Example: ```javascript let promise1 = resolve(1); let promise2 = reject(new Error("2")); let promise3 = reject(new Error("3")); let promises = [ promise1, promise2, promise3 ]; Promise.all(promises).then(function(array){ // Code here never runs because there are rejected promises! }, function(error) { // error.message === "2" }); ``` @method all @static @param {Array} entries array of promises @param {String} label optional string for labeling the promise. Useful for tooling. @return {Promise} promise that is fulfilled when all `promises` have been fulfilled, or rejected if any of them become rejected. @static */ function all$1(entries) { return new Enumerator$1(this, entries).promise; } /** `Promise.race` returns a new promise which is settled in the same way as the first passed promise to settle. Example: ```javascript let promise1 = new Promise(function(resolve, reject){ setTimeout(function(){ resolve('promise 1'); }, 200); }); let promise2 = new Promise(function(resolve, reject){ setTimeout(function(){ resolve('promise 2'); }, 100); }); Promise.race([promise1, promise2]).then(function(result){ // result === 'promise 2' because it was resolved before promise1 // was resolved. }); ``` `Promise.race` is deterministic in that only the state of the first settled promise matters. For example, even if other promises given to the `promises` array argument are resolved, but the first settled promise has become rejected before the other promises became fulfilled, the returned promise will become rejected: ```javascript let promise1 = new Promise(function(resolve, reject){ setTimeout(function(){ resolve('promise 1'); }, 200); }); let promise2 = new Promise(function(resolve, reject){ setTimeout(function(){ reject(new Error('promise 2')); }, 100); }); Promise.race([promise1, promise2]).then(function(result){ // Code here never runs }, function(reason){ // reason.message === 'promise 2' because promise 2 became rejected before // promise 1 became fulfilled }); ``` An example real-world use case is implementing timeouts: ```javascript Promise.race([ajax('foo.json'), timeout(5000)]) ``` @method race @static @param {Array} promises array of promises to observe Useful for tooling. @return {Promise} a promise which settles in the same way as the first passed promise to settle. */ function race$1(entries) { /*jshint validthis:true */ var Constructor = this; if (!isArray(entries)) { return new Constructor(function (_, reject) { return reject(new TypeError('You must pass an array to race.')); }); } else { return new Constructor(function (resolve, reject) { var length = entries.length; for (var i = 0; i < length; i++) { Constructor.resolve(entries[i]).then(resolve, reject); } }); } } /** `Promise.reject` returns a promise rejected with the passed `reason`. It is shorthand for the following: ```javascript let promise = new Promise(function(resolve, reject){ reject(new Error('WHOOPS')); }); promise.then(function(value){ // Code here doesn't run because the promise is rejected! }, function(reason){ // reason.message === 'WHOOPS' }); ``` Instead of writing the above, your code now simply becomes the following: ```javascript let promise = Promise.reject(new Error('WHOOPS')); promise.then(function(value){ // Code here doesn't run because the promise is rejected! }, function(reason){ // reason.message === 'WHOOPS' }); ``` @method reject @static @param {Any} reason value that the returned promise will be rejected with. Useful for tooling. @return {Promise} a promise rejected with the given `reason`. */ function reject$1(reason) { /*jshint validthis:true */ var Constructor = this; var promise = new Constructor(noop); reject(promise, reason); return promise; } function needsResolver() { throw new TypeError('You must pass a resolver function as the first argument to the promise constructor'); } function needsNew() { throw new TypeError("Failed to construct 'Promise': Please use the 'new' operator, this object constructor cannot be called as a function."); } /** Promise objects represent the eventual result of an asynchronous operation. The primary way of interacting with a promise is through its `then` method, which registers callbacks to receive either a promise's eventual value or the reason why the promise cannot be fulfilled. Terminology ----------- - `promise` is an object or function with a `then` method whose behavior conforms to this specification. - `thenable` is an object or function that defines a `then` method. - `value` is any legal JavaScript value (including undefined, a thenable, or a promise). - `exception` is a value that is thrown using the throw statement. - `reason` is a value that indicates why a promise was rejected. - `settled` the final resting state of a promise, fulfilled or rejected. A promise can be in one of three states: pending, fulfilled, or rejected. Promises that are fulfilled have a fulfillment value and are in the fulfilled state. Promises that are rejected have a rejection reason and are in the rejected state. A fulfillment value is never a thenable. Promises can also be said to *resolve* a value. If this value is also a promise, then the original promise's settled state will match the value's settled state. So a promise that *resolves* a promise that rejects will itself reject, and a promise that *resolves* a promise that fulfills will itself fulfill. Basic Usage: ------------ ```js let promise = new Promise(function(resolve, reject) { // on success resolve(value); // on failure reject(reason); }); promise.then(function(value) { // on fulfillment }, function(reason) { // on rejection }); ``` Advanced Usage: --------------- Promises shine when abstracting away asynchronous interactions such as `XMLHttpRequest`s. ```js function getJSON(url) { return new Promise(function(resolve, reject){ let xhr = new XMLHttpRequest(); xhr.open('GET', url); xhr.onreadystatechange = handler; xhr.responseType = 'json'; xhr.setRequestHeader('Accept', 'application/json'); xhr.send(); function handler() { if (this.readyState === this.DONE) { if (this.status === 200) { resolve(this.response); } else { reject(new Error('getJSON: `' + url + '` failed with status: [' + this.status + ']')); } } }; }); } getJSON('/posts.json').then(function(json) { // on fulfillment }, function(reason) { // on rejection }); ``` Unlike callbacks, promises are great composable primitives. ```js Promise.all([ getJSON('/posts'), getJSON('/comments') ]).then(function(values){ values[0] // => postsJSON values[1] // => commentsJSON return values; }); ``` @class Promise @param {function} resolver Useful for tooling. @constructor */ function Promise$2(resolver) { this[PROMISE_ID] = nextId(); this._result = this._state = undefined; this._subscribers = []; if (noop !== resolver) { typeof resolver !== 'function' && needsResolver(); this instanceof Promise$2 ? initializePromise(this, resolver) : needsNew(); } } Promise$2.all = all$1; Promise$2.race = race$1; Promise$2.resolve = resolve$1; Promise$2.reject = reject$1; Promise$2._setScheduler = setScheduler; Promise$2._setAsap = setAsap; Promise$2._asap = asap; Promise$2.prototype = { constructor: Promise$2, /** The primary way of interacting with a promise is through its `then` method, which registers callbacks to receive either a promise's eventual value or the reason why the promise cannot be fulfilled. ```js findUser().then(function(user){ // user is available }, function(reason){ // user is unavailable, and you are given the reason why }); ``` Chaining -------- The return value of `then` is itself a promise. This second, 'downstream' promise is resolved with the return value of the first promise's fulfillment or rejection handler, or rejected if the handler throws an exception. ```js findUser().then(function (user) { return user.name; }, function (reason) { return 'default name'; }).then(function (userName) { // If `findUser` fulfilled, `userName` will be the user's name, otherwise it // will be `'default name'` }); findUser().then(function (user) { throw new Error('Found user, but still unhappy'); }, function (reason) { throw new Error('`findUser` rejected and we're unhappy'); }).then(function (value) { // never reached }, function (reason) { // if `findUser` fulfilled, `reason` will be 'Found user, but still unhappy'. // If `findUser` rejected, `reason` will be '`findUser` rejected and we're unhappy'. }); ``` If the downstream promise does not specify a rejection handler, rejection reasons will be propagated further downstream. ```js findUser().then(function (user) { throw new PedagogicalException('Upstream error'); }).then(function (value) { // never reached }).then(function (value) { // never reached }, function (reason) { // The `PedgagocialException` is propagated all the way down to here }); ``` Assimilation ------------ Sometimes the value you want to propagate to a downstream promise can only be retrieved asynchronously. This can be achieved by returning a promise in the fulfillment or rejection handler. The downstream promise will then be pending until the returned promise is settled. This is called *assimilation*. ```js findUser().then(function (user) { return findCommentsByAuthor(user); }).then(function (comments) { // The user's comments are now available }); ``` If the assimliated promise rejects, then the downstream promise will also reject. ```js findUser().then(function (user) { return findCommentsByAuthor(user); }).then(function (comments) { // If `findCommentsByAuthor` fulfills, we'll have the value here }, function (reason) { // If `findCommentsByAuthor` rejects, we'll have the reason here }); ``` Simple Example -------------- Synchronous Example ```javascript let result; try { result = findResult(); // success } catch(reason) { // failure } ``` Errback Example ```js findResult(function(result, err){ if (err) { // failure } else { // success } }); ``` Promise Example; ```javascript findResult().then(function(result){ // success }, function(reason){ // failure }); ``` Advanced Example -------------- Synchronous Example ```javascript let author, books; try { author = findAuthor(); books = findBooksByAuthor(author); // success } catch(reason) { // failure } ``` Errback Example ```js function foundBooks(books) { } function failure(reason) { } findAuthor(function(author, err){ if (err) { failure(err); // failure } else { try { findBoooksByAuthor(author, function(books, err) { if (err) { failure(err); } else { try { foundBooks(books); } catch(reason) { failure(reason); } } }); } catch(error) { failure(err); } // success } }); ``` Promise Example; ```javascript findAuthor(). then(findBooksByAuthor). then(function(books){ // found books }).catch(function(reason){ // something went wrong }); ``` @method then @param {Function} onFulfilled @param {Function} onRejected Useful for tooling. @return {Promise} */ then: then, /** `catch` is simply sugar for `then(undefined, onRejection)` which makes it the same as the catch block of a try/catch statement. ```js function findAuthor(){ throw new Error('couldn't find that author'); } // synchronous try { findAuthor(); } catch(reason) { // something went wrong } // async with promises findAuthor().catch(function(reason){ // something went wrong }); ``` @method catch @param {Function} onRejection Useful for tooling. @return {Promise} */ 'catch': function _catch(onRejection) { return this.then(null, onRejection); } }; /*global self*/ function polyfill$1() { var local = undefined; if (typeof global !== 'undefined') { local = global; } else if (typeof self !== 'undefined') { local = self; } else { try { local = Function('return this')(); } catch (e) { throw new Error('polyfill failed because global object is unavailable in this environment'); } } var P = local.Promise; if (P) { var promiseToString = null; try { promiseToString = Object.prototype.toString.call(P.resolve()); } catch (e) { // silently ignored } if (promiseToString === '[object Promise]' && !P.cast) { return; } } local.Promise = Promise$2; } // Strange compat.. Promise$2.polyfill = polyfill$1; Promise$2.Promise = Promise$2; return Promise$2; }))); //# sourceMappingURL=es6-promise.map /* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(109), __webpack_require__(55))) /***/ }), /* 428 */ /***/ (function(module, exports) { /* (ignored) */ /***/ }), /* 429 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; module.exports = inlineHeaders; var encode = __webpack_require__(430); function inlineHeaders(url, headers) { if (/\?/.test(url)) { url += '&'; } else { url += '?'; } return url + encode(headers); } /***/ }), /* 430 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; // Copyright Joyent, Inc. and other Node contributors. // // Permission is hereby granted, free of charge, to any person obtaining a // copy of this software and associated documentation files (the // "Software"), to deal in the Software without restriction, including // without limitation the rights to use, copy, modify, merge, publish, // distribute, sublicense, and/or sell copies of the Software, and to permit // persons to whom the Software is furnished to do so, subject to the // following conditions: // // The above copyright notice and this permission notice shall be included // in all copies or substantial portions of the Software. // // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS // OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN // NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, // DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR // OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE // USE OR OTHER DEALINGS IN THE SOFTWARE. var stringifyPrimitive = function(v) { switch (typeof v) { case 'string': return v; case 'boolean': return v ? 'true' : 'false'; case 'number': return isFinite(v) ? v : ''; default: return ''; } }; module.exports = function(obj, sep, eq, name) { sep = sep || '&'; eq = eq || '='; if (obj === null) { obj = undefined; } if (typeof obj === 'object') { return map(objectKeys(obj), function(k) { var ks = encodeURIComponent(stringifyPrimitive(k)) + eq; if (isArray(obj[k])) { return map(obj[k], function(v) { return ks + encodeURIComponent(stringifyPrimitive(v)); }).join(sep); } else { return ks + encodeURIComponent(stringifyPrimitive(obj[k])); } }).join(sep); } if (!name) return ''; return encodeURIComponent(stringifyPrimitive(name)) + eq + encodeURIComponent(stringifyPrimitive(obj)); }; var isArray = Array.isArray || function (xs) { return Object.prototype.toString.call(xs) === '[object Array]'; }; function map (xs, f) { if (xs.map) return xs.map(f); var res = []; for (var i = 0; i < xs.length; i++) { res.push(f(xs[i], i)); } return res; } var objectKeys = Object.keys || function (obj) { var res = []; for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) res.push(key); } return res; }; /***/ }), /* 431 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; module.exports = jsonpRequest; var errors = __webpack_require__(220); var JSONPCounter = 0; function jsonpRequest(url, opts, cb) { if (opts.method !== 'GET') { cb(new Error('Method ' + opts.method + ' ' + url + ' is not supported by JSONP.')); return; } opts.debug('JSONP: start'); var cbCalled = false; var timedOut = false; JSONPCounter += 1; var head = document.getElementsByTagName('head')[0]; var script = document.createElement('script'); var cbName = 'algoliaJSONP_' + JSONPCounter; var done = false; window[cbName] = function(data) { removeGlobals(); if (timedOut) { opts.debug('JSONP: Late answer, ignoring'); return; } cbCalled = true; clean(); cb(null, { body: data/* , // We do not send the statusCode, there's no statusCode in JSONP, it will be // computed using data.status && data.message like with XDR statusCode*/ }); }; // add callback by hand url += '&callback=' + cbName; // add body params manually if (opts.jsonBody && opts.jsonBody.params) { url += '&' + opts.jsonBody.params; } var ontimeout = setTimeout(timeout, opts.timeouts.complete); // script onreadystatechange needed only for // <= IE8 // https://github.com/angular/angular.js/issues/4523 script.onreadystatechange = readystatechange; script.onload = success; script.onerror = error; script.async = true; script.defer = true; script.src = url; head.appendChild(script); function success() { opts.debug('JSONP: success'); if (done || timedOut) { return; } done = true; // script loaded but did not call the fn => script loading error if (!cbCalled) { opts.debug('JSONP: Fail. Script loaded but did not call the callback'); clean(); cb(new errors.JSONPScriptFail()); } } function readystatechange() { if (this.readyState === 'loaded' || this.readyState === 'complete') { success(); } } function clean() { clearTimeout(ontimeout); script.onload = null; script.onreadystatechange = null; script.onerror = null; head.removeChild(script); } function removeGlobals() { try { delete window[cbName]; delete window[cbName + '_loaded']; } catch (e) { window[cbName] = window[cbName + '_loaded'] = undefined; } } function timeout() { opts.debug('JSONP: Script timeout'); timedOut = true; clean(); cb(new errors.RequestTimeout()); } function error() { opts.debug('JSONP: Script error'); if (done || timedOut) { return; } clean(); cb(new errors.JSONPScriptError()); } } /***/ }), /* 432 */ /***/ (function(module, exports, __webpack_require__) { module.exports = createPlacesClient; var buildSearchMethod = __webpack_require__(351); function createPlacesClient(algoliasearch) { return function places(appID, apiKey, opts) { var cloneDeep = __webpack_require__(210); opts = opts && cloneDeep(opts) || {}; opts.hosts = opts.hosts || [ 'places-dsn.algolia.net', 'places-1.algolianet.com', 'places-2.algolianet.com', 'places-3.algolianet.com' ]; // allow initPlaces() no arguments => community rate limited if (arguments.length === 0 || typeof appID === 'object' || appID === undefined) { appID = ''; apiKey = ''; opts._allowEmptyCredentials = true; } var client = algoliasearch(appID, apiKey, opts); var index = client.initIndex('places'); index.search = buildSearchMethod('query', '/1/places/query'); index.getObject = function(objectID, callback) { return this.as._jsonRequest({ method: 'GET', url: '/1/places/' + encodeURIComponent(objectID), hostType: 'read', callback: callback }); }; return index; }; } /***/ }), /* 433 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; module.exports = getDocumentProtocol; function getDocumentProtocol() { var protocol = window.document.location.protocol; // when in `file:` mode (local html file), default to `http:` if (protocol !== 'http:' && protocol !== 'https:') { protocol = 'http:'; } return protocol; } /***/ }), /* 434 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; module.exports = '3.24.4'; /***/ }) /******/ ]); }); //# sourceMappingURL=Dom.js.map
examples/huge-apps/routes/Calendar/components/Calendar.js
Jastrzebowski/react-router
import React from 'react'; class Calendar extends React.Component { static loadProps(params, cb) { setTimeout(() => { cb(null, { events: [{ id: 0, title: 'essay due' }] }) }, 1000); } render () { var { events } = this.props; return ( <div> <h2>Calendar</h2> <ul> {events.map(event => ( <li key={event.id}>{event.title}</li> ))} </ul> </div> ); } } export default Calendar;
client-portal/src/components/Body/TableExperiment/index.js
choiboi/web-scraper-architecture
import React, { Component } from 'react'; import classnames from 'classnames'; import ReactBootstrapTable from '../Table/ReactBootstrapTable'; import MaterialUITable from '../Table/MaterialUITable'; import ReactToolboxTable from '../Table/ReactToolboxTable'; class TableExperiment extends Component { render() { const { className, ...props } = this.props; return ( <div className={classnames('body', className)} {...props}> <ReactBootstrapTable title="React-Bootstrap Table Example"/> <MaterialUITable title="React Material-UI Table Example"/> <ReactToolboxTable title="React Toolbox Table Example"/> </div> ); } } export default TableExperiment;
src/index.js
folio-org/ui-users
import React from 'react'; import { FormattedMessage } from 'react-intl'; import PropTypes from 'prop-types'; import queryString from 'query-string'; import { AppContextMenu, Route, Switch, IfPermission } from '@folio/stripes/core'; import { NavList, NavListItem, NavListSection, CommandList, HasCommand, KeyboardShortcutsModal, } from '@folio/stripes/components'; import * as Routes from './routes'; import pkg from '../package'; import commands from './commands'; import commandsGeneral from './commandsGeneral'; import Settings from './settings'; import sections from './settings/sections'; import { NoteCreatePage, NoteViewPage, NoteEditPage } from './views'; class UsersRouting extends React.Component { static propTypes = { stripes: PropTypes.shape({ hasPerm: PropTypes.func.isRequired, }).isRequired, location: PropTypes.object.isRequired, match: PropTypes.object.isRequired, showSettings: PropTypes.bool, history: PropTypes.object, } static actionNames = ['stripesHome', 'usersSortByName']; constructor(props) { super(props); this.state = { showKeyboardShortcutsModal: false, }; } componentDidMount() { const { location, history } = this.props; const query = queryString.parse(location.search); const uidRegEx = /\/([^/]*)$/gm; if (query.layer === 'loan') { if (query.loan) { const uid = uidRegEx.exec(location.pathname); history.replace(`/users/${uid[1]}/loans/view/${query.loan}`); } } if (query.layer === 'account') { if (query.account) { const uid = uidRegEx.exec(location.pathname); history.replace(`/users/${uid[1]}/accounts/view/${query.account}`); } } if (query.layer === 'charge') { const uid = uidRegEx.exec(location.pathname); if (query.loan) { history.replace(`/users/${uid[1]}/charge/${query.loan}`); } else { history.replace(`/users/${uid[1]}/charge`); } } } noMatch() { const { location: { pathname }, } = this.props; return ( <div> <h2> <FormattedMessage id="ui-users.errors.noMatch.oops" /> </h2> <p> <FormattedMessage id="ui-users.errors.noMatch.how" values={{ location: <tt>{pathname}</tt> }} /> </p> </div> ); } focusSearchField = () => { const { history } = this.props; const el = document.getElementById('input-user-search'); if (el) { el.focus(); } else { history.push(pkg.stripes.home); } } shortcutModalToggle(handleToggle) { handleToggle(); this.changeKeyboardShortcutsModal(true); } changeKeyboardShortcutsModal = (modalState) => { this.setState({ showKeyboardShortcutsModal: modalState }); }; shortcuts = [ { name: 'search', handler: this.focusSearchField }, { name: 'openShortcutModal', handler: this.changeKeyboardShortcutsModal }, ]; checkScope = () => { return document.body.contains(document.activeElement); } render() { const { showSettings, match: { path }, stripes } = this.props; this.shortcutScope = document.body; const base = '/users'; if (showSettings) { return ( <Route path={path} component={Settings}> <Switch> {[].concat(...sections.map(section => section.pages)) .filter(setting => !setting.perm || stripes.hasPerm(setting.perm)) .map(setting => <Route path={`${path}/${setting.route}`} key={setting.route} component={setting.component} />) } </Switch> </Route> ); } return ( <> <CommandList commands={commands}> <HasCommand commands={this.shortcuts} isWithinScope={this.checkScope} scope={this.shortcutScope} > <AppContextMenu> {(handleToggle) => ( <NavList> <NavListSection> <NavListItem id="keyboard-shortcuts-item" onClick={() => { this.shortcutModalToggle(handleToggle); }} > <FormattedMessage id="ui-users.appMenu.keyboardShortcuts" /> </NavListItem> </NavListSection> </NavList> )} </AppContextMenu> <Switch> <Route path={`${base}/:id/loans/view/:loanid`} render={(props) => ( <IfPermission perm="ui-users.loans.view"> <Routes.LoanDetailContainer {...props} /> </IfPermission> )} /> <Route path={`${base}/:id/loans/:loanstatus`} render={(props) => ( <IfPermission perm="ui-users.loans.view"> <Routes.LoansListingContainer {...props} /> </IfPermission> )} /> <Route path={`${base}/:id/accounts/view/:accountid`} render={(props) => ( <IfPermission perm="ui-users.feesfines.view"> <Routes.AccountDetailsContainer {...props} /> </IfPermission> )} /> <Route path={`${base}/:id/accounts/:accountstatus`} exact render={(props) => ( <IfPermission perm="ui-users.feesfines.view"> <Routes.AccountsListingContainer {...props} /> </IfPermission> )} /> <Route path={`${base}/:id/charge/:loanid?`} component={Routes.ChargeFeesFinesContainer} /> <Route path={`${base}/:id/patronblocks/edit/:patronblockid`} component={Routes.PatronBlockContainer} /> <Route path={`${base}/:id/patronblocks/create`} component={Routes.PatronBlockContainer} /> <Route path={`${base}/create`} component={Routes.UserEditContainer} /> <Route path={`${base}/:id/edit`} component={Routes.UserEditContainer} /> <Route path={`${base}/view/:id`} component={Routes.UserDetailFullscreenContainer} /> <Route path={`${base}/notes/new`} exact component={NoteCreatePage} /> <Route path={`${base}/notes/:id`} exact component={NoteViewPage} /> <Route path={`${base}/notes/:id/edit`} exact component={NoteEditPage} /> <Route path={base} component={Routes.UserSearchContainer}> <Route path={`${base}/preview/:id`} component={Routes.UserDetailContainer} /> </Route> <Route render={this.noMatch} /> </Switch> </HasCommand> </CommandList> { this.state.showKeyboardShortcutsModal && ( <KeyboardShortcutsModal open onClose={() => { this.changeKeyboardShortcutsModal(false); }} allCommands={commands.concat(commandsGeneral)} /> )} </ > ); } } export default UsersRouting;
node_modules/react-icons/fa/dropbox.js
bairrada97/festival
import React from 'react' import Icon from 'react-icon-base' const FaDropbox = props => ( <Icon viewBox="0 0 40 40" {...props}> <g><path d="m9 15.8l11 6.8-7.6 6.3-11-7.1z m22 12.4v2.4l-11 6.5v0l0 0 0 0v0l-10.9-6.5v-2.4l3.3 2.1 7.6-6.3v-0.1l0 0 0 0v0.1l7.7 6.3z m-18.6-25.6l7.6 6.4-11 6.8-7.6-6z m18.6 13.2l7.6 6-10.9 7.2-7.7-6.4z m-3.3-13.2l10.9 7.2-7.6 6-11-6.8z"/></g> </Icon> ) export default FaDropbox
packages/material-ui-icons/src/Airplay.js
kybarg/material-ui
import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( <React.Fragment><path d="M6 22h12l-6-6z" /><path d="M21 3H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h4v-2H3V5h18v12h-4v2h4c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z" /></React.Fragment> , 'Airplay');
packages/material-ui-icons/src/AccountBalanceWalletTwoTone.js
allanalexandre/material-ui
import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( <React.Fragment><path fill="none" d="M0 0h24v24H0V0z" /><g><path d="M13 17c-1.1 0-2-.9-2-2V9c0-1.1.9-2 2-2h6V5H5v14h14v-2h-6z" opacity=".3" /><path d="M21 7.28V5c0-1.1-.9-2-2-2H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2v-2.28c.59-.35 1-.98 1-1.72V9c0-.74-.41-1.38-1-1.72zM20 9v6h-7V9h7zM5 19V5h14v2h-6c-1.1 0-2 .9-2 2v6c0 1.1.9 2 2 2h6v2H5z" /><circle cx="16" cy="12" r="1.5" /></g></React.Fragment> , 'AccountBalanceWalletTwoTone');
ajax/libs/angular.js/0.10.2/angular.js
LorenzoBoccaccia/cdnjs
/** * @license AngularJS v0.10.2 * (c) 2010-2011 AngularJS http://angularjs.org * License: MIT */ 'use strict'; (function(window, document, undefined){ //////////////////////////////////// if (typeof document.getAttribute == $undefined) document.getAttribute = function() {}; /** * @ngdoc function * @name angular.lowercase * @function * * @description Converts the specified string to lowercase. * @param {string} string String to be converted to lowercase. * @returns {string} Lowercased string. */ var lowercase = function (string){ return isString(string) ? string.toLowerCase() : string; }; /** * @ngdoc function * @name angular.uppercase * @function * * @description Converts the specified string to uppercase. * @param {string} string String to be converted to uppercase. * @returns {string} Uppercased string. */ var uppercase = function (string){ return isString(string) ? string.toUpperCase() : string; }; var manualLowercase = function (s) { return isString(s) ? s.replace(/[A-Z]/g, function (ch) {return fromCharCode(ch.charCodeAt(0) | 32); }) : s; }; var manualUppercase = function (s) { return isString(s) ? s.replace(/[a-z]/g, function (ch) {return fromCharCode(ch.charCodeAt(0) & ~32); }) : s; }; // String#toLowerCase and String#toUpperCase don't produce correct results in browsers with Turkish // locale, for this reason we need to detect this case and redefine lowercase/uppercase methods // with correct but slower alternatives. if ('i' !== 'I'.toLowerCase()) { lowercase = manualLowercase; uppercase = manualUppercase; } function fromCharCode(code) { return String.fromCharCode(code); } var _undefined = undefined, _null = null, $$scope = '$scope', $$validate = '$validate', $angular = 'angular', $array = 'array', $boolean = 'boolean', $console = 'console', $date = 'date', $length = 'length', $name = 'name', $noop = 'noop', $null = 'null', $number = 'number', $object = 'object', $string = 'string', $value = 'value', $selected = 'selected', $undefined = 'undefined', NG_EXCEPTION = 'ng-exception', NG_VALIDATION_ERROR = 'ng-validation-error', NOOP = 'noop', Error = window.Error, /** holds major version number for IE or NaN for real browsers */ msie = parseInt((/msie (\d+)/.exec(lowercase(navigator.userAgent)) || [])[1], 10), jqLite, // delay binding since jQuery could be loaded after us. jQuery, // delay binding slice = [].slice, push = [].push, error = window[$console] ? bind(window[$console], window[$console]['error'] || noop) : noop, /** @name angular */ angular = window[$angular] || (window[$angular] = {}), /** @name angular.markup */ angularTextMarkup = extensionMap(angular, 'markup'), /** @name angular.attrMarkup */ angularAttrMarkup = extensionMap(angular, 'attrMarkup'), /** @name angular.directive */ angularDirective = extensionMap(angular, 'directive'), /** @name angular.widget */ angularWidget = extensionMap(angular, 'widget', lowercase), /** @name angular.validator */ angularValidator = extensionMap(angular, 'validator'), /** @name angular.fileter */ angularFilter = extensionMap(angular, 'filter'), /** @name angular.formatter */ angularFormatter = extensionMap(angular, 'formatter'), /** @name angular.service */ angularService = extensionMap(angular, 'service'), angularCallbacks = extensionMap(angular, 'callbacks'), nodeName_, rngScript = /^(|.*\/)angular(-.*?)?(\.min)?.js(\?[^#]*)?(#(.*))?$/, uid = ['0', '0', '0'], DATE_ISOSTRING_LN = 24; /** * @ngdoc function * @name angular.forEach * @function * * @description * Invokes the `iterator` function once for each item in `obj` collection, which can be either an * object or an array. The `iterator` function is invoked with `iterator(value, key)`, where `value` * is the value of an object property or an array element and `key` is the object property key or * array element index. Specifying a `context` for the function is optional. * * Note: this function was previously known as `angular.foreach`. * <pre> var values = {name: 'misko', gender: 'male'}; var log = []; angular.forEach(values, function(value, key){ this.push(key + ': ' + value); }, log); expect(log).toEqual(['name: misko', 'gender:male']); </pre> * * @param {Object|Array} obj Object to iterate over. * @param {function()} iterator Iterator function. * @param {Object=} context Object to become context (`this`) for the iterator function. * @returns {Object|Array} Reference to `obj`. */ function forEach(obj, iterator, context) { var key; if (obj) { if (isFunction(obj)){ for (key in obj) { if (key != 'prototype' && key != $length && key != $name && obj.hasOwnProperty(key)) { iterator.call(context, obj[key], key); } } } else if (obj.forEach && obj.forEach !== forEach) { obj.forEach(iterator, context); } else if (isObject(obj) && isNumber(obj.length)) { for (key = 0; key < obj.length; key++) iterator.call(context, obj[key], key); } else { for (key in obj) iterator.call(context, obj[key], key); } } return obj; } function forEachSorted(obj, iterator, context) { var keys = []; for (var key in obj) keys.push(key); keys.sort(); for ( var i = 0; i < keys.length; i++) { iterator.call(context, obj[keys[i]], keys[i]); } return keys; } function formatError(arg) { if (arg instanceof Error) { if (arg.stack) { arg = (arg.message && arg.stack.indexOf(arg.message) === -1) ? 'Error: ' + arg.message + '\n' + arg.stack : arg.stack; } else if (arg.sourceURL) { arg = arg.message + '\n' + arg.sourceURL + ':' + arg.line; } } return arg; } /** * @description * A consistent way of creating unique IDs in angular. The ID is a sequence of alpha numeric * characters such as '012ABC'. The reason why we are not using simply a number counter is that * the number string gets longer over time, and it can also overflow, where as the the nextId * will grow much slower, it is a string, and it will never overflow. * * @returns an unique alpha-numeric string */ function nextUid() { var index = uid.length; var digit; while(index) { index--; digit = uid[index].charCodeAt(0); if (digit == 57 /*'9'*/) { uid[index] = 'A'; return uid.join(''); } if (digit == 90 /*'Z'*/) { uid[index] = '0'; } else { uid[index] = String.fromCharCode(digit + 1); return uid.join(''); } } uid.unshift('0'); return uid.join(''); } /** * @ngdoc function * @name angular.extend * @function * * @description * Extends the destination object `dst` by copying all of the properties from the `src` object(s) * to `dst`. You can specify multiple `src` objects. * * @param {Object} dst Destination object. * @param {...Object} src Source object(s). */ function extend(dst) { forEach(arguments, function(obj){ if (obj !== dst) { forEach(obj, function(value, key){ dst[key] = value; }); } }); return dst; } function inherit(parent, extra) { return extend(new (extend(function(){}, {prototype:parent}))(), extra); } /** * @ngdoc function * @name angular.noop * @function * * @description * A function that performs no operations. This function can be useful when writing code in the * functional style. <pre> function foo(callback) { var result = calculateResult(); (callback || angular.noop)(result); } </pre> */ function noop() {} /** * @ngdoc function * @name angular.identity * @function * * @description * A function that returns its first argument. This function is useful when writing code in the * functional style. * <pre> function transformer(transformationFn, value) { return (transformationFn || identity)(value); }; </pre> */ function identity($) {return $;} function valueFn(value) {return function(){ return value; };} function extensionMap(angular, name, transform) { var extPoint; return angular[name] || (extPoint = angular[name] = function (name, fn, prop){ name = (transform || identity)(name); if (isDefined(fn)) { extPoint[name] = extend(fn, prop || {}); } return extPoint[name]; }); } /** * @ngdoc function * @name angular.isUndefined * @function * * @description * Determines if a reference is undefined. * * @param {*} value Reference to check. * @returns {boolean} True if `value` is undefined. */ function isUndefined(value){ return typeof value == $undefined; } /** * @ngdoc function * @name angular.isDefined * @function * * @description * Determines if a reference is defined. * * @param {*} value Reference to check. * @returns {boolean} True if `value` is defined. */ function isDefined(value){ return typeof value != $undefined; } /** * @ngdoc function * @name angular.isObject * @function * * @description * Determines if a reference is an `Object`. Unlike `typeof` in JavaScript, `null`s are not * considered to be objects. * * @param {*} value Reference to check. * @returns {boolean} True if `value` is an `Object` but not `null`. */ function isObject(value){ return value!=null && typeof value == $object;} /** * @ngdoc function * @name angular.isString * @function * * @description * Determines if a reference is a `String`. * * @param {*} value Reference to check. * @returns {boolean} True if `value` is a `String`. */ function isString(value){ return typeof value == $string;} /** * @ngdoc function * @name angular.isNumber * @function * * @description * Determines if a reference is a `Number`. * * @param {*} value Reference to check. * @returns {boolean} True if `value` is a `Number`. */ function isNumber(value){ return typeof value == $number;} /** * @ngdoc function * @name angular.isDate * @function * * @description * Determines if a value is a date. * * @param {*} value Reference to check. * @returns {boolean} True if `value` is a `Date`. */ function isDate(value){ return value instanceof Date; } /** * @ngdoc function * @name angular.isArray * @function * * @description * Determines if a reference is an `Array`. * * @param {*} value Reference to check. * @returns {boolean} True if `value` is an `Array`. */ function isArray(value) { return value instanceof Array; } /** * @ngdoc function * @name angular.isFunction * @function * * @description * Determines if a reference is a `Function`. * * @param {*} value Reference to check. * @returns {boolean} True if `value` is a `Function`. */ function isFunction(value){ return typeof value == 'function';} /** * Checks if `obj` is a window object. * * @private * @param {*} obj Object to check * @returns {boolean} True if `obj` is a window obj. */ function isWindow(obj) { return obj && obj.document && obj.location && obj.alert && obj.setInterval; } function isBoolean(value) { return typeof value == $boolean; } function isTextNode(node) { return nodeName_(node) == '#text'; } function trim(value) { return isString(value) ? value.replace(/^\s*/, '').replace(/\s*$/, '') : value; } function isElement(node) { return node && (node.nodeName // we are a direct element || (node.bind && node.find)); // we have a bind and find method part of jQuery API } /** * @param str 'key1,key2,...' * @returns {object} in the form of {key1:true, key2:true, ...} */ function makeMap(str){ var obj = {}, items = str.split(","), i; for ( i = 0; i < items.length; i++ ) obj[ items[i] ] = true; return obj; } /** * HTML class which is the only class which can be used in ng:bind to inline HTML for security * reasons. * * @constructor * @param html raw (unsafe) html * @param {string=} option If set to 'usafe', get method will return raw (unsafe/unsanitized) html */ function HTML(html, option) { this.html = html; this.get = lowercase(option) == 'unsafe' ? valueFn(html) : function htmlSanitize() { var buf = []; htmlParser(html, htmlSanitizeWriter(buf)); return buf.join(''); }; } if (msie < 9) { nodeName_ = function(element) { element = element.nodeName ? element : element[0]; return (element.scopeName && element.scopeName != 'HTML') ? uppercase(element.scopeName + ':' + element.nodeName) : element.nodeName; }; } else { nodeName_ = function(element) { return element.nodeName ? element.nodeName : element[0].nodeName; }; } function isVisible(element) { var rect = element[0].getBoundingClientRect(), width = (rect.width || (rect.right||0 - rect.left||0)), height = (rect.height || (rect.bottom||0 - rect.top||0)); return width>0 && height>0; } function map(obj, iterator, context) { var results = []; forEach(obj, function(value, index, list) { results.push(iterator.call(context, value, index, list)); }); return results; } /** * @ngdoc function * @name angular.Object.size * @function * * @description * Determines the number of elements in an array, the number of properties an object has, or * the length of a string. * * Note: This function is used to augment the Object type in Angular expressions. See * {@link angular.Object} for more information about Angular arrays. * * @param {Object|Array|string} obj Object, array, or string to inspect. * @param {boolean} [ownPropsOnly=false] Count only "own" properties in an object * @returns {number} The size of `obj` or `0` if `obj` is neither an object nor an array. * * @example * <doc:example> * <doc:source> * <script> * function SizeCtrl() { * this.fooStringLength = angular.Object.size('foo'); * } * </script> * <div ng:controller="SizeCtrl"> * Number of items in array: {{ [1,2].$size() }}<br/> * Number of items in object: {{ {a:1, b:2, c:3}.$size() }}<br/> * String length: {{fooStringLength}} * </div> * </doc:source> * <doc:scenario> * it('should print correct sizes for an array and an object', function() { * expect(binding('[1,2].$size()')).toBe('2'); * expect(binding('{a:1, b:2, c:3}.$size()')).toBe('3'); * expect(binding('fooStringLength')).toBe('3'); * }); * </doc:scenario> * </doc:example> */ function size(obj, ownPropsOnly) { var size = 0, key; if (isArray(obj) || isString(obj)) { return obj.length; } else if (isObject(obj)){ for (key in obj) if (!ownPropsOnly || obj.hasOwnProperty(key)) size++; } return size; } function includes(array, obj) { for ( var i = 0; i < array.length; i++) { if (obj === array[i]) return true; } return false; } function indexOf(array, obj) { for ( var i = 0; i < array.length; i++) { if (obj === array[i]) return i; } return -1; } function isLeafNode (node) { if (node) { switch (node.nodeName) { case "OPTION": case "PRE": case "TITLE": return true; } } return false; } /** * @ngdoc function * @name angular.copy * @function * * @description * Alias for {@link angular.Object.copy} */ /** * @ngdoc function * @name angular.Object.copy * @function * * @description * Creates a deep copy of `source`, which should be an object or an array. * * * If no destination is supplied, a copy of the object or array is created. * * If a destination is provided, all of its elements (for array) or properties (for objects) * are deleted and then all elements/properties from the source are copied to it. * * If `source` is not an object or array, `source` is returned. * * Note: this function is used to augment the Object type in Angular expressions. See * {@link angular.Array} for more information about Angular arrays. * * @param {*} source The source that will be used to make a copy. * Can be any type, including primitives, `null`, and `undefined`. * @param {(Object|Array)=} destination Destination into which the source is copied. If * provided, must be of the same type as `source`. * @returns {*} The copy or updated `destination`, if `destination` was specified. * * @example * <doc:example> * <doc:source> Salutation: <input type="text" name="master.salutation" value="Hello" /><br/> Name: <input type="text" name="master.name" value="world"/><br/> <button ng:click="form = master.$copy()">copy</button> <hr/> The master object is <span ng:hide="master.$equals(form)">NOT</span> equal to the form object. <pre>master={{master}}</pre> <pre>form={{form}}</pre> * </doc:source> * <doc:scenario> it('should print that initialy the form object is NOT equal to master', function() { expect(element('.doc-example-live input[name="master.salutation"]').val()).toBe('Hello'); expect(element('.doc-example-live input[name="master.name"]').val()).toBe('world'); expect(element('.doc-example-live span').css('display')).toBe('inline'); }); it('should make form and master equal when the copy button is clicked', function() { element('.doc-example-live button').click(); expect(element('.doc-example-live span').css('display')).toBe('none'); }); * </doc:scenario> * </doc:example> */ function copy(source, destination){ if (!destination) { destination = source; if (source) { if (isArray(source)) { destination = copy(source, []); } else if (isDate(source)) { destination = new Date(source.getTime()); } else if (isObject(source)) { destination = copy(source, {}); } } } else { if (isArray(source)) { while(destination.length) { destination.pop(); } for ( var i = 0; i < source.length; i++) { destination.push(copy(source[i])); } } else { forEach(destination, function(value, key){ delete destination[key]; }); for ( var key in source) { destination[key] = copy(source[key]); } } } return destination; } /** * @ngdoc function * @name angular.equals * @function * * @description * Alias for {@link angular.Object.equals} */ /** * @ngdoc function * @name angular.Object.equals * @function * * @description * Determines if two objects or two values are equivalent. Supports value types, arrays and * objects. * * Two objects or values are considered equivalent if at least one of the following is true: * * * Both objects or values pass `===` comparison. * * Both objects or values are of the same type and all of their properties pass `===` comparison. * * During a property comparision, properties of `function` type and properties with names * that begin with `$` are ignored. * * Note: This function is used to augment the Object type in Angular expressions. See * {@link angular.Array} for more information about Angular arrays. * * @param {*} o1 Object or value to compare. * @param {*} o2 Object or value to compare. * @returns {boolean} True if arguments are equal. * * @example * <doc:example> * <doc:source> Salutation: <input type="text" name="greeting.salutation" value="Hello" /><br/> Name: <input type="text" name="greeting.name" value="world"/><br/> <hr/> The <code>greeting</code> object is <span ng:hide="greeting.$equals({salutation:'Hello', name:'world'})">NOT</span> equal to <code>{salutation:'Hello', name:'world'}</code>. <pre>greeting={{greeting}}</pre> * </doc:source> * <doc:scenario> it('should print that initialy greeting is equal to the hardcoded value object', function() { expect(element('.doc-example-live input[name="greeting.salutation"]').val()).toBe('Hello'); expect(element('.doc-example-live input[name="greeting.name"]').val()).toBe('world'); expect(element('.doc-example-live span').css('display')).toBe('none'); }); it('should say that the objects are not equal when the form is modified', function() { input('greeting.name').enter('kitty'); expect(element('.doc-example-live span').css('display')).toBe('inline'); }); * </doc:scenario> * </doc:example> */ function equals(o1, o2) { if (o1 === o2) return true; if (o1 === null || o2 === null) return false; var t1 = typeof o1, t2 = typeof o2, length, key, keySet; if (t1 == t2 && t1 == 'object') { if (o1 instanceof Array) { if ((length = o1.length) == o2.length) { for(key=0; key<length; key++) { if (!equals(o1[key], o2[key])) return false; } return true; } } else { keySet = {}; for(key in o1) { if (key.charAt(0) !== '$' && !isFunction(o1[key]) && !equals(o1[key], o2[key])) { return false; } keySet[key] = true; } for(key in o2) { if (!keySet[key] && key.charAt(0) !== '$' && !isFunction(o2[key])) return false; } return true; } } return false; } function setHtml(node, html) { if (isLeafNode(node)) { if (msie) { node.innerText = html; } else { node.textContent = html; } } else { node.innerHTML = html; } } function isRenderableElement(element) { var name = element && element[0] && element[0].nodeName; return name && name.charAt(0) != '#' && !includes(['TR', 'COL', 'COLGROUP', 'TBODY', 'THEAD', 'TFOOT'], name); } function elementError(element, type, error) { var parent; while (!isRenderableElement(element)) { parent = element.parent(); if (parent.length) { element = element.parent(); } else { return; } } if (element[0]['$NG_ERROR'] !== error) { element[0]['$NG_ERROR'] = error; if (error) { element.addClass(type); element.attr(type, error.message || error); } else { element.removeClass(type); element.removeAttr(type); } } } function concat(array1, array2, index) { return array1.concat(slice.call(array2, index)); } function sliceArgs(args, startIndex) { return slice.call(args, startIndex || 0); } /** * @ngdoc function * @name angular.bind * @function * * @description * Returns a function which calls function `fn` bound to `self` (`self` becomes the `this` for * `fn`). You can supply optional `args` that are are prebound to the function. This feature is also * known as [function currying](http://en.wikipedia.org/wiki/Currying). * * @param {Object} self Context which `fn` should be evaluated in. * @param {function()} fn Function to be bound. * @param {...*} args Optional arguments to be prebound to the `fn` function call. * @returns {function()} Function that wraps the `fn` with all the specified bindings. */ function bind(self, fn) { var curryArgs = arguments.length > 2 ? sliceArgs(arguments, 2) : []; if (isFunction(fn) && !(fn instanceof RegExp)) { return curryArgs.length ? function() { return arguments.length ? fn.apply(self, curryArgs.concat(slice.call(arguments, 0))) : fn.apply(self, curryArgs); } : function() { return arguments.length ? fn.apply(self, arguments) : fn.call(self); }; } else { // in IE, native methods are not functions so they cannot be bound (note: they don't need to be) return fn; } } function toBoolean(value) { if (value && value.length !== 0) { var v = lowercase("" + value); value = !(v == 'f' || v == '0' || v == 'false' || v == 'no' || v == 'n' || v == '[]'); } else { value = false; } return value; } /** @name angular.compile */ function compile(element) { return new Compiler(angularTextMarkup, angularAttrMarkup, angularDirective, angularWidget) .compile(element); } ///////////////////////////////////////////////// /** * Parses an escaped url query string into key-value pairs. * @returns Object.<(string|boolean)> */ function parseKeyValue(/**string*/keyValue) { var obj = {}, key_value, key; forEach((keyValue || "").split('&'), function(keyValue){ if (keyValue) { key_value = keyValue.split('='); key = decodeURIComponent(key_value[0]); obj[key] = isDefined(key_value[1]) ? decodeURIComponent(key_value[1]) : true; } }); return obj; } function toKeyValue(obj) { var parts = []; forEach(obj, function(value, key) { parts.push(encodeUriQuery(key, true) + (value === true ? '' : '=' + encodeUriQuery(value, true))); }); return parts.length ? parts.join('&') : ''; } /** * We need our custom mehtod because encodeURIComponent is too agressive and doesn't follow * http://www.ietf.org/rfc/rfc3986.txt with regards to the character set (pchar) allowed in path * segments: * segment = *pchar * pchar = unreserved / pct-encoded / sub-delims / ":" / "@" * pct-encoded = "%" HEXDIG HEXDIG * unreserved = ALPHA / DIGIT / "-" / "." / "_" / "~" * sub-delims = "!" / "$" / "&" / "'" / "(" / ")" * / "*" / "+" / "," / ";" / "=" */ function encodeUriSegment(val) { return encodeUriQuery(val, true). replace(/%26/gi, '&'). replace(/%3D/gi, '='). replace(/%2B/gi, '+'); } /** * This method is intended for encoding *key* or *value* parts of query component. We need a custom * method becuase encodeURIComponent is too agressive and encodes stuff that doesn't have to be * encoded per http://tools.ietf.org/html/rfc3986: * query = *( pchar / "/" / "?" ) * pchar = unreserved / pct-encoded / sub-delims / ":" / "@" * unreserved = ALPHA / DIGIT / "-" / "." / "_" / "~" * pct-encoded = "%" HEXDIG HEXDIG * sub-delims = "!" / "$" / "&" / "'" / "(" / ")" * / "*" / "+" / "," / ";" / "=" */ function encodeUriQuery(val, pctEncodeSpaces) { return encodeURIComponent(val). replace(/%40/gi, '@'). replace(/%3A/gi, ':'). replace(/%24/g, '$'). replace(/%2C/gi, ','). replace((pctEncodeSpaces ? null : /%20/g), '+'); } /** * @ngdoc directive * @name angular.directive.ng:autobind * @element script * * @TODO ng:autobind is not a directive!! it should be documented as bootstrap parameter in a * separate bootstrap section. * @TODO rename to ng:autobind to ng:autoboot * * @description * Technically, ng:autobind is not a directive; it is an Angular bootstrap parameter that can act * as a directive. It must exist in the script used to boot Angular and can be used only one time. * For details on bootstrapping Angular, see {@link guide/dev_guide.bootstrap Initializing Angular} * in the Angular Developer Guide. * * `ng:autobind` with no parameters tells Angular to compile and manage the whole page. * * `ng:autobind="[root element ID]"` tells Angular to compile and manage part of the document, * starting at "root element ID". * */ function angularInit(config, document){ var autobind = config.autobind; if (autobind) { var element = isString(autobind) ? document.getElementById(autobind) : document, scope = compile(element)(createScope()), $browser = scope.$service('$browser'); if (config.css) $browser.addCss(config.base_url + config.css); else if(msie<8) $browser.addJs(config.ie_compat, config.ie_compat_id); scope.$apply(); } } function angularJsConfig(document, config) { bindJQuery(); var scripts = document.getElementsByTagName("script"), match; config = extend({ ie_compat_id: 'ng-ie-compat' }, config); for(var j = 0; j < scripts.length; j++) { match = (scripts[j].src || "").match(rngScript); if (match) { config.base_url = match[1]; config.ie_compat = match[1] + 'angular-ie-compat' + (match[2] || '') + '.js'; extend(config, parseKeyValue(match[6])); eachAttribute(jqLite(scripts[j]), function(value, name){ if (/^ng:/.exec(name)) { name = name.substring(3).replace(/-/g, '_'); value = value || true; config[name] = value; } }); } } return config; } function bindJQuery(){ // bind to jQuery if present; jQuery = window.jQuery; // reset to jQuery or default to us. if (jQuery) { jqLite = jQuery; extend(jQuery.fn, { scope: JQLitePrototype.scope }); } else { jqLite = jqLiteWrap; } angular.element = jqLite; } /** * throw error of the argument is falsy. */ function assertArg(arg, name, reason) { if (!arg) { var error = new Error("Argument '" + (name||'?') + "' is " + (reason || "required")); throw error; } } function assertArgFn(arg, name) { assertArg(isFunction(arg), name, 'not a function, got ' + (typeof arg == 'object' ? arg.constructor.name : typeof arg)); } /** * @ngdoc property * @name angular.version * @description * An object that contains information about the current AngularJS version. This object has the * following properties: * * - `full` – `{string}` – Full version string, such as "0.9.18". * - `major` – `{number}` – Major version number, such as "0". * - `minor` – `{number}` – Minor version number, such as "9". * - `dot` – `{number}` – Dot version number, such as "18". * - `codeName` – `{string}` – Code name of the release, such as "jiggling-armfat". */ var version = { full: '0.10.2', // all of these placeholder strings will be replaced by rake's major: 0, // compile task minor: 10, dot: 2, codeName: 'sneaky-seagull' }; var array = [].constructor; /** * @ngdoc function * @name angular.toJson * @function * * @description * Serializes input into a JSON-formatted string. * * @param {Object|Array|Date|string|number} obj Input to be serialized into JSON. * @param {boolean=} pretty If set to true, the JSON output will contain newlines and whitespace. * @returns {string} Jsonified string representing `obj`. */ function toJson(obj, pretty) { var buf = []; toJsonArray(buf, obj, pretty ? "\n " : null, []); return buf.join(''); } /** * @ngdoc function * @name angular.fromJson * @function * * @description * Deserializes a JSON string. * * @param {string} json JSON string to deserialize. * @param {boolean} [useNative=false] Use native JSON parser, if available. * @returns {Object|Array|Date|string|number} Deserialized thingy. */ function fromJson(json, useNative) { if (!isString(json)) return json; var obj; try { if (useNative && window.JSON && window.JSON.parse) { obj = JSON.parse(json); return transformDates(obj); } return parser(json, true).primary()(); } catch (e) { error("fromJson error: ", json, e); throw e; } // TODO make forEach optionally recursive and remove this function function transformDates(obj) { if (isString(obj) && obj.length === DATE_ISOSTRING_LN) { return angularString.toDate(obj); } else if (isArray(obj) || isObject(obj)) { forEach(obj, function(val, name) { obj[name] = transformDates(val); }); } return obj; } } angular.toJson = toJson; angular.fromJson = fromJson; function toJsonArray(buf, obj, pretty, stack) { if (isObject(obj)) { if (obj === window) { buf.push('WINDOW'); return; } if (obj === document) { buf.push('DOCUMENT'); return; } if (includes(stack, obj)) { buf.push('RECURSION'); return; } stack.push(obj); } if (obj === null) { buf.push($null); } else if (obj instanceof RegExp) { buf.push(angularString.quoteUnicode(obj.toString())); } else if (isFunction(obj)) { return; } else if (isBoolean(obj)) { buf.push('' + obj); } else if (isNumber(obj)) { if (isNaN(obj)) { buf.push($null); } else { buf.push('' + obj); } } else if (isString(obj)) { return buf.push(angularString.quoteUnicode(obj)); } else if (isObject(obj)) { if (isArray(obj)) { buf.push("["); var len = obj.length; var sep = false; for(var i=0; i<len; i++) { var item = obj[i]; if (sep) buf.push(","); if (!(item instanceof RegExp) && (isFunction(item) || isUndefined(item))) { buf.push($null); } else { toJsonArray(buf, item, pretty, stack); } sep = true; } buf.push("]"); } else if (isElement(obj)) { // TODO(misko): maybe in dev mode have a better error reporting? buf.push('DOM_ELEMENT'); } else if (isDate(obj)) { buf.push(angularString.quoteUnicode(angular.Date.toString(obj))); } else { buf.push("{"); if (pretty) buf.push(pretty); var comma = false; var childPretty = pretty ? pretty + " " : false; var keys = []; for(var k in obj) { if (obj.hasOwnProperty(k) && obj[k] !== undefined) { keys.push(k); } } keys.sort(); for ( var keyIndex = 0; keyIndex < keys.length; keyIndex++) { var key = keys[keyIndex]; var value = obj[key]; if (!isFunction(value)) { if (comma) { buf.push(","); if (pretty) buf.push(pretty); } buf.push(angularString.quote(key)); buf.push(":"); toJsonArray(buf, value, childPretty, stack); comma = true; } } buf.push("}"); } } if (isObject(obj)) { stack.pop(); } } /** * Template provides directions an how to bind to a given element. * It contains a list of init functions which need to be called to * bind to a new instance of elements. It also provides a list * of child paths which contain child templates */ function Template() { this.paths = []; this.children = []; this.linkFns = []; this.newScope = false; } Template.prototype = { link: function(element, scope) { var childScope = scope; if (this.newScope) { childScope = isFunction(this.newScope) ? scope.$new(this.newScope(scope)) : scope.$new(); element.data($$scope, childScope); } forEach(this.linkFns, function(fn) { try { childScope.$service.invoke(childScope, fn, [element]); } catch (e) { childScope.$service('$exceptionHandler')(e); } }); var i, childNodes = element[0].childNodes, children = this.children, paths = this.paths, length = paths.length; for (i = 0; i < length; i++) { children[i].link(jqLite(childNodes[paths[i]]), childScope); } }, addLinkFn:function(linkingFn) { if (linkingFn) { if (!linkingFn.$inject) linkingFn.$inject = []; this.linkFns.push(linkingFn); } }, addChild: function(index, template) { if (template) { this.paths.push(index); this.children.push(template); } }, empty: function() { return this.linkFns.length === 0 && this.paths.length === 0; } }; /////////////////////////////////// //Compiler ////////////////////////////////// /** * @workInProgress * @ngdoc function * @name angular.compile * @function * * @description * Compiles a piece of HTML string or DOM into a template and produces a template function, which * can then be used to link {@link angular.scope scope} and the template together. * * The compilation is a process of walking the DOM tree and trying to match DOM elements to * {@link angular.markup markup}, {@link angular.attrMarkup attrMarkup}, * {@link angular.widget widgets}, and {@link angular.directive directives}. For each match it * executes corresponding markup, attrMarkup, widget or directive template function and collects the * instance functions into a single template function which is then returned. * * The template function can then be used once to produce the view or as it is the case with * {@link angular.widget.@ng:repeat repeater} many-times, in which case each call results in a view * that is a DOM clone of the original template. * <pre> // compile the entire window.document and give me the scope bound to this template. var rootScope = angular.compile(window.document)(); // compile a piece of html var rootScope2 = angular.compile('<div ng:click="clicked = true">click me</div>')(); // compile a piece of html and retain reference to both the dom and scope var template = angular.element('<div ng:click="clicked = true">click me</div>'), scope = angular.compile(template)(); // at this point template was transformed into a view </pre> * * * @param {string|DOMElement} element Element or HTML to compile into a template function. * @returns {function([scope][, cloneAttachFn])} a template function which is used to bind template * (a DOM element/tree) to a scope. Where: * * * `scope` - A {@link angular.scope Scope} to bind to. If none specified, then a new * root scope is created. * * `cloneAttachFn` - If `cloneAttachFn` is provided, then the link function will clone the * `template` and call the `cloneAttachFn` function allowing the caller to attach the * cloned elements to the DOM document at the appropriate place. The `cloneAttachFn` is * called as: <br/> `cloneAttachFn(clonedElement, scope)` where: * * * `clonedElement` - is a clone of the original `element` passed into the compiler. * * `scope` - is the current scope with which the linking function is working with. * * Calling the template function returns the scope to which the element is bound to. It is either * the same scope as the one passed into the template function, or if none were provided it's the * newly create scope. * * If you need access to the bound view, there are two ways to do it: * * - If you are not asking the linking function to clone the template, create the DOM element(s) * before you send them to the compiler and keep this reference around. * <pre> * var view = angular.element('<p>{{total}}</p>'), * scope = angular.compile(view)(); * </pre> * * - if on the other hand, you need the element to be cloned, the view reference from the original * example would not point to the clone, but rather to the original template that was cloned. In * this case, you can access the clone via the cloneAttachFn: * <pre> * var original = angular.element('<p>{{total}}</p>'), * scope = someParentScope.$new(), * clone; * * angular.compile(original)(scope, function(clonedElement, scope) { * clone = clonedElement; * //attach the clone to DOM document at the right place * }); * * //now we have reference to the cloned DOM via `clone` * </pre> * * * Compiler Methods For Widgets and Directives: * * The following methods are available for use when you write your own widgets, directives, * and markup. (Recall that the compile function's this is a reference to the compiler.) * * `compile(element)` - returns linker - * Invoke a new instance of the compiler to compile a DOM element and return a linker function. * You can apply the linker function to the original element or a clone of the original element. * The linker function returns a scope. * * * `comment(commentText)` - returns element - Create a comment element. * * * `element(elementName)` - returns element - Create an element by name. * * * `text(text)` - returns element - Create a text element. * * * `descend([set])` - returns descend state (true or false). Get or set the current descend * state. If true the compiler will descend to children elements. * * * `directives([set])` - returns directive state (true or false). Get or set the current * directives processing state. The compiler will process directives only when directives set to * true. * * For information on how the compiler works, see the * {@link guide/dev_guide.compiler Angular HTML Compiler} section of the Developer Guide. */ function Compiler(markup, attrMarkup, directives, widgets){ this.markup = markup; this.attrMarkup = attrMarkup; this.directives = directives; this.widgets = widgets; } Compiler.prototype = { compile: function(templateElement) { templateElement = jqLite(templateElement); var index = 0, template, parent = templateElement.parent(); if (templateElement.length > 1) { // https://github.com/angular/angular.js/issues/338 throw Error("Cannot compile multiple element roots: " + jqLite('<div>').append(templateElement.clone()).html()); } if (parent && parent[0]) { parent = parent[0]; for(var i = 0; i < parent.childNodes.length; i++) { if (parent.childNodes[i] == templateElement[0]) { index = i; } } } template = this.templatize(templateElement, index) || new Template(); return function(scope, cloneConnectFn){ // important!!: we must call our jqLite.clone() since the jQuery one is trying to be smart // and sometimes changes the structure of the DOM. var element = cloneConnectFn ? JQLitePrototype.clone.call(templateElement) // IMPORTANT!!! : templateElement; scope = scope || createScope(); element.data($$scope, scope); scope.$element = element; (cloneConnectFn||noop)(element, scope); template.link(element, scope); return scope; }; }, templatize: function(element, elementIndex){ var self = this, widget, fn, directiveFns = self.directives, descend = true, directives = true, elementName = nodeName_(element), elementNamespace = elementName.indexOf(':') > 0 ? lowercase(elementName).replace(':', '-') : '', template, selfApi = { compile: bind(self, self.compile), descend: function(value){ if(isDefined(value)) descend = value; return descend;}, directives: function(value){ if(isDefined(value)) directives = value; return directives;}, scope: function(value){ if(isDefined(value)) template.newScope = template.newScope || value; return template.newScope;} }; element.addClass(elementNamespace); template = new Template(); eachAttribute(element, function(value, name){ if (!widget) { if ((widget = self.widgets('@' + name))) { element.addClass('ng-attr-widget'); widget = bind(selfApi, widget, value, element); } } }); if (!widget) { if ((widget = self.widgets(elementName))) { if (elementNamespace) element.addClass('ng-widget'); widget = bind(selfApi, widget, element); } } if (widget) { descend = false; directives = false; var parent = element.parent(); template.addLinkFn(widget.call(selfApi, element)); if (parent && parent[0]) { element = jqLite(parent[0].childNodes[elementIndex]); } } if (descend){ // process markup for text nodes only for(var i=0, child=element[0].childNodes; i<child.length; i++) { if (isTextNode(child[i])) { forEach(self.markup, function(markup){ if (i<child.length) { var textNode = jqLite(child[i]); markup.call(selfApi, textNode.text(), textNode, element); } }); } } } if (directives) { // Process attributes/directives eachAttribute(element, function(value, name){ forEach(self.attrMarkup, function(markup){ markup.call(selfApi, value, name, element); }); }); eachAttribute(element, function(value, name){ fn = directiveFns[name]; if (fn) { element.addClass('ng-directive'); template.addLinkFn((directiveFns[name]).call(selfApi, value, element)); } }); } // Process non text child nodes if (descend) { eachNode(element, function(child, i){ template.addChild(i, self.templatize(child, i)); }); } return template.empty() ? null : template; } }; function eachNode(element, fn){ var i, chldNodes = element[0].childNodes || [], chld; for (i = 0; i < chldNodes.length; i++) { if(!isTextNode(chld = chldNodes[i])) { fn(jqLite(chld), i); } } } function eachAttribute(element, fn){ var i, attrs = element[0].attributes || [], chld, attr, name, value, attrValue = {}; for (i = 0; i < attrs.length; i++) { attr = attrs[i]; name = attr.name; value = attr.value; if (msie && name == 'href') { value = decodeURIComponent(element[0].getAttribute(name, 2)); } attrValue[name] = value; } forEachSorted(attrValue, fn); } /** * DESIGN NOTES * * The design decisions behind the scope ware heavily favored for speed and memory consumption. * * The typical use of scope is to watch the expressions, which most of the time return the same * value as last time so we optimize the operation. * * Closures construction is expensive from speed as well as memory: * - no closures, instead ups prototypical inheritance for API * - Internal state needs to be stored on scope directly, which means that private state is * exposed as $$____ properties * * Loop operations are optimized by using while(count--) { ... } * - this means that in order to keep the same order of execution as addition we have to add * items to the array at the begging (shift) instead of at the end (push) * * Child scopes are created and removed often * - Using array would be slow since inserts in meddle are expensive so we use linked list * * There are few watches then a lot of observers. This is why you don't want the observer to be * implemented in the same way as watch. Watch requires return of initialization function which * are expensive to construct. */ function createScope(providers, instanceCache) { var scope = new Scope(); (scope.$service = createInjector(scope, providers, instanceCache)).eager(); return scope; } /** * @ngdoc function * @name angular.scope * * @description * A root scope can be created by calling {@link angular.scope angular.scope()}. Child scopes * are created using the {@link angular.scope.$new $new()} method. * (Most scopes are created automatically when compiled HTML template is executed.) * * Here is a simple scope snippet to show how you can interact with the scope. * <pre> var scope = angular.scope(); scope.salutation = 'Hello'; scope.name = 'World'; expect(scope.greeting).toEqual(undefined); scope.$watch('name', function(){ this.greeting = this.salutation + ' ' + this.name + '!'; }); // initialize the watch expect(scope.greeting).toEqual(undefined); scope.name = 'Misko'; // still old value, since watches have not been called yet expect(scope.greeting).toEqual(undefined); scope.$digest(); // fire all the watches expect(scope.greeting).toEqual('Hello Misko!'); * </pre> * * # Inheritance * A scope can inherit from a parent scope, as in this example: * <pre> var parent = angular.scope(); var child = parent.$new(); parent.salutation = "Hello"; child.name = "World"; expect(child.salutation).toEqual('Hello'); child.salutation = "Welcome"; expect(child.salutation).toEqual('Welcome'); expect(parent.salutation).toEqual('Hello'); * </pre> * * # Dependency Injection * See {@link guide/dev_guide.di dependency injection}. * * * @param {Object.<string, function()>=} providers Map of service factory which need to be provided * for the current scope. Defaults to {@link angular.service}. * @param {Object.<string, *>=} instanceCache Provides pre-instantiated services which should * append/override services provided by `providers`. This is handy when unit-testing and having * the need to override a default service. * @returns {Object} Newly created scope. * */ function Scope() { this.$id = nextUid(); this.$$phase = this.$parent = this.$$watchers = this.$$nextSibling = this.$$prevSibling = this.$$childHead = this.$$childTail = null; this.$destructor = noop; this['this'] = this.$root = this; this.$$asyncQueue = []; this.$$listeners = {}; } /** * @ngdoc property * @name angular.scope.$id * @returns {number} Unique scope ID (monotonically increasing alphanumeric sequence) useful for * debugging. */ /** * @ngdoc property * @name angular.scope.$service * @function * * @description * Provides reference to an instance of {@link angular.injector injector} which can be used to * retrieve {@link angular.service services}. In general the use of this api is discouraged, * in favor of proper {@link guide/dev_guide.di dependency injection}. * * @returns {function} {@link angular.injector injector} */ /** * @ngdoc property * @name angular.scope.$root * @returns {Scope} The root scope of the current scope hierarchy. */ /** * @ngdoc property * @name angular.scope.$parent * @returns {Scope} The parent scope of the current scope. */ Scope.prototype = { /** * @ngdoc function * @name angular.scope.$new * @function * * @description * Creates a new child {@link angular.scope scope}. The new scope can optionally behave as a * controller. The parent scope will propagate the {@link angular.scope.$digest $digest()} and * {@link angular.scope.$digest $digest()} events. The scope can be removed from the scope * hierarchy using {@link angular.scope.$destroy $destroy()}. * * {@link angular.scope.$destroy $destroy()} must be called on a scope when it is desired for * the scope and its child scopes to be permanently detached from the parent and thus stop * participating in model change detection and listener notification by invoking. * * @param {function()=} Class Constructor function which the scope should be applied to the scope. * @param {...*} curryArguments Any additional arguments which are curried into the constructor. * See {@link guide/dev_guide.di dependency injection}. * @returns {Object} The newly created child scope. * */ $new: function(Class, curryArguments) { var Child = function() {}; // should be anonymous; This is so that when the minifier munges // the name it does not become random set of chars. These will then show up as class // name in the debugger. var child; Child.prototype = this; child = new Child(); child['this'] = child; child.$$listeners = {}; child.$parent = this; child.$id = nextUid(); child.$$asyncQueue = []; child.$$phase = child.$$watchers = child.$$nextSibling = child.$$childHead = child.$$childTail = null; child.$$prevSibling = this.$$childTail; if (this.$$childHead) { this.$$childTail.$$nextSibling = child; this.$$childTail = child; } else { this.$$childHead = this.$$childTail = child; } // short circuit if we have no class if (Class) { // can't use forEach, we need speed! var ClassPrototype = Class.prototype; for(var key in ClassPrototype) { child[key] = bind(child, ClassPrototype[key]); } this.$service.invoke(child, Class, curryArguments); } return child; }, /** * @ngdoc function * @name angular.scope.$watch * @function * * @description * Registers a `listener` callback to be executed whenever the `watchExpression` changes. * * - The `watchExpression` is called on every call to {@link angular.scope.$digest $digest()} and * should return the value which will be watched. (Since {@link angular.scope.$digest $digest()} * reruns when it detects changes the `watchExpression` can execute multiple times per * {@link angular.scope.$digest $digest()} and should be idempotent.) * - The `listener` is called only when the value from the current `watchExpression` and the * previous call to `watchExpression' are not equal. The inequality is determined according to * {@link angular.equals} function. To save the value of the object for later comparison * {@link angular.copy} function is used. It also means that watching complex options will * have adverse memory and performance implications. * - The watch `listener` may change the model, which may trigger other `listener`s to fire. This * is achieved by rerunning the watchers until no changes are detected. The rerun iteration * limit is 100 to prevent infinity loop deadlock. * * * If you want to be notified whenever {@link angular.scope.$digest $digest} is called, * you can register an `watchExpression` function with no `listener`. (Since `watchExpression`, * can execute multiple times per {@link angular.scope.$digest $digest} cycle when a change is * detected, be prepared for multiple calls to your listener.) * * * # Example <pre> var scope = angular.scope(); scope.name = 'misko'; scope.counter = 0; expect(scope.counter).toEqual(0); scope.$watch('name', function(scope, newValue, oldValue) { counter = counter + 1; }); expect(scope.counter).toEqual(0); scope.$digest(); // no variable change expect(scope.counter).toEqual(0); scope.name = 'adam'; scope.$digest(); expect(scope.counter).toEqual(1); </pre> * * * * @param {(function()|string)} watchExpression Expression that is evaluated on each * {@link angular.scope.$digest $digest} cycle. A change in the return value triggers a * call to the `listener`. * * - `string`: Evaluated as {@link guide/dev_guide.expressions expression} * - `function(scope)`: called with current `scope` as a parameter. * @param {(function()|string)=} listener Callback called whenever the return value of * the `watchExpression` changes. * * - `string`: Evaluated as {@link guide/dev_guide.expressions expression} * - `function(scope, newValue, oldValue)`: called with current `scope` an previous and * current values as parameters. * @returns {function()} Returns a deregistration function for this listener. */ $watch: function(watchExp, listener) { var scope = this, get = compileToFn(watchExp, 'watch'), listenFn = compileToFn(listener || noop, 'listener'), array = scope.$$watchers, watcher = { fn: listenFn, last: Number.NaN, // NaN !== NaN. We used this to force $watch to fire on first run. get: get }; if (!array) { array = scope.$$watchers = []; } // we use unshift since we use a while loop in $digest for speed. // the while loop reads in reverse order. array.unshift(watcher); return function() { angularArray.remove(array, watcher); }; }, /** * @ngdoc function * @name angular.scope.$digest * @function * * @description * Process all of the {@link angular.scope.$watch watchers} of the current scope and its children. * Because a {@link angular.scope.$watch watcher}'s listener can change the model, the * `$digest()` keeps calling the {@link angular.scope.$watch watchers} until no more listeners are * firing. This means that it is possible to get into an infinite loop. This function will throw * `'Maximum iteration limit exceeded.'` if the number of iterations exceeds 100. * * Usually you don't call `$digest()` directly in * {@link angular.directive.ng:controller controllers} or in {@link angular.directive directives}. * Instead a call to {@link angular.scope.$apply $apply()} (typically from within a * {@link angular.directive directive}) will force a `$digest()`. * * If you want to be notified whenever `$digest()` is called, * you can register a `watchExpression` function with {@link angular.scope.$watch $watch()} * with no `listener`. * * You may have a need to call `$digest()` from within unit-tests, to simulate the scope * life-cycle. * * # Example <pre> var scope = angular.scope(); scope.name = 'misko'; scope.counter = 0; expect(scope.counter).toEqual(0); scope.$digest('name', function(scope, newValue, oldValue) { counter = counter + 1; }); expect(scope.counter).toEqual(0); scope.$digest(); // no variable change expect(scope.counter).toEqual(0); scope.name = 'adam'; scope.$digest(); expect(scope.counter).toEqual(1); </pre> * */ $digest: function() { var watch, value, last, watchers, asyncQueue, length, dirty, ttl = 100, next, current, target = this; if (target.$$phase) { throw Error(target.$$phase + ' already in progress'); } do { dirty = false; current = target; do { current.$$phase = '$digest'; asyncQueue = current.$$asyncQueue; while(asyncQueue.length) { try { current.$eval(asyncQueue.shift()); } catch (e) { current.$service('$exceptionHandler')(e); } } if ((watchers = current.$$watchers)) { // process our watches length = watchers.length; while (length--) { try { watch = watchers[length]; // Most common watches are on primitives, in which case we can short // circuit it with === operator, only when === fails do we use .equals if ((value = watch.get(current)) !== (last = watch.last) && !equals(value, last)) { dirty = true; watch.fn(current, watch.last = copy(value), last); } } catch (e) { current.$service('$exceptionHandler')(e); } } } current.$$phase = null; // Insanity Warning: scope depth-first traversal // yes, this code is a bit crazy, but it works and we have tests to prove it! // this piece should be kept in sync with the traversal in $broadcast if (!(next = (current.$$childHead || (current !== target && current.$$nextSibling)))) { while(current !== target && !(next = current.$$nextSibling)) { current = current.$parent; } } } while ((current = next)); if(!(ttl--)) { throw Error('100 $digest() iterations reached. Aborting!'); } } while (dirty); }, /** * @ngdoc function * @name angular.scope.$destroy * @function * * @description * Remove the current scope (and all of its children) from the parent scope. Removal implies * that calls to {@link angular.scope.$digest $digest()} will no longer propagate to the current * scope and its children. Removal also implies that the current scope is eligible for garbage * collection. * * The destructing scope emits an `$destroy` {@link angular.scope.$emit event}. * * The `$destroy()` is usually used by directives such as * {@link angular.widget.@ng:repeat ng:repeat} for managing the unrolling of the loop. * */ $destroy: function() { if (this.$root == this) return; // we can't remove the root node; this.$emit('$destroy'); var parent = this.$parent; if (parent.$$childHead == this) parent.$$childHead = this.$$nextSibling; if (parent.$$childTail == this) parent.$$childTail = this.$$prevSibling; if (this.$$prevSibling) this.$$prevSibling.$$nextSibling = this.$$nextSibling; if (this.$$nextSibling) this.$$nextSibling.$$prevSibling = this.$$prevSibling; }, /** * @ngdoc function * @name angular.scope.$eval * @function * * @description * Executes the `expression` on the current scope returning the result. Any exceptions in the * expression are propagated (uncaught). This is useful when evaluating engular expressions. * * # Example <pre> var scope = angular.scope(); scope.a = 1; scope.b = 2; expect(scope.$eval('a+b')).toEqual(3); expect(scope.$eval(function(scope){ return scope.a + scope.b; })).toEqual(3); </pre> * * @param {(string|function())=} expression An angular expression to be executed. * * - `string`: execute using the rules as defined in {@link guide/dev_guide.expressions expression}. * - `function(scope)`: execute the function with the current `scope` parameter. * * @returns {*} The result of evaluating the expression. */ $eval: function(expr) { var fn = isString(expr) ? expressionCompile(expr) : expr || noop; return fn(this); }, /** * @ngdoc function * @name angular.scope.$evalAsync * @function * * @description * Executes the expression on the current scope at a later point in time. * * The `$evalAsync` makes no guarantees as to when the `expression` will be executed, only that: * * - it will execute in the current script execution context (before any DOM rendering). * - at least one {@link angular.scope.$digest $digest cycle} will be performed after * `expression` execution. * * Any exceptions from the execution of the expression are forwarded to the * {@link angular.service.$exceptionHandler $exceptionHandler} service. * * @param {(string|function())=} expression An angular expression to be executed. * * - `string`: execute using the rules as defined in {@link guide/dev_guide.expressions expression}. * - `function(scope)`: execute the function with the current `scope` parameter. * */ $evalAsync: function(expr) { this.$$asyncQueue.push(expr); }, /** * @ngdoc function * @name angular.scope.$apply * @function * * @description * `$apply()` is used to execute an expression in angular from outside of the angular framework. * (For example from browser DOM events, setTimeout, XHR or third party libraries). * Because we are calling into the angular framework we need to perform proper scope life-cycle * of {@link angular.service.$exceptionHandler exception handling}, * {@link angular.scope.$digest executing watches}. * * ## Life cycle * * # Pseudo-Code of `$apply()` function $apply(expr) { try { return $eval(expr); } catch (e) { $exceptionHandler(e); } finally { $root.$digest(); } } * * * Scope's `$apply()` method transitions through the following stages: * * 1. The {@link guide/dev_guide.expressions expression} is executed using the * {@link angular.scope.$eval $eval()} method. * 2. Any exceptions from the execution of the expression are forwarded to the * {@link angular.service.$exceptionHandler $exceptionHandler} service. * 3. The {@link angular.scope.$watch watch} listeners are fired immediately after the expression * was executed using the {@link angular.scope.$digest $digest()} method. * * * @param {(string|function())=} exp An angular expression to be executed. * * - `string`: execute using the rules as defined in {@link guide/dev_guide.expressions expression}. * - `function(scope)`: execute the function with current `scope` parameter. * * @returns {*} The result of evaluating the expression. */ $apply: function(expr) { try { return this.$eval(expr); } catch (e) { this.$service('$exceptionHandler')(e); } finally { this.$root.$digest(); } }, /** * @ngdoc function * @name angular.scope.$on * @function * * @description * Listen on events of a given type. See {@link angular.scope.$emit $emit} for discussion of * event life cycle. * * @param {string} name Event name to listen on. * @param {function(event)} listener Function to call when the event is emitted. * @returns {function()} Returns a deregistration function for this listener. * * The event listener function format is: `function(event)`. The `event` object passed into the * listener has the following attributes * - `targetScope` - {Scope}: the scope on which the event was `$emit`-ed or `$broadcast`-ed. * - `currentScope` - {Scope}: the current scope which is handling the event. * - `name` - {string}: Name of the event. * - `cancel` - {function=}: calling `cancel` function will cancel further event propagation * (available only for events that were `$emit`-ed). */ $on: function(name, listener) { var namedListeners = this.$$listeners[name]; if (!namedListeners) { this.$$listeners[name] = namedListeners = []; } namedListeners.push(listener); return function() { angularArray.remove(namedListeners, listener); }; }, /** * @ngdoc function * @name angular.scope.$emit * @function * * @description * Dispatches an event `name` upwards through the scope hierarchy notifying the * registered {@link angular.scope.$on} listeners. * * The event life cycle starts at the scope on which `$emit` was called. All * {@link angular.scope.$on listeners} listening for `name` event on this scope get notified. * Afterwards, the event traverses upwards toward the root scope and calls all registered * listeners along the way. The event will stop propagating if one of the listeners cancels it. * * Any exception emmited from the {@link angular.scope.$on listeners} will be passed * onto the {@link angular.service.$exceptionHandler $exceptionHandler} service. * * @param {string} name Event name to emit. * @param {...*} args Optional set of arguments which will be passed onto the event listeners. */ $emit: function(name, args) { var empty = [], namedListeners, canceled = false, scope = this, event = { name: name, targetScope: scope, cancel: function(){canceled = true;} }, listenerArgs = concat([event], arguments, 1), i, length; do { namedListeners = scope.$$listeners[name] || empty; event.currentScope = scope; for (i=0, length=namedListeners.length; i<length; i++) { try { namedListeners[i].apply(null, listenerArgs); if (canceled) return; } catch (e) { scope.$service('$exceptionHandler')(e); } } //traverse upwards scope = scope.$parent; } while (scope); }, /** * @ngdoc function * @name angular.scope.$broadcast * @function * * @description * Dispatches an event `name` downwards to all child scopes (and their children) notifying the * registered {@link angular.scope.$on} listeners. * * The event life cycle starts at the scope on which `$broadcast` was called. All * {@link angular.scope.$on listeners} listening for `name` event on this scope get notified. * Afterwards, the event propagates to all direct and indirect scopes of the current scope and * calls all registered listeners along the way. The event cannot be canceled. * * Any exception emmited from the {@link angular.scope.$on listeners} will be passed * onto the {@link angular.service.$exceptionHandler $exceptionHandler} service. * * @param {string} name Event name to emit. * @param {...*} args Optional set of arguments which will be passed onto the event listeners. */ $broadcast: function(name, args) { var target = this, current = target, next = target, event = { name: name, targetScope: target }, listenerArgs = concat([event], arguments, 1); //down while you can, then up and next sibling or up and next sibling until back at root do { current = next; event.currentScope = current; forEach(current.$$listeners[name], function(listener) { try { listener.apply(null, listenerArgs); } catch(e) { current.$service('$exceptionHandler')(e); } }); // Insanity Warning: scope depth-first traversal // yes, this code is a bit crazy, but it works and we have tests to prove it! // this piece should be kept in sync with the traversal in $digest if (!(next = (current.$$childHead || (current !== target && current.$$nextSibling)))) { while(current !== target && !(next = current.$$nextSibling)) { current = current.$parent; } } } while ((current = next)); } }; function compileToFn(exp, name) { var fn = isString(exp) ? expressionCompile(exp) : exp; assertArgFn(fn, name); return fn; } /** * @ngdoc function * @name angular.injector * @function * * @description * Creates an injector function that can be used for retrieving services as well as for * dependency injection (see {@link guide/dev_guide.di dependency injection}). * * Angular creates an injector automatically for the root scope and it is available as the * {@link angular.scope.$service $service} property. Creating an injector doesn't automatically * create all of the `$eager` {@link angular.service services}. You have to call `injector.eager()` * to initialize them. * * @param {Object=} [factoryScope={}] The `this` for the service factory function. * @param {Object.<string, function()>=} [factories=angular.service] Map of the service factory * functions. * @param {Object.<string, function()>=} [instanceCache={}] Place where instances of services are * saved for reuse. Can also be used to override services specified by `serviceFactory` * (useful in tests). * @returns {function()} Injector function: * * * `injector(serviceName)`: * * `serviceName` - `{string=}` - Name of the service to retrieve. * * The injector function also has these properties: * * * An `invoke` property which can be used to invoke methods with dependency-injected arguments. * `injector.invoke(self, fn, curryArgs)` * * `self` - The "`this`" to be used when invoking the function. * * `fn` - The function to be invoked. The function may have the `$inject` property that * lists the set of arguments which should be auto-injected. * (see {@link guide/dev_guide.di dependency injection}). * * `curryArgs(array)` - Optional array of arguments to pass to the function * invocation after the injection arguments (also known as curry arguments or currying). * * An `eager` property which is used to initialize the eager services. * `injector.eager()` */ function createInjector(factoryScope, factories, instanceCache) { factories = factories || angularService; instanceCache = instanceCache || {}; factoryScope = factoryScope || {}; injector.invoke = invoke; injector.eager = function(){ forEach(factories, function(factory, name){ if (factory.$eager) injector(name); if (factory.$creation) throw new Error("Failed to register service '" + name + "': $creation property is unsupported. Use $eager:true or see release notes."); }); }; return injector; function injector(value){ if (!(value in instanceCache)) { var factory = factories[value]; if (!factory) throw Error("Unknown provider for '"+value+"'."); instanceCache[value] = invoke(factoryScope, factory); } return instanceCache[value]; } function invoke(self, fn, args){ args = args || []; var injectNames = injectionArgs(fn); var i = injectNames.length; while(i--) { args.unshift(injector(injectNames[i])); } return fn.apply(self, args); } } /** * THIS IS NOT PUBLIC DOC YET! * * @name angular.annotate * @function * * @description * Annotate the function with injection arguments. This is equivalent to setting the `$inject` * property as described in {@link guide.di dependency injection}. * * <pre> * var MyController = angular.annotate('$location', function($location){ ... }); * </pre> * * is the same as * * <pre> * var MyController = function($location){ ... }; * MyController.$inject = ['$location']; * </pre> * * @param {String|Array} serviceName... zero or more service names to inject into the * `annotatedFunction`. * @param {function} annotatedFunction function to annotate with `$inject` * functions. * @returns {function} `annotatedFunction` */ function annotate(services, fn) { if (services instanceof Array) { fn.$inject = services; return fn; } else { var i = 0, length = arguments.length - 1, // last one is the destination function $inject = arguments[length].$inject = []; for (; i < length; i++) { $inject.push(arguments[i]); } return arguments[length]; // return the last one } } function angularServiceInject(name, fn, inject, eager) { angularService(name, fn, {$inject:inject, $eager:eager}); } /** * @returns the $inject property of function. If not found the * the $inject is computed by looking at the toString of function and * extracting all arguments which and assuming that they are the * injection names. */ var FN_ARGS = /^function\s*[^\(]*\(([^\)]*)\)/m; var FN_ARG_SPLIT = /,/; var FN_ARG = /^\s*(.+?)\s*$/; var STRIP_COMMENTS = /((\/\/.*$)|(\/\*[\s\S]*?\*\/))/mg; function injectionArgs(fn) { assertArgFn(fn); if (!fn.$inject) { var args = fn.$inject = []; var fnText = fn.toString().replace(STRIP_COMMENTS, ''); var argDecl = fnText.match(FN_ARGS); forEach(argDecl[1].split(FN_ARG_SPLIT), function(arg){ arg.replace(FN_ARG, function(all, name){ args.push(name); }); }); } return fn.$inject; } var OPERATORS = { 'null':function(self){return null;}, 'true':function(self){return true;}, 'false':function(self){return false;}, $undefined:noop, '+':function(self, a,b){a=a(self); b=b(self); return (isDefined(a)?a:0)+(isDefined(b)?b:0);}, '-':function(self, a,b){a=a(self); b=b(self); return (isDefined(a)?a:0)-(isDefined(b)?b:0);}, '*':function(self, a,b){return a(self)*b(self);}, '/':function(self, a,b){return a(self)/b(self);}, '%':function(self, a,b){return a(self)%b(self);}, '^':function(self, a,b){return a(self)^b(self);}, '=':noop, '==':function(self, a,b){return a(self)==b(self);}, '!=':function(self, a,b){return a(self)!=b(self);}, '<':function(self, a,b){return a(self)<b(self);}, '>':function(self, a,b){return a(self)>b(self);}, '<=':function(self, a,b){return a(self)<=b(self);}, '>=':function(self, a,b){return a(self)>=b(self);}, '&&':function(self, a,b){return a(self)&&b(self);}, '||':function(self, a,b){return a(self)||b(self);}, '&':function(self, a,b){return a(self)&b(self);}, // '|':function(self, a,b){return a|b;}, '|':function(self, a,b){return b(self)(self, a(self));}, '!':function(self, a){return !a(self);} }; var ESCAPE = {"n":"\n", "f":"\f", "r":"\r", "t":"\t", "v":"\v", "'":"'", '"':'"'}; function lex(text, parseStringsForObjects){ var dateParseLength = parseStringsForObjects ? DATE_ISOSTRING_LN : -1, tokens = [], token, index = 0, json = [], ch, lastCh = ':'; // can start regexp while (index < text.length) { ch = text.charAt(index); if (is('"\'')) { readString(ch); } else if (isNumber(ch) || is('.') && isNumber(peek())) { readNumber(); } else if (isIdent(ch)) { readIdent(); // identifiers can only be if the preceding char was a { or , if (was('{,') && json[0]=='{' && (token=tokens[tokens.length-1])) { token.json = token.text.indexOf('.') == -1; } } else if (is('(){}[].,;:')) { tokens.push({ index:index, text:ch, json:(was(':[,') && is('{[')) || is('}]:,') }); if (is('{[')) json.unshift(ch); if (is('}]')) json.shift(); index++; } else if (isWhitespace(ch)) { index++; continue; } else { var ch2 = ch + peek(), fn = OPERATORS[ch], fn2 = OPERATORS[ch2]; if (fn2) { tokens.push({index:index, text:ch2, fn:fn2}); index += 2; } else if (fn) { tokens.push({index:index, text:ch, fn:fn, json: was('[,:') && is('+-')}); index += 1; } else { throwError("Unexpected next character ", index, index+1); } } lastCh = ch; } return tokens; function is(chars) { return chars.indexOf(ch) != -1; } function was(chars) { return chars.indexOf(lastCh) != -1; } function peek() { return index + 1 < text.length ? text.charAt(index + 1) : false; } function isNumber(ch) { return '0' <= ch && ch <= '9'; } function isWhitespace(ch) { return ch == ' ' || ch == '\r' || ch == '\t' || ch == '\n' || ch == '\v' || ch == '\u00A0'; // IE treats non-breaking space as \u00A0 } function isIdent(ch) { return 'a' <= ch && ch <= 'z' || 'A' <= ch && ch <= 'Z' || '_' == ch || ch == '$'; } function isExpOperator(ch) { return ch == '-' || ch == '+' || isNumber(ch); } function throwError(error, start, end) { end = end || index; throw Error("Lexer Error: " + error + " at column" + (isDefined(start) ? "s " + start + "-" + index + " [" + text.substring(start, end) + "]" : " " + end) + " in expression [" + text + "]."); } function readNumber() { var number = ""; var start = index; while (index < text.length) { var ch = lowercase(text.charAt(index)); if (ch == '.' || isNumber(ch)) { number += ch; } else { var peekCh = peek(); if (ch == 'e' && isExpOperator(peekCh)) { number += ch; } else if (isExpOperator(ch) && peekCh && isNumber(peekCh) && number.charAt(number.length - 1) == 'e') { number += ch; } else if (isExpOperator(ch) && (!peekCh || !isNumber(peekCh)) && number.charAt(number.length - 1) == 'e') { throwError('Invalid exponent'); } else { break; } } index++; } number = 1 * number; tokens.push({index:start, text:number, json:true, fn:function(){return number;}}); } function readIdent() { var ident = ""; var start = index; var fn; while (index < text.length) { var ch = text.charAt(index); if (ch == '.' || isIdent(ch) || isNumber(ch)) { ident += ch; } else { break; } index++; } fn = OPERATORS[ident]; tokens.push({ index:start, text:ident, json: fn, fn:fn||extend(getterFn(ident), { assign:function(self, value){ return setter(self, ident, value); } }) }); } function readString(quote) { var start = index; index++; var string = ""; var rawString = quote; var escape = false; while (index < text.length) { var ch = text.charAt(index); rawString += ch; if (escape) { if (ch == 'u') { var hex = text.substring(index + 1, index + 5); if (!hex.match(/[\da-f]{4}/i)) throwError( "Invalid unicode escape [\\u" + hex + "]"); index += 4; string += String.fromCharCode(parseInt(hex, 16)); } else { var rep = ESCAPE[ch]; if (rep) { string += rep; } else { string += ch; } } escape = false; } else if (ch == '\\') { escape = true; } else if (ch == quote) { index++; tokens.push({index:start, text:rawString, string:string, json:true, fn:function(){ return (string.length == dateParseLength) ? angular['String']['toDate'](string) : string; }}); return; } else { string += ch; } index++; } throwError("Unterminated quote", start); } } ///////////////////////////////////////// function parser(text, json){ var ZERO = valueFn(0), tokens = lex(text, json), assignment = _assignment, assignable = logicalOR, functionCall = _functionCall, fieldAccess = _fieldAccess, objectIndex = _objectIndex, filterChain = _filterChain, functionIdent = _functionIdent, pipeFunction = _pipeFunction; if(json){ // The extra level of aliasing is here, just in case the lexer misses something, so that // we prevent any accidental execution in JSON. assignment = logicalOR; functionCall = fieldAccess = objectIndex = assignable = filterChain = functionIdent = pipeFunction = function (){ throwError("is not valid json", {text:text, index:0}); }; } //TODO: Shouldn't all of the public methods have assertAllConsumed? //TODO: I think these should be public as part of the parser api instead of scope.$eval(). return { assignable: assertConsumed(assignable), primary: assertConsumed(primary), statements: assertConsumed(statements), validator: assertConsumed(validator), formatter: assertConsumed(formatter), filter: assertConsumed(filter) }; function assertConsumed(fn) { return function(){ var value = fn(); if (tokens.length !== 0) { throwError("is an unexpected token", tokens[0]); } return value; }; } /////////////////////////////////// function throwError(msg, token) { throw Error("Syntax Error: Token '" + token.text + "' " + msg + " at column " + (token.index + 1) + " of the expression [" + text + "] starting at [" + text.substring(token.index) + "]."); } function peekToken() { if (tokens.length === 0) throw Error("Unexpected end of expression: " + text); return tokens[0]; } function peek(e1, e2, e3, e4) { if (tokens.length > 0) { var token = tokens[0]; var t = token.text; if (t==e1 || t==e2 || t==e3 || t==e4 || (!e1 && !e2 && !e3 && !e4)) { return token; } } return false; } function expect(e1, e2, e3, e4){ var token = peek(e1, e2, e3, e4); if (token) { if (json && !token.json) { throwError("is not valid json", token); } tokens.shift(); return token; } return false; } function consume(e1){ if (!expect(e1)) { throwError("is unexpected, expecting [" + e1 + "]", peek()); } } function unaryFn(fn, right) { return function(self) { return fn(self, right); }; } function binaryFn(left, fn, right) { return function(self) { return fn(self, left, right); }; } function hasTokens () { return tokens.length > 0; } function statements(){ var statements = []; while(true) { if (tokens.length > 0 && !peek('}', ')', ';', ']')) statements.push(filterChain()); if (!expect(';')) { // optimize for the common case where there is only one statement. // TODO(size): maybe we should not support multiple statements? return statements.length == 1 ? statements[0] : function (self){ var value; for ( var i = 0; i < statements.length; i++) { var statement = statements[i]; if (statement) value = statement(self); } return value; }; } } } function _filterChain(){ var left = expression(); var token; while(true) { if ((token = expect('|'))) { left = binaryFn(left, token.fn, filter()); } else { return left; } } } function filter(){ return pipeFunction(angularFilter); } function validator(){ return pipeFunction(angularValidator); } function formatter(){ var token = expect(); var formatter = angularFormatter[token.text]; var argFns = []; if (!formatter) throwError('is not a valid formatter.', token); while(true) { if ((token = expect(':'))) { argFns.push(expression()); } else { return valueFn({ format:invokeFn(formatter.format), parse:invokeFn(formatter.parse) }); } } function invokeFn(fn){ return function(self, input){ var args = [input]; for ( var i = 0; i < argFns.length; i++) { args.push(argFns[i](self)); } return fn.apply(self, args); }; } } function _pipeFunction(fnScope){ var fn = functionIdent(fnScope); var argsFn = []; var token; while(true) { if ((token = expect(':'))) { argsFn.push(expression()); } else { var fnInvoke = function(self, input){ var args = [input]; for ( var i = 0; i < argsFn.length; i++) { args.push(argsFn[i](self)); } return fn.apply(self, args); }; return function(){ return fnInvoke; }; } } } function expression(){ return assignment(); } function _assignment(){ var left = logicalOR(); var right; var token; if ((token = expect('='))) { if (!left.assign) { throwError("implies assignment but [" + text.substring(0, token.index) + "] can not be assigned to", token); } right = logicalOR(); return function(self){ return left.assign(self, right(self)); }; } else { return left; } } function logicalOR(){ var left = logicalAND(); var token; while(true) { if ((token = expect('||'))) { left = binaryFn(left, token.fn, logicalAND()); } else { return left; } } } function logicalAND(){ var left = equality(); var token; if ((token = expect('&&'))) { left = binaryFn(left, token.fn, logicalAND()); } return left; } function equality(){ var left = relational(); var token; if ((token = expect('==','!='))) { left = binaryFn(left, token.fn, equality()); } return left; } function relational(){ var left = additive(); var token; if ((token = expect('<', '>', '<=', '>='))) { left = binaryFn(left, token.fn, relational()); } return left; } function additive(){ var left = multiplicative(); var token; while ((token = expect('+','-'))) { left = binaryFn(left, token.fn, multiplicative()); } return left; } function multiplicative(){ var left = unary(); var token; while ((token = expect('*','/','%'))) { left = binaryFn(left, token.fn, unary()); } return left; } function unary(){ var token; if (expect('+')) { return primary(); } else if ((token = expect('-'))) { return binaryFn(ZERO, token.fn, unary()); } else if ((token = expect('!'))) { return unaryFn(token.fn, unary()); } else { return primary(); } } function _functionIdent(fnScope) { var token = expect(); var element = token.text.split('.'); var instance = fnScope; var key; for ( var i = 0; i < element.length; i++) { key = element[i]; if (instance) instance = instance[key]; } if (!isFunction(instance)) { throwError("should be a function", token); } return instance; } function primary() { var primary; if (expect('(')) { var expression = filterChain(); consume(')'); primary = expression; } else if (expect('[')) { primary = arrayDeclaration(); } else if (expect('{')) { primary = object(); } else { var token = expect(); primary = token.fn; if (!primary) { throwError("not a primary expression", token); } } var next; while ((next = expect('(', '[', '.'))) { if (next.text === '(') { primary = functionCall(primary); } else if (next.text === '[') { primary = objectIndex(primary); } else if (next.text === '.') { primary = fieldAccess(primary); } else { throwError("IMPOSSIBLE"); } } return primary; } function _fieldAccess(object) { var field = expect().text; var getter = getterFn(field); return extend(function (self){ return getter(object(self)); }, { assign:function(self, value){ return setter(object(self), field, value); } }); } function _objectIndex(obj) { var indexFn = expression(); consume(']'); return extend( function (self){ var o = obj(self); var i = indexFn(self); return (o) ? o[i] : undefined; }, { assign:function(self, value){ return obj(self)[indexFn(self)] = value; } }); } function _functionCall(fn) { var argsFn = []; if (peekToken().text != ')') { do { argsFn.push(expression()); } while (expect(',')); } consume(')'); return function (self){ var args = []; for ( var i = 0; i < argsFn.length; i++) { args.push(argsFn[i](self)); } var fnPtr = fn(self) || noop; // IE stupidity! return fnPtr.apply ? fnPtr.apply(self, args) : fnPtr(args[0], args[1], args[2], args[3], args[4]); }; } // This is used with json array declaration function arrayDeclaration () { var elementFns = []; if (peekToken().text != ']') { do { elementFns.push(expression()); } while (expect(',')); } consume(']'); return function (self){ var array = []; for ( var i = 0; i < elementFns.length; i++) { array.push(elementFns[i](self)); } return array; }; } function object () { var keyValues = []; if (peekToken().text != '}') { do { var token = expect(), key = token.string || token.text; consume(":"); var value = expression(); keyValues.push({key:key, value:value}); } while (expect(',')); } consume('}'); return function (self){ var object = {}; for ( var i = 0; i < keyValues.length; i++) { var keyValue = keyValues[i]; var value = keyValue.value(self); object[keyValue.key] = value; } return object; }; } function watchDecl () { var anchorName = expect().text; consume(":"); var expressionFn; if (peekToken().text == '{') { consume("{"); expressionFn = statements(); consume("}"); } else { expressionFn = expression(); } return function(self) { return {name:anchorName, fn:expressionFn}; }; } } ////////////////////////////////////////////////// // Parser helper functions ////////////////////////////////////////////////// function setter(obj, path, setValue) { var element = path.split('.'); for (var i = 0; element.length > 1; i++) { var key = element.shift(); var propertyObj = obj[key]; if (!propertyObj) { propertyObj = {}; obj[key] = propertyObj; } obj = propertyObj; } obj[element.shift()] = setValue; return setValue; } /** * Return the value accesible from the object by path. Any undefined traversals are ignored * @param {Object} obj starting object * @param {string} path path to traverse * @param {boolean=true} bindFnToScope * @returns value as accesbile by path */ function getter(obj, path, bindFnToScope) { if (!path) return obj; var keys = path.split('.'); var key; var lastInstance = obj; var len = keys.length; for (var i = 0; i < len; i++) { key = keys[i]; if (obj) { obj = (lastInstance = obj)[key]; } if (isUndefined(obj) && key.charAt(0) == '$') { var type = angularGlobal.typeOf(lastInstance); type = angular[type.charAt(0).toUpperCase()+type.substring(1)]; var fn = type ? type[[key.substring(1)]] : _undefined; if (fn) { return obj = bind(lastInstance, fn, lastInstance); } } } if (!bindFnToScope && isFunction(obj)) { return bind(lastInstance, obj); } return obj; } var getterFnCache = {}, compileCache = {}, JS_KEYWORDS = {}; forEach( ("abstract,boolean,break,byte,case,catch,char,class,const,continue,debugger,default," + "delete,do,double,else,enum,export,extends,false,final,finally,float,for,function,goto," + "if,implements,import,ininstanceof,intinterface,long,native,new,null,package,private," + "protected,public,return,short,static,super,switch,synchronized,this,throw,throws," + "transient,true,try,typeof,var,volatile,void,undefined,while,with").split(/,/), function(key){ JS_KEYWORDS[key] = true;} ); function getterFn(path) { var fn = getterFnCache[path]; if (fn) return fn; var code = 'var l, fn, t;\n'; forEach(path.split('.'), function(key) { key = (JS_KEYWORDS[key]) ? '["' + key + '"]' : '.' + key; code += 'if(!s) return s;\n' + 'l=s;\n' + 's=s' + key + ';\n' + 'if(typeof s=="function" && !(s instanceof RegExp)) s = function(){ return l' + key + '.apply(l, arguments); };\n'; if (key.charAt(1) == '$') { // special code for super-imposed functions var name = key.substr(2); code += 'if(!s) {\n' + ' t = angular.Global.typeOf(l);\n' + ' fn = (angular[t.charAt(0).toUpperCase() + t.substring(1)]||{})["' + name + '"];\n' + ' if (fn) s = function(){ return fn.apply(l, ' + '[l].concat(Array.prototype.slice.call(arguments, 0))); };\n' + '}\n'; } }); code += 'return s;'; fn = Function('s', code); fn["toString"] = function(){ return code; }; return getterFnCache[path] = fn; } /////////////////////////////////// // TODO(misko): Should this function be public? function compileExpr(expr) { return parser(expr).statements(); } // TODO(misko): Deprecate? Remove! // I think that compilation should be a service. function expressionCompile(exp) { if (isFunction(exp)) return exp; var fn = compileCache[exp]; if (!fn) { fn = compileCache[exp] = parser(exp).statements(); } return fn; } function Route(template, defaults) { this.template = template = template + '#'; this.defaults = defaults || {}; var urlParams = this.urlParams = {}; forEach(template.split(/\W/), function(param){ if (param && template.match(new RegExp(":" + param + "\\W"))) { urlParams[param] = true; } }); } Route.prototype = { url: function(params) { var self = this, url = this.template, encodedVal; params = params || {}; forEach(this.urlParams, function(_, urlParam){ encodedVal = encodeUriSegment(params[urlParam] || self.defaults[urlParam] || ""); url = url.replace(new RegExp(":" + urlParam + "(\\W)"), encodedVal + "$1"); }); url = url.replace(/\/?#$/, ''); var query = []; forEachSorted(params, function(value, key){ if (!self.urlParams[key]) { query.push(encodeUriQuery(key) + '=' + encodeUriQuery(value)); } }); url = url.replace(/\/*$/, ''); return url + (query.length ? '?' + query.join('&') : ''); } }; function ResourceFactory(xhr) { this.xhr = xhr; } ResourceFactory.DEFAULT_ACTIONS = { 'get': {method:'GET'}, 'save': {method:'POST'}, 'query': {method:'GET', isArray:true}, 'remove': {method:'DELETE'}, 'delete': {method:'DELETE'} }; ResourceFactory.prototype = { route: function(url, paramDefaults, actions){ var self = this; var route = new Route(url); actions = extend({}, ResourceFactory.DEFAULT_ACTIONS, actions); function extractParams(data){ var ids = {}; forEach(paramDefaults || {}, function(value, key){ ids[key] = value.charAt && value.charAt(0) == '@' ? getter(data, value.substr(1)) : value; }); return ids; } function Resource(value){ copy(value || {}, this); } forEach(actions, function(action, name){ var isPostOrPut = action.method == 'POST' || action.method == 'PUT'; Resource[name] = function (a1, a2, a3, a4) { var params = {}; var data; var success = noop; var error = null; switch(arguments.length) { case 4: error = a4; success = a3; //fallthrough case 3: case 2: if (isFunction(a2)) { if (isFunction(a1)) { success = a1; error = a2; break; } success = a2; error = a3; //fallthrough } else { params = a1; data = a2; success = a3; break; } case 1: if (isFunction(a1)) success = a1; else if (isPostOrPut) data = a1; else params = a1; break; case 0: break; default: throw "Expected between 0-4 arguments [params, data, success, error], got " + arguments.length + " arguments."; } var value = this instanceof Resource ? this : (action.isArray ? [] : new Resource(data)); self.xhr( action.method, route.url(extend({}, extractParams(data), action.params || {}, params)), data, function(status, response) { if (response) { if (action.isArray) { value.length = 0; forEach(response, function(item) { value.push(new Resource(item)); }); } else { copy(response, value); } } (success||noop)(value); }, error || action.verifyCache, action.verifyCache); return value; }; Resource.bind = function(additionalParamDefaults){ return self.route(url, extend({}, paramDefaults, additionalParamDefaults), actions); }; Resource.prototype['$' + name] = function(a1, a2, a3) { var params = extractParams(this), success = noop, error; switch(arguments.length) { case 3: params = a1; success = a2; error = a3; break; case 2: case 1: if (isFunction(a1)) { success = a1; error = a2; } else { params = a1; success = a2 || noop; } case 0: break; default: throw "Expected between 1-3 arguments [params, success, error], got " + arguments.length + " arguments."; } var data = isPostOrPut ? this : undefined; Resource[name].call(this, params, data, success, error); }; }); return Resource; } }; ////////////////////////////// // Browser ////////////////////////////// var XHR = window.XMLHttpRequest || function () { try { return new ActiveXObject("Msxml2.XMLHTTP.6.0"); } catch (e1) {} try { return new ActiveXObject("Msxml2.XMLHTTP.3.0"); } catch (e2) {} try { return new ActiveXObject("Msxml2.XMLHTTP"); } catch (e3) {} throw new Error("This browser does not support XMLHttpRequest."); }; /** * @ngdoc service * @name angular.service.$browser * @requires $log * * @description * Constructor for the object exposed as $browser service. * * This object has two goals: * * - hide all the global state in the browser caused by the window object * - abstract away all the browser specific features and inconsistencies * * For tests we provide {@link angular.mock.service.$browser mock implementation} of the `$browser` * service, which can be used for convenient testing of the application without the interaction with * the real browser apis. */ /** * @param {object} window The global window object. * @param {object} document jQuery wrapped document. * @param {object} body jQuery wrapped document.body. * @param {function()} XHR XMLHttpRequest constructor. * @param {object} $log console.log or an object with the same interface. * @param {object} $sniffer $sniffer service */ function Browser(window, document, body, XHR, $log, $sniffer) { var self = this, rawDocument = document[0], location = window.location, history = window.history, setTimeout = window.setTimeout, clearTimeout = window.clearTimeout, pendingDeferIds = {}; self.isMock = false; ////////////////////////////////////////////////////////////// // XHR API ////////////////////////////////////////////////////////////// var idCounter = 0; var outstandingRequestCount = 0; var outstandingRequestCallbacks = []; /** * Executes the `fn` function (supports currying) and decrements the `outstandingRequestCallbacks` * counter. If the counter reaches 0, all the `outstandingRequestCallbacks` are executed. */ function completeOutstandingRequest(fn) { try { fn.apply(null, sliceArgs(arguments, 1)); } finally { outstandingRequestCount--; if (outstandingRequestCount === 0) { while(outstandingRequestCallbacks.length) { try { outstandingRequestCallbacks.pop()(); } catch (e) { $log.error(e); } } } } } /** * @workInProgress * @ngdoc method * @name angular.service.$browser#xhr * @methodOf angular.service.$browser * * @param {string} method Requested method (get|post|put|delete|head|json) * @param {string} url Requested url * @param {?string} post Post data to send (null if nothing to post) * @param {function(number, string)} callback Function that will be called on response * @param {object=} header additional HTTP headers to send with XHR. * Standard headers are: * <ul> * <li><tt>Content-Type</tt>: <tt>application/x-www-form-urlencoded</tt></li> * <li><tt>Accept</tt>: <tt>application/json, text/plain, &#42;/&#42;</tt></li> * <li><tt>X-Requested-With</tt>: <tt>XMLHttpRequest</tt></li> * </ul> * * @description * Send ajax request */ self.xhr = function(method, url, post, callback, headers) { outstandingRequestCount ++; if (lowercase(method) == 'json') { var callbackId = ("angular_" + Math.random() + '_' + (idCounter++)).replace(/\d\./, ''); window[callbackId] = function(data) { window[callbackId].data = data; }; var script = self.addJs(url.replace('JSON_CALLBACK', callbackId), null, function() { if (window[callbackId].data) { completeOutstandingRequest(callback, 200, window[callbackId].data); } else { completeOutstandingRequest(callback); } delete window[callbackId]; body[0].removeChild(script); }); } else { var xhr = new XHR(); xhr.open(method, url, true); forEach(headers, function(value, key) { if (value) xhr.setRequestHeader(key, value); }); xhr.onreadystatechange = function() { if (xhr.readyState == 4) { // normalize IE bug (http://bugs.jquery.com/ticket/1450) var status = xhr.status == 1223 ? 204 : xhr.status; completeOutstandingRequest(callback, status, xhr.responseText); } }; xhr.send(post || ''); } }; /** * @private * Note: this method is used only by scenario runner * TODO(vojta): prefix this method with $$ ? * @param {function()} callback Function that will be called when no outstanding request */ self.notifyWhenNoOutstandingRequests = function(callback) { // force browser to execute all pollFns - this is needed so that cookies and other pollers fire // at some deterministic time in respect to the test runner's actions. Leaving things up to the // regular poller would result in flaky tests. forEach(pollFns, function(pollFn){ pollFn(); }); if (outstandingRequestCount === 0) { callback(); } else { outstandingRequestCallbacks.push(callback); } }; ////////////////////////////////////////////////////////////// // Poll Watcher API ////////////////////////////////////////////////////////////// var pollFns = [], pollTimeout; /** * @workInProgress * @ngdoc method * @name angular.service.$browser#addPollFn * @methodOf angular.service.$browser * * @param {function()} fn Poll function to add * * @description * Adds a function to the list of functions that poller periodically executes, * and starts polling if not started yet. * * @returns {function()} the added function */ self.addPollFn = function(fn) { if (isUndefined(pollTimeout)) startPoller(100, setTimeout); pollFns.push(fn); return fn; }; /** * @param {number} interval How often should browser call poll functions (ms) * @param {function()} setTimeout Reference to a real or fake `setTimeout` function. * * @description * Configures the poller to run in the specified intervals, using the specified * setTimeout fn and kicks it off. */ function startPoller(interval, setTimeout) { (function check() { forEach(pollFns, function(pollFn){ pollFn(); }); pollTimeout = setTimeout(check, interval); })(); } ////////////////////////////////////////////////////////////// // URL API ////////////////////////////////////////////////////////////// var lastBrowserUrl = location.href; /** * @workInProgress * @ngdoc method * @name angular.service.$browser#url * @methodOf angular.service.$browser * * @description * GETTER: * Without any argument, this method just returns current value of location.href. * * SETTER: * With at least one argument, this method sets url to new value. * If html5 history api supported, pushState/replaceState is used, otherwise * location.href/location.replace is used. * Returns its own instance to allow chaining * * NOTE: this api is intended for use only by the $location service. Please use the * {@link angular.service.$location $location service} to change url. * * @param {string} url New url (when used as setter) * @param {boolean=} replace Should new url replace current history record ? */ self.url = function(url, replace) { // setter if (url) { lastBrowserUrl = url; if ($sniffer.history) { if (replace) history.replaceState(null, '', url); else history.pushState(null, '', url); } else { if (replace) location.replace(url); else location.href = url; } return self; // getter } else { return location.href; } }; var urlChangeListeners = [], urlChangeInit = false; function fireUrlChange() { if (lastBrowserUrl == self.url()) return; lastBrowserUrl = self.url(); forEach(urlChangeListeners, function(listener) { listener(self.url()); }); } /** * @workInProgress * @ngdoc method * @name angular.service.$browser#onUrlChange * @methodOf angular.service.$browser * @TODO(vojta): refactor to use node's syntax for events * * @description * Register callback function that will be called, when url changes. * * It's only called when the url is changed by outside of angular: * - user types different url into address bar * - user clicks on history (forward/back) button * - user clicks on a link * * It's not called when url is changed by $browser.url() method * * The listener gets called with new url as parameter. * * NOTE: this api is intended for use only by the $location service. Please use the * {@link angular.service.$location $location service} to monitor url changes in angular apps. * * @param {function(string)} listener Listener function to be called when url changes. * @return {function(string)} Returns the registered listener fn - handy if the fn is anonymous. */ self.onUrlChange = function(callback) { if (!urlChangeInit) { // We listen on both (hashchange/popstate) when available, as some browsers (e.g. Opera) // don't fire popstate when user change the address bar and don't fire hashchange when url // changed by push/replaceState // html5 history api - popstate event if ($sniffer.history) jqLite(window).bind('popstate', fireUrlChange); // hashchange event if ($sniffer.hashchange) jqLite(window).bind('hashchange', fireUrlChange); // polling else self.addPollFn(fireUrlChange); urlChangeInit = true; } urlChangeListeners.push(callback); return callback; }; ////////////////////////////////////////////////////////////// // Cookies API ////////////////////////////////////////////////////////////// var lastCookies = {}; var lastCookieString = ''; /** * @workInProgress * @ngdoc method * @name angular.service.$browser#cookies * @methodOf angular.service.$browser * * @param {string=} name Cookie name * @param {string=} value Cokkie value * * @description * The cookies method provides a 'private' low level access to browser cookies. * It is not meant to be used directly, use the $cookie service instead. * * The return values vary depending on the arguments that the method was called with as follows: * <ul> * <li>cookies() -> hash of all cookies, this is NOT a copy of the internal state, so do not modify it</li> * <li>cookies(name, value) -> set name to value, if value is undefined delete the cookie</li> * <li>cookies(name) -> the same as (name, undefined) == DELETES (no one calls it right now that way)</li> * </ul> * * @returns {Object} Hash of all cookies (if called without any parameter) */ self.cookies = function (name, value) { var cookieLength, cookieArray, cookie, i, keyValue, index; if (name) { if (value === undefined) { rawDocument.cookie = escape(name) + "=;expires=Thu, 01 Jan 1970 00:00:00 GMT"; } else { if (isString(value)) { rawDocument.cookie = escape(name) + '=' + escape(value); cookieLength = name.length + value.length + 1; if (cookieLength > 4096) { $log.warn("Cookie '"+ name +"' possibly not set or overflowed because it was too large ("+ cookieLength + " > 4096 bytes)!"); } if (lastCookies.length > 20) { $log.warn("Cookie '"+ name +"' possibly not set or overflowed because too many cookies " + "were already set (" + lastCookies.length + " > 20 )"); } } } } else { if (rawDocument.cookie !== lastCookieString) { lastCookieString = rawDocument.cookie; cookieArray = lastCookieString.split("; "); lastCookies = {}; for (i = 0; i < cookieArray.length; i++) { cookie = cookieArray[i]; index = cookie.indexOf('='); if (index > 0) { //ignore nameless cookies lastCookies[unescape(cookie.substring(0, index))] = unescape(cookie.substring(index + 1)); } } } return lastCookies; } }; /** * @workInProgress * @ngdoc method * @name angular.service.$browser#defer * @methodOf angular.service.$browser * @param {function()} fn A function, who's execution should be defered. * @param {number=} [delay=0] of milliseconds to defer the function execution. * @returns {*} DeferId that can be used to cancel the task via `$browser.defer.cancel()`. * * @description * Executes a fn asynchroniously via `setTimeout(fn, delay)`. * * Unlike when calling `setTimeout` directly, in test this function is mocked and instead of using * `setTimeout` in tests, the fns are queued in an array, which can be programmatically flushed * via `$browser.defer.flush()`. * */ self.defer = function(fn, delay) { var timeoutId; outstandingRequestCount++; timeoutId = setTimeout(function() { delete pendingDeferIds[timeoutId]; completeOutstandingRequest(fn); }, delay || 0); pendingDeferIds[timeoutId] = true; return timeoutId; }; /** * THIS DOC IS NOT VISIBLE because ngdocs can't process docs for foo#method.method * * @name angular.service.$browser#defer.cancel * @methodOf angular.service.$browser.defer * @returns {boolean} Returns `true` if the task hasn't executed yet and was successfuly canceled. * * @description * Cancels a defered task identified with `deferId`. */ self.defer.cancel = function(deferId) { if (pendingDeferIds[deferId]) { delete pendingDeferIds[deferId]; clearTimeout(deferId); completeOutstandingRequest(noop); return true; } }; ////////////////////////////////////////////////////////////// // Misc API ////////////////////////////////////////////////////////////// var hoverListener = noop; /** * @workInProgress * @ngdoc method * @name angular.service.$browser#hover * @methodOf angular.service.$browser * * @description * Set hover listener. * * @param {function(Object, boolean)} listener Function that will be called when a hover event * occurs. */ self.hover = function(listener) { hoverListener = listener; }; /** * @workInProgress * @ngdoc method * @name angular.service.$browser#bind * @methodOf angular.service.$browser * * @description * Register hover function to real browser */ self.bind = function() { document.bind("mouseover", function(event){ hoverListener(jqLite(msie ? event.srcElement : event.target), true); return true; }); document.bind("mouseleave mouseout click dblclick keypress keyup", function(event){ hoverListener(jqLite(event.target), false); return true; }); }; /** * @workInProgress * @ngdoc method * @name angular.service.$browser#addCss * @methodOf angular.service.$browser * * @param {string} url Url to css file * @description * Adds a stylesheet tag to the head. */ self.addCss = function(url) { var link = jqLite(rawDocument.createElement('link')); link.attr('rel', 'stylesheet'); link.attr('type', 'text/css'); link.attr('href', url); body.append(link); }; /** * @workInProgress * @ngdoc method * @name angular.service.$browser#addJs * @methodOf angular.service.$browser * * @param {string} url Url to js file * @param {string=} domId Optional id for the script tag * * @description * Adds a script tag to the head. */ self.addJs = function(url, domId, done) { // we can't use jQuery/jqLite here because jQuery does crazy shit with script elements, e.g.: // - fetches local scripts via XHR and evals them // - adds and immediately removes script elements from the document // // We need addJs to be able to add angular-ie-compat.js which is very special and must remain // part of the DOM so that the embedded images can reference it. jQuery's append implementation // (v1.4.2) fubars it. var script = rawDocument.createElement('script'); script.type = 'text/javascript'; script.src = url; if (domId) script.id = domId; if (msie) { script.onreadystatechange = function() { /loaded|complete/.test(script.readyState) && done && done(); }; } else { if (done) script.onload = script.onerror = done; } body[0].appendChild(script); return script; }; /** * Returns current <base href> * (always relative - without domain) * * @returns {string=} */ self.baseHref = function() { var href = document.find('base').attr('href'); return href ? href.replace(/^https?\:\/\/[^\/]*/, '') : href; }; } /* * HTML Parser By Misko Hevery (misko@hevery.com) * based on: HTML Parser By John Resig (ejohn.org) * Original code by Erik Arvidsson, Mozilla Public License * http://erik.eae.net/simplehtmlparser/simplehtmlparser.js * * // Use like so: * htmlParser(htmlString, { * start: function(tag, attrs, unary) {}, * end: function(tag) {}, * chars: function(text) {}, * comment: function(text) {} * }); * */ // Regular Expressions for parsing tags and attributes var START_TAG_REGEXP = /^<\s*([\w:-]+)((?:\s+[\w:-]+(?:\s*=\s*(?:(?:"[^"]*")|(?:'[^']*')|[^>\s]+))?)*)\s*(\/?)\s*>/, END_TAG_REGEXP = /^<\s*\/\s*([\w:-]+)[^>]*>/, ATTR_REGEXP = /([\w:-]+)(?:\s*=\s*(?:(?:"((?:[^"])*)")|(?:'((?:[^'])*)')|([^>\s]+)))?/g, BEGIN_TAG_REGEXP = /^</, BEGING_END_TAGE_REGEXP = /^<\s*\//, COMMENT_REGEXP = /<!--(.*?)-->/g, CDATA_REGEXP = /<!\[CDATA\[(.*?)]]>/g, URI_REGEXP = /^((ftp|https?):\/\/|mailto:|#)/, NON_ALPHANUMERIC_REGEXP = /([^\#-~| |!])/g; // Match everything outside of normal chars and " (quote character) // Empty Elements - HTML 4.01 var emptyElements = makeMap("area,br,col,hr,img"); // Block Elements - HTML 4.01 var blockElements = makeMap("address,blockquote,center,dd,del,dir,div,dl,dt,"+ "hr,ins,li,map,menu,ol,p,pre,script,table,tbody,td,tfoot,th,thead,tr,ul"); // Inline Elements - HTML 4.01 var inlineElements = makeMap("a,abbr,acronym,b,bdo,big,br,cite,code,del,dfn,em,font,i,img,"+ "ins,kbd,label,map,q,s,samp,small,span,strike,strong,sub,sup,tt,u,var"); // Elements that you can, intentionally, leave open // (and which close themselves) var closeSelfElements = makeMap("colgroup,dd,dt,li,p,td,tfoot,th,thead,tr"); // Special Elements (can contain anything) var specialElements = makeMap("script,style"); var validElements = extend({}, emptyElements, blockElements, inlineElements, closeSelfElements); //Attributes that have href and hence need to be sanitized var uriAttrs = makeMap("background,href,longdesc,src,usemap"); var validAttrs = extend({}, uriAttrs, makeMap( 'abbr,align,alt,axis,bgcolor,border,cellpadding,cellspacing,class,clear,'+ 'color,cols,colspan,compact,coords,dir,face,headers,height,hreflang,hspace,'+ 'ismap,lang,language,nohref,nowrap,rel,rev,rows,rowspan,rules,'+ 'scope,scrolling,shape,span,start,summary,target,title,type,'+ 'valign,value,vspace,width')); /** * @example * htmlParser(htmlString, { * start: function(tag, attrs, unary) {}, * end: function(tag) {}, * chars: function(text) {}, * comment: function(text) {} * }); * * @param {string} html string * @param {object} handler */ function htmlParser( html, handler ) { var index, chars, match, stack = [], last = html; stack.last = function(){ return stack[ stack.length - 1 ]; }; while ( html ) { chars = true; // Make sure we're not in a script or style element if ( !stack.last() || !specialElements[ stack.last() ] ) { // Comment if ( html.indexOf("<!--") === 0 ) { index = html.indexOf("-->"); if ( index >= 0 ) { if (handler.comment) handler.comment( html.substring( 4, index ) ); html = html.substring( index + 3 ); chars = false; } // end tag } else if ( BEGING_END_TAGE_REGEXP.test(html) ) { match = html.match( END_TAG_REGEXP ); if ( match ) { html = html.substring( match[0].length ); match[0].replace( END_TAG_REGEXP, parseEndTag ); chars = false; } // start tag } else if ( BEGIN_TAG_REGEXP.test(html) ) { match = html.match( START_TAG_REGEXP ); if ( match ) { html = html.substring( match[0].length ); match[0].replace( START_TAG_REGEXP, parseStartTag ); chars = false; } } if ( chars ) { index = html.indexOf("<"); var text = index < 0 ? html : html.substring( 0, index ); html = index < 0 ? "" : html.substring( index ); if (handler.chars) handler.chars( decodeEntities(text) ); } } else { html = html.replace(new RegExp("(.*)<\\s*\\/\\s*" + stack.last() + "[^>]*>", 'i'), function(all, text){ text = text. replace(COMMENT_REGEXP, "$1"). replace(CDATA_REGEXP, "$1"); if (handler.chars) handler.chars( decodeEntities(text) ); return ""; }); parseEndTag( "", stack.last() ); } if ( html == last ) { throw "Parse Error: " + html; } last = html; } // Clean up any remaining tags parseEndTag(); function parseStartTag( tag, tagName, rest, unary ) { tagName = lowercase(tagName); if ( blockElements[ tagName ] ) { while ( stack.last() && inlineElements[ stack.last() ] ) { parseEndTag( "", stack.last() ); } } if ( closeSelfElements[ tagName ] && stack.last() == tagName ) { parseEndTag( "", tagName ); } unary = emptyElements[ tagName ] || !!unary; if ( !unary ) stack.push( tagName ); var attrs = {}; rest.replace(ATTR_REGEXP, function(match, name, doubleQuotedValue, singleQoutedValue, unqoutedValue) { var value = doubleQuotedValue || singleQoutedValue || unqoutedValue || ''; attrs[name] = decodeEntities(value); }); if (handler.start) handler.start( tagName, attrs, unary ); } function parseEndTag( tag, tagName ) { var pos = 0, i; tagName = lowercase(tagName); if ( tagName ) // Find the closest opened tag of the same type for ( pos = stack.length - 1; pos >= 0; pos-- ) if ( stack[ pos ] == tagName ) break; if ( pos >= 0 ) { // Close all the open elements, up the stack for ( i = stack.length - 1; i >= pos; i-- ) if (handler.end) handler.end( stack[ i ] ); // Remove the open elements from the stack stack.length = pos; } } } /** * decodes all entities into regular string * @param value * @returns {string} A string with decoded entities. */ var hiddenPre=document.createElement("pre"); function decodeEntities(value) { hiddenPre.innerHTML=value.replace(/</g,"&lt;"); return hiddenPre.innerText || hiddenPre.textContent || ''; } /** * Escapes all potentially dangerous characters, so that the * resulting string can be safely inserted into attribute or * element text. * @param value * @returns escaped text */ function encodeEntities(value) { return value. replace(/&/g, '&amp;'). replace(NON_ALPHANUMERIC_REGEXP, function(value){ return '&#' + value.charCodeAt(0) + ';'; }). replace(/</g, '&lt;'). replace(/>/g, '&gt;'); } /** * create an HTML/XML writer which writes to buffer * @param {Array} buf use buf.jain('') to get out sanitized html string * @returns {object} in the form of { * start: function(tag, attrs, unary) {}, * end: function(tag) {}, * chars: function(text) {}, * comment: function(text) {} * } */ function htmlSanitizeWriter(buf){ var ignore = false; var out = bind(buf, buf.push); return { start: function(tag, attrs, unary){ tag = lowercase(tag); if (!ignore && specialElements[tag]) { ignore = tag; } if (!ignore && validElements[tag] == true) { out('<'); out(tag); forEach(attrs, function(value, key){ var lkey=lowercase(key); if (validAttrs[lkey]==true && (uriAttrs[lkey]!==true || value.match(URI_REGEXP))) { out(' '); out(key); out('="'); out(encodeEntities(value)); out('"'); } }); out(unary ? '/>' : '>'); } }, end: function(tag){ tag = lowercase(tag); if (!ignore && validElements[tag] == true) { out('</'); out(tag); out('>'); } if (tag == ignore) { ignore = false; } }, chars: function(chars){ if (!ignore) { out(encodeEntities(chars)); } } }; } ////////////////////////////////// //JQLite ////////////////////////////////// /** * @ngdoc function * @name angular.element * @function * * @description * Wraps a raw DOM element or HTML string as a [jQuery](http://jquery.com) element. * `angular.element` can be either an alias for [jQuery](http://api.jquery.com/jQuery/) function, if * jQuery is available, or a function that wraps the element or string in Angular's jQuery lite * implementation (commonly referred to as jqLite). * * Real jQuery always takes precedence over jqLite, provided it was loaded before `DOMContentLoaded` * event fired. * * jqLite is a tiny, API-compatible subset of jQuery that allows * Angular to manipulate the DOM. jqLite implements only the most commonly needed functionality * within a very small footprint, so only a subset of the jQuery API - methods, arguments and * invocation styles - are supported. * * Note: All element references in Angular are always wrapped with jQuery or jqLite; they are never * raw DOM references. * * ## Angular's jQuery lite provides the following methods: * * - [addClass()](http://api.jquery.com/addClass/) * - [after()](http://api.jquery.com/after/) * - [append()](http://api.jquery.com/append/) * - [attr()](http://api.jquery.com/attr/) * - [bind()](http://api.jquery.com/bind/) * - [children()](http://api.jquery.com/children/) * - [clone()](http://api.jquery.com/clone/) * - [css()](http://api.jquery.com/css/) * - [data()](http://api.jquery.com/data/) * - [eq()](http://api.jquery.com/eq/) * - [hasClass()](http://api.jquery.com/hasClass/) * - [parent()](http://api.jquery.com/parent/) * - [prop()](http://api.jquery.com/prop/) * - [remove()](http://api.jquery.com/remove/) * - [removeAttr()](http://api.jquery.com/removeAttr/) * - [removeClass()](http://api.jquery.com/removeClass/) * - [removeData()](http://api.jquery.com/removeData/) * - [replaceWith()](http://api.jquery.com/replaceWith/) * - [text()](http://api.jquery.com/text/) * - [trigger()](http://api.jquery.com/trigger/) * - [unbind()](http://api.jquery.com/unbind/) * * ## In addtion to the above, Angular privides an additional method to both jQuery and jQuery lite: * * - `scope()` - retrieves the current Angular scope of the element. * * @param {string|DOMElement} element HTML string or DOMElement to be wrapped into jQuery. * @returns {Object} jQuery object. */ var jqCache = {}, jqName = 'ng-' + new Date().getTime(), jqId = 1, addEventListenerFn = (window.document.addEventListener ? function(element, type, fn) {element.addEventListener(type, fn, false);} : function(element, type, fn) {element.attachEvent('on' + type, fn);}), removeEventListenerFn = (window.document.removeEventListener ? function(element, type, fn) {element.removeEventListener(type, fn, false); } : function(element, type, fn) {element.detachEvent('on' + type, fn); }); function jqNextId() { return (jqId++); } function getStyle(element) { var current = {}, style = element[0].style, value, name, i; if (typeof style.length == 'number') { for(i = 0; i < style.length; i++) { name = style[i]; current[name] = style[name]; } } else { for (name in style) { value = style[name]; if (1*name != name && name != 'cssText' && value && typeof value == 'string' && value !='false') current[name] = value; } } return current; } /** * Converts dash-separated names to camelCase. Useful for dealing with css properties. */ function camelCase(name) { return name.replace(/\-(\w)/g, function(all, letter, offset){ return (offset == 0 && letter == 'w') ? 'w' : letter.toUpperCase(); }); } ///////////////////////////////////////////// function jqLiteWrap(element) { if (isString(element) && element.charAt(0) != '<') { throw new Error('selectors not implemented'); } return new JQLite(element); } function JQLite(element) { if (element instanceof JQLite) { return element; } else if (isString(element)) { var div = document.createElement('div'); // Read about the NoScope elements here: // http://msdn.microsoft.com/en-us/library/ms533897(VS.85).aspx div.innerHTML = '<div>&nbsp;</div>' + element; // IE insanity to make NoScope elements work! div.removeChild(div.firstChild); // remove the superfluous div JQLiteAddNodes(this, div.childNodes); this.remove(); // detach the elements from the temporary DOM div. } else { JQLiteAddNodes(this, element); } } function JQLiteClone(element) { return element.cloneNode(true); } function JQLiteDealoc(element){ JQLiteRemoveData(element); for ( var i = 0, children = element.childNodes || []; i < children.length; i++) { JQLiteDealoc(children[i]); } } function JQLiteRemoveData(element) { var cacheId = element[jqName], cache = jqCache[cacheId]; if (cache) { forEach(cache.bind || {}, function(fn, type){ removeEventListenerFn(element, type, fn); }); delete jqCache[cacheId]; element[jqName] = undefined; // ie does not allow deletion of attributes on elements. } } function JQLiteData(element, key, value) { var cacheId = element[jqName], cache = jqCache[cacheId || -1]; if (isDefined(value)) { if (!cache) { element[jqName] = cacheId = jqNextId(); cache = jqCache[cacheId] = {}; } cache[key] = value; } else { return cache ? cache[key] : null; } } function JQLiteHasClass(element, selector, _) { // the argument '_' is important, since it makes the function have 3 arguments, which // is needed for delegate function to realize the this is a getter. var className = " " + selector + " "; return ((" " + element.className + " ").replace(/[\n\t]/g, " ").indexOf( className ) > -1); } function JQLiteRemoveClass(element, selector) { if (selector) { forEach(selector.split(' '), function(cssClass) { element.className = trim( (" " + element.className + " ") .replace(/[\n\t]/g, " ") .replace(" " + trim(cssClass) + " ", " ") ); }); } } function JQLiteAddClass(element, selector) { if (selector) { forEach(selector.split(' '), function(cssClass) { if (!JQLiteHasClass(element, cssClass)) { element.className = trim(element.className + ' ' + trim(cssClass)); } }); } } function JQLiteAddNodes(root, elements) { if (elements) { elements = (!elements.nodeName && isDefined(elements.length) && !isWindow(elements)) ? elements : [ elements ]; for(var i=0; i < elements.length; i++) { root.push(elements[i]); } } } ////////////////////////////////////////// // Functions which are declared directly. ////////////////////////////////////////// var JQLitePrototype = JQLite.prototype = { ready: function(fn) { var fired = false; function trigger() { if (fired) return; fired = true; fn(); } this.bind('DOMContentLoaded', trigger); // works for modern browsers and IE9 // we can not use jqLite since we are not done loading and jQuery could be loaded later. jqLiteWrap(window).bind('load', trigger); // fallback to window.onload for others }, toString: function() { var value = []; forEach(this, function(e){ value.push('' + e);}); return '[' + value.join(', ') + ']'; }, eq: function(index) { return (index >= 0) ? jqLite(this[index]) : jqLite(this[this.length + index]); }, length: 0, push: push, sort: [].sort, splice: [].splice }; ////////////////////////////////////////// // Functions iterating getter/setters. // these functions return self on setter and // value on get. ////////////////////////////////////////// var SPECIAL_ATTR = makeMap("multiple,selected,checked,disabled,readonly"); forEach({ data: JQLiteData, scope: function(element) { var scope; while (element && !(scope = jqLite(element).data($$scope))) { element = element.parentNode; } return scope; }, removeAttr: function(element,name) { element.removeAttribute(name); }, hasClass: JQLiteHasClass, css: function(element, name, value) { name = camelCase(name); if (isDefined(value)) { element.style[name] = value; } else { var val; if (msie <= 8) { // this is some IE specific weirdness that jQuery 1.6.4 does not sure why val = element.currentStyle && element.currentStyle[name]; if (val === '') val = 'auto'; } val = val || element.style[name]; if (msie <= 8) { // jquery weirdness :-/ val = (val === '') ? undefined : val; } return val; } }, attr: function(element, name, value){ if (SPECIAL_ATTR[name]) { if (isDefined(value)) { if (!!value) { element[name] = true; element.setAttribute(name, name); } else { element[name] = false; element.removeAttribute(name); } } else { return (element[name] || element.getAttribute(name)) ? name : undefined; } } else if (isDefined(value)) { element.setAttribute(name, value); } else if (element.getAttribute) { // the extra argument "2" is to get the right thing for a.href in IE, see jQuery code // some elements (e.g. Document) don't have get attribute, so return undefined var ret = element.getAttribute(name, 2); // normalize non-existing attributes to undefined (as jQuery) return ret === null ? undefined : ret; } }, prop: function(element, name, value) { if (isDefined(value)) { element[name] = value; } else { return element[name]; } }, text: extend((msie < 9) ? function(element, value) { // NodeType == 3 is text node if (element.nodeType == 3) { if (isUndefined(value)) return element.nodeValue; element.nodeValue = value; } else { if (isUndefined(value)) return element.innerText; element.innerText = value; } } : function(element, value) { if (isUndefined(value)) { return element.textContent; } element.textContent = value; }, {$dv:''}), val: function(element, value) { if (isUndefined(value)) { return element.value; } element.value = value; }, html: function(element, value) { if (isUndefined(value)) { return element.innerHTML; } for (var i = 0, childNodes = element.childNodes; i < childNodes.length; i++) { JQLiteDealoc(childNodes[i]); } element.innerHTML = value; } }, function(fn, name){ /** * Properties: writes return selection, reads return first value */ JQLite.prototype[name] = function(arg1, arg2) { var i, key; if ((fn.length == 2 ? arg1 : arg2) === undefined) { if (isObject(arg1)) { // we are a write, but the object properties are the key/values for(i=0; i < this.length; i++) { for (key in arg1) { fn(this[i], key, arg1[key]); } } // return self for chaining return this; } else { // we are a read, so read the first child. if (this.length) return fn(this[0], arg1, arg2); } } else { // we are a write, so apply to all children for(i=0; i < this.length; i++) { fn(this[i], arg1, arg2); } // return self for chaining return this; } return fn.$dv; }; }); ////////////////////////////////////////// // Functions iterating traversal. // These functions chain results into a single // selector. ////////////////////////////////////////// forEach({ removeData: JQLiteRemoveData, dealoc: JQLiteDealoc, bind: function(element, type, fn){ var bind = JQLiteData(element, 'bind'); if (!bind) JQLiteData(element, 'bind', bind = {}); forEach(type.split(' '), function(type){ var eventHandler = bind[type]; if (!eventHandler) { bind[type] = eventHandler = function(event) { if (!event.preventDefault) { event.preventDefault = function(){ event.returnValue = false; //ie }; } if (!event.stopPropagation) { event.stopPropagation = function() { event.cancelBubble = true; //ie }; } if (!event.target) { event.target = event.srcElement || document; } if (isUndefined(event.defaultPrevented)) { var prevent = event.preventDefault; event.preventDefault = function() { event.defaultPrevented = true; prevent.call(event); }; event.defaultPrevented = false; } event.isDefaultPrevented = function() { return event.defaultPrevented; }; forEach(eventHandler.fns, function(fn){ fn.call(element, event); }); }; eventHandler.fns = []; addEventListenerFn(element, type, eventHandler); } eventHandler.fns.push(fn); }); }, unbind: function(element, type, fn) { var bind = JQLiteData(element, 'bind'); if (!bind) return; //no listeners registered if (isUndefined(type)) { forEach(bind, function(eventHandler, type) { removeEventListenerFn(element, type, eventHandler); delete bind[type]; }); } else { if (isUndefined(fn)) { removeEventListenerFn(element, type, bind[type]); delete bind[type]; } else { angularArray.remove(bind[type].fns, fn); } } }, replaceWith: function(element, replaceNode) { var index, parent = element.parentNode; JQLiteDealoc(element); forEach(new JQLite(replaceNode), function(node){ if (index) { parent.insertBefore(node, index.nextSibling); } else { parent.replaceChild(node, element); } index = node; }); }, children: function(element) { var children = []; forEach(element.childNodes, function(element){ if (element.nodeName != '#text') children.push(element); }); return children; }, append: function(element, node) { forEach(new JQLite(node), function(child){ if (element.nodeType === 1) element.appendChild(child); }); }, prepend: function(element, node) { if (element.nodeType === 1) { var index = element.firstChild; forEach(new JQLite(node), function(child){ if (index) { element.insertBefore(child, index); } else { element.appendChild(child); index = child; } }); } }, remove: function(element) { JQLiteDealoc(element); var parent = element.parentNode; if (parent) parent.removeChild(element); }, after: function(element, newElement) { var index = element, parent = element.parentNode; forEach(new JQLite(newElement), function(node){ parent.insertBefore(node, index.nextSibling); index = node; }); }, addClass: JQLiteAddClass, removeClass: JQLiteRemoveClass, toggleClass: function(element, selector, condition) { if (isUndefined(condition)) { condition = !JQLiteHasClass(element, selector); } (condition ? JQLiteAddClass : JQLiteRemoveClass)(element, selector); }, parent: function(element) { var parent = element.parentNode; return parent && parent.nodeType !== 11 ? parent : null; }, next: function(element) { return element.nextSibling; }, find: function(element, selector) { return element.getElementsByTagName(selector); }, clone: JQLiteClone }, function(fn, name){ /** * chaining functions */ JQLite.prototype[name] = function(arg1, arg2) { var value; for(var i=0; i < this.length; i++) { if (value == undefined) { value = fn(this[i], arg1, arg2); if (value !== undefined) { // any function which returns a value needs to be wrapped value = jqLite(value); } } else { JQLiteAddNodes(value, fn(this[i], arg1, arg2)); } } return value == undefined ? this : value; }; }); var angularGlobal = { 'typeOf':function(obj){ if (obj === null) return $null; var type = typeof obj; if (type == $object) { if (obj instanceof Array) return $array; if (isDate(obj)) return $date; if (obj.nodeType == 1) return 'element'; } return type; } }; /** * @ngdoc overview * @name angular.Object * @function * * @description * A namespace for utility functions used to work with JavaScript objects. These functions are * exposed in two ways: * * * __Angular expressions:__ Functions are bound to all objects and augment the Object type. * The names of these methods are prefixed with the '$' character in order to minimize naming * collisions. To call a method, invoke the function without the first argument, for example, * `myObject.$foo(param2)`. * * * __JavaScript code:__ Functions don't augment the Object type and must be invoked as functions * of `angular.Object` as `angular.Object.foo(myObject, param2)`. * * * {@link angular.Object.copy angular.Object.copy()} - Creates a deep copy of the source * parameter. * * {@link angular.Object.equals angular.Object.equals()} - Determines if two objects or values * are equivalent. * * {@link angular.Object.size angular.Object.size()} - Determines the number of elements in * strings, arrays, and objects. */ var angularCollection = { 'copy': copy, 'size': size, 'equals': equals }; var angularObject = { 'extend': extend }; /** * @ngdoc overview * @name angular.Array * * @description * A namespace for utility functions for the manipulation of JavaScript Array objects. * * These functions are exposed in two ways: * * * __Angular expressions:__ Functions are bound to the Array objects and augment the Array type * as array methods. The names of these methods are prefixed with the `$` character to minimize * naming collisions. To call a method, invoke myArrayObject.$foo(params). * * Because Array type is a subtype of the Object type, all angular.Object functions augment * the Array type in Angular expressions as well. * * * __JavaScript code:__ Functions do nor augment the Array type and must be invoked as functions * of `angular.Array` as `angular.Array.foo(myArrayObject, params)`. * * The following APIs are built in to the Angular Array object: * * * {@link angular.Array.add angular.Array.add()} - Optionally adds a new element to an array. * * {@link angular.Array.count angular.Array.count()} - Determines the number of elements in an * array. * * {@link angular.Array.filter angular.Array.filter()} - Returns the subset of elements specified * in the filter as a new array. * * {@link angular.Array.indexOf angular.Array.indexOf()} - Determines the index of an array * value. * * {@link angular.Array.limitTo angular.Array.limitTo()} - Creates a sub-array of an existing * array. * * {@link angular.Array.orderBy angular.Array.orderBy()} - Orders array elements. * * {@link angular.Array.remove angular.Array.remove()} - Removes array elements. * * {@link angular.Array.sum angular.Array.sum()} - Sums the numbers in an array. */ var angularArray = { /** * @ngdoc function * @name angular.Array.indexOf * @function * * @description * Determines the index of a `value` in an `array`. * * Note: This function is used to augment the `Array` type in Angular expressions. See * {@link angular.Array} for more information about Angular arrays. * * @param {Array} array Array to search. * @param {*} value Value to search for. * @returns {number} The position of the element in `array`. The position is 0-based. * If the value cannot be found, `-1` is returned. * * @example <doc:example> <doc:source> <div ng:init="books = ['Moby Dick', 'Great Gatsby', 'Romeo and Juliet']"></div> <input name='bookName' value='Romeo and Juliet'> <br> Index of '{{bookName}}' in the list {{books}} is <em>{{books.$indexOf(bookName)}}</em>. </doc:source> <doc:scenario> it('should correctly calculate the initial index', function() { expect(binding('books.$indexOf(bookName)')).toBe('2'); }); it('should recalculate', function() { input('bookName').enter('foo'); expect(binding('books.$indexOf(bookName)')).toBe('-1'); input('bookName').enter('Moby Dick'); expect(binding('books.$indexOf(bookName)')).toBe('0'); }); </doc:scenario> </doc:example> */ 'indexOf': indexOf, /** * @ngdoc function * @name angular.Array.sum * @function * * @description * The `sum` function calculates the sum of all numbers in an `array`. If an `expression` is * supplied, `sum` evaluates each element in the `array` with the expression and then returns * the sum of the calculated values. * * Note: This function is used to augment the `Array` type in Angular expressions. See * {@link angular.Array} for more info about Angular arrays. * * @param {Array} array The source array. * @param {(string|function())=} expression Angular expression or a function to be evaluated for * each element in `array`. The array element becomes the `this` during the evaluation. * @returns {number} Sum of items in the array. * * @example <doc:example> <doc:source> <table ng:init="invoice= {items:[{qty:10, description:'gadget', cost:9.95}]}"> <tr><th>Qty</th><th>Description</th><th>Cost</th><th>Total</th><th></th></tr> <tr ng:repeat="item in invoice.items"> <td><input name="item.qty" value="1" size="4" ng:required ng:validate="integer"></td> <td><input name="item.description"></td> <td><input name="item.cost" value="0.00" ng:required ng:validate="number" size="6"></td> <td>{{item.qty * item.cost | currency}}</td> <td>[<a href ng:click="invoice.items.$remove(item)">X</a>]</td> </tr> <tr> <td><a href ng:click="invoice.items.$add()">add item</a></td> <td></td> <td>Total:</td> <td>{{invoice.items.$sum('qty*cost') | currency}}</td> </tr> </table> </doc:source> <doc:scenario> //TODO: these specs are lame because I had to work around issues #164 and #167 it('should initialize and calculate the totals', function() { expect(repeater('.doc-example-live table tr', 'item in invoice.items').count()).toBe(3); expect(repeater('.doc-example-live table tr', 'item in invoice.items').row(1)). toEqual(['$99.50']); expect(binding("invoice.items.$sum('qty*cost')")).toBe('$99.50'); expect(binding("invoice.items.$sum('qty*cost')")).toBe('$99.50'); }); it('should add an entry and recalculate', function() { element('.doc-example-live a:contains("add item")').click(); using('.doc-example-live tr:nth-child(3)').input('item.qty').enter('20'); using('.doc-example-live tr:nth-child(3)').input('item.cost').enter('100'); expect(repeater('.doc-example-live table tr', 'item in invoice.items').row(2)). toEqual(['$2,000.00']); expect(binding("invoice.items.$sum('qty*cost')")).toBe('$2,099.50'); }); </doc:scenario> </doc:example> */ 'sum':function(array, expression) { var fn = angularFunction.compile(expression); var sum = 0; for (var i = 0; i < array.length; i++) { var value = 1 * fn(array[i]); if (!isNaN(value)){ sum += value; } } return sum; }, /** * @ngdoc function * @name angular.Array.remove * @function * * @description * Modifies `array` by removing an element from it. The element will be looked up using the * {@link angular.Array.indexOf indexOf} function on the `array` and only the first instance of * the element will be removed. * * Note: This function is used to augment the `Array` type in Angular expressions. See * {@link angular.Array} for more information about Angular arrays. * * @param {Array} array Array from which an element should be removed. * @param {*} value Element to be removed. * @returns {*} The removed element. * * @example <doc:example> <doc:source> <ul ng:init="tasks=['Learn Angular', 'Read Documentation', 'Check out demos', 'Build cool applications']"> <li ng:repeat="task in tasks"> {{task}} [<a href="" ng:click="tasks.$remove(task)">X</a>] </li> </ul> <hr/> tasks = {{tasks}} </doc:source> <doc:scenario> it('should initialize the task list with for tasks', function() { expect(repeater('.doc-example-live ul li', 'task in tasks').count()).toBe(4); expect(repeater('.doc-example-live ul li', 'task in tasks').column('task')). toEqual(['Learn Angular', 'Read Documentation', 'Check out demos', 'Build cool applications']); }); it('should initialize the task list with for tasks', function() { element('.doc-example-live ul li a:contains("X"):first').click(); expect(repeater('.doc-example-live ul li', 'task in tasks').count()).toBe(3); element('.doc-example-live ul li a:contains("X"):last').click(); expect(repeater('.doc-example-live ul li', 'task in tasks').count()).toBe(2); expect(repeater('.doc-example-live ul li', 'task in tasks').column('task')). toEqual(['Read Documentation', 'Check out demos']); }); </doc:scenario> </doc:example> */ 'remove':function(array, value) { var index = indexOf(array, value); if (index >=0) array.splice(index, 1); return value; }, /** * @ngdoc function * @name angular.Array.filter * @function * * @description * Selects a subset of items from `array` and returns it as a new array. * * Note: This function is used to augment the `Array` type in Angular expressions. See * {@link angular.Array} for more information about Angular arrays. * * @param {Array} array The source array. * @param {string|Object|function()} expression The predicate to be used for selecting items from * `array`. * * Can be one of: * * - `string`: Predicate that results in a substring match using the value of `expression` * string. All strings or objects with string properties in `array` that contain this string * will be returned. The predicate can be negated by prefixing the string with `!`. * * - `Object`: A pattern object can be used to filter specific properties on objects contained * by `array`. For example `{name:"M", phone:"1"}` predicate will return an array of items * which have property `name` containing "M" and property `phone` containing "1". A special * property name `$` can be used (as in `{$:"text"}`) to accept a match against any * property of the object. That's equivalent to the simple substring match with a `string` * as described above. * * - `function`: A predicate function can be used to write arbitrary filters. The function is * called for each element of `array`. The final result is an array of those elements that * the predicate returned true for. * * @example <doc:example> <doc:source> <div ng:init="friends = [{name:'John', phone:'555-1276'}, {name:'Mary', phone:'800-BIG-MARY'}, {name:'Mike', phone:'555-4321'}, {name:'Adam', phone:'555-5678'}, {name:'Julie', phone:'555-8765'}]"></div> Search: <input name="searchText"/> <table id="searchTextResults"> <tr><th>Name</th><th>Phone</th><tr> <tr ng:repeat="friend in friends.$filter(searchText)"> <td>{{friend.name}}</td> <td>{{friend.phone}}</td> <tr> </table> <hr> Any: <input name="search.$"/> <br> Name only <input name="search.name"/><br> Phone only <input name="search.phone"/><br> <table id="searchObjResults"> <tr><th>Name</th><th>Phone</th><tr> <tr ng:repeat="friend in friends.$filter(search)"> <td>{{friend.name}}</td> <td>{{friend.phone}}</td> <tr> </table> </doc:source> <doc:scenario> it('should search across all fields when filtering with a string', function() { input('searchText').enter('m'); expect(repeater('#searchTextResults tr', 'friend in friends').column('name')). toEqual(['Mary', 'Mike', 'Adam']); input('searchText').enter('76'); expect(repeater('#searchTextResults tr', 'friend in friends').column('name')). toEqual(['John', 'Julie']); }); it('should search in specific fields when filtering with a predicate object', function() { input('search.$').enter('i'); expect(repeater('#searchObjResults tr', 'friend in friends').column('name')). toEqual(['Mary', 'Mike', 'Julie']); }); </doc:scenario> </doc:example> */ 'filter':function(array, expression) { var predicates = []; predicates.check = function(value) { for (var j = 0; j < predicates.length; j++) { if(!predicates[j](value)) { return false; } } return true; }; var search = function(obj, text){ if (text.charAt(0) === '!') { return !search(obj, text.substr(1)); } switch (typeof obj) { case "boolean": case "number": case "string": return ('' + obj).toLowerCase().indexOf(text) > -1; case "object": for ( var objKey in obj) { if (objKey.charAt(0) !== '$' && search(obj[objKey], text)) { return true; } } return false; case "array": for ( var i = 0; i < obj.length; i++) { if (search(obj[i], text)) { return true; } } return false; default: return false; } }; switch (typeof expression) { case "boolean": case "number": case "string": expression = {$:expression}; case "object": for (var key in expression) { if (key == '$') { (function(){ var text = (''+expression[key]).toLowerCase(); if (!text) return; predicates.push(function(value) { return search(value, text); }); })(); } else { (function(){ var path = key; var text = (''+expression[key]).toLowerCase(); if (!text) return; predicates.push(function(value) { return search(getter(value, path), text); }); })(); } } break; case 'function': predicates.push(expression); break; default: return array; } var filtered = []; for ( var j = 0; j < array.length; j++) { var value = array[j]; if (predicates.check(value)) { filtered.push(value); } } return filtered; }, /** * @ngdoc function * @name angular.Array.add * @function * * @description * The `add` function in Angualar is similar to JavaScript's `Array#push` method in that it * appends a new element to an array. Angular's function differs from the JavaScript method in * that specifying a value for the function is optional and the default for the function is an * empty object. * * Note: This function is used to augment the `Array` type in Angular expressions. See * {@link angular.Array} for more information about Angular arrays. * * @param {Array} array The array to be expanded. * @param {*=} [value={}] The value to be appended. * @returns {Array} The expanded array. * * @TODO simplify the example. * * @example * This example shows how you can use the `$add` method to populate an initially empty array * with objects created from user input. <doc:example> <doc:source> [<a href="" ng:click="people.$add()">add empty</a>] [<a href="" ng:click="people.$add({name:'John', sex:'male'})">add 'John'</a>] [<a href="" ng:click="people.$add({name:'Mary', sex:'female'})">add 'Mary'</a>] <ul ng:init="people=[]"> <li ng:repeat="person in people"> <input name="person.name"> <select name="person.sex"> <option value="">--chose one--</option> <option>male</option> <option>female</option> </select> [<a href="" ng:click="people.$remove(person)">X</a>] </li> </ul> <pre>people = {{people}}</pre> </doc:source> <doc:scenario> beforeEach(function() { expect(binding('people')).toBe('people = []'); }); it('should create an empty record when "add empty" is clicked', function() { element('.doc-example-live a:contains("add empty")').click(); expect(binding('people')).toBe('people = [{\n "name":"",\n "sex":null}]'); }); it('should create a "John" record when "add \'John\'" is clicked', function() { element('.doc-example-live a:contains("add \'John\'")').click(); expect(binding('people')).toBe('people = [{\n "name":"John",\n "sex":"male"}]'); }); it('should create a "Mary" record when "add \'Mary\'" is clicked', function() { element('.doc-example-live a:contains("add \'Mary\'")').click(); expect(binding('people')).toBe('people = [{\n "name":"Mary",\n "sex":"female"}]'); }); it('should delete a record when "X" is clicked', function() { element('.doc-example-live a:contains("add empty")').click(); element('.doc-example-live li a:contains("X"):first').click(); expect(binding('people')).toBe('people = []'); }); </doc:scenario> </doc:example> */ 'add':function(array, value) { array.push(isUndefined(value)? {} : value); return array; }, /** * @ngdoc function * @name angular.Array.count * @function * * @description * Determines the number of elements in an array. Provides an option for counting only those * elements for which a specified `condition` evaluates to `true`. * * Note: This function is used to augment the `Array` type in Angular expressions. See * {@link angular.Array} for more information about Angular arrays. * * @param {Array} array The array containing the elements to be counted. * @param {(function()|string)=} condition A function to be evaluated or * an Angular expression to be compiled and evaluated. The element being * iterated over is exposed to the `condition` as `this`. * @returns {number} Number of elements in the array. If a `condition` is specified, returns * the number of elements whose `condition` evaluates to `true`. * * @example <doc:example> <doc:source> <pre ng:init="items = [{name:'knife', points:1}, {name:'fork', points:3}, {name:'spoon', points:1}]"></pre> <ul> <li ng:repeat="item in items"> {{item.name}}: points= <input type="text" name="item.points"/> <!-- id="item{{$index}} --> </li> </ul> <p>Number of items which have one point: <em>{{ items.$count('points==1') }}</em></p> <p>Number of items which have more than one point: <em>{{items.$count('points&gt;1')}}</em></p> </doc:source> <doc:scenario> it('should calculate counts', function() { expect(binding('items.$count(\'points==1\')')).toEqual('2'); expect(binding('items.$count(\'points>1\')')).toEqual('1'); }); it('should recalculate when updated', function() { using('.doc-example-live li:first-child').input('item.points').enter('23'); expect(binding('items.$count(\'points==1\')')).toEqual('1'); expect(binding('items.$count(\'points>1\')')).toEqual('2'); }); </doc:scenario> </doc:example> */ 'count':function(array, condition) { if (!condition) return array.length; var fn = angularFunction.compile(condition), count = 0; forEach(array, function(value){ if (fn(value)) { count ++; } }); return count; }, /** * @ngdoc function * @name angular.Array.orderBy * @function * * @description * Orders a specified `array` by the `expression` predicate. * * Note: this function is used to augment the `Array` type in Angular expressions. See * {@link angular.Array} for more informaton about Angular arrays. * * @param {Array} array The array to sort. * @param {function(*)|string|Array.<(function(*)|string)>} expression A predicate to be * used by the comparator to determine the order of elements. * * Can be one of: * * - `function`: Getter function. The result of this function will be sorted using the * `<`, `=`, `>` operator. * - `string`: An Angular expression which evaluates to an object to order by, such as 'name' * to sort by a property called 'name'. Optionally prefixed with `+` or `-` to control * ascending or descending sort order (for example, +name or -name). * - `Array`: An array of function or string predicates. The first predicate in the array * is used for sorting, but when two items are equivalent, the next predicate is used. * * @param {boolean=} reverse Reverse the order the array. * @returns {Array} Sorted copy of the source array. * * @example <doc:example> <doc:source> <div ng:init="friends = [{name:'John', phone:'555-1212', age:10}, {name:'Mary', phone:'555-9876', age:19}, {name:'Mike', phone:'555-4321', age:21}, {name:'Adam', phone:'555-5678', age:35}, {name:'Julie', phone:'555-8765', age:29}]"></div> <pre>Sorting predicate = {{predicate}}; reverse = {{reverse}}</pre> <hr/> [ <a href="" ng:click="predicate=''">unsorted</a> ] <table ng:init="predicate='-age'"> <tr> <th><a href="" ng:click="predicate = 'name'; reverse=false">Name</a> (<a href ng:click="predicate = '-name'; reverse=false">^</a>)</th> <th><a href="" ng:click="predicate = 'phone'; reverse=!reverse">Phone Number</a></th> <th><a href="" ng:click="predicate = 'age'; reverse=!reverse">Age</a></th> <tr> <tr ng:repeat="friend in friends.$orderBy(predicate, reverse)"> <td>{{friend.name}}</td> <td>{{friend.phone}}</td> <td>{{friend.age}}</td> <tr> </table> </doc:source> <doc:scenario> it('should be reverse ordered by aged', function() { expect(binding('predicate')).toBe('Sorting predicate = -age; reverse = '); expect(repeater('.doc-example-live table', 'friend in friends').column('friend.age')). toEqual(['35', '29', '21', '19', '10']); expect(repeater('.doc-example-live table', 'friend in friends').column('friend.name')). toEqual(['Adam', 'Julie', 'Mike', 'Mary', 'John']); }); it('should reorder the table when user selects different predicate', function() { element('.doc-example-live a:contains("Name")').click(); expect(repeater('.doc-example-live table', 'friend in friends').column('friend.name')). toEqual(['Adam', 'John', 'Julie', 'Mary', 'Mike']); expect(repeater('.doc-example-live table', 'friend in friends').column('friend.age')). toEqual(['35', '10', '29', '19', '21']); element('.doc-example-live a:contains("Phone")').click(); expect(repeater('.doc-example-live table', 'friend in friends').column('friend.phone')). toEqual(['555-9876', '555-8765', '555-5678', '555-4321', '555-1212']); expect(repeater('.doc-example-live table', 'friend in friends').column('friend.name')). toEqual(['Mary', 'Julie', 'Adam', 'Mike', 'John']); }); </doc:scenario> </doc:example> */ 'orderBy':function(array, sortPredicate, reverseOrder) { if (!sortPredicate) return array; sortPredicate = isArray(sortPredicate) ? sortPredicate: [sortPredicate]; sortPredicate = map(sortPredicate, function(predicate){ var descending = false, get = predicate || identity; if (isString(predicate)) { if ((predicate.charAt(0) == '+' || predicate.charAt(0) == '-')) { descending = predicate.charAt(0) == '-'; predicate = predicate.substring(1); } get = expressionCompile(predicate); } return reverseComparator(function(a,b){ return compare(get(a),get(b)); }, descending); }); var arrayCopy = []; for ( var i = 0; i < array.length; i++) { arrayCopy.push(array[i]); } return arrayCopy.sort(reverseComparator(comparator, reverseOrder)); function comparator(o1, o2){ for ( var i = 0; i < sortPredicate.length; i++) { var comp = sortPredicate[i](o1, o2); if (comp !== 0) return comp; } return 0; } function reverseComparator(comp, descending) { return toBoolean(descending) ? function(a,b){return comp(b,a);} : comp; } function compare(v1, v2){ var t1 = typeof v1; var t2 = typeof v2; if (t1 == t2) { if (t1 == "string") v1 = v1.toLowerCase(); if (t1 == "string") v2 = v2.toLowerCase(); if (v1 === v2) return 0; return v1 < v2 ? -1 : 1; } else { return t1 < t2 ? -1 : 1; } } }, /** * @ngdoc function * @name angular.Array.limitTo * @function * * @description * Creates a new array containing only a specified number of elements in an array. The elements * are taken from either the beginning or the end of the source array, as specified by the * value and sign (positive or negative) of `limit`. * * Note: This function is used to augment the `Array` type in Angular expressions. See * {@link angular.Array} for more information about Angular arrays. * * @param {Array} array Source array to be limited. * @param {string|Number} limit The length of the returned array. If the `limit` number is * positive, `limit` number of items from the beginning of the source array are copied. * If the number is negative, `limit` number of items from the end of the source array are * copied. The `limit` will be trimmed if it exceeds `array.length` * @returns {Array} A new sub-array of length `limit` or less if input array had less than `limit` * elements. * * @example <doc:example> <doc:source> <div ng:init="numbers = [1,2,3,4,5,6,7,8,9]"> Limit [1,2,3,4,5,6,7,8,9] to: <input name="limit" value="3"/> <p>Output: {{ numbers.$limitTo(limit) | json }}</p> </div> </doc:source> <doc:scenario> it('should limit the numer array to first three items', function() { expect(element('.doc-example-live input[name=limit]').val()).toBe('3'); expect(binding('numbers.$limitTo(limit) | json')).toEqual('[1,2,3]'); }); it('should update the output when -3 is entered', function() { input('limit').enter(-3); expect(binding('numbers.$limitTo(limit) | json')).toEqual('[7,8,9]'); }); it('should not exceed the maximum size of input array', function() { input('limit').enter(100); expect(binding('numbers.$limitTo(limit) | json')).toEqual('[1,2,3,4,5,6,7,8,9]'); }); </doc:scenario> </doc:example> */ limitTo: function(array, limit) { limit = parseInt(limit, 10); var out = [], i, n; // check that array is iterable if (!array || !(array instanceof Array)) return out; // if abs(limit) exceeds maximum length, trim it if (limit > array.length) limit = array.length; else if (limit < -array.length) limit = -array.length; if (limit > 0) { i = 0; n = limit; } else { i = array.length + limit; n = array.length; } for (; i<n; i++) { out.push(array[i]); } return out; } }; var R_ISO8061_STR = /^(\d{4})-(\d\d)-(\d\d)(?:T(\d\d)(?:\:(\d\d)(?:\:(\d\d)(?:\.(\d{3}))?)?)?Z)?$/; var angularString = { 'quote':function(string) { return '"' + string.replace(/\\/g, '\\\\'). replace(/"/g, '\\"'). replace(/\n/g, '\\n'). replace(/\f/g, '\\f'). replace(/\r/g, '\\r'). replace(/\t/g, '\\t'). replace(/\v/g, '\\v') + '"'; }, 'quoteUnicode':function(string) { var str = angular['String']['quote'](string); var chars = []; for ( var i = 0; i < str.length; i++) { var ch = str.charCodeAt(i); if (ch < 128) { chars.push(str.charAt(i)); } else { var encode = "000" + ch.toString(16); chars.push("\\u" + encode.substring(encode.length - 4)); } } return chars.join(''); }, /** * Tries to convert input to date and if successful returns the date, otherwise returns the * input. * * @param {string} string * @return {(Date|string)} */ 'toDate':function(string){ var match; if (isString(string) && (match = string.match(R_ISO8061_STR))){ var date = new Date(0); date.setUTCFullYear(match[1], match[2] - 1, match[3]); date.setUTCHours(match[4]||0, match[5]||0, match[6]||0, match[7]||0); return date; } return string; } }; var angularDate = { 'toString':function(date){ if (!date) return date; var isoString = date.toISOString ? date.toISOString() : ''; return (isoString.length==24) ? isoString : padNumber(date.getUTCFullYear(), 4) + '-' + padNumber(date.getUTCMonth() + 1, 2) + '-' + padNumber(date.getUTCDate(), 2) + 'T' + padNumber(date.getUTCHours(), 2) + ':' + padNumber(date.getUTCMinutes(), 2) + ':' + padNumber(date.getUTCSeconds(), 2) + '.' + padNumber(date.getUTCMilliseconds(), 3) + 'Z'; } }; var angularFunction = { 'compile': function(expression) { if (isFunction(expression)){ return expression; } else if (expression){ return expressionCompile(expression); } else { return identity; } } }; /** * Computes a hash of an 'obj'. * Hash of a: * string is string * number is number as string * object is either call $hashKey function on object or assign unique hashKey id. * * @param obj * @returns {String} hash string such that the same input will have the same hash string */ function hashKey(obj) { var objType = typeof obj; var key = obj; if (objType == 'object') { if (typeof (key = obj.$hashKey) == 'function') { // must invoke on object to keep the right this key = obj.$hashKey(); } else if (key === undefined) { key = obj.$hashKey = nextUid(); } } return objType + ':' + key; } /** * HashMap which can use objects as keys */ function HashMap(){} HashMap.prototype = { /** * Store key value pair * @param key key to store can be any type * @param value value to store can be any type * @returns old value if any */ put: function(key, value) { var _key = hashKey(key); var oldValue = this[_key]; this[_key] = value; return oldValue; }, /** * @param key * @returns the value for the key */ get: function(key) { return this[hashKey(key)]; }, /** * Remove the key/value pair * @param key * @returns value associated with key before it was removed */ remove: function(key) { var _key = hashKey(key); var value = this[_key]; delete this[_key]; return value; } }; function defineApi(dst, chain){ angular[dst] = angular[dst] || {}; forEach(chain, function(parent){ extend(angular[dst], parent); }); } defineApi('Global', [angularGlobal]); defineApi('Collection', [angularGlobal, angularCollection]); defineApi('Array', [angularGlobal, angularCollection, angularArray]); defineApi('Object', [angularGlobal, angularCollection, angularObject]); defineApi('String', [angularGlobal, angularString]); defineApi('Date', [angularGlobal, angularDate]); //IE bug angular.Date.toString = angularDate.toString; defineApi('Function', [angularGlobal, angularCollection, angularFunction]); /** * @workInProgress * @ngdoc overview * @name angular.filter * @description * * Filters are used for formatting data displayed to the user. * * The general syntax in templates is as follows: * * {{ expression | [ filter_name ] }} * * Following is the list of built-in angular filters: * * * {@link angular.filter.currency currency} * * {@link angular.filter.date date} * * {@link angular.filter.html html} * * {@link angular.filter.json json} * * {@link angular.filter.linky linky} * * {@link angular.filter.lowercase lowercase} * * {@link angular.filter.number number} * * {@link angular.filter.uppercase uppercase} * * For more information about how angular filters work, and how to create your own filters, see * {@link guide/dev_guide.templates.filters Understanding Angular Filters} in the angular Developer * Guide. */ /** * @workInProgress * @ngdoc filter * @name angular.filter.currency * @function * * @description * Formats a number as a currency (ie $1,234.56). When no currency symbol is provided, default * symbol for current locale is used. * * @param {number} amount Input to filter. * @param {string=} symbol Currency symbol or identifier to be displayed. * @returns {string} Formatted number. * * @css ng-format-negative * When the value is negative, this css class is applied to the binding making it (by default) red. * * @example <doc:example> <doc:source> <input type="text" name="amount" value="1234.56"/> <br/> default currency symbol ($): {{amount | currency}}<br/> custom currency identifier (USD$): {{amount | currency:"USD$"}} </doc:source> <doc:scenario> it('should init with 1234.56', function(){ expect(binding('amount | currency')).toBe('$1,234.56'); expect(binding('amount | currency:"USD$"')).toBe('USD$1,234.56'); }); it('should update', function(){ input('amount').enter('-1234'); expect(binding('amount | currency')).toBe('($1,234.00)'); expect(binding('amount | currency:"USD$"')).toBe('(USD$1,234.00)'); expect(element('.doc-example-live .ng-binding').prop('className')). toMatch(/ng-format-negative/); }); </doc:scenario> </doc:example> */ angularFilter.currency = function(amount, currencySymbol){ var formats = this.$service('$locale').NUMBER_FORMATS; this.$element.toggleClass('ng-format-negative', amount < 0); if (isUndefined(currencySymbol)) currencySymbol = formats.CURRENCY_SYM; return formatNumber(amount, formats.PATTERNS[1], formats.GROUP_SEP, formats.DECIMAL_SEP, 2). replace(/\u00A4/g, currencySymbol); }; /** * @workInProgress * @ngdoc filter * @name angular.filter.number * @function * * @description * Formats a number as text. * * If the input is not a number an empty string is returned. * * @param {number|string} number Number to format. * @param {(number|string)=} [fractionSize=2] Number of decimal places to round the number to. * @returns {string} Number rounded to decimalPlaces and places a “,” after each third digit. * * @example <doc:example> <doc:source> Enter number: <input name='val' value='1234.56789' /><br/> Default formatting: {{val | number}}<br/> No fractions: {{val | number:0}}<br/> Negative number: {{-val | number:4}} </doc:source> <doc:scenario> it('should format numbers', function(){ expect(binding('val | number')).toBe('1,234.568'); expect(binding('val | number:0')).toBe('1,235'); expect(binding('-val | number:4')).toBe('-1,234.5679'); }); it('should update', function(){ input('val').enter('3374.333'); expect(binding('val | number')).toBe('3,374.333'); expect(binding('val | number:0')).toBe('3,374'); expect(binding('-val | number:4')).toBe('-3,374.3330'); }); </doc:scenario> </doc:example> */ var DECIMAL_SEP = '.'; angularFilter.number = function(number, fractionSize) { var formats = this.$service('$locale').NUMBER_FORMATS; return formatNumber(number, formats.PATTERNS[0], formats.GROUP_SEP, formats.DECIMAL_SEP, fractionSize); }; function formatNumber(number, pattern, groupSep, decimalSep, fractionSize) { if (isNaN(number) || !isFinite(number)) return ''; var isNegative = number < 0; number = Math.abs(number); var numStr = number + '', formatedText = '', parts = []; if (numStr.indexOf('e') !== -1) { formatedText = numStr; } else { var fractionLen = (numStr.split(DECIMAL_SEP)[1] || '').length; // determine fractionSize if it is not specified if (isUndefined(fractionSize)) { fractionSize = Math.min(Math.max(pattern.minFrac, fractionLen), pattern.maxFrac); } var pow = Math.pow(10, fractionSize); number = Math.round(number * pow) / pow; var fraction = ('' + number).split(DECIMAL_SEP); var whole = fraction[0]; fraction = fraction[1] || ''; var pos = 0, lgroup = pattern.lgSize, group = pattern.gSize; if (whole.length >= (lgroup + group)) { pos = whole.length - lgroup; for (var i = 0; i < pos; i++) { if ((pos - i)%group === 0 && i !== 0) { formatedText += groupSep; } formatedText += whole.charAt(i); } } for (i = pos; i < whole.length; i++) { if ((whole.length - i)%lgroup === 0 && i !== 0) { formatedText += groupSep; } formatedText += whole.charAt(i); } // format fraction part. while(fraction.length < fractionSize) { fraction += '0'; } if (fractionSize) formatedText += decimalSep + fraction.substr(0, fractionSize); } parts.push(isNegative ? pattern.negPre : pattern.posPre); parts.push(formatedText); parts.push(isNegative ? pattern.negSuf : pattern.posSuf); return parts.join(''); } function padNumber(num, digits, trim) { var neg = ''; if (num < 0) { neg = '-'; num = -num; } num = '' + num; while(num.length < digits) num = '0' + num; if (trim) num = num.substr(num.length - digits); return neg + num; } function dateGetter(name, size, offset, trim) { return function(date) { var value = date['get' + name](); if (offset > 0 || value > -offset) value += offset; if (value === 0 && offset == -12 ) value = 12; return padNumber(value, size, trim); }; } function dateStrGetter(name, shortForm) { return function(date, formats) { var value = date['get' + name](); var get = uppercase(shortForm ? ('SHORT' + name) : name); return formats[get][value]; }; } function timeZoneGetter(date) { var offset = date.getTimezoneOffset(); return padNumber(offset / 60, 2) + padNumber(Math.abs(offset % 60), 2); } function ampmGetter(date, formats) { return date.getHours() < 12 ? formats.AMPMS[0] : formats.AMPMS[1]; } var DATE_FORMATS = { yyyy: dateGetter('FullYear', 4), yy: dateGetter('FullYear', 2, 0, true), y: dateGetter('FullYear', 1), MMMM: dateStrGetter('Month'), MMM: dateStrGetter('Month', true), MM: dateGetter('Month', 2, 1), M: dateGetter('Month', 1, 1), dd: dateGetter('Date', 2), d: dateGetter('Date', 1), HH: dateGetter('Hours', 2), H: dateGetter('Hours', 1), hh: dateGetter('Hours', 2, -12), h: dateGetter('Hours', 1, -12), mm: dateGetter('Minutes', 2), m: dateGetter('Minutes', 1), ss: dateGetter('Seconds', 2), s: dateGetter('Seconds', 1), EEEE: dateStrGetter('Day'), EEE: dateStrGetter('Day', true), a: ampmGetter, Z: timeZoneGetter }; var GET_TIME_ZONE = /[A-Z]{3}(?![+\-])/, DATE_FORMATS_SPLIT = /((?:[^yMdHhmsaZE']+)|(?:'(?:[^']|'')*')|(?:E+|y+|M+|d+|H+|h+|m+|s+|a|Z))(.*)/, OPERA_TOSTRING_PATTERN = /^[\d].*Z$/, NUMBER_STRING = /^\d+$/; /** * @workInProgress * @ngdoc filter * @name angular.filter.date * @function * * @description * Formats `date` to a string based on the requested `format`. * * `format` string can be composed of the following elements: * * * `'yyyy'`: 4 digit representation of year (e.g. AD 1 => 0001, AD 2010 => 2010) * * `'yy'`: 2 digit representation of year, padded (00-99). (e.g. AD 2001 => 01, AD 2010 => 10) * * `'y'`: 1 digit representation of year, e.g. (AD 1 => 1, AD 199 => 199) * * `'MMMM'`: Month in year (January-December) * * `'MMM'`: Month in year (Jan-Dec) * * `'MM'`: Month in year, padded (01-12) * * `'M'`: Month in year (1-12) * * `'dd'`: Day in month, padded (01-31) * * `'d'`: Day in month (1-31) * * `'EEEE'`: Day in Week,(Sunday-Saturday) * * `'EEE'`: Day in Week, (Sun-Sat) * * `'HH'`: Hour in day, padded (00-23) * * `'H'`: Hour in day (0-23) * * `'hh'`: Hour in am/pm, padded (01-12) * * `'h'`: Hour in am/pm, (1-12) * * `'mm'`: Minute in hour, padded (00-59) * * `'m'`: Minute in hour (0-59) * * `'ss'`: Second in minute, padded (00-59) * * `'s'`: Second in minute (0-59) * * `'a'`: am/pm marker * * `'Z'`: 4 digit (+sign) representation of the timezone offset (-1200-1200) * * `format` string can also be one of the following predefined * {@link guide/dev_guide.i18n localizable formats}: * * * `'medium'`: equivalent to `'MMM d, y h:mm:ss a'` for en_US locale * (e.g. Sep 3, 2010 12:05:08 pm) * * `'short'`: equivalent to `'M/d/yy h:mm a'` for en_US locale (e.g. 9/3/10 12:05 pm) * * `'fullDate'`: equivalent to `'EEEE, MMMM d,y'` for en_US locale * (e.g. Friday, September 3, 2010) * * `'longDate'`: equivalent to `'MMMM d, y'` for en_US locale (e.g. September 3, 2010 * * `'mediumDate'`: equivalent to `'MMM d, y'` for en_US locale (e.g. Sep 3, 2010) * * `'shortDate'`: equivalent to `'M/d/yy'` for en_US locale (e.g. 9/3/10) * * `'mediumTime'`: equivalent to `'h:mm:ss a'` for en_US locale (e.g. 12:05:08 pm) * * `'shortTime'`: equivalent to `'h:mm a'` for en_US locale (e.g. 12:05 pm) * * `format` string can contain literal values. These need to be quoted with single quotes (e.g. * `"h 'in the morning'"`). In order to output single quote, use two single quotes in a sequence * (e.g. `"h o''clock"`). * * @param {(Date|number|string)} date Date to format either as Date object, milliseconds (string or * number) or ISO 8601 extended datetime string (yyyy-MM-ddTHH:mm:ss.SSSZ). * @param {string=} format Formatting rules (see Description). If not specified, * Date#toLocaleDateString is used. * @returns {string} Formatted string or the input if input is not recognized as date/millis. * * @example <doc:example> <doc:source> <span ng:non-bindable>{{1288323623006 | date:'medium'}}</span>: {{1288323623006 | date:'medium'}}<br/> <span ng:non-bindable>{{1288323623006 | date:'yyyy-MM-dd HH:mm:ss Z'}}</span>: {{1288323623006 | date:'yyyy-MM-dd HH:mm:ss Z'}}<br/> <span ng:non-bindable>{{1288323623006 | date:'MM/dd/yyyy @ h:mma'}}</span>: {{'1288323623006' | date:'MM/dd/yyyy @ h:mma'}}<br/> </doc:source> <doc:scenario> it('should format date', function(){ expect(binding("1288323623006 | date:'medium'")). toMatch(/Oct 2\d, 2010 \d{1,2}:\d{2}:\d{2} (AM|PM)/); expect(binding("1288323623006 | date:'yyyy-MM-dd HH:mm:ss Z'")). toMatch(/2010\-10\-2\d \d{2}:\d{2}:\d{2} \-?\d{4}/); expect(binding("'1288323623006' | date:'MM/dd/yyyy @ h:mma'")). toMatch(/10\/2\d\/2010 @ \d{1,2}:\d{2}(AM|PM)/); }); </doc:scenario> </doc:example> */ angularFilter.date = function(date, format) { var $locale = this.$service('$locale'); format = $locale.DATETIME_FORMATS[format] || format; if (isString(date)) { if (NUMBER_STRING.test(date)) { date = parseInt(date, 10); } else { date = angularString.toDate(date); } } if (isNumber(date)) { date = new Date(date); } if (!isDate(date)) { return date; } var text = date.toLocaleDateString(), fn; if (format && isString(format)) { text = ''; var parts = [], match; while(format) { match = DATE_FORMATS_SPLIT.exec(format); if (match) { parts = concat(parts, match, 1); format = parts.pop(); } else { parts.push(format); format = null; } } forEach(parts, function(value){ fn = DATE_FORMATS[value]; text += fn ? fn(date, $locale.DATETIME_FORMATS) : value.replace(/(^'|'$)/g, '').replace(/''/g, "'"); }); } return text; }; /** * @workInProgress * @ngdoc filter * @name angular.filter.json * @function * * @description * Allows you to convert a JavaScript object into JSON string. * * This filter is mostly useful for debugging. When using the double curly {{value}} notation * the binding is automatically converted to JSON. * * @param {*} object Any JavaScript object (including arrays and primitive types) to filter. * @returns {string} JSON string. * * @css ng-monospace Always applied to the encapsulating element. * * @example: <doc:example> <doc:source> <pre>{{ {'name':'value'} | json }}</pre> </doc:source> <doc:scenario> it('should jsonify filtered objects', function() { expect(binding('| json')).toBe('{\n "name":"value"}'); }); </doc:scenario> </doc:example> * */ angularFilter.json = function(object) { this.$element.addClass("ng-monospace"); return toJson(object, true); }; /** * @workInProgress * @ngdoc filter * @name angular.filter.lowercase * @function * * @see angular.lowercase */ angularFilter.lowercase = lowercase; /** * @workInProgress * @ngdoc filter * @name angular.filter.uppercase * @function * * @see angular.uppercase */ angularFilter.uppercase = uppercase; /** * @workInProgress * @ngdoc filter * @name angular.filter.html * @function * * @description * Prevents the input from getting escaped by angular. By default the input is sanitized and * inserted into the DOM as is. * * The input is sanitized by parsing the html into tokens. All safe tokens (from a whitelist) are * then serialized back to properly escaped html string. This means that no unsafe input can make * it into the returned string, however, since our parser is more strict than a typical browser * parser, it's possible that some obscure input, which would be recognized as valid HTML by a * browser, won't make it through the sanitizer. * * If you hate your users, you may call the filter with optional 'unsafe' argument, which bypasses * the html sanitizer, but makes your application vulnerable to XSS and other attacks. Using this * option is strongly discouraged and should be used only if you absolutely trust the input being * filtered and you can't get the content through the sanitizer. * * @param {string} html Html input. * @param {string=} option If 'unsafe' then do not sanitize the HTML input. * @returns {string} Sanitized or raw html. * * @example <doc:example> <doc:source> Snippet: <textarea name="snippet" cols="60" rows="3"> &lt;p style="color:blue"&gt;an html &lt;em onmouseover="this.textContent='PWN3D!'"&gt;click here&lt;/em&gt; snippet&lt;/p&gt;</textarea> <table> <tr> <td>Filter</td> <td>Source</td> <td>Rendered</td> </tr> <tr id="html-filter"> <td>html filter</td> <td> <pre>&lt;div ng:bind="snippet | html"&gt;<br/>&lt;/div&gt;</pre> </td> <td> <div ng:bind="snippet | html"></div> </td> </tr> <tr id="escaped-html"> <td>no filter</td> <td><pre>&lt;div ng:bind="snippet"&gt;<br/>&lt;/div&gt;</pre></td> <td><div ng:bind="snippet"></div></td> </tr> <tr id="html-unsafe-filter"> <td>unsafe html filter</td> <td><pre>&lt;div ng:bind="snippet | html:'unsafe'"&gt;<br/>&lt;/div&gt;</pre></td> <td><div ng:bind="snippet | html:'unsafe'"></div></td> </tr> </table> </doc:source> <doc:scenario> it('should sanitize the html snippet ', function(){ expect(using('#html-filter').binding('snippet | html')). toBe('<p>an html\n<em>click here</em>\nsnippet</p>'); }); it('should escape snippet without any filter', function() { expect(using('#escaped-html').binding('snippet')). toBe("&lt;p style=\"color:blue\"&gt;an html\n" + "&lt;em onmouseover=\"this.textContent='PWN3D!'\"&gt;click here&lt;/em&gt;\n" + "snippet&lt;/p&gt;"); }); it('should inline raw snippet if filtered as unsafe', function() { expect(using('#html-unsafe-filter').binding("snippet | html:'unsafe'")). toBe("<p style=\"color:blue\">an html\n" + "<em onmouseover=\"this.textContent='PWN3D!'\">click here</em>\n" + "snippet</p>"); }); it('should update', function(){ input('snippet').enter('new <b>text</b>'); expect(using('#html-filter').binding('snippet | html')).toBe('new <b>text</b>'); expect(using('#escaped-html').binding('snippet')).toBe("new &lt;b&gt;text&lt;/b&gt;"); expect(using('#html-unsafe-filter').binding("snippet | html:'unsafe'")).toBe('new <b>text</b>'); }); </doc:scenario> </doc:example> */ angularFilter.html = function(html, option){ return new HTML(html, option); }; /** * @workInProgress * @ngdoc filter * @name angular.filter.linky * @function * * @description * Finds links in text input and turns them into html links. Supports http/https/ftp/mailto and * plain email address links. * * @param {string} text Input text. * @returns {string} Html-linkified text. * * @example <doc:example> <doc:source> Snippet: <textarea name="snippet" cols="60" rows="3"> Pretty text with some links: http://angularjs.org/, mailto:us@somewhere.org, another@somewhere.org, and one more: ftp://127.0.0.1/.</textarea> <table> <tr> <td>Filter</td> <td>Source</td> <td>Rendered</td> </tr> <tr id="linky-filter"> <td>linky filter</td> <td> <pre>&lt;div ng:bind="snippet | linky"&gt;<br/>&lt;/div&gt;</pre> </td> <td> <div ng:bind="snippet | linky"></div> </td> </tr> <tr id="escaped-html"> <td>no filter</td> <td><pre>&lt;div ng:bind="snippet"&gt;<br/>&lt;/div&gt;</pre></td> <td><div ng:bind="snippet"></div></td> </tr> </table> </doc:source> <doc:scenario> it('should linkify the snippet with urls', function(){ expect(using('#linky-filter').binding('snippet | linky')). toBe('Pretty text with some links:\n' + '<a href="http://angularjs.org/">http://angularjs.org/</a>,\n' + '<a href="mailto:us@somewhere.org">us@somewhere.org</a>,\n' + '<a href="mailto:another@somewhere.org">another@somewhere.org</a>,\n' + 'and one more: <a href="ftp://127.0.0.1/">ftp://127.0.0.1/</a>.'); }); it ('should not linkify snippet without the linky filter', function() { expect(using('#escaped-html').binding('snippet')). toBe("Pretty text with some links:\n" + "http://angularjs.org/,\n" + "mailto:us@somewhere.org,\n" + "another@somewhere.org,\n" + "and one more: ftp://127.0.0.1/."); }); it('should update', function(){ input('snippet').enter('new http://link.'); expect(using('#linky-filter').binding('snippet | linky')). toBe('new <a href="http://link">http://link</a>.'); expect(using('#escaped-html').binding('snippet')).toBe('new http://link.'); }); </doc:scenario> </doc:example> */ var LINKY_URL_REGEXP = /((ftp|https?):\/\/|(mailto:)?[A-Za-z0-9._%+-]+@)\S*[^\s\.\;\,\(\)\{\}\<\>]/, MAILTO_REGEXP = /^mailto:/; angularFilter.linky = function(text) { if (!text) return text; var match; var raw = text; var html = []; var writer = htmlSanitizeWriter(html); var url; var i; while ((match = raw.match(LINKY_URL_REGEXP))) { // We can not end in these as they are sometimes found at the end of the sentence url = match[0]; // if we did not match ftp/http/mailto then assume mailto if (match[2] == match[3]) url = 'mailto:' + url; i = match.index; writer.chars(raw.substr(0, i)); writer.start('a', {href:url}); writer.chars(match[0].replace(MAILTO_REGEXP, '')); writer.end('a'); raw = raw.substring(i + match[0].length); } writer.chars(raw); return new HTML(html.join('')); }; /** * @workInProgress * @ngdoc overview * @name angular.formatter * @description * * Formatters are used for translating data formats between those used for display and those used * for storage. * * Following is the list of built-in angular formatters: * * * {@link angular.formatter.boolean boolean} - Formats user input in boolean format * * {@link angular.formatter.json json} - Formats user input in JSON format * * {@link angular.formatter.list list} - Formats user input string as an array * * {@link angular.formatter.number number} - Formats user input strings as a number * * {@link angular.formatter.trim trim} - Trims extras spaces from end of user input * * For more information about how angular formatters work, and how to create your own formatters, * see {@link guide/dev_guide.templates.formatters Understanding Angular Formatters} in the angular * Developer Guide. */ function formatter(format, parse) {return {'format':format, 'parse':parse || format};} function toString(obj) { return (isDefined(obj) && obj !== null) ? "" + obj : obj; } var NUMBER = /^\s*[-+]?\d*(\.\d*)?\s*$/; angularFormatter.noop = formatter(identity, identity); /** * @workInProgress * @ngdoc formatter * @name angular.formatter.json * * @description * Formats the user input as JSON text. * * @returns {?string} A JSON string representation of the model. * * @example <doc:example> <doc:source> <div ng:init="data={name:'misko', project:'angular'}"> <input type="text" size='50' name="data" ng:format="json"/> <pre>data={{data}}</pre> </div> </doc:source> <doc:scenario> it('should format json', function(){ expect(binding('data')).toEqual('data={\n \"name\":\"misko\",\n \"project\":\"angular\"}'); input('data').enter('{}'); expect(binding('data')).toEqual('data={\n }'); }); </doc:scenario> </doc:example> */ angularFormatter.json = formatter(toJson, function(value){ return fromJson(value || 'null'); }); /** * @workInProgress * @ngdoc formatter * @name angular.formatter.boolean * * @description * Use boolean formatter if you wish to store the data as boolean. * * @returns {boolean} Converts to `true` unless user enters (blank), `f`, `false`, `0`, `no`, `[]`. * * @example <doc:example> <doc:source> Enter truthy text: <input type="text" name="value" ng:format="boolean" value="no"/> <input type="checkbox" name="value"/> <pre>value={{value}}</pre> </doc:source> <doc:scenario> it('should format boolean', function(){ expect(binding('value')).toEqual('value=false'); input('value').enter('truthy'); expect(binding('value')).toEqual('value=true'); }); </doc:scenario> </doc:example> */ angularFormatter['boolean'] = formatter(toString, toBoolean); /** * @workInProgress * @ngdoc formatter * @name angular.formatter.number * * @description * Use number formatter if you wish to convert the user entered string to a number. * * @returns {number} Number from the parsed string. * * @example <doc:example> <doc:source> Enter valid number: <input type="text" name="value" ng:format="number" value="1234"/> <pre>value={{value}}</pre> </doc:source> <doc:scenario> it('should format numbers', function(){ expect(binding('value')).toEqual('value=1234'); input('value').enter('5678'); expect(binding('value')).toEqual('value=5678'); }); </doc:scenario> </doc:example> */ angularFormatter.number = formatter(toString, function(obj){ if (obj == null || NUMBER.exec(obj)) { return obj===null || obj === '' ? null : 1*obj; } else { throw "Not a number"; } }); /** * @workInProgress * @ngdoc formatter * @name angular.formatter.list * * @description * Use list formatter if you wish to convert the user entered string to an array. * * @returns {Array} Array parsed from the entered string. * * @example <doc:example> <doc:source> Enter a list of items: <input type="text" name="value" ng:format="list" value=" chair ,, table"/> <input type="text" name="value" ng:format="list"/> <pre>value={{value}}</pre> </doc:source> <doc:scenario> it('should format lists', function(){ expect(binding('value')).toEqual('value=["chair","table"]'); this.addFutureAction('change to XYZ', function($window, $document, done){ $document.elements('.doc-example-live :input:last').val(',,a,b,').trigger('change'); done(); }); expect(binding('value')).toEqual('value=["a","b"]'); }); </doc:scenario> </doc:example> */ angularFormatter.list = formatter( function(obj) { return obj ? obj.join(", ") : obj; }, function(value) { var list = []; forEach((value || '').split(','), function(item){ item = trim(item); if (item) list.push(item); }); return list; } ); /** * @workInProgress * @ngdoc formatter * @name angular.formatter.trim * * @description * Use trim formatter if you wish to trim extra spaces in user text. * * @returns {String} Trim excess leading and trailing space. * * @example <doc:example> <doc:source> Enter text with leading/trailing spaces: <input type="text" name="value" ng:format="trim" value=" book "/> <input type="text" name="value" ng:format="trim"/> <pre>value={{value|json}}</pre> </doc:source> <doc:scenario> it('should format trim', function(){ expect(binding('value')).toEqual('value="book"'); this.addFutureAction('change to XYZ', function($window, $document, done){ $document.elements('.doc-example-live :input:last').val(' text ').trigger('change'); done(); }); expect(binding('value')).toEqual('value="text"'); }); </doc:scenario> </doc:example> */ angularFormatter.trim = formatter( function(obj) { return obj ? trim("" + obj) : ""; } ); /** * @workInProgress * @ngdoc overview * @name angular.validator * @description * * Most of the built-in angular validators are used to check user input against defined types or * patterns. You can easily create your own custom validators as well. * * Following is the list of built-in angular validators: * * * {@link angular.validator.asynchronous asynchronous()} - Provides asynchronous validation via a * callback function. * * {@link angular.validator.date date()} - Checks user input against default date format: * "MM/DD/YYYY" * * {@link angular.validator.email email()} - Validates that user input is a well-formed email * address. * * {@link angular.validator.integer integer()} - Validates that user input is an integer * * {@link angular.validator.json json()} - Validates that user input is valid JSON * * {@link angular.validator.number number()} - Validates that user input is a number * * {@link angular.validator.phone phone()} - Validates that user input matches the pattern * "1(123)123-1234" * * {@link angular.validator.regexp regexp()} - Restricts valid input to a specified regular * expression pattern * * {@link angular.validator.url url()} - Validates that user input is a well-formed URL. * * For more information about how angular validators work, and how to create your own validators, * see {@link guide/dev_guide.templates.validators Understanding Angular Validators} in the angular * Developer Guide. */ extend(angularValidator, { 'noop': function() { return null; }, /** * @workInProgress * @ngdoc validator * @name angular.validator.regexp * @description * Use regexp validator to restrict the input to any Regular Expression. * * @param {string} value value to validate * @param {string|regexp} expression regular expression. * @param {string=} msg error message to display. * @css ng-validation-error * * @example <doc:example> <doc:source> <script> function Cntl(){ this.ssnRegExp = /^\d\d\d-\d\d-\d\d\d\d$/; } </script> Enter valid SSN: <div ng:controller="Cntl"> <input name="ssn" value="123-45-6789" ng:validate="regexp:ssnRegExp" > </div> </doc:source> <doc:scenario> it('should invalidate non ssn', function(){ var textBox = element('.doc-example-live :input'); expect(textBox.prop('className')).not().toMatch(/ng-validation-error/); expect(textBox.val()).toEqual('123-45-6789'); input('ssn').enter('123-45-67890'); expect(textBox.prop('className')).toMatch(/ng-validation-error/); }); </doc:scenario> </doc:example> * */ 'regexp': function(value, regexp, msg) { if (!value.match(regexp)) { return msg || "Value does not match expected format " + regexp + "."; } else { return null; } }, /** * @workInProgress * @ngdoc validator * @name angular.validator.number * @description * Use number validator to restrict the input to numbers with an * optional range. (See integer for whole numbers validator). * * @param {string} value value to validate * @param {int=} [min=MIN_INT] minimum value. * @param {int=} [max=MAX_INT] maximum value. * @css ng-validation-error * * @example <doc:example> <doc:source> Enter number: <input name="n1" ng:validate="number" > <br> Enter number greater than 10: <input name="n2" ng:validate="number:10" > <br> Enter number between 100 and 200: <input name="n3" ng:validate="number:100:200" > <br> </doc:source> <doc:scenario> it('should invalidate number', function(){ var n1 = element('.doc-example-live :input[name=n1]'); expect(n1.prop('className')).not().toMatch(/ng-validation-error/); input('n1').enter('1.x'); expect(n1.prop('className')).toMatch(/ng-validation-error/); var n2 = element('.doc-example-live :input[name=n2]'); expect(n2.prop('className')).not().toMatch(/ng-validation-error/); input('n2').enter('9'); expect(n2.prop('className')).toMatch(/ng-validation-error/); var n3 = element('.doc-example-live :input[name=n3]'); expect(n3.prop('className')).not().toMatch(/ng-validation-error/); input('n3').enter('201'); expect(n3.prop('className')).toMatch(/ng-validation-error/); }); </doc:scenario> </doc:example> * */ 'number': function(value, min, max) { var num = 1 * value; if (num == value) { if (typeof min != $undefined && num < min) { return "Value can not be less than " + min + "."; } if (typeof min != $undefined && num > max) { return "Value can not be greater than " + max + "."; } return null; } else { return "Not a number"; } }, /** * @workInProgress * @ngdoc validator * @name angular.validator.integer * @description * Use number validator to restrict the input to integers with an * optional range. (See integer for whole numbers validator). * * @param {string} value value to validate * @param {int=} [min=MIN_INT] minimum value. * @param {int=} [max=MAX_INT] maximum value. * @css ng-validation-error * * @example <doc:example> <doc:source> Enter integer: <input name="n1" ng:validate="integer" > <br> Enter integer equal or greater than 10: <input name="n2" ng:validate="integer:10" > <br> Enter integer between 100 and 200 (inclusive): <input name="n3" ng:validate="integer:100:200" > <br> </doc:source> <doc:scenario> it('should invalidate integer', function(){ var n1 = element('.doc-example-live :input[name=n1]'); expect(n1.prop('className')).not().toMatch(/ng-validation-error/); input('n1').enter('1.1'); expect(n1.prop('className')).toMatch(/ng-validation-error/); var n2 = element('.doc-example-live :input[name=n2]'); expect(n2.prop('className')).not().toMatch(/ng-validation-error/); input('n2').enter('10.1'); expect(n2.prop('className')).toMatch(/ng-validation-error/); var n3 = element('.doc-example-live :input[name=n3]'); expect(n3.prop('className')).not().toMatch(/ng-validation-error/); input('n3').enter('100.1'); expect(n3.prop('className')).toMatch(/ng-validation-error/); }); </doc:scenario> </doc:example> */ 'integer': function(value, min, max) { var numberError = angularValidator['number'](value, min, max); if (numberError) return numberError; if (!("" + value).match(/^\s*[\d+]*\s*$/) || value != Math.round(value)) { return "Not a whole number"; } return null; }, /** * @workInProgress * @ngdoc validator * @name angular.validator.date * @description * Use date validator to restrict the user input to a valid date * in format in format MM/DD/YYYY. * * @param {string} value value to validate * @css ng-validation-error * * @example <doc:example> <doc:source> Enter valid date: <input name="text" value="1/1/2009" ng:validate="date" > </doc:source> <doc:scenario> it('should invalidate date', function(){ var n1 = element('.doc-example-live :input'); expect(n1.prop('className')).not().toMatch(/ng-validation-error/); input('text').enter('123/123/123'); expect(n1.prop('className')).toMatch(/ng-validation-error/); }); </doc:scenario> </doc:example> * */ 'date': function(value) { var fields = /^(\d\d?)\/(\d\d?)\/(\d\d\d\d)$/.exec(value); var date = fields ? new Date(fields[3], fields[1]-1, fields[2]) : 0; return (date && date.getFullYear() == fields[3] && date.getMonth() == fields[1]-1 && date.getDate() == fields[2]) ? null : "Value is not a date. (Expecting format: 12/31/2009)."; }, /** * @workInProgress * @ngdoc validator * @name angular.validator.email * @description * Use email validator if you wist to restrict the user input to a valid email. * * @param {string} value value to validate * @css ng-validation-error * * @example <doc:example> <doc:source> Enter valid email: <input name="text" ng:validate="email" value="me@example.com"> </doc:source> <doc:scenario> it('should invalidate email', function(){ var n1 = element('.doc-example-live :input'); expect(n1.prop('className')).not().toMatch(/ng-validation-error/); input('text').enter('a@b.c'); expect(n1.prop('className')).toMatch(/ng-validation-error/); }); </doc:scenario> </doc:example> * */ 'email': function(value) { if (value.match(/^[A-Za-z0-9._%+-]+@[A-Za-z0-9.-]+\.[A-Za-z]{2,4}$/)) { return null; } return "Email needs to be in username@host.com format."; }, /** * @workInProgress * @ngdoc validator * @name angular.validator.phone * @description * Use phone validator to restrict the input phone numbers. * * @param {string} value value to validate * @css ng-validation-error * * @example <doc:example> <doc:source> Enter valid phone number: <input name="text" value="1(234)567-8901" ng:validate="phone" > </doc:source> <doc:scenario> it('should invalidate phone', function(){ var n1 = element('.doc-example-live :input'); expect(n1.prop('className')).not().toMatch(/ng-validation-error/); input('text').enter('+12345678'); expect(n1.prop('className')).toMatch(/ng-validation-error/); }); </doc:scenario> </doc:example> * */ 'phone': function(value) { if (value.match(/^1\(\d\d\d\)\d\d\d-\d\d\d\d$/)) { return null; } if (value.match(/^\+\d{2,3} (\(\d{1,5}\))?[\d ]+\d$/)) { return null; } return "Phone number needs to be in 1(987)654-3210 format in North America " + "or +999 (123) 45678 906 internationally."; }, /** * @workInProgress * @ngdoc validator * @name angular.validator.url * @description * Use phone validator to restrict the input URLs. * * @param {string} value value to validate * @css ng-validation-error * * @example <doc:example> <doc:source> Enter valid URL: <input name="text" value="http://example.com/abc.html" size="40" ng:validate="url" > </doc:source> <doc:scenario> it('should invalidate url', function(){ var n1 = element('.doc-example-live :input'); expect(n1.prop('className')).not().toMatch(/ng-validation-error/); input('text').enter('abc://server/path'); expect(n1.prop('className')).toMatch(/ng-validation-error/); }); </doc:scenario> </doc:example> * */ 'url': function(value) { if (value.match(/^(ftp|http|https):\/\/(\w+:{0,1}\w*@)?(\S+)(:[0-9]+)?(\/|\/([\w#!:.?+=&%@!\-\/]))?$/)) { return null; } return "URL needs to be in http://server[:port]/path format."; }, /** * @workInProgress * @ngdoc validator * @name angular.validator.json * @description * Use json validator if you wish to restrict the user input to a valid JSON. * * @param {string} value value to validate * @css ng-validation-error * * @example <doc:example> <doc:source> <textarea name="json" cols="60" rows="5" ng:validate="json"> {name:'abc'} </textarea> </doc:source> <doc:scenario> it('should invalidate json', function(){ var n1 = element('.doc-example-live :input'); expect(n1.prop('className')).not().toMatch(/ng-validation-error/); input('json').enter('{name}'); expect(n1.prop('className')).toMatch(/ng-validation-error/); }); </doc:scenario> </doc:example> * */ 'json': function(value) { try { fromJson(value); return null; } catch (e) { return e.toString(); } }, /** * @workInProgress * @ngdoc validator * @name angular.validator.asynchronous * @description * Use asynchronous validator if the validation can not be computed * immediately, but is provided through a callback. The widget * automatically shows a spinning indicator while the validity of * the widget is computed. This validator caches the result. * * @param {string} value value to validate * @param {function(inputToValidate,validationDone)} validate function to call to validate the state * of the input. * @param {function(data)=} [update=noop] function to call when state of the * validator changes * * @paramDescription * The `validate` function (specified by you) is called as * `validate(inputToValidate, validationDone)`: * * * `inputToValidate`: value of the input box. * * `validationDone`: `function(error, data){...}` * * `error`: error text to display if validation fails * * `data`: data object to pass to update function * * The `update` function is optionally specified by you and is * called by <angular/> on input change. Since the * asynchronous validator caches the results, the update * function can be called without a call to `validate` * function. The function is called as `update(data)`: * * * `data`: data object as passed from validate function * * @css ng-input-indicator-wait, ng-validation-error * * @example <doc:example> <doc:source> <script> function MyCntl(){ this.myValidator = function (inputToValidate, validationDone) { setTimeout(function(){ validationDone(inputToValidate.length % 2); }, 500); } } </script> This input is validated asynchronously: <div ng:controller="MyCntl"> <input name="text" ng:validate="asynchronous:myValidator"> </div> </doc:source> <doc:scenario> it('should change color in delayed way', function(){ var textBox = element('.doc-example-live :input'); expect(textBox.prop('className')).not().toMatch(/ng-input-indicator-wait/); expect(textBox.prop('className')).not().toMatch(/ng-validation-error/); input('text').enter('X'); expect(textBox.prop('className')).toMatch(/ng-input-indicator-wait/); sleep(.6); expect(textBox.prop('className')).not().toMatch(/ng-input-indicator-wait/); expect(textBox.prop('className')).toMatch(/ng-validation-error/); }); </doc:scenario> </doc:example> * */ /* * cache is attached to the element * cache: { * inputs : { * 'user input': { * response: server response, * error: validation error * }, * current: 'current input' * } * } * */ 'asynchronous': function(input, asynchronousFn, updateFn) { if (!input) return; var scope = this; var element = scope.$element; var cache = element.data('$asyncValidator'); if (!cache) { element.data('$asyncValidator', cache = {inputs:{}}); } cache.current = input; var inputState = cache.inputs[input], $invalidWidgets = scope.$service('$invalidWidgets'); if (!inputState) { cache.inputs[input] = inputState = { inFlight: true }; $invalidWidgets.markInvalid(scope.$element); element.addClass('ng-input-indicator-wait'); asynchronousFn(input, function(error, data) { inputState.response = data; inputState.error = error; inputState.inFlight = false; if (cache.current == input) { element.removeClass('ng-input-indicator-wait'); $invalidWidgets.markValid(element); } element.data($$validate)(); }); } else if (inputState.inFlight) { // request in flight, mark widget invalid, but don't show it to user $invalidWidgets.markInvalid(scope.$element); } else { (updateFn||noop)(inputState.response); } return inputState.error; } }); /** * @workInProgress * @ngdoc service * @name angular.service.$cookieStore * @requires $cookies * * @description * Provides a key-value (string-object) storage, that is backed by session cookies. * Objects put or retrieved from this storage are automatically serialized or * deserialized by angular's toJson/fromJson. * @example */ angularServiceInject('$cookieStore', function($store) { return { /** * @workInProgress * @ngdoc method * @name angular.service.$cookieStore#get * @methodOf angular.service.$cookieStore * * @description * Returns the value of given cookie key * * @param {string} key Id to use for lookup. * @returns {Object} Deserialized cookie value. */ get: function(key) { return fromJson($store[key]); }, /** * @workInProgress * @ngdoc method * @name angular.service.$cookieStore#put * @methodOf angular.service.$cookieStore * * @description * Sets a value for given cookie key * * @param {string} key Id for the `value`. * @param {Object} value Value to be stored. */ put: function(key, value) { $store[key] = toJson(value); }, /** * @workInProgress * @ngdoc method * @name angular.service.$cookieStore#remove * @methodOf angular.service.$cookieStore * * @description * Remove given cookie * * @param {string} key Id of the key-value pair to delete. */ remove: function(key) { delete $store[key]; } }; }, ['$cookies']); /** * @workInProgress * @ngdoc service * @name angular.service.$cookies * @requires $browser * * @description * Provides read/write access to browser's cookies. * * Only a simple Object is exposed and by adding or removing properties to/from * this object, new cookies are created/deleted at the end of current $eval. * * @example */ angularServiceInject('$cookies', function($browser) { var rootScope = this, cookies = {}, lastCookies = {}, lastBrowserCookies, runEval = false; //creates a poller fn that copies all cookies from the $browser to service & inits the service $browser.addPollFn(function() { var currentCookies = $browser.cookies(); if (lastBrowserCookies != currentCookies) { //relies on browser.cookies() impl lastBrowserCookies = currentCookies; copy(currentCookies, lastCookies); copy(currentCookies, cookies); if (runEval) rootScope.$apply(); } })(); runEval = true; //at the end of each eval, push cookies //TODO: this should happen before the "delayed" watches fire, because if some cookies are not // strings or browser refuses to store some cookies, we update the model in the push fn. this.$watch(push); return cookies; /** * Pushes all the cookies from the service to the browser and verifies if all cookies were stored. */ function push(){ var name, value, browserCookies, updated; //delete any cookies deleted in $cookies for (name in lastCookies) { if (isUndefined(cookies[name])) { $browser.cookies(name, undefined); } } //update all cookies updated in $cookies for(name in cookies) { value = cookies[name]; if (!isString(value)) { if (isDefined(lastCookies[name])) { cookies[name] = lastCookies[name]; } else { delete cookies[name]; } } else if (value !== lastCookies[name]) { $browser.cookies(name, value); updated = true; } } //verify what was actually stored if (updated){ updated = false; browserCookies = $browser.cookies(); for (name in cookies) { if (cookies[name] !== browserCookies[name]) { //delete or reset all cookies that the browser dropped from $cookies if (isUndefined(browserCookies[name])) { delete cookies[name]; } else { cookies[name] = browserCookies[name]; } updated = true; } } } } }, ['$browser']); /** * @workInProgress * @ngdoc service * @name angular.service.$defer * @requires $browser * * @description * Delegates to {@link angular.service.$browser $browser.defer}, but wraps the `fn` function * into a try/catch block and delegates any exceptions to * {@link angular.service.$exceptionHandler $exceptionHandler} service. * * In tests you can use `$browser.defer.flush()` to flush the queue of deferred functions. * * @param {function()} fn A function, who's execution should be deferred. * @param {number=} [delay=0] of milliseconds to defer the function execution. */ angularServiceInject('$defer', function($browser) { var scope = this; return function(fn, delay) { $browser.defer(function() { scope.$apply(fn); }, delay); }; }, ['$browser']); /** * @workInProgress * @ngdoc service * @name angular.service.$document * @requires $window * * @description * A {@link angular.element jQuery (lite)}-wrapped reference to the browser's `window.document` * element. */ angularServiceInject("$document", function(window){ return jqLite(window.document); }, ['$window']); /** * @workInProgress * @ngdoc service * @name angular.service.$exceptionHandler * @requires $log * * @description * Any uncaught exception in angular expressions is delegated to this service. * The default implementation simply delegates to `$log.error` which logs it into * the browser console. * * In unit tests, if `angular-mocks.js` is loaded, this service is overriden by * {@link angular.mock.service.$exceptionHandler mock $exceptionHandler} * * @example */ var $exceptionHandlerFactory; //reference to be used only in tests angularServiceInject('$exceptionHandler', $exceptionHandlerFactory = function($log){ return function(e) { $log.error(e); }; }, ['$log']); /** * @workInProgress * @ngdoc service * @name angular.service.$hover * @requires $browser * @requires $document * * @description * * @example */ angularServiceInject("$hover", function(browser, document) { var tooltip, self = this, error, width = 300, arrowWidth = 10, body = jqLite(document[0].body); browser.hover(function(element, show){ if (show && (error = element.attr(NG_EXCEPTION) || element.attr(NG_VALIDATION_ERROR))) { if (!tooltip) { tooltip = { callout: jqLite('<div id="ng-callout"></div>'), arrow: jqLite('<div></div>'), title: jqLite('<div class="ng-title"></div>'), content: jqLite('<div class="ng-content"></div>') }; tooltip.callout.append(tooltip.arrow); tooltip.callout.append(tooltip.title); tooltip.callout.append(tooltip.content); body.append(tooltip.callout); } var docRect = body[0].getBoundingClientRect(), elementRect = element[0].getBoundingClientRect(), leftSpace = docRect.right - elementRect.right - arrowWidth; tooltip.title.text(element.hasClass("ng-exception") ? "EXCEPTION:" : "Validation error..."); tooltip.content.text(error); if (leftSpace < width) { tooltip.arrow.addClass('ng-arrow-right'); tooltip.arrow.css({left: (width + 1)+'px'}); tooltip.callout.css({ position: 'fixed', left: (elementRect.left - arrowWidth - width - 4) + "px", top: (elementRect.top - 3) + "px", width: width + "px" }); } else { tooltip.arrow.addClass('ng-arrow-left'); tooltip.callout.css({ position: 'fixed', left: (elementRect.right + arrowWidth) + "px", top: (elementRect.top - 3) + "px", width: width + "px" }); } } else if (tooltip) { tooltip.callout.remove(); tooltip = null; } }); }, ['$browser', '$document'], true); /** * @workInProgress * @ngdoc service * @name angular.service.$invalidWidgets * * @description * Keeps references to all invalid widgets found during validation. * Can be queried to find whether there are any invalid widgets currently displayed. * * @example */ angularServiceInject("$invalidWidgets", function(){ var invalidWidgets = []; /** Remove an element from the array of invalid widgets */ invalidWidgets.markValid = function(element){ var index = indexOf(invalidWidgets, element); if (index != -1) invalidWidgets.splice(index, 1); }; /** Add an element to the array of invalid widgets */ invalidWidgets.markInvalid = function(element){ var index = indexOf(invalidWidgets, element); if (index === -1) invalidWidgets.push(element); }; /** Return count of all invalid widgets that are currently visible */ invalidWidgets.visible = function() { var count = 0; forEach(invalidWidgets, function(widget){ count = count + (isVisible(widget) ? 1 : 0); }); return count; }; /* At the end of each eval removes all invalid widgets that are not part of the current DOM. */ this.$watch(function() { for(var i = 0; i < invalidWidgets.length;) { var widget = invalidWidgets[i]; if (isOrphan(widget[0])) { invalidWidgets.splice(i, 1); if (widget.dealoc) widget.dealoc(); } else { i++; } } }); /** * Traverses DOM element's (widget's) parents and considers the element to be an orphan if one of * it's parents isn't the current window.document. */ function isOrphan(widget) { if (widget == window.document) return false; var parent = widget.parentNode; return !parent || isOrphan(parent); } return invalidWidgets; }); var URL_MATCH = /^(file|ftp|http|https):\/\/(\w+:{0,1}\w*@)?([\w\.-]*)(:([0-9]+))?(\/[^\?#]*)?(\?([^#]*))?(#(.*))?$/, PATH_MATCH = /^([^\?#]*)?(\?([^#]*))?(#(.*))?$/, HASH_MATCH = PATH_MATCH, DEFAULT_PORTS = {'http': 80, 'https': 443, 'ftp': 21}; /** * Encode path using encodeUriSegment, ignoring forward slashes * * @param {string} path Path to encode * @returns {string} */ function encodePath(path) { var segments = path.split('/'), i = segments.length; while (i--) { segments[i] = encodeUriSegment(segments[i]); } return segments.join('/'); } function matchUrl(url, obj) { var match = URL_MATCH.exec(url), match = { protocol: match[1], host: match[3], port: parseInt(match[5]) || DEFAULT_PORTS[match[1]] || null, path: match[6] || '/', search: match[8], hash: match[10] }; if (obj) { obj.$$protocol = match.protocol; obj.$$host = match.host; obj.$$port = match.port; } return match; } function composeProtocolHostPort(protocol, host, port) { return protocol + '://' + host + (port == DEFAULT_PORTS[protocol] ? '' : ':' + port); } function pathPrefixFromBase(basePath) { return basePath.substr(0, basePath.lastIndexOf('/')); } function convertToHtml5Url(url, basePath, hashPrefix) { var match = matchUrl(url); // already html5 url if (decodeURIComponent(match.path) != basePath || isUndefined(match.hash) || match.hash.indexOf(hashPrefix) != 0) { return url; // convert hashbang url -> html5 url } else { return composeProtocolHostPort(match.protocol, match.host, match.port) + pathPrefixFromBase(basePath) + match.hash.substr(hashPrefix.length); } } function convertToHashbangUrl(url, basePath, hashPrefix) { var match = matchUrl(url); // already hashbang url if (decodeURIComponent(match.path) == basePath) { return url; // convert html5 url -> hashbang url } else { var search = match.search && '?' + match.search || '', hash = match.hash && '#' + match.hash || '', pathPrefix = pathPrefixFromBase(basePath), path = match.path.substr(pathPrefix.length); if (match.path.indexOf(pathPrefix) != 0) { throw 'Invalid url "' + url + '", missing path prefix "' + pathPrefix + '" !'; } return composeProtocolHostPort(match.protocol, match.host, match.port) + basePath + '#' + hashPrefix + path + search + hash; } } /** * LocationUrl represents an url * This object is exposed as $location service when html5 is enabled and supported * * @constructor * @param {string} url Html5 url * @param {string} pathPrefix */ function LocationUrl(url, pathPrefix) { pathPrefix = pathPrefix || ''; /** * Parse given html5 (regular) url string into properties * @param {string} url Html5 url * @private */ this.$$parse = function(url) { var match = matchUrl(url, this); if (match.path.indexOf(pathPrefix) != 0) { throw 'Invalid url "' + url + '", missing path prefix "' + pathPrefix + '" !'; } this.$$path = decodeURIComponent(match.path.substr(pathPrefix.length)); this.$$search = parseKeyValue(match.search); this.$$hash = match.hash && decodeURIComponent(match.hash) || ''; this.$$compose(); }, /** * Compose url and update `absUrl` property * @private */ this.$$compose = function() { var search = toKeyValue(this.$$search), hash = this.$$hash ? '#' + encodeUriSegment(this.$$hash) : ''; this.$$url = encodePath(this.$$path) + (search ? '?' + search : '') + hash; this.$$absUrl = composeProtocolHostPort(this.$$protocol, this.$$host, this.$$port) + pathPrefix + this.$$url; }; this.$$parse(url); } /** * LocationHashbangUrl represents url * This object is exposed as $location service when html5 history api is disabled or not supported * * @constructor * @param {string} url Legacy url * @param {string} hashPrefix Prefix for hash part (containing path and search) */ function LocationHashbangUrl(url, hashPrefix) { var basePath; /** * Parse given hashbang url into properties * @param {string} url Hashbang url * @private */ this.$$parse = function(url) { var match = matchUrl(url, this); if (match.hash && match.hash.indexOf(hashPrefix) != 0) { throw 'Invalid url "' + url + '", missing hash prefix "' + hashPrefix + '" !'; } basePath = match.path + (match.search ? '?' + match.search : ''); match = HASH_MATCH.exec((match.hash || '').substr(hashPrefix.length)); if (match[1]) { this.$$path = (match[1].charAt(0) == '/' ? '' : '/') + decodeURIComponent(match[1]); } else { this.$$path = ''; } this.$$search = parseKeyValue(match[3]); this.$$hash = match[5] && decodeURIComponent(match[5]) || ''; this.$$compose(); }; /** * Compose hashbang url and update `absUrl` property * @private */ this.$$compose = function() { var search = toKeyValue(this.$$search), hash = this.$$hash ? '#' + encodeUriSegment(this.$$hash) : ''; this.$$url = encodePath(this.$$path) + (search ? '?' + search : '') + hash; this.$$absUrl = composeProtocolHostPort(this.$$protocol, this.$$host, this.$$port) + basePath + (this.$$url ? '#' + hashPrefix + this.$$url : ''); }; this.$$parse(url); } LocationUrl.prototype = LocationHashbangUrl.prototype = { /** * Has any change been replacing ? * @private */ $$replace: false, /** * @ngdoc method * @name angular.service.$location#absUrl * @methodOf angular.service.$location * * @description * This method is getter only. * * Return full url representation with all segments encoded according to rules specified in * {@link http://www.ietf.org/rfc/rfc3986.txt RFC 3986}. * * @return {string} */ absUrl: locationGetter('$$absUrl'), /** * @ngdoc method * @name angular.service.$location#url * @methodOf angular.service.$location * * @description * This method is getter / setter. * * Return url (e.g. `/path?a=b#hash`) when called without any parameter. * * Change path, search and hash, when called with parameter and return `$location`. * * @param {string=} url New url without base prefix (e.g. `/path?a=b#hash`) * @return {string} */ url: function(url, replace) { if (isUndefined(url)) return this.$$url; var match = PATH_MATCH.exec(url); this.path(decodeURIComponent(match[1] || '')).search(match[3] || '') .hash(match[5] || '', replace); return this; }, /** * @ngdoc method * @name angular.service.$location#protocol * @methodOf angular.service.$location * * @description * This method is getter only. * * Return protocol of current url. * * @return {string} */ protocol: locationGetter('$$protocol'), /** * @ngdoc method * @name angular.service.$location#host * @methodOf angular.service.$location * * @description * This method is getter only. * * Return host of current url. * * @return {string} */ host: locationGetter('$$host'), /** * @ngdoc method * @name angular.service.$location#port * @methodOf angular.service.$location * * @description * This method is getter only. * * Return port of current url. * * @return {Number} */ port: locationGetter('$$port'), /** * @ngdoc method * @name angular.service.$location#path * @methodOf angular.service.$location * * @description * This method is getter / setter. * * Return path of current url when called without any parameter. * * Change path when called with parameter and return `$location`. * * Note: Path should always begin with forward slash (/), this method will add the forward slash * if it is missing. * * @param {string=} path New path * @return {string} */ path: locationGetterSetter('$$path', function(path) { return path.charAt(0) == '/' ? path : '/' + path; }), /** * @ngdoc method * @name angular.service.$location#search * @methodOf angular.service.$location * * @description * This method is getter / setter. * * Return search part (as object) of current url when called without any parameter. * * Change search part when called with parameter and return `$location`. * * @param {string|object<string,string>=} search New search part - string or hash object * @return {string} */ search: function(search, paramValue) { if (isUndefined(search)) return this.$$search; if (isDefined(paramValue)) { if (paramValue === null) { delete this.$$search[search]; } else { this.$$search[search] = encodeUriQuery(paramValue); } } else { this.$$search = isString(search) ? parseKeyValue(search) : search; } this.$$compose(); return this; }, /** * @ngdoc method * @name angular.service.$location#hash * @methodOf angular.service.$location * * @description * This method is getter / setter. * * Return hash fragment when called without any parameter. * * Change hash fragment when called with parameter and return `$location`. * * @param {string=} hash New hash fragment * @return {string} */ hash: locationGetterSetter('$$hash', identity), /** * @ngdoc method * @name angular.service.$location#replace * @methodOf angular.service.$location * * @description * If called, all changes to $location during current `$digest` will be replacing current history * record, instead of adding new one. */ replace: function() { this.$$replace = true; return this; } }; function locationGetter(property) { return function() { return this[property]; }; } function locationGetterSetter(property, preprocess) { return function(value) { if (isUndefined(value)) return this[property]; this[property] = preprocess(value); this.$$compose(); return this; }; } /** * @ngdoc service * @name angular.service.$location * * @requires $browser * @requires $sniffer * @requires $config * @requires $document * * @description * The $location service parses the URL in the browser address bar (based on the {@link https://developer.mozilla.org/en/window.location window.location}) and makes the URL available to your application. Changes to the URL in the address bar are reflected into $location service and changes to $location are reflected into the browser address bar. * * **The $location service:** * * - Exposes the current URL in the browser address bar, so you can * - Watch and observe the URL. * - Change the URL. * - Synchronizes the URL with the browser when the user * - Changes the address bar. * - Clicks the back or forward button (or clicks a History link). * - Clicks on a link. * - Represents the URL object as a set of methods (protocol, host, port, path, search, hash). * * For more information see {@link guide/dev_guide.services.$location Developer Guide: Angular Services: Using $location} */ angularServiceInject('$location', function($browser, $sniffer, $config, $document) { var scope = this, currentUrl, basePath = $browser.baseHref() || '/', pathPrefix = pathPrefixFromBase(basePath), hashPrefix = $config.hashPrefix || '', initUrl = $browser.url(); if ($config.html5Mode) { if ($sniffer.history) { currentUrl = new LocationUrl(convertToHtml5Url(initUrl, basePath, hashPrefix), pathPrefix); } else { currentUrl = new LocationHashbangUrl(convertToHashbangUrl(initUrl, basePath, hashPrefix), hashPrefix); } // link rewriting var u = currentUrl, absUrlPrefix = composeProtocolHostPort(u.protocol(), u.host(), u.port()) + pathPrefix; $document.bind('click', function(event) { // TODO(vojta): rewrite link when opening in new tab/window (in legacy browser) // currently we open nice url link and redirect then if (uppercase(event.target.nodeName) != 'A' || event.ctrlKey || event.which == 2) return; var elm = jqLite(event.target), href = elm.attr('href'); if (!href || isDefined(elm.attr('ng:ext-link')) || elm.attr('target')) return; // remove same domain from full url links (IE7 always returns full hrefs) href = href.replace(absUrlPrefix, ''); // link to different domain (or base path) if (href.substr(0, 4) == 'http') return; // remove pathPrefix from absolute links href = href.indexOf(pathPrefix) === 0 ? href.substr(pathPrefix.length) : href; currentUrl.url(href); scope.$apply(); event.preventDefault(); // hack to work around FF6 bug 684208 when scenario runner clicks on links window.angular['ff-684208-preventDefault'] = true; }); } else { currentUrl = new LocationHashbangUrl(initUrl, hashPrefix); } // rewrite hashbang url <> html5 url if (currentUrl.absUrl() != initUrl) { $browser.url(currentUrl.absUrl(), true); } // update $location when $browser url changes $browser.onUrlChange(function(newUrl) { if (currentUrl.absUrl() != newUrl) { currentUrl.$$parse(newUrl); scope.$apply(); } }); // update browser var changeCounter = 0; scope.$watch(function() { if ($browser.url() != currentUrl.absUrl()) { changeCounter++; scope.$evalAsync(function() { $browser.url(currentUrl.absUrl(), currentUrl.$$replace); currentUrl.$$replace = false; }); } return changeCounter; }); return currentUrl; }, ['$browser', '$sniffer', '$locationConfig', '$document']); angular.service('$locationConfig', function() { return { html5Mode: false, hashPrefix: '' }; }); /** * @workInProgress * @ngdoc service * @name angular.service.$log * @requires $window * * @description * Simple service for logging. Default implementation writes the message * into the browser's console (if present). * * The main purpose of this service is to simplify debugging and troubleshooting. * * @example <doc:example> <doc:source> <script> function LogCtrl($log) { this.$log = $log; } </script> <div ng:controller="LogCtrl"> <p>Reload this page with open console, enter text and hit the log button...</p> Message: <input type="text" name="message" value="Hello World!"/> <button ng:click="$log.log(message)">log</button> <button ng:click="$log.warn(message)">warn</button> <button ng:click="$log.info(message)">info</button> <button ng:click="$log.error(message)">error</button> </div> </doc:source> <doc:scenario> </doc:scenario> </doc:example> */ var $logFactory; //reference to be used only in tests angularServiceInject("$log", $logFactory = function($window){ return { /** * @workInProgress * @ngdoc method * @name angular.service.$log#log * @methodOf angular.service.$log * * @description * Write a log message */ log: consoleLog('log'), /** * @workInProgress * @ngdoc method * @name angular.service.$log#warn * @methodOf angular.service.$log * * @description * Write a warning message */ warn: consoleLog('warn'), /** * @workInProgress * @ngdoc method * @name angular.service.$log#info * @methodOf angular.service.$log * * @description * Write an information message */ info: consoleLog('info'), /** * @workInProgress * @ngdoc method * @name angular.service.$log#error * @methodOf angular.service.$log * * @description * Write an error message */ error: consoleLog('error') }; function consoleLog(type) { var console = $window.console || {}; var logFn = console[type] || console.log || noop; if (logFn.apply) { return function(){ var args = []; forEach(arguments, function(arg){ args.push(formatError(arg)); }); return logFn.apply(console, args); }; } else { // we are IE, in which case there is nothing we can do return logFn; } } }, ['$window']); /** * @workInProgress * @ngdoc service * @name angular.service.$resource * @requires $xhr.cache * * @description * A factory which creates a resource object that lets you interact with * [RESTful](http://en.wikipedia.org/wiki/Representational_State_Transfer) server-side data sources. * * The returned resource object has action methods which provide high-level behaviors without * the need to interact with the low level {@link angular.service.$xhr $xhr} service or * raw XMLHttpRequest. * * @param {string} url A parameterized URL template with parameters prefixed by `:` as in * `/user/:username`. * * @param {Object=} paramDefaults Default values for `url` parameters. These can be overridden in * `actions` methods. * * Each key value in the parameter object is first bound to url template if present and then any * excess keys are appended to the url search query after the `?`. * * Given a template `/path/:verb` and parameter `{verb:'greet', salutation:'Hello'}` results in * URL `/path/greet?salutation=Hello`. * * If the parameter value is prefixed with `@` then the value of that parameter is extracted from * the data object (useful for non-GET operations). * * @param {Object.<Object>=} actions Hash with declaration of custom action that should extend the * default set of resource actions. The declaration should be created in the following format: * * {action1: {method:?, params:?, isArray:?, verifyCache:?}, * action2: {method:?, params:?, isArray:?, verifyCache:?}, * ...} * * Where: * * - `action` – {string} – The name of action. This name becomes the name of the method on your * resource object. * - `method` – {string} – HTTP request method. Valid methods are: `GET`, `POST`, `PUT`, `DELETE`, * and `JSON` (also known as JSONP). * - `params` – {object=} – Optional set of pre-bound parameters for this action. * - isArray – {boolean=} – If true then the returned object for this action is an array, see * `returns` section. * - verifyCache – {boolean=} – If true then whenever cache hit occurs, the object is returned and * an async request will be made to the server and the resources as well as the cache will be * updated when the response is received. * * @returns {Object} A resource "class" object with methods for the default set of resource actions * optionally extended with custom `actions`. The default set contains these actions: * * { 'get': {method:'GET'}, * 'save': {method:'POST'}, * 'query': {method:'GET', isArray:true}, * 'remove': {method:'DELETE'}, * 'delete': {method:'DELETE'} }; * * Calling these methods invoke an {@link angular.service.$xhr} with the specified http method, * destination and parameters. When the data is returned from the server then the object is an * instance of the resource class `save`, `remove` and `delete` actions are available on it as * methods with the `$` prefix. This allows you to easily perform CRUD operations (create, read, * update, delete) on server-side data like this: * <pre> var User = $resource('/user/:userId', {userId:'@id'}); var user = User.get({userId:123}, function(){ user.abc = true; user.$save(); }); </pre> * * It is important to realize that invoking a $resource object method immediately returns an * empty reference (object or array depending on `isArray`). Once the data is returned from the * server the existing reference is populated with the actual data. This is a useful trick since * usually the resource is assigned to a model which is then rendered by the view. Having an empty * object results in no rendering, once the data arrives from the server then the object is * populated with the data and the view automatically re-renders itself showing the new data. This * means that in most case one never has to write a callback function for the action methods. * * The action methods on the class object or instance object can be invoked with the following * parameters: * * - HTTP GET "class" actions: `Resource.action([parameters], [success], [error])` * - non-GET "class" actions: `Resource.action(postData, [parameters], [success], [error])` * - non-GET instance actions: `instance.$action([parameters], [success], [error])` * * * @example * * # Credit card resource * * <pre> // Define CreditCard class var CreditCard = $resource('/user/:userId/card/:cardId', {userId:123, cardId:'@id'}, { charge: {method:'POST', params:{charge:true}} }); // We can retrieve a collection from the server var cards = CreditCard.query(); // GET: /user/123/card // server returns: [ {id:456, number:'1234', name:'Smith'} ]; var card = cards[0]; // each item is an instance of CreditCard expect(card instanceof CreditCard).toEqual(true); card.name = "J. Smith"; // non GET methods are mapped onto the instances card.$save(); // POST: /user/123/card/456 {id:456, number:'1234', name:'J. Smith'} // server returns: {id:456, number:'1234', name: 'J. Smith'}; // our custom method is mapped as well. card.$charge({amount:9.99}); // POST: /user/123/card/456?amount=9.99&charge=true {id:456, number:'1234', name:'J. Smith'} // server returns: {id:456, number:'1234', name: 'J. Smith'}; // we can create an instance as well var newCard = new CreditCard({number:'0123'}); newCard.name = "Mike Smith"; newCard.$save(); // POST: /user/123/card {number:'0123', name:'Mike Smith'} // server returns: {id:789, number:'01234', name: 'Mike Smith'}; expect(newCard.id).toEqual(789); * </pre> * * The object returned from this function execution is a resource "class" which has "static" method * for each action in the definition. * * Calling these methods invoke `$xhr` on the `url` template with the given `method` and `params`. * When the data is returned from the server then the object is an instance of the resource type and * all of the non-GET methods are available with `$` prefix. This allows you to easily support CRUD * operations (create, read, update, delete) on server-side data. <pre> var User = $resource('/user/:userId', {userId:'@id'}); var user = User.get({userId:123}, function(){ user.abc = true; user.$save(); }); </pre> * * It's worth noting that the success callback for `get`, `query` and other method gets passed * in the response that came from the server, so one could rewrite the above example as: * <pre> var User = $resource('/user/:userId', {userId:'@id'}); User.get({userId:123}, function(u){ u.abc = true; u.$save(); }); </pre> * # Buzz client Let's look at what a buzz client created with the `$resource` service looks like: <doc:example> <doc:source jsfiddle="false"> <script> function BuzzController($resource) { this.Activity = $resource( 'https://www.googleapis.com/buzz/v1/activities/:userId/:visibility/:activityId/:comments', {alt:'json', callback:'JSON_CALLBACK'}, {get:{method:'JSON', params:{visibility:'@self'}}, replies: {method:'JSON', params:{visibility:'@self', comments:'@comments'}}} ); } BuzzController.prototype = { fetch: function() { this.activities = this.Activity.get({userId:this.userId}); }, expandReplies: function(activity) { activity.replies = this.Activity.replies({userId:this.userId, activityId:activity.id}); } }; BuzzController.$inject = ['$resource']; </script> <div ng:controller="BuzzController"> <input name="userId" value="googlebuzz"/> <button ng:click="fetch()">fetch</button> <hr/> <div ng:repeat="item in activities.data.items"> <h1 style="font-size: 15px;"> <img src="{{item.actor.thumbnailUrl}}" style="max-height:30px;max-width:30px;"/> <a href="{{item.actor.profileUrl}}">{{item.actor.name}}</a> <a href ng:click="expandReplies(item)" style="float: right;">Expand replies: {{item.links.replies[0].count}}</a> </h1> {{item.object.content | html}} <div ng:repeat="reply in item.replies.data.items" style="margin-left: 20px;"> <img src="{{reply.actor.thumbnailUrl}}" style="max-height:30px;max-width:30px;"/> <a href="{{reply.actor.profileUrl}}">{{reply.actor.name}}</a>: {{reply.content | html}} </div> </div> </div> </doc:source> <doc:scenario> </doc:scenario> </doc:example> */ angularServiceInject('$resource', function($xhr){ var resource = new ResourceFactory($xhr); return bind(resource, resource.route); }, ['$xhr.cache']); /** * @workInProgress * @ngdoc service * @name angular.service.$route * @requires $location * @requires $routeParams * * @property {Object} current Reference to the current route definition. * @property {Array.<Object>} routes Array of all configured routes. * * @description * Watches `$location.url()` and tries to map the path to an existing route * definition. It is used for deep-linking URLs to controllers and views (HTML partials). * * The `$route` service is typically used in conjunction with {@link angular.widget.ng:view ng:view} * widget and the {@link angular.service.$routeParams $routeParams} service. * * @example This example shows how changing the URL hash causes the <tt>$route</tt> to match a route against the URL, and the <tt>[[ng:include]]</tt> pulls in the partial. <doc:example> <doc:source jsfiddle="false"> <script> function MainCntl($route, $routeParams, $location) { this.$route = $route; this.$location = $location; this.$routeParams = $routeParams; $route.when('/Book/:bookId', {template: 'examples/book.html', controller: BookCntl}); $route.when('/Book/:bookId/ch/:chapterId', {template: 'examples/chapter.html', controller: ChapterCntl}); } function BookCntl($routeParams) { this.name = "BookCntl"; this.params = $routeParams; } function ChapterCntl($routeParams) { this.name = "ChapterCntl"; this.params = $routeParams; } </script> <div ng:controller="MainCntl"> Choose: <a href="#/Book/Moby">Moby</a> | <a href="#/Book/Moby/ch/1">Moby: Ch1</a> | <a href="#/Book/Gatsby">Gatsby</a> | <a href="#/Book/Gatsby/ch/4?key=value">Gatsby: Ch4</a><br/> <pre>$location.path() = {{$location.path()}}</pre> <pre>$route.current.template = {{$route.current.template}}</pre> <pre>$route.current.params = {{$route.current.params}}</pre> <pre>$route.current.scope.name = {{$route.current.scope.name}}</pre> <pre>$routeParams = {{$routeParams}}</pre> <hr /> <ng:view></ng:view> </div> </doc:source> <doc:scenario> </doc:scenario> </doc:example> */ angularServiceInject('$route', function($location, $routeParams) { /** * @workInProgress * @ngdoc event * @name angular.service.$route#$beforeRouteChange * @eventOf angular.service.$route * @eventType broadcast on root scope * @description * Broadcasted before a route change. * * @param {Route} next Future route information. * @param {Route} current Current route information. * * The `Route` object extends the route definition with the following properties. * * * `scope` - The instance of the route controller. * * `params` - The current {@link angular.service.$routeParams params}. * */ /** * @workInProgress * @ngdoc event * @name angular.service.$route#$afterRouteChange * @eventOf angular.service.$route * @eventType broadcast on root scope * @description * Broadcasted after a route change. * * @param {Route} current Current route information. * @param {Route} previous Previous route information. * * The `Route` object extends the route definition with the following properties. * * * `scope` - The instance of the route controller. * * `params` - The current {@link angular.service.$routeParams params}. * */ /** * @workInProgress * @ngdoc event * @name angular.service.$route#$routeUpdate * @eventOf angular.service.$route * @eventType emit on the current route scope * @description * * The `reloadOnSearch` property has been set to false, and we are reusing the same * instance of the Controller. */ var routes = {}, matcher = switchRouteMatcher, parentScope = this, rootScope = this, dirty = 0, forceReload = false, $route = { routes: routes, /** * @workInProgress * @ngdoc method * @name angular.service.$route#parent * @methodOf angular.service.$route * * @param {Scope} [scope=rootScope] Scope to be used as parent for newly created * `$route.current.scope` scopes. * * @description * Sets a scope to be used as the parent scope for scopes created on route change. If not * set, defaults to the root scope. */ parent: function(scope) { if (scope) parentScope = scope; }, /** * @workInProgress * @ngdoc method * @name angular.service.$route#when * @methodOf angular.service.$route * * @param {string} path Route path (matched against `$location.hash`) * @param {Object} route Mapping information to be assigned to `$route.current` on route * match. * * Object properties: * * - `controller` – `{function()=}` – Controller fn that should be associated with newly * created scope. * - `template` – `{string=}` – path to an html template that should be used by * {@link angular.widget.ng:view ng:view} or * {@link angular.widget.ng:include ng:include} widgets. * - `redirectTo` – {(string|function())=} – value to update * {@link angular.service.$location $location} path with and trigger route redirection. * * If `redirectTo` is a function, it will be called with the following parameters: * * - `{Object.<string>}` - route parameters extracted from the current * `$location.path()` by applying the current route template. * - `{string}` - current `$location.path()` * - `{Object}` - current `$location.search()` * * The custom `redirectTo` function is expected to return a string which will be used * to update `$location.path()` and `$location.search()`. * * - `[reloadOnSearch=true]` - {boolean=} - reload route when only $location.search() * changes. * * If the option is set to false and url in the browser changes, then * $routeUpdate event is emited on the current route scope. You can use this event to * react to {@link angular.service.$routeParams} changes: * * function MyCtrl($route, $routeParams) { * this.$on('$routeUpdate', function() { * // do stuff with $routeParams * }); * } * * @returns {Object} route object * * @description * Adds a new route definition to the `$route` service. */ when: function (path, route) { var routeDef = routes[path]; if (!routeDef) routeDef = routes[path] = {reloadOnSearch: true}; if (route) extend(routeDef, route); // TODO(im): what the heck? merge two route definitions? dirty++; return routeDef; }, /** * @workInProgress * @ngdoc method * @name angular.service.$route#otherwise * @methodOf angular.service.$route * * @description * Sets route definition that will be used on route change when no other route definition * is matched. * * @param {Object} params Mapping information to be assigned to `$route.current`. */ otherwise: function(params) { $route.when(null, params); }, /** * @workInProgress * @ngdoc method * @name angular.service.$route#reload * @methodOf angular.service.$route * * @description * Causes `$route` service to reload (and recreate the `$route.current` scope) upon the next * eval even if {@link angular.service.$location $location} hasn't changed. */ reload: function() { dirty++; forceReload = true; } }; this.$watch(function() { return dirty + $location.url(); }, updateRoute); return $route; ///////////////////////////////////////////////////// function switchRouteMatcher(on, when) { // TODO(i): this code is convoluted and inefficient, we should construct the route matching // regex only once and then reuse it var regex = '^' + when.replace(/([\.\\\(\)\^\$])/g, "\\$1") + '$', params = [], dst = {}; forEach(when.split(/\W/), function(param) { if (param) { var paramRegExp = new RegExp(":" + param + "([\\W])"); if (regex.match(paramRegExp)) { regex = regex.replace(paramRegExp, "([^\\/]*)$1"); params.push(param); } } }); var match = on.match(new RegExp(regex)); if (match) { forEach(params, function(name, index) { dst[name] = match[index + 1]; }); } return match ? dst : null; } function updateRoute() { var next = parseRoute(), last = $route.current; if (next && last && next.$route === last.$route && equals(next.pathParams, last.pathParams) && !next.reloadOnSearch && !forceReload) { $route.current = next; copy(next.params, $routeParams); last.scope && last.scope.$emit('$routeUpdate'); } else { forceReload = false; rootScope.$broadcast('$beforeRouteChange', next, last); last && last.scope && last.scope.$destroy(); $route.current = next; if (next) { if (next.redirectTo) { if (isString(next.redirectTo)) { $location.path(interpolate(next.redirectTo, next.params)).search(next.params) .replace(); } else { $location.url(next.redirectTo(next.pathParams, $location.path(), $location.search())) .replace(); } } else { copy(next.params, $routeParams); next.scope = parentScope.$new(next.controller); } } rootScope.$broadcast('$afterRouteChange', next, last); } } /** * @returns the current active route, by matching it against the URL */ function parseRoute() { // Match a route var params, match; forEach(routes, function(route, path) { if (!match && (params = matcher($location.path(), path))) { match = inherit(route, { params: extend({}, $location.search(), params), pathParams: params}); match.$route = route; } }); // No route matched; fallback to "otherwise" route return match || routes[null] && inherit(routes[null], {params: {}, pathParams:{}}); } /** * @returns interpolation of the redirect path with the parametrs */ function interpolate(string, params) { var result = []; forEach((string||'').split(':'), function(segment, i) { if (i == 0) { result.push(segment); } else { var segmentMatch = segment.match(/(\w+)(.*)/); var key = segmentMatch[1]; result.push(params[key]); result.push(segmentMatch[2] || ''); delete params[key]; } }); return result.join(''); } }, ['$location', '$routeParams']); /** * @workInProgress * @ngdoc service * @name angular.service.$routeParams * @requires $route * * @description * Current set of route parameters. The route parameters are a combination of the * {@link angular.service.$location $location} `search()`, and `path()`. The `path` parameters * are extracted when the {@link angular.service.$route $route} path is matched. * * In case of parameter name collision, `path` params take precedence over `search` params. * * The service guarantees that the identity of the `$routeParams` object will remain unchanged * (but its properties will likely change) even when a route change occurs. * * @example * <pre> * // Given: * // URL: http://server.com/index.html#/Chapter/1/Section/2?search=moby * // Route: /Chapter/:chapterId/Section/:sectionId * // * // Then * $routeParams ==> {chapterId:1, sectionId:2, search:'moby'} * </pre> */ angularService('$routeParams', function(){ return {}; }); /** * @workInProgress * @ngdoc service * @name angular.service.$sniffer * @requires $window * * @property {boolean} history Does the browser support html5 history api ? * @property {boolean} hashchange Does the browser support hashchange event ? * * @description * This is very simple implementation of testing browser's features. */ angularServiceInject('$sniffer', function($window) { if ($window.Modernizr) return $window.Modernizr; return { history: !!($window.history && $window.history.pushState), hashchange: 'onhashchange' in $window && // IE8 compatible mode lies (!$window.document.documentMode || $window.document.documentMode > 7) }; }, ['$window']); /** * @workInProgress * @ngdoc service * @name angular.service.$window * * @description * A reference to the browser's `window` object. While `window` * is globally available in JavaScript, it causes testability problems, because * it is a global variable. In angular we always refer to it through the * `$window` service, so it may be overriden, removed or mocked for testing. * * All expressions are evaluated with respect to current scope so they don't * suffer from window globality. * * @example <doc:example> <doc:source> <input ng:init="$window = $service('$window'); greeting='Hello World!'" type="text" name="greeting" /> <button ng:click="$window.alert(greeting)">ALERT</button> </doc:source> <doc:scenario> </doc:scenario> </doc:example> */ angularServiceInject("$window", bind(window, identity, window)); /** * @workInProgress * @ngdoc service * @name angular.service.$xhr.bulk * @requires $xhr * @requires $xhr.error * @requires $log * * @description * * @example */ angularServiceInject('$xhr.bulk', function($xhr, $error, $log){ var requests = [], scope = this; function bulkXHR(method, url, post, success, error) { if (isFunction(post)) { error = success; success = post; post = null; } var currentQueue; forEach(bulkXHR.urls, function(queue){ if (isFunction(queue.match) ? queue.match(url) : queue.match.exec(url)) { currentQueue = queue; } }); if (currentQueue) { if (!currentQueue.requests) currentQueue.requests = []; var request = { method: method, url: url, data: post, success: success}; if (error) request.error = error; currentQueue.requests.push(request); } else { $xhr(method, url, post, success, error); } } bulkXHR.urls = {}; bulkXHR.flush = function(success, errorback) { assertArgFn(success = success || noop, 0); assertArgFn(errorback = errorback || noop, 1); forEach(bulkXHR.urls, function(queue, url) { var currentRequests = queue.requests; if (currentRequests && currentRequests.length) { queue.requests = []; queue.callbacks = []; $xhr('POST', url, {requests: currentRequests}, function(code, response) { forEach(response, function(response, i) { try { if (response.status == 200) { (currentRequests[i].success || noop)(response.status, response.response); } else if (isFunction(currentRequests[i].error)) { currentRequests[i].error(response.status, response.response); } else { $error(currentRequests[i], response); } } catch(e) { $log.error(e); } }); success(); }, function(code, response) { forEach(currentRequests, function(request, i) { try { if (isFunction(request.error)) { request.error(code, response); } else { $error(request, response); } } catch(e) { $log.error(e); } }); noop(); }); } }); }; this.$watch(function(){ bulkXHR.flush(); }); return bulkXHR; }, ['$xhr', '$xhr.error', '$log']); /** * @workInProgress * @ngdoc service * @name angular.service.$xhr.cache * @function * * @requires $xhr.bulk * @requires $defer * @requires $xhr.error * @requires $log * * @description * Acts just like the {@link angular.service.$xhr $xhr} service but caches responses for `GET` * requests. All cache misses are delegated to the $xhr service. * * @property {function()} delegate Function to delegate all the cache misses to. Defaults to * the {@link angular.service.$xhr $xhr} service. * @property {object} data The hashmap where all cached entries are stored. * * @param {string} method HTTP method. * @param {string} url Destination URL. * @param {(string|Object)=} post Request body. * @param {function(number, (string|Object))} success Response success callback. * @param {function(number, (string|Object))=} error Response error callback. * @param {boolean=} [verifyCache=false] If `true` then a result is immediately returned from cache * (if present) while a request is sent to the server for a fresh response that will update the * cached entry. The `success` function will be called when the response is received. * @param {boolean=} [sync=false] in case of cache hit execute `success` synchronously. */ angularServiceInject('$xhr.cache', function($xhr, $defer, $error, $log) { var inflight = {}, self = this; function cache(method, url, post, success, error, verifyCache, sync) { if (isFunction(post)) { if (!isFunction(success)) { verifyCache = success; sync = error; error = null; } else { sync = verifyCache; verifyCache = error; error = success; } success = post; post = null; } else if (!isFunction(error)) { sync = verifyCache; verifyCache = error; error = null; } if (method == 'GET') { var data, dataCached; if ((dataCached = cache.data[url])) { if (sync) { success(200, copy(dataCached.value)); } else { $defer(function() { success(200, copy(dataCached.value)); }); } if (!verifyCache) return; } if ((data = inflight[url])) { data.successes.push(success); data.errors.push(error); } else { inflight[url] = {successes: [success], errors: [error]}; cache.delegate(method, url, post, function(status, response) { if (status == 200) cache.data[url] = {value: response}; var successes = inflight[url].successes; delete inflight[url]; forEach(successes, function(success) { try { (success||noop)(status, copy(response)); } catch(e) { $log.error(e); } }); }, function(status, response) { var errors = inflight[url].errors, successes = inflight[url].successes; delete inflight[url]; forEach(errors, function(error, i) { try { if (isFunction(error)) { error(status, copy(response)); } else { $error( {method: method, url: url, data: post, success: successes[i]}, {status: status, body: response}); } } catch(e) { $log.error(e); } }); }); } } else { cache.data = {}; cache.delegate(method, url, post, success, error); } } cache.data = {}; cache.delegate = $xhr; return cache; }, ['$xhr.bulk', '$defer', '$xhr.error', '$log']); /** * @workInProgress * @ngdoc service * @name angular.service.$xhr.error * @function * @requires $log * * @description * Error handler for {@link angular.service.$xhr $xhr service}. An application can replaces this * service with one specific for the application. The default implementation logs the error to * {@link angular.service.$log $log.error}. * * @param {Object} request Request object. * * The object has the following properties * * - `method` – `{string}` – The http request method. * - `url` – `{string}` – The request destination. * - `data` – `{(string|Object)=} – An optional request body. * - `success` – `{function()}` – The success callback function * * @param {Object} response Response object. * * The response object has the following properties: * * - status – {number} – Http status code. * - body – {string|Object} – Body of the response. * * @example <doc:example> <doc:source> fetch a non-existent file and log an error in the console: <button ng:click="$service('$xhr')('GET', '/DOESNT_EXIST')">fetch</button> </doc:source> </doc:example> */ angularServiceInject('$xhr.error', function($log){ return function(request, response){ $log.error('ERROR: XHR: ' + request.url, request, response); }; }, ['$log']); /** * @workInProgress * @ngdoc service * @name angular.service.$xhr * @function * @requires $browser $xhr delegates all XHR requests to the `$browser.xhr()`. A mock version * of the $browser exists which allows setting expectations on XHR requests * in your tests * @requires $xhr.error $xhr delegates all non `2xx` response code to this service. * @requires $log $xhr delegates all exceptions to `$log.error()`. * * @description * Generates an XHR request. The $xhr service delegates all requests to * {@link angular.service.$browser $browser.xhr()} and adds error handling and security features. * While $xhr service provides nicer api than raw XmlHttpRequest, it is still considered a lower * level api in angular. For a higher level abstraction that utilizes `$xhr`, please check out the * {@link angular.service.$resource $resource} service. * * # Error handling * If no `error callback` is specified, XHR response with response code other then `2xx` will be * delegated to {@link angular.service.$xhr.error $xhr.error}. The `$xhr.error` can intercept the * request and process it in application specific way, or resume normal execution by calling the * request `success` method. * * # HTTP Headers * The $xhr service will automatically add certain http headers to all requests. These defaults can * be fully configured by accessing the `$xhr.defaults.headers` configuration object, which * currently contains this default configuration: * * - `$xhr.defaults.headers.common` (headers that are common for all requests): * - `Accept: application/json, text/plain, *\/*` * - `X-Requested-With: XMLHttpRequest` * - `$xhr.defaults.headers.post` (header defaults for HTTP POST requests): * - `Content-Type: application/x-www-form-urlencoded` * * To add or overwrite these defaults, simple add or remove a property from this configuration * object. To add headers for an HTTP method other than POST, simple create a new object with name * equal to the lowercased http method name, e.g. `$xhr.defaults.headers.get['My-Header']='value'`. * * * # Security Considerations * When designing web applications your design needs to consider security threats from * {@link http://haacked.com/archive/2008/11/20/anatomy-of-a-subtle-json-vulnerability.aspx * JSON Vulnerability} and {@link http://en.wikipedia.org/wiki/Cross-site_request_forgery XSRF}. * Both server and the client must cooperate in order to eliminate these threats. Angular comes * pre-configured with strategies that address these issues, but for this to work backend server * cooperation is required. * * ## JSON Vulnerability Protection * A {@link http://haacked.com/archive/2008/11/20/anatomy-of-a-subtle-json-vulnerability.aspx * JSON Vulnerability} allows third party web-site to turn your JSON resource URL into * {@link http://en.wikipedia.org/wiki/JSON#JSONP JSONP} request under some conditions. To * counter this your server can prefix all JSON requests with following string `")]}',\n"`. * Angular will automatically strip the prefix before processing it as JSON. * * For example if your server needs to return: * <pre> * ['one','two'] * </pre> * * which is vulnerable to attack, your server can return: * <pre> * )]}', * ['one','two'] * </pre> * * angular will strip the prefix, before processing the JSON. * * * ## Cross Site Request Forgery (XSRF) Protection * {@link http://en.wikipedia.org/wiki/Cross-site_request_forgery XSRF} is a technique by which an * unauthorized site can gain your user's private data. Angular provides following mechanism to * counter XSRF. When performing XHR requests, the $xhr service reads a token from a cookie * called `XSRF-TOKEN` and sets it as the HTTP header `X-XSRF-TOKEN`. Since only JavaScript that * runs on your domain could read the cookie, your server can be assured that the XHR came from * JavaScript running on your domain. * * To take advantage of this, your server needs to set a token in a JavaScript readable session * cookie called `XSRF-TOKEN` on first HTTP GET request. On subsequent non-GET requests the server * can verify that the cookie matches `X-XSRF-TOKEN` HTTP header, and therefore be sure that only * JavaScript running on your domain could have read the token. The token must be unique for each * user and must be verifiable by the server (to prevent the JavaScript making up its own tokens). * We recommend that the token is a digest of your site's authentication cookie with * {@link http://en.wikipedia.org/wiki/Rainbow_table salt for added security}. * * @param {string} method HTTP method to use. Valid values are: `GET`, `POST`, `PUT`, `DELETE`, and * `JSON`. `JSON` is a special case which causes a * [JSONP](http://en.wikipedia.org/wiki/JSON#JSONP) cross domain request using script tag * insertion. * @param {string} url Relative or absolute URL specifying the destination of the request. For * `JSON` requests, `url` should include `JSON_CALLBACK` string to be replaced with a name of an * angular generated callback function. * @param {(string|Object)=} post Request content as either a string or an object to be stringified * as JSON before sent to the server. * @param {function(number, (string|Object))} success A function to be called when the response is * received. The success function will be called with: * * - {number} code [HTTP status code](http://en.wikipedia.org/wiki/List_of_HTTP_status_codes) of * the response. This will currently always be 200, since all non-200 responses are routed to * {@link angular.service.$xhr.error} service (or custom error callback). * - {string|Object} response Response object as string or an Object if the response was in JSON * format. * @param {function(number, (string|Object))} error A function to be called if the response code is * not 2xx.. Accepts the same arguments as success, above. * * @example <doc:example> <doc:source jsfiddle="false"> <script> function FetchCntl($xhr) { var self = this; this.fetch = function() { self.code = null; self.response = null; $xhr(self.method, self.url, function(code, response) { self.code = code; self.response = response; }, function(code, response) { self.code = code; self.response = response || "Request failed"; }); }; this.updateModel = function(method, url) { self.method = method; self.url = url; }; } FetchCntl.$inject = ['$xhr']; </script> <div ng:controller="FetchCntl"> <select name="method"> <option>GET</option> <option>JSON</option> </select> <input type="text" name="url" value="index.html" size="80"/> <button ng:click="fetch()">fetch</button><br> <button ng:click="updateModel('GET', 'index.html')">Sample GET</button> <button ng:click="updateModel('JSON', 'http://angularjs.org/greet.php?callback=JSON_CALLBACK&name=Super%20Hero')">Sample JSONP</button> <button ng:click="updateModel('JSON', 'http://angularjs.org/doesntexist&callback=JSON_CALLBACK')">Invalid JSONP</button> <pre>code={{code}}</pre> <pre>response={{response}}</pre> </div> </doc:source> <doc:scenario> it('should make xhr GET request', function() { element(':button:contains("Sample GET")').click(); element(':button:contains("fetch")').click(); expect(binding('code')).toBe('code=200'); expect(binding('response')).toMatch(/angularjs.org/); }); it('should make JSONP request to the angularjs.org', function() { element(':button:contains("Sample JSONP")').click(); element(':button:contains("fetch")').click(); expect(binding('code')).toBe('code=200'); expect(binding('response')).toMatch(/Super Hero!/); }); it('should make JSONP request to invalid URL and invoke the error handler', function() { element(':button:contains("Invalid JSONP")').click(); element(':button:contains("fetch")').click(); expect(binding('code')).toBe('code='); expect(binding('response')).toBe('response=Request failed'); }); </doc:scenario> </doc:example> */ angularServiceInject('$xhr', function($browser, $error, $log){ var rootScope = this; var xhrHeaderDefaults = { common: { "Accept": "application/json, text/plain, */*", "X-Requested-With": "XMLHttpRequest" }, post: {'Content-Type': 'application/x-www-form-urlencoded'}, get: {}, // all these empty properties are needed so that client apps can just do: head: {}, // $xhr.defaults.headers.head.foo="bar" without having to create head object put: {}, // it also means that if we add a header for these methods in the future, it 'delete': {}, // won't be easily silently lost due to an object assignment. patch: {} }; function xhr(method, url, post, success, error) { if (isFunction(post)) { error = success; success = post; post = null; } if (post && isObject(post)) { post = toJson(post); } $browser.xhr(method, url, post, function(code, response){ try { if (isString(response)) { if (response.match(/^\)\]\}',\n/)) response=response.substr(6); if (/^\s*[\[\{]/.exec(response) && /[\}\]]\s*$/.exec(response)) { response = fromJson(response, true); } } rootScope.$apply(function(){ if (200 <= code && code < 300) { success(code, response); } else if (isFunction(error)) { error(code, response); } else { $error( {method: method, url: url, data: post, success: success}, {status: code, body: response}); } }); } catch (e) { $log.error(e); } }, extend({'X-XSRF-TOKEN': $browser.cookies()['XSRF-TOKEN']}, xhrHeaderDefaults.common, xhrHeaderDefaults[lowercase(method)])); } xhr.defaults = {headers: xhrHeaderDefaults}; return xhr; }, ['$browser', '$xhr.error', '$log']); /** * @ngdoc service * @name angular.service.$locale * * @description * $locale service provides localization rules for various Angular components. As of right now the * only public api is: * * * `id` – `{string}` – locale id formatted as `languageId-countryId` (e.g. `en-us`) */ angularServiceInject('$locale', function() { return { id: 'en-us', NUMBER_FORMATS: { DECIMAL_SEP: '.', GROUP_SEP: ',', PATTERNS: [ { // Decimal Pattern minInt: 1, minFrac: 0, maxFrac: 3, posPre: '', posSuf: '', negPre: '-', negSuf: '', gSize: 3, lgSize: 3 },{ //Currency Pattern minInt: 1, minFrac: 2, maxFrac: 2, posPre: '\u00A4', posSuf: '', negPre: '(\u00A4', negSuf: ')', gSize: 3, lgSize: 3 } ], CURRENCY_SYM: '$' }, DATETIME_FORMATS: { MONTH: 'January,February,March,April,May,June,July,August,September,October,November,December' .split(','), SHORTMONTH: 'Jan,Feb,Mar,Apr,May,Jun,Jul,Aug,Sep,Oct,Nov,Dec'.split(','), DAY: 'Sunday,Monday,Tuesday,Wednesday,Thursday,Friday,Saturday'.split(','), SHORTDAY: 'Sun,Mon,Tue,Wed,Thu,Fri,Sat'.split(','), AMPMS: ['AM','PM'], medium: 'MMM d, y h:mm:ss a', short: 'M/d/yy h:mm a', fullDate: 'EEEE, MMMM d, y', longDate: 'MMMM d, y', mediumDate: 'MMM d, y', shortDate: 'M/d/yy', mediumTime: 'h:mm:ss a', shortTime: 'h:mm a' }, pluralCat: function(num) { if (num === 1) { return 'one'; } return 'other'; } }; }); /** * @ngdoc overview * @name angular.directive * @description * * Angular directives create custom attributes for DOM elements. A directive can modify the * behavior of the element in which it is specified. Do not use directives to add elements to the * DOM; instead, use {@link angular.widget widgets} to add DOM elements. * * Following is the list of built-in Angular directives: * * * {@link angular.directive.ng:autobind ng:autobind} - An Angular bootstrap parameter that can * act as a directive. * * {@link angular.directive.ng:bind ng:bind} - Creates a data-binding between an HTML text value * and a data model. * * {@link angular.directive.ng:bind-attr ng:bind-attr} - Creates a data-binding in a way similar * to `ng:bind`, but uses JSON key / value pairs to do so. * * {@link angular.directive.ng:bind-template ng:bind-template} - Replaces the text value of an * element with a specified template. * * {@link angular.directive.ng:change ng:change} - Executes an expression when the value of an * input widget changes. * * {@link angular.directive.ng:class ng:class} - Conditionally set a CSS class on an element. * * {@link angular.directive.ng:class-even ng:class-even} - Like `ng:class`, but works in * conjunction with {@link angular.widget.@ng:repeat} to affect even rows in a collection. * * {@link angular.directive.ng:class-odd ng:class-odd} - Like `ng:class`, but works with {@link * angular.widget.@ng:repeat} to affect odd rows. * * {@link angular.directive.ng:click ng:click} - Executes custom behavior when an element is * clicked. * * {@link angular.directive.ng:controller ng:controller} - Creates a scope object linked to the * DOM element and assigns behavior to the scope. * * {@link angular.directive.ng:hide ng:hide} - Conditionally hides a portion of HTML. * * {@link angular.directive.ng:href ng:href} - Places an href in the Angular namespace. * * {@link angular.directive.ng:init} - Initialization tasks run before a template is executed. * * {@link angular.directive.ng:show ng:show} - Conditionally displays a portion of HTML. * * {@link angular.directive.ng:src ng:src} - Places a `src` attribute into the Angular namespace. * * {@link angular.directive.ng:style ng:style} - Conditionally set CSS styles on an element. * * {@link angular.directive.ng:submit} - Binds Angular expressions to `onSubmit` events. * * For more information about how Angular directives work, and to learn how to create your own * directives, see {@link guide/dev_guide.compiler.directives Understanding Angular Directives} in * the Angular Developer Guide. */ /** * @workInProgress * @ngdoc directive * @name angular.directive.ng:init * * @description * The `ng:init` attribute specifies initialization tasks to be executed * before the template enters execution mode during bootstrap. * * @element ANY * @param {expression} expression {@link guide/dev_guide.expressions Expression} to eval. * * @example <doc:example> <doc:source> <div ng:init="greeting='Hello'; person='World'"> {{greeting}} {{person}}! </div> </doc:source> <doc:scenario> it('should check greeting', function(){ expect(binding('greeting')).toBe('Hello'); expect(binding('person')).toBe('World'); }); </doc:scenario> </doc:example> */ angularDirective("ng:init", function(expression){ return function(element){ this.$eval(expression); }; }); /** * @workInProgress * @ngdoc directive * @name angular.directive.ng:controller * * @description * The `ng:controller` directive assigns behavior to a scope. This is a key aspect of how angular * supports the principles behind the Model-View-Controller design pattern. * * MVC components in angular: * * * Model — The Model is data in scope properties; scopes are attached to the DOM. * * View — The template (HTML with data bindings) is rendered into the View. * * Controller — The `ng:controller` directive specifies a Controller class; the class has * methods that typically express the business logic behind the application. * * Note that an alternative way to define controllers is via the `{@link angular.service.$route}` * service. * * @element ANY * @param {expression} expression Name of a globally accessible constructor function or an * {@link guide/dev_guide.expressions expression} that on the current scope evaluates to a * constructor function. * * @example * Here is a simple form for editing user contact information. Adding, removing, clearing, and * greeting are methods declared on the controller (see source tab). These methods can * easily be called from the angular markup. Notice that the scope becomes the `this` for the * controller's instance. This allows for easy access to the view data from the controller. Also * notice that any changes to the data are automatically reflected in the View without the need * for a manual update. <doc:example> <doc:source> <script type="text/javascript"> function SettingsController() { this.name = "John Smith"; this.contacts = [ {type:'phone', value:'408 555 1212'}, {type:'email', value:'john.smith@example.org'} ]; } SettingsController.prototype = { greet: function(){ alert(this.name); }, addContact: function(){ this.contacts.push({type:'email', value:'yourname@example.org'}); }, removeContact: function(contactToRemove) { angular.Array.remove(this.contacts, contactToRemove); }, clearContact: function(contact) { contact.type = 'phone'; contact.value = ''; } }; </script> <div ng:controller="SettingsController"> Name: <input type="text" name="name"/> [ <a href="" ng:click="greet()">greet</a> ]<br/> Contact: <ul> <li ng:repeat="contact in contacts"> <select name="contact.type"> <option>phone</option> <option>email</option> </select> <input type="text" name="contact.value"/> [ <a href="" ng:click="clearContact(contact)">clear</a> | <a href="" ng:click="removeContact(contact)">X</a> ] </li> <li>[ <a href="" ng:click="addContact()">add</a> ]</li> </ul> </div> </doc:source> <doc:scenario> it('should check controller', function(){ expect(element('.doc-example-live div>:input').val()).toBe('John Smith'); expect(element('.doc-example-live li[ng\\:repeat-index="0"] input').val()) .toBe('408 555 1212'); expect(element('.doc-example-live li[ng\\:repeat-index="1"] input').val()) .toBe('john.smith@example.org'); element('.doc-example-live li:first a:contains("clear")').click(); expect(element('.doc-example-live li:first input').val()).toBe(''); element('.doc-example-live li:last a:contains("add")').click(); expect(element('.doc-example-live li[ng\\:repeat-index="2"] input').val()) .toBe('yourname@example.org'); }); </doc:scenario> </doc:example> */ angularDirective("ng:controller", function(expression){ this.scope(function(scope){ var Controller = getter(scope, expression, true) || getter(window, expression, true); assertArgFn(Controller, expression); return Controller; }); return noop; }); /** * @ngdoc directive * @name angular.directive.ng:bind * * @description * The `ng:bind` attribute tells Angular to replace the text content of the specified HTML element * with the value of a given expression, and to update the text content when the value of that * expression changes. * * Typically, you don't use `ng:bind` directly, but instead you use the double curly markup like * `{{ expression }}` and let the Angular compiler transform it to * `<span ng:bind="expression"></span>` when the template is compiled. * * @element ANY * @param {expression} expression {@link guide/dev_guide.expressions Expression} to evaluate. * * @example * Enter a name in the Live Preview text box; the greeting below the text box changes instantly. <doc:example> <doc:source> Enter name: <input type="text" name="name" value="Whirled"> <br> Hello <span ng:bind="name"></span>! </doc:source> <doc:scenario> it('should check ng:bind', function(){ expect(using('.doc-example-live').binding('name')).toBe('Whirled'); using('.doc-example-live').input('name').enter('world'); expect(using('.doc-example-live').binding('name')).toBe('world'); }); </doc:scenario> </doc:example> */ angularDirective("ng:bind", function(expression, element){ element.addClass('ng-binding'); var exprFn = parser(expression).statements(); return function(element) { var lastValue = noop, lastError = noop; this.$watch(function(scope) { // TODO(misko): remove error handling https://github.com/angular/angular.js/issues/347 var error, value, html, isHtml, isDomElement, hadOwnElement = scope.hasOwnProperty('$element'), oldElement = scope.$element; // TODO(misko): get rid of $element https://github.com/angular/angular.js/issues/348 scope.$element = element; try { value = exprFn(scope); } catch (e) { scope.$service('$exceptionHandler')(e); error = formatError(e); } finally { if (hadOwnElement) { scope.$element = oldElement; } else { delete scope.$element; } } // If we are HTML, then save the raw HTML data so that we don't // recompute sanitization since that is expensive. // TODO: turn this into a more generic way to compute this if ((isHtml = (value instanceof HTML))) value = (html = value).html; if (lastValue === value && lastError == error) return; isDomElement = isElement(value); if (!isHtml && !isDomElement && isObject(value)) { value = toJson(value, true); } if (value != lastValue || error != lastError) { lastValue = value; lastError = error; elementError(element, NG_EXCEPTION, error); if (error) value = error; if (isHtml) { element.html(html.get()); } else if (isDomElement) { element.html(''); element.append(value); } else { element.text(value == undefined ? '' : value); } } }); }; }); var bindTemplateCache = {}; function compileBindTemplate(template){ var fn = bindTemplateCache[template]; if (!fn) { var bindings = []; forEach(parseBindings(template), function(text){ var exp = binding(text); bindings.push(exp ? function(scope, element) { var error, value; try { value = scope.$eval(exp); } catch(e) { scope.$service('$exceptionHandler')(e); error = toJson(e); } elementError(element, NG_EXCEPTION, error); return error ? error : value; } : function() { return text; }); }); bindTemplateCache[template] = fn = function(scope, element, prettyPrintJson) { var parts = [], hadOwnElement = scope.hasOwnProperty('$element'), oldElement = scope.$element; // TODO(misko): get rid of $element scope.$element = element; try { for (var i = 0; i < bindings.length; i++) { var value = bindings[i](scope, element); if (isElement(value)) value = ''; else if (isObject(value)) value = toJson(value, prettyPrintJson); parts.push(value); } return parts.join(''); } finally { if (hadOwnElement) { scope.$element = oldElement; } else { delete scope.$element; } } }; } return fn; } /** * @workInProgress * @ngdoc directive * @name angular.directive.ng:bind-template * * @description * The `ng:bind-template` attribute specifies that the element * text should be replaced with the template in ng:bind-template. * Unlike ng:bind the ng:bind-template can contain multiple `{{` `}}` * expressions. (This is required since some HTML elements * can not have SPAN elements such as TITLE, or OPTION to name a few.) * * @element ANY * @param {string} template of form * <tt>{{</tt> <tt>expression</tt> <tt>}}</tt> to eval. * * @example * Try it here: enter text in text box and watch the greeting change. <doc:example> <doc:source> Salutation: <input type="text" name="salutation" value="Hello"><br/> Name: <input type="text" name="name" value="World"><br/> <pre ng:bind-template="{{salutation}} {{name}}!"></pre> </doc:source> <doc:scenario> it('should check ng:bind', function(){ expect(using('.doc-example-live').binding('{{salutation}} {{name}}')). toBe('Hello World!'); using('.doc-example-live').input('salutation').enter('Greetings'); using('.doc-example-live').input('name').enter('user'); expect(using('.doc-example-live').binding('{{salutation}} {{name}}')). toBe('Greetings user!'); }); </doc:scenario> </doc:example> */ angularDirective("ng:bind-template", function(expression, element){ element.addClass('ng-binding'); var templateFn = compileBindTemplate(expression); return function(element) { var lastValue; this.$watch(function(scope) { var value = templateFn(scope, element, true); if (value != lastValue) { element.text(value); lastValue = value; } }); }; }); var REMOVE_ATTRIBUTES = { 'disabled':'disabled', 'readonly':'readOnly', 'checked':'checked', 'selected':'selected', 'multiple':'multiple' }; /** * @ngdoc directive * @name angular.directive.ng:bind-attr * * @description * The `ng:bind-attr` attribute specifies that a * {@link guide/dev_guide.templates.databinding databinding} should be created between a particular * element attribute and a given expression. Unlike `ng:bind`, the `ng:bind-attr` contains one or * more JSON key value pairs; each pair specifies an attribute and the * {@link guide/dev_guide.expressions expression} to which it will be mapped. * * Instead of writing `ng:bind-attr` statements in your HTML, you can use double-curly markup to * specify an <tt ng:non-bindable>{{expression}}</tt> for the value of an attribute. * At compile time, the attribute is translated into an `<span ng:bind-attr="{attr:expression}"/>` * * The following HTML snippet shows how to specify `ng:bind-attr`: * <pre> * <a href="http://www.google.com/search?q={{query}}">Google</a> * </pre> * * During compilation, the snippet gets translated to the following: * <pre> * <a ng:bind-attr='{"href":"http://www.google.com/search?q={{query}}"}'>Google</a> * </pre> * * @element ANY * @param {string} attribute_json one or more JSON key-value pairs representing * the attributes to replace with expressions. Each key matches an attribute * which needs to be replaced. Each value is a text template of * the attribute with the embedded * <tt ng:non-bindable>{{expression}}</tt>s. Any number of * key-value pairs can be specified. * * @example * Enter a search string in the Live Preview text box and then click "Google". The search executes instantly. <doc:example> <doc:source> Google for: <input type="text" name="query" value="AngularJS"/> <a href="http://www.google.com/search?q={{query}}">Google</a> </doc:source> <doc:scenario> it('should check ng:bind-attr', function(){ expect(using('.doc-example-live').element('a').attr('href')). toBe('http://www.google.com/search?q=AngularJS'); using('.doc-example-live').input('query').enter('google'); expect(using('.doc-example-live').element('a').attr('href')). toBe('http://www.google.com/search?q=google'); }); </doc:scenario> </doc:example> */ angularDirective("ng:bind-attr", function(expression){ return function(element){ var lastValue = {}; this.$watch(function(scope){ var values = scope.$eval(expression); for(var key in values) { var value = compileBindTemplate(values[key])(scope, element), specialName = REMOVE_ATTRIBUTES[lowercase(key)]; if (lastValue[key] !== value) { lastValue[key] = value; if (specialName) { if (toBoolean(value)) { element.attr(specialName, specialName); element.attr('ng-' + specialName, value); } else { element.removeAttr(specialName); element.removeAttr('ng-' + specialName); } (element.data($$validate)||noop)(); } else { element.attr(key, value); } } } }); }; }); /** * @workInProgress * @ngdoc directive * @name angular.directive.ng:click * * @description * The ng:click allows you to specify custom behavior when * element is clicked. * * @element ANY * @param {expression} expression {@link guide/dev_guide.expressions Expression} to evaluate upon * click. * * @example <doc:example> <doc:source> <button ng:click="count = count + 1" ng:init="count=0"> Increment </button> count: {{count}} </doc:source> <doc:scenario> it('should check ng:click', function(){ expect(binding('count')).toBe('0'); element('.doc-example-live :button').click(); expect(binding('count')).toBe('1'); }); </doc:scenario> </doc:example> */ /* * A directive that allows creation of custom onclick handlers that are defined as angular * expressions and are compiled and executed within the current scope. * * Events that are handled via these handler are always configured not to propagate further. * * TODO: maybe we should consider allowing users to control event propagation in the future. */ angularDirective("ng:click", function(expression, element){ return function(element){ var self = this; element.bind('click', function(event){ self.$apply(expression); event.stopPropagation(); }); }; }); /** * @workInProgress * @ngdoc directive * @name angular.directive.ng:submit * * @description * Enables binding angular expressions to onsubmit events. * * Additionally it prevents the default action (which for form means sending the request to the * server and reloading the current page). * * @element form * @param {expression} expression {@link guide/dev_guide.expressions Expression} to eval. * * @example <doc:example> <doc:source> <form ng:submit="list.push(text);text='';" ng:init="list=[]"> Enter text and hit enter: <input type="text" name="text" value="hello"/> <input type="submit" id="submit" value="Submit" /> </form> <pre>list={{list}}</pre> </doc:source> <doc:scenario> it('should check ng:submit', function(){ expect(binding('list')).toBe('list=[]'); element('.doc-example-live #submit').click(); expect(binding('list')).toBe('list=["hello"]'); }); </doc:scenario> </doc:example> */ angularDirective("ng:submit", function(expression, element) { return function(element) { var self = this; element.bind('submit', function(event) { self.$apply(expression); event.preventDefault(); }); }; }); function ngClass(selector) { return function(expression, element) { return function(element) { this.$watch(expression, function(scope, newVal, oldVal) { if (selector(scope.$index)) { element.removeClass(isArray(oldVal) ? oldVal.join(' ') : oldVal) element.addClass(isArray(newVal) ? newVal.join(' ') : newVal); } }); }; }; } /** * @workInProgress * @ngdoc directive * @name angular.directive.ng:class * * @description * The `ng:class` allows you to set CSS class on HTML element dynamically by databinding an * expression that represents all classes to be added. * * The directive won't add duplicate classes if a particular class was already set. * * When the expression changes, the previously added classes are removed and only then the classes * new classes are added. * * @element ANY * @param {expression} expression {@link guide/dev_guide.expressions Expression} to eval. The result * of the evaluation can be a string representing space delimited class names or an array. * * @example <doc:example> <doc:source> <input type="button" value="set" ng:click="myVar='ng-input-indicator-wait'"> <input type="button" value="clear" ng:click="myVar=''"> <br> <span ng:class="myVar">Sample Text &nbsp;&nbsp;&nbsp;&nbsp;</span> </doc:source> <doc:scenario> it('should check ng:class', function(){ expect(element('.doc-example-live span').prop('className')).not(). toMatch(/ng-input-indicator-wait/); using('.doc-example-live').element(':button:first').click(); expect(element('.doc-example-live span').prop('className')). toMatch(/ng-input-indicator-wait/); using('.doc-example-live').element(':button:last').click(); expect(element('.doc-example-live span').prop('className')).not(). toMatch(/ng-input-indicator-wait/); }); </doc:scenario> </doc:example> */ angularDirective("ng:class", ngClass(function(){return true;})); /** * @workInProgress * @ngdoc directive * @name angular.directive.ng:class-odd * * @description * The `ng:class-odd` and `ng:class-even` works exactly as * {@link angular.directive.ng:class ng:class}, except it works in conjunction with `ng:repeat` and * takes affect only on odd (even) rows. * * This directive can be applied only within a scope of an * {@link angular.widget.@ng:repeat ng:repeat}. * * @element ANY * @param {expression} expression {@link guide/dev_guide.expressions Expression} to eval. The result * of the evaluation can be a string representing space delimited class names or an array. * * @example <doc:example> <doc:source> <ol ng:init="names=['John', 'Mary', 'Cate', 'Suz']"> <li ng:repeat="name in names"> <span ng:class-odd="'ng-format-negative'" ng:class-even="'ng-input-indicator-wait'"> {{name}} &nbsp; &nbsp; &nbsp; </span> </li> </ol> </doc:source> <doc:scenario> it('should check ng:class-odd and ng:class-even', function(){ expect(element('.doc-example-live li:first span').prop('className')). toMatch(/ng-format-negative/); expect(element('.doc-example-live li:last span').prop('className')). toMatch(/ng-input-indicator-wait/); }); </doc:scenario> </doc:example> */ angularDirective("ng:class-odd", ngClass(function(i){return i % 2 === 0;})); /** * @workInProgress * @ngdoc directive * @name angular.directive.ng:class-even * * @description * The `ng:class-odd` and `ng:class-even` works exactly as * {@link angular.directive.ng:class ng:class}, except it works in conjunction with `ng:repeat` and * takes affect only on odd (even) rows. * * This directive can be applied only within a scope of an * {@link angular.widget.@ng:repeat ng:repeat}. * * @element ANY * @param {expression} expression {@link guide/dev_guide.expressions Expression} to eval. The result * of the evaluation can be a string representing space delimited class names or an array. * * @example <doc:example> <doc:source> <ol ng:init="names=['John', 'Mary', 'Cate', 'Suz']"> <li ng:repeat="name in names"> <span ng:class-odd="'ng-format-negative'" ng:class-even="'ng-input-indicator-wait'"> {{name}} &nbsp; &nbsp; &nbsp; </span> </li> </ol> </doc:source> <doc:scenario> it('should check ng:class-odd and ng:class-even', function(){ expect(element('.doc-example-live li:first span').prop('className')). toMatch(/ng-format-negative/); expect(element('.doc-example-live li:last span').prop('className')). toMatch(/ng-input-indicator-wait/); }); </doc:scenario> </doc:example> */ angularDirective("ng:class-even", ngClass(function(i){return i % 2 === 1;})); /** * @workInProgress * @ngdoc directive * @name angular.directive.ng:show * * @description * The `ng:show` and `ng:hide` directives show or hide a portion of the DOM tree (HTML) * conditionally. * * @element ANY * @param {expression} expression If the {@link guide/dev_guide.expressions expression} is truthy * then the element is shown or hidden respectively. * * @example <doc:example> <doc:source> Click me: <input type="checkbox" name="checked"><br/> Show: <span ng:show="checked">I show up when your checkbox is checked.</span> <br/> Hide: <span ng:hide="checked">I hide when your checkbox is checked.</span> </doc:source> <doc:scenario> it('should check ng:show / ng:hide', function(){ expect(element('.doc-example-live span:first:hidden').count()).toEqual(1); expect(element('.doc-example-live span:last:visible').count()).toEqual(1); input('checked').check(); expect(element('.doc-example-live span:first:visible').count()).toEqual(1); expect(element('.doc-example-live span:last:hidden').count()).toEqual(1); }); </doc:scenario> </doc:example> */ angularDirective("ng:show", function(expression, element){ return function(element){ this.$watch(expression, function(scope, value){ element.css('display', toBoolean(value) ? '' : 'none'); }); }; }); /** * @workInProgress * @ngdoc directive * @name angular.directive.ng:hide * * @description * The `ng:hide` and `ng:show` directives hide or show a portion * of the HTML conditionally. * * @element ANY * @param {expression} expression If the {@link guide/dev_guide.expressions expression} truthy then * the element is shown or hidden respectively. * * @example <doc:example> <doc:source> Click me: <input type="checkbox" name="checked"><br/> Show: <span ng:show="checked">I show up when you checkbox is checked?</span> <br/> Hide: <span ng:hide="checked">I hide when you checkbox is checked?</span> </doc:source> <doc:scenario> it('should check ng:show / ng:hide', function(){ expect(element('.doc-example-live span:first:hidden').count()).toEqual(1); expect(element('.doc-example-live span:last:visible').count()).toEqual(1); input('checked').check(); expect(element('.doc-example-live span:first:visible').count()).toEqual(1); expect(element('.doc-example-live span:last:hidden').count()).toEqual(1); }); </doc:scenario> </doc:example> */ angularDirective("ng:hide", function(expression, element){ return function(element){ this.$watch(expression, function(scope, value){ element.css('display', toBoolean(value) ? 'none' : ''); }); }; }); /** * @workInProgress * @ngdoc directive * @name angular.directive.ng:style * * @description * The ng:style allows you to set CSS style on an HTML element conditionally. * * @element ANY * @param {expression} expression {@link guide/dev_guide.expressions Expression} which evals to an * object whose keys are CSS style names and values are corresponding values for those CSS * keys. * * @example <doc:example> <doc:source> <input type="button" value="set" ng:click="myStyle={color:'red'}"> <input type="button" value="clear" ng:click="myStyle={}"> <br/> <span ng:style="myStyle">Sample Text</span> <pre>myStyle={{myStyle}}</pre> </doc:source> <doc:scenario> it('should check ng:style', function(){ expect(element('.doc-example-live span').css('color')).toBe('rgb(0, 0, 0)'); element('.doc-example-live :button[value=set]').click(); expect(element('.doc-example-live span').css('color')).toBe('rgb(255, 0, 0)'); element('.doc-example-live :button[value=clear]').click(); expect(element('.doc-example-live span').css('color')).toBe('rgb(0, 0, 0)'); }); </doc:scenario> </doc:example> */ angularDirective("ng:style", function(expression, element){ // TODO(i): this is inefficient (runs on every $digest) and obtrusive (overrides 3rd part css) // we should change it in a similar way as I changed ng:class return function(element){ var resetStyle = getStyle(element); this.$watch(function(scope){ var style = scope.$eval(expression) || {}, key, mergedStyle = {}; for(key in style) { if (resetStyle[key] === undefined) resetStyle[key] = ''; mergedStyle[key] = style[key]; } for(key in resetStyle) { mergedStyle[key] = mergedStyle[key] || resetStyle[key]; } element.css(mergedStyle); }); }; }); /** * @ngdoc directive * @name angular.directive.ng:cloak * * @description * The `ng:cloak` directive is used to prevent the Angular html template from being briefly * displayed by the browser in its raw (uncompiled) form while your application is loading. Use this * directive to avoid the undesirable flicker effect caused by the html template display. * * The directive can be applied to the `<body>` element, but typically a fine-grained application is * prefered in order to benefit from progressive rendering of the browser view. * * `ng:cloak` works in cooperation with a css rule that is embedded within `angular.js` and * `angular.min.js` files. Following is the css rule: * * <pre> * [ng\:cloak], .ng-cloak { * display: none; * } * </pre> * * When this css rule is loaded by the browser, all html elements (including their children) that * are tagged with the `ng:cloak` directive are hidden. When Angular comes across this directive * during the compilation of the template it deletes the `ng:cloak` element attribute, which * makes the compiled element visible. * * For the best result, `angular.js` script must be loaded in the head section of the html file; * alternatively, the css rule (above) must be included in the external stylesheet of the * application. * * Legacy browsers, like IE7, do not provide attribute selector support (added in CSS 2.1) so they * cannot match the `[ng\:cloak]` selector. To work around this limitation, you must add the css * class `ng-cloak` in addition to `ng:cloak` directive as shown in the example below. * * @element ANY * * @example <doc:example> <doc:source> <div id="template1" ng:cloak>{{ 'hello' }}</div> <div id="template2" ng:cloak class="ng-cloak">{{ 'hello IE7' }}</div> </doc:source> <doc:scenario> it('should remove the template directive and css class', function() { expect(element('.doc-example-live #template1').attr('ng:cloak')). not().toBeDefined(); expect(element('.doc-example-live #template2').attr('ng:cloak')). not().toBeDefined(); }); </doc:scenario> </doc:example> * */ angularDirective("ng:cloak", function(expression, element) { element.removeAttr('ng:cloak'); element.removeClass('ng-cloak'); }); /** * @ngdoc overview * @name angular.markup * @description * * Angular markup transforms the content of DOM elements or portions of the content into other * text or DOM elements for further compilation. * * Markup extensions do not themselves produce linking functions. Think of markup as a way to * produce shorthand for a {@link angular.widget widget} or a {@link angular.directive directive}. * * The most prominent example of a markup in Angular is the built-in, double curly markup * `{{expression}}`, which is shorthand for `<span ng:bind="expression"></span>`. * * Create custom markup like this: * * <pre> * angular.markup('newMarkup', function(text, textNode, parentElement){ * //tranformation code * }); * </pre> * * For more information, see {@link guide/dev_guide.compiler.markup Understanding Angular Markup} * in the Angular Developer Guide. */ /** * @ngdoc overview * @name angular.attrMarkup * @description * * Attribute markup allows you to modify the state of an attribute's text. * * Attribute markup extends the Angular complier in a way similar to {@link angular.markup}, * which allows you to modify the content of a node. * * The most prominent example of an attribute markup in Angular is the built-in double curly markup * which is a shorthand for {@link angular.directive.ng:bind-attr ng:bind-attr}. * * ## Example * * <pre> * angular.attrMarkup('newAttrMarkup', function(attrValue, attrName, element){ * //tranformation code * }); * </pre> * * For more information about Angular attribute markup, see {@link guide/dev_guide.compiler.markup * Understanding Angular Markup} in the Angular Developer Guide. */ function parseBindings(string) { var results = []; var lastIndex = 0; var index; while((index = string.indexOf('{{', lastIndex)) > -1) { if (lastIndex < index) results.push(string.substr(lastIndex, index - lastIndex)); lastIndex = index; index = string.indexOf('}}', index); index = index < 0 ? string.length : index + 2; results.push(string.substr(lastIndex, index - lastIndex)); lastIndex = index; } if (lastIndex != string.length) results.push(string.substr(lastIndex, string.length - lastIndex)); return results.length === 0 ? [ string ] : results; } function binding(string) { var binding = string.replace(/\n/gm, ' ').match(/^\{\{(.*)\}\}$/); return binding ? binding[1] : null; } function hasBindings(bindings) { return bindings.length > 1 || binding(bindings[0]) !== null; } angularTextMarkup('{{}}', function(text, textNode, parentElement) { var bindings = parseBindings(text), self = this; if (hasBindings(bindings)) { if (isLeafNode(parentElement[0])) { parentElement.attr('ng:bind-template', text); } else { var cursor = textNode, newElement; forEach(parseBindings(text), function(text){ var exp = binding(text); if (exp) { newElement = jqLite('<span>'); newElement.attr('ng:bind', exp); } else { newElement = jqLite(document.createTextNode(text)); } if (msie && text.charAt(0) == ' ') { newElement = jqLite('<span>&nbsp;</span>'); var nbsp = newElement.html(); newElement.text(text.substr(1)); newElement.html(nbsp + newElement.html()); } cursor.after(newElement); cursor = newElement; }); textNode.remove(); } } }); /** * This tries to normalize the behavior of value attribute across browsers. If value attribute is * not specified, then specify it to be that of the text. */ angularTextMarkup('option', function(text, textNode, parentElement){ if (lowercase(nodeName_(parentElement)) == 'option') { if (msie <= 7) { // In IE7 The issue is that there is no way to see if the value was specified hence // we have to resort to parsing HTML; htmlParser(parentElement[0].outerHTML, { start: function(tag, attrs) { if (isUndefined(attrs.value)) { parentElement.attr('value', text); } } }); } else if (parentElement[0].getAttribute('value') == null) { // jQuery does normalization on 'value' so we have to bypass it. parentElement.attr('value', text); } } }); /** * @workInProgress * @ngdoc directive * @name angular.directive.ng:href * * @description * Using <angular/> markup like {{hash}} in an href attribute makes * the page open to a wrong URL, if the user clicks that link before * angular has a chance to replace the {{hash}} with actual URL, the * link will be broken and will most likely return a 404 error. * The `ng:href` solves this problem by placing the `href` in the * `ng:` namespace. * * The buggy way to write it: * <pre> * <a href="http://www.gravatar.com/avatar/{{hash}}"/> * </pre> * * The correct way to write it: * <pre> * <a ng:href="http://www.gravatar.com/avatar/{{hash}}"/> * </pre> * * @element ANY * @param {template} template any string which can contain `{{}}` markup. * * @example * This example uses `link` variable inside `href` attribute: <doc:example> <doc:source> <input name="value" /><br /> <a id="link-1" href ng:click="value = 1">link 1</a> (link, don't reload)<br /> <a id="link-2" href="" ng:click="value = 2">link 2</a> (link, don't reload)<br /> <a id="link-3" ng:href="/{{'123'}}" ng:ext-link>link 3</a> (link, reload!)<br /> <a id="link-4" href="" name="xx" ng:click="value = 4">anchor</a> (link, don't reload)<br /> <a id="link-5" name="xxx" ng:click="value = 5">anchor</a> (no link)<br /> <a id="link-6" ng:href="/{{value}}" ng:ext-link>link</a> (link, change hash) </doc:source> <doc:scenario> it('should execute ng:click but not reload when href without value', function() { element('#link-1').click(); expect(input('value').val()).toEqual('1'); expect(element('#link-1').attr('href')).toBe(""); }); it('should execute ng:click but not reload when href empty string', function() { element('#link-2').click(); expect(input('value').val()).toEqual('2'); expect(element('#link-2').attr('href')).toBe(""); }); it('should execute ng:click and change url when ng:href specified', function() { expect(element('#link-3').attr('href')).toBe("/123"); element('#link-3').click(); expect(browser().location().path()).toEqual('/123'); }); it('should execute ng:click but not reload when href empty string and name specified', function() { element('#link-4').click(); expect(input('value').val()).toEqual('4'); expect(element('#link-4').attr('href')).toBe(""); }); it('should execute ng:click but not reload when no href but name specified', function() { element('#link-5').click(); expect(input('value').val()).toEqual('5'); expect(element('#link-5').attr('href')).toBe(undefined); }); it('should only change url when only ng:href', function() { input('value').enter('6'); expect(element('#link-6').attr('href')).toBe("/6"); element('#link-6').click(); expect(browser().location().path()).toEqual('/6'); }); </doc:scenario> </doc:example> */ /** * @workInProgress * @ngdoc directive * @name angular.directive.ng:src * * @description * Using <angular/> markup like `{{hash}}` in a `src` attribute doesn't * work right: The browser will fetch from the URL with the literal * text `{{hash}}` until <angular/> replaces the expression inside * `{{hash}}`. The `ng:src` attribute solves this problem by placing * the `src` attribute in the `ng:` namespace. * * The buggy way to write it: * <pre> * <img src="http://www.gravatar.com/avatar/{{hash}}"/> * </pre> * * The correct way to write it: * <pre> * <img ng:src="http://www.gravatar.com/avatar/{{hash}}"/> * </pre> * * @element ANY * @param {template} template any string which can contain `{{}}` markup. */ /** * @workInProgress * @ngdoc directive * @name angular.directive.ng:disabled * * @description * * The following markup will make the button enabled on Chrome/Firefox but not on IE8 and older IEs: * <pre> * <div ng:init="scope = { isDisabled: false }"> * <button disabled="{{scope.isDisabled}}">Disabled</button> * </div> * </pre> * * The HTML specs do not require browsers to preserve the special attributes such as disabled. * (The presence of them means true and absence means false) * This prevents the angular compiler from correctly retrieving the binding expression. * To solve this problem, we introduce ng:disabled. * * @example <doc:example> <doc:source> Click me to toggle: <input type="checkbox" name="checked"><br/> <button name="button" ng:disabled="{{checked}}">Button</button> </doc:source> <doc:scenario> it('should toggle button', function() { expect(element('.doc-example-live :button').prop('disabled')).toBeFalsy(); input('checked').check(); expect(element('.doc-example-live :button').prop('disabled')).toBeTruthy(); }); </doc:scenario> </doc:example> * * @element ANY * @param {template} template any string which can contain '{{}}' markup. */ /** * @workInProgress * @ngdoc directive * @name angular.directive.ng:checked * * @description * The HTML specs do not require browsers to preserve the special attributes such as checked. * (The presence of them means true and absence means false) * This prevents the angular compiler from correctly retrieving the binding expression. * To solve this problem, we introduce ng:checked. * @example <doc:example> <doc:source> Check me to check both: <input type="checkbox" name="master"><br/> <input id="checkSlave" type="checkbox" ng:checked="{{master}}"> </doc:source> <doc:scenario> it('should check both checkBoxes', function() { expect(element('.doc-example-live #checkSlave').prop('checked')).toBeFalsy(); input('master').check(); expect(element('.doc-example-live #checkSlave').prop('checked')).toBeTruthy(); }); </doc:scenario> </doc:example> * * @element ANY * @param {template} template any string which can contain '{{}}' markup. */ /** * @workInProgress * @ngdoc directive * @name angular.directive.ng:multiple * * @description * The HTML specs do not require browsers to preserve the special attributes such as multiple. * (The presence of them means true and absence means false) * This prevents the angular compiler from correctly retrieving the binding expression. * To solve this problem, we introduce ng:multiple. * * @example <doc:example> <doc:source> Check me check multiple: <input type="checkbox" name="checked"><br/> <select id="select" ng:multiple="{{checked}}"> <option>Misko</option> <option>Igor</option> <option>Vojta</option> <option>Di</option> </select> </doc:source> <doc:scenario> it('should toggle multiple', function() { expect(element('.doc-example-live #select').prop('multiple')).toBeFalsy(); input('checked').check(); expect(element('.doc-example-live #select').prop('multiple')).toBeTruthy(); }); </doc:scenario> </doc:example> * * @element ANY * @param {template} template any string which can contain '{{}}' markup. */ /** * @workInProgress * @ngdoc directive * @name angular.directive.ng:readonly * * @description * The HTML specs do not require browsers to preserve the special attributes such as readonly. * (The presence of them means true and absence means false) * This prevents the angular compiler from correctly retrieving the binding expression. * To solve this problem, we introduce ng:readonly. * @example <doc:example> <doc:source> Check me to make text readonly: <input type="checkbox" name="checked"><br/> <input type="text" ng:readonly="{{checked}}" value="I'm Angular"/> </doc:source> <doc:scenario> it('should toggle readonly attr', function() { expect(element('.doc-example-live :text').prop('readonly')).toBeFalsy(); input('checked').check(); expect(element('.doc-example-live :text').prop('readonly')).toBeTruthy(); }); </doc:scenario> </doc:example> * * @element ANY * @param {template} template any string which can contain '{{}}' markup. */ /** * @workInProgress * @ngdoc directive * @name angular.directive.ng:selected * * @description * The HTML specs do not require browsers to preserve the special attributes such as selected. * (The presence of them means true and absence means false) * This prevents the angular compiler from correctly retrieving the binding expression. * To solve this problem, we introduce ng:selected. * @example <doc:example> <doc:source> Check me to select: <input type="checkbox" name="checked"><br/> <select> <option>Hello!</option> <option id="greet" ng:selected="{{checked}}">Greetings!</option> </select> </doc:source> <doc:scenario> it('should select Greetings!', function() { expect(element('.doc-example-live #greet').prop('selected')).toBeFalsy(); input('checked').check(); expect(element('.doc-example-live #greet').prop('selected')).toBeTruthy(); }); </doc:scenario> </doc:example> * @element ANY * @param {template} template any string which can contain '{{}}' markup. */ var NG_BIND_ATTR = 'ng:bind-attr'; var SPECIAL_ATTRS = {}; forEach('src,href,checked,disabled,multiple,readonly,selected'.split(','), function(name) { SPECIAL_ATTRS['ng:' + name] = name; }); angularAttrMarkup('{{}}', function(value, name, element){ // don't process existing attribute markup if (angularDirective(name) || angularDirective("@" + name)) return; if (msie && name == 'src') value = decodeURI(value); var bindings = parseBindings(value), bindAttr; if (hasBindings(bindings) || SPECIAL_ATTRS[name]) { element.removeAttr(name); bindAttr = fromJson(element.attr(NG_BIND_ATTR) || "{}"); bindAttr[SPECIAL_ATTRS[name] || name] = value; element.attr(NG_BIND_ATTR, toJson(bindAttr)); } }); /** * @workInProgress * @ngdoc overview * @name angular.widget * @description * * An angular widget can be either a custom attribute that modifies an existing DOM element or an * entirely new DOM element. * * During html compilation, widgets are processed after {@link angular.markup markup}, but before * {@link angular.directive directives}. * * Following is the list of built-in angular widgets: * * * {@link angular.widget.@ng:format ng:format} - Formats data for display to user and for storage. * * {@link angular.widget.@ng:non-bindable ng:non-bindable} - Blocks angular from processing an * HTML element. * * {@link angular.widget.@ng:repeat ng:repeat} - Creates and manages a collection of cloned HTML * elements. * * {@link angular.widget.@ng:required ng:required} - Verifies presence of user input. * * {@link angular.widget.@ng:validate ng:validate} - Validates content of user input. * * {@link angular.widget.HTML HTML input elements} - Standard HTML input elements data-bound by * angular. * * {@link angular.widget.ng:view ng:view} - Works with $route to "include" partial templates * * {@link angular.widget.ng:switch ng:switch} - Conditionally changes DOM structure * * {@link angular.widget.ng:include ng:include} - Includes an external HTML fragment * * For more information about angular widgets, see {@link guide/dev_guide.compiler.widgets * Understanding Angular Widgets} in the angular Developer Guide. */ /** * @workInProgress * @ngdoc widget * @name angular.widget.HTML * * @description * The most common widgets you will use will be in the form of the * standard HTML set. These widgets are bound using the `name` attribute * to an expression. In addition, they can have `ng:validate`, `ng:required`, * `ng:format`, `ng:change` attribute to further control their behavior. * * @usageContent * see example below for usage * * <input type="text|checkbox|..." ... /> * <textarea ... /> * <select ...> * <option>...</option> * </select> * * @example <doc:example> <doc:source> <table style="font-size:.9em;"> <tr> <th>Name</th> <th>Format</th> <th>HTML</th> <th>UI</th> <th ng:non-bindable>{{input#}}</th> </tr> <tr> <th>text</th> <td>String</td> <td><tt>&lt;input type="text" name="input1"&gt;</tt></td> <td><input type="text" name="input1" size="4"></td> <td><tt>{{input1|json}}</tt></td> </tr> <tr> <th>textarea</th> <td>String</td> <td><tt>&lt;textarea name="input2"&gt;&lt;/textarea&gt;</tt></td> <td><textarea name="input2" cols='6'></textarea></td> <td><tt>{{input2|json}}</tt></td> </tr> <tr> <th>radio</th> <td>String</td> <td><tt> &lt;input type="radio" name="input3" value="A"&gt;<br> &lt;input type="radio" name="input3" value="B"&gt; </tt></td> <td> <input type="radio" name="input3" value="A"> <input type="radio" name="input3" value="B"> </td> <td><tt>{{input3|json}}</tt></td> </tr> <tr> <th>checkbox</th> <td>Boolean</td> <td><tt>&lt;input type="checkbox" name="input4" value="checked"&gt;</tt></td> <td><input type="checkbox" name="input4" value="checked"></td> <td><tt>{{input4|json}}</tt></td> </tr> <tr> <th>pulldown</th> <td>String</td> <td><tt> &lt;select name="input5"&gt;<br> &nbsp;&nbsp;&lt;option value="c"&gt;C&lt;/option&gt;<br> &nbsp;&nbsp;&lt;option value="d"&gt;D&lt;/option&gt;<br> &lt;/select&gt;<br> </tt></td> <td> <select name="input5"> <option value="c">C</option> <option value="d">D</option> </select> </td> <td><tt>{{input5|json}}</tt></td> </tr> <tr> <th>multiselect</th> <td>Array</td> <td><tt> &lt;select name="input6" multiple size="4"&gt;<br> &nbsp;&nbsp;&lt;option value="e"&gt;E&lt;/option&gt;<br> &nbsp;&nbsp;&lt;option value="f"&gt;F&lt;/option&gt;<br> &lt;/select&gt;<br> </tt></td> <td> <select name="input6" multiple size="4"> <option value="e">E</option> <option value="f">F</option> </select> </td> <td><tt>{{input6|json}}</tt></td> </tr> </table> </doc:source> <doc:scenario> it('should exercise text', function(){ input('input1').enter('Carlos'); expect(binding('input1')).toEqual('"Carlos"'); }); it('should exercise textarea', function(){ input('input2').enter('Carlos'); expect(binding('input2')).toEqual('"Carlos"'); }); it('should exercise radio', function(){ expect(binding('input3')).toEqual('null'); input('input3').select('A'); expect(binding('input3')).toEqual('"A"'); input('input3').select('B'); expect(binding('input3')).toEqual('"B"'); }); it('should exercise checkbox', function(){ expect(binding('input4')).toEqual('false'); input('input4').check(); expect(binding('input4')).toEqual('true'); }); it('should exercise pulldown', function(){ expect(binding('input5')).toEqual('"c"'); select('input5').option('d'); expect(binding('input5')).toEqual('"d"'); }); it('should exercise multiselect', function(){ expect(binding('input6')).toEqual('[]'); select('input6').options('e'); expect(binding('input6')).toEqual('["e"]'); select('input6').options('e', 'f'); expect(binding('input6')).toEqual('["e","f"]'); }); </doc:scenario> </doc:example> */ function modelAccessor(scope, element) { var expr = element.attr('name'); var exprFn, assignFn; if (expr) { exprFn = parser(expr).assignable(); assignFn = exprFn.assign; if (!assignFn) throw new Error("Expression '" + expr + "' is not assignable."); return { get: function() { return exprFn(scope); }, set: function(value) { if (value !== undefined) { assignFn(scope, value); } } }; } } function modelFormattedAccessor(scope, element) { var accessor = modelAccessor(scope, element), formatterName = element.attr('ng:format') || NOOP, formatter = compileFormatter(formatterName); if (accessor) { return { get: function() { return formatter.format(scope, accessor.get()); }, set: function(value) { return accessor.set(formatter.parse(scope, value)); } }; } } function compileValidator(expr) { return parser(expr).validator()(); } function compileFormatter(expr) { return parser(expr).formatter()(); } /** * @workInProgress * @ngdoc widget * @name angular.widget.@ng:validate * * @description * The `ng:validate` attribute widget validates the user input. If the input does not pass * validation, the `ng-validation-error` CSS class and the `ng:error` attribute are set on the input * element. Check out {@link angular.validator validators} to find out more. * * @param {string} validator The name of a built-in or custom {@link angular.validator validator} to * to be used. * * @element INPUT * @css ng-validation-error * * @example * This example shows how the input element becomes red when it contains invalid input. Correct * the input to make the error disappear. * <doc:example> <doc:source> I don't validate: <input type="text" name="value" value="NotANumber"><br/> I need an integer or nothing: <input type="text" name="value" ng:validate="integer"><br/> </doc:source> <doc:scenario> it('should check ng:validate', function(){ expect(element('.doc-example-live :input:last').prop('className')). toMatch(/ng-validation-error/); input('value').enter('123'); expect(element('.doc-example-live :input:last').prop('className')). not().toMatch(/ng-validation-error/); }); </doc:scenario> </doc:example> */ /** * @workInProgress * @ngdoc widget * @name angular.widget.@ng:required * * @description * The `ng:required` attribute widget validates that the user input is present. It is a special case * of the {@link angular.widget.@ng:validate ng:validate} attribute widget. * * @element INPUT * @css ng-validation-error * * @example * This example shows how the input element becomes red when it contains invalid input. Correct * the input to make the error disappear. * <doc:example> <doc:source> I cannot be blank: <input type="text" name="value" ng:required><br/> </doc:source> <doc:scenario> it('should check ng:required', function(){ expect(element('.doc-example-live :input').prop('className')). toMatch(/ng-validation-error/); input('value').enter('123'); expect(element('.doc-example-live :input').prop('className')). not().toMatch(/ng-validation-error/); }); </doc:scenario> </doc:example> */ /** * @workInProgress * @ngdoc widget * @name angular.widget.@ng:format * * @description * The `ng:format` attribute widget formats stored data to user-readable text and parses the text * back to the stored form. You might find this useful, for example, if you collect user input in a * text field but need to store the data in the model as a list. Check out * {@link angular.formatter formatters} to learn more. * * @param {string} formatter The name of the built-in or custom {@link angular.formatter formatter} * to be used. * * @element INPUT * * @example * This example shows how the user input is converted from a string and internally represented as an * array. * <doc:example> <doc:source> Enter a comma separated list of items: <input type="text" name="list" ng:format="list" value="table, chairs, plate"> <pre>list={{list}}</pre> </doc:source> <doc:scenario> it('should check ng:format', function(){ expect(binding('list')).toBe('list=["table","chairs","plate"]'); input('list').enter(',,, a ,,,'); expect(binding('list')).toBe('list=["a"]'); }); </doc:scenario> </doc:example> */ function valueAccessor(scope, element) { var validatorName = element.attr('ng:validate') || NOOP, validator = compileValidator(validatorName), requiredExpr = element.attr('ng:required'), formatterName = element.attr('ng:format') || NOOP, formatter = compileFormatter(formatterName), format, parse, lastError, required, invalidWidgets = scope.$service('$invalidWidgets') || {markValid:noop, markInvalid:noop}; if (!validator) throw "Validator named '" + validatorName + "' not found."; format = formatter.format; parse = formatter.parse; if (requiredExpr) { scope.$watch(requiredExpr, function(scope, newValue) { required = newValue; validate(); }); } else { required = requiredExpr === ''; } element.data($$validate, validate); return { get: function(){ if (lastError) elementError(element, NG_VALIDATION_ERROR, null); try { var value = parse(scope, element.val()); validate(); return value; } catch (e) { lastError = e; elementError(element, NG_VALIDATION_ERROR, e); } }, set: function(value) { var oldValue = element.val(), newValue = format(scope, value); if (oldValue != newValue) { element.val(newValue || ''); // needed for ie } validate(); } }; function validate() { var value = trim(element.val()); if (element[0].disabled || element[0].readOnly) { elementError(element, NG_VALIDATION_ERROR, null); invalidWidgets.markValid(element); } else { var error, validateScope = inherit(scope, {$element:element}); error = required && !value ? 'Required' : (value ? validator(validateScope, value) : null); elementError(element, NG_VALIDATION_ERROR, error); lastError = error; if (error) { invalidWidgets.markInvalid(element); } else { invalidWidgets.markValid(element); } } } } function checkedAccessor(scope, element) { var domElement = element[0], elementValue = domElement.value; return { get: function(){ return !!domElement.checked; }, set: function(value){ domElement.checked = toBoolean(value); } }; } function radioAccessor(scope, element) { var domElement = element[0]; return { get: function(){ return domElement.checked ? domElement.value : null; }, set: function(value){ domElement.checked = value == domElement.value; } }; } function optionsAccessor(scope, element) { var formatterName = element.attr('ng:format') || NOOP, formatter = compileFormatter(formatterName); return { get: function(){ var values = []; forEach(element[0].options, function(option){ if (option.selected) values.push(formatter.parse(scope, option.value)); }); return values; }, set: function(values){ var keys = {}; forEach(values, function(value){ keys[formatter.format(scope, value)] = true; }); forEach(element[0].options, function(option){ option.selected = keys[option.value]; }); } }; } function noopAccessor() { return { get: noop, set: noop }; } /* * TODO: refactor * * The table below is not quite right. In some cases the formatter is on the model side * and in some cases it is on the view side. This is a historical artifact * * The concept of model/view accessor is useful for anyone who is trying to develop UI, and * so it should be exposed to others. There should be a form object which keeps track of the * accessors and also acts as their factory. It should expose it as an object and allow * the validator to publish errors to it, so that the the error messages can be bound to it. * */ var textWidget = inputWidget('keydown change', modelAccessor, valueAccessor, initWidgetValue(), true), INPUT_TYPE = { 'text': textWidget, 'textarea': textWidget, 'hidden': textWidget, 'password': textWidget, 'checkbox': inputWidget('click', modelFormattedAccessor, checkedAccessor, initWidgetValue(false)), 'radio': inputWidget('click', modelFormattedAccessor, radioAccessor, radioInit), 'select-one': inputWidget('change', modelAccessor, valueAccessor, initWidgetValue(null)), 'select-multiple': inputWidget('change', modelAccessor, optionsAccessor, initWidgetValue([])) // 'file': fileWidget??? }; function initWidgetValue(initValue) { return function (model, view) { var value = view.get(); if (!value && isDefined(initValue)) { value = copy(initValue); } if (isUndefined(model.get()) && isDefined(value)) { model.set(value); } }; } function radioInit(model, view, element) { var modelValue = model.get(), viewValue = view.get(), input = element[0]; input.checked = false; input.name = this.$id + '@' + input.name; if (isUndefined(modelValue)) { model.set(modelValue = null); } if (modelValue == null && viewValue !== null) { model.set(viewValue); } view.set(modelValue); } /** * @workInProgress * @ngdoc directive * @name angular.directive.ng:change * * @description * The directive executes an expression whenever the input widget changes. * * @element INPUT * @param {expression} expression to execute. * * @example * @example <doc:example> <doc:source> <div ng:init="checkboxCount=0; textCount=0"></div> <input type="text" name="text" ng:change="textCount = 1 + textCount"> changeCount {{textCount}}<br/> <input type="checkbox" name="checkbox" ng:change="checkboxCount = 1 + checkboxCount"> changeCount {{checkboxCount}}<br/> </doc:source> <doc:scenario> it('should check ng:change', function(){ expect(binding('textCount')).toBe('0'); expect(binding('checkboxCount')).toBe('0'); using('.doc-example-live').input('text').enter('abc'); expect(binding('textCount')).toBe('1'); expect(binding('checkboxCount')).toBe('0'); using('.doc-example-live').input('checkbox').check(); expect(binding('textCount')).toBe('1'); expect(binding('checkboxCount')).toBe('1'); }); </doc:scenario> </doc:example> */ function inputWidget(events, modelAccessor, viewAccessor, initFn, textBox) { return annotate('$defer', function($defer, element) { var scope = this, model = modelAccessor(scope, element), view = viewAccessor(scope, element), ngChange = element.attr('ng:change') || noop, lastValue; if (model) { initFn.call(scope, model, view, element); scope.$eval(element.attr('ng:init') || noop); element.bind(events, function(event){ function handler(){ var value = view.get(); if (!textBox || value != lastValue) { model.set(value); lastValue = model.get(); scope.$eval(ngChange); } } event.type == 'keydown' ? $defer(handler) : scope.$apply(handler); }); scope.$watch(model.get, function(scope, value) { if (!equals(lastValue, value)) { view.set(lastValue = value); } }); } }); } function inputWidgetSelector(element){ this.directives(true); this.descend(true); return INPUT_TYPE[lowercase(element[0].type)] || noop; } angularWidget('input', inputWidgetSelector); angularWidget('textarea', inputWidgetSelector); /** * @workInProgress * @ngdoc directive * @name angular.directive.ng:options * * @description * Dynamically generate a list of `<option>` elements for a `<select>` element using an array or * an object obtained by evaluating the `ng:options` expression. * * When an item in the select menu is select, the value of array element or object property * represented by the selected option will be bound to the model identified by the `name` attribute * of the parent select element. * * Optionally, a single hard-coded `<option>` element, with the value set to an empty string, can * be nested into the `<select>` element. This element will then represent `null` or "not selected" * option. See example below for demonstration. * * Note: `ng:options` provides iterator facility for `<option>` element which must be used instead * of {@link angular.widget.@ng:repeat ng:repeat}. `ng:repeat` is not suitable for use with * `<option>` element because of the following reasons: * * * value attribute of the option element that we need to bind to requires a string, but the * source of data for the iteration might be in a form of array containing objects instead of * strings * * {@link angular.widget.@ng:repeat ng:repeat} unrolls after the select binds causing * incorect rendering on most browsers. * * binding to a value not in list confuses most browsers. * * @element select * @param {comprehension_expression} comprehension in one of the following forms: * * * for array data sources: * * `label` **`for`** `value` **`in`** `array` * * `select` **`as`** `label` **`for`** `value` **`in`** `array` * * `label` **`group by`** `group` **`for`** `value` **`in`** `array` * * `select` **`as`** `label` **`group by`** `group` **`for`** `value` **`in`** `array` * * for object data sources: * * `label` **`for (`**`key` **`,`** `value`**`) in`** `object` * * `select` **`as`** `label` **`for (`**`key` **`,`** `value`**`) in`** `object` * * `label` **`group by`** `group` **`for (`**`key`**`,`** `value`**`) in`** `object` * * `select` **`as`** `label` **`group by`** `group` * **`for` `(`**`key`**`,`** `value`**`) in`** `object` * * Where: * * * `array` / `object`: an expression which evaluates to an array / object to iterate over. * * `value`: local variable which will refer to each item in the `array` or each property value * of `object` during iteration. * * `key`: local variable which will refer to a property name in `object` during iteration. * * `label`: The result of this expression will be the label for `<option>` element. The * `expression` will most likely refer to the `value` variable (e.g. `value.propertyName`). * * `select`: The result of this expression will be bound to the model of the parent `<select>` * element. If not specified, `select` expression will default to `value`. * * `group`: The result of this expression will be used to group options using the `<optgroup>` * DOM element. * * @example <doc:example> <doc:source> <script> function MyCntrl(){ this.colors = [ {name:'black', shade:'dark'}, {name:'white', shade:'light'}, {name:'red', shade:'dark'}, {name:'blue', shade:'dark'}, {name:'yellow', shade:'light'} ]; this.color = this.colors[2]; // red } </script> <div ng:controller="MyCntrl"> <ul> <li ng:repeat="color in colors"> Name: <input name="color.name"> [<a href ng:click="colors.$remove(color)">X</a>] </li> <li> [<a href ng:click="colors.push({})">add</a>] </li> </ul> <hr/> Color (null not allowed): <select name="color" ng:options="c.name for c in colors"></select><br> Color (null allowed): <div class="nullable"> <select name="color" ng:options="c.name for c in colors"> <option value="">-- chose color --</option> </select> </div><br/> Color grouped by shade: <select name="color" ng:options="c.name group by c.shade for c in colors"> </select><br/> Select <a href ng:click="color={name:'not in list'}">bogus</a>.<br> <hr/> Currently selected: {{ {selected_color:color} }} <div style="border:solid 1px black; height:20px" ng:style="{'background-color':color.name}"> </div> </div> </doc:source> <doc:scenario> it('should check ng:options', function(){ expect(binding('color')).toMatch('red'); select('color').option('0'); expect(binding('color')).toMatch('black'); using('.nullable').select('color').option(''); expect(binding('color')).toMatch('null'); }); </doc:scenario> </doc:example> */ // 00001111100000000000222200000000000000000000003333000000000000044444444444444444000000000555555555555555550000000666666666666666660000000000000007777 var NG_OPTIONS_REGEXP = /^\s*(.*?)(?:\s+as\s+(.*?))?(?:\s+group\s+by\s+(.*))?\s+for\s+(?:([\$\w][\$\w\d]*)|(?:\(\s*([\$\w][\$\w\d]*)\s*,\s*([\$\w][\$\w\d]*)\s*\)))\s+in\s+(.*)$/; angularWidget('select', function(element){ this.descend(true); this.directives(true); var isMultiselect = element.attr('multiple'), expression = element.attr('ng:options'), onChange = expressionCompile(element.attr('ng:change') || ""), match; if (!expression) { return inputWidgetSelector.call(this, element); } if (! (match = expression.match(NG_OPTIONS_REGEXP))) { throw Error( "Expected ng:options in form of '_select_ (as _label_)? for (_key_,)?_value_ in _collection_'" + " but got '" + expression + "'."); } var displayFn = expressionCompile(match[2] || match[1]), valueName = match[4] || match[6], keyName = match[5], groupByFn = expressionCompile(match[3] || ''), valueFn = expressionCompile(match[2] ? match[1] : valueName), valuesFn = expressionCompile(match[7]), // we can't just jqLite('<option>') since jqLite is not smart enough // to create it in <select> and IE barfs otherwise. optionTemplate = jqLite(document.createElement('option')), optGroupTemplate = jqLite(document.createElement('optgroup')), nullOption = false; // if false then user will not be able to select it return function(selectElement){ // This is an array of array of existing option groups in DOM. We try to reuse these if possible // optionGroupsCache[0] is the options with no option group // optionGroupsCache[?][0] is the parent: either the SELECT or OPTGROUP element var optionGroupsCache = [[{element: selectElement, label:''}]], scope = this, model = modelAccessor(scope, element), inChangeEvent; // find existing special options forEach(selectElement.children(), function(option){ if (option.value == '') // User is allowed to select the null. nullOption = {label:jqLite(option).text(), id:''}; }); selectElement.html(''); // clear contents selectElement.bind('change', function(){ var optionGroup, collection = valuesFn(scope) || [], key = selectElement.val(), tempScope = scope.$new(), value, optionElement, index, groupIndex, length, groupLength; // let's set a flag that the current model change is due to a change event. // the default action of option selection will cause the appropriate option element to be // deselected and another one to be selected - there is no need for us to be updating the DOM // in this case. inChangeEvent = true; try { if (isMultiselect) { value = []; for (groupIndex = 0, groupLength = optionGroupsCache.length; groupIndex < groupLength; groupIndex++) { // list of options for that group. (first item has the parent) optionGroup = optionGroupsCache[groupIndex]; for(index = 1, length = optionGroup.length; index < length; index++) { if ((optionElement = optionGroup[index].element)[0].selected) { if (keyName) tempScope[keyName] = key; tempScope[valueName] = collection[optionElement.val()]; value.push(valueFn(tempScope)); } } } } else { if (key == '?') { value = undefined; } else if (key == ''){ value = null; } else { tempScope[valueName] = collection[key]; if (keyName) tempScope[keyName] = key; value = valueFn(tempScope); } } if (isDefined(value) && model.get() !== value) { model.set(value); onChange(scope); } scope.$root.$apply(); } finally { tempScope = null; // TODO(misko): needs to be $destroy inChangeEvent = false; } }); scope.$watch(function(scope) { var optionGroups = {'':[]}, // Temporary location for the option groups before we render them optionGroupNames = [''], optionGroupName, optionGroup, option, existingParent, existingOptions, existingOption, values = valuesFn(scope) || [], keys = values, key, groupLength, length, fragment, groupIndex, index, optionElement, optionScope = scope.$new(), modelValue = model.get(), selected, selectedSet = false, // nothing is selected yet isMulti = isMultiselect, lastElement, element; try { if (isMulti) { selectedSet = new HashMap(); if (modelValue && isNumber(length = modelValue.length)) { for (index = 0; index < length; index++) { selectedSet.put(modelValue[index], true); } } } else if (modelValue === null || nullOption) { // if we are not multiselect, and we are null then we have to add the nullOption optionGroups[''].push(extend({selected:modelValue === null, id:'', label:''}, nullOption)); selectedSet = true; } // If we have a keyName then we are iterating over on object. Grab the keys and sort them. if(keyName) { keys = []; for (key in values) { if (values.hasOwnProperty(key)) keys.push(key); } keys.sort(); } // We now build up the list of options we need (we merge later) for (index = 0; length = keys.length, index < length; index++) { optionScope[valueName] = values[keyName ? optionScope[keyName]=keys[index]:index]; optionGroupName = groupByFn(optionScope) || ''; if (!(optionGroup = optionGroups[optionGroupName])) { optionGroup = optionGroups[optionGroupName] = []; optionGroupNames.push(optionGroupName); } if (isMulti) { selected = !!selectedSet.remove(valueFn(optionScope)); } else { selected = modelValue === valueFn(optionScope); selectedSet = selectedSet || selected; // see if at least one item is selected } optionGroup.push({ id: keyName ? keys[index] : index, // either the index into array or key from object label: displayFn(optionScope) || '', // what will be seen by the user selected: selected // determine if we should be selected }); } optionGroupNames.sort(); if (!isMulti && !selectedSet) { // nothing was selected, we have to insert the undefined item optionGroups[''].unshift({id:'?', label:'', selected:true}); } // Now we need to update the list of DOM nodes to match the optionGroups we computed above for (groupIndex = 0, groupLength = optionGroupNames.length; groupIndex < groupLength; groupIndex++) { // current option group name or '' if no group optionGroupName = optionGroupNames[groupIndex]; // list of options for that group. (first item has the parent) optionGroup = optionGroups[optionGroupName]; if (optionGroupsCache.length <= groupIndex) { // we need to grow the optionGroups optionGroupsCache.push( existingOptions = [ existingParent = { element: optGroupTemplate.clone().attr('label', optionGroupName), label: optionGroup.label } ] ); selectElement.append(existingParent.element); } else { existingOptions = optionGroupsCache[groupIndex]; existingParent = existingOptions[0]; // either SELECT (no group) or OPTGROUP element // update the OPTGROUP label if not the same. if (existingParent.label != optionGroupName) { existingParent.element.attr('label', existingParent.label = optionGroupName); } } lastElement = null; // start at the begining for(index = 0, length = optionGroup.length; index < length; index++) { option = optionGroup[index]; if ((existingOption = existingOptions[index+1])) { // reuse elements lastElement = existingOption.element; if (existingOption.label !== option.label) { lastElement.text(existingOption.label = option.label); } if (existingOption.id !== option.id) { lastElement.val(existingOption.id = option.id); } if (!inChangeEvent && existingOption.selected !== option.selected) { lastElement.prop('selected', (existingOption.selected = option.selected)); } } else { // grow elements // jQuery(v1.4.2) Bug: We should be able to chain the method calls, but // in this version of jQuery on some browser the .text() returns a string // rather then the element. (element = optionTemplate.clone()) .val(option.id) .attr('selected', option.selected) .text(option.label); existingOptions.push(existingOption = { element: element, label: option.label, id: option.id, selected: option.selected }); if (lastElement) { lastElement.after(element); } else { existingParent.element.append(element); } lastElement = element; } } // remove any excessive OPTIONs in a group index++; // increment since the existingOptions[0] is parent element not OPTION while(existingOptions.length > index) { existingOptions.pop().element.remove(); } } // remove any excessive OPTGROUPs from select while(optionGroupsCache.length > groupIndex) { optionGroupsCache.pop()[0].element.remove(); } } finally { optionScope.$destroy(); } }); }; }); /** * @workInProgress * @ngdoc widget * @name angular.widget.ng:include * * @description * Fetches, compiles and includes an external HTML fragment. * * Keep in mind that Same Origin Policy applies to included resources * (e.g. ng:include won't work for file:// access). * * @param {string} src angular expression evaluating to URL. If the source is a string constant, * make sure you wrap it in quotes, e.g. `src="'myPartialTemplate.html'"`. * @param {Scope=} [scope=new_child_scope] optional expression which evaluates to an * instance of angular.scope to set the HTML fragment to. * @param {string=} onload Expression to evaluate when a new partial is loaded. * * @example <doc:example> <doc:source jsfiddle="false"> <select name="url"> <option value="examples/ng-include/template1.html">template1.html</option> <option value="examples/ng-include/template2.html">template2.html</option> <option value="">(blank)</option> </select> url of the template: <tt><a href="{{url}}">{{url}}</a></tt> <hr/> <ng:include src="url"></ng:include> </doc:source> <doc:scenario> it('should load template1.html', function(){ expect(element('.doc-example-live ng\\:include').text()). toBe('Content of template1.html\n'); }); it('should load template2.html', function(){ select('url').option('examples/ng-include/template2.html'); expect(element('.doc-example-live ng\\:include').text()). toBe('Content of template2.html\n'); }); it('should change to blank', function(){ select('url').option(''); expect(element('.doc-example-live ng\\:include').text()).toEqual(''); }); </doc:scenario> </doc:example> */ angularWidget('ng:include', function(element){ var compiler = this, srcExp = element.attr("src"), scopeExp = element.attr("scope") || '', onloadExp = element[0].getAttribute('onload') || ''; //workaround for jquery bug #7537 if (element[0]['ng:compiled']) { this.descend(true); this.directives(true); } else { element[0]['ng:compiled'] = true; return extend(function(xhr, element){ var scope = this, changeCounter = 0, releaseScopes = [], childScope, oldScope; function incrementChange(){ changeCounter++;} this.$watch(srcExp, incrementChange); this.$watch(function(scope){ var newScope = scope.$eval(scopeExp); if (newScope !== oldScope) { oldScope = newScope; incrementChange(); } }); this.$watch(function(){return changeCounter;}, function(scope) { var src = scope.$eval(srcExp), useScope = scope.$eval(scopeExp); while(releaseScopes.length) { releaseScopes.pop().$destroy(); } if (src) { xhr('GET', src, null, function(code, response){ element.html(response); if (useScope) { childScope = useScope; } else { releaseScopes.push(childScope = scope.$new()); } compiler.compile(element)(childScope); scope.$eval(onloadExp); }, false, true); } else { childScope = null; element.html(''); } }); }, {$inject:['$xhr.cache']}); } }); /** * @workInProgress * @ngdoc widget * @name angular.widget.ng:switch * * @description * Conditionally change the DOM structure. * * @usageContent * <any ng:switch-when="matchValue1">...</any> * <any ng:switch-when="matchValue2">...</any> * ... * <any ng:switch-default>...</any> * * @param {*} on expression to match against <tt>ng:switch-when</tt>. * @paramDescription * On child elments add: * * * `ng:switch-when`: the case statement to match against. If match then this * case will be displayed. * * `ng:switch-default`: the default case when no other casses match. * * @example <doc:example> <doc:source> <select name="switch"> <option>settings</option> <option>home</option> <option>other</option> </select> <tt>switch={{switch}}</tt> </hr> <ng:switch on="switch" > <div ng:switch-when="settings">Settings Div</div> <span ng:switch-when="home">Home Span</span> <span ng:switch-default>default</span> </ng:switch> </code> </doc:source> <doc:scenario> it('should start in settings', function(){ expect(element('.doc-example-live ng\\:switch').text()).toEqual('Settings Div'); }); it('should change to home', function(){ select('switch').option('home'); expect(element('.doc-example-live ng\\:switch').text()).toEqual('Home Span'); }); it('should select deafault', function(){ select('switch').option('other'); expect(element('.doc-example-live ng\\:switch').text()).toEqual('default'); }); </doc:scenario> </doc:example> */ angularWidget('ng:switch', function (element) { var compiler = this, watchExpr = element.attr("on"), changeExpr = element.attr('change'), casesTemplate = {}, defaultCaseTemplate, children = element.children(), length = children.length, child, when; if (!watchExpr) throw new Error("Missing 'on' attribute."); while(length--) { child = jqLite(children[length]); // this needs to be here for IE child.remove(); when = child.attr('ng:switch-when'); if (isString(when)) { casesTemplate[when] = compiler.compile(child); } else if (isString(child.attr('ng:switch-default'))) { defaultCaseTemplate = compiler.compile(child); } } children = null; // release memory; element.html(''); return function(element){ var changeCounter = 0; var childScope; var selectedTemplate; this.$watch(watchExpr, function(scope, value) { element.html(''); if ((selectedTemplate = casesTemplate[value] || defaultCaseTemplate)) { changeCounter++; if (childScope) childScope.$destroy(); childScope = scope.$new(); childScope.$eval(changeExpr); } }); this.$watch(function(){return changeCounter;}, function() { element.html(''); if (selectedTemplate) { selectedTemplate(childScope, function(caseElement) { element.append(caseElement); }); } }); }; }); /* * Modifies the default behavior of html A tag, so that the default action is prevented when href * attribute is empty. * * The reasoning for this change is to allow easy creation of action links with ng:click without * changing the location or causing page reloads, e.g.: * <a href="" ng:click="model.$save()">Save</a> */ angularWidget('a', function() { this.descend(true); this.directives(true); return function(element) { var hasNgHref = ((element.attr('ng:bind-attr') || '').indexOf('"href":') !== -1); // turn <a href ng:click="..">link</a> into a link in IE // but only if it doesn't have name attribute, in which case it's an anchor if (!hasNgHref && !element.attr('name') && !element.attr('href')) { element.attr('href', ''); } if (element.attr('href') === '' && !hasNgHref) { element.bind('click', function(event){ event.preventDefault(); }); } }; }); /** * @workInProgress * @ngdoc widget * @name angular.widget.@ng:repeat * * @description * The `ng:repeat` widget instantiates a template once per item from a collection. The collection is * enumerated with the `ng:repeat-index` attribute, starting from 0. Each template instance gets * its own scope, where the given loop variable is set to the current collection item, and `$index` * is set to the item index or key. * * Special properties are exposed on the local scope of each template instance, including: * * * `$index` – `{number}` – iterator offset of the repeated element (0..length-1) * * `$position` – `{string}` – position of the repeated element in the iterator. One of: * * `'first'`, * * `'middle'` * * `'last'` * * Note: Although `ng:repeat` looks like a directive, it is actually an attribute widget. * * @element ANY * @param {string} repeat_expression The expression indicating how to enumerate a collection. Two * formats are currently supported: * * * `variable in expression` – where variable is the user defined loop variable and `expression` * is a scope expression giving the collection to enumerate. * * For example: `track in cd.tracks`. * * * `(key, value) in expression` – where `key` and `value` can be any user defined identifiers, * and `expression` is the scope expression giving the collection to enumerate. * * For example: `(name, age) in {'adam':10, 'amalie':12}`. * * @example * This example initializes the scope to a list of names and * then uses `ng:repeat` to display every person: <doc:example> <doc:source> <div ng:init="friends = [{name:'John', age:25}, {name:'Mary', age:28}]"> I have {{friends.length}} friends. They are: <ul> <li ng:repeat="friend in friends"> [{{$index + 1}}] {{friend.name}} who is {{friend.age}} years old. </li> </ul> </div> </doc:source> <doc:scenario> it('should check ng:repeat', function(){ var r = using('.doc-example-live').repeater('ul li'); expect(r.count()).toBe(2); expect(r.row(0)).toEqual(["1","John","25"]); expect(r.row(1)).toEqual(["2","Mary","28"]); }); </doc:scenario> </doc:example> */ angularWidget('@ng:repeat', function(expression, element){ element.removeAttr('ng:repeat'); element.replaceWith(jqLite('<!-- ng:repeat: ' + expression + ' -->')); var linker = this.compile(element); return function(iterStartElement){ var match = expression.match(/^\s*(.+)\s+in\s+(.*)\s*$/), lhs, rhs, valueIdent, keyIdent; if (! match) { throw Error("Expected ng:repeat in form of '_item_ in _collection_' but got '" + expression + "'."); } lhs = match[1]; rhs = match[2]; match = lhs.match(/^([\$\w]+)|\(([\$\w]+)\s*,\s*([\$\w]+)\)$/); if (!match) { throw Error("'item' in 'item in collection' should be identifier or (key, value) but got '" + keyValue + "'."); } valueIdent = match[3] || match[1]; keyIdent = match[2]; var childScopes = []; var childElements = [iterStartElement]; var parentScope = this; this.$watch(function(scope){ var index = 0, childCount = childScopes.length, collection = scope.$eval(rhs), collectionLength = size(collection, true), fragment = document.createDocumentFragment(), addFragmentTo = (childCount < collectionLength) ? childElements[childCount] : null, childScope, key; for (key in collection) { if (collection.hasOwnProperty(key)) { if (index < childCount) { // reuse existing child childScope = childScopes[index]; childScope[valueIdent] = collection[key]; if (keyIdent) childScope[keyIdent] = key; childScope.$position = index == 0 ? 'first' : (index == collectionLength - 1 ? 'last' : 'middle'); childScope.$eval(); } else { // grow children childScope = parentScope.$new(); childScope[valueIdent] = collection[key]; if (keyIdent) childScope[keyIdent] = key; childScope.$index = index; childScope.$position = index == 0 ? 'first' : (index == collectionLength - 1 ? 'last' : 'middle'); childScopes.push(childScope); linker(childScope, function(clone){ clone.attr('ng:repeat-index', index); fragment.appendChild(clone[0]); // TODO(misko): Temporary hack - maybe think about it - removed after we add fragment after $digest() // This causes double $digest for children // The first flush will couse a lot of DOM access (initial) // Second flush shuld be noop since nothing has change hence no DOM access. childScope.$digest(); childElements[index + 1] = clone; }); } index ++; } } //attach new nodes buffered in doc fragment if (addFragmentTo) { // TODO(misko): For performance reasons, we should do the addition after all other widgets // have run. For this should happend after $digest() is done! addFragmentTo.after(jqLite(fragment)); } // shrink children while(childScopes.length > index) { // can not use $destroy(true) since there may be multiple iterators on same parent. childScopes.pop().$destroy(); childElements.pop().remove(); } }); }; }); /** * @workInProgress * @ngdoc widget * @name angular.widget.@ng:non-bindable * * @description * Sometimes it is necessary to write code which looks like bindings but which should be left alone * by angular. Use `ng:non-bindable` to make angular ignore a chunk of HTML. * * Note: `ng:non-bindable` looks like a directive, but is actually an attribute widget. * * @element ANY * * @example * In this example there are two location where a simple binding (`{{}}`) is present, but the one * wrapped in `ng:non-bindable` is left alone. * * @example <doc:example> <doc:source> <div>Normal: {{1 + 2}}</div> <div ng:non-bindable>Ignored: {{1 + 2}}</div> </doc:source> <doc:scenario> it('should check ng:non-bindable', function(){ expect(using('.doc-example-live').binding('1 + 2')).toBe('3'); expect(using('.doc-example-live').element('div:last').text()). toMatch(/1 \+ 2/); }); </doc:scenario> </doc:example> */ angularWidget("@ng:non-bindable", noop); /** * @ngdoc widget * @name angular.widget.ng:view * * @description * # Overview * `ng:view` is a widget that complements the {@link angular.service.$route $route} service by * including the rendered template of the current route into the main layout (`index.html`) file. * Every time the current route changes, the included view changes with it according to the * configuration of the `$route` service. * * This widget provides functionality similar to {@link angular.widget.ng:include ng:include} when * used like this: * * <ng:include src="$route.current.template" scope="$route.current.scope"></ng:include> * * * # Advantages * Compared to `ng:include`, `ng:view` offers these advantages: * * - shorter syntax * - more efficient execution * - doesn't require `$route` service to be available on the root scope * * * @example <doc:example> <doc:source jsfiddle="false"> <script> function MyCtrl($route) { $route.when('/overview', { controller: OverviewCtrl, template: 'partials/guide/dev_guide.overview.html'}); $route.when('/bootstrap', { controller: BootstrapCtrl, template: 'partials/guide/dev_guide.bootstrap.auto_bootstrap.html'}); }; MyCtrl.$inject = ['$route']; function BootstrapCtrl(){} function OverviewCtrl(){} </script> <div ng:controller="MyCtrl"> <a href="overview">overview</a> | <a href="bootstrap">bootstrap</a> | <a href="undefined">undefined</a> <br/> The view is included below: <hr/> <ng:view></ng:view> </div> </doc:source> <doc:scenario> it('should load templates', function(){ element('.doc-example-live a:contains(overview)').click(); expect(element('.doc-example-live ng\\:view').text()).toMatch(/Developer Guide: Overview/); element('.doc-example-live a:contains(bootstrap)').click(); expect(element('.doc-example-live ng\\:view').text()).toMatch(/Developer Guide: Initializing Angular: Automatic Initiialization/); }); </doc:scenario> </doc:example> */ angularWidget('ng:view', function(element) { var compiler = this; if (!element[0]['ng:compiled']) { element[0]['ng:compiled'] = true; return annotate('$xhr.cache', '$route', function($xhr, $route, element){ var template; var changeCounter = 0; this.$on('$afterRouteChange', function(){ changeCounter++; }); this.$watch(function(){return changeCounter;}, function() { var template = $route.current && $route.current.template; if (template) { //xhr's callback must be async, see commit history for more info $xhr('GET', template, function(code, response) { element.html(response); compiler.compile(element)($route.current.scope); }); } else { element.html(''); } }); }); } else { compiler.descend(true); compiler.directives(true); } }); /** * @ngdoc widget * @name angular.widget.ng:pluralize * * @description * # Overview * ng:pluralize is a widget that displays messages according to en-US localization rules. * These rules are bundled with angular.js and the rules can be overridden * (see {@link guide/dev_guide.i18n Angular i18n} dev guide). You configure ng:pluralize by * specifying the mappings between * {@link http://unicode.org/repos/cldr-tmp/trunk/diff/supplemental/language_plural_rules.html * plural categories} and the strings to be displayed. * * # Plural categories and explicit number rules * There are two * {@link http://unicode.org/repos/cldr-tmp/trunk/diff/supplemental/language_plural_rules.html * plural categories} in Angular's default en-US locale: "one" and "other". * * While a pural category may match many numbers (for example, in en-US locale, "other" can match * any number that is not 1), an explicit number rule can only match one number. For example, the * explicit number rule for "3" matches the number 3. You will see the use of plural categories * and explicit number rules throughout later parts of this documentation. * * # Configuring ng:pluralize * You configure ng:pluralize by providing 2 attributes: `count` and `when`. * You can also provide an optional attribute, `offset`. * * The value of the `count` attribute can be either a string or an {@link guide/dev_guide.expressions * Angular expression}; these are evaluated on the current scope for its binded value. * * The `when` attribute specifies the mappings between plural categories and the actual * string to be displayed. The value of the attribute should be a JSON object so that Angular * can interpret it correctly. * * The following example shows how to configure ng:pluralize: * * <pre> * <ng:pluralize count="personCount" when="{'0': 'Nobody is viewing.', * 'one': '1 person is viewing.', * 'other': '{} people are viewing.'}"> * </ng:pluralize> *</pre> * * In the example, `"0: Nobody is viewing."` is an explicit number rule. If you did not * specify this rule, 0 would be matched to the "other" category and "0 people are viewing" * would be shown instead of "Nobody is viewing". You can specify an explicit number rule for * other numbers, for example 12, so that instead of showing "12 people are viewing", you can * show "a dozen people are viewing". * * You can use a set of closed braces(`{}`) as a placeholder for the number that you want substituted * into pluralized strings. In the previous example, Angular will replace `{}` with * <span ng:non-bindable>`{{personCount}}`</span>. The closed braces `{}` is a placeholder * for <span ng:non-bindable>{{numberExpression}}</span>. * * # Configuring ng:pluralize with offset * The `offset` attribute allows further customization of pluralized text, which can result in * a better user experience. For example, instead of the message "4 people are viewing this document", * you might display "John, Kate and 2 others are viewing this document". * The offset attribute allows you to offset a number by any desired value. * Let's take a look at an example: * * <pre> * <ng:pluralize count="personCount" offset=2 * when="{'0': 'Nobody is viewing.', * '1': '{{person1}} is viewing.', * '2': '{{person1}} and {{person2}} are viewing.', * 'one': '{{person1}}, {{person2}} and one other person are viewing.', * 'other': '{{person1}}, {{person2}} and {} other people are viewing.'}"> * </ng:pluralize> * </pre> * * Notice that we are still using two plural categories(one, other), but we added * three explicit number rules 0, 1 and 2. * When one person, perhaps John, views the document, "John is viewing" will be shown. * When three people view the document, no explicit number rule is found, so * an offset of 2 is taken off 3, and Angular uses 1 to decide the plural category. * In this case, plural category 'one' is matched and "John, Marry and one other person are viewing" * is shown. * * Note that when you specify offsets, you must provide explicit number rules for * numbers from 0 up to and including the offset. If you use an offset of 3, for example, * you must provide explicit number rules for 0, 1, 2 and 3. You must also provide plural strings for * plural categories "one" and "other". * * @param {string|expression} count The variable to be bounded to. * @param {string} when The mapping between plural category to its correspoding strings. * @param {number=} offset Offset to deduct from the total number. * * @example <doc:example> <doc:source> Person 1:<input type="text" name="person1" value="Igor" /><br/> Person 2:<input type="text" name="person2" value="Misko" /><br/> Number of People:<input type="text" name="personCount" value="1" /><br/> <!--- Example with simple pluralization rules for en locale ---> Without Offset: <ng:pluralize count="personCount" when="{'0': 'Nobody is viewing.', 'one': '1 person is viewing.', 'other': '{} people are viewing.'}"> </ng:pluralize><br> <!--- Example with offset ---> With Offset(2): <ng:pluralize count="personCount" offset=2 when="{'0': 'Nobody is viewing.', '1': '{{person1}} is viewing.', '2': '{{person1}} and {{person2}} are viewing.', 'one': '{{person1}}, {{person2}} and one other person are viewing.', 'other': '{{person1}}, {{person2}} and {} other people are viewing.'}"> </ng:pluralize> </doc:source> <doc:scenario> it('should show correct pluralized string', function(){ expect(element('.doc-example-live .ng-pluralize:first').text()). toBe('1 person is viewing.'); expect(element('.doc-example-live .ng-pluralize:last').text()). toBe('Igor is viewing.'); using('.doc-example-live').input('personCount').enter('0'); expect(element('.doc-example-live .ng-pluralize:first').text()). toBe('Nobody is viewing.'); expect(element('.doc-example-live .ng-pluralize:last').text()). toBe('Nobody is viewing.'); using('.doc-example-live').input('personCount').enter('2'); expect(element('.doc-example-live .ng-pluralize:first').text()). toBe('2 people are viewing.'); expect(element('.doc-example-live .ng-pluralize:last').text()). toBe('Igor and Misko are viewing.'); using('.doc-example-live').input('personCount').enter('3'); expect(element('.doc-example-live .ng-pluralize:first').text()). toBe('3 people are viewing.'); expect(element('.doc-example-live .ng-pluralize:last').text()). toBe('Igor, Misko and one other person are viewing.'); using('.doc-example-live').input('personCount').enter('4'); expect(element('.doc-example-live .ng-pluralize:first').text()). toBe('4 people are viewing.'); expect(element('.doc-example-live .ng-pluralize:last').text()). toBe('Igor, Misko and 2 other people are viewing.'); }); it('should show data-binded names', function(){ using('.doc-example-live').input('personCount').enter('4'); expect(element('.doc-example-live .ng-pluralize:last').text()). toBe('Igor, Misko and 2 other people are viewing.'); using('.doc-example-live').input('person1').enter('Di'); using('.doc-example-live').input('person2').enter('Vojta'); expect(element('.doc-example-live .ng-pluralize:last').text()). toBe('Di, Vojta and 2 other people are viewing.'); }); </doc:scenario> </doc:example> */ angularWidget('ng:pluralize', function(element) { var numberExp = element.attr('count'), whenExp = element.attr('when'), offset = element.attr('offset') || 0; return annotate('$locale', function($locale, element) { var scope = this, whens = scope.$eval(whenExp), whensExpFns = {}; forEach(whens, function(expression, key) { whensExpFns[key] = compileBindTemplate(expression.replace(/{}/g, '{{' + numberExp + '-' + offset + '}}')); }); scope.$watch(function() { var value = parseFloat(scope.$eval(numberExp)); if (!isNaN(value)) { //if explicit number rule such as 1, 2, 3... is defined, just use it. Otherwise, //check it against pluralization rules in $locale service if (!whens[value]) value = $locale.pluralCat(value - offset); return whensExpFns[value](scope, element, true); } else { return ''; } }, function(scope, newVal) { element.text(newVal); }); }); }); var browserSingleton; angularService('$browser', function($log, $sniffer) { if (!browserSingleton) { browserSingleton = new Browser(window, jqLite(window.document), jqLite(window.document.body), XHR, $log, $sniffer); browserSingleton.bind(); } return browserSingleton; }, {$inject: ['$log', '$sniffer']}); extend(angular, { // disabled for now until we agree on public name //'annotate': annotate, 'compile': compile, 'scope': createScope, 'copy': copy, 'extend': extend, 'equals': equals, 'forEach': forEach, 'injector': createInjector, 'noop':noop, 'bind':bind, 'toJson': toJson, 'fromJson': fromJson, 'identity':identity, 'isUndefined': isUndefined, 'isDefined': isDefined, 'isString': isString, 'isFunction': isFunction, 'isObject': isObject, 'isNumber': isNumber, 'isArray': isArray, 'version': version, 'isDate': isDate, 'lowercase': lowercase, 'uppercase': uppercase }); //try to bind to jquery now so that one can write angular.element().read() //but we will rebind on bootstrap again. bindJQuery(); jqLiteWrap(document).ready(function(){ angularInit(angularJsConfig(document), document); }); })(window, document); angular.element(document).find('head').append('<style type="text/css">@charset "UTF-8";[ng\\:cloak],.ng-cloak{display:none;}.ng-format-negative{color:red;}.ng-exception{border:2px solid #FF0000;font-family:"Courier New",Courier,monospace;font-size:smaller;white-space:pre;}.ng-validation-error{border:2px solid #FF0000;}#ng-callout{margin:0;padding:0;border:0;outline:0;font-size:13px;font-weight:normal;font-family:Verdana,Arial,Helvetica,sans-serif;vertical-align:baseline;background:transparent;text-decoration:none;}#ng-callout .ng-arrow-left{background-image:url("data:image/gif;base64,R0lGODlhCwAXAKIAAMzMzO/v7/f39////////wAAAAAAAAAAACH5BAUUAAQALAAAAAALABcAAAMrSLoc/AG8FeUUIN+sGebWAnbKSJodqqlsOxJtqYooU9vvk+vcJIcTkg+QAAA7");background-repeat:no-repeat;background-position:left top;position:absolute;z-index:101;left:-12px;height:23px;width:10px;top:-3px;}#ng-callout .ng-arrow-right{background-image:url("data:image/gif;base64,R0lGODlhCwAXAKIAAMzMzO/v7/f39////////wAAAAAAAAAAACH5BAUUAAQALAAAAAALABcAAAMrCLTcoM29yN6k9socs91e5X3EyJloipYrO4ohTMqA0Fn2XVNswJe+H+SXAAA7");background-repeat:no-repeat;background-position:left top;position:absolute;z-index:101;height:23px;width:11px;top:-2px;}#ng-callout{position:absolute;z-index:100;border:2px solid #CCCCCC;background-color:#fff;}#ng-callout .ng-content{padding:10px 10px 10px 10px;color:#333333;}#ng-callout .ng-title{background-color:#CCCCCC;text-align:left;padding-left:8px;padding-bottom:5px;padding-top:2px;font-weight:bold;}.ng-input-indicator-wait{background-image:url("data:image/png;base64,R0lGODlhEAAQAPQAAP///wAAAPDw8IqKiuDg4EZGRnp6egAAAFhYWCQkJKysrL6+vhQUFJycnAQEBDY2NmhoaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACH/C05FVFNDQVBFMi4wAwEAAAAh/hpDcmVhdGVkIHdpdGggYWpheGxvYWQuaW5mbwAh+QQJCgAAACwAAAAAEAAQAAAFdyAgAgIJIeWoAkRCCMdBkKtIHIngyMKsErPBYbADpkSCwhDmQCBethRB6Vj4kFCkQPG4IlWDgrNRIwnO4UKBXDufzQvDMaoSDBgFb886MiQadgNABAokfCwzBA8LCg0Egl8jAggGAA1kBIA1BAYzlyILczULC2UhACH5BAkKAAAALAAAAAAQABAAAAV2ICACAmlAZTmOREEIyUEQjLKKxPHADhEvqxlgcGgkGI1DYSVAIAWMx+lwSKkICJ0QsHi9RgKBwnVTiRQQgwF4I4UFDQQEwi6/3YSGWRRmjhEETAJfIgMFCnAKM0KDV4EEEAQLiF18TAYNXDaSe3x6mjidN1s3IQAh+QQJCgAAACwAAAAAEAAQAAAFeCAgAgLZDGU5jgRECEUiCI+yioSDwDJyLKsXoHFQxBSHAoAAFBhqtMJg8DgQBgfrEsJAEAg4YhZIEiwgKtHiMBgtpg3wbUZXGO7kOb1MUKRFMysCChAoggJCIg0GC2aNe4gqQldfL4l/Ag1AXySJgn5LcoE3QXI3IQAh+QQJCgAAACwAAAAAEAAQAAAFdiAgAgLZNGU5joQhCEjxIssqEo8bC9BRjy9Ag7GILQ4QEoE0gBAEBcOpcBA0DoxSK/e8LRIHn+i1cK0IyKdg0VAoljYIg+GgnRrwVS/8IAkICyosBIQpBAMoKy9dImxPhS+GKkFrkX+TigtLlIyKXUF+NjagNiEAIfkECQoAAAAsAAAAABAAEAAABWwgIAICaRhlOY4EIgjH8R7LKhKHGwsMvb4AAy3WODBIBBKCsYA9TjuhDNDKEVSERezQEL0WrhXucRUQGuik7bFlngzqVW9LMl9XWvLdjFaJtDFqZ1cEZUB0dUgvL3dgP4WJZn4jkomWNpSTIyEAIfkECQoAAAAsAAAAABAAEAAABX4gIAICuSxlOY6CIgiD8RrEKgqGOwxwUrMlAoSwIzAGpJpgoSDAGifDY5kopBYDlEpAQBwevxfBtRIUGi8xwWkDNBCIwmC9Vq0aiQQDQuK+VgQPDXV9hCJjBwcFYU5pLwwHXQcMKSmNLQcIAExlbH8JBwttaX0ABAcNbWVbKyEAIfkECQoAAAAsAAAAABAAEAAABXkgIAICSRBlOY7CIghN8zbEKsKoIjdFzZaEgUBHKChMJtRwcWpAWoWnifm6ESAMhO8lQK0EEAV3rFopIBCEcGwDKAqPh4HUrY4ICHH1dSoTFgcHUiZjBhAJB2AHDykpKAwHAwdzf19KkASIPl9cDgcnDkdtNwiMJCshACH5BAkKAAAALAAAAAAQABAAAAV3ICACAkkQZTmOAiosiyAoxCq+KPxCNVsSMRgBsiClWrLTSWFoIQZHl6pleBh6suxKMIhlvzbAwkBWfFWrBQTxNLq2RG2yhSUkDs2b63AYDAoJXAcFRwADeAkJDX0AQCsEfAQMDAIPBz0rCgcxky0JRWE1AmwpKyEAIfkECQoAAAAsAAAAABAAEAAABXkgIAICKZzkqJ4nQZxLqZKv4NqNLKK2/Q4Ek4lFXChsg5ypJjs1II3gEDUSRInEGYAw6B6zM4JhrDAtEosVkLUtHA7RHaHAGJQEjsODcEg0FBAFVgkQJQ1pAwcDDw8KcFtSInwJAowCCA6RIwqZAgkPNgVpWndjdyohACH5BAkKAAAALAAAAAAQABAAAAV5ICACAimc5KieLEuUKvm2xAKLqDCfC2GaO9eL0LABWTiBYmA06W6kHgvCqEJiAIJiu3gcvgUsscHUERm+kaCxyxa+zRPk0SgJEgfIvbAdIAQLCAYlCj4DBw0IBQsMCjIqBAcPAooCBg9pKgsJLwUFOhCZKyQDA3YqIQAh+QQJCgAAACwAAAAAEAAQAAAFdSAgAgIpnOSonmxbqiThCrJKEHFbo8JxDDOZYFFb+A41E4H4OhkOipXwBElYITDAckFEOBgMQ3arkMkUBdxIUGZpEb7kaQBRlASPg0FQQHAbEEMGDSVEAA1QBhAED1E0NgwFAooCDWljaQIQCE5qMHcNhCkjIQAh+QQJCgAAACwAAAAAEAAQAAAFeSAgAgIpnOSoLgxxvqgKLEcCC65KEAByKK8cSpA4DAiHQ/DkKhGKh4ZCtCyZGo6F6iYYPAqFgYy02xkSaLEMV34tELyRYNEsCQyHlvWkGCzsPgMCEAY7Cg04Uk48LAsDhRA8MVQPEF0GAgqYYwSRlycNcWskCkApIyEAOwAAAAAAAAAAAA==");background-position:right;background-repeat:no-repeat;}</style>');
src/components/dataVisualization/eCharts/Radar.js
SmiletoSUN/react-redux-demo
import React from 'react'; import ECharts from 'echarts-for-react'; const option = { title: { text: '基础雷达图', }, tooltip: {}, legend: { data: ['预算分配(Allocated Budget)', '实际开销(Actual Spending)'], }, radar: { // shape: 'circle', name: { textStyle: { color: '#fff', backgroundColor: '#999', borderRadius: 3, padding: [3, 5], }, }, indicator: [ { name: '销售(sales)', max: 6500 }, { name: '管理(Administration)', max: 16000 }, { name: '信息技术(Information Techology)', max: 30000 }, { name: '客服(Customer Support)', max: 38000 }, { name: '研发(Development)', max: 52000 }, { name: '市场(Marketing)', max: 25000 }, ], }, series: [{ name: '预算 vs 开销(Budget vs spending)', type: 'radar', // areaStyle: {normal: {}}, data: [ { value: [4300, 10000, 28000, 35000, 50000, 19000], name: '预算分配(Allocated Budget)', }, { value: [5000, 14000, 28000, 31000, 42000, 21000], name: '实际开销(Actual Spending)', }, ], }], }; const Radar = () => ( <ECharts option={option} className="react_for_echarts" /> ); export default Radar;
ajax/libs/yasr/1.1.6/yasr.min.js
qrohlf/cdnjs
!function(e){if("object"==typeof exports)module.exports=e();else if("function"==typeof define&&define.amd)define(e);else{var t;"undefined"!=typeof window?t=window:"undefined"!=typeof global?t=global:"undefined"!=typeof self&&(t=self),t.YASR=e()}}(function(){var e;return function t(e,n,r){function i(a,s){if(!n[a]){if(!e[a]){var l="function"==typeof require&&require;if(!s&&l)return l(a,!0);if(o)return o(a,!0);throw new Error("Cannot find module '"+a+"'")}var u=n[a]={exports:{}};e[a][0].call(u.exports,function(t){var n=e[a][1][t];return i(n?n:t)},u,u.exports,t,e,n,r)}return n[a].exports}for(var o="function"==typeof require&&require,a=0;a<r.length;a++)i(r[a]);return i}({1:[function(t,n,r){!function(n,i,o){!function(n){"use strict";"function"==typeof e&&e.amd?e("datatables",["jquery"],n):"object"==typeof r?n(t("jquery")):jQuery&&!jQuery.fn.dataTable&&n(jQuery)}(function(e){"use strict";function t(n){var r,i,o="a aa ai ao as b fn i m o s ",a={};e.each(n,function(e){r=e.match(/^([^A-Z]+?)([A-Z])/),r&&-1!==o.indexOf(r[1]+" ")&&(i=e.replace(r[0],r[2].toLowerCase()),a[i]=e,"o"===r[1]&&t(n[e]))}),n._hungarianMap=a}function r(n,i,a){n._hungarianMap||t(n);var s;e.each(i,function(t){s=n._hungarianMap[t],s===o||!a&&i[s]!==o||("o"===s.charAt(0)?(i[s]||(i[s]={}),e.extend(!0,i[s],i[t]),r(n[s],i[s],a)):i[s]=i[t])})}function a(e){var t=Xt.defaults.oLanguage,n=e.sZeroRecords;!e.sEmptyTable&&n&&"No data available in table"===t.sEmptyTable&&It(e,e,"sZeroRecords","sEmptyTable"),!e.sLoadingRecords&&n&&"Loading..."===t.sLoadingRecords&&It(e,e,"sZeroRecords","sLoadingRecords"),e.sInfoThousands&&(e.sThousands=e.sInfoThousands);var r=e.sDecimal;r&&Vt(r)}function s(e){gn(e,"ordering","bSort"),gn(e,"orderMulti","bSortMulti"),gn(e,"orderClasses","bSortClasses"),gn(e,"orderCellsTop","bSortCellsTop"),gn(e,"order","aaSorting"),gn(e,"orderFixed","aaSortingFixed"),gn(e,"paging","bPaginate"),gn(e,"pagingType","sPaginationType"),gn(e,"pageLength","iDisplayLength"),gn(e,"searching","bFilter")}function l(e){gn(e,"orderable","bSortable"),gn(e,"orderData","aDataSort"),gn(e,"orderSequence","asSorting"),gn(e,"orderDataType","sortDataType")}function u(t){var n=t.oBrowser,r=e("<div/>").css({position:"absolute",top:0,left:0,height:1,width:1,overflow:"hidden"}).append(e("<div/>").css({position:"absolute",top:1,left:1,width:100,overflow:"scroll"}).append(e('<div class="test"/>').css({width:"100%",height:10}))).appendTo("body"),i=r.find(".test");n.bScrollOversize=100===i[0].offsetWidth,n.bScrollbarLeft=1!==i.offset().left,r.remove()}function c(e,t,n,r,i,a){var s,l=r,u=!1;for(n!==o&&(s=n,u=!0);l!==i;)e.hasOwnProperty(l)&&(s=u?t(s,e[l],l,e):e[l],u=!0,l+=a);return s}function f(t,n){var r=Xt.defaults.column,o=t.aoColumns.length,a=e.extend({},Xt.models.oColumn,r,{nTh:n?n:i.createElement("th"),sTitle:r.sTitle?r.sTitle:n?n.innerHTML:"",aDataSort:r.aDataSort?r.aDataSort:[o],mData:r.mData?r.mData:o,idx:o});t.aoColumns.push(a);var s=t.aoPreSearchCols;s[o]=e.extend({},Xt.models.oSearch,s[o]),d(t,o,null)}function d(t,n,i){var a=t.aoColumns[n],s=t.oClasses,u=e(a.nTh);if(!a.sWidthOrig){a.sWidthOrig=u.attr("width")||null;var c=(u.attr("style")||"").match(/width:\s*(\d+[pxem%])/);c&&(a.sWidthOrig=c[1])}i!==o&&null!==i&&(l(i),r(Xt.defaults.column,i),i.mDataProp===o||i.mData||(i.mData=i.mDataProp),i.sType&&(a._sManualType=i.sType),i.className&&!i.sClass&&(i.sClass=i.className),e.extend(a,i),It(a,i,"sWidth","sWidthOrig"),"number"==typeof i.iDataSort&&(a.aDataSort=[i.iDataSort]),It(a,i,"aDataSort"));var f=a.mData,d=L(f),h=a.mRender?L(a.mRender):null,p=function(e){return"string"==typeof e&&-1!==e.indexOf("@")};a._bAttrSrc=e.isPlainObject(f)&&(p(f.sort)||p(f.type)||p(f.filter)),a.fnGetData=function(e,t){var n=d(e,t);return a.mRender&&t&&""!==t?h(n,t,e):n},a.fnSetData=N(f),t.oFeatures.bSort||(a.bSortable=!1,u.addClass(s.sSortableNone));var g=-1!==e.inArray("asc",a.asSorting),m=-1!==e.inArray("desc",a.asSorting);a.bSortable&&(g||m)?g&&!m?(a.sSortingClass=s.sSortableAsc,a.sSortingClassJUI=s.sSortJUIAscAllowed):!g&&m?(a.sSortingClass=s.sSortableDesc,a.sSortingClassJUI=s.sSortJUIDescAllowed):(a.sSortingClass=s.sSortable,a.sSortingClassJUI=s.sSortJUI):(a.sSortingClass=s.sSortableNone,a.sSortingClassJUI="")}function h(e){if(e.oFeatures.bAutoWidth!==!1){var t=e.aoColumns;mt(e);for(var n=0,r=t.length;r>n;n++)t[n].nTh.style.width=t[n].sWidth}var i=e.oScroll;(""!==i.sY||""!==i.sX)&&pt(e),Ft(e,null,"column-sizing",[e])}function p(e,t){var n=v(e,"bVisible");return"number"==typeof n[t]?n[t]:null}function g(t,n){var r=v(t,"bVisible"),i=e.inArray(n,r);return-1!==i?i:null}function m(e){return v(e,"bVisible").length}function v(t,n){var r=[];return e.map(t.aoColumns,function(e,t){e[n]&&r.push(t)}),r}function y(e){var t,n,r,i,a,s,l,u,c,f=e.aoColumns,d=e.aoData,h=Xt.ext.type.detect;for(t=0,n=f.length;n>t;t++)if(l=f[t],c=[],!l.sType&&l._sManualType)l.sType=l._sManualType;else if(!l.sType){for(r=0,i=h.length;i>r;r++){for(a=0,s=d.length;s>a&&(c[a]===o&&(c[a]=T(e,a,t,"type")),u=h[r](c[a],e),u&&"html"!==u);a++);if(u){l.sType=u;break}}l.sType||(l.sType="string")}}function b(t,n,r,i){var a,s,l,u,c,d,h,p=t.aoColumns;if(n)for(a=n.length-1;a>=0;a--){h=n[a];var g=h.targets!==o?h.targets:h.aTargets;for(e.isArray(g)||(g=[g]),l=0,u=g.length;u>l;l++)if("number"==typeof g[l]&&g[l]>=0){for(;p.length<=g[l];)f(t);i(g[l],h)}else if("number"==typeof g[l]&&g[l]<0)i(p.length+g[l],h);else if("string"==typeof g[l])for(c=0,d=p.length;d>c;c++)("_all"==g[l]||e(p[c].nTh).hasClass(g[l]))&&i(c,h)}if(r)for(a=0,s=r.length;s>a;a++)i(a,r[a])}function x(t,n,r,i){var o=t.aoData.length,a=e.extend(!0,{},Xt.models.oRow,{src:r?"dom":"data"});a._aData=n,t.aoData.push(a);for(var s=t.aoColumns,l=0,u=s.length;u>l;l++)r&&D(t,o,l,T(t,o,l)),s[l].sType=null;return t.aiDisplayMaster.push(o),t.oFeatures.bDeferRender||H(t,o,r,i),o}function w(t,n){var r;return n instanceof e||(n=e(n)),n.map(function(e,n){return r=j(t,n),x(t,r.data,n,r.cells)})}function S(e,t){return t._DT_RowIndex!==o?t._DT_RowIndex:null}function C(t,n,r){return e.inArray(r,t.aoData[n].anCells)}function T(e,t,n,r){var i=e.aoColumns[n],a=e.aoData[t]._aData,s=i.fnGetData(a,r);if(s===o)return e.iDrawError!=e.iDraw&&null===i.sDefaultContent&&(Ht(e,0,"Requested unknown parameter "+("function"==typeof i.mData?"{function}":"'"+i.mData+"'")+" for row "+t,4),e.iDrawError=e.iDraw),i.sDefaultContent;if(s!==a&&null!==s||null===i.sDefaultContent){if("function"==typeof s)return s()}else s=i.sDefaultContent;return null===s&&"display"==r?"":s}function D(e,t,n,r){var i=e.aoColumns[n],o=e.aoData[t]._aData;i.fnSetData(o,r)}function k(t){return e.map(t.match(/(\\.|[^\.])+/g),function(e){return e.replace("\\.",".")})}function L(t){if(e.isPlainObject(t)){var n={};return e.each(t,function(e,t){t&&(n[e]=L(t))}),function(e,t,r){var i=n[t]||n._;return i!==o?i(e,t,r):e}}if(null===t)return function(e){return e};if("function"==typeof t)return function(e,n,r){return t(e,n,r)};if("string"!=typeof t||-1===t.indexOf(".")&&-1===t.indexOf("[")&&-1===t.indexOf("("))return function(e){return e[t]};var r=function(e,t,n){var i,a,s,l;if(""!==n)for(var u=k(n),c=0,f=u.length;f>c;c++){if(i=u[c].match(mn),a=u[c].match(vn),i){u[c]=u[c].replace(mn,""),""!==u[c]&&(e=e[u[c]]),s=[],u.splice(0,c+1),l=u.join(".");for(var d=0,h=e.length;h>d;d++)s.push(r(e[d],t,l));var p=i[0].substring(1,i[0].length-1);e=""===p?s:s.join(p);break}if(a)u[c]=u[c].replace(vn,""),e=e[u[c]]();else{if(null===e||e[u[c]]===o)return o;e=e[u[c]]}}return e};return function(e,n){return r(e,n,t)}}function N(t){if(e.isPlainObject(t))return N(t._);if(null===t)return function(){};if("function"==typeof t)return function(e,n){t(e,"set",n)};if("string"!=typeof t||-1===t.indexOf(".")&&-1===t.indexOf("[")&&-1===t.indexOf("("))return function(e,n){e[t]=n};var n=function(e,t,r){for(var i,a,s,l,u,c=k(r),f=c[c.length-1],d=0,h=c.length-1;h>d;d++){if(a=c[d].match(mn),s=c[d].match(vn),a){c[d]=c[d].replace(mn,""),e[c[d]]=[],i=c.slice(),i.splice(0,d+1),u=i.join(".");for(var p=0,g=t.length;g>p;p++)l={},n(l,t[p],u),e[c[d]].push(l);return}s&&(c[d]=c[d].replace(vn,""),e=e[c[d]](t)),(null===e[c[d]]||e[c[d]]===o)&&(e[c[d]]={}),e=e[c[d]]}f.match(vn)?e=e[f.replace(vn,"")](t):e[f.replace(mn,"")]=t};return function(e,r){return n(e,r,t)}}function A(e){return cn(e.aoData,"_aData")}function _(e){e.aoData.length=0,e.aiDisplayMaster.length=0,e.aiDisplay.length=0}function M(e,t,n){for(var r=-1,i=0,a=e.length;a>i;i++)e[i]==t?r=i:e[i]>t&&e[i]--;-1!=r&&n===o&&e.splice(r,1)}function E(e,t,n,r){var i,a,s=e.aoData[t];if("dom"!==n&&(n&&"auto"!==n||"dom"!==s.src)){var l=s.anCells;if(l)for(i=0,a=l.length;a>i;i++)l[i].innerHTML=T(e,t,i,"display")}else s._aData=j(e,s).data;s._aSortData=null,s._aFilterData=null;var u=e.aoColumns;if(r!==o)u[r].sType=null;else for(i=0,a=u.length;a>i;i++)u[i].sType=null;I(s)}function j(t,n){var r,i,o,a,s=[],l=[],u=n.firstChild,c=0,f=t.aoColumns,d=function(e,t,n){if("string"==typeof e){var r=e.indexOf("@");if(-1!==r){var i=e.substring(r+1);o["@"+i]=n.getAttribute(i)}}},h=function(t){i=f[c],a=e.trim(t.innerHTML),i&&i._bAttrSrc?(o={display:a},d(i.mData.sort,o,t),d(i.mData.type,o,t),d(i.mData.filter,o,t),s.push(o)):s.push(a),l.push(t),c++};if(u)for(;u;)r=u.nodeName.toUpperCase(),("TD"==r||"TH"==r)&&h(u),u=u.nextSibling;else{l=n.anCells;for(var p=0,g=l.length;g>p;p++)h(l[p])}return{data:s,cells:l}}function H(e,t,n,r){var o,a,s,l,u,c=e.aoData[t],f=c._aData,d=[];if(null===c.nTr){for(o=n||i.createElement("tr"),c.nTr=o,c.anCells=d,o._DT_RowIndex=t,I(c),l=0,u=e.aoColumns.length;u>l;l++)s=e.aoColumns[l],a=n?r[l]:i.createElement(s.sCellType),d.push(a),(!n||s.mRender||s.mData!==l)&&(a.innerHTML=T(e,t,l,"display")),s.sClass&&(a.className+=" "+s.sClass),s.bVisible&&!n?o.appendChild(a):!s.bVisible&&n&&a.parentNode.removeChild(a),s.fnCreatedCell&&s.fnCreatedCell.call(e.oInstance,a,T(e,t,l,"display"),f,t,l);Ft(e,"aoRowCreatedCallback",null,[o,f,t])}c.nTr.setAttribute("role","row")}function I(t){var n=t.nTr,r=t._aData;if(n){if(r.DT_RowId&&(n.id=r.DT_RowId),r.DT_RowClass){var i=r.DT_RowClass.split(" ");t.__rowc=t.__rowc?pn(t.__rowc.concat(i)):i,e(n).removeClass(t.__rowc.join(" ")).addClass(r.DT_RowClass)}r.DT_RowData&&e(n).data(r.DT_RowData)}}function O(t){var n,r,i,o,a,s=t.nTHead,l=t.nTFoot,u=0===e("th, td",s).length,c=t.oClasses,f=t.aoColumns;for(u&&(o=e("<tr/>").appendTo(s)),n=0,r=f.length;r>n;n++)a=f[n],i=e(a.nTh).addClass(a.sClass),u&&i.appendTo(o),t.oFeatures.bSort&&(i.addClass(a.sSortingClass),a.bSortable!==!1&&(i.attr("tabindex",t.iTabIndex).attr("aria-controls",t.sTableId),Nt(t,a.nTh,n))),a.sTitle!=i.html()&&i.html(a.sTitle),zt(t,"header")(t,i,a,c);if(u&&z(t.aoHeader,s),e(s).find(">tr").attr("role","row"),e(s).find(">tr>th, >tr>td").addClass(c.sHeaderTH),e(l).find(">tr>th, >tr>td").addClass(c.sFooterTH),null!==l){var d=t.aoFooter[0];for(n=0,r=d.length;r>n;n++)a=f[n],a.nTf=d[n].cell,a.sClass&&e(a.nTf).addClass(a.sClass)}}function R(t,n,r){var i,a,s,l,u,c,f,d,h,p=[],g=[],m=t.aoColumns.length;if(n){for(r===o&&(r=!1),i=0,a=n.length;a>i;i++){for(p[i]=n[i].slice(),p[i].nTr=n[i].nTr,s=m-1;s>=0;s--)t.aoColumns[s].bVisible||r||p[i].splice(s,1);g.push([])}for(i=0,a=p.length;a>i;i++){if(f=p[i].nTr)for(;c=f.firstChild;)f.removeChild(c);for(s=0,l=p[i].length;l>s;s++)if(d=1,h=1,g[i][s]===o){for(f.appendChild(p[i][s].cell),g[i][s]=1;p[i+d]!==o&&p[i][s].cell==p[i+d][s].cell;)g[i+d][s]=1,d++;for(;p[i][s+h]!==o&&p[i][s].cell==p[i][s+h].cell;){for(u=0;d>u;u++)g[i+u][s+h]=1;h++}e(p[i][s].cell).attr("rowspan",d).attr("colspan",h)}}}}function P(t){var n=Ft(t,"aoPreDrawCallback","preDraw",[t]);if(-1!==e.inArray(!1,n))return void dt(t,!1);var r=[],i=0,a=t.asStripeClasses,s=a.length,l=(t.aoOpenRows.length,t.oLanguage),u=t.iInitDisplayStart,c="ssp"==Bt(t),f=t.aiDisplay;t.bDrawing=!0,u!==o&&-1!==u&&(t._iDisplayStart=c?u:u>=t.fnRecordsDisplay()?0:u,t.iInitDisplayStart=-1);var d=t._iDisplayStart,h=t.fnDisplayEnd();if(t.bDeferLoading)t.bDeferLoading=!1,t.iDraw++,dt(t,!1);else if(c){if(!t.bDestroying&&!V(t))return}else t.iDraw++;if(0!==f.length)for(var p=c?0:d,g=c?t.aoData.length:h,v=p;g>v;v++){var y=f[v],b=t.aoData[y];null===b.nTr&&H(t,y);var x=b.nTr;if(0!==s){var w=a[i%s];b._sRowStripe!=w&&(e(x).removeClass(b._sRowStripe).addClass(w),b._sRowStripe=w)}Ft(t,"aoRowCallback",null,[x,b._aData,i,v]),r.push(x),i++}else{var S=l.sZeroRecords;1==t.iDraw&&"ajax"==Bt(t)?S=l.sLoadingRecords:l.sEmptyTable&&0===t.fnRecordsTotal()&&(S=l.sEmptyTable),r[0]=e("<tr/>",{"class":s?a[0]:""}).append(e("<td />",{valign:"top",colSpan:m(t),"class":t.oClasses.sRowEmpty}).html(S))[0]}Ft(t,"aoHeaderCallback","header",[e(t.nTHead).children("tr")[0],A(t),d,h,f]),Ft(t,"aoFooterCallback","footer",[e(t.nTFoot).children("tr")[0],A(t),d,h,f]);var C=e(t.nTBody);C.children().detach(),C.append(e(r)),Ft(t,"aoDrawCallback","draw",[t]),t.bSorted=!1,t.bFiltered=!1,t.bDrawing=!1}function F(e,t){var n=e.oFeatures,r=n.bSort,i=n.bFilter;r&&Dt(e),i?J(e,e.oPreviousSearch):e.aiDisplay=e.aiDisplayMaster.slice(),t!==!0&&(e._iDisplayStart=0),P(e)}function W(t){var n=t.oClasses,r=e(t.nTable),i=e("<div/>").insertBefore(r),o=t.oFeatures,a=e("<div/>",{id:t.sTableId+"_wrapper","class":n.sWrapper+(t.nTFoot?"":" "+n.sNoFooter)});t.nHolding=i[0],t.nTableWrapper=a[0],t.nTableReinsertBefore=t.nTable.nextSibling;for(var s,l,u,c,f,d,h=t.sDom.split(""),p=0;p<h.length;p++){if(s=null,l=h[p],"<"==l){if(u=e("<div/>")[0],c=h[p+1],"'"==c||'"'==c){for(f="",d=2;h[p+d]!=c;)f+=h[p+d],d++;if("H"==f?f=n.sJUIHeader:"F"==f&&(f=n.sJUIFooter),-1!=f.indexOf(".")){var g=f.split(".");u.id=g[0].substr(1,g[0].length-1),u.className=g[1]}else"#"==f.charAt(0)?u.id=f.substr(1,f.length-1):u.className=f;p+=d}a.append(u),a=e(u)}else if(">"==l)a=a.parent();else if("l"==l&&o.bPaginate&&o.bLengthChange)s=lt(t);else if("f"==l&&o.bFilter)s=G(t);else if("r"==l&&o.bProcessing)s=ft(t);else if("t"==l)s=ht(t);else if("i"==l&&o.bInfo)s=nt(t);else if("p"==l&&o.bPaginate)s=ut(t);else if(0!==Xt.ext.feature.length)for(var m=Xt.ext.feature,v=0,y=m.length;y>v;v++)if(l==m[v].cFeature){s=m[v].fnInit(t);break}if(s){var b=t.aanFeatures;b[l]||(b[l]=[]),b[l].push(s),a.append(s)}}i.replaceWith(a)}function z(t,n){var r,i,o,a,s,l,u,c,f,d,h,p=e(n).children("tr"),g=function(e,t,n){for(var r=e[t];r[n];)n++;return n};for(t.splice(0,t.length),o=0,l=p.length;l>o;o++)t.push([]);for(o=0,l=p.length;l>o;o++)for(r=p[o],c=0,i=r.firstChild;i;){if("TD"==i.nodeName.toUpperCase()||"TH"==i.nodeName.toUpperCase())for(f=1*i.getAttribute("colspan"),d=1*i.getAttribute("rowspan"),f=f&&0!==f&&1!==f?f:1,d=d&&0!==d&&1!==d?d:1,u=g(t,o,c),h=1===f?!0:!1,s=0;f>s;s++)for(a=0;d>a;a++)t[o+a][u+s]={cell:i,unique:h},t[o+a].nTr=r;i=i.nextSibling}}function B(e,t,n){var r=[];n||(n=e.aoHeader,t&&(n=[],z(n,t)));for(var i=0,o=n.length;o>i;i++)for(var a=0,s=n[i].length;s>a;a++)!n[i][a].unique||r[a]&&e.bSortCellsTop||(r[a]=n[i][a].cell);return r}function q(t,n,r){if(Ft(t,"aoServerParams","serverParams",[n]),n&&e.isArray(n)){var i={},o=/(.*?)\[\]$/;e.each(n,function(e,t){var n=t.name.match(o);if(n){var r=n[0];i[r]||(i[r]=[]),i[r].push(t.value)}else i[t.name]=t.value}),n=i}var a,s=t.ajax,l=t.oInstance;if(e.isPlainObject(s)&&s.data){a=s.data;var u=e.isFunction(a)?a(n):a;n=e.isFunction(a)&&u?u:e.extend(!0,n,u),delete s.data}var c={data:n,success:function(e){var n=e.error||e.sError;n&&t.oApi._fnLog(t,0,n),t.json=e,Ft(t,null,"xhr",[t,e]),r(e)},dataType:"json",cache:!1,type:t.sServerMethod,error:function(e,n){var r=t.oApi._fnLog;"parsererror"==n?r(t,0,"Invalid JSON response",1):4===e.readyState&&r(t,0,"Ajax error",7),dt(t,!1)}};t.oAjaxData=n,Ft(t,null,"preXhr",[t,n]),t.fnServerData?t.fnServerData.call(l,t.sAjaxSource,e.map(n,function(e,t){return{name:t,value:e}}),r,t):t.sAjaxSource||"string"==typeof s?t.jqXHR=e.ajax(e.extend(c,{url:s||t.sAjaxSource})):e.isFunction(s)?t.jqXHR=s.call(l,n,r,t):(t.jqXHR=e.ajax(e.extend(c,s)),s.data=a)}function V(e){if(e.bAjaxDataGet){e.iDraw++,dt(e,!0);var t=(e.aoColumns.length,U(e));return q(e,t,function(t){X(e,t)},e),!1}return!0}function U(t){var n,r,i,o,a=t.aoColumns,s=a.length,l=t.oFeatures,u=t.oPreviousSearch,c=t.aoPreSearchCols,f=[],d=Tt(t),h=t._iDisplayStart,p=l.bPaginate!==!1?t._iDisplayLength:-1,g=function(e,t){f.push({name:e,value:t})};g("sEcho",t.iDraw),g("iColumns",s),g("sColumns",cn(a,"sName").join(",")),g("iDisplayStart",h),g("iDisplayLength",p);var m={draw:t.iDraw,columns:[],order:[],start:h,length:p,search:{value:u.sSearch,regex:u.bRegex}};for(n=0;s>n;n++)i=a[n],o=c[n],r="function"==typeof i.mData?"function":i.mData,m.columns.push({data:r,name:i.sName,searchable:i.bSearchable,orderable:i.bSortable,search:{value:o.sSearch,regex:o.bRegex}}),g("mDataProp_"+n,r),l.bFilter&&(g("sSearch_"+n,o.sSearch),g("bRegex_"+n,o.bRegex),g("bSearchable_"+n,i.bSearchable)),l.bSort&&g("bSortable_"+n,i.bSortable);l.bFilter&&(g("sSearch",u.sSearch),g("bRegex",u.bRegex)),l.bSort&&(e.each(d,function(e,t){m.order.push({column:t.col,dir:t.dir}),g("iSortCol_"+e,t.col),g("sSortDir_"+e,t.dir)}),g("iSortingCols",d.length));var v=Xt.ext.legacy.ajax;return null===v?t.sAjaxSource?f:m:v?f:m}function X(e,t){var n=function(e,n){return t[e]!==o?t[e]:t[n]},r=n("sEcho","draw"),i=n("iTotalRecords","recordsTotal"),a=n("iTotalDisplayRecords","recordsFiltered");if(r){if(1*r<e.iDraw)return;e.iDraw=1*r}_(e),e._iRecordsTotal=parseInt(i,10),e._iRecordsDisplay=parseInt(a,10);for(var s=$(e,t),l=0,u=s.length;u>l;l++)x(e,s[l]);e.aiDisplay=e.aiDisplayMaster.slice(),e.bAjaxDataGet=!1,P(e),e._bInitComplete||at(e,t),e.bAjaxDataGet=!0,dt(e,!1)}function $(t,n){var r=e.isPlainObject(t.ajax)&&t.ajax.dataSrc!==o?t.ajax.dataSrc:t.sAjaxDataProp;return"data"===r?n.aaData||n[r]:""!==r?L(r)(n):n}function G(t){var n=t.oClasses,r=t.sTableId,o=t.oPreviousSearch,a=t.aanFeatures,s='<input type="search" class="'+n.sFilterInput+'"/>',l=t.oLanguage.sSearch;l=l.match(/_INPUT_/)?l.replace("_INPUT_",s):l+s;var u=e("<div/>",{id:a.f?null:r+"_filter","class":n.sFilter}).append(e("<label/>").append(l)),c=function(){var e=(a.f,this.value?this.value:"");e!=o.sSearch&&(J(t,{sSearch:e,bRegex:o.bRegex,bSmart:o.bSmart,bCaseInsensitive:o.bCaseInsensitive}),t._iDisplayStart=0,P(t))},f=e("input",u).val(o.sSearch.replace('"',"&quot;")).bind("keyup.DT search.DT input.DT paste.DT cut.DT","ssp"===Bt(t)?vt(c,400):c).bind("keypress.DT",function(e){return 13==e.keyCode?!1:void 0}).attr("aria-controls",r);return e(t.nTable).on("filter.DT",function(){try{f[0]!==i.activeElement&&f.val(o.sSearch)}catch(e){}}),u[0]}function J(e,t,n){var r=e.oPreviousSearch,i=e.aoPreSearchCols,a=function(e){r.sSearch=e.sSearch,r.bRegex=e.bRegex,r.bSmart=e.bSmart,r.bCaseInsensitive=e.bCaseInsensitive},s=function(e){return e.bEscapeRegex!==o?!e.bEscapeRegex:e.bRegex};if(y(e),"ssp"!=Bt(e)){Q(e,t.sSearch,n,s(t),t.bSmart,t.bCaseInsensitive),a(t);for(var l=0;l<i.length;l++)K(e,i[l].sSearch,l,s(i[l]),i[l].bSmart,i[l].bCaseInsensitive);Y(e)}else a(t);e.bFiltered=!0,Ft(e,null,"search",[e])}function Y(e){for(var t,n,r=Xt.ext.search,i=e.aiDisplay,o=0,a=r.length;a>o;o++)for(var s=i.length-1;s>=0;s--)n=i[s],t=e.aoData[n],r[o](e,t._aFilterData,n,t._aData)||i.splice(s,1)}function K(e,t,n,r,i,o){if(""!==t)for(var a,s=e.aiDisplay,l=Z(t,r,i,o),u=s.length-1;u>=0;u--)a=e.aoData[s[u]]._aFilterData[n],l.test(a)||s.splice(u,1)}function Q(e,t,n,r,i,o){var a,s,l,u=Z(t,r,i,o),c=e.oPreviousSearch.sSearch,f=e.aiDisplayMaster;if(0!==Xt.ext.search.length&&(n=!0),s=tt(e),t.length<=0)e.aiDisplay=f.slice();else for((s||n||c.length>t.length||0!==t.indexOf(c)||e.bSorted)&&(e.aiDisplay=f.slice()),a=e.aiDisplay,l=a.length-1;l>=0;l--)u.test(e.aoData[a[l]]._sFilterRow)||a.splice(l,1)}function Z(t,n,r,i){if(t=n?t:et(t),r){var o=e.map(t.match(/"[^"]+"|[^ ]+/g)||"",function(e){return'"'===e.charAt(0)?e.match(/^"(.*)"$/)[1]:e});t="^(?=.*?"+o.join(")(?=.*?")+").*$"}return new RegExp(t,i?"i":"")}function et(e){return e.replace(tn,"\\$1")}function tt(e){var t,n,r,i,o,a,s,l,u=e.aoColumns,c=Xt.ext.type.search,f=!1;for(n=0,i=e.aoData.length;i>n;n++)if(l=e.aoData[n],!l._aFilterData){for(a=[],r=0,o=u.length;o>r;r++)t=u[r],t.bSearchable?(s=T(e,n,r,"filter"),s=c[t.sType]?c[t.sType](s):null!==s?s:""):s="",s.indexOf&&-1!==s.indexOf("&")&&(yn.innerHTML=s,s=bn?yn.textContent:yn.innerText),s.replace&&(s=s.replace(/[\r\n]/g,"")),a.push(s);l._aFilterData=a,l._sFilterRow=a.join(" "),f=!0}return f}function nt(t){var n=t.sTableId,r=t.aanFeatures.i,i=e("<div/>",{"class":t.oClasses.sInfo,id:r?null:n+"_info"});return r||(t.aoDrawCallback.push({fn:rt,sName:"information"}),i.attr("role","status").attr("aria-live","polite"),e(t.nTable).attr("aria-describedby",n+"_info")),i[0]}function rt(t){var n=t.aanFeatures.i;if(0!==n.length){var r=t.oLanguage,i=t._iDisplayStart+1,o=t.fnDisplayEnd(),a=t.fnRecordsTotal(),s=t.fnRecordsDisplay(),l=s?r.sInfo:r.sInfoEmpty;s!==a&&(l+=" "+r.sInfoFiltered),l+=r.sInfoPostFix,l=it(t,l);var u=r.fnInfoCallback;null!==u&&(l=u.call(t.oInstance,t,i,o,a,s,l)),e(n).html(l)}}function it(e,t){var n=e.fnFormatNumber,r=e._iDisplayStart+1,i=e._iDisplayLength,o=e.fnRecordsDisplay(),a=-1===i;return t.replace(/_START_/g,n.call(e,r)).replace(/_END_/g,n.call(e,e.fnDisplayEnd())).replace(/_MAX_/g,n.call(e,e.fnRecordsTotal())).replace(/_TOTAL_/g,n.call(e,o)).replace(/_PAGE_/g,n.call(e,a?1:Math.ceil(r/i))).replace(/_PAGES_/g,n.call(e,a?1:Math.ceil(o/i)))}function ot(e){var t,n,r,i=e.iInitDisplayStart,o=e.aoColumns,a=e.oFeatures;if(!e.bInitialised)return void setTimeout(function(){ot(e)},200);for(W(e),O(e),R(e,e.aoHeader),R(e,e.aoFooter),dt(e,!0),a.bAutoWidth&&mt(e),t=0,n=o.length;n>t;t++)r=o[t],r.sWidth&&(r.nTh.style.width=St(r.sWidth));F(e);var s=Bt(e);"ssp"!=s&&("ajax"==s?q(e,[],function(n){var r=$(e,n);for(t=0;t<r.length;t++)x(e,r[t]);e.iInitDisplayStart=i,F(e),dt(e,!1),at(e,n)},e):(dt(e,!1),at(e)))}function at(e,t){e._bInitComplete=!0,t&&h(e),Ft(e,"aoInitComplete","init",[e,t])}function st(e,t){var n=parseInt(t,10);e._iDisplayLength=n,Wt(e),Ft(e,null,"length",[e,n])}function lt(t){for(var n=t.oClasses,r=t.sTableId,i=t.aLengthMenu,o=e.isArray(i[0]),a=o?i[0]:i,s=o?i[1]:i,l=e("<select/>",{name:r+"_length","aria-controls":r,"class":n.sLengthSelect}),u=0,c=a.length;c>u;u++)l[0][u]=new Option(s[u],a[u]);var f=e("<div><label/></div>").addClass(n.sLength);t.aanFeatures.l||(f[0].id=r+"_length");var d=t.oLanguage.sLengthMenu.split(/(_MENU_)/);return f.children().append(d.length>1?[d[0],l,d[2]]:d[0]),e("select",f).val(t._iDisplayLength).bind("change.DT",function(){st(t,e(this).val()),P(t)}),e(t.nTable).bind("length.dt.DT",function(t,n,r){e("select",f).val(r)}),f[0]}function ut(t){var n=t.sPaginationType,r=Xt.ext.pager[n],i="function"==typeof r,o=function(e){P(e)},a=e("<div/>").addClass(t.oClasses.sPaging+n)[0],s=t.aanFeatures;return i||r.fnInit(t,a,o),s.p||(a.id=t.sTableId+"_paginate",t.aoDrawCallback.push({fn:function(e){if(i){var t,n,a=e._iDisplayStart,l=e._iDisplayLength,u=e.fnRecordsDisplay(),c=-1===l,f=c?0:Math.ceil(a/l),d=c?1:Math.ceil(u/l),h=r(f,d);for(t=0,n=s.p.length;n>t;t++)zt(e,"pageButton")(e,s.p[t],t,h,f,d)}else r.fnUpdate(e,o)},sName:"pagination"})),a}function ct(e,t,n){var r=e._iDisplayStart,i=e._iDisplayLength,o=e.fnRecordsDisplay();0===o||-1===i?r=0:"number"==typeof t?(r=t*i,r>o&&(r=0)):"first"==t?r=0:"previous"==t?(r=i>=0?r-i:0,0>r&&(r=0)):"next"==t?o>r+i&&(r+=i):"last"==t?r=Math.floor((o-1)/i)*i:Ht(e,0,"Unknown paging action: "+t,5);var a=e._iDisplayStart!==r;return e._iDisplayStart=r,a&&(Ft(e,null,"page",[e]),n&&P(e)),a}function ft(t){return e("<div/>",{id:t.aanFeatures.r?null:t.sTableId+"_processing","class":t.oClasses.sProcessing}).html(t.oLanguage.sProcessing).insertBefore(t.nTable)[0]}function dt(t,n){t.oFeatures.bProcessing&&e(t.aanFeatures.r).css("display",n?"block":"none"),Ft(t,null,"processing",[t,n])}function ht(t){var n=e(t.nTable);n.attr("role","grid");var r=t.oScroll;if(""===r.sX&&""===r.sY)return t.nTable;var i=r.sX,o=r.sY,a=t.oClasses,s=n.children("caption"),l=s.length?s[0]._captionSide:null,u=e(n[0].cloneNode(!1)),c=e(n[0].cloneNode(!1)),f=n.children("tfoot"),d="<div/>",h=function(e){return e?St(e):null};r.sX&&"100%"===n.attr("width")&&n.removeAttr("width"),f.length||(f=null);var p=e(d,{"class":a.sScrollWrapper}).append(e(d,{"class":a.sScrollHead}).css({overflow:"hidden",position:"relative",border:0,width:i?h(i):"100%"}).append(e(d,{"class":a.sScrollHeadInner}).css({"box-sizing":"content-box",width:r.sXInner||"100%"}).append(u.removeAttr("id").css("margin-left",0).append(n.children("thead")))).append("top"===l?s:null)).append(e(d,{"class":a.sScrollBody}).css({overflow:"auto",height:h(o),width:h(i)}).append(n));f&&p.append(e(d,{"class":a.sScrollFoot}).css({overflow:"hidden",border:0,width:i?h(i):"100%"}).append(e(d,{"class":a.sScrollFootInner}).append(c.removeAttr("id").css("margin-left",0).append(n.children("tfoot")))).append("bottom"===l?s:null));var g=p.children(),m=g[0],v=g[1],y=f?g[2]:null;return i&&e(v).scroll(function(){var e=this.scrollLeft;m.scrollLeft=e,f&&(y.scrollLeft=e)}),t.nScrollHead=m,t.nScrollBody=v,t.nScrollFoot=y,t.aoDrawCallback.push({fn:pt,sName:"scrolling"}),p[0]}function pt(t){var n,r,i,o,a,s,l,u,c,f=t.oScroll,d=f.sX,h=f.sXInner,g=f.sY,m=f.iBarWidth,v=e(t.nScrollHead),y=v[0].style,b=v.children("div"),x=b[0].style,w=b.children("table"),S=t.nScrollBody,C=e(S),T=S.style,D=e(t.nScrollFoot),k=D.children("div"),L=k.children("table"),N=e(t.nTHead),A=e(t.nTable),_=A[0],M=_.style,E=t.nTFoot?e(t.nTFoot):null,j=t.oBrowser,H=j.bScrollOversize,I=[],O=[],R=[],P=function(e){var t=e.style;t.paddingTop="0",t.paddingBottom="0",t.borderTopWidth="0",t.borderBottomWidth="0",t.height=0};if(A.children("thead, tfoot").remove(),a=N.clone().prependTo(A),n=N.find("tr"),i=a.find("tr"),a.find("th, td").removeAttr("tabindex"),E&&(s=E.clone().prependTo(A),r=E.find("tr"),o=s.find("tr")),d||(T.width="100%",v[0].style.width="100%"),e.each(B(t,a),function(e,n){l=p(t,e),n.style.width=t.aoColumns[l].sWidth}),E&&gt(function(e){e.style.width=""},o),f.bCollapse&&""!==g&&(T.height=C[0].offsetHeight+N[0].offsetHeight+"px"),c=A.outerWidth(),""===d?(M.width="100%",H&&(A.find("tbody").height()>S.offsetHeight||"scroll"==C.css("overflow-y"))&&(M.width=St(A.outerWidth()-m))):""!==h?M.width=St(h):c==C.width()&&C.height()<A.height()?(M.width=St(c-m),A.outerWidth()>c-m&&(M.width=St(c))):M.width=St(c),c=A.outerWidth(),gt(P,i),gt(function(t){R.push(t.innerHTML),I.push(St(e(t).css("width")))},i),gt(function(e,t){e.style.width=I[t]},n),e(i).height(0),E&&(gt(P,o),gt(function(t){O.push(St(e(t).css("width")))},o),gt(function(e,t){e.style.width=O[t]},r),e(o).height(0)),gt(function(e,t){e.innerHTML='<div class="dataTables_sizing" style="height:0;overflow:hidden;">'+R[t]+"</div>",e.style.width=I[t]},i),E&&gt(function(e,t){e.innerHTML="",e.style.width=O[t]},o),A.outerWidth()<c?(u=S.scrollHeight>S.offsetHeight||"scroll"==C.css("overflow-y")?c+m:c,H&&(S.scrollHeight>S.offsetHeight||"scroll"==C.css("overflow-y"))&&(M.width=St(u-m)),(""===d||""!==h)&&Ht(t,1,"Possible column misalignment",6)):u="100%",T.width=St(u),y.width=St(u),E&&(t.nScrollFoot.style.width=St(u)),g||H&&(T.height=St(_.offsetHeight+m)),g&&f.bCollapse){T.height=St(g);var F=d&&_.offsetWidth>S.offsetWidth?m:0;_.offsetHeight<S.offsetHeight&&(T.height=St(_.offsetHeight+F))}var W=A.outerWidth();w[0].style.width=St(W),x.width=St(W);var z=A.height()>S.clientHeight||"scroll"==C.css("overflow-y"),q="padding"+(j.bScrollbarLeft?"Left":"Right");x[q]=z?m+"px":"0px",E&&(L[0].style.width=St(W),k[0].style.width=St(W),k[0].style[q]=z?m+"px":"0px"),C.scroll(),(t.bSorted||t.bFiltered)&&(S.scrollTop=0)}function gt(e,t,n){for(var r,i,o=0,a=0,s=t.length;s>a;){for(r=t[a].firstChild,i=n?n[a].firstChild:null;r;)1===r.nodeType&&(n?e(r,i,o):e(r,o),o++),r=r.nextSibling,i=n?i.nextSibling:null;a++}}function mt(t){var r,i,o,a,s,l=t.nTable,u=t.aoColumns,c=t.oScroll,f=c.sY,d=c.sX,p=c.sXInner,g=u.length,y=v(t,"bVisible"),b=e("th",t.nTHead),x=l.getAttribute("width"),w=l.parentNode,S=!1;for(r=0;r<y.length;r++)i=u[y[r]],null!==i.sWidth&&(i.sWidth=yt(i.sWidthOrig,w),S=!0);if(S||d||f||g!=m(t)||g!=b.length){var C=e(l.cloneNode(!1)).css("visibility","hidden").removeAttr("id").append(e(t.nTHead).clone(!1)).append(e(t.nTFoot).clone(!1)).append(e("<tbody><tr/></tbody>"));C.find("tfoot th, tfoot td").css("width","");var T=C.find("tbody tr");for(b=B(t,C.find("thead")[0]),r=0;r<y.length;r++)i=u[y[r]],b[r].style.width=null!==i.sWidthOrig&&""!==i.sWidthOrig?St(i.sWidthOrig):"";if(t.aoData.length)for(r=0;r<y.length;r++)o=y[r],i=u[o],e(xt(t,o)).clone(!1).append(i.sContentPadding).appendTo(T);if(C.appendTo(w),d&&p?C.width(p):d?(C.css("width","auto"),C.width()<w.offsetWidth&&C.width(w.offsetWidth)):f?C.width(w.offsetWidth):x&&C.width(x),bt(t,C[0]),d){var D=0;for(r=0;r<y.length;r++)i=u[y[r]],s=e(b[r]).outerWidth(),D+=null===i.sWidthOrig?s:parseInt(i.sWidth,10)+s-e(b[r]).width();C.width(St(D)),l.style.width=St(D)}for(r=0;r<y.length;r++)i=u[y[r]],a=e(b[r]).width(),a&&(i.sWidth=St(a));l.style.width=St(C.css("width")),C.remove()}else for(r=0;g>r;r++)u[r].sWidth=St(b.eq(r).width());x&&(l.style.width=St(x)),!x&&!d||t._reszEvt||(e(n).bind("resize.DT-"+t.sInstance,vt(function(){h(t)})),t._reszEvt=!0)}function vt(e,t){var n,r,i=t||200;return function(){var t=this,a=+new Date,s=arguments;n&&n+i>a?(clearTimeout(r),r=setTimeout(function(){n=o,e.apply(t,s)},i)):n?(n=a,e.apply(t,s)):n=a}}function yt(t,n){if(!t)return 0;var r=e("<div/>").css("width",St(t)).appendTo(n||i.body),o=r[0].offsetWidth;return r.remove(),o}function bt(t,n){var r=t.oScroll;if(r.sX||r.sY){var i=r.sX?0:r.iBarWidth;n.style.width=St(e(n).outerWidth()-i)}}function xt(t,n){var r=wt(t,n);if(0>r)return null;var i=t.aoData[r];return i.nTr?i.anCells[n]:e("<td/>").html(T(t,r,n,"display"))[0]}function wt(e,t){for(var n,r=-1,i=-1,o=0,a=e.aoData.length;a>o;o++)n=T(e,o,t,"display")+"",n=n.replace(xn,""),n.length>r&&(r=n.length,i=o);return i}function St(e){return null===e?"0px":"number"==typeof e?0>e?"0px":e+"px":e.match(/\d$/)?e+"px":e}function Ct(){if(!Xt.__scrollbarWidth){var t=e("<p/>").css({width:"100%",height:200,padding:0})[0],n=e("<div/>").css({position:"absolute",top:0,left:0,width:200,height:150,padding:0,overflow:"hidden",visibility:"hidden"}).append(t).appendTo("body"),r=t.offsetWidth;n.css("overflow","scroll");var i=t.offsetWidth;r===i&&(i=n[0].clientWidth),n.remove(),Xt.__scrollbarWidth=r-i}return Xt.__scrollbarWidth}function Tt(t){var n,r,i,o,a,s,l,u=[],c=t.aoColumns,f=t.aaSortingFixed,d=e.isPlainObject(f),h=[],p=function(t){t.length&&!e.isArray(t[0])?h.push(t):h.push.apply(h,t)};for(e.isArray(f)&&p(f),d&&f.pre&&p(f.pre),p(t.aaSorting),d&&f.post&&p(f.post),n=0;n<h.length;n++)for(l=h[n][0],o=c[l].aDataSort,r=0,i=o.length;i>r;r++)a=o[r],s=c[a].sType||"string",u.push({src:l,col:a,dir:h[n][1],index:h[n][2],type:s,formatter:Xt.ext.type.order[s+"-pre"]});return u}function Dt(e){var t,n,r,i,o,a=[],s=Xt.ext.type.order,l=e.aoData,u=(e.aoColumns,0),c=e.aiDisplayMaster;for(y(e),o=Tt(e),t=0,n=o.length;n>t;t++)i=o[t],i.formatter&&u++,_t(e,i.col);if("ssp"!=Bt(e)&&0!==o.length){for(t=0,r=c.length;r>t;t++)a[c[t]]=t;c.sort(u===o.length?function(e,t){var n,r,i,s,u,c=o.length,f=l[e]._aSortData,d=l[t]._aSortData;for(i=0;c>i;i++)if(u=o[i],n=f[u.col],r=d[u.col],s=r>n?-1:n>r?1:0,0!==s)return"asc"===u.dir?s:-s;return n=a[e],r=a[t],r>n?-1:n>r?1:0}:function(e,t){var n,r,i,u,c,f,d=o.length,h=l[e]._aSortData,p=l[t]._aSortData;for(i=0;d>i;i++)if(c=o[i],n=h[c.col],r=p[c.col],f=s[c.type+"-"+c.dir]||s["string-"+c.dir],u=f(n,r),0!==u)return u;return n=a[e],r=a[t],r>n?-1:n>r?1:0})}e.bSorted=!0}function kt(e){for(var t,n,r=e.aoColumns,i=Tt(e),o=e.oLanguage.oAria,a=0,s=r.length;s>a;a++){var l=r[a],u=l.asSorting,c=l.sTitle.replace(/<.*?>/g,""),f=l.nTh;f.removeAttribute("aria-sort"),l.bSortable?(i.length>0&&i[0].col==a?(f.setAttribute("aria-sort","asc"==i[0].dir?"ascending":"descending"),n=u[i[0].index+1]||u[0]):n=u[0],t=c+("asc"===n?o.sSortAscending:o.sSortDescending)):t=c,f.setAttribute("aria-label",t)}}function Lt(t,n,r,i){var a,s=t.aoColumns[n],l=t.aaSorting,u=s.asSorting,c=function(t){var n=t._idx;return n===o&&(n=e.inArray(t[1],u)),n+1>=u.length?0:n+1};if(r&&t.oFeatures.bSortMulti){var f=e.inArray(n,cn(l,"0"));-1!==f?(a=c(l[f]),l[f][1]=u[a],l[f]._idx=a):(l.push([n,u[0],0]),l[l.length-1]._idx=0) }else l.length&&l[0][0]==n?(a=c(l[0]),l.length=1,l[0][1]=u[a],l[0]._idx=a):(l.length=0,l.push([n,u[0]]),l[0]._idx=0);F(t),"function"==typeof i&&i(t)}function Nt(e,t,n,r){var i=e.aoColumns[n];Rt(t,{},function(t){i.bSortable!==!1&&(e.oFeatures.bProcessing?(dt(e,!0),setTimeout(function(){Lt(e,n,t.shiftKey,r),"ssp"!==Bt(e)&&dt(e,!1)},0)):Lt(e,n,t.shiftKey,r))})}function At(t){var n,r,i,o=t.aLastSort,a=t.oClasses.sSortColumn,s=Tt(t),l=t.oFeatures;if(l.bSort&&l.bSortClasses){for(n=0,r=o.length;r>n;n++)i=o[n].src,e(cn(t.aoData,"anCells",i)).removeClass(a+(2>n?n+1:3));for(n=0,r=s.length;r>n;n++)i=s[n].src,e(cn(t.aoData,"anCells",i)).addClass(a+(2>n?n+1:3))}t.aLastSort=s}function _t(e,t){var n,r=e.aoColumns[t],i=Xt.ext.order[r.sSortDataType];i&&(n=i.call(e.oInstance,e,t,g(e,t)));for(var o,a,s=Xt.ext.type.order[r.sType+"-pre"],l=0,u=e.aoData.length;u>l;l++)o=e.aoData[l],o._aSortData||(o._aSortData=[]),(!o._aSortData[t]||i)&&(a=i?n[l]:T(e,l,t,"sort"),o._aSortData[t]=s?s(a):a)}function Mt(t){if(t.oFeatures.bStateSave&&!t.bDestroying){var n={iCreate:+new Date,iStart:t._iDisplayStart,iLength:t._iDisplayLength,aaSorting:e.extend(!0,[],t.aaSorting),oSearch:e.extend(!0,{},t.oPreviousSearch),aoSearchCols:e.extend(!0,[],t.aoPreSearchCols),abVisCols:cn(t.aoColumns,"bVisible")};Ft(t,"aoStateSaveParams","stateSaveParams",[t,n]),t.fnStateSaveCallback.call(t.oInstance,t,n)}}function Et(t){var n,r,i=t.aoColumns;if(t.oFeatures.bStateSave){var o=t.fnStateLoadCallback.call(t.oInstance,t);if(o){var a=Ft(t,"aoStateLoadParams","stateLoadParams",[t,o]);if(-1===e.inArray(!1,a)){var s=t.iStateDuration;if(!(s>0&&o.iCreate<+new Date-1e3*s)&&i.length===o.aoSearchCols.length){t.oLoadedState=e.extend(!0,{},o),t._iDisplayStart=o.iStart,t.iInitDisplayStart=o.iStart,t._iDisplayLength=o.iLength,t.aaSorting=e.map(o.aaSorting,function(e){return e[0]>=i.length?[0,e[1]]:e}),e.extend(t.oPreviousSearch,o.oSearch),e.extend(!0,t.aoPreSearchCols,o.aoSearchCols);var l=o.abVisCols;for(n=0,r=l.length;r>n;n++)i[n].bVisible=l[n];Ft(t,"aoStateLoaded","stateLoaded",[t,o])}}}}}function jt(t){var n=Xt.settings,r=e.inArray(t,cn(n,"nTable"));return-1!==r?n[r]:null}function Ht(e,t,r,i){if(r="DataTables warning: "+(null!==e?"table id="+e.sTableId+" - ":"")+r,i&&(r+=". For more information about this error, please see http://datatables.net/tn/"+i),t)n.console&&console.log&&console.log(r);else{var o=Xt.ext,a=o.sErrMode||o.errMode;if("alert"!=a)throw new Error(r);alert(r)}}function It(t,n,r,i){return e.isArray(r)?void e.each(r,function(r,i){e.isArray(i)?It(t,n,i[0],i[1]):It(t,n,i)}):(i===o&&(i=r),void(n[r]!==o&&(t[i]=n[r])))}function Ot(t,n,r){var i;for(var o in n)n.hasOwnProperty(o)&&(i=n[o],e.isPlainObject(i)?(e.isPlainObject(t[o])||(t[o]={}),e.extend(!0,t[o],i)):t[o]=r&&"data"!==o&&"aaData"!==o&&e.isArray(i)?i.slice():i);return t}function Rt(t,n,r){e(t).bind("click.DT",n,function(e){t.blur(),r(e)}).bind("keypress.DT",n,function(e){13===e.which&&(e.preventDefault(),r(e))}).bind("selectstart.DT",function(){return!1})}function Pt(e,t,n,r){n&&e[t].push({fn:n,sName:r})}function Ft(t,n,r,i){var o=[];return n&&(o=e.map(t[n].slice().reverse(),function(e){return e.fn.apply(t.oInstance,i)})),null!==r&&e(t.nTable).trigger(r+".dt",i),o}function Wt(e){var t=e._iDisplayStart,n=e.fnDisplayEnd(),r=e._iDisplayLength;n===e.fnRecordsDisplay()&&(t=n-r),(-1===r||0>t)&&(t=0),e._iDisplayStart=t}function zt(t,n){var r=t.renderer,i=Xt.ext.renderer[n];return e.isPlainObject(r)&&r[n]?i[r[n]]||i._:"string"==typeof r?i[r]||i._:i._}function Bt(e){return e.oFeatures.bServerSide?"ssp":e.ajax||e.sAjaxSource?"ajax":"dom"}function qt(e,t){var n=[],r=Pn.numbers_length,i=Math.floor(r/2);return r>=t?n=dn(0,t):i>=e?(n=dn(0,r-2),n.push("ellipsis"),n.push(t-1)):e>=t-1-i?(n=dn(t-(r-2),t),n.splice(0,0,"ellipsis"),n.splice(0,0,0)):(n=dn(e-1,e+2),n.push("ellipsis"),n.push(t-1),n.splice(0,0,"ellipsis"),n.splice(0,0,0)),n.DT_el="span",n}function Vt(t){e.each({num:function(e){return Fn(e,t)},"num-fmt":function(e){return Fn(e,t,nn)},"html-num":function(e){return Fn(e,t,Zt)},"html-num-fmt":function(e){return Fn(e,t,Zt,nn)}},function(e,n){$t.type.order[e+t+"-pre"]=n})}function Ut(e){return function(){var t=[jt(this[Xt.ext.iApiIndex])].concat(Array.prototype.slice.call(arguments));return Xt.ext.internal[e].apply(this,t)}}var Xt,$t,Gt,Jt,Yt,Kt={},Qt=/[\r\n]/g,Zt=/<.*?>/g,en=/^[\d\+\-a-zA-Z]/,tn=new RegExp("(\\"+["/",".","*","+","?","|","(",")","[","]","{","}","\\","$","^","-"].join("|\\")+")","g"),nn=/[',$£€¥%\u2009\u202F]/g,rn=function(e){return e&&"-"!==e?!1:!0},on=function(e){var t=parseInt(e,10);return!isNaN(t)&&isFinite(e)?t:null},an=function(e,t){return Kt[t]||(Kt[t]=new RegExp(et(t),"g")),"string"==typeof e?e.replace(/\./g,"").replace(Kt[t],"."):e},sn=function(e,t,n){var r="string"==typeof e;return t&&r&&(e=an(e,t)),n&&r&&(e=e.replace(nn,"")),!e||"-"===e||!isNaN(parseFloat(e))&&isFinite(e)},ln=function(e){return!e||"string"==typeof e},un=function(e,t,n){if(rn(e))return!0;var r=ln(e);return r&&sn(hn(e),t,n)?!0:null},cn=function(e,t,n){var r=[],i=0,a=e.length;if(n!==o)for(;a>i;i++)e[i]&&e[i][t]&&r.push(e[i][t][n]);else for(;a>i;i++)e[i]&&r.push(e[i][t]);return r},fn=function(e,t,n,r){var i=[],a=0,s=t.length;if(r!==o)for(;s>a;a++)i.push(e[t[a]][n][r]);else for(;s>a;a++)i.push(e[t[a]][n]);return i},dn=function(e,t){var n,r=[];t===o?(t=0,n=e):(n=t,t=e);for(var i=t;n>i;i++)r.push(i);return r},hn=function(e){return e.replace(Zt,"")},pn=function(e){var t,n,r,i=[],o=e.length,a=0;e:for(n=0;o>n;n++){for(t=e[n],r=0;a>r;r++)if(i[r]===t)continue e;i.push(t),a++}return i},gn=function(e,t,n){e[t]!==o&&(e[n]=e[t])},mn=/\[.*?\]$/,vn=/\(\)$/,yn=e("<div>")[0],bn=yn.textContent!==o,xn=/<.*?>/g;Xt=function(t){this.$=function(e,t){return this.api(!0).$(e,t)},this._=function(e,t){return this.api(!0).rows(e,t).data()},this.api=function(e){return new Gt(e?jt(this[$t.iApiIndex]):this)},this.fnAddData=function(t,n){var r=this.api(!0),i=e.isArray(t)&&(e.isArray(t[0])||e.isPlainObject(t[0]))?r.rows.add(t):r.row.add(t);return(n===o||n)&&r.draw(),i.flatten().toArray()},this.fnAdjustColumnSizing=function(e){var t=this.api(!0).columns.adjust(),n=t.settings()[0],r=n.oScroll;e===o||e?t.draw(!1):(""!==r.sX||""!==r.sY)&&pt(n)},this.fnClearTable=function(e){var t=this.api(!0).clear();(e===o||e)&&t.draw()},this.fnClose=function(e){this.api(!0).row(e).child.hide()},this.fnDeleteRow=function(e,t,n){var r=this.api(!0),i=r.rows(e),a=i.settings()[0],s=a.aoData[i[0][0]];return i.remove(),t&&t.call(this,a,s),(n===o||n)&&r.draw(),s},this.fnDestroy=function(e){this.api(!0).destroy(e)},this.fnDraw=function(e){this.api(!0).draw(!e)},this.fnFilter=function(e,t,n,r,i,a){var s=this.api(!0);null===t||t===o?s.search(e,n,r,a):s.column(t).search(e,n,r,a),s.draw()},this.fnGetData=function(e,t){var n=this.api(!0);if(e!==o){var r=e.nodeName?e.nodeName.toLowerCase():"";return t!==o||"td"==r||"th"==r?n.cell(e,t).data():n.row(e).data()||null}return n.data().toArray()},this.fnGetNodes=function(e){var t=this.api(!0);return e!==o?t.row(e).node():t.rows().nodes().flatten().toArray()},this.fnGetPosition=function(e){var t=this.api(!0),n=e.nodeName.toUpperCase();if("TR"==n)return t.row(e).index();if("TD"==n||"TH"==n){var r=t.cell(e).index();return[r.row,r.columnVisible,r.column]}return null},this.fnIsOpen=function(e){return this.api(!0).row(e).child.isShown()},this.fnOpen=function(e,t,n){return this.api(!0).row(e).child(t,n).show().child()[0]},this.fnPageChange=function(e,t){var n=this.api(!0).page(e);(t===o||t)&&n.draw(!1)},this.fnSetColumnVis=function(e,t,n){var r=this.api(!0).column(e).visible(t);(n===o||n)&&r.columns.adjust().draw()},this.fnSettings=function(){return jt(this[$t.iApiIndex])},this.fnSort=function(e){this.api(!0).order(e).draw()},this.fnSortListener=function(e,t,n){this.api(!0).order.listener(e,t,n)},this.fnUpdate=function(e,t,n,r,i){var a=this.api(!0);return n===o||null===n?a.row(t).data(e):a.cell(t,n).data(e),(i===o||i)&&a.columns.adjust(),(r===o||r)&&a.draw(),0},this.fnVersionCheck=$t.fnVersionCheck;var n=this,i=t===o,c=this.length;i&&(t={}),this.oApi=this.internal=$t.internal;for(var h in Xt.ext.internal)h&&(this[h]=Ut(h));return this.each(function(){var h,p={},g=c>1?Ot(p,t,!0):t,m=0,v=this.getAttribute("id"),y=!1,S=Xt.defaults;if("table"!=this.nodeName.toLowerCase())return void Ht(null,0,"Non-table node initialisation ("+this.nodeName+")",2);s(S),l(S.column),r(S,S,!0),r(S.column,S.column,!0),r(S,g);var C=Xt.settings;for(m=0,h=C.length;h>m;m++){if(C[m].nTable==this){var T=g.bRetrieve!==o?g.bRetrieve:S.bRetrieve,D=g.bDestroy!==o?g.bDestroy:S.bDestroy;if(i||T)return C[m].oInstance;if(D){C[m].oInstance.fnDestroy();break}return void Ht(C[m],0,"Cannot reinitialise DataTable",3)}if(C[m].sTableId==this.id){C.splice(m,1);break}}(null===v||""===v)&&(v="DataTables_Table_"+Xt.ext._unique++,this.id=v);var k=e.extend(!0,{},Xt.models.oSettings,{nTable:this,oApi:n.internal,oInit:g,sDestroyWidth:e(this)[0].style.width,sInstance:v,sTableId:v});C.push(k),k.oInstance=1===n.length?n:e(this).dataTable(),s(g),g.oLanguage&&a(g.oLanguage),g.aLengthMenu&&!g.iDisplayLength&&(g.iDisplayLength=e.isArray(g.aLengthMenu[0])?g.aLengthMenu[0][0]:g.aLengthMenu[0]),g=Ot(e.extend(!0,{},S),g),It(k.oFeatures,g,["bPaginate","bLengthChange","bFilter","bSort","bSortMulti","bInfo","bProcessing","bAutoWidth","bSortClasses","bServerSide","bDeferRender"]),It(k,g,["asStripeClasses","ajax","fnServerData","fnFormatNumber","sServerMethod","aaSorting","aaSortingFixed","aLengthMenu","sPaginationType","sAjaxSource","sAjaxDataProp","iStateDuration","sDom","bSortCellsTop","iTabIndex","fnStateLoadCallback","fnStateSaveCallback","renderer",["iCookieDuration","iStateDuration"],["oSearch","oPreviousSearch"],["aoSearchCols","aoPreSearchCols"],["iDisplayLength","_iDisplayLength"],["bJQueryUI","bJUI"]]),It(k.oScroll,g,[["sScrollX","sX"],["sScrollXInner","sXInner"],["sScrollY","sY"],["bScrollCollapse","bCollapse"]]),It(k.oLanguage,g,"fnInfoCallback"),Pt(k,"aoDrawCallback",g.fnDrawCallback,"user"),Pt(k,"aoServerParams",g.fnServerParams,"user"),Pt(k,"aoStateSaveParams",g.fnStateSaveParams,"user"),Pt(k,"aoStateLoadParams",g.fnStateLoadParams,"user"),Pt(k,"aoStateLoaded",g.fnStateLoaded,"user"),Pt(k,"aoRowCallback",g.fnRowCallback,"user"),Pt(k,"aoRowCreatedCallback",g.fnCreatedRow,"user"),Pt(k,"aoHeaderCallback",g.fnHeaderCallback,"user"),Pt(k,"aoFooterCallback",g.fnFooterCallback,"user"),Pt(k,"aoInitComplete",g.fnInitComplete,"user"),Pt(k,"aoPreDrawCallback",g.fnPreDrawCallback,"user");var L=k.oClasses;if(g.bJQueryUI?(e.extend(L,Xt.ext.oJUIClasses,g.oClasses),g.sDom===S.sDom&&"lfrtip"===S.sDom&&(k.sDom='<"H"lfr>t<"F"ip>'),k.renderer?e.isPlainObject(k.renderer)&&!k.renderer.header&&(k.renderer.header="jqueryui"):k.renderer="jqueryui"):e.extend(L,Xt.ext.classes,g.oClasses),e(this).addClass(L.sTable),(""!==k.oScroll.sX||""!==k.oScroll.sY)&&(k.oScroll.iBarWidth=Ct()),k.oScroll.sX===!0&&(k.oScroll.sX="100%"),k.iInitDisplayStart===o&&(k.iInitDisplayStart=g.iDisplayStart,k._iDisplayStart=g.iDisplayStart),null!==g.iDeferLoading){k.bDeferLoading=!0;var N=e.isArray(g.iDeferLoading);k._iRecordsDisplay=N?g.iDeferLoading[0]:g.iDeferLoading,k._iRecordsTotal=N?g.iDeferLoading[1]:g.iDeferLoading}""!==g.oLanguage.sUrl?(k.oLanguage.sUrl=g.oLanguage.sUrl,e.getJSON(k.oLanguage.sUrl,null,function(t){a(t),r(S.oLanguage,t),e.extend(!0,k.oLanguage,g.oLanguage,t),ot(k)}),y=!0):e.extend(!0,k.oLanguage,g.oLanguage),null===g.asStripeClasses&&(k.asStripeClasses=[L.sStripeOdd,L.sStripeEven]);var A=k.asStripeClasses,_=e("tbody tr:eq(0)",this);-1!==e.inArray(!0,e.map(A,function(e){return _.hasClass(e)}))&&(e("tbody tr",this).removeClass(A.join(" ")),k.asDestroyStripes=A.slice());var M,E=[],H=this.getElementsByTagName("thead");if(0!==H.length&&(z(k.aoHeader,H[0]),E=B(k)),null===g.aoColumns)for(M=[],m=0,h=E.length;h>m;m++)M.push(null);else M=g.aoColumns;for(m=0,h=M.length;h>m;m++)f(k,E?E[m]:null);if(b(k,g.aoColumnDefs,M,function(e,t){d(k,e,t)}),_.length){var I=function(e,t){return e.getAttribute("data-"+t)?t:null};e.each(j(k,_[0]).cells,function(e,t){var n=k.aoColumns[e];if(n.mData===e){var r=I(t,"sort")||I(t,"order"),i=I(t,"filter")||I(t,"search");(null!==r||null!==i)&&(n.mData={_:e+".display",sort:null!==r?e+".@data-"+r:o,type:null!==r?e+".@data-"+r:o,filter:null!==i?e+".@data-"+i:o},d(k,e))}})}var O=k.oFeatures;if(g.bStateSave&&(O.bStateSave=!0,Et(k,g),Pt(k,"aoDrawCallback",Mt,"state_save")),g.aaSorting===o){var R=k.aaSorting;for(m=0,h=R.length;h>m;m++)R[m][1]=k.aoColumns[m].asSorting[0]}At(k),O.bSort&&Pt(k,"aoDrawCallback",function(){if(k.bSorted){var t=Tt(k),n={};e.each(t,function(e,t){n[t.src]=t.dir}),Ft(k,null,"order",[k,t,n]),kt(k)}}),Pt(k,"aoDrawCallback",function(){(k.bSorted||"ssp"===Bt(k)||O.bDeferRender)&&At(k)},"sc"),u(k);var P=e(this).children("caption").each(function(){this._captionSide=e(this).css("caption-side")}),F=e(this).children("thead");0===F.length&&(F=e("<thead/>").appendTo(this)),k.nTHead=F[0];var W=e(this).children("tbody");0===W.length&&(W=e("<tbody/>").appendTo(this)),k.nTBody=W[0];var q=e(this).children("tfoot");if(0===q.length&&P.length>0&&(""!==k.oScroll.sX||""!==k.oScroll.sY)&&(q=e("<tfoot/>").appendTo(this)),0===q.length||0===q.children().length?e(this).addClass(L.sNoFooter):q.length>0&&(k.nTFoot=q[0],z(k.aoFooter,k.nTFoot)),g.aaData)for(m=0;m<g.aaData.length;m++)x(k,g.aaData[m]);else(k.bDeferLoading||"dom"==Bt(k))&&w(k,e(k.nTBody).children("tr"));k.aiDisplay=k.aiDisplayMaster.slice(),k.bInitialised=!0,y===!1&&ot(k)}),n=null,this};var wn=[],Sn=Array.prototype,Cn=function(t){var n,r,i=Xt.settings,o=e.map(i,function(e){return e.nTable});return t?t.nTable&&t.oApi?[t]:t.nodeName&&"table"===t.nodeName.toLowerCase()?(n=e.inArray(t,o),-1!==n?[i[n]]:null):t&&"function"==typeof t.settings?t.settings().toArray():("string"==typeof t?r=e(t):t instanceof e&&(r=t),r?r.map(function(){return n=e.inArray(this,o),-1!==n?i[n]:null}).toArray():void 0):[]};Xt.Api=Gt=function(t,n){if(!this instanceof Gt)throw"DT API must be constructed as a new object";var r=[],i=function(e){var t=Cn(e);t&&r.push.apply(r,t)};if(e.isArray(t))for(var o=0,a=t.length;a>o;o++)i(t[o]);else i(t);this.context=pn(r),n&&this.push.apply(this,n.toArray?n.toArray():n),this.selector={rows:null,cols:null,opts:null},Gt.extend(this,this,wn)},Gt.prototype={concat:Sn.concat,context:[],each:function(e){if(Sn.forEach)Sn.forEach.call(this,e,this);else for(var t=0,n=this.length;n>t;t++)e.call(this,this[t],t,this);return this},eq:function(e){var t=this.context;return t.length>e?new Gt(t[e],this[e]):null},filter:function(e){var t=[];if(Sn.filter)t=Sn.filter.call(this,e,this);else for(var n=0,r=this.length;r>n;n++)e.call(this,this[n],n,this)&&t.push(this[n]);return new Gt(this.context,t)},flatten:function(){var e=[];return new Gt(this.context,e.concat.apply(e,this.toArray()))},join:Sn.join,indexOf:Sn.indexOf||function(e,t){for(var n=t||0,r=this.length;r>n;n++)if(this[n]===e)return n;return-1},iterator:function(e,t,n){var r,i,a,s,l,u,c,f,d=[],h=this.context,p=this.selector;for("string"==typeof e&&(n=t,t=e,e=!1),i=0,a=h.length;a>i;i++)if("table"===t)r=n(h[i],i),r!==o&&d.push(r);else if("columns"===t||"rows"===t)r=n(h[i],this[i],i),r!==o&&d.push(r);else if("column"===t||"column-rows"===t||"row"===t||"cell"===t)for(c=this[i],"column-rows"===t&&(u=An(h[i],p.opts)),s=0,l=c.length;l>s;s++)f=c[s],r="cell"===t?n(h[i],f.row,f.column,i,s):n(h[i],f,i,s,u),r!==o&&d.push(r);if(d.length){var g=new Gt(h,e?d.concat.apply([],d):d),m=g.selector;return m.rows=p.rows,m.cols=p.cols,m.opts=p.opts,g}return this},lastIndexOf:Sn.lastIndexOf||function(){return this.indexOf.apply(this.toArray.reverse(),arguments)},length:0,map:function(e){var t=[];if(Sn.map)t=Sn.map.call(this,e,this);else for(var n=0,r=this.length;r>n;n++)t.push(e.call(this,this[n],n));return new Gt(this.context,t)},pluck:function(e){return this.map(function(t){return t[e]})},pop:Sn.pop,push:Sn.push,reduce:Sn.reduce||function(e,t){return c(this,e,t,0,this.length,1)},reduceRight:Sn.reduceRight||function(e,t){return c(this,e,t,this.length-1,-1,-1)},reverse:Sn.reverse,selector:null,shift:Sn.shift,sort:Sn.sort,splice:Sn.splice,toArray:function(){return Sn.slice.call(this)},to$:function(){return e(this)},toJQuery:function(){return e(this)},unique:function(){return new Gt(this.context,pn(this))},unshift:Sn.unshift},Gt.extend=function(t,n,r){if(n&&(n instanceof Gt||n.__dt_wrapper)){var i,o,a,s=function(e,n){return function(){var r=e.apply(t,arguments);return Gt.extend(r,r,n.methodExt),r}};for(i=0,o=r.length;o>i;i++)a=r[i],n[a.name]="function"==typeof a.val?s(a.val,a):e.isPlainObject(a.val)?{}:a.val,n[a.name].__dt_wrapper=!0,Gt.extend(t,n[a.name],a.propExt)}},Gt.register=Jt=function(t,n){if(e.isArray(t))for(var r=0,i=t.length;i>r;r++)Gt.register(t[r],n);else{var o,a,s,l,u=t.split("."),c=wn,f=function(e,t){for(var n=0,r=e.length;r>n;n++)if(e[n].name===t)return e[n];return null};for(o=0,a=u.length;a>o;o++){l=-1!==u[o].indexOf("()"),s=l?u[o].replace("()",""):u[o];var d=f(c,s);d||(d={name:s,val:{},methodExt:[],propExt:[]},c.push(d)),o===a-1?d.val=n:c=l?d.methodExt:d.propExt}Gt.ready&&Xt.api.build()}},Gt.registerPlural=Yt=function(t,n,r){Gt.register(t,r),Gt.register(n,function(){var t=r.apply(this,arguments);return t===this?this:t instanceof Gt?t.length?e.isArray(t[0])?new Gt(t.context,t[0]):t[0]:o:t})};var Tn=function(t,n){if("number"==typeof t)return[n[t]];var r=e.map(n,function(e){return e.nTable});return e(r).filter(t).map(function(){var t=e.inArray(this,r);return n[t]}).toArray()};Jt("tables()",function(e){return e?new Gt(Tn(e,this.context)):this}),Jt("table()",function(e){var t=this.tables(e),n=t.context;return n.length?new Gt(n[0]):t}),Yt("tables().nodes()","table().node()",function(){return this.iterator("table",function(e){return e.nTable})}),Yt("tables().body()","table().body()",function(){return this.iterator("table",function(e){return e.nTBody})}),Yt("tables().header()","table().header()",function(){return this.iterator("table",function(e){return e.nTHead})}),Yt("tables().footer()","table().footer()",function(){return this.iterator("table",function(e){return e.nTFoot})}),Jt("draw()",function(e){return this.iterator("table",function(t){F(t,e===!1)})}),Jt("page()",function(e){return e===o?this.page.info().page:this.iterator("table",function(t){ct(t,e)})}),Jt("page.info()",function(){if(0===this.context.length)return o;var e=this.context[0],t=e._iDisplayStart,n=e._iDisplayLength,r=e.fnRecordsDisplay(),i=-1===n;return{page:i?0:Math.floor(t/n),pages:i?1:Math.ceil(r/n),start:t,end:e.fnDisplayEnd(),length:n,recordsTotal:e.fnRecordsTotal(),recordsDisplay:r}}),Jt("page.len()",function(e){return e===o?0!==this.context.length?this.context[0]._iDisplayLength:o:this.iterator("table",function(t){st(t,e)})});var Dn=function(e,t,n){if("ssp"==Bt(e)?F(e,t):(dt(e,!0),q(e,[],function(n){_(e);for(var r=$(e,n),i=0,o=r.length;o>i;i++)x(e,r[i]);F(e,t),dt(e,!1)})),n){var r=new Gt(e);r.one("draw",function(){n(r.ajax.json())})}};Jt("ajax.json()",function(){var e=this.context;return e.length>0?e[0].json:void 0}),Jt("ajax.params()",function(){var e=this.context;return e.length>0?e[0].oAjaxData:void 0}),Jt("ajax.reload()",function(e,t){return this.iterator("table",function(n){Dn(n,t===!1,e)})}),Jt("ajax.url()",function(t){var n=this.context;return t===o?0===n.length?o:(n=n[0],n.ajax?e.isPlainObject(n.ajax)?n.ajax.url:n.ajax:n.sAjaxSource):this.iterator("table",function(n){e.isPlainObject(n.ajax)?n.ajax.url=t:n.ajax=t})}),Jt("ajax.url().load()",function(e,t){return this.iterator("table",function(n){Dn(n,t===!1,e)})});var kn=function(t,n){var r,i,a,s,l,u,c=[];for(t&&"string"!=typeof t&&t.length!==o||(t=[t]),a=0,s=t.length;s>a;a++)for(i=t[a]&&t[a].split?t[a].split(","):[t[a]],l=0,u=i.length;u>l;l++)r=n("string"==typeof i[l]?e.trim(i[l]):i[l]),r&&r.length&&c.push.apply(c,r);return c},Ln=function(e){return e||(e={}),e.filter&&!e.search&&(e.search=e.filter),{search:e.search||"none",order:e.order||"current",page:e.page||"all"}},Nn=function(e){for(var t=0,n=e.length;n>t;t++)if(e[t].length>0)return e[0]=e[t],e.length=1,e.context=[e.context[t]],e;return e.length=0,e},An=function(t,n){var r,i,o,a=[],s=t.aiDisplay,l=t.aiDisplayMaster,u=n.search,c=n.order,f=n.page;if("ssp"==Bt(t))return"removed"===u?[]:dn(0,l.length);if("current"==f)for(r=t._iDisplayStart,i=t.fnDisplayEnd();i>r;r++)a.push(s[r]);else if("current"==c||"applied"==c)a="none"==u?l.slice():"applied"==u?s.slice():e.map(l,function(t){return-1===e.inArray(t,s)?t:null});else if("index"==c||"original"==c)for(r=0,i=t.aoData.length;i>r;r++)"none"==u?a.push(r):(o=e.inArray(r,s),(-1===o&&"removed"==u||1===o&&"applied"==u)&&a.push(r));return a},_n=function(t,n,r){return kn(n,function(n){var i=on(n);if(null!==i&&!r)return[i];var o=An(t,r);if(null!==i&&-1!==e.inArray(i,o))return[i];if(!n)return o;for(var a=[],s=0,l=o.length;l>s;s++)a.push(t.aoData[o[s]].nTr);return n.nodeName&&-1!==e.inArray(n,a)?[n._DT_RowIndex]:e(a).filter(n).map(function(){return this._DT_RowIndex}).toArray()})};Jt("rows()",function(t,n){t===o?t="":e.isPlainObject(t)&&(n=t,t=""),n=Ln(n);var r=this.iterator("table",function(e){return _n(e,t,n)});return r.selector.rows=t,r.selector.opts=n,r}),Jt("rows().nodes()",function(){return this.iterator("row",function(e,t){return e.aoData[t].nTr||o})}),Jt("rows().data()",function(){return this.iterator(!0,"rows",function(e,t){return fn(e.aoData,t,"_aData")})}),Yt("rows().cache()","row().cache()",function(e){return this.iterator("row",function(t,n){var r=t.aoData[n];return"search"===e?r._aFilterData:r._aSortData})}),Yt("rows().invalidate()","row().invalidate()",function(e){return this.iterator("row",function(t,n){E(t,n,e)})}),Yt("rows().indexes()","row().index()",function(){return this.iterator("row",function(e,t){return t})}),Yt("rows().remove()","row().remove()",function(){var t=this;return this.iterator("row",function(n,r,i){var o=n.aoData;o.splice(r,1);for(var a=0,s=o.length;s>a;a++)null!==o[a].nTr&&(o[a].nTr._DT_RowIndex=a);e.inArray(r,n.aiDisplay);M(n.aiDisplayMaster,r),M(n.aiDisplay,r),M(t[i],r,!1),Wt(n)})}),Jt("rows.add()",function(e){var t=this.iterator("table",function(t){var n,r,i,o=[];for(r=0,i=e.length;i>r;r++)n=e[r],o.push(n.nodeName&&"TR"===n.nodeName.toUpperCase()?w(t,n)[0]:x(t,n));return o}),n=this.rows(-1);return n.pop(),n.push.apply(n,t.toArray()),n}),Jt("row()",function(e,t){return Nn(this.rows(e,t))}),Jt("row().data()",function(e){var t=this.context;return e===o?t.length&&this.length?t[0].aoData[this[0]]._aData:o:(t[0].aoData[this[0]]._aData=e,E(t[0],this[0],"data"),this)}),Jt("row().node()",function(){var e=this.context;return e.length&&this.length?e[0].aoData[this[0]].nTr||null:null}),Jt("row.add()",function(t){t instanceof e&&t.length&&(t=t[0]);var n=this.iterator("table",function(e){return t.nodeName&&"TR"===t.nodeName.toUpperCase()?w(e,t)[0]:x(e,t)});return this.row(n[0])});var Mn=function(t,n,r,i){var o=[],a=function(n,r){if(n.nodeName&&"tr"===n.nodeName.toLowerCase())o.push(n);else{var i=e("<tr><td/></tr>");e("td",i).addClass(r).html(n)[0].colSpan=m(t),o.push(i[0])}};if(e.isArray(r)||r instanceof e)for(var s=0,l=r.length;l>s;s++)a(r[s],i);else a(r,i);n._details&&n._details.remove(),n._details=e(o),n._detailsShow&&n._details.insertAfter(n.nTr)},En=function(e){var t=this.context;if(t.length&&this.length){var n=t[0].aoData[this[0]];n._details&&(n._detailsShow=e,e?n._details.insertAfter(n.nTr):n._details.remove(),jn(t[0]))}return this},jn=function(e){var t=new Gt(e),n=".dt.DT_details",r="draw"+n,i="column-visibility"+n;t.off(r+" "+i),cn(e.aoData,"_details").length>0&&(t.on(r,function(){t.rows({page:"current"}).eq(0).each(function(t){var n=e.aoData[t];n._detailsShow&&n._details.insertAfter(n.nTr)})}),t.on(i,function(e,t){for(var n,r=m(t),i=0,o=t.aoData.length;o>i;i++)n=t.aoData[i],n._details&&n._details.children("td[colspan]").attr("colspan",r)}))};Jt("row().child()",function(e,t){var n=this.context;return e===o?n.length&&this.length?n[0].aoData[this[0]]._details:o:(n.length&&this.length&&Mn(n[0],n[0].aoData[this[0]],e,t),this)}),Jt(["row().child.show()","row().child().show()"],function(){return En.call(this,!0),this}),Jt(["row().child.hide()","row().child().hide()"],function(){return En.call(this,!1),this}),Jt("row().child.isShown()",function(){var e=this.context;return e.length&&this.length?e[0].aoData[this[0]]._detailsShow||!1:!1});var Hn=/^(.*):(name|visIdx|visible)$/,In=function(t,n){var r=t.aoColumns,i=cn(r,"sName"),o=cn(r,"nTh");return kn(n,function(n){var a=on(n);if(""===n)return dn(r.length);if(null!==a)return[a>=0?a:r.length+a];var s="string"==typeof n?n.match(Hn):"";if(!s)return e(o).filter(n).map(function(){return e.inArray(this,o)}).toArray();switch(s[2]){case"visIdx":case"visible":var l=parseInt(s[1],10);if(0>l){var u=e.map(r,function(e,t){return e.bVisible?t:null});return[u[u.length+l]]}return[p(t,l)];case"name":return e.map(i,function(e,t){return e===s[1]?t:null})}})},On=function(t,n,r){var i,a,s,l,u=t.aoColumns,c=u[n],f=t.aoData;if(r===o)return c.bVisible;if(c.bVisible!==r){if(r){var d=e.inArray(!0,cn(u,"bVisible"),n+1);for(a=0,s=f.length;s>a;a++)l=f[a].nTr,i=f[a].anCells,l&&l.insertBefore(i[n],i[d]||null)}else e(cn(t.aoData,"anCells",n)).detach(),c.bVisible=!1,R(t,t.aoHeader),R(t,t.aoFooter),Mt(t);c.bVisible=r,R(t,t.aoHeader),R(t,t.aoFooter),h(t),(t.oScroll.sX||t.oScroll.sY)&&pt(t),Ft(t,null,"column-visibility",[t,n,r]),Mt(t)}};Jt("columns()",function(t,n){t===o?t="":e.isPlainObject(t)&&(n=t,t=""),n=Ln(n);var r=this.iterator("table",function(e){return In(e,t,n)});return r.selector.cols=t,r.selector.opts=n,r}),Yt("columns().header()","column().header()",function(){return this.iterator("column",function(e,t){return e.aoColumns[t].nTh})}),Yt("columns().footer()","column().footer()",function(){return this.iterator("column",function(e,t){return e.aoColumns[t].nTf})}),Yt("columns().data()","column().data()",function(){return this.iterator("column-rows",function(e,t,n,r,i){for(var o=[],a=0,s=i.length;s>a;a++)o.push(T(e,i[a],t,""));return o})}),Yt("columns().cache()","column().cache()",function(e){return this.iterator("column-rows",function(t,n,r,i,o){return fn(t.aoData,o,"search"===e?"_aFilterData":"_aSortData",n)})}),Yt("columns().nodes()","column().nodes()",function(){return this.iterator("column-rows",function(e,t,n,r,i){return fn(e.aoData,i,"anCells",t)})}),Yt("columns().visible()","column().visible()",function(e){return this.iterator("column",function(t,n){return e===o?t.aoColumns[n].bVisible:On(t,n,e)})}),Yt("columns().indexes()","column().index()",function(e){return this.iterator("column",function(t,n){return"visible"===e?g(t,n):n})}),Jt("columns.adjust()",function(){return this.iterator("table",function(e){h(e)})}),Jt("column.index()",function(e,t){if(0!==this.context.length){var n=this.context[0];if("fromVisible"===e||"toData"===e)return p(n,t);if("fromData"===e||"toVisible"===e)return g(n,t)}}),Jt("column()",function(e,t){return Nn(this.columns(e,t))});var Rn=function(t,n,r){var i,o,a,s,l,u=t.aoData,c=An(t,r),f=fn(u,c,"anCells"),d=e([].concat.apply([],f)),h=t.aoColumns.length;return kn(n,function(t){if(!t){for(o=[],a=0,s=c.length;s>a;a++)for(i=c[a],l=0;h>l;l++)o.push({row:i,column:l});return o}return e.isPlainObject(t)?[t]:d.filter(t).map(function(t,n){return i=n.parentNode._DT_RowIndex,{row:i,column:e.inArray(n,u[i].anCells)}}).toArray()})};Jt("cells()",function(t,n,r){if(e.isPlainObject(t)&&(t.row?(r=n,n=null):(r=t,t=null)),e.isPlainObject(n)&&(r=n,n=null),null===n||n===o)return this.iterator("table",function(e){return Rn(e,t,Ln(r))});var i,a,s,l,u,c=this.columns(n,r),f=this.rows(t,r),d=this.iterator("table",function(e,t){for(i=[],a=0,s=f[t].length;s>a;a++)for(l=0,u=c[t].length;u>l;l++)i.push({row:f[t][a],column:c[t][l]});return i});return e.extend(d.selector,{cols:n,rows:t,opts:r}),d}),Yt("cells().nodes()","cell().node()",function(){return this.iterator("cell",function(e,t,n){return e.aoData[t].anCells[n]})}),Jt("cells().data()",function(){return this.iterator("cell",function(e,t,n){return T(e,t,n)})}),Yt("cells().cache()","cell().cache()",function(e){return e="search"===e?"_aFilterData":"_aSortData",this.iterator("cell",function(t,n,r){return t.aoData[n][e][r]})}),Yt("cells().indexes()","cell().index()",function(){return this.iterator("cell",function(e,t,n){return{row:t,column:n,columnVisible:g(e,n)}})}),Jt(["cells().invalidate()","cell().invalidate()"],function(e){var t=this.selector;return this.rows(t.rows,t.opts).invalidate(e),this}),Jt("cell()",function(e,t,n){return Nn(this.cells(e,t,n))}),Jt("cell().data()",function(e){var t=this.context,n=this[0];return e===o?t.length&&n.length?T(t[0],n[0].row,n[0].column):o:(D(t[0],n[0].row,n[0].column,e),E(t[0],n[0].row,"data",n[0].column),this)}),Jt("order()",function(t,n){var r=this.context;return t===o?0!==r.length?r[0].aaSorting:o:("number"==typeof t?t=[[t,n]]:e.isArray(t[0])||(t=Array.prototype.slice.call(arguments)),this.iterator("table",function(e){e.aaSorting=t.slice()}))}),Jt("order.listener()",function(e,t,n){return this.iterator("table",function(r){Nt(r,e,t,n)})}),Jt(["columns().order()","column().order()"],function(t){var n=this;return this.iterator("table",function(r,i){var o=[];e.each(n[i],function(e,n){o.push([n,t])}),r.aaSorting=o})}),Jt("search()",function(t,n,r,i){var a=this.context;return t===o?0!==a.length?a[0].oPreviousSearch.sSearch:o:this.iterator("table",function(o){o.oFeatures.bFilter&&J(o,e.extend({},o.oPreviousSearch,{sSearch:t+"",bRegex:null===n?!1:n,bSmart:null===r?!0:r,bCaseInsensitive:null===i?!0:i}),1)})}),Jt(["columns().search()","column().search()"],function(t,n,r,i){return this.iterator("column",function(a,s){var l=a.aoPreSearchCols;return t===o?l[s].sSearch:void(a.oFeatures.bFilter&&(e.extend(l[s],{sSearch:t+"",bRegex:null===n?!1:n,bSmart:null===r?!0:r,bCaseInsensitive:null===i?!0:i}),J(a,a.oPreviousSearch,1)))})}),Xt.versionCheck=Xt.fnVersionCheck=function(e){for(var t,n,r=Xt.version.split("."),i=e.split("."),o=0,a=i.length;a>o;o++)if(t=parseInt(r[o],10)||0,n=parseInt(i[o],10)||0,t!==n)return t>n;return!0},Xt.isDataTable=Xt.fnIsDataTable=function(t){var n=e(t).get(0),r=!1;return e.each(Xt.settings,function(e,t){(t.nTable===n||t.nScrollHead===n||t.nScrollFoot===n)&&(r=!0)}),r},Xt.tables=Xt.fnTables=function(t){return jQuery.map(Xt.settings,function(n){return!t||t&&e(n.nTable).is(":visible")?n.nTable:void 0})},Xt.camelToHungarian=r,Jt("$()",function(t,n){var r=this.rows(n).nodes(),i=e(r);return e([].concat(i.filter(t).toArray(),i.find(t).toArray()))}),e.each(["on","one","off"],function(t,n){Jt(n+"()",function(){var t=Array.prototype.slice.call(arguments);-1===t[0].indexOf(".dt")&&(t[0]+=".dt");var r=e(this.tables().nodes());return r[n].apply(r,t),this})}),Jt("clear()",function(){return this.iterator("table",function(e){_(e)})}),Jt("settings()",function(){return new Gt(this.context,this.context)}),Jt("data()",function(){return this.iterator("table",function(e){return cn(e.aoData,"_aData")}).flatten()}),Jt("destroy()",function(t){return t=t||!1,this.iterator("table",function(r){var i,o=r.nTableWrapper.parentNode,a=r.oClasses,s=r.nTable,l=r.nTBody,u=r.nTHead,c=r.nTFoot,f=e(s),d=e(l),h=e(r.nTableWrapper),p=e.map(r.aoData,function(e){return e.nTr});r.bDestroying=!0,Ft(r,"aoDestroyCallback","destroy",[r]),t||new Gt(r).columns().visible(!0),h.unbind(".DT").find(":not(tbody *)").unbind(".DT"),e(n).unbind(".DT-"+r.sInstance),s!=u.parentNode&&(f.children("thead").detach(),f.append(u)),c&&s!=c.parentNode&&(f.children("tfoot").detach(),f.append(c)),f.detach(),h.detach(),r.aaSorting=[],r.aaSortingFixed=[],At(r),e(p).removeClass(r.asStripeClasses.join(" ")),e("th, td",u).removeClass(a.sSortable+" "+a.sSortableAsc+" "+a.sSortableDesc+" "+a.sSortableNone),r.bJUI&&(e("th span."+a.sSortIcon+", td span."+a.sSortIcon,u).detach(),e("th, td",u).each(function(){var t=e("div."+a.sSortJUIWrapper,this);e(this).append(t.contents()),t.detach()})),!t&&o&&o.insertBefore(s,r.nTableReinsertBefore),d.children().detach(),d.append(p),f.css("width",r.sDestroyWidth).removeClass(a.sTable),i=r.asDestroyStripes.length,i&&d.children().each(function(t){e(this).addClass(r.asDestroyStripes[t%i]) });var g=e.inArray(r,Xt.settings);-1!==g&&Xt.settings.splice(g,1)})}),Xt.version="1.10.0",Xt.settings=[],Xt.models={},Xt.models.oSearch={bCaseInsensitive:!0,sSearch:"",bRegex:!1,bSmart:!0},Xt.models.oRow={nTr:null,anCells:null,_aData:[],_aSortData:null,_aFilterData:null,_sFilterRow:null,_sRowStripe:"",src:null},Xt.models.oColumn={idx:null,aDataSort:null,asSorting:null,bSearchable:null,bSortable:null,bVisible:null,_sManualType:null,_bAttrSrc:!1,fnCreatedCell:null,fnGetData:null,fnSetData:null,mData:null,mRender:null,nTh:null,nTf:null,sClass:null,sContentPadding:null,sDefaultContent:null,sName:null,sSortDataType:"std",sSortingClass:null,sSortingClassJUI:null,sTitle:null,sType:null,sWidth:null,sWidthOrig:null},Xt.defaults={aaData:null,aaSorting:[[0,"asc"]],aaSortingFixed:[],ajax:null,aLengthMenu:[10,25,50,100],aoColumns:null,aoColumnDefs:null,aoSearchCols:[],asStripeClasses:null,bAutoWidth:!0,bDeferRender:!1,bDestroy:!1,bFilter:!0,bInfo:!0,bJQueryUI:!1,bLengthChange:!0,bPaginate:!0,bProcessing:!1,bRetrieve:!1,bScrollCollapse:!1,bServerSide:!1,bSort:!0,bSortMulti:!0,bSortCellsTop:!1,bSortClasses:!0,bStateSave:!1,fnCreatedRow:null,fnDrawCallback:null,fnFooterCallback:null,fnFormatNumber:function(e){return e.toString().replace(/\B(?=(\d{3})+(?!\d))/g,this.oLanguage.sThousands)},fnHeaderCallback:null,fnInfoCallback:null,fnInitComplete:null,fnPreDrawCallback:null,fnRowCallback:null,fnServerData:null,fnServerParams:null,fnStateLoadCallback:function(e){try{return JSON.parse((-1===e.iStateDuration?sessionStorage:localStorage).getItem("DataTables_"+e.sInstance+"_"+location.pathname))}catch(t){}},fnStateLoadParams:null,fnStateLoaded:null,fnStateSaveCallback:function(e,t){try{(-1===e.iStateDuration?sessionStorage:localStorage).setItem("DataTables_"+e.sInstance+"_"+location.pathname,JSON.stringify(t))}catch(n){}},fnStateSaveParams:null,iStateDuration:7200,iDeferLoading:null,iDisplayLength:10,iDisplayStart:0,iTabIndex:0,oClasses:{},oLanguage:{oAria:{sSortAscending:": activate to sort column ascending",sSortDescending:": activate to sort column descending"},oPaginate:{sFirst:"First",sLast:"Last",sNext:"Next",sPrevious:"Previous"},sEmptyTable:"No data available in table",sInfo:"Showing _START_ to _END_ of _TOTAL_ entries",sInfoEmpty:"Showing 0 to 0 of 0 entries",sInfoFiltered:"(filtered from _MAX_ total entries)",sInfoPostFix:"",sDecimal:"",sThousands:",",sLengthMenu:"Show _MENU_ entries",sLoadingRecords:"Loading...",sProcessing:"Processing...",sSearch:"Search:",sUrl:"",sZeroRecords:"No matching records found"},oSearch:e.extend({},Xt.models.oSearch),sAjaxDataProp:"data",sAjaxSource:null,sDom:"lfrtip",sPaginationType:"simple_numbers",sScrollX:"",sScrollXInner:"",sScrollY:"",sServerMethod:"GET",renderer:null},t(Xt.defaults),Xt.defaults.column={aDataSort:null,iDataSort:-1,asSorting:["asc","desc"],bSearchable:!0,bSortable:!0,bVisible:!0,fnCreatedCell:null,mData:null,mRender:null,sCellType:"td",sClass:"",sContentPadding:"",sDefaultContent:null,sName:"",sSortDataType:"std",sTitle:null,sType:null,sWidth:null},t(Xt.defaults.column),Xt.models.oSettings={oFeatures:{bAutoWidth:null,bDeferRender:null,bFilter:null,bInfo:null,bLengthChange:null,bPaginate:null,bProcessing:null,bServerSide:null,bSort:null,bSortMulti:null,bSortClasses:null,bStateSave:null},oScroll:{bCollapse:null,iBarWidth:0,sX:null,sXInner:null,sY:null},oLanguage:{fnInfoCallback:null},oBrowser:{bScrollOversize:!1,bScrollbarLeft:!1},ajax:null,aanFeatures:[],aoData:[],aiDisplay:[],aiDisplayMaster:[],aoColumns:[],aoHeader:[],aoFooter:[],oPreviousSearch:{},aoPreSearchCols:[],aaSorting:null,aaSortingFixed:[],asStripeClasses:null,asDestroyStripes:[],sDestroyWidth:0,aoRowCallback:[],aoHeaderCallback:[],aoFooterCallback:[],aoDrawCallback:[],aoRowCreatedCallback:[],aoPreDrawCallback:[],aoInitComplete:[],aoStateSaveParams:[],aoStateLoadParams:[],aoStateLoaded:[],sTableId:"",nTable:null,nTHead:null,nTFoot:null,nTBody:null,nTableWrapper:null,bDeferLoading:!1,bInitialised:!1,aoOpenRows:[],sDom:null,sPaginationType:"two_button",iStateDuration:0,aoStateSave:[],aoStateLoad:[],oLoadedState:null,sAjaxSource:null,sAjaxDataProp:null,bAjaxDataGet:!0,jqXHR:null,json:o,oAjaxData:o,fnServerData:null,aoServerParams:[],sServerMethod:null,fnFormatNumber:null,aLengthMenu:null,iDraw:0,bDrawing:!1,iDrawError:-1,_iDisplayLength:10,_iDisplayStart:0,_iRecordsTotal:0,_iRecordsDisplay:0,bJUI:null,oClasses:{},bFiltered:!1,bSorted:!1,bSortCellsTop:null,oInit:null,aoDestroyCallback:[],fnRecordsTotal:function(){return"ssp"==Bt(this)?1*this._iRecordsTotal:this.aiDisplayMaster.length},fnRecordsDisplay:function(){return"ssp"==Bt(this)?1*this._iRecordsDisplay:this.aiDisplay.length},fnDisplayEnd:function(){var e=this._iDisplayLength,t=this._iDisplayStart,n=t+e,r=this.aiDisplay.length,i=this.oFeatures,o=i.bPaginate;return i.bServerSide?o===!1||-1===e?t+r:Math.min(t+e,this._iRecordsDisplay):!o||n>r||-1===e?r:n},oInstance:null,sInstance:null,iTabIndex:0,nScrollHead:null,nScrollFoot:null,aLastSort:[],oPlugins:{}},Xt.ext=$t={classes:{},errMode:"alert",feature:[],search:[],internal:{},legacy:{ajax:null},pager:{},renderer:{pageButton:{},header:{}},order:{},type:{detect:[],search:{},order:{}},_unique:0,fnVersionCheck:Xt.fnVersionCheck,iApiIndex:0,oJUIClasses:{},sVersion:Xt.version},e.extend($t,{afnFiltering:$t.search,aTypes:$t.type.detect,ofnSearch:$t.type.search,oSort:$t.type.order,afnSortData:$t.order,aoFeatures:$t.feature,oApi:$t.internal,oStdClasses:$t.classes,oPagination:$t.pager}),e.extend(Xt.ext.classes,{sTable:"dataTable",sNoFooter:"no-footer",sPageButton:"paginate_button",sPageButtonActive:"current",sPageButtonDisabled:"disabled",sStripeOdd:"odd",sStripeEven:"even",sRowEmpty:"dataTables_empty",sWrapper:"dataTables_wrapper",sFilter:"dataTables_filter",sInfo:"dataTables_info",sPaging:"dataTables_paginate paging_",sLength:"dataTables_length",sProcessing:"dataTables_processing",sSortAsc:"sorting_asc",sSortDesc:"sorting_desc",sSortable:"sorting",sSortableAsc:"sorting_asc_disabled",sSortableDesc:"sorting_desc_disabled",sSortableNone:"sorting_disabled",sSortColumn:"sorting_",sFilterInput:"",sLengthSelect:"",sScrollWrapper:"dataTables_scroll",sScrollHead:"dataTables_scrollHead",sScrollHeadInner:"dataTables_scrollHeadInner",sScrollBody:"dataTables_scrollBody",sScrollFoot:"dataTables_scrollFoot",sScrollFootInner:"dataTables_scrollFootInner",sHeaderTH:"",sFooterTH:"",sSortJUIAsc:"",sSortJUIDesc:"",sSortJUI:"",sSortJUIAscAllowed:"",sSortJUIDescAllowed:"",sSortJUIWrapper:"",sSortIcon:"",sJUIHeader:"",sJUIFooter:""}),function(){var t="";t="";var n=t+"ui-state-default",r=t+"css_right ui-icon ui-icon-",i=t+"fg-toolbar ui-toolbar ui-widget-header ui-helper-clearfix";e.extend(Xt.ext.oJUIClasses,Xt.ext.classes,{sPageButton:"fg-button ui-button "+n,sPageButtonActive:"ui-state-disabled",sPageButtonDisabled:"ui-state-disabled",sPaging:"dataTables_paginate fg-buttonset ui-buttonset fg-buttonset-multi ui-buttonset-multi paging_",sSortAsc:n+" sorting_asc",sSortDesc:n+" sorting_desc",sSortable:n+" sorting",sSortableAsc:n+" sorting_asc_disabled",sSortableDesc:n+" sorting_desc_disabled",sSortableNone:n+" sorting_disabled",sSortJUIAsc:r+"triangle-1-n",sSortJUIDesc:r+"triangle-1-s",sSortJUI:r+"carat-2-n-s",sSortJUIAscAllowed:r+"carat-1-n",sSortJUIDescAllowed:r+"carat-1-s",sSortJUIWrapper:"DataTables_sort_wrapper",sSortIcon:"DataTables_sort_icon",sScrollHead:"dataTables_scrollHead "+n,sScrollFoot:"dataTables_scrollFoot "+n,sHeaderTH:n,sFooterTH:n,sJUIHeader:i+" ui-corner-tl ui-corner-tr",sJUIFooter:i+" ui-corner-bl ui-corner-br"})}();var Pn=Xt.ext.pager;e.extend(Pn,{simple:function(){return["previous","next"]},full:function(){return["first","previous","next","last"]},simple_numbers:function(e,t){return["previous",qt(e,t),"next"]},full_numbers:function(e,t){return["first","previous",qt(e,t),"next","last"]},_numbers:qt,numbers_length:7}),e.extend(!0,Xt.ext.renderer,{pageButton:{_:function(t,n,r,o,a,s){var l,u,c=t.oClasses,f=t.oLanguage.oPaginate,d=0,h=function(n,i){var o,p,g,m,v=function(e){ct(t,e.data.action,!0)};for(o=0,p=i.length;p>o;o++)if(m=i[o],e.isArray(m)){var y=e("<"+(m.DT_el||"div")+"/>").appendTo(n);h(y,m)}else{switch(l="",u="",m){case"ellipsis":n.append("<span>&hellip;</span>");break;case"first":l=f.sFirst,u=m+(a>0?"":" "+c.sPageButtonDisabled);break;case"previous":l=f.sPrevious,u=m+(a>0?"":" "+c.sPageButtonDisabled);break;case"next":l=f.sNext,u=m+(s-1>a?"":" "+c.sPageButtonDisabled);break;case"last":l=f.sLast,u=m+(s-1>a?"":" "+c.sPageButtonDisabled);break;default:l=m+1,u=a===m?c.sPageButtonActive:""}l&&(g=e("<a>",{"class":c.sPageButton+" "+u,"aria-controls":t.sTableId,"data-dt-idx":d,tabindex:t.iTabIndex,id:0===r&&"string"==typeof m?t.sTableId+"_"+m:null}).html(l).appendTo(n),Rt(g,{action:m},v),d++)}},p=e(i.activeElement).data("dt-idx");h(e(n).empty(),o),null!==p&&e(n).find("[data-dt-idx="+p+"]").focus()}}});var Fn=function(e,t,n,r){return e&&"-"!==e?(t&&(e=an(e,t)),e.replace&&(n&&(e=e.replace(n,"")),r&&(e=e.replace(r,""))),1*e):-1/0};return e.extend($t.type.order,{"date-pre":function(e){return Date.parse(e)||0},"html-pre":function(e){return e?e.replace?e.replace(/<.*?>/g,"").toLowerCase():e+"":""},"string-pre":function(e){return"string"==typeof e?e.toLowerCase():e&&e.toString?e.toString():""},"string-asc":function(e,t){return t>e?-1:e>t?1:0},"string-desc":function(e,t){return t>e?1:e>t?-1:0}}),Vt(""),e.extend(Xt.ext.type.detect,[function(e,t){var n=t.oLanguage.sDecimal;return sn(e,n)?"num"+n:null},function(e){if(e&&!en.test(e))return null;var t=Date.parse(e);return null!==t&&!isNaN(t)||rn(e)?"date":null},function(e,t){var n=t.oLanguage.sDecimal;return sn(e,n,!0)?"num-fmt"+n:null},function(e,t){var n=t.oLanguage.sDecimal;return un(e,n)?"html-num"+n:null},function(e,t){var n=t.oLanguage.sDecimal;return un(e,n,!0)?"html-num-fmt"+n:null},function(e){return rn(e)||"string"==typeof e&&-1!==e.indexOf("<")?"html":null}]),e.extend(Xt.ext.type.search,{html:function(e){return rn(e)?"":"string"==typeof e?e.replace(Qt," ").replace(Zt,""):""},string:function(e){return rn(e)?"":"string"==typeof e?e.replace(Qt," "):e}}),e.extend(!0,Xt.ext.renderer,{header:{_:function(t,n,r,i){e(t.nTable).on("order.dt.DT",function(e,t,o,a){var s=r.idx;n.removeClass(r.sSortingClass+" "+i.sSortAsc+" "+i.sSortDesc).addClass("asc"==a[s]?i.sSortAsc:"desc"==a[s]?i.sSortDesc:r.sSortingClass)})},jqueryui:function(t,n,r,i){var o=r.idx;e("<div/>").addClass(i.sSortJUIWrapper).append(n.contents()).append(e("<span/>").addClass(i.sSortIcon+" "+r.sSortingClassJUI)).appendTo(n),e(t.nTable).on("order.dt.DT",function(e,t,a,s){n.removeClass(i.sSortAsc+" "+i.sSortDesc).addClass("asc"==s[o]?i.sSortAsc:"desc"==s[o]?i.sSortDesc:r.sSortingClass),n.find("span."+i.sSortIcon).removeClass(i.sSortJUIAsc+" "+i.sSortJUIDesc+" "+i.sSortJUI+" "+i.sSortJUIAscAllowed+" "+i.sSortJUIDescAllowed).addClass("asc"==s[o]?i.sSortJUIAsc:"desc"==s[o]?i.sSortJUIDesc:r.sSortingClassJUI)})}}}),Xt.render={number:function(e,t,n,r){return{display:function(i){i=parseFloat(i);var o=parseInt(i,10),a=n?(t+(i-o).toFixed(n)).substring(2):"";return(r||"")+o.toString().replace(/\B(?=(\d{3})+(?!\d))/g,e)+a}}}},e.extend(Xt.ext.internal,{_fnExternApiFunc:Ut,_fnBuildAjax:q,_fnAjaxUpdate:V,_fnAjaxParameters:U,_fnAjaxUpdateDraw:X,_fnAjaxDataSrc:$,_fnAddColumn:f,_fnColumnOptions:d,_fnAdjustColumnSizing:h,_fnVisibleToColumnIndex:p,_fnColumnIndexToVisible:g,_fnVisbleColumns:m,_fnGetColumns:v,_fnColumnTypes:y,_fnApplyColumnDefs:b,_fnHungarianMap:t,_fnCamelToHungarian:r,_fnLanguageCompat:a,_fnBrowserDetect:u,_fnAddData:x,_fnAddTr:w,_fnNodeToDataIndex:S,_fnNodeToColumnIndex:C,_fnGetCellData:T,_fnSetCellData:D,_fnSplitObjNotation:k,_fnGetObjectDataFn:L,_fnSetObjectDataFn:N,_fnGetDataMaster:A,_fnClearTable:_,_fnDeleteIndex:M,_fnInvalidateRow:E,_fnGetRowElements:j,_fnCreateTr:H,_fnBuildHead:O,_fnDrawHead:R,_fnDraw:P,_fnReDraw:F,_fnAddOptionsHtml:W,_fnDetectHeader:z,_fnGetUniqueThs:B,_fnFeatureHtmlFilter:G,_fnFilterComplete:J,_fnFilterCustom:Y,_fnFilterColumn:K,_fnFilter:Q,_fnFilterCreateSearch:Z,_fnEscapeRegex:et,_fnFilterData:tt,_fnFeatureHtmlInfo:nt,_fnUpdateInfo:rt,_fnInfoMacros:it,_fnInitialise:ot,_fnInitComplete:at,_fnLengthChange:st,_fnFeatureHtmlLength:lt,_fnFeatureHtmlPaginate:ut,_fnPageChange:ct,_fnFeatureHtmlProcessing:ft,_fnProcessingDisplay:dt,_fnFeatureHtmlTable:ht,_fnScrollDraw:pt,_fnApplyToChildren:gt,_fnCalculateColumnWidths:mt,_fnThrottle:vt,_fnConvertToWidth:yt,_fnScrollingWidthAdjust:bt,_fnGetWidestNode:xt,_fnGetMaxLenString:wt,_fnStringToCss:St,_fnScrollBarWidth:Ct,_fnSortFlatten:Tt,_fnSort:Dt,_fnSortAria:kt,_fnSortListener:Lt,_fnSortAttachListener:Nt,_fnSortingClasses:At,_fnSortData:_t,_fnSaveState:Mt,_fnLoadState:Et,_fnSettingsFromNode:jt,_fnLog:Ht,_fnMap:It,_fnBindAction:Rt,_fnCallbackReg:Pt,_fnCallbackFire:Ft,_fnLengthOverflow:Wt,_fnRenderer:zt,_fnDataSource:Bt,_fnRowAttributes:I,_fnCalculateEnd:function(){}}),e.fn.dataTable=Xt,e.fn.dataTableSettings=Xt.settings,e.fn.dataTableExt=Xt.ext,e.fn.DataTable=function(t){return e(this).dataTable(t).api()},e.each(Xt,function(t,n){e.fn.DataTable[t]=n}),e.fn.dataTable})}(window,document)},{jquery:7}],2:[function(){RegExp.escape=function(e){return e.replace(/[-\/\\^$*+?.()|[\]{}]/g,"\\$&")},function(e){"use strict";e.csv={defaults:{separator:",",delimiter:'"',headers:!0},hooks:{castToScalar:function(e){var t=/\./;if(isNaN(e))return e;if(t.test(e))return parseFloat(e);var n=parseInt(e);return isNaN(n)?null:n}},parsers:{parse:function(e,t){function n(){if(l=0,u="",t.start&&t.state.rowNum<t.start)return s=[],t.state.rowNum++,void(t.state.colNum=1);if(void 0===t.onParseEntry)a.push(s);else{var e=t.onParseEntry(s,t.state);e!==!1&&a.push(e)}s=[],t.end&&t.state.rowNum>=t.end&&(c=!0),t.state.rowNum++,t.state.colNum=1}function r(){if(void 0===t.onParseValue)s.push(u);else{var e=t.onParseValue(u,t.state);e!==!1&&s.push(e)}u="",l=0,t.state.colNum++}var i=t.separator,o=t.delimiter;t.state.rowNum||(t.state.rowNum=1),t.state.colNum||(t.state.colNum=1);var a=[],s=[],l=0,u="",c=!1,f=RegExp.escape(i),d=RegExp.escape(o),h=/(D|S|\n|\r|[^DS\r\n]+)/,p=h.source;return p=p.replace(/S/g,f),p=p.replace(/D/g,d),h=RegExp(p,"gm"),e.replace(h,function(e){if(!c)switch(l){case 0:if(e===i){u+="",r();break}if(e===o){l=1;break}if("\n"===e){r(),n();break}if(/^\r$/.test(e))break;u+=e,l=3;break;case 1:if(e===o){l=2;break}u+=e,l=1;break;case 2:if(e===o){u+=e,l=1;break}if(e===i){r();break}if("\n"===e){r(),n();break}if(/^\r$/.test(e))break;throw new Error("CSVDataError: Illegal State [Row:"+t.state.rowNum+"][Col:"+t.state.colNum+"]");case 3:if(e===i){r();break}if("\n"===e){r(),n();break}if(/^\r$/.test(e))break;if(e===o)throw new Error("CSVDataError: Illegal Quote [Row:"+t.state.rowNum+"][Col:"+t.state.colNum+"]");throw new Error("CSVDataError: Illegal Data [Row:"+t.state.rowNum+"][Col:"+t.state.colNum+"]");default:throw new Error("CSVDataError: Unknown State [Row:"+t.state.rowNum+"][Col:"+t.state.colNum+"]")}}),0!==s.length&&(r(),n()),a},splitLines:function(e,t){function n(){if(a=0,t.start&&t.state.rowNum<t.start)return s="",void t.state.rowNum++;if(void 0===t.onParseEntry)o.push(s);else{var e=t.onParseEntry(s,t.state);e!==!1&&o.push(e)}s="",t.end&&t.state.rowNum>=t.end&&(l=!0),t.state.rowNum++}var r=t.separator,i=t.delimiter;t.state.rowNum||(t.state.rowNum=1);var o=[],a=0,s="",l=!1,u=RegExp.escape(r),c=RegExp.escape(i),f=/(D|S|\n|\r|[^DS\r\n]+)/,d=f.source;return d=d.replace(/S/g,u),d=d.replace(/D/g,c),f=RegExp(d,"gm"),e.replace(f,function(e){if(!l)switch(a){case 0:if(e===r){s+=e,a=0;break}if(e===i){s+=e,a=1;break}if("\n"===e){n();break}if(/^\r$/.test(e))break;s+=e,a=3;break;case 1:if(e===i){s+=e,a=2;break}s+=e,a=1;break;case 2:var o=s.substr(s.length-1);if(e===i&&o===i){s+=e,a=1;break}if(e===r){s+=e,a=0;break}if("\n"===e){n();break}if("\r"===e)break;throw new Error("CSVDataError: Illegal state [Row:"+t.state.rowNum+"]");case 3:if(e===r){s+=e,a=0;break}if("\n"===e){n();break}if("\r"===e)break;if(e===i)throw new Error("CSVDataError: Illegal quote [Row:"+t.state.rowNum+"]");throw new Error("CSVDataError: Illegal state [Row:"+t.state.rowNum+"]");default:throw new Error("CSVDataError: Unknown state [Row:"+t.state.rowNum+"]")}}),""!==s&&n(),o},parseEntry:function(e,t){function n(){if(void 0===t.onParseValue)o.push(s);else{var e=t.onParseValue(s,t.state);e!==!1&&o.push(e)}s="",a=0,t.state.colNum++}var r=t.separator,i=t.delimiter;t.state.rowNum||(t.state.rowNum=1),t.state.colNum||(t.state.colNum=1);var o=[],a=0,s="";if(!t.match){var l=RegExp.escape(r),u=RegExp.escape(i),c=/(D|S|\n|\r|[^DS\r\n]+)/,f=c.source;f=f.replace(/S/g,l),f=f.replace(/D/g,u),t.match=RegExp(f,"gm")}return e.replace(t.match,function(e){switch(a){case 0:if(e===r){s+="",n();break}if(e===i){a=1;break}if("\n"===e||"\r"===e)break;s+=e,a=3;break;case 1:if(e===i){a=2;break}s+=e,a=1;break;case 2:if(e===i){s+=e,a=1;break}if(e===r){n();break}if("\n"===e||"\r"===e)break;throw new Error("CSVDataError: Illegal State [Row:"+t.state.rowNum+"][Col:"+t.state.colNum+"]");case 3:if(e===r){n();break}if("\n"===e||"\r"===e)break;if(e===i)throw new Error("CSVDataError: Illegal Quote [Row:"+t.state.rowNum+"][Col:"+t.state.colNum+"]");throw new Error("CSVDataError: Illegal Data [Row:"+t.state.rowNum+"][Col:"+t.state.colNum+"]");default:throw new Error("CSVDataError: Unknown State [Row:"+t.state.rowNum+"][Col:"+t.state.colNum+"]")}}),n(),o}},toArray:function(t,n,r){var n=void 0!==n?n:{},i={};i.callback=void 0!==r&&"function"==typeof r?r:!1,i.separator="separator"in n?n.separator:e.csv.defaults.separator,i.delimiter="delimiter"in n?n.delimiter:e.csv.defaults.delimiter;var o=void 0!==n.state?n.state:{},n={delimiter:i.delimiter,separator:i.separator,onParseEntry:n.onParseEntry,onParseValue:n.onParseValue,state:o},a=e.csv.parsers.parseEntry(t,n);return i.callback?void i.callback("",a):a},toArrays:function(t,n,r){var n=void 0!==n?n:{},i={};i.callback=void 0!==r&&"function"==typeof r?r:!1,i.separator="separator"in n?n.separator:e.csv.defaults.separator,i.delimiter="delimiter"in n?n.delimiter:e.csv.defaults.delimiter;var o=[],n={delimiter:i.delimiter,separator:i.separator,onParseEntry:n.onParseEntry,onParseValue:n.onParseValue,start:n.start,end:n.end,state:{rowNum:1,colNum:1}};return o=e.csv.parsers.parse(t,n),i.callback?void i.callback("",o):o},toObjects:function(t,n,r){var n=void 0!==n?n:{},i={};i.callback=void 0!==r&&"function"==typeof r?r:!1,i.separator="separator"in n?n.separator:e.csv.defaults.separator,i.delimiter="delimiter"in n?n.delimiter:e.csv.defaults.delimiter,i.headers="headers"in n?n.headers:e.csv.defaults.headers,n.start="start"in n?n.start:1,i.headers&&n.start++,n.end&&i.headers&&n.end++;var o=[],a=[],n={delimiter:i.delimiter,separator:i.separator,onParseEntry:n.onParseEntry,onParseValue:n.onParseValue,start:n.start,end:n.end,state:{rowNum:1,colNum:1},match:!1},s={delimiter:i.delimiter,separator:i.separator,start:1,end:1,state:{rowNum:1,colNum:1}},l=e.csv.parsers.splitLines(t,s),u=e.csv.toArray(l[0],n),o=e.csv.parsers.splitLines(t,n);n.state.colNum=1,n.state.rowNum=u?2:1;for(var c=0,f=o.length;f>c;c++){var d=e.csv.toArray(o[c],n),h={};for(var p in u)h[u[p]]=d[p];a.push(h),n.state.rowNum++}return i.callback?void i.callback("",a):a},fromArrays:function(t,n,r){var n=void 0!==n?n:{},o={};if(o.callback=void 0!==r&&"function"==typeof r?r:!1,o.separator="separator"in n?n.separator:e.csv.defaults.separator,o.delimiter="delimiter"in n?n.delimiter:e.csv.defaults.delimiter,o.escaper="escaper"in n?n.escaper:e.csv.defaults.escaper,o.experimental="experimental"in n?n.experimental:!1,!o.experimental)throw new Error("not implemented");var a=[];for(i in t)a.push(t[i]);return o.callback?void o.callback("",a):a},fromObjects2CSV:function(t,n,r){var n=void 0!==n?n:{},o={};if(o.callback=void 0!==r&&"function"==typeof r?r:!1,o.separator="separator"in n?n.separator:e.csv.defaults.separator,o.delimiter="delimiter"in n?n.delimiter:e.csv.defaults.delimiter,o.experimental="experimental"in n?n.experimental:!1,!o.experimental)throw new Error("not implemented");var a=[];for(i in t)a.push(arrays[i]);return o.callback?void o.callback("",a):a}},e.csvEntry2Array=e.csv.toArray,e.csv2Array=e.csv.toArrays,e.csv2Dictionary=e.csv.toObjects}(jQuery)},{}],3:[function(t,n,r){!function(i){"object"==typeof r&&"object"==typeof n?i(t("../../lib/codemirror")):"function"==typeof e&&e.amd?e(["../../lib/codemirror"],i):i(CodeMirror)}(function(e){function t(e,t,r,i){var o=e.getLineHandle(t.line),l=t.ch-1,u=l>=0&&s[o.text.charAt(l)]||s[o.text.charAt(++l)];if(!u)return null;var c=">"==u.charAt(1)?1:-1;if(r&&c>0!=(l==t.ch))return null;var f=e.getTokenTypeAt(a(t.line,l+1)),d=n(e,a(t.line,l+(c>0?1:0)),c,f||null,i);return null==d?null:{from:a(t.line,l),to:d&&d.pos,match:d&&d.ch==u.charAt(0),forward:c>0}}function n(e,t,n,r,i){for(var o=i&&i.maxScanLineLength||1e4,l=i&&i.maxScanLines||1e3,u=[],c=i&&i.bracketRegex?i.bracketRegex:/[(){}[\]]/,f=n>0?Math.min(t.line+l,e.lastLine()+1):Math.max(e.firstLine()-1,t.line-l),d=t.line;d!=f;d+=n){var h=e.getLine(d);if(h){var p=n>0?0:h.length-1,g=n>0?h.length:-1;if(!(h.length>o))for(d==t.line&&(p=t.ch-(0>n?1:0));p!=g;p+=n){var m=h.charAt(p);if(c.test(m)&&(void 0===r||e.getTokenTypeAt(a(d,p+1))==r)){var v=s[m];if(">"==v.charAt(1)==n>0)u.push(m);else{if(!u.length)return{pos:a(d,p),ch:m};u.pop()}}}}}return d-n==(n>0?e.lastLine():e.firstLine())?!1:null}function r(e,n,r){for(var i=e.state.matchBrackets.maxHighlightLineLength||1e3,s=[],l=e.listSelections(),u=0;u<l.length;u++){var c=l[u].empty()&&t(e,l[u].head,!1,r);if(c&&e.getLine(c.from.line).length<=i){var f=c.match?"CodeMirror-matchingbracket":"CodeMirror-nonmatchingbracket";s.push(e.markText(c.from,a(c.from.line,c.from.ch+1),{className:f})),c.to&&e.getLine(c.to.line).length<=i&&s.push(e.markText(c.to,a(c.to.line,c.to.ch+1),{className:f}))}}if(s.length){o&&e.state.focused&&e.display.input.focus();var d=function(){e.operation(function(){for(var e=0;e<s.length;e++)s[e].clear()})};if(!n)return d;setTimeout(d,800)}}function i(e){e.operation(function(){l&&(l(),l=null),l=r(e,!1,e.state.matchBrackets)})}var o=/MSIE \d/.test(navigator.userAgent)&&(null==document.documentMode||document.documentMode<8),a=e.Pos,s={"(":")>",")":"(<","[":"]>","]":"[<","{":"}>","}":"{<"},l=null;e.defineOption("matchBrackets",!1,function(t,n,r){r&&r!=e.Init&&t.off("cursorActivity",i),n&&(t.state.matchBrackets="object"==typeof n?n:{},t.on("cursorActivity",i))}),e.defineExtension("matchBrackets",function(){r(this,!0)}),e.defineExtension("findMatchingBracket",function(e,n,r){return t(this,e,n,r)}),e.defineExtension("scanForBracket",function(e,t,r,i){return n(this,e,t,r,i)})})},{"../../lib/codemirror":4}],4:[function(t,n,r){!function(t){if("object"==typeof r&&"object"==typeof n)n.exports=t();else{if("function"==typeof e&&e.amd)return e([],t);this.CodeMirror=t()}}(function(){"use strict";function e(n,r){if(!(this instanceof e))return new e(n,r);this.options=r=r||{},io(xa,r,!1),p(r);var i=r.value;"string"==typeof i&&(i=new Va(i,r.mode)),this.doc=i;var o=this.display=new t(n,i);o.wrapper.CodeMirror=this,c(this),l(this),r.lineWrapping&&(this.display.wrapper.className+=" CodeMirror-wrap"),r.autofocus&&!Zo&&pn(this),this.state={keyMaps:[],overlays:[],modeGen:0,overwrite:!1,focused:!1,suppressEdits:!1,pasteIncoming:!1,cutIncoming:!1,draggingText:!1,highlight:new Ki},Po&&setTimeout(oo(hn,this,!0),20),vn(this),xo();var a=this;Yt(this,function(){a.curOp.forceUpdate=!0,yi(a,i),r.autofocus&&!Zo||po()==o.input?setTimeout(oo(Wn,a),20):zn(a);for(var e in wa)wa.hasOwnProperty(e)&&wa[e](a,r[e],Sa);for(var t=0;t<ka.length;++t)ka[t](a)})}function t(e,t){var n=this,r=n.input=uo("textarea",null,null,"position: absolute; padding: 0; width: 1px; height: 1em; outline: none");Vo?r.style.width="1000px":r.setAttribute("wrap","off"),Qo&&(r.style.border="1px solid black"),r.setAttribute("autocorrect","off"),r.setAttribute("autocapitalize","off"),r.setAttribute("spellcheck","false"),n.inputDiv=uo("div",[r],null,"overflow: hidden; position: relative; width: 3px; height: 0px;"),n.scrollbarH=uo("div",[uo("div",null,null,"height: 100%; min-height: 1px")],"CodeMirror-hscrollbar"),n.scrollbarV=uo("div",[uo("div",null,null,"min-width: 1px")],"CodeMirror-vscrollbar"),n.scrollbarFiller=uo("div",null,"CodeMirror-scrollbar-filler"),n.gutterFiller=uo("div",null,"CodeMirror-gutter-filler"),n.lineDiv=uo("div",null,"CodeMirror-code"),n.selectionDiv=uo("div",null,null,"position: relative; z-index: 1"),n.cursorDiv=uo("div",null,"CodeMirror-cursors"),n.measure=uo("div",null,"CodeMirror-measure"),n.lineMeasure=uo("div",null,"CodeMirror-measure"),n.lineSpace=uo("div",[n.measure,n.lineMeasure,n.selectionDiv,n.cursorDiv,n.lineDiv],null,"position: relative; outline: none"),n.mover=uo("div",[uo("div",[n.lineSpace],"CodeMirror-lines")],null,"position: relative"),n.sizer=uo("div",[n.mover],"CodeMirror-sizer"),n.heightForcer=uo("div",null,null,"position: absolute; height: "+ts+"px; width: 1px;"),n.gutters=uo("div",null,"CodeMirror-gutters"),n.lineGutter=null,n.scroller=uo("div",[n.sizer,n.heightForcer,n.gutters],"CodeMirror-scroll"),n.scroller.setAttribute("tabIndex","-1"),n.wrapper=uo("div",[n.inputDiv,n.scrollbarH,n.scrollbarV,n.scrollbarFiller,n.gutterFiller,n.scroller],"CodeMirror"),Fo&&(n.gutters.style.zIndex=-1,n.scroller.style.paddingRight=0),Qo&&(r.style.width="0px"),Vo||(n.scroller.draggable=!0),Jo&&(n.inputDiv.style.height="1px",n.inputDiv.style.position="absolute"),Fo&&(n.scrollbarH.style.minHeight=n.scrollbarV.style.minWidth="18px"),e.appendChild?e.appendChild(n.wrapper):e(n.wrapper),n.viewFrom=n.viewTo=t.first,n.view=[],n.externalMeasured=null,n.viewOffset=0,n.lastSizeC=0,n.updateLineNumbers=null,n.lineNumWidth=n.lineNumInnerWidth=n.lineNumChars=null,n.prevInput="",n.alignWidgets=!1,n.pollingFast=!1,n.poll=new Ki,n.cachedCharWidth=n.cachedTextHeight=n.cachedPaddingH=null,n.inaccurateSelection=!1,n.maxLine=null,n.maxLineLength=0,n.maxLineChanged=!1,n.wheelDX=n.wheelDY=n.wheelStartX=n.wheelStartY=null,n.shift=!1,n.selForContextMenu=null}function n(t){t.doc.mode=e.getMode(t.options,t.doc.modeOption),r(t)}function r(e){e.doc.iter(function(e){e.stateAfter&&(e.stateAfter=null),e.styles&&(e.styles=null)}),e.doc.frontier=e.doc.first,yt(e,100),e.state.modeGen++,e.curOp&&nn(e)}function i(e){e.options.lineWrapping?(vo(e.display.wrapper,"CodeMirror-wrap"),e.display.sizer.style.minWidth=""):(mo(e.display.wrapper,"CodeMirror-wrap"),h(e)),a(e),nn(e),It(e),setTimeout(function(){m(e)},100)}function o(e){var t=Xt(e.display),n=e.options.lineWrapping,r=n&&Math.max(5,e.display.scroller.clientWidth/$t(e.display)-3);return function(i){if(Ur(e.doc,i))return 0;var o=0;if(i.widgets)for(var a=0;a<i.widgets.length;a++)i.widgets[a].height&&(o+=i.widgets[a].height);return n?o+(Math.ceil(i.text.length/r)||1)*t:o+t}}function a(e){var t=e.doc,n=o(e);t.iter(function(e){var t=n(e);t!=e.height&&Si(e,t)})}function s(e){var t=Ma[e.options.keyMap],n=t.style;e.display.wrapper.className=e.display.wrapper.className.replace(/\s*cm-keymap-\S+/g,"")+(n?" cm-keymap-"+n:"")}function l(e){e.display.wrapper.className=e.display.wrapper.className.replace(/\s*cm-s-\S+/g,"")+e.options.theme.replace(/(^|\s)\s*/g," cm-s-"),It(e)}function u(e){c(e),nn(e),setTimeout(function(){y(e)},20)}function c(e){var t=e.display.gutters,n=e.options.gutters;co(t);for(var r=0;r<n.length;++r){var i=n[r],o=t.appendChild(uo("div",null,"CodeMirror-gutter "+i));"CodeMirror-linenumbers"==i&&(e.display.lineGutter=o,o.style.width=(e.display.lineNumWidth||1)+"px")}t.style.display=r?"":"none",f(e)}function f(e){var t=e.display.gutters.offsetWidth;e.display.sizer.style.marginLeft=t+"px",e.display.scrollbarH.style.left=e.options.fixedGutter?t+"px":0}function d(e){if(0==e.height)return 0;for(var t,n=e.text.length,r=e;t=Pr(r);){var i=t.find(0,!0);r=i.from.line,n+=i.from.ch-i.to.ch}for(r=e;t=Fr(r);){var i=t.find(0,!0);n-=r.text.length-i.from.ch,r=i.to.line,n+=r.text.length-i.to.ch}return n}function h(e){var t=e.display,n=e.doc;t.maxLine=bi(n,n.first),t.maxLineLength=d(t.maxLine),t.maxLineChanged=!0,n.iter(function(e){var n=d(e);n>t.maxLineLength&&(t.maxLineLength=n,t.maxLine=e)})}function p(e){var t=to(e.gutters,"CodeMirror-linenumbers");-1==t&&e.lineNumbers?e.gutters=e.gutters.concat(["CodeMirror-linenumbers"]):t>-1&&!e.lineNumbers&&(e.gutters=e.gutters.slice(0),e.gutters.splice(t,1))}function g(e){var t=e.display.scroller;return{clientHeight:t.clientHeight,barHeight:e.display.scrollbarV.clientHeight,scrollWidth:t.scrollWidth,clientWidth:t.clientWidth,barWidth:e.display.scrollbarH.clientWidth,docHeight:Math.round(e.doc.height+Ct(e.display))}}function m(e,t){t||(t=g(e));var n=e.display,r=t.docHeight+ts,i=t.scrollWidth>t.clientWidth,o=r>t.clientHeight;if(o?(n.scrollbarV.style.display="block",n.scrollbarV.style.bottom=i?So(n.measure)+"px":"0",n.scrollbarV.firstChild.style.height=Math.max(0,r-t.clientHeight+(t.barHeight||n.scrollbarV.clientHeight))+"px"):(n.scrollbarV.style.display="",n.scrollbarV.firstChild.style.height="0"),i?(n.scrollbarH.style.display="block",n.scrollbarH.style.right=o?So(n.measure)+"px":"0",n.scrollbarH.firstChild.style.width=t.scrollWidth-t.clientWidth+(t.barWidth||n.scrollbarH.clientWidth)+"px"):(n.scrollbarH.style.display="",n.scrollbarH.firstChild.style.width="0"),i&&o?(n.scrollbarFiller.style.display="block",n.scrollbarFiller.style.height=n.scrollbarFiller.style.width=So(n.measure)+"px"):n.scrollbarFiller.style.display="",i&&e.options.coverGutterNextToScrollbar&&e.options.fixedGutter?(n.gutterFiller.style.display="block",n.gutterFiller.style.height=So(n.measure)+"px",n.gutterFiller.style.width=n.gutters.offsetWidth+"px"):n.gutterFiller.style.display="",!e.state.checkedOverlayScrollbar&&t.clientHeight>0){if(0===So(n.measure)){var a=ea&&!Yo?"12px":"18px";n.scrollbarV.style.minWidth=n.scrollbarH.style.minHeight=a;var s=function(t){qi(t)!=n.scrollbarV&&qi(t)!=n.scrollbarH&&Kt(e,wn)(t)};Ka(n.scrollbarV,"mousedown",s),Ka(n.scrollbarH,"mousedown",s)}e.state.checkedOverlayScrollbar=!0}}function v(e,t,n){var r=n&&null!=n.top?Math.max(0,n.top):e.scroller.scrollTop;r=Math.floor(r-St(e));var i=n&&null!=n.bottom?n.bottom:r+e.wrapper.clientHeight,o=Ti(t,r),a=Ti(t,i);if(n&&n.ensure){var s=n.ensure.from.line,l=n.ensure.to.line;if(o>s)return{from:s,to:Ti(t,Di(bi(t,s))+e.wrapper.clientHeight)};if(Math.min(l,t.lastLine())>=a)return{from:Ti(t,Di(bi(t,l))-e.wrapper.clientHeight),to:l}}return{from:o,to:Math.max(a,o+1)}}function y(e){var t=e.display,n=t.view;if(t.alignWidgets||t.gutters.firstChild&&e.options.fixedGutter){for(var r=w(t)-t.scroller.scrollLeft+e.doc.scrollLeft,i=t.gutters.offsetWidth,o=r+"px",a=0;a<n.length;a++)if(!n[a].hidden){e.options.fixedGutter&&n[a].gutter&&(n[a].gutter.style.left=o);var s=n[a].alignable;if(s)for(var l=0;l<s.length;l++)s[l].style.left=o}e.options.fixedGutter&&(t.gutters.style.left=r+i+"px")}}function b(e){if(!e.options.lineNumbers)return!1;var t=e.doc,n=x(e.options,t.first+t.size-1),r=e.display;if(n.length!=r.lineNumChars){var i=r.measure.appendChild(uo("div",[uo("div",n)],"CodeMirror-linenumber CodeMirror-gutter-elt")),o=i.firstChild.offsetWidth,a=i.offsetWidth-o;return r.lineGutter.style.width="",r.lineNumInnerWidth=Math.max(o,r.lineGutter.offsetWidth-a),r.lineNumWidth=r.lineNumInnerWidth+a,r.lineNumChars=r.lineNumInnerWidth?n.length:-1,r.lineGutter.style.width=r.lineNumWidth+"px",f(e),!0}return!1}function x(e,t){return String(e.lineNumberFormatter(t+e.firstLineNumber))}function w(e){return e.scroller.getBoundingClientRect().left-e.sizer.getBoundingClientRect().left}function S(e,t,n){for(var r,i=e.display.viewFrom,o=e.display.viewTo,a=v(e.display,e.doc,t),s=!0;;s=!1){var l=e.display.scroller.clientWidth;if(!C(e,a,n))break;r=!0,e.display.maxLineChanged&&!e.options.lineWrapping&&T(e);var u=g(e);if(pt(e),D(e,u),m(e,u),Vo&&e.options.lineWrapping&&k(e,u),s&&e.options.lineWrapping&&l!=e.display.scroller.clientWidth)n=!0;else if(n=!1,t&&null!=t.top&&(t={top:Math.min(u.docHeight-ts-u.clientHeight,t.top)}),a=v(e.display,e.doc,t),a.from>=e.display.viewFrom&&a.to<=e.display.viewTo)break}return e.display.updateLineNumbers=null,r&&(Ui(e,"update",e),(e.display.viewFrom!=i||e.display.viewTo!=o)&&Ui(e,"viewportChange",e,e.display.viewFrom,e.display.viewTo)),r }function C(e,t,n){var r=e.display,i=e.doc;if(!r.wrapper.offsetWidth)return void on(e);if(!(!n&&t.from>=r.viewFrom&&t.to<=r.viewTo&&0==un(e))){b(e)&&on(e);var o=A(e),a=i.first+i.size,s=Math.max(t.from-e.options.viewportMargin,i.first),l=Math.min(a,t.to+e.options.viewportMargin);r.viewFrom<s&&s-r.viewFrom<20&&(s=Math.max(i.first,r.viewFrom)),r.viewTo>l&&r.viewTo-l<20&&(l=Math.min(a,r.viewTo)),aa&&(s=qr(e.doc,s),l=Vr(e.doc,l));var u=s!=r.viewFrom||l!=r.viewTo||r.lastSizeC!=r.wrapper.clientHeight;ln(e,s,l),r.viewOffset=Di(bi(e.doc,r.viewFrom)),e.display.mover.style.top=r.viewOffset+"px";var c=un(e);if(u||0!=c||n){var f=po();return c>4&&(r.lineDiv.style.display="none"),_(e,r.updateLineNumbers,o),c>4&&(r.lineDiv.style.display=""),f&&po()!=f&&f.offsetHeight&&f.focus(),co(r.cursorDiv),co(r.selectionDiv),u&&(r.lastSizeC=r.wrapper.clientHeight,yt(e,400)),L(e),!0}}}function T(e){var t=e.display,n=Nt(e,t.maxLine,t.maxLine.text.length).left;t.maxLineChanged=!1;var r=Math.max(0,n+3),i=Math.max(0,t.sizer.offsetLeft+r+ts-t.scroller.clientWidth);t.sizer.style.minWidth=r+"px",i<e.doc.scrollLeft&&_n(e,Math.min(t.scroller.scrollLeft,i),!0)}function D(e,t){e.display.sizer.style.minHeight=e.display.heightForcer.style.top=t.docHeight+"px",e.display.gutters.style.height=Math.max(t.docHeight,t.clientHeight-ts)+"px"}function k(e,t){e.display.sizer.offsetWidth+e.display.gutters.offsetWidth<e.display.scroller.clientWidth-1&&(e.display.sizer.style.minHeight=e.display.heightForcer.style.top="0px",e.display.gutters.style.height=t.docHeight+"px")}function L(e){for(var t=e.display,n=t.lineDiv.offsetTop,r=0;r<t.view.length;r++){var i,o=t.view[r];if(!o.hidden){if(Fo){var a=o.node.offsetTop+o.node.offsetHeight;i=a-n,n=a}else{var s=o.node.getBoundingClientRect();i=s.bottom-s.top}var l=o.line.height-i;if(2>i&&(i=Xt(t)),(l>.001||-.001>l)&&(Si(o.line,i),N(o.line),o.rest))for(var u=0;u<o.rest.length;u++)N(o.rest[u])}}}function N(e){if(e.widgets)for(var t=0;t<e.widgets.length;++t)e.widgets[t].height=e.widgets[t].node.offsetHeight}function A(e){for(var t=e.display,n={},r={},i=t.gutters.firstChild,o=0;i;i=i.nextSibling,++o)n[e.options.gutters[o]]=i.offsetLeft,r[e.options.gutters[o]]=i.offsetWidth;return{fixedPos:w(t),gutterTotalWidth:t.gutters.offsetWidth,gutterLeft:n,gutterWidth:r,wrapperWidth:t.wrapper.clientWidth}}function _(e,t,n){function r(t){var n=t.nextSibling;return Vo&&ea&&e.display.currentWheelTarget==t?t.style.display="none":t.parentNode.removeChild(t),n}for(var i=e.display,o=e.options.lineNumbers,a=i.lineDiv,s=a.firstChild,l=i.view,u=i.viewFrom,c=0;c<l.length;c++){var f=l[c];if(f.hidden);else if(f.node){for(;s!=f.node;)s=r(s);var d=o&&null!=t&&u>=t&&f.lineNumber;f.changes&&(to(f.changes,"gutter")>-1&&(d=!1),M(e,f,u,n)),d&&(co(f.lineNumber),f.lineNumber.appendChild(document.createTextNode(x(e.options,u)))),s=f.node.nextSibling}else{var h=F(e,f,u,n);a.insertBefore(h,s)}u+=f.size}for(;s;)s=r(s)}function M(e,t,n,r){for(var i=0;i<t.changes.length;i++){var o=t.changes[i];"text"==o?I(e,t):"gutter"==o?R(e,t,n,r):"class"==o?O(t):"widget"==o&&P(t,r)}t.changes=null}function E(e){return e.node==e.text&&(e.node=uo("div",null,null,"position: relative"),e.text.parentNode&&e.text.parentNode.replaceChild(e.node,e.text),e.node.appendChild(e.text),Fo&&(e.node.style.zIndex=2)),e.node}function j(e){var t=e.bgClass?e.bgClass+" "+(e.line.bgClass||""):e.line.bgClass;if(t&&(t+=" CodeMirror-linebackground"),e.background)t?e.background.className=t:(e.background.parentNode.removeChild(e.background),e.background=null);else if(t){var n=E(e);e.background=n.insertBefore(uo("div",null,t),n.firstChild)}}function H(e,t){var n=e.display.externalMeasured;return n&&n.line==t.line?(e.display.externalMeasured=null,t.measure=n.measure,n.built):ai(e,t)}function I(e,t){var n=t.text.className,r=H(e,t);t.text==t.node&&(t.node=r.pre),t.text.parentNode.replaceChild(r.pre,t.text),t.text=r.pre,r.bgClass!=t.bgClass||r.textClass!=t.textClass?(t.bgClass=r.bgClass,t.textClass=r.textClass,O(t)):n&&(t.text.className=n)}function O(e){j(e),e.line.wrapClass?E(e).className=e.line.wrapClass:e.node!=e.text&&(e.node.className="");var t=e.textClass?e.textClass+" "+(e.line.textClass||""):e.line.textClass;e.text.className=t||""}function R(e,t,n,r){t.gutter&&(t.node.removeChild(t.gutter),t.gutter=null);var i=t.line.gutterMarkers;if(e.options.lineNumbers||i){var o=E(t),a=t.gutter=o.insertBefore(uo("div",null,"CodeMirror-gutter-wrapper","position: absolute; left: "+(e.options.fixedGutter?r.fixedPos:-r.gutterTotalWidth)+"px"),t.text);if(!e.options.lineNumbers||i&&i["CodeMirror-linenumbers"]||(t.lineNumber=a.appendChild(uo("div",x(e.options,n),"CodeMirror-linenumber CodeMirror-gutter-elt","left: "+r.gutterLeft["CodeMirror-linenumbers"]+"px; width: "+e.display.lineNumInnerWidth+"px"))),i)for(var s=0;s<e.options.gutters.length;++s){var l=e.options.gutters[s],u=i.hasOwnProperty(l)&&i[l];u&&a.appendChild(uo("div",[u],"CodeMirror-gutter-elt","left: "+r.gutterLeft[l]+"px; width: "+r.gutterWidth[l]+"px"))}}}function P(e,t){e.alignable&&(e.alignable=null);for(var n,r=e.node.firstChild;r;r=n){var n=r.nextSibling;"CodeMirror-linewidget"==r.className&&e.node.removeChild(r)}W(e,t)}function F(e,t,n,r){var i=H(e,t);return t.text=t.node=i.pre,i.bgClass&&(t.bgClass=i.bgClass),i.textClass&&(t.textClass=i.textClass),O(t),R(e,t,n,r),W(t,r),t.node}function W(e,t){if(z(e.line,e,t,!0),e.rest)for(var n=0;n<e.rest.length;n++)z(e.rest[n],e,t,!1)}function z(e,t,n,r){if(e.widgets)for(var i=E(t),o=0,a=e.widgets;o<a.length;++o){var s=a[o],l=uo("div",[s.node],"CodeMirror-linewidget");s.handleMouseEvents||(l.ignoreEvents=!0),B(s,l,t,n),r&&s.above?i.insertBefore(l,t.gutter||t.text):i.appendChild(l),Ui(s,"redraw")}}function B(e,t,n,r){if(e.noHScroll){(n.alignable||(n.alignable=[])).push(t);var i=r.wrapperWidth;t.style.left=r.fixedPos+"px",e.coverGutter||(i-=r.gutterTotalWidth,t.style.paddingLeft=r.gutterTotalWidth+"px"),t.style.width=i+"px"}e.coverGutter&&(t.style.zIndex=5,t.style.position="relative",e.noHScroll||(t.style.marginLeft=-r.gutterTotalWidth+"px"))}function q(e){return sa(e.line,e.ch)}function V(e,t){return la(e,t)<0?t:e}function U(e,t){return la(e,t)<0?e:t}function X(e,t){this.ranges=e,this.primIndex=t}function $(e,t){this.anchor=e,this.head=t}function G(e,t){var n=e[t];e.sort(function(e,t){return la(e.from(),t.from())}),t=to(e,n);for(var r=1;r<e.length;r++){var i=e[r],o=e[r-1];if(la(o.to(),i.from())>=0){var a=U(o.from(),i.from()),s=V(o.to(),i.to()),l=o.empty()?i.from()==i.head:o.from()==o.head;t>=r&&--t,e.splice(--r,2,new $(l?s:a,l?a:s))}}return new X(e,t)}function J(e,t){return new X([new $(e,t||e)],0)}function Y(e,t){return Math.max(e.first,Math.min(t,e.first+e.size-1))}function K(e,t){if(t.line<e.first)return sa(e.first,0);var n=e.first+e.size-1;return t.line>n?sa(n,bi(e,n).text.length):Q(t,bi(e,t.line).text.length)}function Q(e,t){var n=e.ch;return null==n||n>t?sa(e.line,t):0>n?sa(e.line,0):e}function Z(e,t){return t>=e.first&&t<e.first+e.size}function et(e,t){for(var n=[],r=0;r<t.length;r++)n[r]=K(e,t[r]);return n}function tt(e,t,n,r){if(e.cm&&e.cm.display.shift||e.extend){var i=t.anchor;if(r){var o=la(n,i)<0;o!=la(r,i)<0?(i=n,n=r):o!=la(n,r)<0&&(n=r)}return new $(i,n)}return new $(r||n,n)}function nt(e,t,n,r){lt(e,new X([tt(e,e.sel.primary(),t,n)],0),r)}function rt(e,t,n){for(var r=[],i=0;i<e.sel.ranges.length;i++)r[i]=tt(e,e.sel.ranges[i],t[i],null);var o=G(r,e.sel.primIndex);lt(e,o,n)}function it(e,t,n,r){var i=e.sel.ranges.slice(0);i[t]=n,lt(e,G(i,e.sel.primIndex),r)}function ot(e,t,n,r){lt(e,J(t,n),r)}function at(e,t){var n={ranges:t.ranges,update:function(t){this.ranges=[];for(var n=0;n<t.length;n++)this.ranges[n]=new $(K(e,t[n].anchor),K(e,t[n].head))}};return Za(e,"beforeSelectionChange",e,n),e.cm&&Za(e.cm,"beforeSelectionChange",e.cm,n),n.ranges!=t.ranges?G(n.ranges,n.ranges.length-1):t}function st(e,t,n){var r=e.history.done,i=eo(r);i&&i.ranges?(r[r.length-1]=t,ut(e,t,n)):lt(e,t,n)}function lt(e,t,n){ut(e,t,n),ji(e,e.sel,e.cm?e.cm.curOp.id:0/0,n)}function ut(e,t,n){(Ji(e,"beforeSelectionChange")||e.cm&&Ji(e.cm,"beforeSelectionChange"))&&(t=at(e,t));var r=n&&n.bias||(la(t.primary().head,e.sel.primary().head)<0?-1:1);ct(e,dt(e,t,r,!0)),n&&n.scroll===!1||!e.cm||sr(e.cm)}function ct(e,t){t.equals(e.sel)||(e.sel=t,e.cm&&(e.cm.curOp.updateInput=e.cm.curOp.selectionChanged=!0,Gi(e.cm)),Ui(e,"cursorActivity",e))}function ft(e){ct(e,dt(e,e.sel,null,!1),rs)}function dt(e,t,n,r){for(var i,o=0;o<t.ranges.length;o++){var a=t.ranges[o],s=ht(e,a.anchor,n,r),l=ht(e,a.head,n,r);(i||s!=a.anchor||l!=a.head)&&(i||(i=t.ranges.slice(0,o)),i[o]=new $(s,l))}return i?G(i,t.primIndex):t}function ht(e,t,n,r){var i=!1,o=t,a=n||1;e.cantEdit=!1;e:for(;;){var s=bi(e,o.line);if(s.markedSpans)for(var l=0;l<s.markedSpans.length;++l){var u=s.markedSpans[l],c=u.marker;if((null==u.from||(c.inclusiveLeft?u.from<=o.ch:u.from<o.ch))&&(null==u.to||(c.inclusiveRight?u.to>=o.ch:u.to>o.ch))){if(r&&(Za(c,"beforeCursorEnter"),c.explicitlyCleared)){if(s.markedSpans){--l;continue}break}if(!c.atomic)continue;var f=c.find(0>a?-1:1);if(0==la(f,o)&&(f.ch+=a,f.ch<0?f=f.line>e.first?K(e,sa(f.line-1)):null:f.ch>s.text.length&&(f=f.line<e.first+e.size-1?sa(f.line+1,0):null),!f)){if(i)return r?(e.cantEdit=!0,sa(e.first,0)):ht(e,t,n,!0);i=!0,f=t,a=-a}o=f;continue e}}return o}}function pt(e){for(var t=e.display,n=e.doc,r=document.createDocumentFragment(),i=document.createDocumentFragment(),o=0;o<n.sel.ranges.length;o++){var a=n.sel.ranges[o],s=a.empty();(s||e.options.showCursorWhenSelecting)&&gt(e,a,r),s||mt(e,a,i)}if(e.options.moveInputWithCursor){var l=zt(e,n.sel.primary().head,"div"),u=t.wrapper.getBoundingClientRect(),c=t.lineDiv.getBoundingClientRect(),f=Math.max(0,Math.min(t.wrapper.clientHeight-10,l.top+c.top-u.top)),d=Math.max(0,Math.min(t.wrapper.clientWidth-10,l.left+c.left-u.left));t.inputDiv.style.top=f+"px",t.inputDiv.style.left=d+"px"}fo(t.cursorDiv,r),fo(t.selectionDiv,i)}function gt(e,t,n){var r=zt(e,t.head,"div"),i=n.appendChild(uo("div"," ","CodeMirror-cursor"));if(i.style.left=r.left+"px",i.style.top=r.top+"px",i.style.height=Math.max(0,r.bottom-r.top)*e.options.cursorHeight+"px",r.other){var o=n.appendChild(uo("div"," ","CodeMirror-cursor CodeMirror-secondarycursor"));o.style.display="",o.style.left=r.other.left+"px",o.style.top=r.other.top+"px",o.style.height=.85*(r.other.bottom-r.other.top)+"px"}}function mt(e,t,n){function r(e,t,n,r){0>t&&(t=0),t=Math.round(t),r=Math.round(r),s.appendChild(uo("div",null,"CodeMirror-selected","position: absolute; left: "+e+"px; top: "+t+"px; width: "+(null==n?c-e:n)+"px; height: "+(r-t)+"px"))}function i(t,n,i){function o(n,r){return Wt(e,sa(t,n),"div",f,r)}var s,l,f=bi(a,t),d=f.text.length;return Do(ki(f),n||0,null==i?d:i,function(e,t,a){var f,h,p,g=o(e,"left");if(e==t)f=g,h=p=g.left;else{if(f=o(t-1,"right"),"rtl"==a){var m=g;g=f,f=m}h=g.left,p=f.right}null==n&&0==e&&(h=u),f.top-g.top>3&&(r(h,g.top,null,g.bottom),h=u,g.bottom<f.top&&r(h,g.bottom,null,f.top)),null==i&&t==d&&(p=c),(!s||g.top<s.top||g.top==s.top&&g.left<s.left)&&(s=g),(!l||f.bottom>l.bottom||f.bottom==l.bottom&&f.right>l.right)&&(l=f),u+1>h&&(h=u),r(h,f.top,p-h,f.bottom)}),{start:s,end:l}}var o=e.display,a=e.doc,s=document.createDocumentFragment(),l=Tt(e.display),u=l.left,c=o.lineSpace.offsetWidth-l.right,f=t.from(),d=t.to();if(f.line==d.line)i(f.line,f.ch,d.ch);else{var h=bi(a,f.line),p=bi(a,d.line),g=zr(h)==zr(p),m=i(f.line,f.ch,g?h.text.length+1:null).end,v=i(d.line,g?0:null,d.ch).start;g&&(m.top<v.top-2?(r(m.right,m.top,null,m.bottom),r(u,v.top,v.left,v.bottom)):r(m.right,m.top,v.left-m.right,m.bottom)),m.bottom<v.top&&r(u,m.bottom,null,v.top)}n.appendChild(s)}function vt(e){if(e.state.focused){var t=e.display;clearInterval(t.blinker);var n=!0;t.cursorDiv.style.visibility="",e.options.cursorBlinkRate>0&&(t.blinker=setInterval(function(){t.cursorDiv.style.visibility=(n=!n)?"":"hidden"},e.options.cursorBlinkRate))}}function yt(e,t){e.doc.mode.startState&&e.doc.frontier<e.display.viewTo&&e.state.highlight.set(t,oo(bt,e))}function bt(e){var t=e.doc;if(t.frontier<t.first&&(t.frontier=t.first),!(t.frontier>=e.display.viewTo)){var n=+new Date+e.options.workTime,r=Na(t.mode,wt(e,t.frontier));Yt(e,function(){t.iter(t.frontier,Math.min(t.first+t.size,e.display.viewTo+500),function(i){if(t.frontier>=e.display.viewFrom){var o=i.styles,a=ni(e,i,r,!0);i.styles=a.styles,a.classes?i.styleClasses=a.classes:i.styleClasses&&(i.styleClasses=null);for(var s=!o||o.length!=i.styles.length,l=0;!s&&l<o.length;++l)s=o[l]!=i.styles[l];s&&rn(e,t.frontier,"text"),i.stateAfter=Na(t.mode,r)}else ii(e,i.text,r),i.stateAfter=t.frontier%5==0?Na(t.mode,r):null;return++t.frontier,+new Date>n?(yt(e,e.options.workDelay),!0):void 0})})}}function xt(e,t,n){for(var r,i,o=e.doc,a=n?-1:t-(e.doc.mode.innerMode?1e3:100),s=t;s>a;--s){if(s<=o.first)return o.first;var l=bi(o,s-1);if(l.stateAfter&&(!n||s<=o.frontier))return s;var u=as(l.text,null,e.options.tabSize);(null==i||r>u)&&(i=s-1,r=u)}return i}function wt(e,t,n){var r=e.doc,i=e.display;if(!r.mode.startState)return!0;var o=xt(e,t,n),a=o>r.first&&bi(r,o-1).stateAfter;return a=a?Na(r.mode,a):Aa(r.mode),r.iter(o,t,function(n){ii(e,n.text,a);var s=o==t-1||o%5==0||o>=i.viewFrom&&o<i.viewTo;n.stateAfter=s?Na(r.mode,a):null,++o}),n&&(r.frontier=o),a}function St(e){return e.lineSpace.offsetTop}function Ct(e){return e.mover.offsetHeight-e.lineSpace.offsetHeight}function Tt(e){if(e.cachedPaddingH)return e.cachedPaddingH;var t=fo(e.measure,uo("pre","x")),n=window.getComputedStyle?window.getComputedStyle(t):t.currentStyle,r={left:parseInt(n.paddingLeft),right:parseInt(n.paddingRight)};return isNaN(r.left)||isNaN(r.right)||(e.cachedPaddingH=r),r}function Dt(e,t,n){var r=e.options.lineWrapping,i=r&&e.display.scroller.clientWidth;if(!t.measure.heights||r&&t.measure.width!=i){var o=t.measure.heights=[];if(r){t.measure.width=i;for(var a=t.text.firstChild.getClientRects(),s=0;s<a.length-1;s++){var l=a[s],u=a[s+1];Math.abs(l.bottom-u.bottom)>2&&o.push((l.bottom+u.top)/2-n.top)}}o.push(n.bottom-n.top)}}function kt(e,t,n){if(e.line==t)return{map:e.measure.map,cache:e.measure.cache};for(var r=0;r<e.rest.length;r++)if(e.rest[r]==t)return{map:e.measure.maps[r],cache:e.measure.caches[r]};for(var r=0;r<e.rest.length;r++)if(Ci(e.rest[r])>n)return{map:e.measure.maps[r],cache:e.measure.caches[r],before:!0}}function Lt(e,t){t=zr(t);var n=Ci(t),r=e.display.externalMeasured=new en(e.doc,t,n);r.lineN=n;var i=r.built=ai(e,r);return r.text=i.pre,fo(e.display.lineMeasure,i.pre),r}function Nt(e,t,n,r){return Mt(e,_t(e,t),n,r)}function At(e,t){if(t>=e.display.viewFrom&&t<e.display.viewTo)return e.display.view[an(e,t)];var n=e.display.externalMeasured;return n&&t>=n.lineN&&t<n.lineN+n.size?n:void 0}function _t(e,t){var n=Ci(t),r=At(e,n);r&&!r.text?r=null:r&&r.changes&&M(e,r,n,A(e)),r||(r=Lt(e,t));var i=kt(r,t,n);return{line:t,view:r,rect:null,map:i.map,cache:i.cache,before:i.before,hasHeights:!1}}function Mt(e,t,n,r){t.before&&(n=-1);var i,o=n+(r||"");return t.cache.hasOwnProperty(o)?i=t.cache[o]:(t.rect||(t.rect=t.view.text.getBoundingClientRect()),t.hasHeights||(Dt(e,t.view,t.rect),t.hasHeights=!0),i=Et(e,t,n,r),i.bogus||(t.cache[o]=i)),{left:i.left,right:i.right,top:i.top,bottom:i.bottom}}function Et(e,t,n,r){for(var i,o,a,s,l=t.map,u=0;u<l.length;u+=3){var c=l[u],f=l[u+1];if(c>n?(o=0,a=1,s="left"):f>n?(o=n-c,a=o+1):(u==l.length-3||n==f&&l[u+3]>n)&&(a=f-c,o=a-1,n>=f&&(s="right")),null!=o){if(i=l[u+2],c==f&&r==(i.insertLeft?"left":"right")&&(s=r),"left"==r&&0==o)for(;u&&l[u-2]==l[u-3]&&l[u-1].insertLeft;)i=l[(u-=3)+2],s="left";if("right"==r&&o==f-c)for(;u<l.length-3&&l[u+3]==l[u+4]&&!l[u+5].insertLeft;)i=l[(u+=3)+2],s="right";break}}var d;if(3==i.nodeType){for(;o&&lo(t.line.text.charAt(c+o));)--o;for(;f>c+a&&lo(t.line.text.charAt(c+a));)++a;if(Wo&&0==o&&a==f-c)d=i.parentNode.getBoundingClientRect();else if(qo&&e.options.lineWrapping){var h=us(i,o,a).getClientRects();d=h.length?h["right"==r?h.length-1:0]:da}else d=us(i,o,a).getBoundingClientRect()||da}else{o>0&&(s=r="right");var h;d=e.options.lineWrapping&&(h=i.getClientRects()).length>1?h["right"==r?h.length-1:0]:i.getBoundingClientRect()}if(Wo&&!o&&(!d||!d.left&&!d.right)){var p=i.parentNode.getClientRects()[0];d=p?{left:p.left,right:p.left+$t(e.display),top:p.top,bottom:p.bottom}:da}for(var g,m=(d.bottom+d.top)/2-t.rect.top,v=t.view.measure.heights,u=0;u<v.length-1&&!(m<v[u]);u++);g=u?v[u-1]:0,m=v[u];var y={left:("right"==s?d.right:d.left)-t.rect.left,right:("left"==s?d.left:d.right)-t.rect.left,top:g,bottom:m};return d.left||d.right||(y.bogus=!0),y}function jt(e){if(e.measure&&(e.measure.cache={},e.measure.heights=null,e.rest))for(var t=0;t<e.rest.length;t++)e.measure.caches[t]={}}function Ht(e){e.display.externalMeasure=null,co(e.display.lineMeasure);for(var t=0;t<e.display.view.length;t++)jt(e.display.view[t])}function It(e){Ht(e),e.display.cachedCharWidth=e.display.cachedTextHeight=e.display.cachedPaddingH=null,e.options.lineWrapping||(e.display.maxLineChanged=!0),e.display.lineNumChars=null}function Ot(){return window.pageXOffset||(document.documentElement||document.body).scrollLeft}function Rt(){return window.pageYOffset||(document.documentElement||document.body).scrollTop}function Pt(e,t,n,r){if(t.widgets)for(var i=0;i<t.widgets.length;++i)if(t.widgets[i].above){var o=Gr(t.widgets[i]);n.top+=o,n.bottom+=o}if("line"==r)return n;r||(r="local");var a=Di(t);if("local"==r?a+=St(e.display):a-=e.display.viewOffset,"page"==r||"window"==r){var s=e.display.lineSpace.getBoundingClientRect();a+=s.top+("window"==r?0:Rt());var l=s.left+("window"==r?0:Ot());n.left+=l,n.right+=l}return n.top+=a,n.bottom+=a,n}function Ft(e,t,n){if("div"==n)return t;var r=t.left,i=t.top;if("page"==n)r-=Ot(),i-=Rt();else if("local"==n||!n){var o=e.display.sizer.getBoundingClientRect();r+=o.left,i+=o.top}var a=e.display.lineSpace.getBoundingClientRect();return{left:r-a.left,top:i-a.top}}function Wt(e,t,n,r,i){return r||(r=bi(e.doc,t.line)),Pt(e,r,Nt(e,r,t.ch,i),n)}function zt(e,t,n,r,i){function o(t,o){var a=Mt(e,i,t,o?"right":"left");return o?a.left=a.right:a.right=a.left,Pt(e,r,a,n)}function a(e,t){var n=s[t],r=n.level%2;return e==ko(n)&&t&&n.level<s[t-1].level?(n=s[--t],e=Lo(n)-(n.level%2?0:1),r=!0):e==Lo(n)&&t<s.length-1&&n.level<s[t+1].level&&(n=s[++t],e=ko(n)-n.level%2,r=!1),r&&e==n.to&&e>n.from?o(e-1):o(e,r)}r=r||bi(e.doc,t.line),i||(i=_t(e,r));var s=ki(r),l=t.ch;if(!s)return o(l);var u=jo(s,l),c=a(l,u);return null!=Ss&&(c.other=a(l,Ss)),c}function Bt(e,t){var n=0,t=K(e.doc,t);e.options.lineWrapping||(n=$t(e.display)*t.ch);var r=bi(e.doc,t.line),i=Di(r)+St(e.display);return{left:n,right:n,top:i,bottom:i+r.height}}function qt(e,t,n,r){var i=sa(e,t);return i.xRel=r,n&&(i.outside=!0),i}function Vt(e,t,n){var r=e.doc;if(n+=e.display.viewOffset,0>n)return qt(r.first,0,!0,-1);var i=Ti(r,n),o=r.first+r.size-1;if(i>o)return qt(r.first+r.size-1,bi(r,o).text.length,!0,1);0>t&&(t=0);for(var a=bi(r,i);;){var s=Ut(e,a,i,t,n),l=Fr(a),u=l&&l.find(0,!0);if(!l||!(s.ch>u.from.ch||s.ch==u.from.ch&&s.xRel>0))return s;i=Ci(a=u.to.line)}}function Ut(e,t,n,r,i){function o(r){var i=zt(e,sa(n,r),"line",t,u);return s=!0,a>i.bottom?i.left-l:a<i.top?i.left+l:(s=!1,i.left)}var a=i-Di(t),s=!1,l=2*e.display.wrapper.clientWidth,u=_t(e,t),c=ki(t),f=t.text.length,d=No(t),h=Ao(t),p=o(d),g=s,m=o(h),v=s;if(r>m)return qt(n,h,v,1);for(;;){if(c?h==d||h==Io(t,d,1):1>=h-d){for(var y=p>r||m-r>=r-p?d:h,b=r-(y==d?p:m);lo(t.text.charAt(y));)++y;var x=qt(n,y,y==d?g:v,-1>b?-1:b>1?1:0);return x}var w=Math.ceil(f/2),S=d+w;if(c){S=d;for(var C=0;w>C;++C)S=Io(t,S,1)}var T=o(S);T>r?(h=S,m=T,(v=s)&&(m+=1e3),f=w):(d=S,p=T,g=s,f-=w)}}function Xt(e){if(null!=e.cachedTextHeight)return e.cachedTextHeight;if(null==ua){ua=uo("pre");for(var t=0;49>t;++t)ua.appendChild(document.createTextNode("x")),ua.appendChild(uo("br"));ua.appendChild(document.createTextNode("x"))}fo(e.measure,ua);var n=ua.offsetHeight/50;return n>3&&(e.cachedTextHeight=n),co(e.measure),n||1}function $t(e){if(null!=e.cachedCharWidth)return e.cachedCharWidth;var t=uo("span","xxxxxxxxxx"),n=uo("pre",[t]);fo(e.measure,n);var r=t.getBoundingClientRect(),i=(r.right-r.left)/10;return i>2&&(e.cachedCharWidth=i),i||10}function Gt(e){e.curOp={viewChanged:!1,startHeight:e.doc.height,forceUpdate:!1,updateInput:null,typing:!1,changeObjs:null,cursorActivityHandlers:null,selectionChanged:!1,updateMaxLine:!1,scrollLeft:null,scrollTop:null,scrollToPos:null,id:++ha},es++||($a=[])}function Jt(e){var t=e.curOp,n=e.doc,r=e.display;if(e.curOp=null,t.updateMaxLine&&h(e),t.viewChanged||t.forceUpdate||null!=t.scrollTop||t.scrollToPos&&(t.scrollToPos.from.line<r.viewFrom||t.scrollToPos.to.line>=r.viewTo)||r.maxLineChanged&&e.options.lineWrapping){var i=S(e,{top:t.scrollTop,ensure:t.scrollToPos},t.forceUpdate);e.display.scroller.offsetHeight&&(e.doc.scrollTop=e.display.scroller.scrollTop)}if(!i&&t.selectionChanged&&pt(e),i||t.startHeight==e.doc.height||m(e),null==r.wheelStartX||null==t.scrollTop&&null==t.scrollLeft&&!t.scrollToPos||(r.wheelStartX=r.wheelStartY=null),null!=t.scrollTop&&r.scroller.scrollTop!=t.scrollTop){var o=Math.max(0,Math.min(r.scroller.scrollHeight-r.scroller.clientHeight,t.scrollTop));r.scroller.scrollTop=r.scrollbarV.scrollTop=n.scrollTop=o}if(null!=t.scrollLeft&&r.scroller.scrollLeft!=t.scrollLeft){var a=Math.max(0,Math.min(r.scroller.scrollWidth-r.scroller.clientWidth,t.scrollLeft));r.scroller.scrollLeft=r.scrollbarH.scrollLeft=n.scrollLeft=a,y(e)}if(t.scrollToPos){var s=rr(e,K(e.doc,t.scrollToPos.from),K(e.doc,t.scrollToPos.to),t.scrollToPos.margin);t.scrollToPos.isCursor&&e.state.focused&&nr(e,s)}t.selectionChanged&&vt(e),e.state.focused&&t.updateInput&&hn(e,t.typing);var l=t.maybeHiddenMarkers,u=t.maybeUnhiddenMarkers;if(l)for(var c=0;c<l.length;++c)l[c].lines.length||Za(l[c],"hide");if(u)for(var c=0;c<u.length;++c)u[c].lines.length&&Za(u[c],"unhide");var f;if(--es||(f=$a,$a=null),t.changeObjs&&Za(e,"changes",e,t.changeObjs),f)for(var c=0;c<f.length;++c)f[c]();if(t.cursorActivityHandlers)for(var c=0;c<t.cursorActivityHandlers.length;c++)t.cursorActivityHandlers[c](e)}function Yt(e,t){if(e.curOp)return t();Gt(e);try{return t()}finally{Jt(e)}}function Kt(e,t){return function(){if(e.curOp)return t.apply(e,arguments);Gt(e);try{return t.apply(e,arguments)}finally{Jt(e)}}}function Qt(e){return function(){if(this.curOp)return e.apply(this,arguments);Gt(this);try{return e.apply(this,arguments)}finally{Jt(this)}}}function Zt(e){return function(){var t=this.cm;if(!t||t.curOp)return e.apply(this,arguments);Gt(t);try{return e.apply(this,arguments)}finally{Jt(t)}}}function en(e,t,n){this.line=t,this.rest=Br(t),this.size=this.rest?Ci(eo(this.rest))-n+1:1,this.node=this.text=null,this.hidden=Ur(e,t)}function tn(e,t,n){for(var r,i=[],o=t;n>o;o=r){var a=new en(e.doc,bi(e.doc,o),o);r=o+a.size,i.push(a)}return i}function nn(e,t,n,r){null==t&&(t=e.doc.first),null==n&&(n=e.doc.first+e.doc.size),r||(r=0);var i=e.display;if(r&&n<i.viewTo&&(null==i.updateLineNumbers||i.updateLineNumbers>t)&&(i.updateLineNumbers=t),e.curOp.viewChanged=!0,t>=i.viewTo)aa&&qr(e.doc,t)<i.viewTo&&on(e);else if(n<=i.viewFrom)aa&&Vr(e.doc,n+r)>i.viewFrom?on(e):(i.viewFrom+=r,i.viewTo+=r);else if(t<=i.viewFrom&&n>=i.viewTo)on(e);else if(t<=i.viewFrom){var o=sn(e,n,n+r,1);o?(i.view=i.view.slice(o.index),i.viewFrom=o.lineN,i.viewTo+=r):on(e)}else if(n>=i.viewTo){var o=sn(e,t,t,-1);o?(i.view=i.view.slice(0,o.index),i.viewTo=o.lineN):on(e)}else{var a=sn(e,t,t,-1),s=sn(e,n,n+r,1);a&&s?(i.view=i.view.slice(0,a.index).concat(tn(e,a.lineN,s.lineN)).concat(i.view.slice(s.index)),i.viewTo+=r):on(e)}var l=i.externalMeasured;l&&(n<l.lineN?l.lineN+=r:t<l.lineN+l.size&&(i.externalMeasured=null))}function rn(e,t,n){e.curOp.viewChanged=!0;var r=e.display,i=e.display.externalMeasured;if(i&&t>=i.lineN&&t<i.lineN+i.size&&(r.externalMeasured=null),!(t<r.viewFrom||t>=r.viewTo)){var o=r.view[an(e,t)];if(null!=o.node){var a=o.changes||(o.changes=[]);-1==to(a,n)&&a.push(n)}}}function on(e){e.display.viewFrom=e.display.viewTo=e.doc.first,e.display.view=[],e.display.viewOffset=0}function an(e,t){if(t>=e.display.viewTo)return null;if(t-=e.display.viewFrom,0>t)return null;for(var n=e.display.view,r=0;r<n.length;r++)if(t-=n[r].size,0>t)return r}function sn(e,t,n,r){var i,o=an(e,t),a=e.display.view;if(!aa||n==e.doc.first+e.doc.size)return{index:o,lineN:n};for(var s=0,l=e.display.viewFrom;o>s;s++)l+=a[s].size;if(l!=t){if(r>0){if(o==a.length-1)return null;i=l+a[o].size-t,o++}else i=l-t;t+=i,n+=i}for(;qr(e.doc,n)!=n;){if(o==(0>r?0:a.length-1))return null;n+=r*a[o-(0>r?1:0)].size,o+=r}return{index:o,lineN:n}}function ln(e,t,n){var r=e.display,i=r.view;0==i.length||t>=r.viewTo||n<=r.viewFrom?(r.view=tn(e,t,n),r.viewFrom=t):(r.viewFrom>t?r.view=tn(e,t,r.viewFrom).concat(r.view):r.viewFrom<t&&(r.view=r.view.slice(an(e,t))),r.viewFrom=t,r.viewTo<n?r.view=r.view.concat(tn(e,r.viewTo,n)):r.viewTo>n&&(r.view=r.view.slice(0,an(e,n)))),r.viewTo=n}function un(e){for(var t=e.display.view,n=0,r=0;r<t.length;r++){var i=t[r];i.hidden||i.node&&!i.changes||++n}return n}function cn(e){e.display.pollingFast||e.display.poll.set(e.options.pollInterval,function(){dn(e),e.state.focused&&cn(e)})}function fn(e){function t(){var r=dn(e);r||n?(e.display.pollingFast=!1,cn(e)):(n=!0,e.display.poll.set(60,t))}var n=!1;e.display.pollingFast=!0,e.display.poll.set(20,t)}function dn(e){var t=e.display.input,n=e.display.prevInput,r=e.doc;if(!e.state.focused||bs(t)&&!n||mn(e)||e.options.disableInput)return!1;e.state.pasteIncoming&&e.state.fakedLastChar&&(t.value=t.value.substring(0,t.value.length-1),e.state.fakedLastChar=!1);var i=t.value;if(i==n&&!e.somethingSelected())return!1;if(qo&&!Wo&&e.display.inputHasSelection===i)return hn(e),!1;var o=!e.curOp;o&&Gt(e),e.display.shift=!1,8203!=i.charCodeAt(0)||r.sel!=e.display.selForContextMenu||n||(n="​");for(var a=0,s=Math.min(n.length,i.length);s>a&&n.charCodeAt(a)==i.charCodeAt(a);)++a;for(var l=i.slice(a),u=ys(l),c=e.state.pasteIncoming&&u.length>1&&r.sel.ranges.length==u.length,f=r.sel.ranges.length-1;f>=0;f--){var d=r.sel.ranges[f],h=d.from(),p=d.to();a<n.length?h=sa(h.line,h.ch-(n.length-a)):e.state.overwrite&&d.empty()&&!e.state.pasteIncoming&&(p=sa(p.line,Math.min(bi(r,p.line).text.length,p.ch+eo(u).length)));var g=e.curOp.updateInput,m={from:h,to:p,text:c?[u[f]]:u,origin:e.state.pasteIncoming?"paste":e.state.cutIncoming?"cut":"+input"};if(Jn(e.doc,m),Ui(e,"inputRead",e,m),l&&!e.state.pasteIncoming&&e.options.electricChars&&e.options.smartIndent&&d.head.ch<100&&(!f||r.sel.ranges[f-1].head.line!=d.head.line)){var v=e.getModeAt(d.head);if(v.electricChars){for(var y=0;y<v.electricChars.length;y++)if(l.indexOf(v.electricChars.charAt(y))>-1){ur(e,d.head.line,"smart");break}}else if(v.electricInput){var b=ba(m);v.electricInput.test(bi(r,b.line).text.slice(0,b.ch))&&ur(e,d.head.line,"smart")}}}return sr(e),e.curOp.updateInput=g,e.curOp.typing=!0,i.length>1e3||i.indexOf("\n")>-1?t.value=e.display.prevInput="":e.display.prevInput=i,o&&Jt(e),e.state.pasteIncoming=e.state.cutIncoming=!1,!0}function hn(e,t){var n,r,i=e.doc;if(e.somethingSelected()){e.display.prevInput="";var o=i.sel.primary();n=xs&&(o.to().line-o.from().line>100||(r=e.getSelection()).length>1e3);var a=n?"-":r||e.getSelection();e.display.input.value=a,e.state.focused&&ls(e.display.input),qo&&!Wo&&(e.display.inputHasSelection=a)}else t||(e.display.prevInput=e.display.input.value="",qo&&!Wo&&(e.display.inputHasSelection=null));e.display.inaccurateSelection=n}function pn(e){"nocursor"==e.options.readOnly||Zo&&po()==e.display.input||e.display.input.focus()}function gn(e){e.state.focused||(pn(e),Wn(e))}function mn(e){return e.options.readOnly||e.doc.cantEdit}function vn(e){function t(){e.state.focused&&setTimeout(oo(pn,e),0)}function n(t){$i(e,t)||Ya(t)}function r(t){if(e.somethingSelected())i.inaccurateSelection&&(i.prevInput="",i.inaccurateSelection=!1,i.input.value=e.getSelection(),ls(i.input));else{for(var n="",r=[],o=0;o<e.doc.sel.ranges.length;o++){var a=e.doc.sel.ranges[o].head.line,s={anchor:sa(a,0),head:sa(a+1,0)};r.push(s),n+=e.getRange(s.anchor,s.head)}"cut"==t.type?e.setSelections(r,null,rs):(i.prevInput="",i.input.value=n,ls(i.input))}"cut"==t.type&&(e.state.cutIncoming=!0)}var i=e.display;Ka(i.scroller,"mousedown",Kt(e,wn)),Po?Ka(i.scroller,"dblclick",Kt(e,function(t){if(!$i(e,t)){var n=xn(e,t);if(n&&!kn(e,t)&&!bn(e.display,t)){Ga(t);var r=pr(e,n);nt(e.doc,r.anchor,r.head)}}})):Ka(i.scroller,"dblclick",function(t){$i(e,t)||Ga(t)}),Ka(i.lineSpace,"selectstart",function(e){bn(i,e)||Ga(e)}),ia||Ka(i.scroller,"contextmenu",function(t){Bn(e,t)}),Ka(i.scroller,"scroll",function(){i.scroller.clientHeight&&(An(e,i.scroller.scrollTop),_n(e,i.scroller.scrollLeft,!0),Za(e,"scroll",e))}),Ka(i.scrollbarV,"scroll",function(){i.scroller.clientHeight&&An(e,i.scrollbarV.scrollTop)}),Ka(i.scrollbarH,"scroll",function(){i.scroller.clientHeight&&_n(e,i.scrollbarH.scrollLeft)}),Ka(i.scroller,"mousewheel",function(t){Mn(e,t)}),Ka(i.scroller,"DOMMouseScroll",function(t){Mn(e,t)}),Ka(i.scrollbarH,"mousedown",t),Ka(i.scrollbarV,"mousedown",t),Ka(i.wrapper,"scroll",function(){i.wrapper.scrollTop=i.wrapper.scrollLeft=0}),Ka(i.input,"keyup",Kt(e,Pn)),Ka(i.input,"input",function(){qo&&!Wo&&e.display.inputHasSelection&&(e.display.inputHasSelection=null),fn(e)}),Ka(i.input,"keydown",Kt(e,On)),Ka(i.input,"keypress",Kt(e,Fn)),Ka(i.input,"focus",oo(Wn,e)),Ka(i.input,"blur",oo(zn,e)),e.options.dragDrop&&(Ka(i.scroller,"dragstart",function(t){Nn(e,t)}),Ka(i.scroller,"dragenter",n),Ka(i.scroller,"dragover",n),Ka(i.scroller,"drop",Kt(e,Ln))),Ka(i.scroller,"paste",function(t){bn(i,t)||(e.state.pasteIncoming=!0,pn(e),fn(e))}),Ka(i.input,"paste",function(){if(Vo&&!e.state.fakedLastChar&&!(new Date-e.state.lastMiddleDown<200)){var t=i.input.selectionStart,n=i.input.selectionEnd;i.input.value+="$",i.input.selectionStart=t,i.input.selectionEnd=n,e.state.fakedLastChar=!0}e.state.pasteIncoming=!0,fn(e)}),Ka(i.input,"cut",r),Ka(i.input,"copy",r),Jo&&Ka(i.sizer,"mouseup",function(){po()==i.input&&i.input.blur(),pn(e)})}function yn(e){var t=e.display;t.cachedCharWidth=t.cachedTextHeight=t.cachedPaddingH=null,e.setSize()}function bn(e,t){for(var n=qi(t);n!=e.wrapper;n=n.parentNode)if(!n||n.ignoreEvents||n.parentNode==e.sizer&&n!=e.mover)return!0}function xn(e,t,n,r){var i=e.display;if(!n){var o=qi(t);if(o==i.scrollbarH||o==i.scrollbarV||o==i.scrollbarFiller||o==i.gutterFiller)return null}var a,s,l=i.lineSpace.getBoundingClientRect();try{a=t.clientX-l.left,s=t.clientY-l.top}catch(t){return null}var u,c=Vt(e,a,s);if(r&&1==c.xRel&&(u=bi(e.doc,c.line).text).length==c.ch){var f=as(u,u.length,e.options.tabSize)-u.length;c=sa(c.line,Math.max(0,Math.round((a-Tt(e.display).left)/$t(e.display))-f))}return c}function wn(e){if(!$i(this,e)){var t=this,n=t.display;if(n.shift=e.shiftKey,bn(n,e))return void(Vo||(n.scroller.draggable=!1,setTimeout(function(){n.scroller.draggable=!0},100)));if(!kn(t,e)){var r=xn(t,e);switch(window.focus(),Vi(e)){case 1:r?Sn(t,e,r):qi(e)==n.scroller&&Ga(e);break;case 2:Vo&&(t.state.lastMiddleDown=+new Date),r&&nt(t.doc,r),setTimeout(oo(pn,t),20),Ga(e);break;case 3:ia&&Bn(t,e)}}}}function Sn(e,t,n){setTimeout(oo(gn,e),0);var r,i=+new Date;fa&&fa.time>i-400&&0==la(fa.pos,n)?r="triple":ca&&ca.time>i-400&&0==la(ca.pos,n)?(r="double",fa={time:i,pos:n}):(r="single",ca={time:i,pos:n});var o=e.doc.sel,a=ea?t.metaKey:t.ctrlKey;e.options.dragDrop&&vs&&!mn(e)&&"single"==r&&o.contains(n)>-1&&o.somethingSelected()?Cn(e,t,n,a):Tn(e,t,n,r,a)}function Cn(e,t,n,r){var i=e.display,o=Kt(e,function(a){Vo&&(i.scroller.draggable=!1),e.state.draggingText=!1,Qa(document,"mouseup",o),Qa(i.scroller,"drop",o),Math.abs(t.clientX-a.clientX)+Math.abs(t.clientY-a.clientY)<10&&(Ga(a),r||nt(e.doc,n),pn(e),Po&&!Wo&&setTimeout(function(){document.body.focus(),pn(e)},20))});Vo&&(i.scroller.draggable=!0),e.state.draggingText=o,i.scroller.dragDrop&&i.scroller.dragDrop(),Ka(document,"mouseup",o),Ka(i.scroller,"drop",o)}function Tn(e,t,n,r,i){function o(t){if(0!=la(g,t))if(g=t,"rect"==r){for(var i=[],o=e.options.tabSize,a=as(bi(u,n.line).text,n.ch,o),s=as(bi(u,t.line).text,t.ch,o),l=Math.min(a,s),h=Math.max(a,s),p=Math.min(n.line,t.line),m=Math.min(e.lastLine(),Math.max(n.line,t.line));m>=p;p++){var v=bi(u,p).text,y=Qi(v,l,o); l==h?i.push(new $(sa(p,y),sa(p,y))):v.length>y&&i.push(new $(sa(p,y),sa(p,Qi(v,h,o))))}i.length||i.push(new $(n,n)),lt(u,G(d.ranges.slice(0,f).concat(i),f),{origin:"*mouse",scroll:!1}),e.scrollIntoView(t)}else{var b=c,x=b.anchor,w=t;if("single"!=r){if("double"==r)var S=pr(e,t);else var S=new $(sa(t.line,0),K(u,sa(t.line+1,0)));la(S.anchor,x)>0?(w=S.head,x=U(b.from(),S.anchor)):(w=S.anchor,x=V(b.to(),S.head))}var i=d.ranges.slice(0);i[f]=new $(K(u,x),w),lt(u,G(i,f),is)}}function a(t){var n=++y,i=xn(e,t,!0,"rect"==r);if(i)if(0!=la(i,g)){gn(e),o(i);var s=v(l,u);(i.line>=s.to||i.line<s.from)&&setTimeout(Kt(e,function(){y==n&&a(t)}),150)}else{var c=t.clientY<m.top?-20:t.clientY>m.bottom?20:0;c&&setTimeout(Kt(e,function(){y==n&&(l.scroller.scrollTop+=c,a(t))}),50)}}function s(t){y=1/0,Ga(t),pn(e),Qa(document,"mousemove",b),Qa(document,"mouseup",x),u.history.lastSelOrigin=null}var l=e.display,u=e.doc;Ga(t);var c,f,d=u.sel;if(i&&!t.shiftKey?(f=u.sel.contains(n),c=f>-1?u.sel.ranges[f]:new $(n,n)):c=u.sel.primary(),t.altKey)r="rect",i||(c=new $(n,n)),n=xn(e,t,!0,!0),f=-1;else if("double"==r){var h=pr(e,n);c=e.display.shift||u.extend?tt(u,c,h.anchor,h.head):h}else if("triple"==r){var p=new $(sa(n.line,0),K(u,sa(n.line+1,0)));c=e.display.shift||u.extend?tt(u,c,p.anchor,p.head):p}else c=tt(u,c,n);i?f>-1?it(u,f,c,is):(f=u.sel.ranges.length,lt(u,G(u.sel.ranges.concat([c]),f),{scroll:!1,origin:"*mouse"})):(f=0,lt(u,new X([c],0),is),d=u.sel);var g=n,m=l.wrapper.getBoundingClientRect(),y=0,b=Kt(e,function(e){(qo&&!zo?e.buttons:Vi(e))?a(e):s(e)}),x=Kt(e,s);Ka(document,"mousemove",b),Ka(document,"mouseup",x)}function Dn(e,t,n,r,i){try{var o=t.clientX,a=t.clientY}catch(t){return!1}if(o>=Math.floor(e.display.gutters.getBoundingClientRect().right))return!1;r&&Ga(t);var s=e.display,l=s.lineDiv.getBoundingClientRect();if(a>l.bottom||!Ji(e,n))return Bi(t);a-=l.top-s.viewOffset;for(var u=0;u<e.options.gutters.length;++u){var c=s.gutters.childNodes[u];if(c&&c.getBoundingClientRect().right>=o){var f=Ti(e.doc,a),d=e.options.gutters[u];return i(e,n,e,f,d,t),Bi(t)}}}function kn(e,t){return Dn(e,t,"gutterClick",!0,Ui)}function Ln(e){var t=this;if(!$i(t,e)&&!bn(t.display,e)){Ga(e),qo&&(pa=+new Date);var n=xn(t,e,!0),r=e.dataTransfer.files;if(n&&!mn(t))if(r&&r.length&&window.FileReader&&window.File)for(var i=r.length,o=Array(i),a=0,s=function(e,r){var s=new FileReader;s.onload=Kt(t,function(){if(o[r]=s.result,++a==i){n=K(t.doc,n);var e={from:n,to:n,text:ys(o.join("\n")),origin:"paste"};Jn(t.doc,e),st(t.doc,J(n,ba(e)))}}),s.readAsText(e)},l=0;i>l;++l)s(r[l],l);else{if(t.state.draggingText&&t.doc.sel.contains(n)>-1)return t.state.draggingText(e),void setTimeout(oo(pn,t),20);try{var o=e.dataTransfer.getData("Text");if(o){if(t.state.draggingText&&!(ea?e.metaKey:e.ctrlKey))var u=t.listSelections();if(ut(t.doc,J(n,n)),u)for(var l=0;l<u.length;++l)tr(t.doc,"",u[l].anchor,u[l].head,"drag");t.replaceSelection(o,"around","paste"),pn(t)}}catch(e){}}}}function Nn(e,t){if(qo&&(!e.state.draggingText||+new Date-pa<100))return void Ya(t);if(!$i(e,t)&&!bn(e.display,t)&&(t.dataTransfer.setData("Text",e.getSelection()),t.dataTransfer.setDragImage&&!Go)){var n=uo("img",null,null,"position: fixed; left: 0; top: 0;");n.src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==",$o&&(n.width=n.height=1,e.display.wrapper.appendChild(n),n._top=n.offsetTop),t.dataTransfer.setDragImage(n,0,0),$o&&n.parentNode.removeChild(n)}}function An(e,t){Math.abs(e.doc.scrollTop-t)<2||(e.doc.scrollTop=t,Ro||S(e,{top:t}),e.display.scroller.scrollTop!=t&&(e.display.scroller.scrollTop=t),e.display.scrollbarV.scrollTop!=t&&(e.display.scrollbarV.scrollTop=t),Ro&&S(e),yt(e,100))}function _n(e,t,n){(n?t==e.doc.scrollLeft:Math.abs(e.doc.scrollLeft-t)<2)||(t=Math.min(t,e.display.scroller.scrollWidth-e.display.scroller.clientWidth),e.doc.scrollLeft=t,y(e),e.display.scroller.scrollLeft!=t&&(e.display.scroller.scrollLeft=t),e.display.scrollbarH.scrollLeft!=t&&(e.display.scrollbarH.scrollLeft=t))}function Mn(e,t){var n=t.wheelDeltaX,r=t.wheelDeltaY;null==n&&t.detail&&t.axis==t.HORIZONTAL_AXIS&&(n=t.detail),null==r&&t.detail&&t.axis==t.VERTICAL_AXIS?r=t.detail:null==r&&(r=t.wheelDelta);var i=e.display,o=i.scroller;if(n&&o.scrollWidth>o.clientWidth||r&&o.scrollHeight>o.clientHeight){if(r&&ea&&Vo)e:for(var a=t.target,s=i.view;a!=o;a=a.parentNode)for(var l=0;l<s.length;l++)if(s[l].node==a){e.display.currentWheelTarget=a;break e}if(n&&!Ro&&!$o&&null!=ma)return r&&An(e,Math.max(0,Math.min(o.scrollTop+r*ma,o.scrollHeight-o.clientHeight))),_n(e,Math.max(0,Math.min(o.scrollLeft+n*ma,o.scrollWidth-o.clientWidth))),Ga(t),void(i.wheelStartX=null);if(r&&null!=ma){var u=r*ma,c=e.doc.scrollTop,f=c+i.wrapper.clientHeight;0>u?c=Math.max(0,c+u-50):f=Math.min(e.doc.height,f+u+50),S(e,{top:c,bottom:f})}20>ga&&(null==i.wheelStartX?(i.wheelStartX=o.scrollLeft,i.wheelStartY=o.scrollTop,i.wheelDX=n,i.wheelDY=r,setTimeout(function(){if(null!=i.wheelStartX){var e=o.scrollLeft-i.wheelStartX,t=o.scrollTop-i.wheelStartY,n=t&&i.wheelDY&&t/i.wheelDY||e&&i.wheelDX&&e/i.wheelDX;i.wheelStartX=i.wheelStartY=null,n&&(ma=(ma*ga+n)/(ga+1),++ga)}},200)):(i.wheelDX+=n,i.wheelDY+=r))}}function En(e,t,n){if("string"==typeof t&&(t=_a[t],!t))return!1;e.display.pollingFast&&dn(e)&&(e.display.pollingFast=!1);var r=e.display.shift,i=!1;try{mn(e)&&(e.state.suppressEdits=!0),n&&(e.display.shift=!1),i=t(e)!=ns}finally{e.display.shift=r,e.state.suppressEdits=!1}return i}function jn(e){var t=e.state.keyMaps.slice(0);return e.options.extraKeys&&t.push(e.options.extraKeys),t.push(e.options.keyMap),t}function Hn(e,t){var n=mr(e.options.keyMap),r=n.auto;clearTimeout(va),r&&!ja(t)&&(va=setTimeout(function(){mr(e.options.keyMap)==n&&(e.options.keyMap=r.call?r.call(null,e):r,s(e))},50));var i=Ha(t,!0),o=!1;if(!i)return!1;var a=jn(e);return o=t.shiftKey?Ea("Shift-"+i,a,function(t){return En(e,t,!0)})||Ea(i,a,function(t){return("string"==typeof t?/^go[A-Z]/.test(t):t.motion)?En(e,t):void 0}):Ea(i,a,function(t){return En(e,t)}),o&&(Ga(t),vt(e),Ui(e,"keyHandled",e,i,t)),o}function In(e,t,n){var r=Ea("'"+n+"'",jn(e),function(t){return En(e,t,!0)});return r&&(Ga(t),vt(e),Ui(e,"keyHandled",e,"'"+n+"'",t)),r}function On(e){var t=this;if(gn(t),!$i(t,e)){Po&&27==e.keyCode&&(e.returnValue=!1);var n=e.keyCode;t.display.shift=16==n||e.shiftKey;var r=Hn(t,e);$o&&(ya=r?n:null,!r&&88==n&&!xs&&(ea?e.metaKey:e.ctrlKey)&&t.replaceSelection("",null,"cut")),18!=n||/\bCodeMirror-crosshair\b/.test(t.display.lineDiv.className)||Rn(t)}}function Rn(e){function t(e){18!=e.keyCode&&e.altKey||(mo(n,"CodeMirror-crosshair"),Qa(document,"keyup",t),Qa(document,"mouseover",t))}var n=e.display.lineDiv;vo(n,"CodeMirror-crosshair"),Ka(document,"keyup",t),Ka(document,"mouseover",t)}function Pn(e){$i(this,e)||16==e.keyCode&&(this.doc.sel.shift=!1)}function Fn(e){var t=this;if(!$i(t,e)){var n=e.keyCode,r=e.charCode;if($o&&n==ya)return ya=null,void Ga(e);if(!($o&&(!e.which||e.which<10)||Jo)||!Hn(t,e)){var i=String.fromCharCode(null==r?n:r);In(t,e,i)||(qo&&!Wo&&(t.display.inputHasSelection=null),fn(t))}}}function Wn(e){"nocursor"!=e.options.readOnly&&(e.state.focused||(Za(e,"focus",e),e.state.focused=!0,vo(e.display.wrapper,"CodeMirror-focused"),e.curOp||e.display.selForContextMenu==e.doc.sel||(hn(e),Vo&&setTimeout(oo(hn,e,!0),0))),cn(e),vt(e))}function zn(e){e.state.focused&&(Za(e,"blur",e),e.state.focused=!1,mo(e.display.wrapper,"CodeMirror-focused")),clearInterval(e.display.blinker),setTimeout(function(){e.state.focused||(e.display.shift=!1)},150)}function Bn(e,t){function n(){if(null!=i.input.selectionStart){var t=e.somethingSelected(),n=i.input.value="​"+(t?i.input.value:"");i.prevInput=t?"":"​",i.input.selectionStart=1,i.input.selectionEnd=n.length,i.selForContextMenu=e.doc.sel}}function r(){if(i.inputDiv.style.position="relative",i.input.style.cssText=l,Wo&&(i.scrollbarV.scrollTop=i.scroller.scrollTop=a),cn(e),null!=i.input.selectionStart){(!qo||Wo)&&n();var t=0,r=function(){i.selForContextMenu==e.doc.sel&&0==i.input.selectionStart?Kt(e,_a.selectAll)(e):t++<10?i.detectingSelectAll=setTimeout(r,500):hn(e)};i.detectingSelectAll=setTimeout(r,200)}}if(!$i(e,t,"contextmenu")){var i=e.display;if(!bn(i,t)&&!qn(e,t)){var o=xn(e,t),a=i.scroller.scrollTop;if(o&&!$o){var s=e.options.resetSelectionOnContextMenu;s&&-1==e.doc.sel.contains(o)&&Kt(e,lt)(e.doc,J(o),rs);var l=i.input.style.cssText;if(i.inputDiv.style.position="absolute",i.input.style.cssText="position: fixed; width: 30px; height: 30px; top: "+(t.clientY-5)+"px; left: "+(t.clientX-5)+"px; z-index: 1000; background: "+(qo?"rgba(255, 255, 255, .05)":"transparent")+"; outline: none; border-width: 0; outline: none; overflow: hidden; opacity: .05; filter: alpha(opacity=5);",pn(e),hn(e),e.somethingSelected()||(i.input.value=i.prevInput=" "),i.selForContextMenu=e.doc.sel,clearTimeout(i.detectingSelectAll),qo&&!Wo&&n(),ia){Ya(t);var u=function(){Qa(window,"mouseup",u),setTimeout(r,20)};Ka(window,"mouseup",u)}else setTimeout(r,50)}}}}function qn(e,t){return Ji(e,"gutterContextMenu")?Dn(e,t,"gutterContextMenu",!1,Za):!1}function Vn(e,t){if(la(e,t.from)<0)return e;if(la(e,t.to)<=0)return ba(t);var n=e.line+t.text.length-(t.to.line-t.from.line)-1,r=e.ch;return e.line==t.to.line&&(r+=ba(t).ch-t.to.ch),sa(n,r)}function Un(e,t){for(var n=[],r=0;r<e.sel.ranges.length;r++){var i=e.sel.ranges[r];n.push(new $(Vn(i.anchor,t),Vn(i.head,t)))}return G(n,e.sel.primIndex)}function Xn(e,t,n){return e.line==t.line?sa(n.line,e.ch-t.ch+n.ch):sa(n.line+(e.line-t.line),e.ch)}function $n(e,t,n){for(var r=[],i=sa(e.first,0),o=i,a=0;a<t.length;a++){var s=t[a],l=Xn(s.from,i,o),u=Xn(ba(s),i,o);if(i=s.to,o=u,"around"==n){var c=e.sel.ranges[a],f=la(c.head,c.anchor)<0;r[a]=new $(f?u:l,f?l:u)}else r[a]=new $(l,l)}return new X(r,e.sel.primIndex)}function Gn(e,t,n){var r={canceled:!1,from:t.from,to:t.to,text:t.text,origin:t.origin,cancel:function(){this.canceled=!0}};return n&&(r.update=function(t,n,r,i){t&&(this.from=K(e,t)),n&&(this.to=K(e,n)),r&&(this.text=r),void 0!==i&&(this.origin=i)}),Za(e,"beforeChange",e,r),e.cm&&Za(e.cm,"beforeChange",e.cm,r),r.canceled?null:{from:r.from,to:r.to,text:r.text,origin:r.origin}}function Jn(e,t,n){if(e.cm){if(!e.cm.curOp)return Kt(e.cm,Jn)(e,t,n);if(e.cm.state.suppressEdits)return}if(!(Ji(e,"beforeChange")||e.cm&&Ji(e.cm,"beforeChange"))||(t=Gn(e,t,!0))){var r=oa&&!n&&Mr(e,t.from,t.to);if(r)for(var i=r.length-1;i>=0;--i)Yn(e,{from:r[i].from,to:r[i].to,text:i?[""]:t.text});else Yn(e,t)}}function Yn(e,t){if(1!=t.text.length||""!=t.text[0]||0!=la(t.from,t.to)){var n=Un(e,t);Mi(e,t,n,e.cm?e.cm.curOp.id:0/0),Zn(e,t,n,Nr(e,t));var r=[];vi(e,function(e,n){n||-1!=to(r,e.history)||(zi(e.history,t),r.push(e.history)),Zn(e,t,null,Nr(e,t))})}}function Kn(e,t,n){if(!e.cm||!e.cm.state.suppressEdits){for(var r,i=e.history,o=e.sel,a="undo"==t?i.done:i.undone,s="undo"==t?i.undone:i.done,l=0;l<a.length&&(r=a[l],n?!r.ranges||r.equals(e.sel):r.ranges);l++);if(l!=a.length){for(i.lastOrigin=i.lastSelOrigin=null;r=a.pop(),r.ranges;){if(Hi(r,s),n&&!r.equals(e.sel))return void lt(e,r,{clearRedo:!1});o=r}var u=[];Hi(o,s),s.push({changes:u,generation:i.generation}),i.generation=r.generation||++i.maxGeneration;for(var c=Ji(e,"beforeChange")||e.cm&&Ji(e.cm,"beforeChange"),l=r.changes.length-1;l>=0;--l){var f=r.changes[l];if(f.origin=t,c&&!Gn(e,f,!1))return void(a.length=0);u.push(Ni(e,f));var d=l?Un(e,f,null):eo(a);Zn(e,f,d,_r(e,f)),!l&&e.cm&&e.cm.scrollIntoView(f);var h=[];vi(e,function(e,t){t||-1!=to(h,e.history)||(zi(e.history,f),h.push(e.history)),Zn(e,f,null,_r(e,f))})}}}}function Qn(e,t){if(0!=t&&(e.first+=t,e.sel=new X(no(e.sel.ranges,function(e){return new $(sa(e.anchor.line+t,e.anchor.ch),sa(e.head.line+t,e.head.ch))}),e.sel.primIndex),e.cm)){nn(e.cm,e.first,e.first-t,t);for(var n=e.cm.display,r=n.viewFrom;r<n.viewTo;r++)rn(e.cm,r,"gutter")}}function Zn(e,t,n,r){if(e.cm&&!e.cm.curOp)return Kt(e.cm,Zn)(e,t,n,r);if(t.to.line<e.first)return void Qn(e,t.text.length-1-(t.to.line-t.from.line));if(!(t.from.line>e.lastLine())){if(t.from.line<e.first){var i=t.text.length-1-(e.first-t.from.line);Qn(e,i),t={from:sa(e.first,0),to:sa(t.to.line+i,t.to.ch),text:[eo(t.text)],origin:t.origin}}var o=e.lastLine();t.to.line>o&&(t={from:t.from,to:sa(o,bi(e,o).text.length),text:[t.text[0]],origin:t.origin}),t.removed=xi(e,t.from,t.to),n||(n=Un(e,t,null)),e.cm?er(e.cm,t,r):pi(e,t,r),ut(e,n,rs)}}function er(e,t,n){var r=e.doc,i=e.display,a=t.from,s=t.to,l=!1,u=a.line;e.options.lineWrapping||(u=Ci(zr(bi(r,a.line))),r.iter(u,s.line+1,function(e){return e==i.maxLine?(l=!0,!0):void 0})),r.sel.contains(t.from,t.to)>-1&&Gi(e),pi(r,t,n,o(e)),e.options.lineWrapping||(r.iter(u,a.line+t.text.length,function(e){var t=d(e);t>i.maxLineLength&&(i.maxLine=e,i.maxLineLength=t,i.maxLineChanged=!0,l=!1)}),l&&(e.curOp.updateMaxLine=!0)),r.frontier=Math.min(r.frontier,a.line),yt(e,400);var c=t.text.length-(s.line-a.line)-1;a.line!=s.line||1!=t.text.length||hi(e.doc,t)?nn(e,a.line,s.line+1,c):rn(e,a.line,"text");var f=Ji(e,"changes"),h=Ji(e,"change");if(h||f){var p={from:a,to:s,text:t.text,removed:t.removed,origin:t.origin};h&&Ui(e,"change",e,p),f&&(e.curOp.changeObjs||(e.curOp.changeObjs=[])).push(p)}e.display.selForContextMenu=null}function tr(e,t,n,r,i){if(r||(r=n),la(r,n)<0){var o=r;r=n,n=o}"string"==typeof t&&(t=ys(t)),Jn(e,{from:n,to:r,text:t,origin:i})}function nr(e,t){var n=e.display,r=n.sizer.getBoundingClientRect(),i=null;if(t.top+r.top<0?i=!0:t.bottom+r.top>(window.innerHeight||document.documentElement.clientHeight)&&(i=!1),null!=i&&!Ko){var o=uo("div","​",null,"position: absolute; top: "+(t.top-n.viewOffset-St(e.display))+"px; height: "+(t.bottom-t.top+ts)+"px; left: "+t.left+"px; width: 2px;");e.display.lineSpace.appendChild(o),o.scrollIntoView(i),e.display.lineSpace.removeChild(o)}}function rr(e,t,n,r){for(null==r&&(r=0);;){var i=!1,o=zt(e,t),a=n&&n!=t?zt(e,n):o,s=or(e,Math.min(o.left,a.left),Math.min(o.top,a.top)-r,Math.max(o.left,a.left),Math.max(o.bottom,a.bottom)+r),l=e.doc.scrollTop,u=e.doc.scrollLeft;if(null!=s.scrollTop&&(An(e,s.scrollTop),Math.abs(e.doc.scrollTop-l)>1&&(i=!0)),null!=s.scrollLeft&&(_n(e,s.scrollLeft),Math.abs(e.doc.scrollLeft-u)>1&&(i=!0)),!i)return o}}function ir(e,t,n,r,i){var o=or(e,t,n,r,i);null!=o.scrollTop&&An(e,o.scrollTop),null!=o.scrollLeft&&_n(e,o.scrollLeft)}function or(e,t,n,r,i){var o=e.display,a=Xt(e.display);0>n&&(n=0);var s=e.curOp&&null!=e.curOp.scrollTop?e.curOp.scrollTop:o.scroller.scrollTop,l=o.scroller.clientHeight-ts,u={},c=e.doc.height+Ct(o),f=a>n,d=i>c-a;if(s>n)u.scrollTop=f?0:n;else if(i>s+l){var h=Math.min(n,(d?c:i)-l);h!=s&&(u.scrollTop=h)}var p=e.curOp&&null!=e.curOp.scrollLeft?e.curOp.scrollLeft:o.scroller.scrollLeft,g=o.scroller.clientWidth-ts;t+=o.gutters.offsetWidth,r+=o.gutters.offsetWidth;var m=o.gutters.offsetWidth,v=m+10>t;return p+m>t||v?(v&&(t=0),u.scrollLeft=Math.max(0,t-10-m)):r>g+p-3&&(u.scrollLeft=r+10-g),u}function ar(e,t,n){(null!=t||null!=n)&&lr(e),null!=t&&(e.curOp.scrollLeft=(null==e.curOp.scrollLeft?e.doc.scrollLeft:e.curOp.scrollLeft)+t),null!=n&&(e.curOp.scrollTop=(null==e.curOp.scrollTop?e.doc.scrollTop:e.curOp.scrollTop)+n)}function sr(e){lr(e);var t=e.getCursor(),n=t,r=t;e.options.lineWrapping||(n=t.ch?sa(t.line,t.ch-1):t,r=sa(t.line,t.ch+1)),e.curOp.scrollToPos={from:n,to:r,margin:e.options.cursorScrollMargin,isCursor:!0}}function lr(e){var t=e.curOp.scrollToPos;if(t){e.curOp.scrollToPos=null;var n=Bt(e,t.from),r=Bt(e,t.to),i=or(e,Math.min(n.left,r.left),Math.min(n.top,r.top)-t.margin,Math.max(n.right,r.right),Math.max(n.bottom,r.bottom)+t.margin);e.scrollTo(i.scrollLeft,i.scrollTop)}}function ur(e,t,n,r){var i,o=e.doc;null==n&&(n="add"),"smart"==n&&(e.doc.mode.indent?i=wt(e,t):n="prev");var a=e.options.tabSize,s=bi(o,t),l=as(s.text,null,a);s.stateAfter&&(s.stateAfter=null);var u,c=s.text.match(/^\s*/)[0];if(r||/\S/.test(s.text)){if("smart"==n&&(u=e.doc.mode.indent(i,s.text.slice(c.length),s.text),u==ns)){if(!r)return;n="prev"}}else u=0,n="not";"prev"==n?u=t>o.first?as(bi(o,t-1).text,null,a):0:"add"==n?u=l+e.options.indentUnit:"subtract"==n?u=l-e.options.indentUnit:"number"==typeof n&&(u=l+n),u=Math.max(0,u);var f="",d=0;if(e.options.indentWithTabs)for(var h=Math.floor(u/a);h;--h)d+=a,f+=" ";if(u>d&&(f+=Zi(u-d)),f!=c)tr(e.doc,f,sa(t,0),sa(t,c.length),"+input");else for(var h=0;h<o.sel.ranges.length;h++){var p=o.sel.ranges[h];if(p.head.line==t&&p.head.ch<c.length){var d=sa(t,c.length);it(o,h,new $(d,d));break}}s.stateAfter=null}function cr(e,t,n,r){var i=t,o=t,a=e.doc;return"number"==typeof t?o=bi(a,Y(a,t)):i=Ci(t),null==i?null:(r(o,i)&&rn(e,i,n),o)}function fr(e,t){for(var n=e.doc.sel.ranges,r=[],i=0;i<n.length;i++){for(var o=t(n[i]);r.length&&la(o.from,eo(r).to)<=0;){var a=r.pop();if(la(a.from,o.from)<0){o.from=a.from;break}}r.push(o)}Yt(e,function(){for(var t=r.length-1;t>=0;t--)tr(e.doc,"",r[t].from,r[t].to,"+delete");sr(e)})}function dr(e,t,n,r,i){function o(){var t=s+n;return t<e.first||t>=e.first+e.size?f=!1:(s=t,c=bi(e,t))}function a(e){var t=(i?Io:Oo)(c,l,n,!0);if(null==t){if(e||!o())return f=!1;l=i?(0>n?Ao:No)(c):0>n?c.text.length:0}else l=t;return!0}var s=t.line,l=t.ch,u=n,c=bi(e,s),f=!0;if("char"==r)a();else if("column"==r)a(!0);else if("word"==r||"group"==r)for(var d=null,h="group"==r,p=e.cm&&e.cm.getHelper(t,"wordChars"),g=!0;!(0>n)||a(!g);g=!1){var m=c.text.charAt(l)||"\n",v=ao(m,p)?"w":h&&"\n"==m?"n":!h||/\s/.test(m)?null:"p";if(!h||g||v||(v="s"),d&&d!=v){0>n&&(n=1,a());break}if(v&&(d=v),n>0&&!a(!g))break}var y=ht(e,sa(s,l),u,!0);return f||(y.hitSide=!0),y}function hr(e,t,n,r){var i,o=e.doc,a=t.left;if("page"==r){var s=Math.min(e.display.wrapper.clientHeight,window.innerHeight||document.documentElement.clientHeight);i=t.top+n*(s-(0>n?1.5:.5)*Xt(e.display))}else"line"==r&&(i=n>0?t.bottom+3:t.top-3);for(;;){var l=Vt(e,a,i);if(!l.outside)break;if(0>n?0>=i:i>=o.height){l.hitSide=!0;break}i+=5*n}return l}function pr(e,t){var n=e.doc,r=bi(n,t.line).text,i=t.ch,o=t.ch;if(r){var a=e.getHelper(t,"wordChars");(t.xRel<0||o==r.length)&&i?--i:++o;for(var s=r.charAt(i),l=ao(s,a)?function(e){return ao(e,a)}:/\s/.test(s)?function(e){return/\s/.test(e)}:function(e){return!/\s/.test(e)&&!ao(e)};i>0&&l(r.charAt(i-1));)--i;for(;o<r.length&&l(r.charAt(o));)++o}return new $(sa(t.line,i),sa(t.line,o))}function gr(t,n,r,i){e.defaults[t]=n,r&&(wa[t]=i?function(e,t,n){n!=Sa&&r(e,t,n)}:r)}function mr(e){return"string"==typeof e?Ma[e]:e}function vr(e,t,n,r,i){if(r&&r.shared)return yr(e,t,n,r,i);if(e.cm&&!e.cm.curOp)return Kt(e.cm,vr)(e,t,n,r,i);var o=new Oa(e,i),a=la(t,n);if(r&&io(r,o,!1),a>0||0==a&&o.clearWhenEmpty!==!1)return o;if(o.replacedWith&&(o.collapsed=!0,o.widgetNode=uo("span",[o.replacedWith],"CodeMirror-widget"),r.handleMouseEvents||(o.widgetNode.ignoreEvents=!0),r.insertLeft&&(o.widgetNode.insertLeft=!0)),o.collapsed){if(Wr(e,t.line,t,n,o)||t.line!=n.line&&Wr(e,n.line,t,n,o))throw new Error("Inserting collapsed marker partially overlapping an existing one");aa=!0}o.addToHistory&&Mi(e,{from:t,to:n,origin:"markText"},e.sel,0/0);var s,l=t.line,u=e.cm;if(e.iter(l,n.line+1,function(e){u&&o.collapsed&&!u.options.lineWrapping&&zr(e)==u.display.maxLine&&(s=!0),o.collapsed&&l!=t.line&&Si(e,0),Dr(e,new Sr(o,l==t.line?t.ch:null,l==n.line?n.ch:null)),++l}),o.collapsed&&e.iter(t.line,n.line+1,function(t){Ur(e,t)&&Si(t,0)}),o.clearOnEnter&&Ka(o,"beforeCursorEnter",function(){o.clear()}),o.readOnly&&(oa=!0,(e.history.done.length||e.history.undone.length)&&e.clearHistory()),o.collapsed&&(o.id=++Ra,o.atomic=!0),u){if(s&&(u.curOp.updateMaxLine=!0),o.collapsed)nn(u,t.line,n.line+1);else if(o.className||o.title||o.startStyle||o.endStyle)for(var c=t.line;c<=n.line;c++)rn(u,c,"text");o.atomic&&ft(u.doc),Ui(u,"markerAdded",u,o)}return o}function yr(e,t,n,r,i){r=io(r),r.shared=!1;var o=[vr(e,t,n,r,i)],a=o[0],s=r.widgetNode;return vi(e,function(e){s&&(r.widgetNode=s.cloneNode(!0)),o.push(vr(e,K(e,t),K(e,n),r,i));for(var l=0;l<e.linked.length;++l)if(e.linked[l].isParent)return;a=eo(o)}),new Pa(o,a)}function br(e){return e.findMarks(sa(e.first,0),e.clipPos(sa(e.lastLine())),function(e){return e.parent})}function xr(e,t){for(var n=0;n<t.length;n++){var r=t[n],i=r.find(),o=e.clipPos(i.from),a=e.clipPos(i.to);if(la(o,a)){var s=vr(e,o,a,r.primary,r.primary.type);r.markers.push(s),s.parent=r}}}function wr(e){for(var t=0;t<e.length;t++){var n=e[t],r=[n.primary.doc];vi(n.primary.doc,function(e){r.push(e)});for(var i=0;i<n.markers.length;i++){var o=n.markers[i];-1==to(r,o.doc)&&(o.parent=null,n.markers.splice(i--,1))}}}function Sr(e,t,n){this.marker=e,this.from=t,this.to=n}function Cr(e,t){if(e)for(var n=0;n<e.length;++n){var r=e[n];if(r.marker==t)return r}}function Tr(e,t){for(var n,r=0;r<e.length;++r)e[r]!=t&&(n||(n=[])).push(e[r]);return n}function Dr(e,t){e.markedSpans=e.markedSpans?e.markedSpans.concat([t]):[t],t.marker.attachLine(e)}function kr(e,t,n){if(e)for(var r,i=0;i<e.length;++i){var o=e[i],a=o.marker,s=null==o.from||(a.inclusiveLeft?o.from<=t:o.from<t);if(s||o.from==t&&"bookmark"==a.type&&(!n||!o.marker.insertLeft)){var l=null==o.to||(a.inclusiveRight?o.to>=t:o.to>t);(r||(r=[])).push(new Sr(a,o.from,l?null:o.to))}}return r}function Lr(e,t,n){if(e)for(var r,i=0;i<e.length;++i){var o=e[i],a=o.marker,s=null==o.to||(a.inclusiveRight?o.to>=t:o.to>t);if(s||o.from==t&&"bookmark"==a.type&&(!n||o.marker.insertLeft)){var l=null==o.from||(a.inclusiveLeft?o.from<=t:o.from<t);(r||(r=[])).push(new Sr(a,l?null:o.from-t,null==o.to?null:o.to-t))}}return r}function Nr(e,t){var n=Z(e,t.from.line)&&bi(e,t.from.line).markedSpans,r=Z(e,t.to.line)&&bi(e,t.to.line).markedSpans;if(!n&&!r)return null;var i=t.from.ch,o=t.to.ch,a=0==la(t.from,t.to),s=kr(n,i,a),l=Lr(r,o,a),u=1==t.text.length,c=eo(t.text).length+(u?i:0);if(s)for(var f=0;f<s.length;++f){var d=s[f];if(null==d.to){var h=Cr(l,d.marker);h?u&&(d.to=null==h.to?null:h.to+c):d.to=i}}if(l)for(var f=0;f<l.length;++f){var d=l[f];if(null!=d.to&&(d.to+=c),null==d.from){var h=Cr(s,d.marker);h||(d.from=c,u&&(s||(s=[])).push(d))}else d.from+=c,u&&(s||(s=[])).push(d)}s&&(s=Ar(s)),l&&l!=s&&(l=Ar(l));var p=[s];if(!u){var g,m=t.text.length-2;if(m>0&&s)for(var f=0;f<s.length;++f)null==s[f].to&&(g||(g=[])).push(new Sr(s[f].marker,null,null));for(var f=0;m>f;++f)p.push(g);p.push(l)}return p}function Ar(e){for(var t=0;t<e.length;++t){var n=e[t];null!=n.from&&n.from==n.to&&n.marker.clearWhenEmpty!==!1&&e.splice(t--,1)}return e.length?e:null}function _r(e,t){var n=Ri(e,t),r=Nr(e,t);if(!n)return r;if(!r)return n;for(var i=0;i<n.length;++i){var o=n[i],a=r[i];if(o&&a)e:for(var s=0;s<a.length;++s){for(var l=a[s],u=0;u<o.length;++u)if(o[u].marker==l.marker)continue e;o.push(l)}else a&&(n[i]=a)}return n}function Mr(e,t,n){var r=null;if(e.iter(t.line,n.line+1,function(e){if(e.markedSpans)for(var t=0;t<e.markedSpans.length;++t){var n=e.markedSpans[t].marker;!n.readOnly||r&&-1!=to(r,n)||(r||(r=[])).push(n)}}),!r)return null;for(var i=[{from:t,to:n}],o=0;o<r.length;++o)for(var a=r[o],s=a.find(0),l=0;l<i.length;++l){var u=i[l];if(!(la(u.to,s.from)<0||la(u.from,s.to)>0)){var c=[l,1],f=la(u.from,s.from),d=la(u.to,s.to);(0>f||!a.inclusiveLeft&&!f)&&c.push({from:u.from,to:s.from}),(d>0||!a.inclusiveRight&&!d)&&c.push({from:s.to,to:u.to}),i.splice.apply(i,c),l+=c.length-1}}return i}function Er(e){var t=e.markedSpans;if(t){for(var n=0;n<t.length;++n)t[n].marker.detachLine(e);e.markedSpans=null}}function jr(e,t){if(t){for(var n=0;n<t.length;++n)t[n].marker.attachLine(e);e.markedSpans=t}}function Hr(e){return e.inclusiveLeft?-1:0}function Ir(e){return e.inclusiveRight?1:0}function Or(e,t){var n=e.lines.length-t.lines.length;if(0!=n)return n;var r=e.find(),i=t.find(),o=la(r.from,i.from)||Hr(e)-Hr(t);if(o)return-o;var a=la(r.to,i.to)||Ir(e)-Ir(t);return a?a:t.id-e.id}function Rr(e,t){var n,r=aa&&e.markedSpans;if(r)for(var i,o=0;o<r.length;++o)i=r[o],i.marker.collapsed&&null==(t?i.from:i.to)&&(!n||Or(n,i.marker)<0)&&(n=i.marker);return n}function Pr(e){return Rr(e,!0)}function Fr(e){return Rr(e,!1)}function Wr(e,t,n,r,i){var o=bi(e,t),a=aa&&o.markedSpans;if(a)for(var s=0;s<a.length;++s){var l=a[s];if(l.marker.collapsed){var u=l.marker.find(0),c=la(u.from,n)||Hr(l.marker)-Hr(i),f=la(u.to,r)||Ir(l.marker)-Ir(i);if(!(c>=0&&0>=f||0>=c&&f>=0)&&(0>=c&&(la(u.to,n)||Ir(l.marker)-Hr(i))>0||c>=0&&(la(u.from,r)||Hr(l.marker)-Ir(i))<0))return!0}}}function zr(e){for(var t;t=Pr(e);)e=t.find(-1,!0).line;return e}function Br(e){for(var t,n;t=Fr(e);)e=t.find(1,!0).line,(n||(n=[])).push(e);return n}function qr(e,t){var n=bi(e,t),r=zr(n);return n==r?t:Ci(r)}function Vr(e,t){if(t>e.lastLine())return t;var n,r=bi(e,t);if(!Ur(e,r))return t;for(;n=Fr(r);)r=n.find(1,!0).line;return Ci(r)+1}function Ur(e,t){var n=aa&&t.markedSpans;if(n)for(var r,i=0;i<n.length;++i)if(r=n[i],r.marker.collapsed){if(null==r.from)return!0;if(!r.marker.widgetNode&&0==r.from&&r.marker.inclusiveLeft&&Xr(e,t,r))return!0}}function Xr(e,t,n){if(null==n.to){var r=n.marker.find(1,!0);return Xr(e,r.line,Cr(r.line.markedSpans,n.marker))}if(n.marker.inclusiveRight&&n.to==t.text.length)return!0;for(var i,o=0;o<t.markedSpans.length;++o)if(i=t.markedSpans[o],i.marker.collapsed&&!i.marker.widgetNode&&i.from==n.to&&(null==i.to||i.to!=n.from)&&(i.marker.inclusiveLeft||n.marker.inclusiveRight)&&Xr(e,t,i))return!0}function $r(e,t,n){Di(t)<(e.curOp&&e.curOp.scrollTop||e.doc.scrollTop)&&ar(e,null,n)}function Gr(e){return null!=e.height?e.height:(ho(document.body,e.node)||fo(e.cm.display.measure,uo("div",[e.node],null,"position: relative")),e.height=e.node.offsetHeight)}function Jr(e,t,n,r){var i=new Fa(e,n,r);return i.noHScroll&&(e.display.alignWidgets=!0),cr(e,t,"widget",function(t){var n=t.widgets||(t.widgets=[]);if(null==i.insertAt?n.push(i):n.splice(Math.min(n.length-1,Math.max(0,i.insertAt)),0,i),i.line=t,!Ur(e.doc,t)){var r=Di(t)<e.doc.scrollTop;Si(t,t.height+Gr(i)),r&&ar(e,null,i.height),e.curOp.forceUpdate=!0}return!0}),i}function Yr(e,t,n,r){e.text=t,e.stateAfter&&(e.stateAfter=null),e.styles&&(e.styles=null),null!=e.order&&(e.order=null),Er(e),jr(e,n);var i=r?r(e):1;i!=e.height&&Si(e,i)}function Kr(e){e.parent=null,Er(e)}function Qr(e,t){if(e)for(;;){var n=e.match(/(?:^|\s+)line-(background-)?(\S+)/);if(!n)break;e=e.slice(0,n.index)+e.slice(n.index+n[0].length);var r=n[1]?"bgClass":"textClass";null==t[r]?t[r]=n[2]:new RegExp("(?:^|s)"+n[2]+"(?:$|s)").test(t[r])||(t[r]+=" "+n[2])}return e}function Zr(t,n){if(t.blankLine)return t.blankLine(n);if(t.innerMode){var r=e.innerMode(t,n);return r.mode.blankLine?r.mode.blankLine(r.state):void 0}}function ei(e,t,n){for(var r=0;10>r;r++){var i=e.token(t,n);if(t.pos>t.start)return i}throw new Error("Mode "+e.name+" failed to advance stream.")}function ti(t,n,r,i,o,a,s){var l=r.flattenSpans;null==l&&(l=t.options.flattenSpans);var u,c=0,f=null,d=new Ia(n,t.options.tabSize);for(""==n&&Qr(Zr(r,i),a);!d.eol();){if(d.pos>t.options.maxHighlightLength?(l=!1,s&&ii(t,n,i,d.pos),d.pos=n.length,u=null):u=Qr(ei(r,d,i),a),t.options.addModeClass){var h=e.innerMode(r,i).mode.name;h&&(u="m-"+(u?h+" "+u:h))}l&&f==u||(c<d.start&&o(d.start,f),c=d.start,f=u),d.start=d.pos}for(;c<d.pos;){var p=Math.min(d.pos,c+5e4);o(p,f),c=p}}function ni(e,t,n,r){var i=[e.state.modeGen],o={};ti(e,t.text,e.doc.mode,n,function(e,t){i.push(e,t)},o,r);for(var a=0;a<e.state.overlays.length;++a){var s=e.state.overlays[a],l=1,u=0;ti(e,t.text,s.mode,!0,function(e,t){for(var n=l;e>u;){var r=i[l];r>e&&i.splice(l,1,e,i[l+1],r),l+=2,u=Math.min(e,r)}if(t)if(s.opaque)i.splice(n,l-n,e,"cm-overlay "+t),l=n+2;else for(;l>n;n+=2){var o=i[n+1];i[n+1]=(o?o+" ":"")+"cm-overlay "+t}},o)}return{styles:i,classes:o.bgClass||o.textClass?o:null}}function ri(e,t){if(!t.styles||t.styles[0]!=e.state.modeGen){var n=ni(e,t,t.stateAfter=wt(e,Ci(t)));t.styles=n.styles,n.classes?t.styleClasses=n.classes:t.styleClasses&&(t.styleClasses=null)}return t.styles}function ii(e,t,n,r){var i=e.doc.mode,o=new Ia(t,e.options.tabSize);for(o.start=o.pos=r||0,""==t&&Zr(i,n);!o.eol()&&o.pos<=e.options.maxHighlightLength;)ei(i,o,n),o.start=o.pos}function oi(e,t){if(!e||/^\s*$/.test(e))return null;var n=t.addModeClass?Ba:za;return n[e]||(n[e]=e.replace(/\S+/g,"cm-$&"))}function ai(e,t){var n=uo("span",null,null,Vo?"padding-right: .1px":null),r={pre:uo("pre",[n]),content:n,col:0,pos:0,cm:e};t.measure={};for(var i=0;i<=(t.rest?t.rest.length:0);i++){var o,a=i?t.rest[i-1]:t.line;r.pos=0,r.addToken=li,(qo||Vo)&&e.getOption("lineWrapping")&&(r.addToken=ui(r.addToken)),To(e.display.measure)&&(o=ki(a))&&(r.addToken=ci(r.addToken,o)),r.map=[],di(a,r,ri(e,a)),a.styleClasses&&(a.styleClasses.bgClass&&(r.bgClass=yo(a.styleClasses.bgClass,r.bgClass||"")),a.styleClasses.textClass&&(r.textClass=yo(a.styleClasses.textClass,r.textClass||""))),0==r.map.length&&r.map.push(0,0,r.content.appendChild(Co(e.display.measure))),0==i?(t.measure.map=r.map,t.measure.cache={}):((t.measure.maps||(t.measure.maps=[])).push(r.map),(t.measure.caches||(t.measure.caches=[])).push({}))}return Za(e,"renderLine",e,t.line,r.pre),r.pre.className&&(r.textClass=yo(r.pre.className,r.textClass||"")),r}function si(e){var t=uo("span","•","cm-invalidchar");return t.title="\\u"+e.charCodeAt(0).toString(16),t}function li(e,t,n,r,i,o){if(t){var a=e.cm.options.specialChars,s=!1;if(a.test(t))for(var l=document.createDocumentFragment(),u=0;;){a.lastIndex=u;var c=a.exec(t),f=c?c.index-u:t.length-u;if(f){var d=document.createTextNode(t.slice(u,u+f));l.appendChild(Wo?uo("span",[d]):d),e.map.push(e.pos,e.pos+f,d),e.col+=f,e.pos+=f}if(!c)break;if(u+=f+1," "==c[0]){var h=e.cm.options.tabSize,p=h-e.col%h,d=l.appendChild(uo("span",Zi(p),"cm-tab"));e.col+=p}else{var d=e.cm.options.specialCharPlaceholder(c[0]);l.appendChild(Wo?uo("span",[d]):d),e.col+=1}e.map.push(e.pos,e.pos+1,d),e.pos++}else{e.col+=t.length;var l=document.createTextNode(t);e.map.push(e.pos,e.pos+t.length,l),Wo&&(s=!0),e.pos+=t.length}if(n||r||i||s){var g=n||"";r&&(g+=r),i&&(g+=i);var m=uo("span",[l],g);return o&&(m.title=o),e.content.appendChild(m)}e.content.appendChild(l)}}function ui(e){function t(e){for(var t=" ",n=0;n<e.length-2;++n)t+=n%2?" ":" ";return t+=" "}return function(n,r,i,o,a,s){e(n,r.replace(/ {3,}/g,t),i,o,a,s)}}function ci(e,t){return function(n,r,i,o,a,s){i=i?i+" cm-force-border":"cm-force-border";for(var l=n.pos,u=l+r.length;;){for(var c=0;c<t.length;c++){var f=t[c];if(f.to>l&&f.from<=l)break}if(f.to>=u)return e(n,r,i,o,a,s);e(n,r.slice(0,f.to-l),i,o,null,s),o=null,r=r.slice(f.to-l),l=f.to}}}function fi(e,t,n,r){var i=!r&&n.widgetNode;i&&(e.map.push(e.pos,e.pos+t,i),e.content.appendChild(i)),e.pos+=t}function di(e,t,n){var r=e.markedSpans,i=e.text,o=0;if(r)for(var a,s,l,u,c,f,d=i.length,h=0,p=1,g="",m=0;;){if(m==h){s=l=u=c="",f=null,m=1/0;for(var v=[],y=0;y<r.length;++y){var b=r[y],x=b.marker;b.from<=h&&(null==b.to||b.to>h)?(null!=b.to&&m>b.to&&(m=b.to,l=""),x.className&&(s+=" "+x.className),x.startStyle&&b.from==h&&(u+=" "+x.startStyle),x.endStyle&&b.to==m&&(l+=" "+x.endStyle),x.title&&!c&&(c=x.title),x.collapsed&&(!f||Or(f.marker,x)<0)&&(f=b)):b.from>h&&m>b.from&&(m=b.from),"bookmark"==x.type&&b.from==h&&x.widgetNode&&v.push(x)}if(f&&(f.from||0)==h&&(fi(t,(null==f.to?d+1:f.to)-h,f.marker,null==f.from),null==f.to))return;if(!f&&v.length)for(var y=0;y<v.length;++y)fi(t,0,v[y])}if(h>=d)break;for(var w=Math.min(d,m);;){if(g){var S=h+g.length;if(!f){var C=S>w?g.slice(0,w-h):g;t.addToken(t,C,a?a+s:s,u,h+C.length==m?l:"",c)}if(S>=w){g=g.slice(w-h),h=w;break}h=S,u=""}g=i.slice(o,o=n[p++]),a=oi(n[p++],t.cm.options)}}else for(var p=1;p<n.length;p+=2)t.addToken(t,i.slice(o,o=n[p]),oi(n[p+1],t.cm.options))}function hi(e,t){return 0==t.from.ch&&0==t.to.ch&&""==eo(t.text)&&(!e.cm||e.cm.options.wholeLineUpdateBefore)}function pi(e,t,n,r){function i(e){return n?n[e]:null}function o(e,n,i){Yr(e,n,i,r),Ui(e,"change",e,t)}var a=t.from,s=t.to,l=t.text,u=bi(e,a.line),c=bi(e,s.line),f=eo(l),d=i(l.length-1),h=s.line-a.line;if(hi(e,t)){for(var p=0,g=[];p<l.length-1;++p)g.push(new Wa(l[p],i(p),r));o(c,c.text,d),h&&e.remove(a.line,h),g.length&&e.insert(a.line,g)}else if(u==c)if(1==l.length)o(u,u.text.slice(0,a.ch)+f+u.text.slice(s.ch),d); else{for(var g=[],p=1;p<l.length-1;++p)g.push(new Wa(l[p],i(p),r));g.push(new Wa(f+u.text.slice(s.ch),d,r)),o(u,u.text.slice(0,a.ch)+l[0],i(0)),e.insert(a.line+1,g)}else if(1==l.length)o(u,u.text.slice(0,a.ch)+l[0]+c.text.slice(s.ch),i(0)),e.remove(a.line+1,h);else{o(u,u.text.slice(0,a.ch)+l[0],i(0)),o(c,f+c.text.slice(s.ch),d);for(var p=1,g=[];p<l.length-1;++p)g.push(new Wa(l[p],i(p),r));h>1&&e.remove(a.line+1,h-1),e.insert(a.line+1,g)}Ui(e,"change",e,t)}function gi(e){this.lines=e,this.parent=null;for(var t=0,n=0;t<e.length;++t)e[t].parent=this,n+=e[t].height;this.height=n}function mi(e){this.children=e;for(var t=0,n=0,r=0;r<e.length;++r){var i=e[r];t+=i.chunkSize(),n+=i.height,i.parent=this}this.size=t,this.height=n,this.parent=null}function vi(e,t,n){function r(e,i,o){if(e.linked)for(var a=0;a<e.linked.length;++a){var s=e.linked[a];if(s.doc!=i){var l=o&&s.sharedHist;(!n||l)&&(t(s.doc,l),r(s.doc,e,l))}}}r(e,null,!0)}function yi(e,t){if(t.cm)throw new Error("This document is already in use.");e.doc=t,t.cm=e,a(e),n(e),e.options.lineWrapping||h(e),e.options.mode=t.modeOption,nn(e)}function bi(e,t){if(t-=e.first,0>t||t>=e.size)throw new Error("There is no line "+(t+e.first)+" in the document.");for(var n=e;!n.lines;)for(var r=0;;++r){var i=n.children[r],o=i.chunkSize();if(o>t){n=i;break}t-=o}return n.lines[t]}function xi(e,t,n){var r=[],i=t.line;return e.iter(t.line,n.line+1,function(e){var o=e.text;i==n.line&&(o=o.slice(0,n.ch)),i==t.line&&(o=o.slice(t.ch)),r.push(o),++i}),r}function wi(e,t,n){var r=[];return e.iter(t,n,function(e){r.push(e.text)}),r}function Si(e,t){var n=t-e.height;if(n)for(var r=e;r;r=r.parent)r.height+=n}function Ci(e){if(null==e.parent)return null;for(var t=e.parent,n=to(t.lines,e),r=t.parent;r;t=r,r=r.parent)for(var i=0;r.children[i]!=t;++i)n+=r.children[i].chunkSize();return n+t.first}function Ti(e,t){var n=e.first;e:do{for(var r=0;r<e.children.length;++r){var i=e.children[r],o=i.height;if(o>t){e=i;continue e}t-=o,n+=i.chunkSize()}return n}while(!e.lines);for(var r=0;r<e.lines.length;++r){var a=e.lines[r],s=a.height;if(s>t)break;t-=s}return n+r}function Di(e){e=zr(e);for(var t=0,n=e.parent,r=0;r<n.lines.length;++r){var i=n.lines[r];if(i==e)break;t+=i.height}for(var o=n.parent;o;n=o,o=n.parent)for(var r=0;r<o.children.length;++r){var a=o.children[r];if(a==n)break;t+=a.height}return t}function ki(e){var t=e.order;return null==t&&(t=e.order=Cs(e.text)),t}function Li(e){this.done=[],this.undone=[],this.undoDepth=1/0,this.lastModTime=this.lastSelTime=0,this.lastOp=null,this.lastOrigin=this.lastSelOrigin=null,this.generation=this.maxGeneration=e||1}function Ni(e,t){var n={from:q(t.from),to:ba(t),text:xi(e,t.from,t.to)};return Ii(e,n,t.from.line,t.to.line+1),vi(e,function(e){Ii(e,n,t.from.line,t.to.line+1)},!0),n}function Ai(e){for(;e.length;){var t=eo(e);if(!t.ranges)break;e.pop()}}function _i(e,t){return t?(Ai(e.done),eo(e.done)):e.done.length&&!eo(e.done).ranges?eo(e.done):e.done.length>1&&!e.done[e.done.length-2].ranges?(e.done.pop(),eo(e.done)):void 0}function Mi(e,t,n,r){var i=e.history;i.undone.length=0;var o,a=+new Date;if((i.lastOp==r||i.lastOrigin==t.origin&&t.origin&&("+"==t.origin.charAt(0)&&e.cm&&i.lastModTime>a-e.cm.options.historyEventDelay||"*"==t.origin.charAt(0)))&&(o=_i(i,i.lastOp==r))){var s=eo(o.changes);0==la(t.from,t.to)&&0==la(t.from,s.to)?s.to=ba(t):o.changes.push(Ni(e,t))}else{var l=eo(i.done);for(l&&l.ranges||Hi(e.sel,i.done),o={changes:[Ni(e,t)],generation:i.generation},i.done.push(o);i.done.length>i.undoDepth;)i.done.shift(),i.done[0].ranges||i.done.shift()}i.done.push(n),i.generation=++i.maxGeneration,i.lastModTime=i.lastSelTime=a,i.lastOp=r,i.lastOrigin=i.lastSelOrigin=t.origin,s||Za(e,"historyAdded")}function Ei(e,t,n,r){var i=t.charAt(0);return"*"==i||"+"==i&&n.ranges.length==r.ranges.length&&n.somethingSelected()==r.somethingSelected()&&new Date-e.history.lastSelTime<=(e.cm?e.cm.options.historyEventDelay:500)}function ji(e,t,n,r){var i=e.history,o=r&&r.origin;n==i.lastOp||o&&i.lastSelOrigin==o&&(i.lastModTime==i.lastSelTime&&i.lastOrigin==o||Ei(e,o,eo(i.done),t))?i.done[i.done.length-1]=t:Hi(t,i.done),i.lastSelTime=+new Date,i.lastSelOrigin=o,i.lastOp=n,r&&r.clearRedo!==!1&&Ai(i.undone)}function Hi(e,t){var n=eo(t);n&&n.ranges&&n.equals(e)||t.push(e)}function Ii(e,t,n,r){var i=t["spans_"+e.id],o=0;e.iter(Math.max(e.first,n),Math.min(e.first+e.size,r),function(n){n.markedSpans&&((i||(i=t["spans_"+e.id]={}))[o]=n.markedSpans),++o})}function Oi(e){if(!e)return null;for(var t,n=0;n<e.length;++n)e[n].marker.explicitlyCleared?t||(t=e.slice(0,n)):t&&t.push(e[n]);return t?t.length?t:null:e}function Ri(e,t){var n=t["spans_"+e.id];if(!n)return null;for(var r=0,i=[];r<t.text.length;++r)i.push(Oi(n[r]));return i}function Pi(e,t,n){for(var r=0,i=[];r<e.length;++r){var o=e[r];if(o.ranges)i.push(n?X.prototype.deepCopy.call(o):o);else{var a=o.changes,s=[];i.push({changes:s});for(var l=0;l<a.length;++l){var u,c=a[l];if(s.push({from:c.from,to:c.to,text:c.text}),t)for(var f in c)(u=f.match(/^spans_(\d+)$/))&&to(t,Number(u[1]))>-1&&(eo(s)[f]=c[f],delete c[f])}}}return i}function Fi(e,t,n,r){n<e.line?e.line+=r:t<e.line&&(e.line=t,e.ch=0)}function Wi(e,t,n,r){for(var i=0;i<e.length;++i){var o=e[i],a=!0;if(o.ranges){o.copied||(o=e[i]=o.deepCopy(),o.copied=!0);for(var s=0;s<o.ranges.length;s++)Fi(o.ranges[s].anchor,t,n,r),Fi(o.ranges[s].head,t,n,r)}else{for(var s=0;s<o.changes.length;++s){var l=o.changes[s];if(n<l.from.line)l.from=sa(l.from.line+r,l.from.ch),l.to=sa(l.to.line+r,l.to.ch);else if(t<=l.to.line){a=!1;break}}a||(e.splice(0,i+1),i=0)}}}function zi(e,t){var n=t.from.line,r=t.to.line,i=t.text.length-(r-n)-1;Wi(e.done,n,r,i),Wi(e.undone,n,r,i)}function Bi(e){return null!=e.defaultPrevented?e.defaultPrevented:0==e.returnValue}function qi(e){return e.target||e.srcElement}function Vi(e){var t=e.which;return null==t&&(1&e.button?t=1:2&e.button?t=3:4&e.button&&(t=2)),ea&&e.ctrlKey&&1==t&&(t=3),t}function Ui(e,t){function n(e){return function(){e.apply(null,i)}}var r=e._handlers&&e._handlers[t];if(r){var i=Array.prototype.slice.call(arguments,2);$a||(++es,$a=[],setTimeout(Xi,0));for(var o=0;o<r.length;++o)$a.push(n(r[o]))}}function Xi(){--es;var e=$a;$a=null;for(var t=0;t<e.length;++t)e[t]()}function $i(e,t,n){return Za(e,n||t.type,e,t),Bi(t)||t.codemirrorIgnore}function Gi(e){var t=e._handlers&&e._handlers.cursorActivity;if(t)for(var n=e.curOp.cursorActivityHandlers||(e.curOp.cursorActivityHandlers=[]),r=0;r<t.length;++r)-1==to(n,t[r])&&n.push(t[r])}function Ji(e,t){var n=e._handlers&&e._handlers[t];return n&&n.length>0}function Yi(e){e.prototype.on=function(e,t){Ka(this,e,t)},e.prototype.off=function(e,t){Qa(this,e,t)}}function Ki(){this.id=null}function Qi(e,t,n){for(var r=0,i=0;;){var o=e.indexOf(" ",r);-1==o&&(o=e.length);var a=o-r;if(o==e.length||i+a>=t)return r+Math.min(a,t-i);if(i+=o-r,i+=n-i%n,r=o+1,i>=t)return r}}function Zi(e){for(;ss.length<=e;)ss.push(eo(ss)+" ");return ss[e]}function eo(e){return e[e.length-1]}function to(e,t){for(var n=0;n<e.length;++n)if(e[n]==t)return n;return-1}function no(e,t){for(var n=[],r=0;r<e.length;r++)n[r]=t(e[r],r);return n}function ro(e,t){var n;if(Object.create)n=Object.create(e);else{var r=function(){};r.prototype=e,n=new r}return t&&io(t,n),n}function io(e,t,n){t||(t={});for(var r in e)!e.hasOwnProperty(r)||n===!1&&t.hasOwnProperty(r)||(t[r]=e[r]);return t}function oo(e){var t=Array.prototype.slice.call(arguments,1);return function(){return e.apply(null,t)}}function ao(e,t){return t?t.source.indexOf("\\w")>-1&&fs(e)?!0:t.test(e):fs(e)}function so(e){for(var t in e)if(e.hasOwnProperty(t)&&e[t])return!1;return!0}function lo(e){return e.charCodeAt(0)>=768&&ds.test(e)}function uo(e,t,n,r){var i=document.createElement(e);if(n&&(i.className=n),r&&(i.style.cssText=r),"string"==typeof t)i.appendChild(document.createTextNode(t));else if(t)for(var o=0;o<t.length;++o)i.appendChild(t[o]);return i}function co(e){for(var t=e.childNodes.length;t>0;--t)e.removeChild(e.firstChild);return e}function fo(e,t){return co(e).appendChild(t)}function ho(e,t){if(e.contains)return e.contains(t);for(;t=t.parentNode;)if(t==e)return!0}function po(){return document.activeElement}function go(e){return new RegExp("\\b"+e+"\\b\\s*")}function mo(e,t){var n=go(t);n.test(e.className)&&(e.className=e.className.replace(n,""))}function vo(e,t){go(t).test(e.className)||(e.className+=" "+t)}function yo(e,t){for(var n=e.split(" "),r=0;r<n.length;r++)n[r]&&!go(n[r]).test(t)&&(t+=" "+n[r]);return t}function bo(e){if(document.body.getElementsByClassName)for(var t=document.body.getElementsByClassName("CodeMirror"),n=0;n<t.length;n++){var r=t[n].CodeMirror;r&&e(r)}}function xo(){ms||(wo(),ms=!0)}function wo(){var e;Ka(window,"resize",function(){null==e&&(e=setTimeout(function(){e=null,hs=null,bo(yn)},100))}),Ka(window,"blur",function(){bo(zn)})}function So(e){if(null!=hs)return hs;var t=uo("div",null,null,"width: 50px; height: 50px; overflow-x: scroll");return fo(e,t),t.offsetWidth&&(hs=t.offsetHeight-t.clientHeight),hs||0}function Co(e){if(null==ps){var t=uo("span","​");fo(e,uo("span",[t,document.createTextNode("x")])),0!=e.firstChild.offsetHeight&&(ps=t.offsetWidth<=1&&t.offsetHeight>2&&!Fo)}return ps?uo("span","​"):uo("span"," ",null,"display: inline-block; width: 1px; margin-right: -1px")}function To(e){if(null!=gs)return gs;var t=fo(e,document.createTextNode("AخA")),n=us(t,0,1).getBoundingClientRect();if(n.left==n.right)return!1;var r=us(t,1,2).getBoundingClientRect();return gs=r.right-n.right<3}function Do(e,t,n,r){if(!e)return r(t,n,"ltr");for(var i=!1,o=0;o<e.length;++o){var a=e[o];(a.from<n&&a.to>t||t==n&&a.to==t)&&(r(Math.max(a.from,t),Math.min(a.to,n),1==a.level?"rtl":"ltr"),i=!0)}i||r(t,n,"ltr")}function ko(e){return e.level%2?e.to:e.from}function Lo(e){return e.level%2?e.from:e.to}function No(e){var t=ki(e);return t?ko(t[0]):0}function Ao(e){var t=ki(e);return t?Lo(eo(t)):e.text.length}function _o(e,t){var n=bi(e.doc,t),r=zr(n);r!=n&&(t=Ci(r));var i=ki(r),o=i?i[0].level%2?Ao(r):No(r):0;return sa(t,o)}function Mo(e,t){for(var n,r=bi(e.doc,t);n=Fr(r);)r=n.find(1,!0).line,t=null;var i=ki(r),o=i?i[0].level%2?No(r):Ao(r):r.text.length;return sa(null==t?Ci(r):t,o)}function Eo(e,t,n){var r=e[0].level;return t==r?!0:n==r?!1:n>t}function jo(e,t){Ss=null;for(var n,r=0;r<e.length;++r){var i=e[r];if(i.from<t&&i.to>t)return r;if(i.from==t||i.to==t){if(null!=n)return Eo(e,i.level,e[n].level)?(i.from!=i.to&&(Ss=n),r):(i.from!=i.to&&(Ss=r),n);n=r}}return n}function Ho(e,t,n,r){if(!r)return t+n;do t+=n;while(t>0&&lo(e.text.charAt(t)));return t}function Io(e,t,n,r){var i=ki(e);if(!i)return Oo(e,t,n,r);for(var o=jo(i,t),a=i[o],s=Ho(e,t,a.level%2?-n:n,r);;){if(s>a.from&&s<a.to)return s;if(s==a.from||s==a.to)return jo(i,s)==o?s:(a=i[o+=n],n>0==a.level%2?a.to:a.from);if(a=i[o+=n],!a)return null;s=n>0==a.level%2?Ho(e,a.to,-1,r):Ho(e,a.from,1,r)}}function Oo(e,t,n,r){var i=t+n;if(r)for(;i>0&&lo(e.text.charAt(i));)i+=n;return 0>i||i>e.text.length?null:i}var Ro=/gecko\/\d/i.test(navigator.userAgent),Po=/MSIE \d/.test(navigator.userAgent),Fo=Po&&(null==document.documentMode||document.documentMode<8),Wo=Po&&(null==document.documentMode||document.documentMode<9),zo=Po&&(null==document.documentMode||document.documentMode<10),Bo=/Trident\/([7-9]|\d{2,})\./.test(navigator.userAgent),qo=Po||Bo,Vo=/WebKit\//.test(navigator.userAgent),Uo=Vo&&/Qt\/\d+\.\d+/.test(navigator.userAgent),Xo=/Chrome\//.test(navigator.userAgent),$o=/Opera\//.test(navigator.userAgent),Go=/Apple Computer/.test(navigator.vendor),Jo=/KHTML\//.test(navigator.userAgent),Yo=/Mac OS X 1\d\D([8-9]|\d\d)\D/.test(navigator.userAgent),Ko=/PhantomJS/.test(navigator.userAgent),Qo=/AppleWebKit/.test(navigator.userAgent)&&/Mobile\/\w+/.test(navigator.userAgent),Zo=Qo||/Android|webOS|BlackBerry|Opera Mini|Opera Mobi|IEMobile/i.test(navigator.userAgent),ea=Qo||/Mac/.test(navigator.platform),ta=/win/i.test(navigator.platform),na=$o&&navigator.userAgent.match(/Version\/(\d*\.\d*)/);na&&(na=Number(na[1])),na&&na>=15&&($o=!1,Vo=!0);var ra=ea&&(Uo||$o&&(null==na||12.11>na)),ia=Ro||qo&&!Wo,oa=!1,aa=!1,sa=e.Pos=function(e,t){return this instanceof sa?(this.line=e,void(this.ch=t)):new sa(e,t)},la=e.cmpPos=function(e,t){return e.line-t.line||e.ch-t.ch};X.prototype={primary:function(){return this.ranges[this.primIndex]},equals:function(e){if(e==this)return!0;if(e.primIndex!=this.primIndex||e.ranges.length!=this.ranges.length)return!1;for(var t=0;t<this.ranges.length;t++){var n=this.ranges[t],r=e.ranges[t];if(0!=la(n.anchor,r.anchor)||0!=la(n.head,r.head))return!1}return!0},deepCopy:function(){for(var e=[],t=0;t<this.ranges.length;t++)e[t]=new $(q(this.ranges[t].anchor),q(this.ranges[t].head));return new X(e,this.primIndex)},somethingSelected:function(){for(var e=0;e<this.ranges.length;e++)if(!this.ranges[e].empty())return!0;return!1},contains:function(e,t){t||(t=e);for(var n=0;n<this.ranges.length;n++){var r=this.ranges[n];if(la(t,r.from())>=0&&la(e,r.to())<=0)return n}return-1}},$.prototype={from:function(){return U(this.anchor,this.head)},to:function(){return V(this.anchor,this.head)},empty:function(){return this.head.line==this.anchor.line&&this.head.ch==this.anchor.ch}};var ua,ca,fa,da={left:0,right:0,top:0,bottom:0},ha=0,pa=0,ga=0,ma=null;qo?ma=-.53:Ro?ma=15:Xo?ma=-.7:Go&&(ma=-1/3);var va,ya=null,ba=e.changeEnd=function(e){return e.text?sa(e.from.line+e.text.length-1,eo(e.text).length+(1==e.text.length?e.from.ch:0)):e.to};e.prototype={constructor:e,focus:function(){window.focus(),pn(this),fn(this)},setOption:function(e,t){var n=this.options,r=n[e];(n[e]!=t||"mode"==e)&&(n[e]=t,wa.hasOwnProperty(e)&&Kt(this,wa[e])(this,t,r))},getOption:function(e){return this.options[e]},getDoc:function(){return this.doc},addKeyMap:function(e,t){this.state.keyMaps[t?"push":"unshift"](e)},removeKeyMap:function(e){for(var t=this.state.keyMaps,n=0;n<t.length;++n)if(t[n]==e||"string"!=typeof t[n]&&t[n].name==e)return t.splice(n,1),!0},addOverlay:Qt(function(t,n){var r=t.token?t:e.getMode(this.options,t);if(r.startState)throw new Error("Overlays may not be stateful.");this.state.overlays.push({mode:r,modeSpec:t,opaque:n&&n.opaque}),this.state.modeGen++,nn(this)}),removeOverlay:Qt(function(e){for(var t=this.state.overlays,n=0;n<t.length;++n){var r=t[n].modeSpec;if(r==e||"string"==typeof e&&r.name==e)return t.splice(n,1),this.state.modeGen++,void nn(this)}}),indentLine:Qt(function(e,t,n){"string"!=typeof t&&"number"!=typeof t&&(t=null==t?this.options.smartIndent?"smart":"prev":t?"add":"subtract"),Z(this.doc,e)&&ur(this,e,t,n)}),indentSelection:Qt(function(e){for(var t=this.doc.sel.ranges,n=-1,r=0;r<t.length;r++){var i=t[r];if(i.empty())i.head.line>n&&(ur(this,i.head.line,e,!0),n=i.head.line,r==this.doc.sel.primIndex&&sr(this));else{var o=Math.max(n,i.from().line),a=i.to();n=Math.min(this.lastLine(),a.line-(a.ch?0:1))+1;for(var s=o;n>s;++s)ur(this,s,e)}}}),getTokenAt:function(e,t){var n=this.doc;e=K(n,e);for(var r=wt(this,e.line,t),i=this.doc.mode,o=bi(n,e.line),a=new Ia(o.text,this.options.tabSize);a.pos<e.ch&&!a.eol();){a.start=a.pos;var s=ei(i,a,r)}return{start:a.start,end:a.pos,string:a.current(),type:s||null,state:r}},getTokenTypeAt:function(e){e=K(this.doc,e);var t,n=ri(this,bi(this.doc,e.line)),r=0,i=(n.length-1)/2,o=e.ch;if(0==o)t=n[2];else for(;;){var a=r+i>>1;if((a?n[2*a-1]:0)>=o)i=a;else{if(!(n[2*a+1]<o)){t=n[2*a+2];break}r=a+1}}var s=t?t.indexOf("cm-overlay "):-1;return 0>s?t:0==s?null:t.slice(0,s-1)},getModeAt:function(t){var n=this.doc.mode;return n.innerMode?e.innerMode(n,this.getTokenAt(t).state).mode:n},getHelper:function(e,t){return this.getHelpers(e,t)[0]},getHelpers:function(e,t){var n=[];if(!La.hasOwnProperty(t))return La;var r=La[t],i=this.getModeAt(e);if("string"==typeof i[t])r[i[t]]&&n.push(r[i[t]]);else if(i[t])for(var o=0;o<i[t].length;o++){var a=r[i[t][o]];a&&n.push(a)}else i.helperType&&r[i.helperType]?n.push(r[i.helperType]):r[i.name]&&n.push(r[i.name]);for(var o=0;o<r._global.length;o++){var s=r._global[o];s.pred(i,this)&&-1==to(n,s.val)&&n.push(s.val)}return n},getStateAfter:function(e,t){var n=this.doc;return e=Y(n,null==e?n.first+n.size-1:e),wt(this,e+1,t)},cursorCoords:function(e,t){var n,r=this.doc.sel.primary();return n=null==e?r.head:"object"==typeof e?K(this.doc,e):e?r.from():r.to(),zt(this,n,t||"page")},charCoords:function(e,t){return Wt(this,K(this.doc,e),t||"page")},coordsChar:function(e,t){return e=Ft(this,e,t||"page"),Vt(this,e.left,e.top)},lineAtHeight:function(e,t){return e=Ft(this,{top:e,left:0},t||"page").top,Ti(this.doc,e+this.display.viewOffset)},heightAtLine:function(e,t){var n=!1,r=this.doc.first+this.doc.size-1;e<this.doc.first?e=this.doc.first:e>r&&(e=r,n=!0);var i=bi(this.doc,e);return Pt(this,i,{top:0,left:0},t||"page").top+(n?this.doc.height-Di(i):0)},defaultTextHeight:function(){return Xt(this.display)},defaultCharWidth:function(){return $t(this.display)},setGutterMarker:Qt(function(e,t,n){return cr(this,e,"gutter",function(e){var r=e.gutterMarkers||(e.gutterMarkers={});return r[t]=n,!n&&so(r)&&(e.gutterMarkers=null),!0})}),clearGutter:Qt(function(e){var t=this,n=t.doc,r=n.first;n.iter(function(n){n.gutterMarkers&&n.gutterMarkers[e]&&(n.gutterMarkers[e]=null,rn(t,r,"gutter"),so(n.gutterMarkers)&&(n.gutterMarkers=null)),++r})}),addLineClass:Qt(function(e,t,n){return cr(this,e,"class",function(e){var r="text"==t?"textClass":"background"==t?"bgClass":"wrapClass";if(e[r]){if(new RegExp("(?:^|\\s)"+n+"(?:$|\\s)").test(e[r]))return!1;e[r]+=" "+n}else e[r]=n;return!0})}),removeLineClass:Qt(function(e,t,n){return cr(this,e,"class",function(e){var r="text"==t?"textClass":"background"==t?"bgClass":"wrapClass",i=e[r];if(!i)return!1;if(null==n)e[r]=null;else{var o=i.match(new RegExp("(?:^|\\s+)"+n+"(?:$|\\s+)"));if(!o)return!1;var a=o.index+o[0].length;e[r]=i.slice(0,o.index)+(o.index&&a!=i.length?" ":"")+i.slice(a)||null}return!0})}),addLineWidget:Qt(function(e,t,n){return Jr(this,e,t,n)}),removeLineWidget:function(e){e.clear()},lineInfo:function(e){if("number"==typeof e){if(!Z(this.doc,e))return null;var t=e;if(e=bi(this.doc,e),!e)return null}else{var t=Ci(e);if(null==t)return null}return{line:t,handle:e,text:e.text,gutterMarkers:e.gutterMarkers,textClass:e.textClass,bgClass:e.bgClass,wrapClass:e.wrapClass,widgets:e.widgets}},getViewport:function(){return{from:this.display.viewFrom,to:this.display.viewTo}},addWidget:function(e,t,n,r,i){var o=this.display;e=zt(this,K(this.doc,e));var a=e.bottom,s=e.left;if(t.style.position="absolute",o.sizer.appendChild(t),"over"==r)a=e.top;else if("above"==r||"near"==r){var l=Math.max(o.wrapper.clientHeight,this.doc.height),u=Math.max(o.sizer.clientWidth,o.lineSpace.clientWidth);("above"==r||e.bottom+t.offsetHeight>l)&&e.top>t.offsetHeight?a=e.top-t.offsetHeight:e.bottom+t.offsetHeight<=l&&(a=e.bottom),s+t.offsetWidth>u&&(s=u-t.offsetWidth)}t.style.top=a+"px",t.style.left=t.style.right="","right"==i?(s=o.sizer.clientWidth-t.offsetWidth,t.style.right="0px"):("left"==i?s=0:"middle"==i&&(s=(o.sizer.clientWidth-t.offsetWidth)/2),t.style.left=s+"px"),n&&ir(this,s,a,s+t.offsetWidth,a+t.offsetHeight)},triggerOnKeyDown:Qt(On),triggerOnKeyPress:Qt(Fn),triggerOnKeyUp:Qt(Pn),execCommand:function(e){return _a.hasOwnProperty(e)?_a[e](this):void 0},findPosH:function(e,t,n,r){var i=1;0>t&&(i=-1,t=-t);for(var o=0,a=K(this.doc,e);t>o&&(a=dr(this.doc,a,i,n,r),!a.hitSide);++o);return a},moveH:Qt(function(e,t){var n=this;n.extendSelectionsBy(function(r){return n.display.shift||n.doc.extend||r.empty()?dr(n.doc,r.head,e,t,n.options.rtlMoveVisually):0>e?r.from():r.to()},os)}),deleteH:Qt(function(e,t){var n=this.doc.sel,r=this.doc;n.somethingSelected()?r.replaceSelection("",null,"+delete"):fr(this,function(n){var i=dr(r,n.head,e,t,!1);return 0>e?{from:i,to:n.head}:{from:n.head,to:i}})}),findPosV:function(e,t,n,r){var i=1,o=r;0>t&&(i=-1,t=-t);for(var a=0,s=K(this.doc,e);t>a;++a){var l=zt(this,s,"div");if(null==o?o=l.left:l.left=o,s=hr(this,l,i,n),s.hitSide)break}return s},moveV:Qt(function(e,t){var n=this,r=this.doc,i=[],o=!n.display.shift&&!r.extend&&r.sel.somethingSelected();if(r.extendSelectionsBy(function(a){if(o)return 0>e?a.from():a.to();var s=zt(n,a.head,"div");null!=a.goalColumn&&(s.left=a.goalColumn),i.push(s.left);var l=hr(n,s,e,t);return"page"==t&&a==r.sel.primary()&&ar(n,null,Wt(n,l,"div").top-s.top),l},os),i.length)for(var a=0;a<r.sel.ranges.length;a++)r.sel.ranges[a].goalColumn=i[a]}),toggleOverwrite:function(e){(null==e||e!=this.state.overwrite)&&((this.state.overwrite=!this.state.overwrite)?vo(this.display.cursorDiv,"CodeMirror-overwrite"):mo(this.display.cursorDiv,"CodeMirror-overwrite"),Za(this,"overwriteToggle",this,this.state.overwrite))},hasFocus:function(){return po()==this.display.input},scrollTo:Qt(function(e,t){(null!=e||null!=t)&&lr(this),null!=e&&(this.curOp.scrollLeft=e),null!=t&&(this.curOp.scrollTop=t)}),getScrollInfo:function(){var e=this.display.scroller,t=ts;return{left:e.scrollLeft,top:e.scrollTop,height:e.scrollHeight-t,width:e.scrollWidth-t,clientHeight:e.clientHeight-t,clientWidth:e.clientWidth-t}},scrollIntoView:Qt(function(e,t){if(null==e?(e={from:this.doc.sel.primary().head,to:null},null==t&&(t=this.options.cursorScrollMargin)):"number"==typeof e?e={from:sa(e,0),to:null}:null==e.from&&(e={from:e,to:null}),e.to||(e.to=e.from),e.margin=t||0,null!=e.from.line)lr(this),this.curOp.scrollToPos=e;else{var n=or(this,Math.min(e.from.left,e.to.left),Math.min(e.from.top,e.to.top)-e.margin,Math.max(e.from.right,e.to.right),Math.max(e.from.bottom,e.to.bottom)+e.margin);this.scrollTo(n.scrollLeft,n.scrollTop)}}),setSize:Qt(function(e,t){function n(e){return"number"==typeof e||/^\d+$/.test(String(e))?e+"px":e}null!=e&&(this.display.wrapper.style.width=n(e)),null!=t&&(this.display.wrapper.style.height=n(t)),this.options.lineWrapping&&Ht(this),this.curOp.forceUpdate=!0,Za(this,"refresh",this)}),operation:function(e){return Yt(this,e)},refresh:Qt(function(){var e=this.display.cachedTextHeight;nn(this),this.curOp.forceUpdate=!0,It(this),this.scrollTo(this.doc.scrollLeft,this.doc.scrollTop),f(this),(null==e||Math.abs(e-Xt(this.display))>.5)&&a(this),Za(this,"refresh",this)}),swapDoc:Qt(function(e){var t=this.doc;return t.cm=null,yi(this,e),It(this),hn(this),this.scrollTo(e.scrollLeft,e.scrollTop),Ui(this,"swapDoc",this,t),t}),getInputField:function(){return this.display.input},getWrapperElement:function(){return this.display.wrapper},getScrollerElement:function(){return this.display.scroller},getGutterElement:function(){return this.display.gutters}},Yi(e);var xa=e.defaults={},wa=e.optionHandlers={},Sa=e.Init={toString:function(){return"CodeMirror.Init"}};gr("value","",function(e,t){e.setValue(t)},!0),gr("mode",null,function(e,t){e.doc.modeOption=t,n(e)},!0),gr("indentUnit",2,n,!0),gr("indentWithTabs",!1),gr("smartIndent",!0),gr("tabSize",4,function(e){r(e),It(e),nn(e)},!0),gr("specialChars",/[\t\u0000-\u0019\u00ad\u200b\u2028\u2029\ufeff]/g,function(e,t){e.options.specialChars=new RegExp(t.source+(t.test(" ")?"":"| "),"g"),e.refresh()},!0),gr("specialCharPlaceholder",si,function(e){e.refresh()},!0),gr("electricChars",!0),gr("rtlMoveVisually",!ta),gr("wholeLineUpdateBefore",!0),gr("theme","default",function(e){l(e),u(e)},!0),gr("keyMap","default",s),gr("extraKeys",null),gr("lineWrapping",!1,i,!0),gr("gutters",[],function(e){p(e.options),u(e)},!0),gr("fixedGutter",!0,function(e,t){e.display.gutters.style.left=t?w(e.display)+"px":"0",e.refresh()},!0),gr("coverGutterNextToScrollbar",!1,m,!0),gr("lineNumbers",!1,function(e){p(e.options),u(e)},!0),gr("firstLineNumber",1,u,!0),gr("lineNumberFormatter",function(e){return e},u,!0),gr("showCursorWhenSelecting",!1,pt,!0),gr("resetSelectionOnContextMenu",!0),gr("readOnly",!1,function(e,t){"nocursor"==t?(zn(e),e.display.input.blur(),e.display.disabled=!0):(e.display.disabled=!1,t||hn(e))}),gr("disableInput",!1,function(e,t){t||hn(e)},!0),gr("dragDrop",!0),gr("cursorBlinkRate",530),gr("cursorScrollMargin",0),gr("cursorHeight",1),gr("workTime",100),gr("workDelay",100),gr("flattenSpans",!0,r,!0),gr("addModeClass",!1,r,!0),gr("pollInterval",100),gr("undoDepth",200,function(e,t){e.doc.history.undoDepth=t}),gr("historyEventDelay",1250),gr("viewportMargin",10,function(e){e.refresh()},!0),gr("maxHighlightLength",1e4,r,!0),gr("moveInputWithCursor",!0,function(e,t){t||(e.display.inputDiv.style.top=e.display.inputDiv.style.left=0)}),gr("tabindex",null,function(e,t){e.display.input.tabIndex=t||""}),gr("autofocus",null);var Ca=e.modes={},Ta=e.mimeModes={};e.defineMode=function(t,n){if(e.defaults.mode||"null"==t||(e.defaults.mode=t),arguments.length>2){n.dependencies=[];for(var r=2;r<arguments.length;++r)n.dependencies.push(arguments[r])}Ca[t]=n},e.defineMIME=function(e,t){Ta[e]=t},e.resolveMode=function(t){if("string"==typeof t&&Ta.hasOwnProperty(t))t=Ta[t];else if(t&&"string"==typeof t.name&&Ta.hasOwnProperty(t.name)){var n=Ta[t.name];"string"==typeof n&&(n={name:n}),t=ro(n,t),t.name=n.name}else if("string"==typeof t&&/^[\w\-]+\/[\w\-]+\+xml$/.test(t))return e.resolveMode("application/xml");return"string"==typeof t?{name:t}:t||{name:"null"}},e.getMode=function(t,n){var n=e.resolveMode(n),r=Ca[n.name];if(!r)return e.getMode(t,"text/plain");var i=r(t,n);if(Da.hasOwnProperty(n.name)){var o=Da[n.name];for(var a in o)o.hasOwnProperty(a)&&(i.hasOwnProperty(a)&&(i["_"+a]=i[a]),i[a]=o[a])}if(i.name=n.name,n.helperType&&(i.helperType=n.helperType),n.modeProps)for(var a in n.modeProps)i[a]=n.modeProps[a];return i},e.defineMode("null",function(){return{token:function(e){e.skipToEnd()}}}),e.defineMIME("text/plain","null");var Da=e.modeExtensions={};e.extendMode=function(e,t){var n=Da.hasOwnProperty(e)?Da[e]:Da[e]={};io(t,n)},e.defineExtension=function(t,n){e.prototype[t]=n},e.defineDocExtension=function(e,t){Va.prototype[e]=t},e.defineOption=gr;var ka=[];e.defineInitHook=function(e){ka.push(e)};var La=e.helpers={};e.registerHelper=function(t,n,r){La.hasOwnProperty(t)||(La[t]=e[t]={_global:[]}),La[t][n]=r},e.registerGlobalHelper=function(t,n,r,i){e.registerHelper(t,n,i),La[t]._global.push({pred:r,val:i})};var Na=e.copyState=function(e,t){if(t===!0)return t;if(e.copyState)return e.copyState(t);var n={};for(var r in t){var i=t[r];i instanceof Array&&(i=i.concat([])),n[r]=i}return n},Aa=e.startState=function(e,t,n){return e.startState?e.startState(t,n):!0};e.innerMode=function(e,t){for(;e.innerMode;){var n=e.innerMode(t);if(!n||n.mode==e)break;t=n.state,e=n.mode}return n||{mode:e,state:t}};var _a=e.commands={selectAll:function(e){e.setSelection(sa(e.firstLine(),0),sa(e.lastLine()),rs)},singleSelection:function(e){e.setSelection(e.getCursor("anchor"),e.getCursor("head"),rs)},killLine:function(e){fr(e,function(t){if(t.empty()){var n=bi(e.doc,t.head.line).text.length;return t.head.ch==n&&t.head.line<e.lastLine()?{from:t.head,to:sa(t.head.line+1,0)}:{from:t.head,to:sa(t.head.line,n)}}return{from:t.from(),to:t.to()}})},deleteLine:function(e){fr(e,function(t){return{from:sa(t.from().line,0),to:K(e.doc,sa(t.to().line+1,0))}})},delLineLeft:function(e){fr(e,function(e){return{from:sa(e.from().line,0),to:e.from()}})},undo:function(e){e.undo()},redo:function(e){e.redo()},undoSelection:function(e){e.undoSelection()},redoSelection:function(e){e.redoSelection()},goDocStart:function(e){e.extendSelection(sa(e.firstLine(),0))},goDocEnd:function(e){e.extendSelection(sa(e.lastLine()))},goLineStart:function(e){e.extendSelectionsBy(function(t){return _o(e,t.head.line)},os)},goLineStartSmart:function(e){e.extendSelectionsBy(function(t){var n=_o(e,t.head.line),r=e.getLineHandle(n.line),i=ki(r);if(!i||0==i[0].level){var o=Math.max(0,r.text.search(/\S/)),a=t.head.line==n.line&&t.head.ch<=o&&t.head.ch;return sa(n.line,a?0:o)}return n},os)},goLineEnd:function(e){e.extendSelectionsBy(function(t){return Mo(e,t.head.line)},os)},goLineRight:function(e){e.extendSelectionsBy(function(t){var n=e.charCoords(t.head,"div").top+5;return e.coordsChar({left:e.display.lineDiv.offsetWidth+100,top:n},"div")},os)},goLineLeft:function(e){e.extendSelectionsBy(function(t){var n=e.charCoords(t.head,"div").top+5;return e.coordsChar({left:0,top:n},"div")},os)},goLineUp:function(e){e.moveV(-1,"line")},goLineDown:function(e){e.moveV(1,"line")},goPageUp:function(e){e.moveV(-1,"page")},goPageDown:function(e){e.moveV(1,"page")},goCharLeft:function(e){e.moveH(-1,"char")},goCharRight:function(e){e.moveH(1,"char")},goColumnLeft:function(e){e.moveH(-1,"column")},goColumnRight:function(e){e.moveH(1,"column")},goWordLeft:function(e){e.moveH(-1,"word")},goGroupRight:function(e){e.moveH(1,"group")},goGroupLeft:function(e){e.moveH(-1,"group")},goWordRight:function(e){e.moveH(1,"word")},delCharBefore:function(e){e.deleteH(-1,"char")},delCharAfter:function(e){e.deleteH(1,"char")},delWordBefore:function(e){e.deleteH(-1,"word")},delWordAfter:function(e){e.deleteH(1,"word")},delGroupBefore:function(e){e.deleteH(-1,"group")},delGroupAfter:function(e){e.deleteH(1,"group")},indentAuto:function(e){e.indentSelection("smart")},indentMore:function(e){e.indentSelection("add")},indentLess:function(e){e.indentSelection("subtract")},insertTab:function(e){e.replaceSelection(" ")},insertSoftTab:function(e){for(var t=[],n=e.listSelections(),r=e.options.tabSize,i=0;i<n.length;i++){var o=n[i].from(),a=as(e.getLine(o.line),o.ch,r);t.push(new Array(r-a%r+1).join(" "))}e.replaceSelections(t)},defaultTab:function(e){e.somethingSelected()?e.indentSelection("add"):e.execCommand("insertTab")},transposeChars:function(e){Yt(e,function(){for(var t=e.listSelections(),n=[],r=0;r<t.length;r++){var i=t[r].head,o=bi(e.doc,i.line).text;if(o)if(i.ch==o.length&&(i=new sa(i.line,i.ch-1)),i.ch>0)i=new sa(i.line,i.ch+1),e.replaceRange(o.charAt(i.ch-1)+o.charAt(i.ch-2),sa(i.line,i.ch-2),i,"+transpose");else if(i.line>e.doc.first){var a=bi(e.doc,i.line-1).text;a&&e.replaceRange(o.charAt(0)+"\n"+a.charAt(a.length-1),sa(i.line-1,a.length-1),sa(i.line,1),"+transpose")}n.push(new $(i,i))}e.setSelections(n)})},newlineAndIndent:function(e){Yt(e,function(){for(var t=e.listSelections().length,n=0;t>n;n++){var r=e.listSelections()[n];e.replaceRange("\n",r.anchor,r.head,"+input"),e.indentLine(r.from().line+1,null,!0),sr(e)}})},toggleOverwrite:function(e){e.toggleOverwrite()}},Ma=e.keyMap={};Ma.basic={Left:"goCharLeft",Right:"goCharRight",Up:"goLineUp",Down:"goLineDown",End:"goLineEnd",Home:"goLineStartSmart",PageUp:"goPageUp",PageDown:"goPageDown",Delete:"delCharAfter",Backspace:"delCharBefore","Shift-Backspace":"delCharBefore",Tab:"defaultTab","Shift-Tab":"indentAuto",Enter:"newlineAndIndent",Insert:"toggleOverwrite",Esc:"singleSelection"},Ma.pcDefault={"Ctrl-A":"selectAll","Ctrl-D":"deleteLine","Ctrl-Z":"undo","Shift-Ctrl-Z":"redo","Ctrl-Y":"redo","Ctrl-Home":"goDocStart","Ctrl-Up":"goDocStart","Ctrl-End":"goDocEnd","Ctrl-Down":"goDocEnd","Ctrl-Left":"goGroupLeft","Ctrl-Right":"goGroupRight","Alt-Left":"goLineStart","Alt-Right":"goLineEnd","Ctrl-Backspace":"delGroupBefore","Ctrl-Delete":"delGroupAfter","Ctrl-S":"save","Ctrl-F":"find","Ctrl-G":"findNext","Shift-Ctrl-G":"findPrev","Shift-Ctrl-F":"replace","Shift-Ctrl-R":"replaceAll","Ctrl-[":"indentLess","Ctrl-]":"indentMore","Ctrl-U":"undoSelection","Shift-Ctrl-U":"redoSelection","Alt-U":"redoSelection",fallthrough:"basic"},Ma.macDefault={"Cmd-A":"selectAll","Cmd-D":"deleteLine","Cmd-Z":"undo","Shift-Cmd-Z":"redo","Cmd-Y":"redo","Cmd-Up":"goDocStart","Cmd-End":"goDocEnd","Cmd-Down":"goDocEnd","Alt-Left":"goGroupLeft","Alt-Right":"goGroupRight","Cmd-Left":"goLineStart","Cmd-Right":"goLineEnd","Alt-Backspace":"delGroupBefore","Ctrl-Alt-Backspace":"delGroupAfter","Alt-Delete":"delGroupAfter","Cmd-S":"save","Cmd-F":"find","Cmd-G":"findNext","Shift-Cmd-G":"findPrev","Cmd-Alt-F":"replace","Shift-Cmd-Alt-F":"replaceAll","Cmd-[":"indentLess","Cmd-]":"indentMore","Cmd-Backspace":"delLineLeft","Cmd-U":"undoSelection","Shift-Cmd-U":"redoSelection",fallthrough:["basic","emacsy"]},Ma.emacsy={"Ctrl-F":"goCharRight","Ctrl-B":"goCharLeft","Ctrl-P":"goLineUp","Ctrl-N":"goLineDown","Alt-F":"goWordRight","Alt-B":"goWordLeft","Ctrl-A":"goLineStart","Ctrl-E":"goLineEnd","Ctrl-V":"goPageDown","Shift-Ctrl-V":"goPageUp","Ctrl-D":"delCharAfter","Ctrl-H":"delCharBefore","Alt-D":"delWordAfter","Alt-Backspace":"delWordBefore","Ctrl-K":"killLine","Ctrl-T":"transposeChars"},Ma["default"]=ea?Ma.macDefault:Ma.pcDefault; var Ea=e.lookupKey=function(e,t,n){function r(t){t=mr(t);var i=t[e];if(i===!1)return"stop";if(null!=i&&n(i))return!0;if(t.nofallthrough)return"stop";var o=t.fallthrough;if(null==o)return!1;if("[object Array]"!=Object.prototype.toString.call(o))return r(o);for(var a=0;a<o.length;++a){var s=r(o[a]);if(s)return s}return!1}for(var i=0;i<t.length;++i){var o=r(t[i]);if(o)return"stop"!=o}},ja=e.isModifierKey=function(e){var t=ws[e.keyCode];return"Ctrl"==t||"Alt"==t||"Shift"==t||"Mod"==t},Ha=e.keyName=function(e,t){if($o&&34==e.keyCode&&e["char"])return!1;var n=ws[e.keyCode];return null==n||e.altGraphKey?!1:(e.altKey&&(n="Alt-"+n),(ra?e.metaKey:e.ctrlKey)&&(n="Ctrl-"+n),(ra?e.ctrlKey:e.metaKey)&&(n="Cmd-"+n),!t&&e.shiftKey&&(n="Shift-"+n),n)};e.fromTextArea=function(t,n){function r(){t.value=u.getValue()}if(n||(n={}),n.value=t.value,!n.tabindex&&t.tabindex&&(n.tabindex=t.tabindex),!n.placeholder&&t.placeholder&&(n.placeholder=t.placeholder),null==n.autofocus){var i=po();n.autofocus=i==t||null!=t.getAttribute("autofocus")&&i==document.body}if(t.form&&(Ka(t.form,"submit",r),!n.leaveSubmitMethodAlone)){var o=t.form,a=o.submit;try{var s=o.submit=function(){r(),o.submit=a,o.submit(),o.submit=s}}catch(l){}}t.style.display="none";var u=e(function(e){t.parentNode.insertBefore(e,t.nextSibling)},n);return u.save=r,u.getTextArea=function(){return t},u.toTextArea=function(){r(),t.parentNode.removeChild(u.getWrapperElement()),t.style.display="",t.form&&(Qa(t.form,"submit",r),"function"==typeof t.form.submit&&(t.form.submit=a))},u};var Ia=e.StringStream=function(e,t){this.pos=this.start=0,this.string=e,this.tabSize=t||8,this.lastColumnPos=this.lastColumnValue=0,this.lineStart=0};Ia.prototype={eol:function(){return this.pos>=this.string.length},sol:function(){return this.pos==this.lineStart},peek:function(){return this.string.charAt(this.pos)||void 0},next:function(){return this.pos<this.string.length?this.string.charAt(this.pos++):void 0},eat:function(e){var t=this.string.charAt(this.pos);if("string"==typeof e)var n=t==e;else var n=t&&(e.test?e.test(t):e(t));return n?(++this.pos,t):void 0},eatWhile:function(e){for(var t=this.pos;this.eat(e););return this.pos>t},eatSpace:function(){for(var e=this.pos;/[\s\u00a0]/.test(this.string.charAt(this.pos));)++this.pos;return this.pos>e},skipToEnd:function(){this.pos=this.string.length},skipTo:function(e){var t=this.string.indexOf(e,this.pos);return t>-1?(this.pos=t,!0):void 0},backUp:function(e){this.pos-=e},column:function(){return this.lastColumnPos<this.start&&(this.lastColumnValue=as(this.string,this.start,this.tabSize,this.lastColumnPos,this.lastColumnValue),this.lastColumnPos=this.start),this.lastColumnValue-(this.lineStart?as(this.string,this.lineStart,this.tabSize):0)},indentation:function(){return as(this.string,null,this.tabSize)-(this.lineStart?as(this.string,this.lineStart,this.tabSize):0)},match:function(e,t,n){if("string"!=typeof e){var r=this.string.slice(this.pos).match(e);return r&&r.index>0?null:(r&&t!==!1&&(this.pos+=r[0].length),r)}var i=function(e){return n?e.toLowerCase():e},o=this.string.substr(this.pos,e.length);return i(o)==i(e)?(t!==!1&&(this.pos+=e.length),!0):void 0},current:function(){return this.string.slice(this.start,this.pos)},hideFirstChars:function(e,t){this.lineStart+=e;try{return t()}finally{this.lineStart-=e}}};var Oa=e.TextMarker=function(e,t){this.lines=[],this.type=t,this.doc=e};Yi(Oa),Oa.prototype.clear=function(){if(!this.explicitlyCleared){var e=this.doc.cm,t=e&&!e.curOp;if(t&&Gt(e),Ji(this,"clear")){var n=this.find();n&&Ui(this,"clear",n.from,n.to)}for(var r=null,i=null,o=0;o<this.lines.length;++o){var a=this.lines[o],s=Cr(a.markedSpans,this);e&&!this.collapsed?rn(e,Ci(a),"text"):e&&(null!=s.to&&(i=Ci(a)),null!=s.from&&(r=Ci(a))),a.markedSpans=Tr(a.markedSpans,s),null==s.from&&this.collapsed&&!Ur(this.doc,a)&&e&&Si(a,Xt(e.display))}if(e&&this.collapsed&&!e.options.lineWrapping)for(var o=0;o<this.lines.length;++o){var l=zr(this.lines[o]),u=d(l);u>e.display.maxLineLength&&(e.display.maxLine=l,e.display.maxLineLength=u,e.display.maxLineChanged=!0)}null!=r&&e&&this.collapsed&&nn(e,r,i+1),this.lines.length=0,this.explicitlyCleared=!0,this.atomic&&this.doc.cantEdit&&(this.doc.cantEdit=!1,e&&ft(e.doc)),e&&Ui(e,"markerCleared",e,this),t&&Jt(e),this.parent&&this.parent.clear()}},Oa.prototype.find=function(e,t){null==e&&"bookmark"==this.type&&(e=1);for(var n,r,i=0;i<this.lines.length;++i){var o=this.lines[i],a=Cr(o.markedSpans,this);if(null!=a.from&&(n=sa(t?o:Ci(o),a.from),-1==e))return n;if(null!=a.to&&(r=sa(t?o:Ci(o),a.to),1==e))return r}return n&&{from:n,to:r}},Oa.prototype.changed=function(){var e=this.find(-1,!0),t=this,n=this.doc.cm;e&&n&&Yt(n,function(){var r=e.line,i=Ci(e.line),o=At(n,i);if(o&&(jt(o),n.curOp.selectionChanged=n.curOp.forceUpdate=!0),n.curOp.updateMaxLine=!0,!Ur(t.doc,r)&&null!=t.height){var a=t.height;t.height=null;var s=Gr(t)-a;s&&Si(r,r.height+s)}})},Oa.prototype.attachLine=function(e){if(!this.lines.length&&this.doc.cm){var t=this.doc.cm.curOp;t.maybeHiddenMarkers&&-1!=to(t.maybeHiddenMarkers,this)||(t.maybeUnhiddenMarkers||(t.maybeUnhiddenMarkers=[])).push(this)}this.lines.push(e)},Oa.prototype.detachLine=function(e){if(this.lines.splice(to(this.lines,e),1),!this.lines.length&&this.doc.cm){var t=this.doc.cm.curOp;(t.maybeHiddenMarkers||(t.maybeHiddenMarkers=[])).push(this)}};var Ra=0,Pa=e.SharedTextMarker=function(e,t){this.markers=e,this.primary=t;for(var n=0;n<e.length;++n)e[n].parent=this};Yi(Pa),Pa.prototype.clear=function(){if(!this.explicitlyCleared){this.explicitlyCleared=!0;for(var e=0;e<this.markers.length;++e)this.markers[e].clear();Ui(this,"clear")}},Pa.prototype.find=function(e,t){return this.primary.find(e,t)};var Fa=e.LineWidget=function(e,t,n){if(n)for(var r in n)n.hasOwnProperty(r)&&(this[r]=n[r]);this.cm=e,this.node=t};Yi(Fa),Fa.prototype.clear=function(){var e=this.cm,t=this.line.widgets,n=this.line,r=Ci(n);if(null!=r&&t){for(var i=0;i<t.length;++i)t[i]==this&&t.splice(i--,1);t.length||(n.widgets=null);var o=Gr(this);Yt(e,function(){$r(e,n,-o),rn(e,r,"widget"),Si(n,Math.max(0,n.height-o))})}},Fa.prototype.changed=function(){var e=this.height,t=this.cm,n=this.line;this.height=null;var r=Gr(this)-e;r&&Yt(t,function(){t.curOp.forceUpdate=!0,$r(t,n,r),Si(n,n.height+r)})};var Wa=e.Line=function(e,t,n){this.text=e,jr(this,t),this.height=n?n(this):1};Yi(Wa),Wa.prototype.lineNo=function(){return Ci(this)};var za={},Ba={};gi.prototype={chunkSize:function(){return this.lines.length},removeInner:function(e,t){for(var n=e,r=e+t;r>n;++n){var i=this.lines[n];this.height-=i.height,Kr(i),Ui(i,"delete")}this.lines.splice(e,t)},collapse:function(e){e.push.apply(e,this.lines)},insertInner:function(e,t,n){this.height+=n,this.lines=this.lines.slice(0,e).concat(t).concat(this.lines.slice(e));for(var r=0;r<t.length;++r)t[r].parent=this},iterN:function(e,t,n){for(var r=e+t;r>e;++e)if(n(this.lines[e]))return!0}},mi.prototype={chunkSize:function(){return this.size},removeInner:function(e,t){this.size-=t;for(var n=0;n<this.children.length;++n){var r=this.children[n],i=r.chunkSize();if(i>e){var o=Math.min(t,i-e),a=r.height;if(r.removeInner(e,o),this.height-=a-r.height,i==o&&(this.children.splice(n--,1),r.parent=null),0==(t-=o))break;e=0}else e-=i}if(this.size-t<25&&(this.children.length>1||!(this.children[0]instanceof gi))){var s=[];this.collapse(s),this.children=[new gi(s)],this.children[0].parent=this}},collapse:function(e){for(var t=0;t<this.children.length;++t)this.children[t].collapse(e)},insertInner:function(e,t,n){this.size+=t.length,this.height+=n;for(var r=0;r<this.children.length;++r){var i=this.children[r],o=i.chunkSize();if(o>=e){if(i.insertInner(e,t,n),i.lines&&i.lines.length>50){for(;i.lines.length>50;){var a=i.lines.splice(i.lines.length-25,25),s=new gi(a);i.height-=s.height,this.children.splice(r+1,0,s),s.parent=this}this.maybeSpill()}break}e-=o}},maybeSpill:function(){if(!(this.children.length<=10)){var e=this;do{var t=e.children.splice(e.children.length-5,5),n=new mi(t);if(e.parent){e.size-=n.size,e.height-=n.height;var r=to(e.parent.children,e);e.parent.children.splice(r+1,0,n)}else{var i=new mi(e.children);i.parent=e,e.children=[i,n],e=i}n.parent=e.parent}while(e.children.length>10);e.parent.maybeSpill()}},iterN:function(e,t,n){for(var r=0;r<this.children.length;++r){var i=this.children[r],o=i.chunkSize();if(o>e){var a=Math.min(t,o-e);if(i.iterN(e,a,n))return!0;if(0==(t-=a))break;e=0}else e-=o}}};var qa=0,Va=e.Doc=function(e,t,n){if(!(this instanceof Va))return new Va(e,t,n);null==n&&(n=0),mi.call(this,[new gi([new Wa("",null)])]),this.first=n,this.scrollTop=this.scrollLeft=0,this.cantEdit=!1,this.cleanGeneration=1,this.frontier=n;var r=sa(n,0);this.sel=J(r),this.history=new Li(null),this.id=++qa,this.modeOption=t,"string"==typeof e&&(e=ys(e)),pi(this,{from:r,to:r,text:e}),lt(this,J(r),rs)};Va.prototype=ro(mi.prototype,{constructor:Va,iter:function(e,t,n){n?this.iterN(e-this.first,t-e,n):this.iterN(this.first,this.first+this.size,e)},insert:function(e,t){for(var n=0,r=0;r<t.length;++r)n+=t[r].height;this.insertInner(e-this.first,t,n)},remove:function(e,t){this.removeInner(e-this.first,t)},getValue:function(e){var t=wi(this,this.first,this.first+this.size);return e===!1?t:t.join(e||"\n")},setValue:Zt(function(e){var t=sa(this.first,0),n=this.first+this.size-1;Jn(this,{from:t,to:sa(n,bi(this,n).text.length),text:ys(e),origin:"setValue"},!0),lt(this,J(t))}),replaceRange:function(e,t,n,r){t=K(this,t),n=n?K(this,n):t,tr(this,e,t,n,r)},getRange:function(e,t,n){var r=xi(this,K(this,e),K(this,t));return n===!1?r:r.join(n||"\n")},getLine:function(e){var t=this.getLineHandle(e);return t&&t.text},getLineHandle:function(e){return Z(this,e)?bi(this,e):void 0},getLineNumber:function(e){return Ci(e)},getLineHandleVisualStart:function(e){return"number"==typeof e&&(e=bi(this,e)),zr(e)},lineCount:function(){return this.size},firstLine:function(){return this.first},lastLine:function(){return this.first+this.size-1},clipPos:function(e){return K(this,e)},getCursor:function(e){var t,n=this.sel.primary();return t=null==e||"head"==e?n.head:"anchor"==e?n.anchor:"end"==e||"to"==e||e===!1?n.to():n.from()},listSelections:function(){return this.sel.ranges},somethingSelected:function(){return this.sel.somethingSelected()},setCursor:Zt(function(e,t,n){ot(this,K(this,"number"==typeof e?sa(e,t||0):e),null,n)}),setSelection:Zt(function(e,t,n){ot(this,K(this,e),K(this,t||e),n)}),extendSelection:Zt(function(e,t,n){nt(this,K(this,e),t&&K(this,t),n)}),extendSelections:Zt(function(e,t){rt(this,et(this,e,t))}),extendSelectionsBy:Zt(function(e,t){rt(this,no(this.sel.ranges,e),t)}),setSelections:Zt(function(e,t,n){if(e.length){for(var r=0,i=[];r<e.length;r++)i[r]=new $(K(this,e[r].anchor),K(this,e[r].head));null==t&&(t=Math.min(e.length-1,this.sel.primIndex)),lt(this,G(i,t),n)}}),addSelection:Zt(function(e,t,n){var r=this.sel.ranges.slice(0);r.push(new $(K(this,e),K(this,t||e))),lt(this,G(r,r.length-1),n)}),getSelection:function(e){for(var t,n=this.sel.ranges,r=0;r<n.length;r++){var i=xi(this,n[r].from(),n[r].to());t=t?t.concat(i):i}return e===!1?t:t.join(e||"\n")},getSelections:function(e){for(var t=[],n=this.sel.ranges,r=0;r<n.length;r++){var i=xi(this,n[r].from(),n[r].to());e!==!1&&(i=i.join(e||"\n")),t[r]=i}return t},replaceSelection:function(e,t,n){for(var r=[],i=0;i<this.sel.ranges.length;i++)r[i]=e;this.replaceSelections(r,t,n||"+input")},replaceSelections:Zt(function(e,t,n){for(var r=[],i=this.sel,o=0;o<i.ranges.length;o++){var a=i.ranges[o];r[o]={from:a.from(),to:a.to(),text:ys(e[o]),origin:n}}for(var s=t&&"end"!=t&&$n(this,r,t),o=r.length-1;o>=0;o--)Jn(this,r[o]);s?st(this,s):this.cm&&sr(this.cm)}),undo:Zt(function(){Kn(this,"undo")}),redo:Zt(function(){Kn(this,"redo")}),undoSelection:Zt(function(){Kn(this,"undo",!0)}),redoSelection:Zt(function(){Kn(this,"redo",!0)}),setExtending:function(e){this.extend=e},getExtending:function(){return this.extend},historySize:function(){for(var e=this.history,t=0,n=0,r=0;r<e.done.length;r++)e.done[r].ranges||++t;for(var r=0;r<e.undone.length;r++)e.undone[r].ranges||++n;return{undo:t,redo:n}},clearHistory:function(){this.history=new Li(this.history.maxGeneration)},markClean:function(){this.cleanGeneration=this.changeGeneration(!0)},changeGeneration:function(e){return e&&(this.history.lastOp=this.history.lastOrigin=null),this.history.generation},isClean:function(e){return this.history.generation==(e||this.cleanGeneration)},getHistory:function(){return{done:Pi(this.history.done),undone:Pi(this.history.undone)}},setHistory:function(e){var t=this.history=new Li(this.history.maxGeneration);t.done=Pi(e.done.slice(0),null,!0),t.undone=Pi(e.undone.slice(0),null,!0)},markText:function(e,t,n){return vr(this,K(this,e),K(this,t),n,"range")},setBookmark:function(e,t){var n={replacedWith:t&&(null==t.nodeType?t.widget:t),insertLeft:t&&t.insertLeft,clearWhenEmpty:!1,shared:t&&t.shared};return e=K(this,e),vr(this,e,e,n,"bookmark")},findMarksAt:function(e){e=K(this,e);var t=[],n=bi(this,e.line).markedSpans;if(n)for(var r=0;r<n.length;++r){var i=n[r];(null==i.from||i.from<=e.ch)&&(null==i.to||i.to>=e.ch)&&t.push(i.marker.parent||i.marker)}return t},findMarks:function(e,t,n){e=K(this,e),t=K(this,t);var r=[],i=e.line;return this.iter(e.line,t.line+1,function(o){var a=o.markedSpans;if(a)for(var s=0;s<a.length;s++){var l=a[s];i==e.line&&e.ch>l.to||null==l.from&&i!=e.line||i==t.line&&l.from>t.ch||n&&!n(l.marker)||r.push(l.marker.parent||l.marker)}++i}),r},getAllMarks:function(){var e=[];return this.iter(function(t){var n=t.markedSpans;if(n)for(var r=0;r<n.length;++r)null!=n[r].from&&e.push(n[r].marker)}),e},posFromIndex:function(e){var t,n=this.first;return this.iter(function(r){var i=r.text.length+1;return i>e?(t=e,!0):(e-=i,void++n)}),K(this,sa(n,t))},indexFromPos:function(e){e=K(this,e);var t=e.ch;return e.line<this.first||e.ch<0?0:(this.iter(this.first,e.line,function(e){t+=e.text.length+1}),t)},copy:function(e){var t=new Va(wi(this,this.first,this.first+this.size),this.modeOption,this.first);return t.scrollTop=this.scrollTop,t.scrollLeft=this.scrollLeft,t.sel=this.sel,t.extend=!1,e&&(t.history.undoDepth=this.history.undoDepth,t.setHistory(this.getHistory())),t},linkedDoc:function(e){e||(e={});var t=this.first,n=this.first+this.size;null!=e.from&&e.from>t&&(t=e.from),null!=e.to&&e.to<n&&(n=e.to);var r=new Va(wi(this,t,n),e.mode||this.modeOption,t);return e.sharedHist&&(r.history=this.history),(this.linked||(this.linked=[])).push({doc:r,sharedHist:e.sharedHist}),r.linked=[{doc:this,isParent:!0,sharedHist:e.sharedHist}],xr(r,br(this)),r},unlinkDoc:function(t){if(t instanceof e&&(t=t.doc),this.linked)for(var n=0;n<this.linked.length;++n){var r=this.linked[n];if(r.doc==t){this.linked.splice(n,1),t.unlinkDoc(this),wr(br(this));break}}if(t.history==this.history){var i=[t.id];vi(t,function(e){i.push(e.id)},!0),t.history=new Li(null),t.history.done=Pi(this.history.done,i),t.history.undone=Pi(this.history.undone,i)}},iterLinkedDocs:function(e){vi(this,e)},getMode:function(){return this.mode},getEditor:function(){return this.cm}}),Va.prototype.eachLine=Va.prototype.iter;var Ua="iter insert remove copy getEditor".split(" ");for(var Xa in Va.prototype)Va.prototype.hasOwnProperty(Xa)&&to(Ua,Xa)<0&&(e.prototype[Xa]=function(e){return function(){return e.apply(this.doc,arguments)}}(Va.prototype[Xa]));Yi(Va);var $a,Ga=e.e_preventDefault=function(e){e.preventDefault?e.preventDefault():e.returnValue=!1},Ja=e.e_stopPropagation=function(e){e.stopPropagation?e.stopPropagation():e.cancelBubble=!0},Ya=e.e_stop=function(e){Ga(e),Ja(e)},Ka=e.on=function(e,t,n){if(e.addEventListener)e.addEventListener(t,n,!1);else if(e.attachEvent)e.attachEvent("on"+t,n);else{var r=e._handlers||(e._handlers={}),i=r[t]||(r[t]=[]);i.push(n)}},Qa=e.off=function(e,t,n){if(e.removeEventListener)e.removeEventListener(t,n,!1);else if(e.detachEvent)e.detachEvent("on"+t,n);else{var r=e._handlers&&e._handlers[t];if(!r)return;for(var i=0;i<r.length;++i)if(r[i]==n){r.splice(i,1);break}}},Za=e.signal=function(e,t){var n=e._handlers&&e._handlers[t];if(n)for(var r=Array.prototype.slice.call(arguments,2),i=0;i<n.length;++i)n[i].apply(null,r)},es=0,ts=30,ns=e.Pass={toString:function(){return"CodeMirror.Pass"}},rs={scroll:!1},is={origin:"*mouse"},os={origin:"+move"};Ki.prototype.set=function(e,t){clearTimeout(this.id),this.id=setTimeout(t,e)};var as=e.countColumn=function(e,t,n,r,i){null==t&&(t=e.search(/[^\s\u00a0]/),-1==t&&(t=e.length));for(var o=r||0,a=i||0;;){var s=e.indexOf(" ",o);if(0>s||s>=t)return a+(t-o);a+=s-o,a+=n-a%n,o=s+1}},ss=[""],ls=function(e){e.select()};Qo?ls=function(e){e.selectionStart=0,e.selectionEnd=e.value.length}:qo&&(ls=function(e){try{e.select()}catch(t){}}),[].indexOf&&(to=function(e,t){return e.indexOf(t)}),[].map&&(no=function(e,t){return e.map(t)});var us,cs=/[\u00df\u3040-\u309f\u30a0-\u30ff\u3400-\u4db5\u4e00-\u9fcc\uac00-\ud7af]/,fs=e.isWordChar=function(e){return/\w/.test(e)||e>"€"&&(e.toUpperCase()!=e.toLowerCase()||cs.test(e))},ds=/[\u0300-\u036f\u0483-\u0489\u0591-\u05bd\u05bf\u05c1\u05c2\u05c4\u05c5\u05c7\u0610-\u061a\u064b-\u065e\u0670\u06d6-\u06dc\u06de-\u06e4\u06e7\u06e8\u06ea-\u06ed\u0711\u0730-\u074a\u07a6-\u07b0\u07eb-\u07f3\u0816-\u0819\u081b-\u0823\u0825-\u0827\u0829-\u082d\u0900-\u0902\u093c\u0941-\u0948\u094d\u0951-\u0955\u0962\u0963\u0981\u09bc\u09be\u09c1-\u09c4\u09cd\u09d7\u09e2\u09e3\u0a01\u0a02\u0a3c\u0a41\u0a42\u0a47\u0a48\u0a4b-\u0a4d\u0a51\u0a70\u0a71\u0a75\u0a81\u0a82\u0abc\u0ac1-\u0ac5\u0ac7\u0ac8\u0acd\u0ae2\u0ae3\u0b01\u0b3c\u0b3e\u0b3f\u0b41-\u0b44\u0b4d\u0b56\u0b57\u0b62\u0b63\u0b82\u0bbe\u0bc0\u0bcd\u0bd7\u0c3e-\u0c40\u0c46-\u0c48\u0c4a-\u0c4d\u0c55\u0c56\u0c62\u0c63\u0cbc\u0cbf\u0cc2\u0cc6\u0ccc\u0ccd\u0cd5\u0cd6\u0ce2\u0ce3\u0d3e\u0d41-\u0d44\u0d4d\u0d57\u0d62\u0d63\u0dca\u0dcf\u0dd2-\u0dd4\u0dd6\u0ddf\u0e31\u0e34-\u0e3a\u0e47-\u0e4e\u0eb1\u0eb4-\u0eb9\u0ebb\u0ebc\u0ec8-\u0ecd\u0f18\u0f19\u0f35\u0f37\u0f39\u0f71-\u0f7e\u0f80-\u0f84\u0f86\u0f87\u0f90-\u0f97\u0f99-\u0fbc\u0fc6\u102d-\u1030\u1032-\u1037\u1039\u103a\u103d\u103e\u1058\u1059\u105e-\u1060\u1071-\u1074\u1082\u1085\u1086\u108d\u109d\u135f\u1712-\u1714\u1732-\u1734\u1752\u1753\u1772\u1773\u17b7-\u17bd\u17c6\u17c9-\u17d3\u17dd\u180b-\u180d\u18a9\u1920-\u1922\u1927\u1928\u1932\u1939-\u193b\u1a17\u1a18\u1a56\u1a58-\u1a5e\u1a60\u1a62\u1a65-\u1a6c\u1a73-\u1a7c\u1a7f\u1b00-\u1b03\u1b34\u1b36-\u1b3a\u1b3c\u1b42\u1b6b-\u1b73\u1b80\u1b81\u1ba2-\u1ba5\u1ba8\u1ba9\u1c2c-\u1c33\u1c36\u1c37\u1cd0-\u1cd2\u1cd4-\u1ce0\u1ce2-\u1ce8\u1ced\u1dc0-\u1de6\u1dfd-\u1dff\u200c\u200d\u20d0-\u20f0\u2cef-\u2cf1\u2de0-\u2dff\u302a-\u302f\u3099\u309a\ua66f-\ua672\ua67c\ua67d\ua6f0\ua6f1\ua802\ua806\ua80b\ua825\ua826\ua8c4\ua8e0-\ua8f1\ua926-\ua92d\ua947-\ua951\ua980-\ua982\ua9b3\ua9b6-\ua9b9\ua9bc\uaa29-\uaa2e\uaa31\uaa32\uaa35\uaa36\uaa43\uaa4c\uaab0\uaab2-\uaab4\uaab7\uaab8\uaabe\uaabf\uaac1\uabe5\uabe8\uabed\udc00-\udfff\ufb1e\ufe00-\ufe0f\ufe20-\ufe26\uff9e\uff9f]/;us=document.createRange?function(e,t,n){var r=document.createRange();return r.setEnd(e,n),r.setStart(e,t),r}:function(e,t,n){var r=document.body.createTextRange();return r.moveToElementText(e.parentNode),r.collapse(!0),r.moveEnd("character",n),r.moveStart("character",t),r},Po&&(po=function(){try{return document.activeElement}catch(e){return document.body}});var hs,ps,gs,ms=!1,vs=function(){if(Wo)return!1;var e=uo("div");return"draggable"in e||"dragDrop"in e}(),ys=e.splitLines=3!="\n\nb".split(/\n/).length?function(e){for(var t=0,n=[],r=e.length;r>=t;){var i=e.indexOf("\n",t);-1==i&&(i=e.length);var o=e.slice(t,"\r"==e.charAt(i-1)?i-1:i),a=o.indexOf("\r");-1!=a?(n.push(o.slice(0,a)),t+=a+1):(n.push(o),t=i+1)}return n}:function(e){return e.split(/\r\n?|\n/)},bs=window.getSelection?function(e){try{return e.selectionStart!=e.selectionEnd}catch(t){return!1}}:function(e){try{var t=e.ownerDocument.selection.createRange()}catch(n){}return t&&t.parentElement()==e?0!=t.compareEndPoints("StartToEnd",t):!1},xs=function(){var e=uo("div");return"oncopy"in e?!0:(e.setAttribute("oncopy","return;"),"function"==typeof e.oncopy)}(),ws={3:"Enter",8:"Backspace",9:"Tab",13:"Enter",16:"Shift",17:"Ctrl",18:"Alt",19:"Pause",20:"CapsLock",27:"Esc",32:"Space",33:"PageUp",34:"PageDown",35:"End",36:"Home",37:"Left",38:"Up",39:"Right",40:"Down",44:"PrintScrn",45:"Insert",46:"Delete",59:";",61:"=",91:"Mod",92:"Mod",93:"Mod",107:"=",109:"-",127:"Delete",173:"-",186:";",187:"=",188:",",189:"-",190:".",191:"/",192:"`",219:"[",220:"\\",221:"]",222:"'",63232:"Up",63233:"Down",63234:"Left",63235:"Right",63272:"Delete",63273:"Home",63275:"End",63276:"PageUp",63277:"PageDown",63302:"Insert"};e.keyNames=ws,function(){for(var e=0;10>e;e++)ws[e+48]=ws[e+96]=String(e);for(var e=65;90>=e;e++)ws[e]=String.fromCharCode(e);for(var e=1;12>=e;e++)ws[e+111]=ws[e+63235]="F"+e}();var Ss,Cs=function(){function e(e){return 247>=e?n.charAt(e):e>=1424&&1524>=e?"R":e>=1536&&1773>=e?r.charAt(e-1536):e>=1774&&2220>=e?"r":e>=8192&&8203>=e?"w":8204==e?"b":"L"}function t(e,t,n){this.level=e,this.from=t,this.to=n}var n="bbbbbbbbbtstwsbbbbbbbbbbbbbbssstwNN%%%NNNNNN,N,N1111111111NNNNNNNLLLLLLLLLLLLLLLLLLLLLLLLLLNNNNNNLLLLLLLLLLLLLLLLLLLLLLLLLLNNNNbbbbbbsbbbbbbbbbbbbbbbbbbbbbbbbbb,N%%%%NNNNLNNNNN%%11NLNNN1LNNNNNLLLLLLLLLLLLLLLLLLLLLLLNLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLN",r="rrrrrrrrrrrr,rNNmmmmmmrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrmmmmmmmmmmmmmmrrrrrrrnnnnnnnnnn%nnrrrmrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrmmmmmmmmmmmmmmmmmmmNmmmm",i=/[\u0590-\u05f4\u0600-\u06ff\u0700-\u08ac]/,o=/[stwN]/,a=/[LRr]/,s=/[Lb1n]/,l=/[1n]/,u="L";return function(n){if(!i.test(n))return!1;for(var r,c=n.length,f=[],d=0;c>d;++d)f.push(r=e(n.charCodeAt(d)));for(var d=0,h=u;c>d;++d){var r=f[d];"m"==r?f[d]=h:h=r}for(var d=0,p=u;c>d;++d){var r=f[d];"1"==r&&"r"==p?f[d]="n":a.test(r)&&(p=r,"r"==r&&(f[d]="R"))}for(var d=1,h=f[0];c-1>d;++d){var r=f[d];"+"==r&&"1"==h&&"1"==f[d+1]?f[d]="1":","!=r||h!=f[d+1]||"1"!=h&&"n"!=h||(f[d]=h),h=r}for(var d=0;c>d;++d){var r=f[d];if(","==r)f[d]="N";else if("%"==r){for(var g=d+1;c>g&&"%"==f[g];++g);for(var m=d&&"!"==f[d-1]||c>g&&"1"==f[g]?"1":"N",v=d;g>v;++v)f[v]=m;d=g-1}}for(var d=0,p=u;c>d;++d){var r=f[d];"L"==p&&"1"==r?f[d]="L":a.test(r)&&(p=r)}for(var d=0;c>d;++d)if(o.test(f[d])){for(var g=d+1;c>g&&o.test(f[g]);++g);for(var y="L"==(d?f[d-1]:u),b="L"==(c>g?f[g]:u),m=y||b?"L":"R",v=d;g>v;++v)f[v]=m;d=g-1}for(var x,w=[],d=0;c>d;)if(s.test(f[d])){var S=d;for(++d;c>d&&s.test(f[d]);++d);w.push(new t(0,S,d))}else{var C=d,T=w.length;for(++d;c>d&&"L"!=f[d];++d);for(var v=C;d>v;)if(l.test(f[v])){v>C&&w.splice(T,0,new t(1,C,v));var D=v;for(++v;d>v&&l.test(f[v]);++v);w.splice(T,0,new t(2,D,v)),C=v}else++v;d>C&&w.splice(T,0,new t(1,C,d))}return 1==w[0].level&&(x=n.match(/^\s+/))&&(w[0].from=x[0].length,w.unshift(new t(0,0,x[0].length))),1==eo(w).level&&(x=n.match(/\s+$/))&&(eo(w).to-=x[0].length,w.push(new t(0,c-x[0].length,c))),w[0].level!=eo(w).level&&w.push(new t(w[0].level,c,c)),w}}();return e.version="4.2.0",e})},{}],5:[function(t,n,r){!function(i){"object"==typeof r&&"object"==typeof n?i(t("../../lib/codemirror")):"function"==typeof e&&e.amd?e(["../../lib/codemirror"],i):i(CodeMirror)}(function(e){"use strict";e.defineMode("javascript",function(t,n){function r(e){for(var t,n=!1,r=!1;null!=(t=e.next());){if(!n){if("/"==t&&!r)return;"["==t?r=!0:r&&"]"==t&&(r=!1)}n=!n&&"\\"==t}}function i(e,t,n){return ht=e,pt=n,t}function o(e,t){var n=e.next();if('"'==n||"'"==n)return t.tokenize=a(n),t.tokenize(e,t);if("."==n&&e.match(/^\d+(?:[eE][+\-]?\d+)?/))return i("number","number");if("."==n&&e.match(".."))return i("spread","meta");if(/[\[\]{}\(\),;\:\.]/.test(n))return i(n);if("="==n&&e.eat(">"))return i("=>","operator");if("0"==n&&e.eat(/x/i))return e.eatWhile(/[\da-f]/i),i("number","number");if(/\d/.test(n))return e.match(/^\d*(?:\.\d*)?(?:[eE][+\-]?\d+)?/),i("number","number");if("/"==n)return e.eat("*")?(t.tokenize=s,s(e,t)):e.eat("/")?(e.skipToEnd(),i("comment","comment")):"operator"==t.lastType||"keyword c"==t.lastType||"sof"==t.lastType||/^[\[{}\(,;:]$/.test(t.lastType)?(r(e),e.eatWhile(/[gimy]/),i("regexp","string-2")):(e.eatWhile(wt),i("operator","operator",e.current()));if("`"==n)return t.tokenize=l,l(e,t);if("#"==n)return e.skipToEnd(),i("error","error");if(wt.test(n))return e.eatWhile(wt),i("operator","operator",e.current());e.eatWhile(/[\w\$_]/);var o=e.current(),u=xt.propertyIsEnumerable(o)&&xt[o];return u&&"."!=t.lastType?i(u.type,u.style,o):i("variable","variable",o)}function a(e){return function(t,n){var r,a=!1;if(vt&&"@"==t.peek()&&t.match(St))return n.tokenize=o,i("jsonld-keyword","meta");for(;null!=(r=t.next())&&(r!=e||a);)a=!a&&"\\"==r;return a||(n.tokenize=o),i("string","string")}}function s(e,t){for(var n,r=!1;n=e.next();){if("/"==n&&r){t.tokenize=o;break}r="*"==n}return i("comment","comment")}function l(e,t){for(var n,r=!1;null!=(n=e.next());){if(!r&&("`"==n||"$"==n&&e.eat("{"))){t.tokenize=o;break}r=!r&&"\\"==n}return i("quasi","string-2",e.current())}function u(e,t){t.fatArrowAt&&(t.fatArrowAt=null);var n=e.string.indexOf("=>",e.start);if(!(0>n)){for(var r=0,i=!1,o=n-1;o>=0;--o){var a=e.string.charAt(o),s=Ct.indexOf(a);if(s>=0&&3>s){if(!r){++o;break}if(0==--r)break}else if(s>=3&&6>s)++r;else if(/[$\w]/.test(a))i=!0;else if(i&&!r){++o;break}}i&&!r&&(t.fatArrowAt=o)}}function c(e,t,n,r,i,o){this.indented=e,this.column=t,this.type=n,this.prev=i,this.info=o,null!=r&&(this.align=r)}function f(e,t){for(var n=e.localVars;n;n=n.next)if(n.name==t)return!0;for(var r=e.context;r;r=r.prev)for(var n=r.vars;n;n=n.next)if(n.name==t)return!0}function d(e,t,n,r,i){var o=e.cc;for(Dt.state=e,Dt.stream=i,Dt.marked=null,Dt.cc=o,e.lexical.hasOwnProperty("align")||(e.lexical.align=!0);;){var a=o.length?o.pop():yt?S:w;if(a(n,r)){for(;o.length&&o[o.length-1].lex;)o.pop()();return Dt.marked?Dt.marked:"variable"==n&&f(e,r)?"variable-2":t}}}function h(){for(var e=arguments.length-1;e>=0;e--)Dt.cc.push(arguments[e])}function p(){return h.apply(null,arguments),!0}function g(e){function t(t){for(var n=t;n;n=n.next)if(n.name==e)return!0;return!1}var r=Dt.state;if(r.context){if(Dt.marked="def",t(r.localVars))return;r.localVars={name:e,next:r.localVars}}else{if(t(r.globalVars))return;n.globalVars&&(r.globalVars={name:e,next:r.globalVars})}}function m(){Dt.state.context={prev:Dt.state.context,vars:Dt.state.localVars},Dt.state.localVars=kt}function v(){Dt.state.localVars=Dt.state.context.vars,Dt.state.context=Dt.state.context.prev}function y(e,t){var n=function(){var n=Dt.state,r=n.indented;"stat"==n.lexical.type&&(r=n.lexical.indented),n.lexical=new c(r,Dt.stream.column(),e,null,n.lexical,t)};return n.lex=!0,n}function b(){var e=Dt.state;e.lexical.prev&&(")"==e.lexical.type&&(e.indented=e.lexical.indented),e.lexical=e.lexical.prev)}function x(e){function t(n){return n==e?p():";"==e?h():p(t)}return t}function w(e,t){return"var"==e?p(y("vardef",t.length),q,x(";"),b):"keyword a"==e?p(y("form"),S,w,b):"keyword b"==e?p(y("form"),w,b):"{"==e?p(y("}"),W,b):";"==e?p():"if"==e?("else"==Dt.state.lexical.info&&Dt.state.cc[Dt.state.cc.length-1]==b&&Dt.state.cc.pop()(),p(y("form"),S,w,b,G)):"function"==e?p(et):"for"==e?p(y("form"),J,w,b):"variable"==e?p(y("stat"),j):"switch"==e?p(y("form"),S,y("}","switch"),x("{"),W,b,b):"case"==e?p(S,x(":")):"default"==e?p(x(":")):"catch"==e?p(y("form"),m,x("("),tt,x(")"),w,b,v):"module"==e?p(y("form"),m,ot,v,b):"class"==e?p(y("form"),nt,it,b):"export"==e?p(y("form"),at,b):"import"==e?p(y("form"),st,b):h(y("stat"),S,x(";"),b)}function S(e){return T(e,!1)}function C(e){return T(e,!0)}function T(e,t){if(Dt.state.fatArrowAt==Dt.stream.start){var n=t?E:M;if("("==e)return p(m,y(")"),P(V,")"),b,x("=>"),n,v);if("variable"==e)return h(m,V,x("=>"),n,v)}var r=t?N:L;return Tt.hasOwnProperty(e)?p(r):"function"==e?p(et,r):"keyword c"==e?p(t?k:D):"("==e?p(y(")"),D,dt,x(")"),b,r):"operator"==e||"spread"==e?p(t?C:S):"["==e?p(y("]"),ct,b,r):"{"==e?F(I,"}",null,r):"quasi"==e?h(A,r):p()}function D(e){return e.match(/[;\}\)\],]/)?h():h(S)}function k(e){return e.match(/[;\}\)\],]/)?h():h(C)}function L(e,t){return","==e?p(S):N(e,t,!1)}function N(e,t,n){var r=0==n?L:N,i=0==n?S:C;return"=>"==t?p(m,n?E:M,v):"operator"==e?/\+\+|--/.test(t)?p(r):"?"==t?p(S,x(":"),i):p(i):"quasi"==e?h(A,r):";"!=e?"("==e?F(C,")","call",r):"."==e?p(H,r):"["==e?p(y("]"),D,x("]"),b,r):void 0:void 0}function A(e,t){return"quasi"!=e?h():"${"!=t.slice(t.length-2)?p(A):p(S,_)}function _(e){return"}"==e?(Dt.marked="string-2",Dt.state.tokenize=l,p(A)):void 0}function M(e){return u(Dt.stream,Dt.state),h("{"==e?w:S)}function E(e){return u(Dt.stream,Dt.state),h("{"==e?w:C)}function j(e){return":"==e?p(b,w):h(L,x(";"),b)}function H(e){return"variable"==e?(Dt.marked="property",p()):void 0}function I(e,t){if("variable"==e){if(Dt.marked="property","get"==t||"set"==t)return p(O)}else if("number"==e||"string"==e)Dt.marked=vt?"property":e+" property";else if("["==e)return p(S,x("]"),R);return Tt.hasOwnProperty(e)?p(R):void 0}function O(e){return"variable"!=e?h(R):(Dt.marked="property",p(et))}function R(e){return":"==e?p(C):"("==e?h(et):void 0}function P(e,t){function n(r){if(","==r){var i=Dt.state.lexical;return"call"==i.info&&(i.pos=(i.pos||0)+1),p(e,n)}return r==t?p():p(x(t))}return function(r){return r==t?p():h(e,n)}}function F(e,t,n){for(var r=3;r<arguments.length;r++)Dt.cc.push(arguments[r]);return p(y(t,n),P(e,t),b)}function W(e){return"}"==e?p():h(w,W)}function z(e){return bt&&":"==e?p(B):void 0}function B(e){return"variable"==e?(Dt.marked="variable-3",p()):void 0}function q(){return h(V,z,X,$)}function V(e,t){return"variable"==e?(g(t),p()):"["==e?F(V,"]"):"{"==e?F(U,"}"):void 0}function U(e,t){return"variable"!=e||Dt.stream.match(/^\s*:/,!1)?("variable"==e&&(Dt.marked="property"),p(x(":"),V,X)):(g(t),p(X))}function X(e,t){return"="==t?p(C):void 0}function $(e){return","==e?p(q):void 0}function G(e,t){return"keyword b"==e&&"else"==t?p(y("form","else"),w,b):void 0}function J(e){return"("==e?p(y(")"),Y,x(")"),b):void 0}function Y(e){return"var"==e?p(q,x(";"),Q):";"==e?p(Q):"variable"==e?p(K):h(S,x(";"),Q)}function K(e,t){return"in"==t||"of"==t?(Dt.marked="keyword",p(S)):p(L,Q)}function Q(e,t){return";"==e?p(Z):"in"==t||"of"==t?(Dt.marked="keyword",p(S)):h(S,x(";"),Z)}function Z(e){")"!=e&&p(S)}function et(e,t){return"*"==t?(Dt.marked="keyword",p(et)):"variable"==e?(g(t),p(et)):"("==e?p(m,y(")"),P(tt,")"),b,w,v):void 0}function tt(e){return"spread"==e?p(tt):h(V,z)}function nt(e,t){return"variable"==e?(g(t),p(rt)):void 0}function rt(e,t){return"extends"==t?p(S):void 0}function it(e){return"{"==e?F(I,"}"):void 0}function ot(e,t){return"string"==e?p(w):"variable"==e?(g(t),p(ut)):void 0}function at(e,t){return"*"==t?(Dt.marked="keyword",p(ut,x(";"))):"default"==t?(Dt.marked="keyword",p(S,x(";"))):h(w)}function st(e){return"string"==e?p():h(lt,ut)}function lt(e,t){return"{"==e?F(lt,"}"):("variable"==e&&g(t),p())}function ut(e,t){return"from"==t?(Dt.marked="keyword",p(S)):void 0}function ct(e){return"]"==e?p():h(C,ft)}function ft(e){return"for"==e?h(dt,x("]")):","==e?p(P(C,"]")):h(P(C,"]"))}function dt(e){return"for"==e?p(J,dt):"if"==e?p(S,dt):void 0}var ht,pt,gt=t.indentUnit,mt=n.statementIndent,vt=n.jsonld,yt=n.json||vt,bt=n.typescript,xt=function(){function e(e){return{type:e,style:"keyword"}}var t=e("keyword a"),n=e("keyword b"),r=e("keyword c"),i=e("operator"),o={type:"atom",style:"atom"},a={"if":e("if"),"while":t,"with":t,"else":n,"do":n,"try":n,"finally":n,"return":r,"break":r,"continue":r,"new":r,"delete":r,"throw":r,"debugger":r,"var":e("var"),"const":e("var"),let:e("var"),"function":e("function"),"catch":e("catch"),"for":e("for"),"switch":e("switch"),"case":e("case"),"default":e("default"),"in":i,"typeof":i,"instanceof":i,"true":o,"false":o,"null":o,undefined:o,NaN:o,Infinity:o,"this":e("this"),module:e("module"),"class":e("class"),"super":e("atom"),"yield":r,"export":e("export"),"import":e("import"),"extends":r};if(bt){var s={type:"variable",style:"variable-3"},l={"interface":e("interface"),"extends":e("extends"),constructor:e("constructor"),"public":e("public"),"private":e("private"),"protected":e("protected"),"static":e("static"),string:s,number:s,bool:s,any:s}; for(var u in l)a[u]=l[u]}return a}(),wt=/[+\-*&%=<>!?|~^]/,St=/^@(context|id|value|language|type|container|list|set|reverse|index|base|vocab|graph)"/,Ct="([{}])",Tt={atom:!0,number:!0,variable:!0,string:!0,regexp:!0,"this":!0,"jsonld-keyword":!0},Dt={state:null,column:null,marked:null,cc:null},kt={name:"this",next:{name:"arguments"}};return b.lex=!0,{startState:function(e){var t={tokenize:o,lastType:"sof",cc:[],lexical:new c((e||0)-gt,0,"block",!1),localVars:n.localVars,context:n.localVars&&{vars:n.localVars},indented:0};return n.globalVars&&"object"==typeof n.globalVars&&(t.globalVars=n.globalVars),t},token:function(e,t){if(e.sol()&&(t.lexical.hasOwnProperty("align")||(t.lexical.align=!1),t.indented=e.indentation(),u(e,t)),t.tokenize!=s&&e.eatSpace())return null;var n=t.tokenize(e,t);return"comment"==ht?n:(t.lastType="operator"!=ht||"++"!=pt&&"--"!=pt?ht:"incdec",d(t,n,ht,pt,e))},indent:function(t,r){if(t.tokenize==s)return e.Pass;if(t.tokenize!=o)return 0;var i=r&&r.charAt(0),a=t.lexical;if(!/^\s*else\b/.test(r))for(var l=t.cc.length-1;l>=0;--l){var u=t.cc[l];if(u==b)a=a.prev;else if(u!=G)break}"stat"==a.type&&"}"==i&&(a=a.prev),mt&&")"==a.type&&"stat"==a.prev.type&&(a=a.prev);var c=a.type,f=i==c;return"vardef"==c?a.indented+("operator"==t.lastType||","==t.lastType?a.info+1:0):"form"==c&&"{"==i?a.indented:"form"==c?a.indented+gt:"stat"==c?a.indented+("operator"==t.lastType||","==t.lastType?mt||gt:0):"switch"!=a.info||f||0==n.doubleIndentSwitch?a.align?a.column+(f?0:1):a.indented+(f?0:gt):a.indented+(/^(?:case|default)\b/.test(r)?gt:2*gt)},electricChars:":{}",blockCommentStart:yt?null:"/*",blockCommentEnd:yt?null:"*/",lineComment:yt?null:"//",fold:"brace",helperType:yt?"json":"javascript",jsonldMode:vt,jsonMode:yt}}),e.registerHelper("wordChars","javascript",/[\\w$]/),e.defineMIME("text/javascript","javascript"),e.defineMIME("text/ecmascript","javascript"),e.defineMIME("application/javascript","javascript"),e.defineMIME("application/ecmascript","javascript"),e.defineMIME("application/json",{name:"javascript",json:!0}),e.defineMIME("application/x-json",{name:"javascript",json:!0}),e.defineMIME("application/ld+json",{name:"javascript",jsonld:!0}),e.defineMIME("text/typescript",{name:"javascript",typescript:!0}),e.defineMIME("application/typescript",{name:"javascript",typescript:!0})})},{"../../lib/codemirror":4}],6:[function(t,n,r){!function(i){"object"==typeof r&&"object"==typeof n?i(t("../../lib/codemirror")):"function"==typeof e&&e.amd?e(["../../lib/codemirror"],i):i(CodeMirror)}(function(e){"use strict";e.defineMode("xml",function(t,n){function r(e,t){function n(n){return t.tokenize=n,n(e,t)}var r=e.next();if("<"==r)return e.eat("!")?e.eat("[")?e.match("CDATA[")?n(a("atom","]]>")):null:e.match("--")?n(a("comment","-->")):e.match("DOCTYPE",!0,!0)?(e.eatWhile(/[\w\._\-]/),n(s(1))):null:e.eat("?")?(e.eatWhile(/[\w\._\-]/),t.tokenize=a("meta","?>"),"meta"):(C=e.eat("/")?"closeTag":"openTag",t.tokenize=i,"tag bracket");if("&"==r){var o;return o=e.eat("#")?e.eat("x")?e.eatWhile(/[a-fA-F\d]/)&&e.eat(";"):e.eatWhile(/[\d]/)&&e.eat(";"):e.eatWhile(/[\w\.\-:]/)&&e.eat(";"),o?"atom":"error"}return e.eatWhile(/[^&<]/),null}function i(e,t){var n=e.next();if(">"==n||"/"==n&&e.eat(">"))return t.tokenize=r,C=">"==n?"endTag":"selfcloseTag","tag bracket";if("="==n)return C="equals",null;if("<"==n){t.tokenize=r,t.state=f,t.tagName=t.tagStart=null;var i=t.tokenize(e,t);return i?i+" tag error":"tag error"}return/[\'\"]/.test(n)?(t.tokenize=o(n),t.stringStartCol=e.column(),t.tokenize(e,t)):(e.match(/^[^\s\u00a0=<>\"\']*[^\s\u00a0=<>\"\'\/]/),"word")}function o(e){var t=function(t,n){for(;!t.eol();)if(t.next()==e){n.tokenize=i;break}return"string"};return t.isInAttribute=!0,t}function a(e,t){return function(n,i){for(;!n.eol();){if(n.match(t)){i.tokenize=r;break}n.next()}return e}}function s(e){return function(t,n){for(var i;null!=(i=t.next());){if("<"==i)return n.tokenize=s(e+1),n.tokenize(t,n);if(">"==i){if(1==e){n.tokenize=r;break}return n.tokenize=s(e-1),n.tokenize(t,n)}}return"meta"}}function l(e,t,n){this.prev=e.context,this.tagName=t,this.indent=e.indented,this.startOfLine=n,(D.doNotIndent.hasOwnProperty(t)||e.context&&e.context.noIndent)&&(this.noIndent=!0)}function u(e){e.context&&(e.context=e.context.prev)}function c(e,t){for(var n;;){if(!e.context)return;if(n=e.context.tagName,!D.contextGrabbers.hasOwnProperty(n)||!D.contextGrabbers[n].hasOwnProperty(t))return;u(e)}}function f(e,t,n){return"openTag"==e?(n.tagStart=t.column(),d):"closeTag"==e?h:f}function d(e,t,n){return"word"==e?(n.tagName=t.current(),T="tag",m):(T="error",d)}function h(e,t,n){if("word"==e){var r=t.current();return n.context&&n.context.tagName!=r&&D.implicitlyClosed.hasOwnProperty(n.context.tagName)&&u(n),n.context&&n.context.tagName==r?(T="tag",p):(T="tag error",g)}return T="error",g}function p(e,t,n){return"endTag"!=e?(T="error",p):(u(n),f)}function g(e,t,n){return T="error",p(e,t,n)}function m(e,t,n){if("word"==e)return T="attribute",v;if("endTag"==e||"selfcloseTag"==e){var r=n.tagName,i=n.tagStart;return n.tagName=n.tagStart=null,"selfcloseTag"==e||D.autoSelfClosers.hasOwnProperty(r)?c(n,r):(c(n,r),n.context=new l(n,r,i==n.indented)),f}return T="error",m}function v(e,t,n){return"equals"==e?y:(D.allowMissing||(T="error"),m(e,t,n))}function y(e,t,n){return"string"==e?b:"word"==e&&D.allowUnquoted?(T="string",m):(T="error",m(e,t,n))}function b(e,t,n){return"string"==e?b:m(e,t,n)}var x=t.indentUnit,w=n.multilineTagIndentFactor||1,S=n.multilineTagIndentPastTag;null==S&&(S=!0);var C,T,D=n.htmlMode?{autoSelfClosers:{area:!0,base:!0,br:!0,col:!0,command:!0,embed:!0,frame:!0,hr:!0,img:!0,input:!0,keygen:!0,link:!0,meta:!0,param:!0,source:!0,track:!0,wbr:!0},implicitlyClosed:{dd:!0,li:!0,optgroup:!0,option:!0,p:!0,rp:!0,rt:!0,tbody:!0,td:!0,tfoot:!0,th:!0,tr:!0},contextGrabbers:{dd:{dd:!0,dt:!0},dt:{dd:!0,dt:!0},li:{li:!0},option:{option:!0,optgroup:!0},optgroup:{optgroup:!0},p:{address:!0,article:!0,aside:!0,blockquote:!0,dir:!0,div:!0,dl:!0,fieldset:!0,footer:!0,form:!0,h1:!0,h2:!0,h3:!0,h4:!0,h5:!0,h6:!0,header:!0,hgroup:!0,hr:!0,menu:!0,nav:!0,ol:!0,p:!0,pre:!0,section:!0,table:!0,ul:!0},rp:{rp:!0,rt:!0},rt:{rp:!0,rt:!0},tbody:{tbody:!0,tfoot:!0},td:{td:!0,th:!0},tfoot:{tbody:!0},th:{td:!0,th:!0},thead:{tbody:!0,tfoot:!0},tr:{tr:!0}},doNotIndent:{pre:!0},allowUnquoted:!0,allowMissing:!0,caseFold:!0}:{autoSelfClosers:{},implicitlyClosed:{},contextGrabbers:{},doNotIndent:{},allowUnquoted:!1,allowMissing:!1,caseFold:!1},k=n.alignCDATA;return{startState:function(){return{tokenize:r,state:f,indented:0,tagName:null,tagStart:null,context:null}},token:function(e,t){if(!t.tagName&&e.sol()&&(t.indented=e.indentation()),e.eatSpace())return null;C=null;var n=t.tokenize(e,t);return(n||C)&&"comment"!=n&&(T=null,t.state=t.state(C||n,e,t),T&&(n="error"==T?n+" error":T)),n},indent:function(t,n,o){var a=t.context;if(t.tokenize.isInAttribute)return t.tagStart==t.indented?t.stringStartCol+1:t.indented+x;if(a&&a.noIndent)return e.Pass;if(t.tokenize!=i&&t.tokenize!=r)return o?o.match(/^(\s*)/)[0].length:0;if(t.tagName)return S?t.tagStart+t.tagName.length+2:t.tagStart+x*w;if(k&&/<!\[CDATA\[/.test(n))return 0;var s=n&&/^<(\/)?([\w_:\.-]*)/.exec(n);if(s&&s[1])for(;a;){if(a.tagName==s[2]){a=a.prev;break}if(!D.implicitlyClosed.hasOwnProperty(a.tagName))break;a=a.prev}else if(s)for(;a;){var l=D.contextGrabbers[a.tagName];if(!l||!l.hasOwnProperty(s[2]))break;a=a.prev}for(;a&&!a.startOfLine;)a=a.prev;return a?a.indent+x:0},electricInput:/<\/[\s\w:]+>$/,blockCommentStart:"<!--",blockCommentEnd:"-->",configuration:n.htmlMode?"html":"xml",helperType:n.htmlMode?"html":"xml"}}),e.defineMIME("text/xml","xml"),e.defineMIME("application/xml","xml"),e.mimeModes.hasOwnProperty("text/html")||e.defineMIME("text/html",{name:"xml",htmlMode:!0})})},{"../../lib/codemirror":4}],7:[function(t,n){!function(e,t){"object"==typeof n&&"object"==typeof n.exports?n.exports=e.document?t(e,!0):function(e){if(!e.document)throw new Error("jQuery requires a window with a document");return t(e)}:t(e)}("undefined"!=typeof window?window:this,function(t,n){function r(e){var t=e.length,n=ot.type(e);return"function"===n||ot.isWindow(e)?!1:1===e.nodeType&&t?!0:"array"===n||0===t||"number"==typeof t&&t>0&&t-1 in e}function i(e,t,n){if(ot.isFunction(t))return ot.grep(e,function(e,r){return!!t.call(e,r,e)!==n});if(t.nodeType)return ot.grep(e,function(e){return e===t!==n});if("string"==typeof t){if(ht.test(t))return ot.filter(t,e,n);t=ot.filter(t,e)}return ot.grep(e,function(e){return ot.inArray(e,t)>=0!==n})}function o(e,t){do e=e[t];while(e&&1!==e.nodeType);return e}function a(e){var t=wt[e]={};return ot.each(e.match(xt)||[],function(e,n){t[n]=!0}),t}function s(){gt.addEventListener?(gt.removeEventListener("DOMContentLoaded",l,!1),t.removeEventListener("load",l,!1)):(gt.detachEvent("onreadystatechange",l),t.detachEvent("onload",l))}function l(){(gt.addEventListener||"load"===event.type||"complete"===gt.readyState)&&(s(),ot.ready())}function u(e,t,n){if(void 0===n&&1===e.nodeType){var r="data-"+t.replace(kt,"-$1").toLowerCase();if(n=e.getAttribute(r),"string"==typeof n){try{n="true"===n?!0:"false"===n?!1:"null"===n?null:+n+""===n?+n:Dt.test(n)?ot.parseJSON(n):n}catch(i){}ot.data(e,t,n)}else n=void 0}return n}function c(e){var t;for(t in e)if(("data"!==t||!ot.isEmptyObject(e[t]))&&"toJSON"!==t)return!1;return!0}function f(e,t,n,r){if(ot.acceptData(e)){var i,o,a=ot.expando,s=e.nodeType,l=s?ot.cache:e,u=s?e[a]:e[a]&&a;if(u&&l[u]&&(r||l[u].data)||void 0!==n||"string"!=typeof t)return u||(u=s?e[a]=J.pop()||ot.guid++:a),l[u]||(l[u]=s?{}:{toJSON:ot.noop}),("object"==typeof t||"function"==typeof t)&&(r?l[u]=ot.extend(l[u],t):l[u].data=ot.extend(l[u].data,t)),o=l[u],r||(o.data||(o.data={}),o=o.data),void 0!==n&&(o[ot.camelCase(t)]=n),"string"==typeof t?(i=o[t],null==i&&(i=o[ot.camelCase(t)])):i=o,i}}function d(e,t,n){if(ot.acceptData(e)){var r,i,o=e.nodeType,a=o?ot.cache:e,s=o?e[ot.expando]:ot.expando;if(a[s]){if(t&&(r=n?a[s]:a[s].data)){ot.isArray(t)?t=t.concat(ot.map(t,ot.camelCase)):t in r?t=[t]:(t=ot.camelCase(t),t=t in r?[t]:t.split(" ")),i=t.length;for(;i--;)delete r[t[i]];if(n?!c(r):!ot.isEmptyObject(r))return}(n||(delete a[s].data,c(a[s])))&&(o?ot.cleanData([e],!0):rt.deleteExpando||a!=a.window?delete a[s]:a[s]=null)}}}function h(){return!0}function p(){return!1}function g(){try{return gt.activeElement}catch(e){}}function m(e){var t=Rt.split("|"),n=e.createDocumentFragment();if(n.createElement)for(;t.length;)n.createElement(t.pop());return n}function v(e,t){var n,r,i=0,o=typeof e.getElementsByTagName!==Tt?e.getElementsByTagName(t||"*"):typeof e.querySelectorAll!==Tt?e.querySelectorAll(t||"*"):void 0;if(!o)for(o=[],n=e.childNodes||e;null!=(r=n[i]);i++)!t||ot.nodeName(r,t)?o.push(r):ot.merge(o,v(r,t));return void 0===t||t&&ot.nodeName(e,t)?ot.merge([e],o):o}function y(e){Mt.test(e.type)&&(e.defaultChecked=e.checked)}function b(e,t){return ot.nodeName(e,"table")&&ot.nodeName(11!==t.nodeType?t:t.firstChild,"tr")?e.getElementsByTagName("tbody")[0]||e.appendChild(e.ownerDocument.createElement("tbody")):e}function x(e){return e.type=(null!==ot.find.attr(e,"type"))+"/"+e.type,e}function w(e){var t=Gt.exec(e.type);return t?e.type=t[1]:e.removeAttribute("type"),e}function S(e,t){for(var n,r=0;null!=(n=e[r]);r++)ot._data(n,"globalEval",!t||ot._data(t[r],"globalEval"))}function C(e,t){if(1===t.nodeType&&ot.hasData(e)){var n,r,i,o=ot._data(e),a=ot._data(t,o),s=o.events;if(s){delete a.handle,a.events={};for(n in s)for(r=0,i=s[n].length;i>r;r++)ot.event.add(t,n,s[n][r])}a.data&&(a.data=ot.extend({},a.data))}}function T(e,t){var n,r,i;if(1===t.nodeType){if(n=t.nodeName.toLowerCase(),!rt.noCloneEvent&&t[ot.expando]){i=ot._data(t);for(r in i.events)ot.removeEvent(t,r,i.handle);t.removeAttribute(ot.expando)}"script"===n&&t.text!==e.text?(x(t).text=e.text,w(t)):"object"===n?(t.parentNode&&(t.outerHTML=e.outerHTML),rt.html5Clone&&e.innerHTML&&!ot.trim(t.innerHTML)&&(t.innerHTML=e.innerHTML)):"input"===n&&Mt.test(e.type)?(t.defaultChecked=t.checked=e.checked,t.value!==e.value&&(t.value=e.value)):"option"===n?t.defaultSelected=t.selected=e.defaultSelected:("input"===n||"textarea"===n)&&(t.defaultValue=e.defaultValue)}}function D(e,n){var r,i=ot(n.createElement(e)).appendTo(n.body),o=t.getDefaultComputedStyle&&(r=t.getDefaultComputedStyle(i[0]))?r.display:ot.css(i[0],"display");return i.detach(),o}function k(e){var t=gt,n=en[e];return n||(n=D(e,t),"none"!==n&&n||(Zt=(Zt||ot("<iframe frameborder='0' width='0' height='0'/>")).appendTo(t.documentElement),t=(Zt[0].contentWindow||Zt[0].contentDocument).document,t.write(),t.close(),n=D(e,t),Zt.detach()),en[e]=n),n}function L(e,t){return{get:function(){var n=e();if(null!=n)return n?void delete this.get:(this.get=t).apply(this,arguments)}}}function N(e,t){if(t in e)return t;for(var n=t.charAt(0).toUpperCase()+t.slice(1),r=t,i=pn.length;i--;)if(t=pn[i]+n,t in e)return t;return r}function A(e,t){for(var n,r,i,o=[],a=0,s=e.length;s>a;a++)r=e[a],r.style&&(o[a]=ot._data(r,"olddisplay"),n=r.style.display,t?(o[a]||"none"!==n||(r.style.display=""),""===r.style.display&&At(r)&&(o[a]=ot._data(r,"olddisplay",k(r.nodeName)))):(i=At(r),(n&&"none"!==n||!i)&&ot._data(r,"olddisplay",i?n:ot.css(r,"display"))));for(a=0;s>a;a++)r=e[a],r.style&&(t&&"none"!==r.style.display&&""!==r.style.display||(r.style.display=t?o[a]||"":"none"));return e}function _(e,t,n){var r=cn.exec(t);return r?Math.max(0,r[1]-(n||0))+(r[2]||"px"):t}function M(e,t,n,r,i){for(var o=n===(r?"border":"content")?4:"width"===t?1:0,a=0;4>o;o+=2)"margin"===n&&(a+=ot.css(e,n+Nt[o],!0,i)),r?("content"===n&&(a-=ot.css(e,"padding"+Nt[o],!0,i)),"margin"!==n&&(a-=ot.css(e,"border"+Nt[o]+"Width",!0,i))):(a+=ot.css(e,"padding"+Nt[o],!0,i),"padding"!==n&&(a+=ot.css(e,"border"+Nt[o]+"Width",!0,i)));return a}function E(e,t,n){var r=!0,i="width"===t?e.offsetWidth:e.offsetHeight,o=tn(e),a=rt.boxSizing&&"border-box"===ot.css(e,"boxSizing",!1,o);if(0>=i||null==i){if(i=nn(e,t,o),(0>i||null==i)&&(i=e.style[t]),on.test(i))return i;r=a&&(rt.boxSizingReliable()||i===e.style[t]),i=parseFloat(i)||0}return i+M(e,t,n||(a?"border":"content"),r,o)+"px"}function j(e,t,n,r,i){return new j.prototype.init(e,t,n,r,i)}function H(){return setTimeout(function(){gn=void 0}),gn=ot.now()}function I(e,t){var n,r={height:e},i=0;for(t=t?1:0;4>i;i+=2-t)n=Nt[i],r["margin"+n]=r["padding"+n]=e;return t&&(r.opacity=r.width=e),r}function O(e,t,n){for(var r,i=(wn[t]||[]).concat(wn["*"]),o=0,a=i.length;a>o;o++)if(r=i[o].call(n,t,e))return r}function R(e,t,n){var r,i,o,a,s,l,u,c,f=this,d={},h=e.style,p=e.nodeType&&At(e),g=ot._data(e,"fxshow");n.queue||(s=ot._queueHooks(e,"fx"),null==s.unqueued&&(s.unqueued=0,l=s.empty.fire,s.empty.fire=function(){s.unqueued||l()}),s.unqueued++,f.always(function(){f.always(function(){s.unqueued--,ot.queue(e,"fx").length||s.empty.fire()})})),1===e.nodeType&&("height"in t||"width"in t)&&(n.overflow=[h.overflow,h.overflowX,h.overflowY],u=ot.css(e,"display"),c="none"===u?ot._data(e,"olddisplay")||k(e.nodeName):u,"inline"===c&&"none"===ot.css(e,"float")&&(rt.inlineBlockNeedsLayout&&"inline"!==k(e.nodeName)?h.zoom=1:h.display="inline-block")),n.overflow&&(h.overflow="hidden",rt.shrinkWrapBlocks()||f.always(function(){h.overflow=n.overflow[0],h.overflowX=n.overflow[1],h.overflowY=n.overflow[2]}));for(r in t)if(i=t[r],vn.exec(i)){if(delete t[r],o=o||"toggle"===i,i===(p?"hide":"show")){if("show"!==i||!g||void 0===g[r])continue;p=!0}d[r]=g&&g[r]||ot.style(e,r)}else u=void 0;if(ot.isEmptyObject(d))"inline"===("none"===u?k(e.nodeName):u)&&(h.display=u);else{g?"hidden"in g&&(p=g.hidden):g=ot._data(e,"fxshow",{}),o&&(g.hidden=!p),p?ot(e).show():f.done(function(){ot(e).hide()}),f.done(function(){var t;ot._removeData(e,"fxshow");for(t in d)ot.style(e,t,d[t])});for(r in d)a=O(p?g[r]:0,r,f),r in g||(g[r]=a.start,p&&(a.end=a.start,a.start="width"===r||"height"===r?1:0))}}function P(e,t){var n,r,i,o,a;for(n in e)if(r=ot.camelCase(n),i=t[r],o=e[n],ot.isArray(o)&&(i=o[1],o=e[n]=o[0]),n!==r&&(e[r]=o,delete e[n]),a=ot.cssHooks[r],a&&"expand"in a){o=a.expand(o),delete e[r];for(n in o)n in e||(e[n]=o[n],t[n]=i)}else t[r]=i}function F(e,t,n){var r,i,o=0,a=xn.length,s=ot.Deferred().always(function(){delete l.elem}),l=function(){if(i)return!1;for(var t=gn||H(),n=Math.max(0,u.startTime+u.duration-t),r=n/u.duration||0,o=1-r,a=0,l=u.tweens.length;l>a;a++)u.tweens[a].run(o);return s.notifyWith(e,[u,o,n]),1>o&&l?n:(s.resolveWith(e,[u]),!1)},u=s.promise({elem:e,props:ot.extend({},t),opts:ot.extend(!0,{specialEasing:{}},n),originalProperties:t,originalOptions:n,startTime:gn||H(),duration:n.duration,tweens:[],createTween:function(t,n){var r=ot.Tween(e,u.opts,t,n,u.opts.specialEasing[t]||u.opts.easing);return u.tweens.push(r),r},stop:function(t){var n=0,r=t?u.tweens.length:0;if(i)return this;for(i=!0;r>n;n++)u.tweens[n].run(1);return t?s.resolveWith(e,[u,t]):s.rejectWith(e,[u,t]),this}}),c=u.props;for(P(c,u.opts.specialEasing);a>o;o++)if(r=xn[o].call(u,e,c,u.opts))return r;return ot.map(c,O,u),ot.isFunction(u.opts.start)&&u.opts.start.call(e,u),ot.fx.timer(ot.extend(l,{elem:e,anim:u,queue:u.opts.queue})),u.progress(u.opts.progress).done(u.opts.done,u.opts.complete).fail(u.opts.fail).always(u.opts.always)}function W(e){return function(t,n){"string"!=typeof t&&(n=t,t="*");var r,i=0,o=t.toLowerCase().match(xt)||[];if(ot.isFunction(n))for(;r=o[i++];)"+"===r.charAt(0)?(r=r.slice(1)||"*",(e[r]=e[r]||[]).unshift(n)):(e[r]=e[r]||[]).push(n)}}function z(e,t,n,r){function i(s){var l;return o[s]=!0,ot.each(e[s]||[],function(e,s){var u=s(t,n,r);return"string"!=typeof u||a||o[u]?a?!(l=u):void 0:(t.dataTypes.unshift(u),i(u),!1)}),l}var o={},a=e===Un;return i(t.dataTypes[0])||!o["*"]&&i("*")}function B(e,t){var n,r,i=ot.ajaxSettings.flatOptions||{};for(r in t)void 0!==t[r]&&((i[r]?e:n||(n={}))[r]=t[r]);return n&&ot.extend(!0,e,n),e}function q(e,t,n){for(var r,i,o,a,s=e.contents,l=e.dataTypes;"*"===l[0];)l.shift(),void 0===i&&(i=e.mimeType||t.getResponseHeader("Content-Type"));if(i)for(a in s)if(s[a]&&s[a].test(i)){l.unshift(a);break}if(l[0]in n)o=l[0];else{for(a in n){if(!l[0]||e.converters[a+" "+l[0]]){o=a;break}r||(r=a)}o=o||r}return o?(o!==l[0]&&l.unshift(o),n[o]):void 0}function V(e,t,n,r){var i,o,a,s,l,u={},c=e.dataTypes.slice();if(c[1])for(a in e.converters)u[a.toLowerCase()]=e.converters[a];for(o=c.shift();o;)if(e.responseFields[o]&&(n[e.responseFields[o]]=t),!l&&r&&e.dataFilter&&(t=e.dataFilter(t,e.dataType)),l=o,o=c.shift())if("*"===o)o=l;else if("*"!==l&&l!==o){if(a=u[l+" "+o]||u["* "+o],!a)for(i in u)if(s=i.split(" "),s[1]===o&&(a=u[l+" "+s[0]]||u["* "+s[0]])){a===!0?a=u[i]:u[i]!==!0&&(o=s[0],c.unshift(s[1]));break}if(a!==!0)if(a&&e["throws"])t=a(t);else try{t=a(t)}catch(f){return{state:"parsererror",error:a?f:"No conversion from "+l+" to "+o}}}return{state:"success",data:t}}function U(e,t,n,r){var i;if(ot.isArray(t))ot.each(t,function(t,i){n||Jn.test(e)?r(e,i):U(e+"["+("object"==typeof i?t:"")+"]",i,n,r)});else if(n||"object"!==ot.type(t))r(e,t);else for(i in t)U(e+"["+i+"]",t[i],n,r)}function X(){try{return new t.XMLHttpRequest}catch(e){}}function $(){try{return new t.ActiveXObject("Microsoft.XMLHTTP")}catch(e){}}function G(e){return ot.isWindow(e)?e:9===e.nodeType?e.defaultView||e.parentWindow:!1}var J=[],Y=J.slice,K=J.concat,Q=J.push,Z=J.indexOf,et={},tt=et.toString,nt=et.hasOwnProperty,rt={},it="1.11.1",ot=function(e,t){return new ot.fn.init(e,t)},at=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,st=/^-ms-/,lt=/-([\da-z])/gi,ut=function(e,t){return t.toUpperCase()};ot.fn=ot.prototype={jquery:it,constructor:ot,selector:"",length:0,toArray:function(){return Y.call(this)},get:function(e){return null!=e?0>e?this[e+this.length]:this[e]:Y.call(this)},pushStack:function(e){var t=ot.merge(this.constructor(),e);return t.prevObject=this,t.context=this.context,t},each:function(e,t){return ot.each(this,e,t)},map:function(e){return this.pushStack(ot.map(this,function(t,n){return e.call(t,n,t)}))},slice:function(){return this.pushStack(Y.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},eq:function(e){var t=this.length,n=+e+(0>e?t:0);return this.pushStack(n>=0&&t>n?[this[n]]:[])},end:function(){return this.prevObject||this.constructor(null)},push:Q,sort:J.sort,splice:J.splice},ot.extend=ot.fn.extend=function(){var e,t,n,r,i,o,a=arguments[0]||{},s=1,l=arguments.length,u=!1;for("boolean"==typeof a&&(u=a,a=arguments[s]||{},s++),"object"==typeof a||ot.isFunction(a)||(a={}),s===l&&(a=this,s--);l>s;s++)if(null!=(i=arguments[s]))for(r in i)e=a[r],n=i[r],a!==n&&(u&&n&&(ot.isPlainObject(n)||(t=ot.isArray(n)))?(t?(t=!1,o=e&&ot.isArray(e)?e:[]):o=e&&ot.isPlainObject(e)?e:{},a[r]=ot.extend(u,o,n)):void 0!==n&&(a[r]=n));return a},ot.extend({expando:"jQuery"+(it+Math.random()).replace(/\D/g,""),isReady:!0,error:function(e){throw new Error(e)},noop:function(){},isFunction:function(e){return"function"===ot.type(e)},isArray:Array.isArray||function(e){return"array"===ot.type(e)},isWindow:function(e){return null!=e&&e==e.window},isNumeric:function(e){return!ot.isArray(e)&&e-parseFloat(e)>=0},isEmptyObject:function(e){var t;for(t in e)return!1;return!0},isPlainObject:function(e){var t;if(!e||"object"!==ot.type(e)||e.nodeType||ot.isWindow(e))return!1;try{if(e.constructor&&!nt.call(e,"constructor")&&!nt.call(e.constructor.prototype,"isPrototypeOf"))return!1}catch(n){return!1}if(rt.ownLast)for(t in e)return nt.call(e,t);for(t in e);return void 0===t||nt.call(e,t)},type:function(e){return null==e?e+"":"object"==typeof e||"function"==typeof e?et[tt.call(e)]||"object":typeof e},globalEval:function(e){e&&ot.trim(e)&&(t.execScript||function(e){t.eval.call(t,e)})(e)},camelCase:function(e){return e.replace(st,"ms-").replace(lt,ut)},nodeName:function(e,t){return e.nodeName&&e.nodeName.toLowerCase()===t.toLowerCase()},each:function(e,t,n){var i,o=0,a=e.length,s=r(e);if(n){if(s)for(;a>o&&(i=t.apply(e[o],n),i!==!1);o++);else for(o in e)if(i=t.apply(e[o],n),i===!1)break}else if(s)for(;a>o&&(i=t.call(e[o],o,e[o]),i!==!1);o++);else for(o in e)if(i=t.call(e[o],o,e[o]),i===!1)break;return e},trim:function(e){return null==e?"":(e+"").replace(at,"")},makeArray:function(e,t){var n=t||[];return null!=e&&(r(Object(e))?ot.merge(n,"string"==typeof e?[e]:e):Q.call(n,e)),n},inArray:function(e,t,n){var r;if(t){if(Z)return Z.call(t,e,n);for(r=t.length,n=n?0>n?Math.max(0,r+n):n:0;r>n;n++)if(n in t&&t[n]===e)return n}return-1},merge:function(e,t){for(var n=+t.length,r=0,i=e.length;n>r;)e[i++]=t[r++];if(n!==n)for(;void 0!==t[r];)e[i++]=t[r++];return e.length=i,e},grep:function(e,t,n){for(var r,i=[],o=0,a=e.length,s=!n;a>o;o++)r=!t(e[o],o),r!==s&&i.push(e[o]);return i},map:function(e,t,n){var i,o=0,a=e.length,s=r(e),l=[];if(s)for(;a>o;o++)i=t(e[o],o,n),null!=i&&l.push(i);else for(o in e)i=t(e[o],o,n),null!=i&&l.push(i);return K.apply([],l)},guid:1,proxy:function(e,t){var n,r,i;return"string"==typeof t&&(i=e[t],t=e,e=i),ot.isFunction(e)?(n=Y.call(arguments,2),r=function(){return e.apply(t||this,n.concat(Y.call(arguments)))},r.guid=e.guid=e.guid||ot.guid++,r):void 0},now:function(){return+new Date},support:rt}),ot.each("Boolean Number String Function Array Date RegExp Object Error".split(" "),function(e,t){et["[object "+t+"]"]=t.toLowerCase()});var ct=function(e){function t(e,t,n,r){var i,o,a,s,l,u,f,h,p,g;if((t?t.ownerDocument||t:W)!==E&&M(t),t=t||E,n=n||[],!e||"string"!=typeof e)return n;if(1!==(s=t.nodeType)&&9!==s)return[];if(H&&!r){if(i=yt.exec(e))if(a=i[1]){if(9===s){if(o=t.getElementById(a),!o||!o.parentNode)return n;if(o.id===a)return n.push(o),n}else if(t.ownerDocument&&(o=t.ownerDocument.getElementById(a))&&P(t,o)&&o.id===a)return n.push(o),n}else{if(i[2])return Z.apply(n,t.getElementsByTagName(e)),n;if((a=i[3])&&w.getElementsByClassName&&t.getElementsByClassName)return Z.apply(n,t.getElementsByClassName(a)),n}if(w.qsa&&(!I||!I.test(e))){if(h=f=F,p=t,g=9===s&&e,1===s&&"object"!==t.nodeName.toLowerCase()){for(u=D(e),(f=t.getAttribute("id"))?h=f.replace(xt,"\\$&"):t.setAttribute("id",h),h="[id='"+h+"'] ",l=u.length;l--;)u[l]=h+d(u[l]);p=bt.test(e)&&c(t.parentNode)||t,g=u.join(",")}if(g)try{return Z.apply(n,p.querySelectorAll(g)),n}catch(m){}finally{f||t.removeAttribute("id")}}}return L(e.replace(lt,"$1"),t,n,r)}function n(){function e(n,r){return t.push(n+" ")>S.cacheLength&&delete e[t.shift()],e[n+" "]=r}var t=[];return e}function r(e){return e[F]=!0,e}function i(e){var t=E.createElement("div");try{return!!e(t)}catch(n){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function o(e,t){for(var n=e.split("|"),r=e.length;r--;)S.attrHandle[n[r]]=t}function a(e,t){var n=t&&e,r=n&&1===e.nodeType&&1===t.nodeType&&(~t.sourceIndex||G)-(~e.sourceIndex||G);if(r)return r;if(n)for(;n=n.nextSibling;)if(n===t)return-1;return e?1:-1}function s(e){return function(t){var n=t.nodeName.toLowerCase();return"input"===n&&t.type===e}}function l(e){return function(t){var n=t.nodeName.toLowerCase();return("input"===n||"button"===n)&&t.type===e}}function u(e){return r(function(t){return t=+t,r(function(n,r){for(var i,o=e([],n.length,t),a=o.length;a--;)n[i=o[a]]&&(n[i]=!(r[i]=n[i]))})})}function c(e){return e&&typeof e.getElementsByTagName!==$&&e}function f(){}function d(e){for(var t=0,n=e.length,r="";n>t;t++)r+=e[t].value;return r}function h(e,t,n){var r=t.dir,i=n&&"parentNode"===r,o=B++;return t.first?function(t,n,o){for(;t=t[r];)if(1===t.nodeType||i)return e(t,n,o)}:function(t,n,a){var s,l,u=[z,o];if(a){for(;t=t[r];)if((1===t.nodeType||i)&&e(t,n,a))return!0}else for(;t=t[r];)if(1===t.nodeType||i){if(l=t[F]||(t[F]={}),(s=l[r])&&s[0]===z&&s[1]===o)return u[2]=s[2];if(l[r]=u,u[2]=e(t,n,a))return!0}}}function p(e){return e.length>1?function(t,n,r){for(var i=e.length;i--;)if(!e[i](t,n,r))return!1;return!0}:e[0]}function g(e,n,r){for(var i=0,o=n.length;o>i;i++)t(e,n[i],r);return r}function m(e,t,n,r,i){for(var o,a=[],s=0,l=e.length,u=null!=t;l>s;s++)(o=e[s])&&(!n||n(o,r,i))&&(a.push(o),u&&t.push(s));return a}function v(e,t,n,i,o,a){return i&&!i[F]&&(i=v(i)),o&&!o[F]&&(o=v(o,a)),r(function(r,a,s,l){var u,c,f,d=[],h=[],p=a.length,v=r||g(t||"*",s.nodeType?[s]:s,[]),y=!e||!r&&t?v:m(v,d,e,s,l),b=n?o||(r?e:p||i)?[]:a:y;if(n&&n(y,b,s,l),i)for(u=m(b,h),i(u,[],s,l),c=u.length;c--;)(f=u[c])&&(b[h[c]]=!(y[h[c]]=f));if(r){if(o||e){if(o){for(u=[],c=b.length;c--;)(f=b[c])&&u.push(y[c]=f);o(null,b=[],u,l)}for(c=b.length;c--;)(f=b[c])&&(u=o?tt.call(r,f):d[c])>-1&&(r[u]=!(a[u]=f))}}else b=m(b===a?b.splice(p,b.length):b),o?o(null,a,b,l):Z.apply(a,b)})}function y(e){for(var t,n,r,i=e.length,o=S.relative[e[0].type],a=o||S.relative[" "],s=o?1:0,l=h(function(e){return e===t},a,!0),u=h(function(e){return tt.call(t,e)>-1},a,!0),c=[function(e,n,r){return!o&&(r||n!==N)||((t=n).nodeType?l(e,n,r):u(e,n,r))}];i>s;s++)if(n=S.relative[e[s].type])c=[h(p(c),n)];else{if(n=S.filter[e[s].type].apply(null,e[s].matches),n[F]){for(r=++s;i>r&&!S.relative[e[r].type];r++);return v(s>1&&p(c),s>1&&d(e.slice(0,s-1).concat({value:" "===e[s-2].type?"*":""})).replace(lt,"$1"),n,r>s&&y(e.slice(s,r)),i>r&&y(e=e.slice(r)),i>r&&d(e))}c.push(n)}return p(c)}function b(e,n){var i=n.length>0,o=e.length>0,a=function(r,a,s,l,u){var c,f,d,h=0,p="0",g=r&&[],v=[],y=N,b=r||o&&S.find.TAG("*",u),x=z+=null==y?1:Math.random()||.1,w=b.length;for(u&&(N=a!==E&&a);p!==w&&null!=(c=b[p]);p++){if(o&&c){for(f=0;d=e[f++];)if(d(c,a,s)){l.push(c);break}u&&(z=x)}i&&((c=!d&&c)&&h--,r&&g.push(c))}if(h+=p,i&&p!==h){for(f=0;d=n[f++];)d(g,v,a,s);if(r){if(h>0)for(;p--;)g[p]||v[p]||(v[p]=K.call(l));v=m(v)}Z.apply(l,v),u&&!r&&v.length>0&&h+n.length>1&&t.uniqueSort(l)}return u&&(z=x,N=y),g};return i?r(a):a}var x,w,S,C,T,D,k,L,N,A,_,M,E,j,H,I,O,R,P,F="sizzle"+-new Date,W=e.document,z=0,B=0,q=n(),V=n(),U=n(),X=function(e,t){return e===t&&(_=!0),0},$="undefined",G=1<<31,J={}.hasOwnProperty,Y=[],K=Y.pop,Q=Y.push,Z=Y.push,et=Y.slice,tt=Y.indexOf||function(e){for(var t=0,n=this.length;n>t;t++)if(this[t]===e)return t;return-1},nt="checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped",rt="[\\x20\\t\\r\\n\\f]",it="(?:\\\\.|[\\w-]|[^\\x00-\\xa0])+",ot=it.replace("w","w#"),at="\\["+rt+"*("+it+")(?:"+rt+"*([*^$|!~]?=)"+rt+"*(?:'((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\"|("+ot+"))|)"+rt+"*\\]",st=":("+it+")(?:\\((('((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\")|((?:\\\\.|[^\\\\()[\\]]|"+at+")*)|.*)\\)|)",lt=new RegExp("^"+rt+"+|((?:^|[^\\\\])(?:\\\\.)*)"+rt+"+$","g"),ut=new RegExp("^"+rt+"*,"+rt+"*"),ct=new RegExp("^"+rt+"*([>+~]|"+rt+")"+rt+"*"),ft=new RegExp("="+rt+"*([^\\]'\"]*?)"+rt+"*\\]","g"),dt=new RegExp(st),ht=new RegExp("^"+ot+"$"),pt={ID:new RegExp("^#("+it+")"),CLASS:new RegExp("^\\.("+it+")"),TAG:new RegExp("^("+it.replace("w","w*")+")"),ATTR:new RegExp("^"+at),PSEUDO:new RegExp("^"+st),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+rt+"*(even|odd|(([+-]|)(\\d*)n|)"+rt+"*(?:([+-]|)"+rt+"*(\\d+)|))"+rt+"*\\)|)","i"),bool:new RegExp("^(?:"+nt+")$","i"),needsContext:new RegExp("^"+rt+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+rt+"*((?:-\\d)?\\d*)"+rt+"*\\)|)(?=[^-]|$)","i")},gt=/^(?:input|select|textarea|button)$/i,mt=/^h\d$/i,vt=/^[^{]+\{\s*\[native \w/,yt=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,bt=/[+~]/,xt=/'|\\/g,wt=new RegExp("\\\\([\\da-f]{1,6}"+rt+"?|("+rt+")|.)","ig"),St=function(e,t,n){var r="0x"+t-65536;return r!==r||n?t:0>r?String.fromCharCode(r+65536):String.fromCharCode(r>>10|55296,1023&r|56320)};try{Z.apply(Y=et.call(W.childNodes),W.childNodes),Y[W.childNodes.length].nodeType}catch(Ct){Z={apply:Y.length?function(e,t){Q.apply(e,et.call(t))}:function(e,t){for(var n=e.length,r=0;e[n++]=t[r++];);e.length=n-1}}}w=t.support={},T=t.isXML=function(e){var t=e&&(e.ownerDocument||e).documentElement;return t?"HTML"!==t.nodeName:!1},M=t.setDocument=function(e){var t,n=e?e.ownerDocument||e:W,r=n.defaultView;return n!==E&&9===n.nodeType&&n.documentElement?(E=n,j=n.documentElement,H=!T(n),r&&r!==r.top&&(r.addEventListener?r.addEventListener("unload",function(){M()},!1):r.attachEvent&&r.attachEvent("onunload",function(){M()})),w.attributes=i(function(e){return e.className="i",!e.getAttribute("className")}),w.getElementsByTagName=i(function(e){return e.appendChild(n.createComment("")),!e.getElementsByTagName("*").length}),w.getElementsByClassName=vt.test(n.getElementsByClassName)&&i(function(e){return e.innerHTML="<div class='a'></div><div class='a i'></div>",e.firstChild.className="i",2===e.getElementsByClassName("i").length}),w.getById=i(function(e){return j.appendChild(e).id=F,!n.getElementsByName||!n.getElementsByName(F).length}),w.getById?(S.find.ID=function(e,t){if(typeof t.getElementById!==$&&H){var n=t.getElementById(e);return n&&n.parentNode?[n]:[]}},S.filter.ID=function(e){var t=e.replace(wt,St);return function(e){return e.getAttribute("id")===t}}):(delete S.find.ID,S.filter.ID=function(e){var t=e.replace(wt,St);return function(e){var n=typeof e.getAttributeNode!==$&&e.getAttributeNode("id");return n&&n.value===t}}),S.find.TAG=w.getElementsByTagName?function(e,t){return typeof t.getElementsByTagName!==$?t.getElementsByTagName(e):void 0}:function(e,t){var n,r=[],i=0,o=t.getElementsByTagName(e);if("*"===e){for(;n=o[i++];)1===n.nodeType&&r.push(n);return r}return o},S.find.CLASS=w.getElementsByClassName&&function(e,t){return typeof t.getElementsByClassName!==$&&H?t.getElementsByClassName(e):void 0},O=[],I=[],(w.qsa=vt.test(n.querySelectorAll))&&(i(function(e){e.innerHTML="<select msallowclip=''><option selected=''></option></select>",e.querySelectorAll("[msallowclip^='']").length&&I.push("[*^$]="+rt+"*(?:''|\"\")"),e.querySelectorAll("[selected]").length||I.push("\\["+rt+"*(?:value|"+nt+")"),e.querySelectorAll(":checked").length||I.push(":checked")}),i(function(e){var t=n.createElement("input");t.setAttribute("type","hidden"),e.appendChild(t).setAttribute("name","D"),e.querySelectorAll("[name=d]").length&&I.push("name"+rt+"*[*^$|!~]?="),e.querySelectorAll(":enabled").length||I.push(":enabled",":disabled"),e.querySelectorAll("*,:x"),I.push(",.*:") })),(w.matchesSelector=vt.test(R=j.matches||j.webkitMatchesSelector||j.mozMatchesSelector||j.oMatchesSelector||j.msMatchesSelector))&&i(function(e){w.disconnectedMatch=R.call(e,"div"),R.call(e,"[s!='']:x"),O.push("!=",st)}),I=I.length&&new RegExp(I.join("|")),O=O.length&&new RegExp(O.join("|")),t=vt.test(j.compareDocumentPosition),P=t||vt.test(j.contains)?function(e,t){var n=9===e.nodeType?e.documentElement:e,r=t&&t.parentNode;return e===r||!(!r||1!==r.nodeType||!(n.contains?n.contains(r):e.compareDocumentPosition&&16&e.compareDocumentPosition(r)))}:function(e,t){if(t)for(;t=t.parentNode;)if(t===e)return!0;return!1},X=t?function(e,t){if(e===t)return _=!0,0;var r=!e.compareDocumentPosition-!t.compareDocumentPosition;return r?r:(r=(e.ownerDocument||e)===(t.ownerDocument||t)?e.compareDocumentPosition(t):1,1&r||!w.sortDetached&&t.compareDocumentPosition(e)===r?e===n||e.ownerDocument===W&&P(W,e)?-1:t===n||t.ownerDocument===W&&P(W,t)?1:A?tt.call(A,e)-tt.call(A,t):0:4&r?-1:1)}:function(e,t){if(e===t)return _=!0,0;var r,i=0,o=e.parentNode,s=t.parentNode,l=[e],u=[t];if(!o||!s)return e===n?-1:t===n?1:o?-1:s?1:A?tt.call(A,e)-tt.call(A,t):0;if(o===s)return a(e,t);for(r=e;r=r.parentNode;)l.unshift(r);for(r=t;r=r.parentNode;)u.unshift(r);for(;l[i]===u[i];)i++;return i?a(l[i],u[i]):l[i]===W?-1:u[i]===W?1:0},n):E},t.matches=function(e,n){return t(e,null,null,n)},t.matchesSelector=function(e,n){if((e.ownerDocument||e)!==E&&M(e),n=n.replace(ft,"='$1']"),!(!w.matchesSelector||!H||O&&O.test(n)||I&&I.test(n)))try{var r=R.call(e,n);if(r||w.disconnectedMatch||e.document&&11!==e.document.nodeType)return r}catch(i){}return t(n,E,null,[e]).length>0},t.contains=function(e,t){return(e.ownerDocument||e)!==E&&M(e),P(e,t)},t.attr=function(e,t){(e.ownerDocument||e)!==E&&M(e);var n=S.attrHandle[t.toLowerCase()],r=n&&J.call(S.attrHandle,t.toLowerCase())?n(e,t,!H):void 0;return void 0!==r?r:w.attributes||!H?e.getAttribute(t):(r=e.getAttributeNode(t))&&r.specified?r.value:null},t.error=function(e){throw new Error("Syntax error, unrecognized expression: "+e)},t.uniqueSort=function(e){var t,n=[],r=0,i=0;if(_=!w.detectDuplicates,A=!w.sortStable&&e.slice(0),e.sort(X),_){for(;t=e[i++];)t===e[i]&&(r=n.push(i));for(;r--;)e.splice(n[r],1)}return A=null,e},C=t.getText=function(e){var t,n="",r=0,i=e.nodeType;if(i){if(1===i||9===i||11===i){if("string"==typeof e.textContent)return e.textContent;for(e=e.firstChild;e;e=e.nextSibling)n+=C(e)}else if(3===i||4===i)return e.nodeValue}else for(;t=e[r++];)n+=C(t);return n},S=t.selectors={cacheLength:50,createPseudo:r,match:pt,attrHandle:{},find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(wt,St),e[3]=(e[3]||e[4]||e[5]||"").replace(wt,St),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||t.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&t.error(e[0]),e},PSEUDO:function(e){var t,n=!e[6]&&e[2];return pt.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||"":n&&dt.test(n)&&(t=D(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(wt,St).toLowerCase();return"*"===e?function(){return!0}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},CLASS:function(e){var t=q[e+" "];return t||(t=new RegExp("(^|"+rt+")"+e+"("+rt+"|$)"))&&q(e,function(e){return t.test("string"==typeof e.className&&e.className||typeof e.getAttribute!==$&&e.getAttribute("class")||"")})},ATTR:function(e,n,r){return function(i){var o=t.attr(i,e);return null==o?"!="===n:n?(o+="","="===n?o===r:"!="===n?o!==r:"^="===n?r&&0===o.indexOf(r):"*="===n?r&&o.indexOf(r)>-1:"$="===n?r&&o.slice(-r.length)===r:"~="===n?(" "+o+" ").indexOf(r)>-1:"|="===n?o===r||o.slice(0,r.length+1)===r+"-":!1):!0}},CHILD:function(e,t,n,r,i){var o="nth"!==e.slice(0,3),a="last"!==e.slice(-4),s="of-type"===t;return 1===r&&0===i?function(e){return!!e.parentNode}:function(t,n,l){var u,c,f,d,h,p,g=o!==a?"nextSibling":"previousSibling",m=t.parentNode,v=s&&t.nodeName.toLowerCase(),y=!l&&!s;if(m){if(o){for(;g;){for(f=t;f=f[g];)if(s?f.nodeName.toLowerCase()===v:1===f.nodeType)return!1;p=g="only"===e&&!p&&"nextSibling"}return!0}if(p=[a?m.firstChild:m.lastChild],a&&y){for(c=m[F]||(m[F]={}),u=c[e]||[],h=u[0]===z&&u[1],d=u[0]===z&&u[2],f=h&&m.childNodes[h];f=++h&&f&&f[g]||(d=h=0)||p.pop();)if(1===f.nodeType&&++d&&f===t){c[e]=[z,h,d];break}}else if(y&&(u=(t[F]||(t[F]={}))[e])&&u[0]===z)d=u[1];else for(;(f=++h&&f&&f[g]||(d=h=0)||p.pop())&&((s?f.nodeName.toLowerCase()!==v:1!==f.nodeType)||!++d||(y&&((f[F]||(f[F]={}))[e]=[z,d]),f!==t)););return d-=i,d===r||d%r===0&&d/r>=0}}},PSEUDO:function(e,n){var i,o=S.pseudos[e]||S.setFilters[e.toLowerCase()]||t.error("unsupported pseudo: "+e);return o[F]?o(n):o.length>1?(i=[e,e,"",n],S.setFilters.hasOwnProperty(e.toLowerCase())?r(function(e,t){for(var r,i=o(e,n),a=i.length;a--;)r=tt.call(e,i[a]),e[r]=!(t[r]=i[a])}):function(e){return o(e,0,i)}):o}},pseudos:{not:r(function(e){var t=[],n=[],i=k(e.replace(lt,"$1"));return i[F]?r(function(e,t,n,r){for(var o,a=i(e,null,r,[]),s=e.length;s--;)(o=a[s])&&(e[s]=!(t[s]=o))}):function(e,r,o){return t[0]=e,i(t,null,o,n),!n.pop()}}),has:r(function(e){return function(n){return t(e,n).length>0}}),contains:r(function(e){return function(t){return(t.textContent||t.innerText||C(t)).indexOf(e)>-1}}),lang:r(function(e){return ht.test(e||"")||t.error("unsupported lang: "+e),e=e.replace(wt,St).toLowerCase(),function(t){var n;do if(n=H?t.lang:t.getAttribute("xml:lang")||t.getAttribute("lang"))return n=n.toLowerCase(),n===e||0===n.indexOf(e+"-");while((t=t.parentNode)&&1===t.nodeType);return!1}}),target:function(t){var n=e.location&&e.location.hash;return n&&n.slice(1)===t.id},root:function(e){return e===j},focus:function(e){return e===E.activeElement&&(!E.hasFocus||E.hasFocus())&&!!(e.type||e.href||~e.tabIndex)},enabled:function(e){return e.disabled===!1},disabled:function(e){return e.disabled===!0},checked:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&!!e.checked||"option"===t&&!!e.selected},selected:function(e){return e.parentNode&&e.parentNode.selectedIndex,e.selected===!0},empty:function(e){for(e=e.firstChild;e;e=e.nextSibling)if(e.nodeType<6)return!1;return!0},parent:function(e){return!S.pseudos.empty(e)},header:function(e){return mt.test(e.nodeName)},input:function(e){return gt.test(e.nodeName)},button:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&"button"===e.type||"button"===t},text:function(e){var t;return"input"===e.nodeName.toLowerCase()&&"text"===e.type&&(null==(t=e.getAttribute("type"))||"text"===t.toLowerCase())},first:u(function(){return[0]}),last:u(function(e,t){return[t-1]}),eq:u(function(e,t,n){return[0>n?n+t:n]}),even:u(function(e,t){for(var n=0;t>n;n+=2)e.push(n);return e}),odd:u(function(e,t){for(var n=1;t>n;n+=2)e.push(n);return e}),lt:u(function(e,t,n){for(var r=0>n?n+t:n;--r>=0;)e.push(r);return e}),gt:u(function(e,t,n){for(var r=0>n?n+t:n;++r<t;)e.push(r);return e})}},S.pseudos.nth=S.pseudos.eq;for(x in{radio:!0,checkbox:!0,file:!0,password:!0,image:!0})S.pseudos[x]=s(x);for(x in{submit:!0,reset:!0})S.pseudos[x]=l(x);return f.prototype=S.filters=S.pseudos,S.setFilters=new f,D=t.tokenize=function(e,n){var r,i,o,a,s,l,u,c=V[e+" "];if(c)return n?0:c.slice(0);for(s=e,l=[],u=S.preFilter;s;){(!r||(i=ut.exec(s)))&&(i&&(s=s.slice(i[0].length)||s),l.push(o=[])),r=!1,(i=ct.exec(s))&&(r=i.shift(),o.push({value:r,type:i[0].replace(lt," ")}),s=s.slice(r.length));for(a in S.filter)!(i=pt[a].exec(s))||u[a]&&!(i=u[a](i))||(r=i.shift(),o.push({value:r,type:a,matches:i}),s=s.slice(r.length));if(!r)break}return n?s.length:s?t.error(e):V(e,l).slice(0)},k=t.compile=function(e,t){var n,r=[],i=[],o=U[e+" "];if(!o){for(t||(t=D(e)),n=t.length;n--;)o=y(t[n]),o[F]?r.push(o):i.push(o);o=U(e,b(i,r)),o.selector=e}return o},L=t.select=function(e,t,n,r){var i,o,a,s,l,u="function"==typeof e&&e,f=!r&&D(e=u.selector||e);if(n=n||[],1===f.length){if(o=f[0]=f[0].slice(0),o.length>2&&"ID"===(a=o[0]).type&&w.getById&&9===t.nodeType&&H&&S.relative[o[1].type]){if(t=(S.find.ID(a.matches[0].replace(wt,St),t)||[])[0],!t)return n;u&&(t=t.parentNode),e=e.slice(o.shift().value.length)}for(i=pt.needsContext.test(e)?0:o.length;i--&&(a=o[i],!S.relative[s=a.type]);)if((l=S.find[s])&&(r=l(a.matches[0].replace(wt,St),bt.test(o[0].type)&&c(t.parentNode)||t))){if(o.splice(i,1),e=r.length&&d(o),!e)return Z.apply(n,r),n;break}}return(u||k(e,f))(r,t,!H,n,bt.test(e)&&c(t.parentNode)||t),n},w.sortStable=F.split("").sort(X).join("")===F,w.detectDuplicates=!!_,M(),w.sortDetached=i(function(e){return 1&e.compareDocumentPosition(E.createElement("div"))}),i(function(e){return e.innerHTML="<a href='#'></a>","#"===e.firstChild.getAttribute("href")})||o("type|href|height|width",function(e,t,n){return n?void 0:e.getAttribute(t,"type"===t.toLowerCase()?1:2)}),w.attributes&&i(function(e){return e.innerHTML="<input/>",e.firstChild.setAttribute("value",""),""===e.firstChild.getAttribute("value")})||o("value",function(e,t,n){return n||"input"!==e.nodeName.toLowerCase()?void 0:e.defaultValue}),i(function(e){return null==e.getAttribute("disabled")})||o(nt,function(e,t,n){var r;return n?void 0:e[t]===!0?t.toLowerCase():(r=e.getAttributeNode(t))&&r.specified?r.value:null}),t}(t);ot.find=ct,ot.expr=ct.selectors,ot.expr[":"]=ot.expr.pseudos,ot.unique=ct.uniqueSort,ot.text=ct.getText,ot.isXMLDoc=ct.isXML,ot.contains=ct.contains;var ft=ot.expr.match.needsContext,dt=/^<(\w+)\s*\/?>(?:<\/\1>|)$/,ht=/^.[^:#\[\.,]*$/;ot.filter=function(e,t,n){var r=t[0];return n&&(e=":not("+e+")"),1===t.length&&1===r.nodeType?ot.find.matchesSelector(r,e)?[r]:[]:ot.find.matches(e,ot.grep(t,function(e){return 1===e.nodeType}))},ot.fn.extend({find:function(e){var t,n=[],r=this,i=r.length;if("string"!=typeof e)return this.pushStack(ot(e).filter(function(){for(t=0;i>t;t++)if(ot.contains(r[t],this))return!0}));for(t=0;i>t;t++)ot.find(e,r[t],n);return n=this.pushStack(i>1?ot.unique(n):n),n.selector=this.selector?this.selector+" "+e:e,n},filter:function(e){return this.pushStack(i(this,e||[],!1))},not:function(e){return this.pushStack(i(this,e||[],!0))},is:function(e){return!!i(this,"string"==typeof e&&ft.test(e)?ot(e):e||[],!1).length}});var pt,gt=t.document,mt=/^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]*))$/,vt=ot.fn.init=function(e,t){var n,r;if(!e)return this;if("string"==typeof e){if(n="<"===e.charAt(0)&&">"===e.charAt(e.length-1)&&e.length>=3?[null,e,null]:mt.exec(e),!n||!n[1]&&t)return!t||t.jquery?(t||pt).find(e):this.constructor(t).find(e);if(n[1]){if(t=t instanceof ot?t[0]:t,ot.merge(this,ot.parseHTML(n[1],t&&t.nodeType?t.ownerDocument||t:gt,!0)),dt.test(n[1])&&ot.isPlainObject(t))for(n in t)ot.isFunction(this[n])?this[n](t[n]):this.attr(n,t[n]);return this}if(r=gt.getElementById(n[2]),r&&r.parentNode){if(r.id!==n[2])return pt.find(e);this.length=1,this[0]=r}return this.context=gt,this.selector=e,this}return e.nodeType?(this.context=this[0]=e,this.length=1,this):ot.isFunction(e)?"undefined"!=typeof pt.ready?pt.ready(e):e(ot):(void 0!==e.selector&&(this.selector=e.selector,this.context=e.context),ot.makeArray(e,this))};vt.prototype=ot.fn,pt=ot(gt);var yt=/^(?:parents|prev(?:Until|All))/,bt={children:!0,contents:!0,next:!0,prev:!0};ot.extend({dir:function(e,t,n){for(var r=[],i=e[t];i&&9!==i.nodeType&&(void 0===n||1!==i.nodeType||!ot(i).is(n));)1===i.nodeType&&r.push(i),i=i[t];return r},sibling:function(e,t){for(var n=[];e;e=e.nextSibling)1===e.nodeType&&e!==t&&n.push(e);return n}}),ot.fn.extend({has:function(e){var t,n=ot(e,this),r=n.length;return this.filter(function(){for(t=0;r>t;t++)if(ot.contains(this,n[t]))return!0})},closest:function(e,t){for(var n,r=0,i=this.length,o=[],a=ft.test(e)||"string"!=typeof e?ot(e,t||this.context):0;i>r;r++)for(n=this[r];n&&n!==t;n=n.parentNode)if(n.nodeType<11&&(a?a.index(n)>-1:1===n.nodeType&&ot.find.matchesSelector(n,e))){o.push(n);break}return this.pushStack(o.length>1?ot.unique(o):o)},index:function(e){return e?"string"==typeof e?ot.inArray(this[0],ot(e)):ot.inArray(e.jquery?e[0]:e,this):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(e,t){return this.pushStack(ot.unique(ot.merge(this.get(),ot(e,t))))},addBack:function(e){return this.add(null==e?this.prevObject:this.prevObject.filter(e))}}),ot.each({parent:function(e){var t=e.parentNode;return t&&11!==t.nodeType?t:null},parents:function(e){return ot.dir(e,"parentNode")},parentsUntil:function(e,t,n){return ot.dir(e,"parentNode",n)},next:function(e){return o(e,"nextSibling")},prev:function(e){return o(e,"previousSibling")},nextAll:function(e){return ot.dir(e,"nextSibling")},prevAll:function(e){return ot.dir(e,"previousSibling")},nextUntil:function(e,t,n){return ot.dir(e,"nextSibling",n)},prevUntil:function(e,t,n){return ot.dir(e,"previousSibling",n)},siblings:function(e){return ot.sibling((e.parentNode||{}).firstChild,e)},children:function(e){return ot.sibling(e.firstChild)},contents:function(e){return ot.nodeName(e,"iframe")?e.contentDocument||e.contentWindow.document:ot.merge([],e.childNodes)}},function(e,t){ot.fn[e]=function(n,r){var i=ot.map(this,t,n);return"Until"!==e.slice(-5)&&(r=n),r&&"string"==typeof r&&(i=ot.filter(r,i)),this.length>1&&(bt[e]||(i=ot.unique(i)),yt.test(e)&&(i=i.reverse())),this.pushStack(i)}});var xt=/\S+/g,wt={};ot.Callbacks=function(e){e="string"==typeof e?wt[e]||a(e):ot.extend({},e);var t,n,r,i,o,s,l=[],u=!e.once&&[],c=function(a){for(n=e.memory&&a,r=!0,o=s||0,s=0,i=l.length,t=!0;l&&i>o;o++)if(l[o].apply(a[0],a[1])===!1&&e.stopOnFalse){n=!1;break}t=!1,l&&(u?u.length&&c(u.shift()):n?l=[]:f.disable())},f={add:function(){if(l){var r=l.length;!function o(t){ot.each(t,function(t,n){var r=ot.type(n);"function"===r?e.unique&&f.has(n)||l.push(n):n&&n.length&&"string"!==r&&o(n)})}(arguments),t?i=l.length:n&&(s=r,c(n))}return this},remove:function(){return l&&ot.each(arguments,function(e,n){for(var r;(r=ot.inArray(n,l,r))>-1;)l.splice(r,1),t&&(i>=r&&i--,o>=r&&o--)}),this},has:function(e){return e?ot.inArray(e,l)>-1:!(!l||!l.length)},empty:function(){return l=[],i=0,this},disable:function(){return l=u=n=void 0,this},disabled:function(){return!l},lock:function(){return u=void 0,n||f.disable(),this},locked:function(){return!u},fireWith:function(e,n){return!l||r&&!u||(n=n||[],n=[e,n.slice?n.slice():n],t?u.push(n):c(n)),this},fire:function(){return f.fireWith(this,arguments),this},fired:function(){return!!r}};return f},ot.extend({Deferred:function(e){var t=[["resolve","done",ot.Callbacks("once memory"),"resolved"],["reject","fail",ot.Callbacks("once memory"),"rejected"],["notify","progress",ot.Callbacks("memory")]],n="pending",r={state:function(){return n},always:function(){return i.done(arguments).fail(arguments),this},then:function(){var e=arguments;return ot.Deferred(function(n){ot.each(t,function(t,o){var a=ot.isFunction(e[t])&&e[t];i[o[1]](function(){var e=a&&a.apply(this,arguments);e&&ot.isFunction(e.promise)?e.promise().done(n.resolve).fail(n.reject).progress(n.notify):n[o[0]+"With"](this===r?n.promise():this,a?[e]:arguments)})}),e=null}).promise()},promise:function(e){return null!=e?ot.extend(e,r):r}},i={};return r.pipe=r.then,ot.each(t,function(e,o){var a=o[2],s=o[3];r[o[1]]=a.add,s&&a.add(function(){n=s},t[1^e][2].disable,t[2][2].lock),i[o[0]]=function(){return i[o[0]+"With"](this===i?r:this,arguments),this},i[o[0]+"With"]=a.fireWith}),r.promise(i),e&&e.call(i,i),i},when:function(e){var t,n,r,i=0,o=Y.call(arguments),a=o.length,s=1!==a||e&&ot.isFunction(e.promise)?a:0,l=1===s?e:ot.Deferred(),u=function(e,n,r){return function(i){n[e]=this,r[e]=arguments.length>1?Y.call(arguments):i,r===t?l.notifyWith(n,r):--s||l.resolveWith(n,r)}};if(a>1)for(t=new Array(a),n=new Array(a),r=new Array(a);a>i;i++)o[i]&&ot.isFunction(o[i].promise)?o[i].promise().done(u(i,r,o)).fail(l.reject).progress(u(i,n,t)):--s;return s||l.resolveWith(r,o),l.promise()}});var St;ot.fn.ready=function(e){return ot.ready.promise().done(e),this},ot.extend({isReady:!1,readyWait:1,holdReady:function(e){e?ot.readyWait++:ot.ready(!0)},ready:function(e){if(e===!0?!--ot.readyWait:!ot.isReady){if(!gt.body)return setTimeout(ot.ready);ot.isReady=!0,e!==!0&&--ot.readyWait>0||(St.resolveWith(gt,[ot]),ot.fn.triggerHandler&&(ot(gt).triggerHandler("ready"),ot(gt).off("ready")))}}}),ot.ready.promise=function(e){if(!St)if(St=ot.Deferred(),"complete"===gt.readyState)setTimeout(ot.ready);else if(gt.addEventListener)gt.addEventListener("DOMContentLoaded",l,!1),t.addEventListener("load",l,!1);else{gt.attachEvent("onreadystatechange",l),t.attachEvent("onload",l);var n=!1;try{n=null==t.frameElement&&gt.documentElement}catch(r){}n&&n.doScroll&&!function i(){if(!ot.isReady){try{n.doScroll("left")}catch(e){return setTimeout(i,50)}s(),ot.ready()}}()}return St.promise(e)};var Ct,Tt="undefined";for(Ct in ot(rt))break;rt.ownLast="0"!==Ct,rt.inlineBlockNeedsLayout=!1,ot(function(){var e,t,n,r;n=gt.getElementsByTagName("body")[0],n&&n.style&&(t=gt.createElement("div"),r=gt.createElement("div"),r.style.cssText="position:absolute;border:0;width:0;height:0;top:0;left:-9999px",n.appendChild(r).appendChild(t),typeof t.style.zoom!==Tt&&(t.style.cssText="display:inline;margin:0;border:0;padding:1px;width:1px;zoom:1",rt.inlineBlockNeedsLayout=e=3===t.offsetWidth,e&&(n.style.zoom=1)),n.removeChild(r))}),function(){var e=gt.createElement("div");if(null==rt.deleteExpando){rt.deleteExpando=!0;try{delete e.test}catch(t){rt.deleteExpando=!1}}e=null}(),ot.acceptData=function(e){var t=ot.noData[(e.nodeName+" ").toLowerCase()],n=+e.nodeType||1;return 1!==n&&9!==n?!1:!t||t!==!0&&e.getAttribute("classid")===t};var Dt=/^(?:\{[\w\W]*\}|\[[\w\W]*\])$/,kt=/([A-Z])/g;ot.extend({cache:{},noData:{"applet ":!0,"embed ":!0,"object ":"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"},hasData:function(e){return e=e.nodeType?ot.cache[e[ot.expando]]:e[ot.expando],!!e&&!c(e)},data:function(e,t,n){return f(e,t,n)},removeData:function(e,t){return d(e,t)},_data:function(e,t,n){return f(e,t,n,!0)},_removeData:function(e,t){return d(e,t,!0)}}),ot.fn.extend({data:function(e,t){var n,r,i,o=this[0],a=o&&o.attributes;if(void 0===e){if(this.length&&(i=ot.data(o),1===o.nodeType&&!ot._data(o,"parsedAttrs"))){for(n=a.length;n--;)a[n]&&(r=a[n].name,0===r.indexOf("data-")&&(r=ot.camelCase(r.slice(5)),u(o,r,i[r])));ot._data(o,"parsedAttrs",!0)}return i}return"object"==typeof e?this.each(function(){ot.data(this,e)}):arguments.length>1?this.each(function(){ot.data(this,e,t)}):o?u(o,e,ot.data(o,e)):void 0},removeData:function(e){return this.each(function(){ot.removeData(this,e)})}}),ot.extend({queue:function(e,t,n){var r;return e?(t=(t||"fx")+"queue",r=ot._data(e,t),n&&(!r||ot.isArray(n)?r=ot._data(e,t,ot.makeArray(n)):r.push(n)),r||[]):void 0},dequeue:function(e,t){t=t||"fx";var n=ot.queue(e,t),r=n.length,i=n.shift(),o=ot._queueHooks(e,t),a=function(){ot.dequeue(e,t)};"inprogress"===i&&(i=n.shift(),r--),i&&("fx"===t&&n.unshift("inprogress"),delete o.stop,i.call(e,a,o)),!r&&o&&o.empty.fire()},_queueHooks:function(e,t){var n=t+"queueHooks";return ot._data(e,n)||ot._data(e,n,{empty:ot.Callbacks("once memory").add(function(){ot._removeData(e,t+"queue"),ot._removeData(e,n)})})}}),ot.fn.extend({queue:function(e,t){var n=2;return"string"!=typeof e&&(t=e,e="fx",n--),arguments.length<n?ot.queue(this[0],e):void 0===t?this:this.each(function(){var n=ot.queue(this,e,t);ot._queueHooks(this,e),"fx"===e&&"inprogress"!==n[0]&&ot.dequeue(this,e)})},dequeue:function(e){return this.each(function(){ot.dequeue(this,e)})},clearQueue:function(e){return this.queue(e||"fx",[])},promise:function(e,t){var n,r=1,i=ot.Deferred(),o=this,a=this.length,s=function(){--r||i.resolveWith(o,[o])};for("string"!=typeof e&&(t=e,e=void 0),e=e||"fx";a--;)n=ot._data(o[a],e+"queueHooks"),n&&n.empty&&(r++,n.empty.add(s));return s(),i.promise(t)}});var Lt=/[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/.source,Nt=["Top","Right","Bottom","Left"],At=function(e,t){return e=t||e,"none"===ot.css(e,"display")||!ot.contains(e.ownerDocument,e)},_t=ot.access=function(e,t,n,r,i,o,a){var s=0,l=e.length,u=null==n;if("object"===ot.type(n)){i=!0;for(s in n)ot.access(e,t,s,n[s],!0,o,a)}else if(void 0!==r&&(i=!0,ot.isFunction(r)||(a=!0),u&&(a?(t.call(e,r),t=null):(u=t,t=function(e,t,n){return u.call(ot(e),n)})),t))for(;l>s;s++)t(e[s],n,a?r:r.call(e[s],s,t(e[s],n)));return i?e:u?t.call(e):l?t(e[0],n):o},Mt=/^(?:checkbox|radio)$/i;!function(){var e=gt.createElement("input"),t=gt.createElement("div"),n=gt.createDocumentFragment();if(t.innerHTML=" <link/><table></table><a href='/a'>a</a><input type='checkbox'/>",rt.leadingWhitespace=3===t.firstChild.nodeType,rt.tbody=!t.getElementsByTagName("tbody").length,rt.htmlSerialize=!!t.getElementsByTagName("link").length,rt.html5Clone="<:nav></:nav>"!==gt.createElement("nav").cloneNode(!0).outerHTML,e.type="checkbox",e.checked=!0,n.appendChild(e),rt.appendChecked=e.checked,t.innerHTML="<textarea>x</textarea>",rt.noCloneChecked=!!t.cloneNode(!0).lastChild.defaultValue,n.appendChild(t),t.innerHTML="<input type='radio' checked='checked' name='t'/>",rt.checkClone=t.cloneNode(!0).cloneNode(!0).lastChild.checked,rt.noCloneEvent=!0,t.attachEvent&&(t.attachEvent("onclick",function(){rt.noCloneEvent=!1}),t.cloneNode(!0).click()),null==rt.deleteExpando){rt.deleteExpando=!0;try{delete t.test}catch(r){rt.deleteExpando=!1}}}(),function(){var e,n,r=gt.createElement("div");for(e in{submit:!0,change:!0,focusin:!0})n="on"+e,(rt[e+"Bubbles"]=n in t)||(r.setAttribute(n,"t"),rt[e+"Bubbles"]=r.attributes[n].expando===!1);r=null}();var Et=/^(?:input|select|textarea)$/i,jt=/^key/,Ht=/^(?:mouse|pointer|contextmenu)|click/,It=/^(?:focusinfocus|focusoutblur)$/,Ot=/^([^.]*)(?:\.(.+)|)$/;ot.event={global:{},add:function(e,t,n,r,i){var o,a,s,l,u,c,f,d,h,p,g,m=ot._data(e);if(m){for(n.handler&&(l=n,n=l.handler,i=l.selector),n.guid||(n.guid=ot.guid++),(a=m.events)||(a=m.events={}),(c=m.handle)||(c=m.handle=function(e){return typeof ot===Tt||e&&ot.event.triggered===e.type?void 0:ot.event.dispatch.apply(c.elem,arguments)},c.elem=e),t=(t||"").match(xt)||[""],s=t.length;s--;)o=Ot.exec(t[s])||[],h=g=o[1],p=(o[2]||"").split(".").sort(),h&&(u=ot.event.special[h]||{},h=(i?u.delegateType:u.bindType)||h,u=ot.event.special[h]||{},f=ot.extend({type:h,origType:g,data:r,handler:n,guid:n.guid,selector:i,needsContext:i&&ot.expr.match.needsContext.test(i),namespace:p.join(".")},l),(d=a[h])||(d=a[h]=[],d.delegateCount=0,u.setup&&u.setup.call(e,r,p,c)!==!1||(e.addEventListener?e.addEventListener(h,c,!1):e.attachEvent&&e.attachEvent("on"+h,c))),u.add&&(u.add.call(e,f),f.handler.guid||(f.handler.guid=n.guid)),i?d.splice(d.delegateCount++,0,f):d.push(f),ot.event.global[h]=!0);e=null}},remove:function(e,t,n,r,i){var o,a,s,l,u,c,f,d,h,p,g,m=ot.hasData(e)&&ot._data(e);if(m&&(c=m.events)){for(t=(t||"").match(xt)||[""],u=t.length;u--;)if(s=Ot.exec(t[u])||[],h=g=s[1],p=(s[2]||"").split(".").sort(),h){for(f=ot.event.special[h]||{},h=(r?f.delegateType:f.bindType)||h,d=c[h]||[],s=s[2]&&new RegExp("(^|\\.)"+p.join("\\.(?:.*\\.|)")+"(\\.|$)"),l=o=d.length;o--;)a=d[o],!i&&g!==a.origType||n&&n.guid!==a.guid||s&&!s.test(a.namespace)||r&&r!==a.selector&&("**"!==r||!a.selector)||(d.splice(o,1),a.selector&&d.delegateCount--,f.remove&&f.remove.call(e,a));l&&!d.length&&(f.teardown&&f.teardown.call(e,p,m.handle)!==!1||ot.removeEvent(e,h,m.handle),delete c[h])}else for(h in c)ot.event.remove(e,h+t[u],n,r,!0);ot.isEmptyObject(c)&&(delete m.handle,ot._removeData(e,"events"))}},trigger:function(e,n,r,i){var o,a,s,l,u,c,f,d=[r||gt],h=nt.call(e,"type")?e.type:e,p=nt.call(e,"namespace")?e.namespace.split("."):[];if(s=c=r=r||gt,3!==r.nodeType&&8!==r.nodeType&&!It.test(h+ot.event.triggered)&&(h.indexOf(".")>=0&&(p=h.split("."),h=p.shift(),p.sort()),a=h.indexOf(":")<0&&"on"+h,e=e[ot.expando]?e:new ot.Event(h,"object"==typeof e&&e),e.isTrigger=i?2:3,e.namespace=p.join("."),e.namespace_re=e.namespace?new RegExp("(^|\\.)"+p.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,e.result=void 0,e.target||(e.target=r),n=null==n?[e]:ot.makeArray(n,[e]),u=ot.event.special[h]||{},i||!u.trigger||u.trigger.apply(r,n)!==!1)){if(!i&&!u.noBubble&&!ot.isWindow(r)){for(l=u.delegateType||h,It.test(l+h)||(s=s.parentNode);s;s=s.parentNode)d.push(s),c=s;c===(r.ownerDocument||gt)&&d.push(c.defaultView||c.parentWindow||t)}for(f=0;(s=d[f++])&&!e.isPropagationStopped();)e.type=f>1?l:u.bindType||h,o=(ot._data(s,"events")||{})[e.type]&&ot._data(s,"handle"),o&&o.apply(s,n),o=a&&s[a],o&&o.apply&&ot.acceptData(s)&&(e.result=o.apply(s,n),e.result===!1&&e.preventDefault());if(e.type=h,!i&&!e.isDefaultPrevented()&&(!u._default||u._default.apply(d.pop(),n)===!1)&&ot.acceptData(r)&&a&&r[h]&&!ot.isWindow(r)){c=r[a],c&&(r[a]=null),ot.event.triggered=h;try{r[h]()}catch(g){}ot.event.triggered=void 0,c&&(r[a]=c)}return e.result}},dispatch:function(e){e=ot.event.fix(e);var t,n,r,i,o,a=[],s=Y.call(arguments),l=(ot._data(this,"events")||{})[e.type]||[],u=ot.event.special[e.type]||{};if(s[0]=e,e.delegateTarget=this,!u.preDispatch||u.preDispatch.call(this,e)!==!1){for(a=ot.event.handlers.call(this,e,l),t=0;(i=a[t++])&&!e.isPropagationStopped();)for(e.currentTarget=i.elem,o=0;(r=i.handlers[o++])&&!e.isImmediatePropagationStopped();)(!e.namespace_re||e.namespace_re.test(r.namespace))&&(e.handleObj=r,e.data=r.data,n=((ot.event.special[r.origType]||{}).handle||r.handler).apply(i.elem,s),void 0!==n&&(e.result=n)===!1&&(e.preventDefault(),e.stopPropagation()));return u.postDispatch&&u.postDispatch.call(this,e),e.result}},handlers:function(e,t){var n,r,i,o,a=[],s=t.delegateCount,l=e.target;if(s&&l.nodeType&&(!e.button||"click"!==e.type))for(;l!=this;l=l.parentNode||this)if(1===l.nodeType&&(l.disabled!==!0||"click"!==e.type)){for(i=[],o=0;s>o;o++)r=t[o],n=r.selector+" ",void 0===i[n]&&(i[n]=r.needsContext?ot(n,this).index(l)>=0:ot.find(n,this,null,[l]).length),i[n]&&i.push(r);i.length&&a.push({elem:l,handlers:i})}return s<t.length&&a.push({elem:this,handlers:t.slice(s)}),a},fix:function(e){if(e[ot.expando])return e;var t,n,r,i=e.type,o=e,a=this.fixHooks[i];for(a||(this.fixHooks[i]=a=Ht.test(i)?this.mouseHooks:jt.test(i)?this.keyHooks:{}),r=a.props?this.props.concat(a.props):this.props,e=new ot.Event(o),t=r.length;t--;)n=r[t],e[n]=o[n];return e.target||(e.target=o.srcElement||gt),3===e.target.nodeType&&(e.target=e.target.parentNode),e.metaKey=!!e.metaKey,a.filter?a.filter(e,o):e},props:"altKey bubbles cancelable ctrlKey currentTarget eventPhase metaKey relatedTarget shiftKey target timeStamp view which".split(" "),fixHooks:{},keyHooks:{props:"char charCode key keyCode".split(" "),filter:function(e,t){return null==e.which&&(e.which=null!=t.charCode?t.charCode:t.keyCode),e}},mouseHooks:{props:"button buttons clientX clientY fromElement offsetX offsetY pageX pageY screenX screenY toElement".split(" "),filter:function(e,t){var n,r,i,o=t.button,a=t.fromElement;return null==e.pageX&&null!=t.clientX&&(r=e.target.ownerDocument||gt,i=r.documentElement,n=r.body,e.pageX=t.clientX+(i&&i.scrollLeft||n&&n.scrollLeft||0)-(i&&i.clientLeft||n&&n.clientLeft||0),e.pageY=t.clientY+(i&&i.scrollTop||n&&n.scrollTop||0)-(i&&i.clientTop||n&&n.clientTop||0)),!e.relatedTarget&&a&&(e.relatedTarget=a===e.target?t.toElement:a),e.which||void 0===o||(e.which=1&o?1:2&o?3:4&o?2:0),e}},special:{load:{noBubble:!0},focus:{trigger:function(){if(this!==g()&&this.focus)try{return this.focus(),!1}catch(e){}},delegateType:"focusin"},blur:{trigger:function(){return this===g()&&this.blur?(this.blur(),!1):void 0},delegateType:"focusout"},click:{trigger:function(){return ot.nodeName(this,"input")&&"checkbox"===this.type&&this.click?(this.click(),!1):void 0},_default:function(e){return ot.nodeName(e.target,"a")}},beforeunload:{postDispatch:function(e){void 0!==e.result&&e.originalEvent&&(e.originalEvent.returnValue=e.result)}}},simulate:function(e,t,n,r){var i=ot.extend(new ot.Event,n,{type:e,isSimulated:!0,originalEvent:{}});r?ot.event.trigger(i,null,t):ot.event.dispatch.call(t,i),i.isDefaultPrevented()&&n.preventDefault()}},ot.removeEvent=gt.removeEventListener?function(e,t,n){e.removeEventListener&&e.removeEventListener(t,n,!1)}:function(e,t,n){var r="on"+t;e.detachEvent&&(typeof e[r]===Tt&&(e[r]=null),e.detachEvent(r,n))},ot.Event=function(e,t){return this instanceof ot.Event?(e&&e.type?(this.originalEvent=e,this.type=e.type,this.isDefaultPrevented=e.defaultPrevented||void 0===e.defaultPrevented&&e.returnValue===!1?h:p):this.type=e,t&&ot.extend(this,t),this.timeStamp=e&&e.timeStamp||ot.now(),void(this[ot.expando]=!0)):new ot.Event(e,t)},ot.Event.prototype={isDefaultPrevented:p,isPropagationStopped:p,isImmediatePropagationStopped:p,preventDefault:function(){var e=this.originalEvent;this.isDefaultPrevented=h,e&&(e.preventDefault?e.preventDefault():e.returnValue=!1)},stopPropagation:function(){var e=this.originalEvent;this.isPropagationStopped=h,e&&(e.stopPropagation&&e.stopPropagation(),e.cancelBubble=!0)},stopImmediatePropagation:function(){var e=this.originalEvent;this.isImmediatePropagationStopped=h,e&&e.stopImmediatePropagation&&e.stopImmediatePropagation(),this.stopPropagation()}},ot.each({mouseenter:"mouseover",mouseleave:"mouseout",pointerenter:"pointerover",pointerleave:"pointerout"},function(e,t){ot.event.special[e]={delegateType:t,bindType:t,handle:function(e){var n,r=this,i=e.relatedTarget,o=e.handleObj;return(!i||i!==r&&!ot.contains(r,i))&&(e.type=o.origType,n=o.handler.apply(this,arguments),e.type=t),n}}}),rt.submitBubbles||(ot.event.special.submit={setup:function(){return ot.nodeName(this,"form")?!1:void ot.event.add(this,"click._submit keypress._submit",function(e){var t=e.target,n=ot.nodeName(t,"input")||ot.nodeName(t,"button")?t.form:void 0;n&&!ot._data(n,"submitBubbles")&&(ot.event.add(n,"submit._submit",function(e){e._submit_bubble=!0}),ot._data(n,"submitBubbles",!0))})},postDispatch:function(e){e._submit_bubble&&(delete e._submit_bubble,this.parentNode&&!e.isTrigger&&ot.event.simulate("submit",this.parentNode,e,!0))},teardown:function(){return ot.nodeName(this,"form")?!1:void ot.event.remove(this,"._submit")}}),rt.changeBubbles||(ot.event.special.change={setup:function(){return Et.test(this.nodeName)?(("checkbox"===this.type||"radio"===this.type)&&(ot.event.add(this,"propertychange._change",function(e){"checked"===e.originalEvent.propertyName&&(this._just_changed=!0)}),ot.event.add(this,"click._change",function(e){this._just_changed&&!e.isTrigger&&(this._just_changed=!1),ot.event.simulate("change",this,e,!0)})),!1):void ot.event.add(this,"beforeactivate._change",function(e){var t=e.target;Et.test(t.nodeName)&&!ot._data(t,"changeBubbles")&&(ot.event.add(t,"change._change",function(e){!this.parentNode||e.isSimulated||e.isTrigger||ot.event.simulate("change",this.parentNode,e,!0)}),ot._data(t,"changeBubbles",!0))})},handle:function(e){var t=e.target;return this!==t||e.isSimulated||e.isTrigger||"radio"!==t.type&&"checkbox"!==t.type?e.handleObj.handler.apply(this,arguments):void 0},teardown:function(){return ot.event.remove(this,"._change"),!Et.test(this.nodeName)}}),rt.focusinBubbles||ot.each({focus:"focusin",blur:"focusout"},function(e,t){var n=function(e){ot.event.simulate(t,e.target,ot.event.fix(e),!0)};ot.event.special[t]={setup:function(){var r=this.ownerDocument||this,i=ot._data(r,t);i||r.addEventListener(e,n,!0),ot._data(r,t,(i||0)+1)},teardown:function(){var r=this.ownerDocument||this,i=ot._data(r,t)-1;i?ot._data(r,t,i):(r.removeEventListener(e,n,!0),ot._removeData(r,t))}}}),ot.fn.extend({on:function(e,t,n,r,i){var o,a;if("object"==typeof e){"string"!=typeof t&&(n=n||t,t=void 0);for(o in e)this.on(o,t,n,e[o],i);return this}if(null==n&&null==r?(r=t,n=t=void 0):null==r&&("string"==typeof t?(r=n,n=void 0):(r=n,n=t,t=void 0)),r===!1)r=p;else if(!r)return this;return 1===i&&(a=r,r=function(e){return ot().off(e),a.apply(this,arguments)},r.guid=a.guid||(a.guid=ot.guid++)),this.each(function(){ot.event.add(this,e,r,n,t) })},one:function(e,t,n,r){return this.on(e,t,n,r,1)},off:function(e,t,n){var r,i;if(e&&e.preventDefault&&e.handleObj)return r=e.handleObj,ot(e.delegateTarget).off(r.namespace?r.origType+"."+r.namespace:r.origType,r.selector,r.handler),this;if("object"==typeof e){for(i in e)this.off(i,t,e[i]);return this}return(t===!1||"function"==typeof t)&&(n=t,t=void 0),n===!1&&(n=p),this.each(function(){ot.event.remove(this,e,n,t)})},trigger:function(e,t){return this.each(function(){ot.event.trigger(e,t,this)})},triggerHandler:function(e,t){var n=this[0];return n?ot.event.trigger(e,t,n,!0):void 0}});var Rt="abbr|article|aside|audio|bdi|canvas|data|datalist|details|figcaption|figure|footer|header|hgroup|mark|meter|nav|output|progress|section|summary|time|video",Pt=/ jQuery\d+="(?:null|\d+)"/g,Ft=new RegExp("<(?:"+Rt+")[\\s/>]","i"),Wt=/^\s+/,zt=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/gi,Bt=/<([\w:]+)/,qt=/<tbody/i,Vt=/<|&#?\w+;/,Ut=/<(?:script|style|link)/i,Xt=/checked\s*(?:[^=]|=\s*.checked.)/i,$t=/^$|\/(?:java|ecma)script/i,Gt=/^true\/(.*)/,Jt=/^\s*<!(?:\[CDATA\[|--)|(?:\]\]|--)>\s*$/g,Yt={option:[1,"<select multiple='multiple'>","</select>"],legend:[1,"<fieldset>","</fieldset>"],area:[1,"<map>","</map>"],param:[1,"<object>","</object>"],thead:[1,"<table>","</table>"],tr:[2,"<table><tbody>","</tbody></table>"],col:[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"],td:[3,"<table><tbody><tr>","</tr></tbody></table>"],_default:rt.htmlSerialize?[0,"",""]:[1,"X<div>","</div>"]},Kt=m(gt),Qt=Kt.appendChild(gt.createElement("div"));Yt.optgroup=Yt.option,Yt.tbody=Yt.tfoot=Yt.colgroup=Yt.caption=Yt.thead,Yt.th=Yt.td,ot.extend({clone:function(e,t,n){var r,i,o,a,s,l=ot.contains(e.ownerDocument,e);if(rt.html5Clone||ot.isXMLDoc(e)||!Ft.test("<"+e.nodeName+">")?o=e.cloneNode(!0):(Qt.innerHTML=e.outerHTML,Qt.removeChild(o=Qt.firstChild)),!(rt.noCloneEvent&&rt.noCloneChecked||1!==e.nodeType&&11!==e.nodeType||ot.isXMLDoc(e)))for(r=v(o),s=v(e),a=0;null!=(i=s[a]);++a)r[a]&&T(i,r[a]);if(t)if(n)for(s=s||v(e),r=r||v(o),a=0;null!=(i=s[a]);a++)C(i,r[a]);else C(e,o);return r=v(o,"script"),r.length>0&&S(r,!l&&v(e,"script")),r=s=i=null,o},buildFragment:function(e,t,n,r){for(var i,o,a,s,l,u,c,f=e.length,d=m(t),h=[],p=0;f>p;p++)if(o=e[p],o||0===o)if("object"===ot.type(o))ot.merge(h,o.nodeType?[o]:o);else if(Vt.test(o)){for(s=s||d.appendChild(t.createElement("div")),l=(Bt.exec(o)||["",""])[1].toLowerCase(),c=Yt[l]||Yt._default,s.innerHTML=c[1]+o.replace(zt,"<$1></$2>")+c[2],i=c[0];i--;)s=s.lastChild;if(!rt.leadingWhitespace&&Wt.test(o)&&h.push(t.createTextNode(Wt.exec(o)[0])),!rt.tbody)for(o="table"!==l||qt.test(o)?"<table>"!==c[1]||qt.test(o)?0:s:s.firstChild,i=o&&o.childNodes.length;i--;)ot.nodeName(u=o.childNodes[i],"tbody")&&!u.childNodes.length&&o.removeChild(u);for(ot.merge(h,s.childNodes),s.textContent="";s.firstChild;)s.removeChild(s.firstChild);s=d.lastChild}else h.push(t.createTextNode(o));for(s&&d.removeChild(s),rt.appendChecked||ot.grep(v(h,"input"),y),p=0;o=h[p++];)if((!r||-1===ot.inArray(o,r))&&(a=ot.contains(o.ownerDocument,o),s=v(d.appendChild(o),"script"),a&&S(s),n))for(i=0;o=s[i++];)$t.test(o.type||"")&&n.push(o);return s=null,d},cleanData:function(e,t){for(var n,r,i,o,a=0,s=ot.expando,l=ot.cache,u=rt.deleteExpando,c=ot.event.special;null!=(n=e[a]);a++)if((t||ot.acceptData(n))&&(i=n[s],o=i&&l[i])){if(o.events)for(r in o.events)c[r]?ot.event.remove(n,r):ot.removeEvent(n,r,o.handle);l[i]&&(delete l[i],u?delete n[s]:typeof n.removeAttribute!==Tt?n.removeAttribute(s):n[s]=null,J.push(i))}}}),ot.fn.extend({text:function(e){return _t(this,function(e){return void 0===e?ot.text(this):this.empty().append((this[0]&&this[0].ownerDocument||gt).createTextNode(e))},null,e,arguments.length)},append:function(){return this.domManip(arguments,function(e){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var t=b(this,e);t.appendChild(e)}})},prepend:function(){return this.domManip(arguments,function(e){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var t=b(this,e);t.insertBefore(e,t.firstChild)}})},before:function(){return this.domManip(arguments,function(e){this.parentNode&&this.parentNode.insertBefore(e,this)})},after:function(){return this.domManip(arguments,function(e){this.parentNode&&this.parentNode.insertBefore(e,this.nextSibling)})},remove:function(e,t){for(var n,r=e?ot.filter(e,this):this,i=0;null!=(n=r[i]);i++)t||1!==n.nodeType||ot.cleanData(v(n)),n.parentNode&&(t&&ot.contains(n.ownerDocument,n)&&S(v(n,"script")),n.parentNode.removeChild(n));return this},empty:function(){for(var e,t=0;null!=(e=this[t]);t++){for(1===e.nodeType&&ot.cleanData(v(e,!1));e.firstChild;)e.removeChild(e.firstChild);e.options&&ot.nodeName(e,"select")&&(e.options.length=0)}return this},clone:function(e,t){return e=null==e?!1:e,t=null==t?e:t,this.map(function(){return ot.clone(this,e,t)})},html:function(e){return _t(this,function(e){var t=this[0]||{},n=0,r=this.length;if(void 0===e)return 1===t.nodeType?t.innerHTML.replace(Pt,""):void 0;if(!("string"!=typeof e||Ut.test(e)||!rt.htmlSerialize&&Ft.test(e)||!rt.leadingWhitespace&&Wt.test(e)||Yt[(Bt.exec(e)||["",""])[1].toLowerCase()])){e=e.replace(zt,"<$1></$2>");try{for(;r>n;n++)t=this[n]||{},1===t.nodeType&&(ot.cleanData(v(t,!1)),t.innerHTML=e);t=0}catch(i){}}t&&this.empty().append(e)},null,e,arguments.length)},replaceWith:function(){var e=arguments[0];return this.domManip(arguments,function(t){e=this.parentNode,ot.cleanData(v(this)),e&&e.replaceChild(t,this)}),e&&(e.length||e.nodeType)?this:this.remove()},detach:function(e){return this.remove(e,!0)},domManip:function(e,t){e=K.apply([],e);var n,r,i,o,a,s,l=0,u=this.length,c=this,f=u-1,d=e[0],h=ot.isFunction(d);if(h||u>1&&"string"==typeof d&&!rt.checkClone&&Xt.test(d))return this.each(function(n){var r=c.eq(n);h&&(e[0]=d.call(this,n,r.html())),r.domManip(e,t)});if(u&&(s=ot.buildFragment(e,this[0].ownerDocument,!1,this),n=s.firstChild,1===s.childNodes.length&&(s=n),n)){for(o=ot.map(v(s,"script"),x),i=o.length;u>l;l++)r=s,l!==f&&(r=ot.clone(r,!0,!0),i&&ot.merge(o,v(r,"script"))),t.call(this[l],r,l);if(i)for(a=o[o.length-1].ownerDocument,ot.map(o,w),l=0;i>l;l++)r=o[l],$t.test(r.type||"")&&!ot._data(r,"globalEval")&&ot.contains(a,r)&&(r.src?ot._evalUrl&&ot._evalUrl(r.src):ot.globalEval((r.text||r.textContent||r.innerHTML||"").replace(Jt,"")));s=n=null}return this}}),ot.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(e,t){ot.fn[e]=function(e){for(var n,r=0,i=[],o=ot(e),a=o.length-1;a>=r;r++)n=r===a?this:this.clone(!0),ot(o[r])[t](n),Q.apply(i,n.get());return this.pushStack(i)}});var Zt,en={};!function(){var e;rt.shrinkWrapBlocks=function(){if(null!=e)return e;e=!1;var t,n,r;return n=gt.getElementsByTagName("body")[0],n&&n.style?(t=gt.createElement("div"),r=gt.createElement("div"),r.style.cssText="position:absolute;border:0;width:0;height:0;top:0;left:-9999px",n.appendChild(r).appendChild(t),typeof t.style.zoom!==Tt&&(t.style.cssText="-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;display:block;margin:0;border:0;padding:1px;width:1px;zoom:1",t.appendChild(gt.createElement("div")).style.width="5px",e=3!==t.offsetWidth),n.removeChild(r),e):void 0}}();var tn,nn,rn=/^margin/,on=new RegExp("^("+Lt+")(?!px)[a-z%]+$","i"),an=/^(top|right|bottom|left)$/;t.getComputedStyle?(tn=function(e){return e.ownerDocument.defaultView.getComputedStyle(e,null)},nn=function(e,t,n){var r,i,o,a,s=e.style;return n=n||tn(e),a=n?n.getPropertyValue(t)||n[t]:void 0,n&&(""!==a||ot.contains(e.ownerDocument,e)||(a=ot.style(e,t)),on.test(a)&&rn.test(t)&&(r=s.width,i=s.minWidth,o=s.maxWidth,s.minWidth=s.maxWidth=s.width=a,a=n.width,s.width=r,s.minWidth=i,s.maxWidth=o)),void 0===a?a:a+""}):gt.documentElement.currentStyle&&(tn=function(e){return e.currentStyle},nn=function(e,t,n){var r,i,o,a,s=e.style;return n=n||tn(e),a=n?n[t]:void 0,null==a&&s&&s[t]&&(a=s[t]),on.test(a)&&!an.test(t)&&(r=s.left,i=e.runtimeStyle,o=i&&i.left,o&&(i.left=e.currentStyle.left),s.left="fontSize"===t?"1em":a,a=s.pixelLeft+"px",s.left=r,o&&(i.left=o)),void 0===a?a:a+""||"auto"}),function(){function e(){var e,n,r,i;n=gt.getElementsByTagName("body")[0],n&&n.style&&(e=gt.createElement("div"),r=gt.createElement("div"),r.style.cssText="position:absolute;border:0;width:0;height:0;top:0;left:-9999px",n.appendChild(r).appendChild(e),e.style.cssText="-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;display:block;margin-top:1%;top:1%;border:1px;padding:1px;width:4px;position:absolute",o=a=!1,l=!0,t.getComputedStyle&&(o="1%"!==(t.getComputedStyle(e,null)||{}).top,a="4px"===(t.getComputedStyle(e,null)||{width:"4px"}).width,i=e.appendChild(gt.createElement("div")),i.style.cssText=e.style.cssText="-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;display:block;margin:0;border:0;padding:0",i.style.marginRight=i.style.width="0",e.style.width="1px",l=!parseFloat((t.getComputedStyle(i,null)||{}).marginRight)),e.innerHTML="<table><tr><td></td><td>t</td></tr></table>",i=e.getElementsByTagName("td"),i[0].style.cssText="margin:0;border:0;padding:0;display:none",s=0===i[0].offsetHeight,s&&(i[0].style.display="",i[1].style.display="none",s=0===i[0].offsetHeight),n.removeChild(r))}var n,r,i,o,a,s,l;n=gt.createElement("div"),n.innerHTML=" <link/><table></table><a href='/a'>a</a><input type='checkbox'/>",i=n.getElementsByTagName("a")[0],r=i&&i.style,r&&(r.cssText="float:left;opacity:.5",rt.opacity="0.5"===r.opacity,rt.cssFloat=!!r.cssFloat,n.style.backgroundClip="content-box",n.cloneNode(!0).style.backgroundClip="",rt.clearCloneStyle="content-box"===n.style.backgroundClip,rt.boxSizing=""===r.boxSizing||""===r.MozBoxSizing||""===r.WebkitBoxSizing,ot.extend(rt,{reliableHiddenOffsets:function(){return null==s&&e(),s},boxSizingReliable:function(){return null==a&&e(),a},pixelPosition:function(){return null==o&&e(),o},reliableMarginRight:function(){return null==l&&e(),l}}))}(),ot.swap=function(e,t,n,r){var i,o,a={};for(o in t)a[o]=e.style[o],e.style[o]=t[o];i=n.apply(e,r||[]);for(o in t)e.style[o]=a[o];return i};var sn=/alpha\([^)]*\)/i,ln=/opacity\s*=\s*([^)]*)/,un=/^(none|table(?!-c[ea]).+)/,cn=new RegExp("^("+Lt+")(.*)$","i"),fn=new RegExp("^([+-])=("+Lt+")","i"),dn={position:"absolute",visibility:"hidden",display:"block"},hn={letterSpacing:"0",fontWeight:"400"},pn=["Webkit","O","Moz","ms"];ot.extend({cssHooks:{opacity:{get:function(e,t){if(t){var n=nn(e,"opacity");return""===n?"1":n}}}},cssNumber:{columnCount:!0,fillOpacity:!0,flexGrow:!0,flexShrink:!0,fontWeight:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{"float":rt.cssFloat?"cssFloat":"styleFloat"},style:function(e,t,n,r){if(e&&3!==e.nodeType&&8!==e.nodeType&&e.style){var i,o,a,s=ot.camelCase(t),l=e.style;if(t=ot.cssProps[s]||(ot.cssProps[s]=N(l,s)),a=ot.cssHooks[t]||ot.cssHooks[s],void 0===n)return a&&"get"in a&&void 0!==(i=a.get(e,!1,r))?i:l[t];if(o=typeof n,"string"===o&&(i=fn.exec(n))&&(n=(i[1]+1)*i[2]+parseFloat(ot.css(e,t)),o="number"),null!=n&&n===n&&("number"!==o||ot.cssNumber[s]||(n+="px"),rt.clearCloneStyle||""!==n||0!==t.indexOf("background")||(l[t]="inherit"),!(a&&"set"in a&&void 0===(n=a.set(e,n,r)))))try{l[t]=n}catch(u){}}},css:function(e,t,n,r){var i,o,a,s=ot.camelCase(t);return t=ot.cssProps[s]||(ot.cssProps[s]=N(e.style,s)),a=ot.cssHooks[t]||ot.cssHooks[s],a&&"get"in a&&(o=a.get(e,!0,n)),void 0===o&&(o=nn(e,t,r)),"normal"===o&&t in hn&&(o=hn[t]),""===n||n?(i=parseFloat(o),n===!0||ot.isNumeric(i)?i||0:o):o}}),ot.each(["height","width"],function(e,t){ot.cssHooks[t]={get:function(e,n,r){return n?un.test(ot.css(e,"display"))&&0===e.offsetWidth?ot.swap(e,dn,function(){return E(e,t,r)}):E(e,t,r):void 0},set:function(e,n,r){var i=r&&tn(e);return _(e,n,r?M(e,t,r,rt.boxSizing&&"border-box"===ot.css(e,"boxSizing",!1,i),i):0)}}}),rt.opacity||(ot.cssHooks.opacity={get:function(e,t){return ln.test((t&&e.currentStyle?e.currentStyle.filter:e.style.filter)||"")?.01*parseFloat(RegExp.$1)+"":t?"1":""},set:function(e,t){var n=e.style,r=e.currentStyle,i=ot.isNumeric(t)?"alpha(opacity="+100*t+")":"",o=r&&r.filter||n.filter||"";n.zoom=1,(t>=1||""===t)&&""===ot.trim(o.replace(sn,""))&&n.removeAttribute&&(n.removeAttribute("filter"),""===t||r&&!r.filter)||(n.filter=sn.test(o)?o.replace(sn,i):o+" "+i)}}),ot.cssHooks.marginRight=L(rt.reliableMarginRight,function(e,t){return t?ot.swap(e,{display:"inline-block"},nn,[e,"marginRight"]):void 0}),ot.each({margin:"",padding:"",border:"Width"},function(e,t){ot.cssHooks[e+t]={expand:function(n){for(var r=0,i={},o="string"==typeof n?n.split(" "):[n];4>r;r++)i[e+Nt[r]+t]=o[r]||o[r-2]||o[0];return i}},rn.test(e)||(ot.cssHooks[e+t].set=_)}),ot.fn.extend({css:function(e,t){return _t(this,function(e,t,n){var r,i,o={},a=0;if(ot.isArray(t)){for(r=tn(e),i=t.length;i>a;a++)o[t[a]]=ot.css(e,t[a],!1,r);return o}return void 0!==n?ot.style(e,t,n):ot.css(e,t)},e,t,arguments.length>1)},show:function(){return A(this,!0)},hide:function(){return A(this)},toggle:function(e){return"boolean"==typeof e?e?this.show():this.hide():this.each(function(){At(this)?ot(this).show():ot(this).hide()})}}),ot.Tween=j,j.prototype={constructor:j,init:function(e,t,n,r,i,o){this.elem=e,this.prop=n,this.easing=i||"swing",this.options=t,this.start=this.now=this.cur(),this.end=r,this.unit=o||(ot.cssNumber[n]?"":"px")},cur:function(){var e=j.propHooks[this.prop];return e&&e.get?e.get(this):j.propHooks._default.get(this)},run:function(e){var t,n=j.propHooks[this.prop];return this.pos=t=this.options.duration?ot.easing[this.easing](e,this.options.duration*e,0,1,this.options.duration):e,this.now=(this.end-this.start)*t+this.start,this.options.step&&this.options.step.call(this.elem,this.now,this),n&&n.set?n.set(this):j.propHooks._default.set(this),this}},j.prototype.init.prototype=j.prototype,j.propHooks={_default:{get:function(e){var t;return null==e.elem[e.prop]||e.elem.style&&null!=e.elem.style[e.prop]?(t=ot.css(e.elem,e.prop,""),t&&"auto"!==t?t:0):e.elem[e.prop]},set:function(e){ot.fx.step[e.prop]?ot.fx.step[e.prop](e):e.elem.style&&(null!=e.elem.style[ot.cssProps[e.prop]]||ot.cssHooks[e.prop])?ot.style(e.elem,e.prop,e.now+e.unit):e.elem[e.prop]=e.now}}},j.propHooks.scrollTop=j.propHooks.scrollLeft={set:function(e){e.elem.nodeType&&e.elem.parentNode&&(e.elem[e.prop]=e.now)}},ot.easing={linear:function(e){return e},swing:function(e){return.5-Math.cos(e*Math.PI)/2}},ot.fx=j.prototype.init,ot.fx.step={};var gn,mn,vn=/^(?:toggle|show|hide)$/,yn=new RegExp("^(?:([+-])=|)("+Lt+")([a-z%]*)$","i"),bn=/queueHooks$/,xn=[R],wn={"*":[function(e,t){var n=this.createTween(e,t),r=n.cur(),i=yn.exec(t),o=i&&i[3]||(ot.cssNumber[e]?"":"px"),a=(ot.cssNumber[e]||"px"!==o&&+r)&&yn.exec(ot.css(n.elem,e)),s=1,l=20;if(a&&a[3]!==o){o=o||a[3],i=i||[],a=+r||1;do s=s||".5",a/=s,ot.style(n.elem,e,a+o);while(s!==(s=n.cur()/r)&&1!==s&&--l)}return i&&(a=n.start=+a||+r||0,n.unit=o,n.end=i[1]?a+(i[1]+1)*i[2]:+i[2]),n}]};ot.Animation=ot.extend(F,{tweener:function(e,t){ot.isFunction(e)?(t=e,e=["*"]):e=e.split(" ");for(var n,r=0,i=e.length;i>r;r++)n=e[r],wn[n]=wn[n]||[],wn[n].unshift(t)},prefilter:function(e,t){t?xn.unshift(e):xn.push(e)}}),ot.speed=function(e,t,n){var r=e&&"object"==typeof e?ot.extend({},e):{complete:n||!n&&t||ot.isFunction(e)&&e,duration:e,easing:n&&t||t&&!ot.isFunction(t)&&t};return r.duration=ot.fx.off?0:"number"==typeof r.duration?r.duration:r.duration in ot.fx.speeds?ot.fx.speeds[r.duration]:ot.fx.speeds._default,(null==r.queue||r.queue===!0)&&(r.queue="fx"),r.old=r.complete,r.complete=function(){ot.isFunction(r.old)&&r.old.call(this),r.queue&&ot.dequeue(this,r.queue)},r},ot.fn.extend({fadeTo:function(e,t,n,r){return this.filter(At).css("opacity",0).show().end().animate({opacity:t},e,n,r)},animate:function(e,t,n,r){var i=ot.isEmptyObject(e),o=ot.speed(t,n,r),a=function(){var t=F(this,ot.extend({},e),o);(i||ot._data(this,"finish"))&&t.stop(!0)};return a.finish=a,i||o.queue===!1?this.each(a):this.queue(o.queue,a)},stop:function(e,t,n){var r=function(e){var t=e.stop;delete e.stop,t(n)};return"string"!=typeof e&&(n=t,t=e,e=void 0),t&&e!==!1&&this.queue(e||"fx",[]),this.each(function(){var t=!0,i=null!=e&&e+"queueHooks",o=ot.timers,a=ot._data(this);if(i)a[i]&&a[i].stop&&r(a[i]);else for(i in a)a[i]&&a[i].stop&&bn.test(i)&&r(a[i]);for(i=o.length;i--;)o[i].elem!==this||null!=e&&o[i].queue!==e||(o[i].anim.stop(n),t=!1,o.splice(i,1));(t||!n)&&ot.dequeue(this,e)})},finish:function(e){return e!==!1&&(e=e||"fx"),this.each(function(){var t,n=ot._data(this),r=n[e+"queue"],i=n[e+"queueHooks"],o=ot.timers,a=r?r.length:0;for(n.finish=!0,ot.queue(this,e,[]),i&&i.stop&&i.stop.call(this,!0),t=o.length;t--;)o[t].elem===this&&o[t].queue===e&&(o[t].anim.stop(!0),o.splice(t,1));for(t=0;a>t;t++)r[t]&&r[t].finish&&r[t].finish.call(this);delete n.finish})}}),ot.each(["toggle","show","hide"],function(e,t){var n=ot.fn[t];ot.fn[t]=function(e,r,i){return null==e||"boolean"==typeof e?n.apply(this,arguments):this.animate(I(t,!0),e,r,i)}}),ot.each({slideDown:I("show"),slideUp:I("hide"),slideToggle:I("toggle"),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"},fadeToggle:{opacity:"toggle"}},function(e,t){ot.fn[e]=function(e,n,r){return this.animate(t,e,n,r)}}),ot.timers=[],ot.fx.tick=function(){var e,t=ot.timers,n=0;for(gn=ot.now();n<t.length;n++)e=t[n],e()||t[n]!==e||t.splice(n--,1);t.length||ot.fx.stop(),gn=void 0},ot.fx.timer=function(e){ot.timers.push(e),e()?ot.fx.start():ot.timers.pop()},ot.fx.interval=13,ot.fx.start=function(){mn||(mn=setInterval(ot.fx.tick,ot.fx.interval))},ot.fx.stop=function(){clearInterval(mn),mn=null},ot.fx.speeds={slow:600,fast:200,_default:400},ot.fn.delay=function(e,t){return e=ot.fx?ot.fx.speeds[e]||e:e,t=t||"fx",this.queue(t,function(t,n){var r=setTimeout(t,e);n.stop=function(){clearTimeout(r)}})},function(){var e,t,n,r,i;t=gt.createElement("div"),t.setAttribute("className","t"),t.innerHTML=" <link/><table></table><a href='/a'>a</a><input type='checkbox'/>",r=t.getElementsByTagName("a")[0],n=gt.createElement("select"),i=n.appendChild(gt.createElement("option")),e=t.getElementsByTagName("input")[0],r.style.cssText="top:1px",rt.getSetAttribute="t"!==t.className,rt.style=/top/.test(r.getAttribute("style")),rt.hrefNormalized="/a"===r.getAttribute("href"),rt.checkOn=!!e.value,rt.optSelected=i.selected,rt.enctype=!!gt.createElement("form").enctype,n.disabled=!0,rt.optDisabled=!i.disabled,e=gt.createElement("input"),e.setAttribute("value",""),rt.input=""===e.getAttribute("value"),e.value="t",e.setAttribute("type","radio"),rt.radioValue="t"===e.value}();var Sn=/\r/g;ot.fn.extend({val:function(e){var t,n,r,i=this[0];{if(arguments.length)return r=ot.isFunction(e),this.each(function(n){var i;1===this.nodeType&&(i=r?e.call(this,n,ot(this).val()):e,null==i?i="":"number"==typeof i?i+="":ot.isArray(i)&&(i=ot.map(i,function(e){return null==e?"":e+""})),t=ot.valHooks[this.type]||ot.valHooks[this.nodeName.toLowerCase()],t&&"set"in t&&void 0!==t.set(this,i,"value")||(this.value=i))});if(i)return t=ot.valHooks[i.type]||ot.valHooks[i.nodeName.toLowerCase()],t&&"get"in t&&void 0!==(n=t.get(i,"value"))?n:(n=i.value,"string"==typeof n?n.replace(Sn,""):null==n?"":n)}}}),ot.extend({valHooks:{option:{get:function(e){var t=ot.find.attr(e,"value");return null!=t?t:ot.trim(ot.text(e))}},select:{get:function(e){for(var t,n,r=e.options,i=e.selectedIndex,o="select-one"===e.type||0>i,a=o?null:[],s=o?i+1:r.length,l=0>i?s:o?i:0;s>l;l++)if(n=r[l],!(!n.selected&&l!==i||(rt.optDisabled?n.disabled:null!==n.getAttribute("disabled"))||n.parentNode.disabled&&ot.nodeName(n.parentNode,"optgroup"))){if(t=ot(n).val(),o)return t;a.push(t)}return a},set:function(e,t){for(var n,r,i=e.options,o=ot.makeArray(t),a=i.length;a--;)if(r=i[a],ot.inArray(ot.valHooks.option.get(r),o)>=0)try{r.selected=n=!0}catch(s){r.scrollHeight}else r.selected=!1;return n||(e.selectedIndex=-1),i}}}}),ot.each(["radio","checkbox"],function(){ot.valHooks[this]={set:function(e,t){return ot.isArray(t)?e.checked=ot.inArray(ot(e).val(),t)>=0:void 0}},rt.checkOn||(ot.valHooks[this].get=function(e){return null===e.getAttribute("value")?"on":e.value})});var Cn,Tn,Dn=ot.expr.attrHandle,kn=/^(?:checked|selected)$/i,Ln=rt.getSetAttribute,Nn=rt.input;ot.fn.extend({attr:function(e,t){return _t(this,ot.attr,e,t,arguments.length>1)},removeAttr:function(e){return this.each(function(){ot.removeAttr(this,e)})}}),ot.extend({attr:function(e,t,n){var r,i,o=e.nodeType;if(e&&3!==o&&8!==o&&2!==o)return typeof e.getAttribute===Tt?ot.prop(e,t,n):(1===o&&ot.isXMLDoc(e)||(t=t.toLowerCase(),r=ot.attrHooks[t]||(ot.expr.match.bool.test(t)?Tn:Cn)),void 0===n?r&&"get"in r&&null!==(i=r.get(e,t))?i:(i=ot.find.attr(e,t),null==i?void 0:i):null!==n?r&&"set"in r&&void 0!==(i=r.set(e,n,t))?i:(e.setAttribute(t,n+""),n):void ot.removeAttr(e,t))},removeAttr:function(e,t){var n,r,i=0,o=t&&t.match(xt);if(o&&1===e.nodeType)for(;n=o[i++];)r=ot.propFix[n]||n,ot.expr.match.bool.test(n)?Nn&&Ln||!kn.test(n)?e[r]=!1:e[ot.camelCase("default-"+n)]=e[r]=!1:ot.attr(e,n,""),e.removeAttribute(Ln?n:r)},attrHooks:{type:{set:function(e,t){if(!rt.radioValue&&"radio"===t&&ot.nodeName(e,"input")){var n=e.value;return e.setAttribute("type",t),n&&(e.value=n),t}}}}}),Tn={set:function(e,t,n){return t===!1?ot.removeAttr(e,n):Nn&&Ln||!kn.test(n)?e.setAttribute(!Ln&&ot.propFix[n]||n,n):e[ot.camelCase("default-"+n)]=e[n]=!0,n}},ot.each(ot.expr.match.bool.source.match(/\w+/g),function(e,t){var n=Dn[t]||ot.find.attr;Dn[t]=Nn&&Ln||!kn.test(t)?function(e,t,r){var i,o;return r||(o=Dn[t],Dn[t]=i,i=null!=n(e,t,r)?t.toLowerCase():null,Dn[t]=o),i}:function(e,t,n){return n?void 0:e[ot.camelCase("default-"+t)]?t.toLowerCase():null}}),Nn&&Ln||(ot.attrHooks.value={set:function(e,t,n){return ot.nodeName(e,"input")?void(e.defaultValue=t):Cn&&Cn.set(e,t,n)}}),Ln||(Cn={set:function(e,t,n){var r=e.getAttributeNode(n);return r||e.setAttributeNode(r=e.ownerDocument.createAttribute(n)),r.value=t+="","value"===n||t===e.getAttribute(n)?t:void 0}},Dn.id=Dn.name=Dn.coords=function(e,t,n){var r;return n?void 0:(r=e.getAttributeNode(t))&&""!==r.value?r.value:null},ot.valHooks.button={get:function(e,t){var n=e.getAttributeNode(t);return n&&n.specified?n.value:void 0},set:Cn.set},ot.attrHooks.contenteditable={set:function(e,t,n){Cn.set(e,""===t?!1:t,n)}},ot.each(["width","height"],function(e,t){ot.attrHooks[t]={set:function(e,n){return""===n?(e.setAttribute(t,"auto"),n):void 0}}})),rt.style||(ot.attrHooks.style={get:function(e){return e.style.cssText||void 0},set:function(e,t){return e.style.cssText=t+""}});var An=/^(?:input|select|textarea|button|object)$/i,_n=/^(?:a|area)$/i;ot.fn.extend({prop:function(e,t){return _t(this,ot.prop,e,t,arguments.length>1)},removeProp:function(e){return e=ot.propFix[e]||e,this.each(function(){try{this[e]=void 0,delete this[e]}catch(t){}})}}),ot.extend({propFix:{"for":"htmlFor","class":"className"},prop:function(e,t,n){var r,i,o,a=e.nodeType;if(e&&3!==a&&8!==a&&2!==a)return o=1!==a||!ot.isXMLDoc(e),o&&(t=ot.propFix[t]||t,i=ot.propHooks[t]),void 0!==n?i&&"set"in i&&void 0!==(r=i.set(e,n,t))?r:e[t]=n:i&&"get"in i&&null!==(r=i.get(e,t))?r:e[t]},propHooks:{tabIndex:{get:function(e){var t=ot.find.attr(e,"tabindex");return t?parseInt(t,10):An.test(e.nodeName)||_n.test(e.nodeName)&&e.href?0:-1}}}}),rt.hrefNormalized||ot.each(["href","src"],function(e,t){ot.propHooks[t]={get:function(e){return e.getAttribute(t,4)}}}),rt.optSelected||(ot.propHooks.selected={get:function(e){var t=e.parentNode;return t&&(t.selectedIndex,t.parentNode&&t.parentNode.selectedIndex),null}}),ot.each(["tabIndex","readOnly","maxLength","cellSpacing","cellPadding","rowSpan","colSpan","useMap","frameBorder","contentEditable"],function(){ot.propFix[this.toLowerCase()]=this}),rt.enctype||(ot.propFix.enctype="encoding");var Mn=/[\t\r\n\f]/g;ot.fn.extend({addClass:function(e){var t,n,r,i,o,a,s=0,l=this.length,u="string"==typeof e&&e;if(ot.isFunction(e))return this.each(function(t){ot(this).addClass(e.call(this,t,this.className))});if(u)for(t=(e||"").match(xt)||[];l>s;s++)if(n=this[s],r=1===n.nodeType&&(n.className?(" "+n.className+" ").replace(Mn," "):" ")){for(o=0;i=t[o++];)r.indexOf(" "+i+" ")<0&&(r+=i+" ");a=ot.trim(r),n.className!==a&&(n.className=a)}return this},removeClass:function(e){var t,n,r,i,o,a,s=0,l=this.length,u=0===arguments.length||"string"==typeof e&&e;if(ot.isFunction(e))return this.each(function(t){ot(this).removeClass(e.call(this,t,this.className))});if(u)for(t=(e||"").match(xt)||[];l>s;s++)if(n=this[s],r=1===n.nodeType&&(n.className?(" "+n.className+" ").replace(Mn," "):"")){for(o=0;i=t[o++];)for(;r.indexOf(" "+i+" ")>=0;)r=r.replace(" "+i+" "," ");a=e?ot.trim(r):"",n.className!==a&&(n.className=a)}return this},toggleClass:function(e,t){var n=typeof e;return"boolean"==typeof t&&"string"===n?t?this.addClass(e):this.removeClass(e):this.each(ot.isFunction(e)?function(n){ot(this).toggleClass(e.call(this,n,this.className,t),t)}:function(){if("string"===n)for(var t,r=0,i=ot(this),o=e.match(xt)||[];t=o[r++];)i.hasClass(t)?i.removeClass(t):i.addClass(t);else(n===Tt||"boolean"===n)&&(this.className&&ot._data(this,"__className__",this.className),this.className=this.className||e===!1?"":ot._data(this,"__className__")||"")})},hasClass:function(e){for(var t=" "+e+" ",n=0,r=this.length;r>n;n++)if(1===this[n].nodeType&&(" "+this[n].className+" ").replace(Mn," ").indexOf(t)>=0)return!0;return!1}}),ot.each("blur focus focusin focusout load resize scroll unload click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup error contextmenu".split(" "),function(e,t){ot.fn[t]=function(e,n){return arguments.length>0?this.on(t,null,e,n):this.trigger(t)}}),ot.fn.extend({hover:function(e,t){return this.mouseenter(e).mouseleave(t||e)},bind:function(e,t,n){return this.on(e,null,t,n)},unbind:function(e,t){return this.off(e,null,t)},delegate:function(e,t,n,r){return this.on(t,e,n,r)},undelegate:function(e,t,n){return 1===arguments.length?this.off(e,"**"):this.off(t,e||"**",n)}});var En=ot.now(),jn=/\?/,Hn=/(,)|(\[|{)|(}|])|"(?:[^"\\\r\n]|\\["\\\/bfnrt]|\\u[\da-fA-F]{4})*"\s*:?|true|false|null|-?(?!0\d)\d+(?:\.\d+|)(?:[eE][+-]?\d+|)/g;ot.parseJSON=function(e){if(t.JSON&&t.JSON.parse)return t.JSON.parse(e+"");var n,r=null,i=ot.trim(e+"");return i&&!ot.trim(i.replace(Hn,function(e,t,i,o){return n&&t&&(r=0),0===r?e:(n=i||t,r+=!o-!i,"")}))?Function("return "+i)():ot.error("Invalid JSON: "+e)},ot.parseXML=function(e){var n,r;if(!e||"string"!=typeof e)return null;try{t.DOMParser?(r=new DOMParser,n=r.parseFromString(e,"text/xml")):(n=new ActiveXObject("Microsoft.XMLDOM"),n.async="false",n.loadXML(e))}catch(i){n=void 0}return n&&n.documentElement&&!n.getElementsByTagName("parsererror").length||ot.error("Invalid XML: "+e),n};var In,On,Rn=/#.*$/,Pn=/([?&])_=[^&]*/,Fn=/^(.*?):[ \t]*([^\r\n]*)\r?$/gm,Wn=/^(?:about|app|app-storage|.+-extension|file|res|widget):$/,zn=/^(?:GET|HEAD)$/,Bn=/^\/\//,qn=/^([\w.+-]+:)(?:\/\/(?:[^\/?#]*@|)([^\/?#:]*)(?::(\d+)|)|)/,Vn={},Un={},Xn="*/".concat("*");try{On=location.href}catch($n){On=gt.createElement("a"),On.href="",On=On.href}In=qn.exec(On.toLowerCase())||[],ot.extend({active:0,lastModified:{},etag:{},ajaxSettings:{url:On,type:"GET",isLocal:Wn.test(In[1]),global:!0,processData:!0,async:!0,contentType:"application/x-www-form-urlencoded; charset=UTF-8",accepts:{"*":Xn,text:"text/plain",html:"text/html",xml:"application/xml, text/xml",json:"application/json, text/javascript"},contents:{xml:/xml/,html:/html/,json:/json/},responseFields:{xml:"responseXML",text:"responseText",json:"responseJSON"},converters:{"* text":String,"text html":!0,"text json":ot.parseJSON,"text xml":ot.parseXML},flatOptions:{url:!0,context:!0}},ajaxSetup:function(e,t){return t?B(B(e,ot.ajaxSettings),t):B(ot.ajaxSettings,e)},ajaxPrefilter:W(Vn),ajaxTransport:W(Un),ajax:function(e,t){function n(e,t,n,r){var i,c,v,y,x,S=t;2!==b&&(b=2,s&&clearTimeout(s),u=void 0,a=r||"",w.readyState=e>0?4:0,i=e>=200&&300>e||304===e,n&&(y=q(f,w,n)),y=V(f,y,w,i),i?(f.ifModified&&(x=w.getResponseHeader("Last-Modified"),x&&(ot.lastModified[o]=x),x=w.getResponseHeader("etag"),x&&(ot.etag[o]=x)),204===e||"HEAD"===f.type?S="nocontent":304===e?S="notmodified":(S=y.state,c=y.data,v=y.error,i=!v)):(v=S,(e||!S)&&(S="error",0>e&&(e=0))),w.status=e,w.statusText=(t||S)+"",i?p.resolveWith(d,[c,S,w]):p.rejectWith(d,[w,S,v]),w.statusCode(m),m=void 0,l&&h.trigger(i?"ajaxSuccess":"ajaxError",[w,f,i?c:v]),g.fireWith(d,[w,S]),l&&(h.trigger("ajaxComplete",[w,f]),--ot.active||ot.event.trigger("ajaxStop")))}"object"==typeof e&&(t=e,e=void 0),t=t||{};var r,i,o,a,s,l,u,c,f=ot.ajaxSetup({},t),d=f.context||f,h=f.context&&(d.nodeType||d.jquery)?ot(d):ot.event,p=ot.Deferred(),g=ot.Callbacks("once memory"),m=f.statusCode||{},v={},y={},b=0,x="canceled",w={readyState:0,getResponseHeader:function(e){var t;if(2===b){if(!c)for(c={};t=Fn.exec(a);)c[t[1].toLowerCase()]=t[2];t=c[e.toLowerCase()]}return null==t?null:t},getAllResponseHeaders:function(){return 2===b?a:null},setRequestHeader:function(e,t){var n=e.toLowerCase();return b||(e=y[n]=y[n]||e,v[e]=t),this},overrideMimeType:function(e){return b||(f.mimeType=e),this},statusCode:function(e){var t;if(e)if(2>b)for(t in e)m[t]=[m[t],e[t]];else w.always(e[w.status]);return this},abort:function(e){var t=e||x;return u&&u.abort(t),n(0,t),this}};if(p.promise(w).complete=g.add,w.success=w.done,w.error=w.fail,f.url=((e||f.url||On)+"").replace(Rn,"").replace(Bn,In[1]+"//"),f.type=t.method||t.type||f.method||f.type,f.dataTypes=ot.trim(f.dataType||"*").toLowerCase().match(xt)||[""],null==f.crossDomain&&(r=qn.exec(f.url.toLowerCase()),f.crossDomain=!(!r||r[1]===In[1]&&r[2]===In[2]&&(r[3]||("http:"===r[1]?"80":"443"))===(In[3]||("http:"===In[1]?"80":"443")))),f.data&&f.processData&&"string"!=typeof f.data&&(f.data=ot.param(f.data,f.traditional)),z(Vn,f,t,w),2===b)return w;l=f.global,l&&0===ot.active++&&ot.event.trigger("ajaxStart"),f.type=f.type.toUpperCase(),f.hasContent=!zn.test(f.type),o=f.url,f.hasContent||(f.data&&(o=f.url+=(jn.test(o)?"&":"?")+f.data,delete f.data),f.cache===!1&&(f.url=Pn.test(o)?o.replace(Pn,"$1_="+En++):o+(jn.test(o)?"&":"?")+"_="+En++)),f.ifModified&&(ot.lastModified[o]&&w.setRequestHeader("If-Modified-Since",ot.lastModified[o]),ot.etag[o]&&w.setRequestHeader("If-None-Match",ot.etag[o])),(f.data&&f.hasContent&&f.contentType!==!1||t.contentType)&&w.setRequestHeader("Content-Type",f.contentType),w.setRequestHeader("Accept",f.dataTypes[0]&&f.accepts[f.dataTypes[0]]?f.accepts[f.dataTypes[0]]+("*"!==f.dataTypes[0]?", "+Xn+"; q=0.01":""):f.accepts["*"]);for(i in f.headers)w.setRequestHeader(i,f.headers[i]);if(f.beforeSend&&(f.beforeSend.call(d,w,f)===!1||2===b))return w.abort();x="abort";for(i in{success:1,error:1,complete:1})w[i](f[i]);if(u=z(Un,f,t,w)){w.readyState=1,l&&h.trigger("ajaxSend",[w,f]),f.async&&f.timeout>0&&(s=setTimeout(function(){w.abort("timeout")},f.timeout));try{b=1,u.send(v,n)}catch(S){if(!(2>b))throw S;n(-1,S)}}else n(-1,"No Transport");return w},getJSON:function(e,t,n){return ot.get(e,t,n,"json")},getScript:function(e,t){return ot.get(e,void 0,t,"script")}}),ot.each(["get","post"],function(e,t){ot[t]=function(e,n,r,i){return ot.isFunction(n)&&(i=i||r,r=n,n=void 0),ot.ajax({url:e,type:t,dataType:i,data:n,success:r})}}),ot.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],function(e,t){ot.fn[t]=function(e){return this.on(t,e)}}),ot._evalUrl=function(e){return ot.ajax({url:e,type:"GET",dataType:"script",async:!1,global:!1,"throws":!0})},ot.fn.extend({wrapAll:function(e){if(ot.isFunction(e))return this.each(function(t){ot(this).wrapAll(e.call(this,t))});if(this[0]){var t=ot(e,this[0].ownerDocument).eq(0).clone(!0);this[0].parentNode&&t.insertBefore(this[0]),t.map(function(){for(var e=this;e.firstChild&&1===e.firstChild.nodeType;)e=e.firstChild;return e}).append(this)}return this},wrapInner:function(e){return this.each(ot.isFunction(e)?function(t){ot(this).wrapInner(e.call(this,t)) }:function(){var t=ot(this),n=t.contents();n.length?n.wrapAll(e):t.append(e)})},wrap:function(e){var t=ot.isFunction(e);return this.each(function(n){ot(this).wrapAll(t?e.call(this,n):e)})},unwrap:function(){return this.parent().each(function(){ot.nodeName(this,"body")||ot(this).replaceWith(this.childNodes)}).end()}}),ot.expr.filters.hidden=function(e){return e.offsetWidth<=0&&e.offsetHeight<=0||!rt.reliableHiddenOffsets()&&"none"===(e.style&&e.style.display||ot.css(e,"display"))},ot.expr.filters.visible=function(e){return!ot.expr.filters.hidden(e)};var Gn=/%20/g,Jn=/\[\]$/,Yn=/\r?\n/g,Kn=/^(?:submit|button|image|reset|file)$/i,Qn=/^(?:input|select|textarea|keygen)/i;ot.param=function(e,t){var n,r=[],i=function(e,t){t=ot.isFunction(t)?t():null==t?"":t,r[r.length]=encodeURIComponent(e)+"="+encodeURIComponent(t)};if(void 0===t&&(t=ot.ajaxSettings&&ot.ajaxSettings.traditional),ot.isArray(e)||e.jquery&&!ot.isPlainObject(e))ot.each(e,function(){i(this.name,this.value)});else for(n in e)U(n,e[n],t,i);return r.join("&").replace(Gn,"+")},ot.fn.extend({serialize:function(){return ot.param(this.serializeArray())},serializeArray:function(){return this.map(function(){var e=ot.prop(this,"elements");return e?ot.makeArray(e):this}).filter(function(){var e=this.type;return this.name&&!ot(this).is(":disabled")&&Qn.test(this.nodeName)&&!Kn.test(e)&&(this.checked||!Mt.test(e))}).map(function(e,t){var n=ot(this).val();return null==n?null:ot.isArray(n)?ot.map(n,function(e){return{name:t.name,value:e.replace(Yn,"\r\n")}}):{name:t.name,value:n.replace(Yn,"\r\n")}}).get()}}),ot.ajaxSettings.xhr=void 0!==t.ActiveXObject?function(){return!this.isLocal&&/^(get|post|head|put|delete|options)$/i.test(this.type)&&X()||$()}:X;var Zn=0,er={},tr=ot.ajaxSettings.xhr();t.ActiveXObject&&ot(t).on("unload",function(){for(var e in er)er[e](void 0,!0)}),rt.cors=!!tr&&"withCredentials"in tr,tr=rt.ajax=!!tr,tr&&ot.ajaxTransport(function(e){if(!e.crossDomain||rt.cors){var t;return{send:function(n,r){var i,o=e.xhr(),a=++Zn;if(o.open(e.type,e.url,e.async,e.username,e.password),e.xhrFields)for(i in e.xhrFields)o[i]=e.xhrFields[i];e.mimeType&&o.overrideMimeType&&o.overrideMimeType(e.mimeType),e.crossDomain||n["X-Requested-With"]||(n["X-Requested-With"]="XMLHttpRequest");for(i in n)void 0!==n[i]&&o.setRequestHeader(i,n[i]+"");o.send(e.hasContent&&e.data||null),t=function(n,i){var s,l,u;if(t&&(i||4===o.readyState))if(delete er[a],t=void 0,o.onreadystatechange=ot.noop,i)4!==o.readyState&&o.abort();else{u={},s=o.status,"string"==typeof o.responseText&&(u.text=o.responseText);try{l=o.statusText}catch(c){l=""}s||!e.isLocal||e.crossDomain?1223===s&&(s=204):s=u.text?200:404}u&&r(s,l,u,o.getAllResponseHeaders())},e.async?4===o.readyState?setTimeout(t):o.onreadystatechange=er[a]=t:t()},abort:function(){t&&t(void 0,!0)}}}}),ot.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/(?:java|ecma)script/},converters:{"text script":function(e){return ot.globalEval(e),e}}}),ot.ajaxPrefilter("script",function(e){void 0===e.cache&&(e.cache=!1),e.crossDomain&&(e.type="GET",e.global=!1)}),ot.ajaxTransport("script",function(e){if(e.crossDomain){var t,n=gt.head||ot("head")[0]||gt.documentElement;return{send:function(r,i){t=gt.createElement("script"),t.async=!0,e.scriptCharset&&(t.charset=e.scriptCharset),t.src=e.url,t.onload=t.onreadystatechange=function(e,n){(n||!t.readyState||/loaded|complete/.test(t.readyState))&&(t.onload=t.onreadystatechange=null,t.parentNode&&t.parentNode.removeChild(t),t=null,n||i(200,"success"))},n.insertBefore(t,n.firstChild)},abort:function(){t&&t.onload(void 0,!0)}}}});var nr=[],rr=/(=)\?(?=&|$)|\?\?/;ot.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var e=nr.pop()||ot.expando+"_"+En++;return this[e]=!0,e}}),ot.ajaxPrefilter("json jsonp",function(e,n,r){var i,o,a,s=e.jsonp!==!1&&(rr.test(e.url)?"url":"string"==typeof e.data&&!(e.contentType||"").indexOf("application/x-www-form-urlencoded")&&rr.test(e.data)&&"data");return s||"jsonp"===e.dataTypes[0]?(i=e.jsonpCallback=ot.isFunction(e.jsonpCallback)?e.jsonpCallback():e.jsonpCallback,s?e[s]=e[s].replace(rr,"$1"+i):e.jsonp!==!1&&(e.url+=(jn.test(e.url)?"&":"?")+e.jsonp+"="+i),e.converters["script json"]=function(){return a||ot.error(i+" was not called"),a[0]},e.dataTypes[0]="json",o=t[i],t[i]=function(){a=arguments},r.always(function(){t[i]=o,e[i]&&(e.jsonpCallback=n.jsonpCallback,nr.push(i)),a&&ot.isFunction(o)&&o(a[0]),a=o=void 0}),"script"):void 0}),ot.parseHTML=function(e,t,n){if(!e||"string"!=typeof e)return null;"boolean"==typeof t&&(n=t,t=!1),t=t||gt;var r=dt.exec(e),i=!n&&[];return r?[t.createElement(r[1])]:(r=ot.buildFragment([e],t,i),i&&i.length&&ot(i).remove(),ot.merge([],r.childNodes))};var ir=ot.fn.load;ot.fn.load=function(e,t,n){if("string"!=typeof e&&ir)return ir.apply(this,arguments);var r,i,o,a=this,s=e.indexOf(" ");return s>=0&&(r=ot.trim(e.slice(s,e.length)),e=e.slice(0,s)),ot.isFunction(t)?(n=t,t=void 0):t&&"object"==typeof t&&(o="POST"),a.length>0&&ot.ajax({url:e,type:o,dataType:"html",data:t}).done(function(e){i=arguments,a.html(r?ot("<div>").append(ot.parseHTML(e)).find(r):e)}).complete(n&&function(e,t){a.each(n,i||[e.responseText,t,e])}),this},ot.expr.filters.animated=function(e){return ot.grep(ot.timers,function(t){return e===t.elem}).length};var or=t.document.documentElement;ot.offset={setOffset:function(e,t,n){var r,i,o,a,s,l,u,c=ot.css(e,"position"),f=ot(e),d={};"static"===c&&(e.style.position="relative"),s=f.offset(),o=ot.css(e,"top"),l=ot.css(e,"left"),u=("absolute"===c||"fixed"===c)&&ot.inArray("auto",[o,l])>-1,u?(r=f.position(),a=r.top,i=r.left):(a=parseFloat(o)||0,i=parseFloat(l)||0),ot.isFunction(t)&&(t=t.call(e,n,s)),null!=t.top&&(d.top=t.top-s.top+a),null!=t.left&&(d.left=t.left-s.left+i),"using"in t?t.using.call(e,d):f.css(d)}},ot.fn.extend({offset:function(e){if(arguments.length)return void 0===e?this:this.each(function(t){ot.offset.setOffset(this,e,t)});var t,n,r={top:0,left:0},i=this[0],o=i&&i.ownerDocument;if(o)return t=o.documentElement,ot.contains(t,i)?(typeof i.getBoundingClientRect!==Tt&&(r=i.getBoundingClientRect()),n=G(o),{top:r.top+(n.pageYOffset||t.scrollTop)-(t.clientTop||0),left:r.left+(n.pageXOffset||t.scrollLeft)-(t.clientLeft||0)}):r},position:function(){if(this[0]){var e,t,n={top:0,left:0},r=this[0];return"fixed"===ot.css(r,"position")?t=r.getBoundingClientRect():(e=this.offsetParent(),t=this.offset(),ot.nodeName(e[0],"html")||(n=e.offset()),n.top+=ot.css(e[0],"borderTopWidth",!0),n.left+=ot.css(e[0],"borderLeftWidth",!0)),{top:t.top-n.top-ot.css(r,"marginTop",!0),left:t.left-n.left-ot.css(r,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){for(var e=this.offsetParent||or;e&&!ot.nodeName(e,"html")&&"static"===ot.css(e,"position");)e=e.offsetParent;return e||or})}}),ot.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(e,t){var n=/Y/.test(t);ot.fn[e]=function(r){return _t(this,function(e,r,i){var o=G(e);return void 0===i?o?t in o?o[t]:o.document.documentElement[r]:e[r]:void(o?o.scrollTo(n?ot(o).scrollLeft():i,n?i:ot(o).scrollTop()):e[r]=i)},e,r,arguments.length,null)}}),ot.each(["top","left"],function(e,t){ot.cssHooks[t]=L(rt.pixelPosition,function(e,n){return n?(n=nn(e,t),on.test(n)?ot(e).position()[t]+"px":n):void 0})}),ot.each({Height:"height",Width:"width"},function(e,t){ot.each({padding:"inner"+e,content:t,"":"outer"+e},function(n,r){ot.fn[r]=function(r,i){var o=arguments.length&&(n||"boolean"!=typeof r),a=n||(r===!0||i===!0?"margin":"border");return _t(this,function(t,n,r){var i;return ot.isWindow(t)?t.document.documentElement["client"+e]:9===t.nodeType?(i=t.documentElement,Math.max(t.body["scroll"+e],i["scroll"+e],t.body["offset"+e],i["offset"+e],i["client"+e])):void 0===r?ot.css(t,n,a):ot.style(t,n,r,a)},t,o?r:void 0,o,null)}})}),ot.fn.size=function(){return this.length},ot.fn.andSelf=ot.fn.addBack,"function"==typeof e&&e.amd&&e("jquery",[],function(){return ot});var ar=t.jQuery,sr=t.$;return ot.noConflict=function(e){return t.$===ot&&(t.$=sr),e&&t.jQuery===ot&&(t.jQuery=ar),ot},typeof n===Tt&&(t.jQuery=t.$=ot),ot})},{}],8:[function(e,t){t.exports=e(7)},{}],9:[function(t,n){!function(t){function r(){try{return u in t&&t[u]}catch(e){return!1}}function i(e){return function(){var t=Array.prototype.slice.call(arguments,0);t.unshift(a),f.appendChild(a),a.addBehavior("#default#userData"),a.load(u);var n=e.apply(s,t);return f.removeChild(a),n}}function o(e){return e.replace(/^d/,"___$&").replace(p,"___")}var a,s={},l=t.document,u="localStorage",c="script";if(s.disabled=!1,s.set=function(){},s.get=function(){},s.remove=function(){},s.clear=function(){},s.transact=function(e,t,n){var r=s.get(e);null==n&&(n=t,t=null),"undefined"==typeof r&&(r=t||{}),n(r),s.set(e,r)},s.getAll=function(){},s.forEach=function(){},s.serialize=function(e){return JSON.stringify(e)},s.deserialize=function(e){if("string"!=typeof e)return void 0;try{return JSON.parse(e)}catch(t){return e||void 0}},r())a=t[u],s.set=function(e,t){return void 0===t?s.remove(e):(a.setItem(e,s.serialize(t)),t)},s.get=function(e){return s.deserialize(a.getItem(e))},s.remove=function(e){a.removeItem(e)},s.clear=function(){a.clear()},s.getAll=function(){var e={};return s.forEach(function(t,n){e[t]=n}),e},s.forEach=function(e){for(var t=0;t<a.length;t++){var n=a.key(t);e(n,s.get(n))}};else if(l.documentElement.addBehavior){var f,d;try{d=new ActiveXObject("htmlfile"),d.open(),d.write("<"+c+">document.w=window</"+c+'><iframe src="/favicon.ico"></iframe>'),d.close(),f=d.w.frames[0].document,a=f.createElement("div")}catch(h){a=l.createElement("div"),f=l.body}var p=new RegExp("[!\"#$%&'()*+,/\\\\:;<=>?@[\\]^`{|}~]","g");s.set=i(function(e,t,n){return t=o(t),void 0===n?s.remove(t):(e.setAttribute(t,s.serialize(n)),e.save(u),n)}),s.get=i(function(e,t){return t=o(t),s.deserialize(e.getAttribute(t))}),s.remove=i(function(e,t){t=o(t),e.removeAttribute(t),e.save(u)}),s.clear=i(function(e){var t=e.XMLDocument.documentElement.attributes;e.load(u);for(var n,r=0;n=t[r];r++)e.removeAttribute(n.name);e.save(u)}),s.getAll=function(){var e={};return s.forEach(function(t,n){e[t]=n}),e},s.forEach=i(function(e,t){for(var n,r=e.XMLDocument.documentElement.attributes,i=0;n=r[i];++i)t(n.name,s.deserialize(e.getAttribute(n.name)))})}try{var g="__storejs__";s.set(g,g),s.get(g)!=g&&(s.disabled=!0),s.remove(g)}catch(h){s.disabled=!0}s.enabled=!s.disabled,"undefined"!=typeof n&&n.exports&&this.module!==n?n.exports=s:"function"==typeof e&&e.amd?e(s):t.store=s}(Function("return this")())},{}],10:[function(e,t){t.exports=function(t){return e("jquery")(t).closest("[id]").attr("id")}},{jquery:8}],11:[function(e,t){var n=e("jquery"),r=t.exports={cross:'<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" width="30px" height="30px" viewBox="0 0 100 100" enable-background="new 0 0 100 100" xml:space="preserve"><g> <path d="M83.288,88.13c-2.114,2.112-5.575,2.112-7.689,0L53.659,66.188c-2.114-2.112-5.573-2.112-7.687,0L24.251,87.907 c-2.113,2.114-5.571,2.114-7.686,0l-4.693-4.691c-2.114-2.114-2.114-5.573,0-7.688l21.719-21.721c2.113-2.114,2.113-5.573,0-7.686 L11.872,24.4c-2.114-2.113-2.114-5.571,0-7.686l4.842-4.842c2.113-2.114,5.571-2.114,7.686,0L46.12,33.591 c2.114,2.114,5.572,2.114,7.688,0l21.721-21.719c2.114-2.114,5.573-2.114,7.687,0l4.695,4.695c2.111,2.113,2.111,5.571-0.003,7.686 L66.188,45.973c-2.112,2.114-2.112,5.573,0,7.686L88.13,75.602c2.112,2.111,2.112,5.572,0,7.687L83.288,88.13z"/></g></svg>',check:'<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" width="30px" height="30px" viewBox="0 0 100 100" enable-background="new 0 0 100 100" xml:space="preserve"><path fill="#000000" d="M14.301,49.982l22.606,17.047L84.361,4.903c2.614-3.733,7.76-4.64,11.493-2.026l0.627,0.462 c3.732,2.614,4.64,7.758,2.025,11.492l-51.783,79.77c-1.955,2.791-3.896,3.762-7.301,3.988c-3.405,0.225-5.464-1.039-7.508-3.084 L2.447,61.814c-3.263-3.262-3.263-8.553,0-11.814l0.041-0.019C5.75,46.718,11.039,46.718,14.301,49.982z"/></svg>',unsorted:'<svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" version="1.1" id="Layer_1" x="0px" y="0px" width="100%" height="100%" viewBox="0 0 54.552711 113.78478" enable-background="new 0 0 100 100" xml:space="preserve"><g id="g5" transform="matrix(-0.70522156,-0.70898699,-0.70898699,0.70522156,97.988199,55.081205)"><path style="fill:#000000" inkscape:connector-curvature="0" id="path7" d="M 57.911,66.915 45.808,55.063 42.904,52.238 31.661,41.25 31.435,41.083 31.131,40.775 30.794,40.523 30.486,40.3 30.069,40.05 29.815,39.911 29.285,39.659 29.089,39.576 28.474,39.326 28.363,39.297 H 28.336 L 27.665,39.128 27.526,39.1 26.94,38.99 26.714,38.961 26.212,38.934 h -0.31 -0.444 l -0.339,0.027 c -1.45,0.139 -2.876,0.671 -4.11,1.564 l -0.223,0.141 -0.279,0.25 -0.335,0.308 -0.054,0.029 -0.171,0.194 -0.334,0.364 -0.224,0.279 -0.25,0.336 -0.225,0.362 -0.192,0.308 -0.197,0.421 -0.142,0.279 -0.193,0.477 -0.084,0.222 -12.441,38.414 c -0.814,2.458 -0.313,5.029 1.115,6.988 v 0.026 l 0.418,0.532 0.17,0.165 0.251,0.281 0.084,0.079 0.283,0.281 0.25,0.194 0.474,0.367 0.083,0.053 c 2.015,1.371 4.641,1.874 7.131,1.094 L 55.228,80.776 c 4.303,-1.342 6.679,-5.814 5.308,-10.006 -0.387,-1.259 -1.086,-2.35 -1.979,-3.215 l -0.368,-0.337 -0.278,-0.303 z m -6.318,5.896 0.079,0.114 -37.369,11.57 11.854,-36.538 10.565,10.317 2.876,2.825 11.995,11.712 z" /></g><path style="fill:#000000" inkscape:connector-curvature="0" id="path7-9" d="m 8.8748339,52.571766 16.9382111,-0.222584 4.050851,-0.06665 15.719154,-0.222166 0.27778,-0.04246 0.43276,0.0017 0.41632,-0.06121 0.37532,-0.0611 0.47132,-0.119342 0.27767,-0.08206 0.55244,-0.198047 0.19707,-0.08043 0.61095,-0.259721 0.0988,-0.05825 0.019,-0.01914 0.59303,-0.356548 0.11787,-0.0788 0.49125,-0.337892 0.17994,-0.139779 0.37317,-0.336871 0.21862,-0.219786 0.31311,-0.31479 0.21993,-0.259387 c 0.92402,-1.126057 1.55249,-2.512251 1.78961,-4.016904 l 0.0573,-0.25754 0.0195,-0.374113 0.0179,-0.454719 0.0175,-0.05874 -0.0169,-0.258049 -0.0225,-0.493503 -0.0398,-0.355569 -0.0619,-0.414201 -0.098,-0.414812 -0.083,-0.353334 L 53.23955,41.1484 53.14185,40.850967 52.93977,40.377742 52.84157,40.161628 34.38021,4.2507375 C 33.211567,1.9401875 31.035446,0.48226552 28.639484,0.11316952 l -0.01843,-0.01834 -0.671963,-0.07882 -0.236871,0.0042 L 27.335984,-4.7826577e-7 27.220736,0.00379952 l -0.398804,0.0025 -0.313848,0.04043 -0.594474,0.07724 -0.09611,0.02147 C 23.424549,0.60716252 21.216017,2.1142355 20.013025,4.4296865 L 0.93967491,40.894479 c -2.08310801,3.997178 -0.588125,8.835482 3.35080799,10.819749 1.165535,0.613495 2.43199,0.88731 3.675026,0.864202 l 0.49845,-0.02325 0.410875,0.01658 z M 9.1502369,43.934401 9.0136999,43.910011 27.164145,9.2564625 44.70942,43.42818 l -14.765289,0.214677 -4.031106,0.0468 -16.7627881,0.244744 z" /></svg>',sortDesc:'<svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" version="1.1" id="Layer_1" x="0px" y="0px" width="100%" height="100%" viewBox="0 0 54.552711 113.78478" enable-background="new 0 0 100 100" xml:space="preserve"><g id="g5" transform="matrix(-0.70522156,-0.70898699,-0.70898699,0.70522156,97.988199,55.081205)"><path style="fill:#000000" inkscape:connector-curvature="0" id="path7" d="M 57.911,66.915 45.808,55.063 42.904,52.238 31.661,41.25 31.435,41.083 31.131,40.775 30.794,40.523 30.486,40.3 30.069,40.05 29.815,39.911 29.285,39.659 29.089,39.576 28.474,39.326 28.363,39.297 H 28.336 L 27.665,39.128 27.526,39.1 26.94,38.99 26.714,38.961 26.212,38.934 h -0.31 -0.444 l -0.339,0.027 c -1.45,0.139 -2.876,0.671 -4.11,1.564 l -0.223,0.141 -0.279,0.25 -0.335,0.308 -0.054,0.029 -0.171,0.194 -0.334,0.364 -0.224,0.279 -0.25,0.336 -0.225,0.362 -0.192,0.308 -0.197,0.421 -0.142,0.279 -0.193,0.477 -0.084,0.222 -12.441,38.414 c -0.814,2.458 -0.313,5.029 1.115,6.988 v 0.026 l 0.418,0.532 0.17,0.165 0.251,0.281 0.084,0.079 0.283,0.281 0.25,0.194 0.474,0.367 0.083,0.053 c 2.015,1.371 4.641,1.874 7.131,1.094 L 55.228,80.776 c 4.303,-1.342 6.679,-5.814 5.308,-10.006 -0.387,-1.259 -1.086,-2.35 -1.979,-3.215 l -0.368,-0.337 -0.278,-0.303 z m -6.318,5.896 0.079,0.114 -37.369,11.57 11.854,-36.538 10.565,10.317 2.876,2.825 11.995,11.712 z" /></g><path style="fill:#000000" inkscape:connector-curvature="0" id="path9" d="m 27.813273,0.12823506 0.09753,0.02006 c 2.39093,0.458209 4.599455,1.96811104 5.80244,4.28639004 L 52.785897,40.894525 c 2.088044,4.002139 0.590949,8.836902 -3.348692,10.821875 -1.329078,0.688721 -2.766603,0.943695 -4.133174,0.841768 l -0.454018,0.02 L 27.910392,52.354171 23.855313,52.281851 8.14393,52.061827 7.862608,52.021477 7.429856,52.021738 7.014241,51.959818 6.638216,51.900838 6.164776,51.779369 5.889216,51.699439 5.338907,51.500691 5.139719,51.419551 4.545064,51.145023 4.430618,51.105123 4.410168,51.084563 3.817138,50.730843 3.693615,50.647783 3.207314,50.310611 3.028071,50.174369 2.652795,49.833957 2.433471,49.613462 2.140099,49.318523 1.901127,49.041407 C 0.97781,47.916059 0.347935,46.528448 0.11153,45.021676 L 0.05352,44.766255 0.05172,44.371683 0.01894,43.936017 0,43.877277 0.01836,43.62206 0.03666,43.122889 0.0765,42.765905 0.13912,42.352413 0.23568,41.940425 0.32288,41.588517 0.481021,41.151945 0.579391,40.853806 0.77369,40.381268 0.876097,40.162336 19.338869,4.2542801 c 1.172169,-2.308419 3.34759,-3.76846504 5.740829,-4.17716604 l 0.01975,0.01985 0.69605,-0.09573 0.218437,0.0225 0.490791,-0.02132 0.39809,0.0046 0.315972,0.03973 0.594462,0.08149 z" /></svg>',sortAsc:'<svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" version="1.1" id="Layer_1" x="0px" y="0px" width="100%" height="100%" viewBox="0 0 54.552711 113.78478" enable-background="new 0 0 100 100" xml:space="preserve"><g id="g5" transform="matrix(-0.70522156,0.70898699,-0.70898699,-0.70522156,97.988199,58.704807)"><path style="fill:#000000" inkscape:connector-curvature="0" id="path7" d="M 57.911,66.915 45.808,55.063 42.904,52.238 31.661,41.25 31.435,41.083 31.131,40.775 30.794,40.523 30.486,40.3 30.069,40.05 29.815,39.911 29.285,39.659 29.089,39.576 28.474,39.326 28.363,39.297 H 28.336 L 27.665,39.128 27.526,39.1 26.94,38.99 26.714,38.961 26.212,38.934 h -0.31 -0.444 l -0.339,0.027 c -1.45,0.139 -2.876,0.671 -4.11,1.564 l -0.223,0.141 -0.279,0.25 -0.335,0.308 -0.054,0.029 -0.171,0.194 -0.334,0.364 -0.224,0.279 -0.25,0.336 -0.225,0.362 -0.192,0.308 -0.197,0.421 -0.142,0.279 -0.193,0.477 -0.084,0.222 -12.441,38.414 c -0.814,2.458 -0.313,5.029 1.115,6.988 v 0.026 l 0.418,0.532 0.17,0.165 0.251,0.281 0.084,0.079 0.283,0.281 0.25,0.194 0.474,0.367 0.083,0.053 c 2.015,1.371 4.641,1.874 7.131,1.094 L 55.228,80.776 c 4.303,-1.342 6.679,-5.814 5.308,-10.006 -0.387,-1.259 -1.086,-2.35 -1.979,-3.215 l -0.368,-0.337 -0.278,-0.303 z m -6.318,5.896 0.079,0.114 -37.369,11.57 11.854,-36.538 10.565,10.317 2.876,2.825 11.995,11.712 z" /></g><path style="fill:#000000" inkscape:connector-curvature="0" id="path9" d="m 27.813273,113.65778 0.09753,-0.0201 c 2.39093,-0.45821 4.599455,-1.96811 5.80244,-4.28639 L 52.785897,72.891487 c 2.088044,-4.002139 0.590949,-8.836902 -3.348692,-10.821875 -1.329078,-0.688721 -2.766603,-0.943695 -4.133174,-0.841768 l -0.454018,-0.02 -16.939621,0.223997 -4.055079,0.07232 -15.711383,0.220024 -0.281322,0.04035 -0.432752,-2.61e-4 -0.415615,0.06192 -0.376025,0.05898 -0.47344,0.121469 -0.27556,0.07993 -0.550309,0.198748 -0.199188,0.08114 -0.594655,0.274528 -0.114446,0.0399 -0.02045,0.02056 -0.59303,0.35372 -0.123523,0.08306 -0.486301,0.337172 -0.179243,0.136242 -0.375276,0.340412 -0.219324,0.220495 -0.293372,0.294939 -0.238972,0.277116 C 0.97781,65.869953 0.347935,67.257564 0.11153,68.764336 L 0.05352,69.019757 0.05172,69.414329 0.01894,69.849995 0,69.908735 l 0.01836,0.255217 0.0183,0.499171 0.03984,0.356984 0.06262,0.413492 0.09656,0.411988 0.0872,0.351908 0.158141,0.436572 0.09837,0.298139 0.194299,0.472538 0.102407,0.218932 18.462772,35.908054 c 1.172169,2.30842 3.34759,3.76847 5.740829,4.17717 l 0.01975,-0.0199 0.69605,0.0957 0.218437,-0.0225 0.490791,0.0213 0.39809,-0.005 0.315972,-0.0397 0.594462,-0.0815 z" /></svg>',loader:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" width="100%" height="100%" fill="black"> <circle cx="16" cy="3" r="0"> <animate attributeName="r" values="0;3;0;0" dur="1s" repeatCount="indefinite" begin="0" keySplines="0.2 0.2 0.4 0.8;0.2 0.2 0.4 0.8;0.2 0.2 0.4 0.8" calcMode="spline" /> </circle> <circle transform="rotate(45 16 16)" cx="16" cy="3" r="0"> <animate attributeName="r" values="0;3;0;0" dur="1s" repeatCount="indefinite" begin="0.125s" keySplines="0.2 0.2 0.4 0.8;0.2 0.2 0.4 0.8;0.2 0.2 0.4 0.8" calcMode="spline" /> </circle> <circle transform="rotate(90 16 16)" cx="16" cy="3" r="0"> <animate attributeName="r" values="0;3;0;0" dur="1s" repeatCount="indefinite" begin="0.25s" keySplines="0.2 0.2 0.4 0.8;0.2 0.2 0.4 0.8;0.2 0.2 0.4 0.8" calcMode="spline" /> </circle> <circle transform="rotate(135 16 16)" cx="16" cy="3" r="0"> <animate attributeName="r" values="0;3;0;0" dur="1s" repeatCount="indefinite" begin="0.375s" keySplines="0.2 0.2 0.4 0.8;0.2 0.2 0.4 0.8;0.2 0.2 0.4 0.8" calcMode="spline" /> </circle> <circle transform="rotate(180 16 16)" cx="16" cy="3" r="0"> <animate attributeName="r" values="0;3;0;0" dur="1s" repeatCount="indefinite" begin="0.5s" keySplines="0.2 0.2 0.4 0.8;0.2 0.2 0.4 0.8;0.2 0.2 0.4 0.8" calcMode="spline" /> </circle> <circle transform="rotate(225 16 16)" cx="16" cy="3" r="0"> <animate attributeName="r" values="0;3;0;0" dur="1s" repeatCount="indefinite" begin="0.625s" keySplines="0.2 0.2 0.4 0.8;0.2 0.2 0.4 0.8;0.2 0.2 0.4 0.8" calcMode="spline" /> </circle> <circle transform="rotate(270 16 16)" cx="16" cy="3" r="0"> <animate attributeName="r" values="0;3;0;0" dur="1s" repeatCount="indefinite" begin="0.75s" keySplines="0.2 0.2 0.4 0.8;0.2 0.2 0.4 0.8;0.2 0.2 0.4 0.8" calcMode="spline" /> </circle> <circle transform="rotate(315 16 16)" cx="16" cy="3" r="0"> <animate attributeName="r" values="0;3;0;0" dur="1s" repeatCount="indefinite" begin="0.875s" keySplines="0.2 0.2 0.4 0.8;0.2 0.2 0.4 0.8;0.2 0.2 0.4 0.8" calcMode="spline" /> </circle> <circle transform="rotate(180 16 16)" cx="16" cy="3" r="0"> <animate attributeName="r" values="0;3;0;0" dur="1s" repeatCount="indefinite" begin="0.5s" keySplines="0.2 0.2 0.4 0.8;0.2 0.2 0.4 0.8;0.2 0.2 0.4 0.8" calcMode="spline" /> </circle></svg>',query:'<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" width="100%" height="100%" viewBox="0 0 80 80" enable-background="new 0 0 80 80" xml:space="preserve"><g id="Layer_1"></g><g id="Layer_2"> <path d="M64.622,2.411H14.995c-6.627,0-12,5.373-12,12v49.897c0,6.627,5.373,12,12,12h49.627c6.627,0,12-5.373,12-12V14.411 C76.622,7.783,71.249,2.411,64.622,2.411z M24.125,63.906V15.093L61,39.168L24.125,63.906z"/></g></svg>',queryInvalid:'<svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" version="1.1" x="0px" y="0px" width="100%" height="100%" viewBox="0 0 73.627 73.897" enable-background="new 0 0 80 80" xml:space="preserve" ><g id="Layer_1" transform="translate(-2.995,-2.411)" /><g id="Layer_2" transform="translate(-2.995,-2.411)"><path d="M 64.622,2.411 H 14.995 c -6.627,0 -12,5.373 -12,12 v 49.897 c 0,6.627 5.373,12 12,12 h 49.627 c 6.627,0 12,-5.373 12,-12 V 14.411 c 0,-6.628 -5.373,-12 -12,-12 z M 24.125,63.906 V 15.093 L 61,39.168 24.125,63.906 z" id="path6" inkscape:connector-curvature="0" /></g><g transform="matrix(0.76805408,0,0,0.76805408,-0.90231954,-2.0060895)" id="g3"><path style="fill:#c02608;fill-opacity:1" inkscape:connector-curvature="0" d="m 88.184,81.468 c 1.167,1.167 1.167,3.075 0,4.242 l -2.475,2.475 c -1.167,1.167 -3.076,1.167 -4.242,0 l -69.65,-69.65 c -1.167,-1.167 -1.167,-3.076 0,-4.242 l 2.476,-2.476 c 1.167,-1.167 3.076,-1.167 4.242,0 l 69.649,69.651 z" id="path5" /></g><g transform="matrix(0.76805408,0,0,0.76805408,-0.90231954,-2.0060895)" id="g7"><path style="fill:#c02608;fill-opacity:1" inkscape:connector-curvature="0" d="m 18.532,88.184 c -1.167,1.166 -3.076,1.166 -4.242,0 l -2.475,-2.475 c -1.167,-1.166 -1.167,-3.076 0,-4.242 l 69.65,-69.651 c 1.167,-1.167 3.075,-1.167 4.242,0 l 2.476,2.476 c 1.166,1.167 1.166,3.076 0,4.242 l -69.651,69.65 z" id="path9" /></g></svg>',download:'<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" baseProfile="tiny" x="0px" y="0px" width="100%" height="100%" viewBox="0 0 100 100" xml:space="preserve"><g id="Captions"></g><g id="Your_Icon"> <path fill-rule="evenodd" fill="#000000" d="M88,84v-2c0-2.961-0.859-4-4-4H16c-2.961,0-4,0.98-4,4v2c0,3.102,1.039,4,4,4h68 C87.02,88,88,87.039,88,84z M58,12H42c-5,0-6,0.941-6,6v22H16l34,34l34-34H64V18C64,12.941,62.939,12,58,12z"/></g></svg>',share:'<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" id="Icons" x="0px" y="0px" width="100%" height="100%" viewBox="0 0 100 100" style="enable-background:new 0 0 100 100;" xml:space="preserve"><path id="ShareThis" d="M36.764,50c0,0.308-0.07,0.598-0.088,0.905l32.247,16.119c2.76-2.338,6.293-3.797,10.195-3.797 C87.89,63.228,95,70.338,95,79.109C95,87.89,87.89,95,79.118,95c-8.78,0-15.882-7.11-15.882-15.891c0-0.316,0.07-0.598,0.088-0.905 L31.077,62.085c-2.769,2.329-6.293,3.788-10.195,3.788C12.11,65.873,5,58.771,5,50c0-8.78,7.11-15.891,15.882-15.891 c3.902,0,7.427,1.468,10.195,3.797l32.247-16.119c-0.018-0.308-0.088-0.598-0.088-0.914C63.236,12.11,70.338,5,79.118,5 C87.89,5,95,12.11,95,20.873c0,8.78-7.11,15.891-15.882,15.891c-3.911,0-7.436-1.468-10.195-3.806L36.676,49.086 C36.693,49.394,36.764,49.684,36.764,50z"/></svg>',draw:function(e,t){if(e){var i=r.getElement(t);i&&n(e).append(i)}},getElement:function(e){var t=e.id?r[e.id]:e.value;if(t&&0==t.indexOf("<svg")){var i=new DOMParser,o=i.parseFromString(t,"text/xml"),a=o.documentElement,s=n("<div></div>").css("display","inline-block");return e.width||(e.width="100%"),e.height||(e.height="100%"),s.width(e.width).height(e.height),s.append(a)}return!1}}},{jquery:8}],12:[function(e,t){window.console=window.console||{log:function(){}},t.exports={storage:e("./storage.js"),determineId:e("./determineId.js"),imgs:e("./imgs.js")}},{"./determineId.js":10,"./imgs.js":11,"./storage.js":13}],13:[function(e,t){{var n=e("store"),r={day:function(){return 864e5},month:function(){30*r.day()},year:function(){12*r.month()}};t.exports={set:function(e,t,i){"string"==typeof i&&(i=r[i]()),n.set(e,{val:t,exp:i,time:(new Date).getTime()})},get:function(e){var t=n.get(e);return t?t.exp&&(new Date).getTime()-t.time>t.exp?null:t.val:null}}}},{store:9}],14:[function(e,t){t.exports={name:"yasgui-yasr",version:"1.1.5",description:"Yet Another SPARQL Resultset GUI",main:"src/main.js",licenses:[{type:"MIT",url:"http://yasgui.github.io/license.txt"}],author:"Laurens Rietveld",homepage:"http://yasgui.github.io/YASR",devDependencies:{gulp:"~3.6.0","vinyl-source-stream":"~0.1.1",watchify:"^0.6.4","gulp-uglify":"^0.2.1","gulp-concat":"^2.2.0","gulp-minify-css":"^0.3.0","gulp-browserify":"^0.5.0","vinyl-buffer":"0.0.0",browserify:"^3.38.1",express:"^3.5.1","connect-livereload":"^0.3.2","gulp-livereload":"^1.3.1","gulp-util":"^2.2.14","gulp-connect":"^2.0.5","gulp-notify":"^1.2.5","gulp-embedlr":"^0.5.2","gulp-changed":"^0.3.0","gulp-imagemin":"^0.2.0","gulp-open":"^0.2.8",connect:"^2.14.4","gulp-debug":"^0.3.0",amplify:"0.0.11","twitter-bootstrap-3.0.0":"^3.0.0","gulp-yuidoc":"^0.1.2","gulp-jsvalidate":"^0.2.0"},keywords:["JavaScript","SPARQL","Editor","Semantic Web","Linked Data"],maintainers:[{name:"Laurens Rietveld",email:"laurens.rietveld@gmail.com",web:"http://laurensrietveld.nl"}],repository:{type:"git",url:"https://github.com/YASGUI/YASR.git"},dependencies:{"browserify-shim":"~3.2.0",jquery:"~ 1.11.0",codemirror:"^4.2.0","yasgui-utils":"^1.0.0"},"browserify-shim":{"twitter-bootstrap-3.0.0":"bootstrap"},browserify:{transform:["browserify-shim"]}}},{}],15:[function(e,t){t.exports=function(e){var t='"',n=",",r="\n",i=e.head.vars,o=e.results.bindings,a=function(){for(var e=0;e<i.length;e++)u(i[e]);csvString+=r},s=function(){for(var e=0;e<o.length;e++)l(o[e]),csvString+=r},l=function(e){for(var t=0;t<i.length;t++){var n=i[t];u(e.hasOwnProperty(n)?e[n].value:"")}},u=function(e){e.replace(t,t+t),c(e)&&(e=t+e+t),csvString+=" "+e+" "+n},c=function(e){var r=!1;return e.match("[\\w|"+n+"|"+t+"]")&&(r=!0),r};return csvString="",a(),s(),csvString}},{}],16:[function(e,t){var n=e("jquery"),r=t.exports=function(e,t,i){var o={};return o.container=n("<div class='booleanResult'></div>"),o.options=n.extend(!0,{},r.defaults,i),o.parent=t,o.yasr=e,o.draw=function(){r.draw(o)},o.name=null,o.hideFromSelection=!0,o.canHandleResults=function(e){return e.results.getBoolean()===!0||0==e.results.getBoolean()},o.getPriority=10,o};r.draw=function(t){t.container.empty().appendTo(t.parent);var r=t.yasr.results.getBoolean(),i=null,o=null;r===!0?(i="check",o="True"):r===!1?(i="cross",o="False"):(t.container.width("140"),o="Could not find boolean value in response"),i&&e("yasgui-utils").imgs.draw(t.container,{width:25,height:25,id:i}),n("<span></span>").text(o).appendTo(t.container)},r.version={"YASR-boolean":e("../package.json").version,jquery:n.fn.jquery}},{"../package.json":14,jquery:7,"yasgui-utils":12}],17:[function(e,t){var n=e("jquery"),r=t.exports=function(e,t,i){var o={};return o.container=n("<div class='errorResult'></div>"),o.options=n.extend(!0,{},r.defaults,i),o.parent=t,o.yasr=e,o.draw=function(){o.container.empty().appendTo(o.parent),n("<span class='exception'>ERROR</span>").appendTo(o.container),n("<p></p>").html(o.yasr.results.getException()).appendTo(o.container)},o.name=null,o.hideFromSelection=!0,o.canHandleResults=function(e){return e.results.getException()||!1},o.getPriority=20,o};r.defaults={}},{jquery:7}],18:[function(e,t){"use strict";var n=e("jquery"),r=e("yasgui-utils");console=console||{log:function(){}};var i=t.exports=function(t,o,a){var s={};s.options=n.extend(!0,{},i.defaults,o),s.container=n("<div class='yasr'></div>").appendTo(t),s.header=n("<div class='yasr_header'></div>").appendTo(s.container),s.resultsContainer=n("<div class='yasr_results'></div>").appendTo(s.container),s.draw=function(e){if(!s.results)return!1;if(e||(e=s.options.output),e in s.plugins&&s.plugins[e].canHandleResults(s))return n(s.resultsContainer).empty(),s.plugins[e].draw(),!0; var t=null,r=-1;for(var i in s.plugins)if(s.plugins[i].canHandleResults(s)){var o=s.plugins[i].getPriority;"function"==typeof o&&(o=o(s)),null!=o&&void 0!=o&&o>r&&(r=o,t=i)}return t?(n(s.resultsContainer).empty(),s.plugins[t].draw(),!0):!1},s.setResponse=function(t){try{s.results=e("./parsers/wrapper.js")(t)}catch(n){s.results=n}if(s.draw(),s.options.persistency&&s.options.persistency.results&&s.results.getOriginalResponseAsString&&s.results.getOriginalResponseAsString().length<s.options.persistency.results.maxSize){var i="string"==typeof s.options.persistency.results.id?s.options.persistency.results.id:s.options.persistency.results.id(s);r.storage.set(i,s.results.getOriginalResponse(),"month")}},s.plugins={};for(var l in i.plugins)s.plugins[l]=i.plugins[l](s,s.resultsContainer);if(s.options.persistency&&s.options.persistency.outputSelector){var u="string"==typeof s.options.persistency.outputSelector?s.options.persistency.outputSelector:s.options.persistency.outputSelector(s);if(u){var c=r.storage.get(u);c&&(s.options.output=c)}}if(!a&&s.options.persistency&&s.options.persistency.results){var u="string"==typeof s.options.persistency.results.id?s.options.persistency.results.id:s.options.persistency.results.id(s);a=r.storage.get(u)}return i.drawHeader(s),a&&s.setResponse(a),i.updateHeader(s),s};i.updateHeader=function(e){var t=e.header.find(".yasr_downloadIcon");t.removeAttr("title");var n=e.plugins[e.options.output];if(n){var r=n.getDownloadInfo?n.getDownloadInfo():null;r?(r.buttonTitle&&t.attr(r.buttonTitle),t.prop("disabled",!1),t.find("path").each(function(){this.style.fill="black"})):(t.prop("disabled",!0).prop("title","Download not supported for this result representation"),t.find("path").each(function(){this.style.fill="gray"}))}},i.drawHeader=function(t){var o=function(){var e=n('<div class="yasr_btnGroup"></div>');n.each(t.plugins,function(o,a){if(!a.hideFromSelection){var s=a.name||o,l=n("<button class='yasr_btn'></button>").text(s).addClass("select_"+o).click(function(){if(e.find("button.selected").removeClass("selected"),n(this).addClass("selected"),t.options.output=o,t.options.persistency&&t.options.persistency.outputSelector){var a="string"==typeof t.options.persistency.outputSelector?t.options.persistency.outputSelector:t.options.persistency.outputSelector(t);r.storage.set(a,t.options.output,"month")}t.draw(),i.updateHeader(t)}).appendTo(e);t.options.output==o&&l.addClass("selected")}}),e.children().length>1&&t.header.append(e)},a=function(){var r=function(e,t){var n=null,r=window.URL||window.webkitURL||window.mozURL||window.msURL;if(r&&Blob){var i=new Blob([e],{type:t});n=r.createObjectURL(i)}return n},i=n("<button class='yasr_btn yasr_downloadIcon'></button>").append(e("yasgui-utils").imgs.getElement({id:"download",width:"15px",height:"15px"})).click(function(){var e=t.plugins[t.options.output];if(e&&e.getDownloadInfo){var i=e.getDownloadInfo(),o=r(i.getContent(),i.contentType?i.contentType:"text/plain"),a=n("<a></a>");a.attr("href",o),a.attr("download",i.filename),a.get(0).click()}});t.header.append(i)};t.options.drawOutputSelector&&o(),t.options.drawDownloadIcon&&a()},i.plugins={"boolean":e("./boolean.js"),table:e("./table.js"),rawResponse:e("./rawResponse.js"),error:e("./error.js")},i.defaults={output:"table",drawOutputSelector:!0,drawDownloadIcon:!0,getUsedPrefixes:null,persistency:{outputSelector:function(e){return"selector_"+r.determineId(e.container)},results:{id:function(e){return"results_"+r.determineId(e.container)},maxSize:1e5}}},i.version={YASR:e("../package.json").version,jquery:n.fn.jquery}},{"../package.json":14,"./boolean.js":16,"./error.js":17,"./parsers/wrapper.js":23,"./rawResponse.js":25,"./table.js":26,jquery:7,"yasgui-utils":12}],19:[function(e,t){e("jquery"),t.exports=function(t){return e("./dlv.js")(t,",")}},{"./dlv.js":20,jquery:7}],20:[function(e,t){var n=jQuery=e("jquery");e("../../lib/jquery.csv-0.71.js");t.exports=function(e,t){var r={},i=n.csv.toArrays(e,{separator:t}),o=function(e){return 0==e.indexOf("http")?"uri":null},a=function(){return 2!=i.length||1!=i[0].length||1!=i[1].length||"boolean"!=i[0][0]||"1"!=i[1][0]&&"0"!=i[1][0]?!1:(r.boolean="1"==i[1][0]?!0:!1,!0)},s=function(){return i.length>0&&i[0].length>0?(r.head={vars:i[0]},!0):!1},l=function(){if(i.length>1){r.results={bindings:[]};for(var e=1;e<i.length;e++){for(var t={},n=0;n<i[e].length;n++){var a=r.head.vars[n];if(a){var s=i[e][n],l=o(s);t[a]={value:s},l&&(t[a].type=l)}}r.results.bindings.push(t)}return r.head={vars:i[0]},!0}return!1},u=a();if(!u){var c=s();c&&l()}return r}},{"../../lib/jquery.csv-0.71.js":2,jquery:7}],21:[function(e,t){e("jquery"),t.exports=function(e){if("string"==typeof e)try{return JSON.parse(e)}catch(t){return!1}return"object"==typeof e&&e.constructor==={}.constructor?e:!1}},{jquery:7}],22:[function(e,t){e("jquery"),t.exports=function(t){return e("./dlv.js")(t," ")}},{"./dlv.js":20,jquery:7}],23:[function(e,t){e("jquery"),t.exports=function(t){var n,r,i={xml:e("./xml.js"),json:e("./json.js"),tsv:e("./tsv.js"),csv:e("./csv.js")},o=null,a=null,s="object"==typeof t&&t.exception?t.exception:null;n="object"==typeof t&&t.contentType?t.contentType.toLowerCase():null,r="object"==typeof t&&t.response?t.response:t;var l=function(){if(o)return o;if(o===!1||s)return!1;var e=function(){if(n)if(n.indexOf("json")>-1){try{o=i.json(r)}catch(e){s=e}a="json"}else if(n.indexOf("xml")>-1){try{o=i.xml(r)}catch(e){s=e}a="xml"}else if(n.indexOf("csv")>-1){try{o=i.csv(r)}catch(e){s=e}a="csv"}else if(n.indexOf("tab-separated")>-1){try{o=i.tsv(r)}catch(e){s=e}a="tsv"}},t=function(){if(o=i.json(r))a="json";else try{o=i.xml(r),o&&(a="xml")}catch(e){}};return e(),o||t(),o||(o=!1),o},u=function(){var e=l();return e&&"head"in e?e.head.vars:null},c=function(){var e=l();return e&&"results"in e?e.results.bindings:null},f=function(){var e=l();return e&&"boolean"in e?e.boolean:null},d=function(){return r},h=function(){var e="";return"string"==typeof r?e=r:"json"==a?e=JSON.stringify(r,void 0,2):"xml"==a&&(e=(new XMLSerializer).serializeToString(r)),e},p=function(){return s},g=function(){return null==a&&l(),a};return o=l(),{getAsJson:l,getOriginalResponse:d,getOriginalResponseAsString:h,getOriginalContentType:function(){return n},getVariables:u,getBindings:c,getBoolean:f,getType:g,getException:p}}},{"./csv.js":19,"./json.js":21,"./tsv.js":22,"./xml.js":24,jquery:7}],24:[function(e,t){{var n=e("jquery");t.exports=function(e){var t=function(e){o.head={};for(var t=0;t<e.childNodes.length;t++){var n=e.childNodes[t];if("variable"==n.nodeName){o.head.vars||(o.head.vars=[]);var r=n.getAttribute("name");r&&o.head.vars.push(r)}}},r=function(e){o.results={},o.results.bindings=[];for(var t=0;t<e.childNodes.length;t++){for(var n=e.childNodes[t],r=null,i=0;i<n.childNodes.length;i++){var a=n.childNodes[i];if("binding"==a.nodeName){var s=a.getAttribute("name");if(s){r=r||{},r[s]={};for(var l=0;l<a.childNodes.length;l++){var u=a.childNodes[l],c=u.nodeName;if("#text"!=c){r[s].type=c,r[s].value=u.innerHTML;var f=u.getAttribute("datatype");f&&(r[s].datatype=f)}}}}}r&&o.results.bindings.push(r)}},i=function(e){o.boolean="true"==e.innerHTML?!0:!1};"string"==typeof e&&(mainXml=n.parseXML(e));var e=null;if(!(mainXml.childNodes.length>0))return null;e=mainXml.childNodes[0];for(var o={},a=0;a<e.childNodes.length;a++){var s=e.childNodes[a];"head"==s.nodeName&&t(s),"results"==s.nodeName&&r(s),"boolean"==s.nodeName&&i(s)}return o}}},{jquery:7}],25:[function(e,t){var n=e("jquery"),r=e("codemirror");e("codemirror/addon/edit/matchbrackets.js"),e("codemirror/mode/xml/xml.js"),e("codemirror/mode/javascript/javascript.js");var i=t.exports=function(e,t,r){var o={};return o.options=n.extend(!0,{},i.defaults,r),o.yasr=e,o.parent=t,o.draw=function(){i.draw(o)},o.name="Raw Response",o.canHandleResults=function(e){if(!e.results)return!1;var t=e.results.getOriginalResponseAsString();return t&&0!=t.length||!e.results.getException()?!0:!1},o.getPriority=2,o.getDownloadInfo=function(){if(!o.yasr.results)return null;var t=o.yasr.results.getOriginalContentType();return{getContent:function(){return e.results.getOriginalResponse()},filename:"queryResults."+o.yasr.results.getType(),contentType:t?t:"text/plain",buttonTitle:"Download raw response"}},o};i.draw=function(e){var t=e.options.CodeMirror;t.value=e.yasr.results.getOriginalResponseAsString();var n=e.yasr.results.getType();n&&("json"==n&&(n={name:"javascript",json:!0}),t.mode=n),r(e.parent.get()[0],t)},i.defaults={CodeMirror:{readOnly:!0}},i.version={"YASR-rawResponse":e("../package.json").version,jquery:n.fn.jquery,CodeMirror:r.version}},{"../package.json":14,codemirror:4,"codemirror/addon/edit/matchbrackets.js":3,"codemirror/mode/javascript/javascript.js":5,"codemirror/mode/xml/xml.js":6,jquery:7}],26:[function(e,t){var n=e("jquery");e("./../lib/DataTables/media/js/jquery.dataTables.js");var r=e("yasgui-utils").imgs,i=t.exports=function(t,r,o){var a={};return a.options=n.extend(!0,{},i.defaults,o),a.yasr=t,a.parent=r,a.draw=function(){i.draw(a)},a.name="Table",a.canHandleResults=function(e){return e.results&&e.results.getVariables()&&e.results.getVariables().length>0},a.getPriority=function(){return 10},a.getDownloadInfo=function(){return a.yasr.results?{getContent:function(){return e("./bindingsToCsv.js")(t.results.getAsJson())},filename:"queryResults.csv",contentType:"text/csv",buttonTitle:"Download as CSV"}:null},a.disableSelectorOn=function(){},a};i.draw=function(e){e.table=n('<table cellpadding="0" cellspacing="0" border="0" class="resultsTable"></table>'),n(e.parent).html(e.table);var t=e.options.datatable;t.aaData=a(e),t.aoColumns=o(e),e.table.dataTable(t),u(e),s(e);var r=e.yasr.header.outerHeight()-5;r>0&&e.yasr.container.find(".dataTables_wrapper").css("position","relative").css("top","-"+r+"px").css("margin-bottom","-"+r+"px"),n(window).on("resize",function(){e.table&&e.table.fnAdjustColumnSizing()})};var o=function(e){var t=[];t.push({sTitle:""});for(var n=e.yasr.results.getVariables(),r=0;r<n.length;r++)t.push({sTitle:n[r]});return t},a=function(e){var t=[],n=e.yasr.results.getBindings(),r=e.yasr.results.getVariables(),i=null;e.yasr.options.getUsedPrefixes&&(i="function"==typeof e.yasr.options.getUsedPrefixes?e.yasr.options.getUsedPrefixes(e.yasr):e.yasr.options.getUsedPrefixes);for(var o=0;o<n.length;o++){var a=[];a.push("");for(var s=n[o],l=0;l<r.length;l++){var u=r[l];a.push(u in s?e.options.drawCellContent?e.options.drawCellContent(o,l,s[u],i):"":"")}t.push(a)}return t};i.getFormattedValueFromBinding=function(e,t,n,r){var i=null;if("uri"==n.type){var o=visibleString=n.value;if(r)for(var a in r)if(0==visibleString.indexOf(r[a])){visibleString=a+o.substring(r[a].length);break}i="<a class='uri' href='"+o+"'>"+visibleString+"</a>"}else{var s=n.value;if(n["xml:lang"])s='"'+n.value+'"@'+n["xml:lang"];else if(n.datatype){var l="http://www.w3.org/2001/XMLSchema#",u=n.datatype;u=0==u.indexOf(l)?"xsd:"+u.substring(l.length):"<"+u+">",s='"'+s+'"^^'+u}i="<span class='nonUri'>"+s+"</span>"}return i};var s=function(e){e.table.on("order.dt",function(){u(e)}),e.table.delegate("td","click",function(){if(e.options.handlers&&e.options.handlers.onCellClick){var t=e.options.handlers.onCellClick(this);if(t===!1)return!1}}).delegate("td","mouseenter",function(){e.options.handlers&&e.options.handlers.onCellMouseEnter&&e.options.handlers.onCellMouseEnter(this);var t=n(this);e.options.fetchTitlesFromPreflabel&&!t.attr("title")&&0==t.text().trim().indexOf("http")&&l(t)}).delegate("td","mouseleave",function(){e.options.handlers&&e.options.handlers.onCellMouseLeave&&e.options.handlers.onCellMouseLeave(this)})},l=function(e){n.get("http://preflabel.org/api/label/"+encodeURIComponent(e.text())).success(function(t){e.attr("title",t.label)}).fail(function(){e.attr("title","")})},u=function(e){var t={sorting:"unsorted",sorting_asc:"sortAsc",sorting_desc:"sortDesc"};e.table.find(".sortIcons").remove();for(var i in t){var o=n("<div class='sortIcons'></div>").css("float","right").css("margin-right","-12px").width(10).height(15);r.draw(o,{id:t[i],width:12,height:16}),e.table.find("th."+i).append(o)}};i.openCellUriInNewWindow=function(e){e.className.indexOf("uri")>=0&&window.open(this.innerHTML)},i.defaults={drawCellContent:i.getFormattedValueFromBinding,fetchTitlesFromPreflabel:!0,handlers:{onCellMouseEnter:null,onCellMouseLeave:null,onCellClick:null},datatable:{aaSorting:[],iDisplayLength:50,aLengthMenu:[[10,50,100,1e3,-1],[10,50,100,1e3,"All"]],bLengthChange:!0,sPaginationType:"full_numbers",fnDrawCallback:function(e){for(var t=0;t<e.aiDisplay.length;t++)n("td:eq(0)",e.aoData[e.aiDisplay[t]].nTr).html(t+1);var r=!1;n(e.nTableWrapper).find(".paginate_button").each(function(){-1==n(this).attr("class").indexOf("current")&&-1==n(this).attr("class").indexOf("disabled")&&(r=!0)}),r?n(e.nTableWrapper).find(".dataTables_paginate").show():n(e.nTableWrapper).find(".dataTables_paginate").hide()},aoColumnDefs:[{sWidth:"12px",bSortable:!1,aTargets:[0]}]}},i.version={"YASR-table":e("../package.json").version,jquery:n.fn.jquery,"jquery-datatables":n.fn.DataTable.version}},{"../package.json":14,"./../lib/DataTables/media/js/jquery.dataTables.js":1,"./bindingsToCsv.js":15,jquery:7,"yasgui-utils":12}]},{},[18])(18)});
app/index.js
chehitskenniexd/Archiver
// @flow import React from 'react'; import { render } from 'react-dom'; import { Provider } from 'react-redux'; import { Router, hashHistory } from 'react-router'; import { syncHistoryWithStore } from 'react-router-redux'; import MuiThemeProvider from 'material-ui/styles/MuiThemeProvider'; import routes from './routes'; import configureStore from './store/configureStore'; import './app.global.css'; import injectTapEventPlugin from 'react-tap-event-plugin'; // Needed for onTouchTap // http://stackoverflow.com/a/34015469/988941 injectTapEventPlugin(); const store = configureStore(); const history = syncHistoryWithStore(hashHistory, store); render( <Provider store={store}> <MuiThemeProvider> <Router history={history} routes={routes} /> </MuiThemeProvider> </Provider>, document.getElementById('root') );
ajax/libs/react/0.3.2/react.min.js
steakknife/cdnjs
/** * React v0.3.2 * * Copyright 2013 Facebook, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ !function(e){if("function"==typeof bootstrap)bootstrap("react",e);else if("object"==typeof exports)module.exports=e();else if("function"==typeof define&&define.amd)define(e);else if("undefined"!=typeof ses){if(!ses.ok())return;ses.makeReact=e}else"undefined"!=typeof window?window.React=e():global.React=e()}(function(){return function(e,t,n){function o(n,i){if(!t[n]){if(!e[n]){var a="function"==typeof require&&require;if(!i&&a)return a(n,!0);if(r)return r(n,!0);throw new Error("Cannot find module '"+n+"'")}var s=t[n]={exports:{}};e[n][0].call(s.exports,function(t){var r=e[n][1][t];return o(r?r:t)},s,s.exports)}return t[n].exports}for(var r="function"==typeof require&&require,i=0;i<n.length;i++)o(n[i]);return o}({1:[function(e,t){"use strict";var n=e("./ReactCompositeComponent"),o=e("./ReactComponent"),r=e("./ReactDOM"),i=e("./ReactMount"),a=e("./ReactDefaultInjection");a.inject();var s={DOM:r,initializeTouchEvents:function(e){i.useTouchEvents=e},autoBind:n.autoBind,createClass:n.createClass,createComponentRenderer:i.createComponentRenderer,constructAndRenderComponent:i.constructAndRenderComponent,constructAndRenderComponentByID:i.constructAndRenderComponentByID,renderComponent:i.renderComponent,unmountAndReleaseReactRootNode:i.unmountAndReleaseReactRootNode,isValidComponent:o.isValidComponent};t.exports=s},{"./ReactCompositeComponent":2,"./ReactComponent":3,"./ReactDOM":4,"./ReactMount":5,"./ReactDefaultInjection":6}],2:[function(e,t){!function(){"use strict";function n(e,t){var n=e.prototype;for(var r in t)if(t.hasOwnProperty(r)){var i=t[r],a=h[r];v.hasOwnProperty(r)&&u(a===d.OVERRIDE_BASE,"ReactCompositeComponentInterface: You are attempting to override `%s` from your class specification. Ensure that your method names do not overlap with React methods.",r),null!=a&&u(!i||!i.__reactAutoBind,"ReactCompositeComponentInterface: You are attempting to use `React.autoBind` on `%s`, a method that is internal to React.Internal methods are called with the component as the context.",r),n.hasOwnProperty(r)&&u(a===d.DEFINE_MANY,"ReactCompositeComponentInterface: You are attempting to define `%s` on your component more than once. This conflict may be due to a mixin.",r),f.hasOwnProperty(r)?f[r](e,i):i&&i.__reactAutoBind?(n.__reactAutoBindMap||(n.__reactAutoBindMap={}),n.__reactAutoBindMap[r]=i.__reactAutoBind):n[r]=n.hasOwnProperty(r)?o(n[r],i):i}}function o(e,t){return function(n,o,r,i,a,s){u("undefined"==typeof s,"Chained function can only take a maximum of 5 arguments."),e.call(this,n,o,r,i,a),t.call(this,n,o,r,i,a)}}var r=e("./ReactComponent"),i=e("./ReactCurrentOwner"),a=e("./ReactOwner"),s=e("./ReactPropTransferer"),u=e("./invariant"),c=e("./keyMirror"),l=e("./merge"),p=e("./mixInto"),d=c({DEFINE_ONCE:null,DEFINE_MANY:null,OVERRIDE_BASE:null}),h={mixins:d.DEFINE_MANY,props:d.DEFINE_ONCE,getInitialState:d.DEFINE_ONCE,render:d.DEFINE_ONCE,componentWillMount:d.DEFINE_MANY,componentDidMount:d.DEFINE_MANY,componentWillReceiveProps:d.DEFINE_MANY,shouldComponentUpdate:d.DEFINE_ONCE,componentWillUpdate:d.DEFINE_MANY,componentDidUpdate:d.DEFINE_MANY,componentWillUnmount:d.DEFINE_MANY,updateComponent:d.OVERRIDE_BASE},f={displayName:function(e,t){e.displayName=t},mixins:function(e,t){if(t)for(var o=0;o<t.length;o++)n(e,t[o])},props:function(e,t){e.propDeclarations=t}},m=c({MOUNTING:null,UNMOUNTING:null,RECEIVING_PROPS:null,RECEIVING_STATE:null}),v={construct:function(e,t){r.Mixin.construct.call(this,e,t),this.state=null,this._pendingState=null,this._compositeLifeCycleState=null},mountComponent:function(e,t){return r.Mixin.mountComponent.call(this,e,t),this._lifeCycleState=r.LifeCycle.UNMOUNTED,this._compositeLifeCycleState=m.MOUNTING,this.constructor.propDeclarations&&this._assertValidProps(this.props),this.__reactAutoBindMap&&this._bindAutoBindMethods(),this.state=this.getInitialState?this.getInitialState():null,this._pendingState=null,this.componentWillMount&&(this.componentWillMount(),this._pendingState&&(this.state=this._pendingState,this._pendingState=null)),this.componentDidMount&&t.getReactOnDOMReady().enqueue(this,this.componentDidMount),this._renderedComponent=this._renderValidatedComponent(),this._compositeLifeCycleState=null,this._lifeCycleState=r.LifeCycle.MOUNTED,this._renderedComponent.mountComponent(e,t)},unmountComponent:function(){this._compositeLifeCycleState=m.UNMOUNTING,this.componentWillUnmount&&this.componentWillUnmount(),this._compositeLifeCycleState=null,r.Mixin.unmountComponent.call(this),this._renderedComponent.unmountComponent(),this._renderedComponent=null,this.refs&&(this.refs=null)},receiveProps:function(e,t){this.constructor.propDeclarations&&this._assertValidProps(e),r.Mixin.receiveProps.call(this,e,t),this._compositeLifeCycleState=m.RECEIVING_PROPS,this.componentWillReceiveProps&&this.componentWillReceiveProps(e,t),this._compositeLifeCycleState=m.RECEIVING_STATE;var n=this._pendingState||this.state;this._pendingState=null,this._receivePropsAndState(e,n,t),this._compositeLifeCycleState=null},setState:function(e){this.replaceState(l(this._pendingState||this.state,e))},replaceState:function(e){var t=this._compositeLifeCycleState;if(u(this._lifeCycleState===r.LifeCycle.MOUNTED||t===m.MOUNTING,"replaceState(...): Can only update a mounted (or mounting) component."),u(t!==m.RECEIVING_STATE&&t!==m.UNMOUNTING,"replaceState(...): Cannot update while unmounting component or during an existing state transition (such as within `render`)."),this._pendingState=e,t!==m.MOUNTING&&t!==m.RECEIVING_PROPS){this._compositeLifeCycleState=m.RECEIVING_STATE;var n=this._pendingState;this._pendingState=null;var o=r.ReactReconcileTransaction.getPooled();o.perform(this._receivePropsAndState,this,this.props,n,o),r.ReactReconcileTransaction.release(o),this._compositeLifeCycleState=null}},_receivePropsAndState:function(e,t,n){!this.shouldComponentUpdate||this.shouldComponentUpdate(e,t)?this._performComponentUpdate(e,t,n):(this.props=e,this.state=t)},_performComponentUpdate:function(e,t,n){var o=this.props,r=this.state;this.componentWillUpdate&&this.componentWillUpdate(e,t,n),this.props=e,this.state=t,this.updateComponent(n),this.componentDidUpdate&&n.getReactOnDOMReady().enqueue(this,this.componentDidUpdate.bind(this,o,r))},updateComponent:function(e){var t=this._renderedComponent,n=this._renderValidatedComponent();if(t.constructor===n.constructor)n.props.isStatic||t.receiveProps(n.props,e);else{var o=this._rootNodeID,i=t._rootNodeID;t.unmountComponent();var a=n.mountComponent(o,e);r.DOMIDOperations.dangerouslyReplaceNodeWithMarkupByID(i,a),this._renderedComponent=n}},forceUpdate:function(){var e=r.ReactReconcileTransaction.getPooled();e.perform(this._performComponentUpdate,this,this.props,this.state,e),r.ReactReconcileTransaction.release(e)},_renderValidatedComponent:function(){i.current=this;var e=this.render();return i.current=null,u(r.isValidComponent(e),"%s.render(): A valid ReactComponent must be returned.",this.constructor.displayName||"ReactCompositeComponent"),e},_assertValidProps:function(e){var t=this.constructor.propDeclarations,n=this.constructor.displayName;for(var o in t){var r=t[o];r&&r(e,o,n)}},_bindAutoBindMethods:function(){for(var e in this.__reactAutoBindMap)if(this.__reactAutoBindMap.hasOwnProperty(e)){var t=this.__reactAutoBindMap[e];this[e]=this._bindAutoBindMethod(t)}},_bindAutoBindMethod:function(e){function t(t,i,a,s,c,l){return u("undefined"==typeof l,"React.autoBind(...): Methods can only take a maximum of 5 arguments."),n._lifeCycleState===r.LifeCycle.MOUNTED?e.call(n,t,i,a,s,c):(o||(o=!0),void 0)}var n=this,o=!1;return t}},g=function(){};p(g,r.Mixin),p(g,a.Mixin),p(g,s.Mixin),p(g,v);var y={LifeCycle:m,Base:g,createClass:function(e){var t=function(e,t){this.construct(e,t)};t.prototype=new g,t.prototype.constructor=t,n(t,e),u(t.prototype.render,"createClass(...): Class specification must implement a `render` method.");var o=function(e,n){return new t(e,n)};return o.componentConstructor=t,o.originalSpec=e,o},autoBind:function(e){function t(){u(!1,"React.autoBind(...): Attempted to invoke an auto-bound method that was not correctly defined on the class specification.")}return t.__reactAutoBind=e,t}};t.exports=y}()},{"./ReactComponent":3,"./ReactCurrentOwner":7,"./ReactOwner":8,"./ReactPropTransferer":9,"./invariant":10,"./keyMirror":11,"./merge":12,"./mixInto":13}],3:[function(e,t){"use strict";function n(e){console&&console.warn&&console.warn(e)}var o=e("./ExecutionEnvironment"),r=e("./ReactCurrentOwner"),i=e("./ReactDOMIDOperations"),a=e("./ReactMount"),s=e("./ReactOwner"),u=e("./ReactReconcileTransaction"),c=e("./invariant"),l=e("./keyMirror"),p=e("./merge"),d="{owner}",h=l({MOUNTED:null,UNMOUNTED:null}),f={isValidComponent:function(e){return!(!e||"function"!=typeof e.mountComponentIntoNode||"function"!=typeof e.receiveProps)},LifeCycle:h,DOMIDOperations:i,ReactReconcileTransaction:u,setDOMOperations:function(e){f.DOMIDOperations=e},setReactReconcileTransaction:function(e){f.ReactReconcileTransaction=e},Mixin:{getDOMNode:function(){c(o.canUseDOM,"getDOMNode(): The DOM is not supported in the current environment."),c(this._lifeCycleState===h.MOUNTED,"getDOMNode(): A component must be mounted to have a DOM node.");var e=this._rootNode;return e||(e=document.getElementById(this._rootNodeID),e||(e=a.findReactRenderedDOMNodeSlow(this._rootNodeID)),this._rootNode=e),e},setProps:function(e){this.replaceProps(p(this.props,e))},replaceProps:function(e){c(!this.props[d],"replaceProps(...): You called `setProps` or `replaceProps` on a component with an owner. This is an anti-pattern since props will get reactively updated when rendered. Instead, change the owner's `render` method to pass the correct value as props to the component where it is created.");var t=f.ReactReconcileTransaction.getPooled();t.perform(this.receiveProps,this,e,t),f.ReactReconcileTransaction.release(t)},construct:function(e,t){this.props=e||{},"undefined"!=typeof t&&(this.props.children=t),this.props[d]=r.current,this._lifeCycleState=h.UNMOUNTED},mountComponent:function(e){c(this._lifeCycleState===h.UNMOUNTED,"mountComponent(%s, ...): Can only mount an unmounted component.",e);var t=this.props;null!=t.ref&&s.addComponentAsRefTo(this,t.ref,t[d]),this._rootNodeID=e,this._lifeCycleState=h.MOUNTED},unmountComponent:function(){c(this._lifeCycleState===h.MOUNTED,"unmountComponent(): Can only unmount a mounted component.");var e=this.props;null!=e.ref&&s.removeComponentAsRefFrom(this,e.ref,e[d]),this._rootNode=null,this._rootNodeID=null,this._lifeCycleState=h.UNMOUNTED},receiveProps:function(e){c(this._lifeCycleState===h.MOUNTED,"receiveProps(...): Can only update a mounted component.");var t=this.props;(e[d]!==t[d]||e.ref!==t.ref)&&(null!=t.ref&&s.removeComponentAsRefFrom(this,t.ref,t[d]),null!=e.ref&&s.addComponentAsRefTo(this,e.ref,e[d]))},mountComponentIntoNode:function(e,t){var n=f.ReactReconcileTransaction.getPooled();n.perform(this._mountComponentIntoNode,this,e,t,n),f.ReactReconcileTransaction.release(n)},_mountComponentIntoNode:function(e,t,n){var o=Date.now(),r=this.mountComponent(e,n);a.totalInstantiationTime+=Date.now()-o;var i=Date.now(),s=t.parentNode;if(s){var u=t.nextSibling;s.removeChild(t),t.innerHTML=r,u?s.insertBefore(t,u):s.appendChild(t)}else t.innerHTML=r;a.totalInjectionTime+=Date.now()-i},unmountComponentFromNode:function(e){for(this.unmountComponent();e.lastChild;)e.removeChild(e.lastChild)},isOwnedBy:function(e){return this.props[d]===e}}};f.Mixin.update=function(e){n("this.update() is deprecated. Use this.setProps()"),this.setProps(e)},f.Mixin.updateAll=function(e){n("this.updateAll() is deprecated. Use this.replaceProps()"),this.replaceProps(e)},t.exports=f},{"./ExecutionEnvironment":14,"./ReactCurrentOwner":7,"./ReactDOMIDOperations":15,"./ReactMount":5,"./ReactOwner":8,"./ReactReconcileTransaction":16,"./invariant":10,"./keyMirror":11,"./merge":12}],4:[function(e,t){"use strict";function n(e,t){var n=function(e,t){this.construct(e,t)};return n.prototype=new o(e,t),n.prototype.constructor=n,function(e,t){return new n(e,t)}}var o=e("./ReactNativeComponent"),r=e("./mergeInto"),i=e("./objMapKeyVal"),a=i({a:!1,abbr:!1,address:!1,audio:!1,b:!1,body:!1,br:!0,button:!1,code:!1,col:!0,colgroup:!1,dd:!1,div:!1,section:!1,dl:!1,dt:!1,em:!1,embed:!0,fieldset:!1,footer:!1,form:!1,h1:!1,h2:!1,h3:!1,h4:!1,h5:!1,h6:!1,header:!1,hr:!0,i:!1,iframe:!1,img:!0,input:!0,label:!1,legend:!1,li:!1,line:!1,nav:!1,object:!1,ol:!1,optgroup:!1,option:!1,p:!1,param:!0,pre:!1,select:!1,small:!1,source:!1,span:!1,sub:!1,sup:!1,strong:!1,table:!1,tbody:!1,td:!1,textarea:!1,tfoot:!1,th:!1,thead:!1,time:!1,title:!1,tr:!1,u:!1,ul:!1,video:!1,wbr:!1,circle:!1,g:!1,path:!1,polyline:!1,rect:!1,svg:!1,text:!1},n),s={injectComponentClasses:function(e){r(a,e)}};a.injection=s,t.exports=a},{"./ReactNativeComponent":17,"./mergeInto":18,"./objMapKeyVal":19}],5:[function(e,t){!function(){"use strict";function n(e){return e.firstChild&&e.firstChild.id}var o=e("./ReactEvent"),r=e("./ReactInstanceHandles"),i=e("./ReactEventTopLevelCallback"),a=e("./$"),s=0,u={},c={},l={totalInstantiationTime:0,totalInjectionTime:0,useTouchEvents:!1,scrollMonitor:function(e,t){t()},prepareTopLevelEvents:function(e){o.ensureListening(l.useTouchEvents,e)},renderComponent:function(e,t){var o=u[n(t)];if(o){var r=e.props;return l.scrollMonitor(t,function(){o.replaceProps(r)}),o}l.prepareTopLevelEvents(i);var a=l.registerContainer(t);return u[a]=e,e.mountComponentIntoNode(a,t),e},createComponentRenderer:function(e){return function(t){return l.renderComponent(e,t)}},constructAndRenderComponent:function(e,t,n){return l.renderComponent(e(t),n)},constructAndRenderComponentByID:function(e,t,n){return l.constructAndRenderComponent(e,t,a(n))},registerContainer:function(e){var t=n(e);return t&&(t=r.getReactRootIDFromNodeID(t)),t||(t=r.getReactRootID(s++)),c[t]=e,t},unmountAndReleaseReactRootNode:function(e){var t=n(e),o=u[t];o.unmountComponentFromNode(e),delete u[t],delete c[t]},findReactContainerForID:function(e){var t=r.getReactRootIDFromNodeID(e);return c[t]},findReactRenderedDOMNodeSlow:function(e){var t=l.findReactContainerForID(e);return r.findComponentRoot(t,e)}};t.exports=l}()},{"./ReactEvent":20,"./ReactInstanceHandles":21,"./ReactEventTopLevelCallback":22,"./$":23}],6:[function(e,t){"use strict";function n(){s.injection.injectEventPluginOrder(i),s.injection.injectInstanceHandle(u),s.injection.injectEventPluginsByName({SimpleEventPlugin:c,EnterLeaveEventPlugin:a}),o.injection.injectComponentClasses({form:r})}var o=e("./ReactDOM"),r=e("./ReactDOMForm"),i=e("./DefaultEventPluginOrder"),a=e("./EnterLeaveEventPlugin"),s=e("./EventPluginHub"),u=e("./ReactInstanceHandles"),c=e("./SimpleEventPlugin");t.exports={inject:n}},{"./ReactDOM":4,"./ReactDOMForm":24,"./DefaultEventPluginOrder":25,"./EnterLeaveEventPlugin":26,"./EventPluginHub":27,"./ReactInstanceHandles":21,"./SimpleEventPlugin":28}],7:[function(e,t){"use strict";var n={current:null};t.exports=n},{}],10:[function(e,t){function n(e){if(!e)throw new Error("Invariant Violation")}t.exports=n},{}],13:[function(e,t){"use strict";var n=function(e,t){var n;for(n in t)t.hasOwnProperty(n)&&(e.prototype[n]=t[n])};t.exports=n},{}],14:[function(e,t){!function(){"use strict";var e="undefined"!=typeof window,n={canUseDOM:e,canUseWorkers:"undefined"!=typeof Worker,isInWorker:!e,global:new Function("return this;")()};t.exports=n}()},{}],19:[function(e,t){"use strict";function n(e,t,n){if(!e)return null;var o=0,r={};for(var i in e)e.hasOwnProperty(i)&&(r[i]=t.call(n,i,e[i],o++));return r}t.exports=n},{}],8:[function(e,t){"use strict";var n=e("./invariant"),o={isValidOwner:function(e){return!(!e||"function"!=typeof e.attachRef||"function"!=typeof e.detachRef)},addComponentAsRefTo:function(e,t,r){n(o.isValidOwner(r),"addComponentAsRefTo(...): Only a ReactOwner can have refs."),r.attachRef(t,e)},removeComponentAsRefFrom:function(e,t,r){n(o.isValidOwner(r),"removeComponentAsRefFrom(...): Only a ReactOwner can have refs."),r.refs[t]===e&&r.detachRef(t)},Mixin:{attachRef:function(e,t){n(t.isOwnedBy(this),"attachRef(%s, ...): Only a component's owner can store a ref to it.",e);var o=this.refs||(this.refs={});o[e]=t},detachRef:function(e){delete this.refs[e]}}};t.exports=o},{"./invariant":10}],9:[function(e,t){"use strict";function n(e){return function(t,n,o){t[n]=t.hasOwnProperty(n)?e(t[n],o):o}}var o=e("./emptyFunction"),r=e("./joinClasses"),i=e("./merge"),a={ref:o,className:n(r),style:n(i)},s={TransferStrategies:a,Mixin:{transferPropsTo:function(e){var t={};for(var n in e.props)e.props.hasOwnProperty(n)&&(t[n]=e.props[n]);for(var o in this.props)if(this.props.hasOwnProperty(o)){var r=a[o];r?r(t,o,this.props[o]):t.hasOwnProperty(o)||(t[o]=this.props[o])}return e.props=t,e}}};t.exports=s},{"./emptyFunction":29,"./joinClasses":30,"./merge":12}],11:[function(e,t){"use strict";var n=e("./throwIf"),o="NOT_OBJECT_ERROR",r=function(e){var t,r={};n(!(e instanceof Object)||Array.isArray(e),o);for(t in e)e.hasOwnProperty(t)&&(r[t]=t);return r};t.exports=r},{"./throwIf":31}],12:[function(e,t){"use strict";var n=e("./mergeInto"),o=function(e,t){var o={};return n(o,e),n(o,t),o};t.exports=o},{"./mergeInto":18}],15:[function(e,t){!function(){"use strict";var n=e("./CSSPropertyOperations"),o=e("./DOMChildrenOperations"),r=e("./DOMPropertyOperations"),i=e("./ReactDOMNodeCache"),a=e("./getTextContentAccessor"),s=e("./invariant"),u={content:"`content` must be set using `updateTextContentByID()`.",dangerouslySetInnerHTML:"`dangerouslySetInnerHTML` must be set using `updateInnerHTMLByID()`.",style:"`style` must be set using `updateStylesByID()`."},c=a()||"NA",l={updatePropertyByID:function(e,t,n){var o=i.getCachedNodeByID(e);s(!u.hasOwnProperty(t),"updatePropertyByID(...): %s",u[t]),r.setValueForProperty(o,t,n)},updatePropertiesByID:function(e,t){for(var n in t)t.hasOwnProperty(n)&&l.updatePropertiesByID(e,n,t[n])},updateStylesByID:function(e,t){var o=i.getCachedNodeByID(e);n.setValueForStyles(o,t)},updateInnerHTMLByID:function(e,t){var n=i.getCachedNodeByID(e);n.innerHTML=(t&&t.__html||"").replace(/^ /g,"&nbsp;")},updateTextContentByID:function(e,t){var n=i.getCachedNodeByID(e);n[c]=t},dangerouslyReplaceNodeWithMarkupByID:function(e,t){var n=i.getCachedNodeByID(e);o.dangerouslyReplaceNodeWithMarkup(n,t),i.purgeEntireCache()},manageChildrenByParentID:function(e,t){var n=i.getCachedNodeByID(e);o.manageChildren(n,t),i.purgeEntireCache()},setTextNodeValueAtIndexByParentID:function(e,t,n){var r=i.getCachedNodeByID(e);o.setTextNodeValueAtIndex(r,t,n)}};t.exports=l}()},{"./CSSPropertyOperations":32,"./DOMChildrenOperations":33,"./DOMPropertyOperations":34,"./ReactDOMNodeCache":35,"./getTextContentAccessor":36,"./invariant":10}],16:[function(e,t){"use strict";function n(){this.reinitializeTransaction(),this.reactOnDOMReady=s.getPooled(null)}var o=e("./ExecutionEnvironment"),r=e("./PooledClass"),i=e("./ReactEvent"),a=e("./ReactInputSelection"),s=e("./ReactOnDOMReady"),u=e("./Transaction"),c=e("./mixInto"),l={initialize:a.getSelectionInformation,close:a.restoreSelection},p={initialize:function(){var e=i.isEnabled();return i.setEnabled(!1),e},close:function(e){i.setEnabled(e)}},d={initialize:function(){this.reactOnDOMReady.reset()},close:function(){this.reactOnDOMReady.notifyAll()}},h=[l,p,d],f={getTransactionWrappers:function(){return o.canUseDOM?h:[]},getReactOnDOMReady:function(){return this.reactOnDOMReady},destructor:function(){s.release(this.reactOnDOMReady),this.reactOnDOMReady=null}};c(n,u.Mixin),c(n,f),r.addPoolingTo(n),t.exports=n},{"./ExecutionEnvironment":14,"./PooledClass":37,"./ReactEvent":20,"./ReactInputSelection":38,"./ReactOnDOMReady":39,"./Transaction":40,"./mixInto":13}],17:[function(e,t){"use strict";function n(e){if(e){var t=null!=e.children?1:0,n=null!=e.content?1:0,o=null!=e.dangerouslySetInnerHTML?1:0;p(1>=t+n+o,"Can only set one of `children`, `props.content`, or `props.dangerouslySetInnerHTML`."),p(null==e.style||"object"==typeof e.style,"The `style` prop expects a mapping from style properties to values, not a string.")}}function o(e,t){this._tagOpen="<"+e+" ",this._tagClose=t?"":"</"+e+">",this.tagName=e.toUpperCase()}var r=e("./CSSPropertyOperations"),i=e("./DOMPropertyOperations"),a=e("./ReactComponent"),s=e("./ReactEvent"),u=e("./ReactMultiChild"),c=e("./escapeTextForBrowser"),l=e("./flattenChildren"),p=e("./invariant"),d=e("./keyOf"),h=e("./merge"),f=e("./mixInto"),m=s.putListener,v=s.registrationNames,g={string:!0,number:!0},y=d({content:null}),E=d({dangerouslySetInnerHTML:null}),C=d({style:null});o.Mixin={mountComponent:function(e,t){return a.Mixin.mountComponent.call(this,e,t),n(this.props),this._createOpenTagMarkup()+this._createContentMarkup(t)+this._tagClose},_createOpenTagMarkup:function(){var e=this.props,t=this._tagOpen;for(var n in e)if(e.hasOwnProperty(n)){var o=e[n];if(null!=o)if(v[n])m(this._rootNodeID,n,o);else{n===C&&(o&&(o=e.style=h(e.style)),o=r.createMarkupForStyles(o));var a=i.createMarkupForProperty(n,o);a&&(t+=" "+a)}}return t+' id="'+this._rootNodeID+'">'},_createContentMarkup:function(e){var t=this.props.dangerouslySetInnerHTML;if(null!=t){if(null!=t.__html)return t.__html}else{var n=null!=this.props.content?this.props.content:g[typeof this.props.children]?this.props.children:null,o=null!=n?null:this.props.children;if(null!=n)return c(n);if(null!=o)return this.mountMultiChild(l(o),e)}return""},receiveProps:function(e,t){p(this._rootNodeID,"Trying to control a native dom element without a backing id"),n(e),a.Mixin.receiveProps.call(this,e,t),this._updateDOMProperties(e),this._updateDOMChildren(e,t),this.props=e},_updateDOMProperties:function(e){var t=this.props;for(var n in e){var o=e[n],r=t[n];if(e.hasOwnProperty(n)&&o!==r)if(n===C){o&&(o=e.style=h(o));var i;for(var s in o)o.hasOwnProperty(s)&&(r&&r[s]===o[s]||(i||(i={}),i[s]=o[s]));i&&a.DOMIDOperations.updateStylesByID(this._rootNodeID,i)}else if(n===E){var u=r&&r.__html,c=o&&o.__html;u!==c&&a.DOMIDOperations.updateInnerHTMLByID(this._rootNodeID,o)}else n===y?a.DOMIDOperations.updateTextContentByID(this._rootNodeID,""+o):v[n]?m(this._rootNodeID,n,o):a.DOMIDOperations.updatePropertyByID(this._rootNodeID,n,o)}},_updateDOMChildren:function(e,t){var n=typeof this.props.content,o=null==this.props.content||"boolean"===n,r=typeof e.content,i=null==e.content||"boolean"===r,s=o?g[typeof this.props.children]?this.props.children:null:this.props.content,u=i?g[typeof e.children]?e.children:null:e.content,c=null!=s?null:this.props.children,p=null!=u?null:e.children;if(null!=u){var d=null!=c&&null==p;d&&this.updateMultiChild(null,t),s!==u&&a.DOMIDOperations.updateTextContentByID(this._rootNodeID,""+u)}else{var h=null!=s&&null==u;h&&a.DOMIDOperations.updateTextContentByID(this._rootNodeID,""),this.updateMultiChild(l(e.children),t)}},unmountComponent:function(){a.Mixin.unmountComponent.call(this),this.unmountMultiChild(),s.deleteAllListeners(this._rootNodeID)}},f(o,a.Mixin),f(o,o.Mixin),f(o,u.Mixin),t.exports=o},{"./CSSPropertyOperations":32,"./DOMPropertyOperations":34,"./ReactComponent":3,"./ReactEvent":20,"./ReactMultiChild":41,"./escapeTextForBrowser":42,"./flattenChildren":43,"./invariant":10,"./keyOf":44,"./merge":12,"./mixInto":13}],18:[function(e,t){"use strict";function n(e,t){if(r(e),null!=t){r(t);for(var n in t)t.hasOwnProperty(n)&&(e[n]=t[n])}}var o=e("./mergeHelpers"),r=o.checkMergeObjectArg;t.exports=n},{"./mergeHelpers":45}],20:[function(e,t){"use strict";function n(e,t,n){C(n,t,R.TopLevelCallbackCreator.createTopLevelCallback(e))}function o(e,t,n){D(n,t,R.TopLevelCallbackCreator.createTopLevelCallback(e))}function r(){C(window,"scroll",function(e){e.target===window&&p.refreshAuthoritativeScrollValues()})}function i(){C(window,"resize",function(e){e.target===window&&p.refreshAuthoritativeScrollValues()})}function a(e){v(!M,"listenAtTopLevel(...): Cannot setup top-level listener more than once.");var t=document;r(),i(),n(E.topMouseOver,"mouseover",t),n(E.topMouseDown,"mousedown",t),n(E.topMouseUp,"mouseup",t),n(E.topMouseMove,"mousemove",t),n(E.topMouseOut,"mouseout",t),n(E.topClick,"click",t),n(E.topDoubleClick,"dblclick",t),n(E.topMouseWheel,"mousewheel",t),e&&(n(E.topTouchStart,"touchstart",t),n(E.topTouchEnd,"touchend",t),n(E.topTouchMove,"touchmove",t),n(E.topTouchCancel,"touchcancel",t)),n(E.topKeyUp,"keyup",t),n(E.topKeyPress,"keypress",t),n(E.topKeyDown,"keydown",t),n(E.topChange,"change",t),n(E.topDOMCharacterDataModified,"DOMCharacterDataModified",t),n(E.topMouseWheel,"DOMMouseScroll",t),g("scroll",!0)?o(E.topScroll,"scroll",t):n(E.topScroll,"scroll",window),g("focus",!0)?(o(E.topFocus,"focus",t),o(E.topBlur,"blur",t)):g("focusin")&&(n(E.topFocus,"focusin",t),n(E.topBlur,"focusout",t))}function s(e,t,n,o){var r=h.extractAbstractEvents(e,t,n,o);h.enqueueAbstractEvents(r),h.processAbstractEventQueue()}function u(e){v(f.canUseDOM,"setEnabled(...): Cannot toggle event listening in a Worker thread. This is likely a bug in the framework. Please report immediately."),R.TopLevelCallbackCreator.setEnabled(e)}function c(){return R.TopLevelCallbackCreator.isEnabled()}function l(e,t){v(f.canUseDOM,"ensureListening(...): Cannot toggle event listening in a Worker thread. This is likely a bug in the framework. Please report immediately."),M||(R.TopLevelCallbackCreator=t,a(e),M=!0)}var p=e("./BrowserEnv"),d=e("./EventConstants"),h=e("./EventPluginHub"),f=e("./ExecutionEnvironment"),m=e("./NormalizedEventListener"),v=e("./invariant"),g=e("./isEventSupported"),y=h.registrationNames,E=d.topLevelTypes,C=m.listen,D=m.capture,M=!1,R={TopLevelCallbackCreator:null,handleTopLevel:s,setEnabled:u,isEnabled:c,ensureListening:l,registrationNames:y,putListener:h.putListener,getListener:h.getListener,deleteAllListeners:h.deleteAllListeners,trapBubbledEvent:n,trapCapturedEvent:o};t.exports=R},{"./BrowserEnv":46,"./EventConstants":47,"./EventPluginHub":27,"./ExecutionEnvironment":14,"./NormalizedEventListener":48,"./invariant":10,"./isEventSupported":49}],21:[function(e,t){"use strict";function n(e,t){return e.charAt(t)===c||t===e.length}function o(e){return""===e||e.charAt(0)===c&&e.charAt(e.length-1)!==c}function r(e){var t=s(e);return t&&t.charAt(0)===c}function i(e){return e?e.substr(0,e.lastIndexOf(c)):""}function a(e,t,n,o,r,a){e=e||"",t=t||"",u(e!==t,"traverseParentPath(...): Cannot traverse from and to the same ID, `%s`.",e);var s=d.getFirstCommonAncestorID(e,t),c=s===t;u(c||s===e,"traverseParentPath(%s, %s, ...): Cannot traverse from two IDs that do not have a parent path.",e,t);for(var l=0,h=c?i:d.nextDescendantID,f=e;r&&f===e||a&&f===t||n(f,c,o),f!==t;f=h(f,t))u(l++<p,"traverseParentPath(%s, %s, ...): Detected an infinite loop while traversing the React DOM ID tree. This may be due to malformed IDs: %s",e,t)}var s=e("./getDOMNodeID"),u=e("./invariant"),c=".",l=c.length,p=100,d={separator:c,getFirstReactDOM:function(e){for(var t=e;t&&t.parentNode!==t;){if(r(t))return t;t=t.parentNode}return null},findComponentRoot:function(e,t){for(var n=e.firstChild;n;){if(t===n.id)return n;if(0===t.indexOf(n.id))return d.findComponentRoot(n,t);n=n.nextSibling}},getFirstCommonAncestorID:function(e,t){var r=Math.min(e.length,t.length);if(0===r)return"";for(var i=0,a=0;r>=a;a++)if(n(e,a)&&n(t,a))i=a;else if(e.charAt(a)!==t.charAt(a))break;var s=e.substr(0,i);return u(o(s),"getFirstCommonAncestorID(%s, %s): Expected a valid React DOM ID: %s",e,t,s),s},getReactRootID:function(e){return".reactRoot["+e+"]"},getReactRootIDFromNodeID:function(e){var t=/\.reactRoot\[[^\]]+\]/.exec(e);return t&&t[0]},traverseEnterLeave:function(e,t,n,o,r){var i=d.getFirstCommonAncestorID(e,t);i!==e&&a(e,i,n,o,!1,!0),i!==t&&a(i,t,n,r,!0,!1)},traverseTwoPhase:function(e,t,n){e&&(a("",e,t,n,!0,!1),a(e,"",t,n,!1,!0))},nextDescendantID:function(e,t){u(o(e)&&o(t),"nextDescendantID(%s, %s): Received an invalid React DOM ID.",e,t);var r=d.getFirstCommonAncestorID(e,t);if(u(r===e,"nextDescendantID(...): React has made an invalid assumption about the DOM hierarchy. Expected `%s` to be an ancestor of `%s`.",e,t),e===t)return e;for(var i=e.length+l,a=i;a<t.length&&!n(t,a);a++);return t.substr(0,a)}};t.exports=d},{"./getDOMNodeID":50,"./invariant":10}],22:[function(e,t){!function(){"use strict";var n=e("./ExecutionEnvironment"),o=e("./ReactEvent"),r=e("./ReactInstanceHandles"),i=e("./getDOMNodeID"),a=!0,s={setEnabled:function(e){a=!!e},isEnabled:function(){return a},createTopLevelCallback:function(e){return function(t){if(a){var s=r.getFirstReactDOM(t.target)||n.global,u=i(s),c=t,l=s;o.handleTopLevel(e,c,u,l)}}}};t.exports=s}()},{"./ExecutionEnvironment":14,"./ReactEvent":20,"./ReactInstanceHandles":21,"./getDOMNodeID":50}],23:[function(e,t){function n(e){var t=o(e);if(!t)throw"undefined"==typeof e?e="undefined":null===e&&(e="null"),new Error('Tried to get element "'+e.toString()+'" but it is not present '+"on the page.");return t}var o=e("./ge");t.exports=n},{"./ge":51}],24:[function(e,t){"use strict";var n=e("./ReactCompositeComponent"),o=e("./ReactDOM"),r=e("./ReactEvent"),i=e("./EventConstants"),a=o.form,s=n.createClass({render:function(){return this.transferPropsTo(a(null,this.props.children))},componentDidMount:function(e){r.trapBubbledEvent(i.topLevelTypes.topSubmit,"submit",e)}});t.exports=s},{"./ReactCompositeComponent":2,"./ReactDOM":4,"./ReactEvent":20,"./EventConstants":47}],25:[function(e,t){"use strict";var n=e("./keyOf"),o=[n({ResponderEventPlugin:null}),n({SimpleEventPlugin:null}),n({TapEventPlugin:null}),n({EnterLeaveEventPlugin:null}),n({AnalyticsEventPlugin:null})];t.exports=o},{"./keyOf":44}],26:[function(e,t){!function(){"use strict";var n=e("./EventPropagators"),o=e("./ExecutionEnvironment"),r=e("./AbstractEvent"),i=e("./EventConstants"),a=e("./ReactInstanceHandles"),s=e("./getDOMNodeID"),u=e("./keyOf"),c=i.topLevelTypes,l=a.getFirstReactDOM,p={mouseEnter:{registrationName:u({onMouseEnter:null})},mouseLeave:{registrationName:u({onMouseLeave:null})}},d=function(e,t,i,a){if(e!==c.topMouseOver||!t.relatedTarget&&!t.fromElement){if(e!==c.topMouseOut&&e!==c.topMouseOver)return null;var u,d;if(e===c.topMouseOut?(u=l(t.relatedTarget||t.toElement)||o.global,d=a):(u=a,d=o.global),d!==u){var h=d?s(d):"",f=u?s(u):"",m=r.getPooled(p.mouseLeave,h,e,t),v=r.getPooled(p.mouseEnter,f,e,t);return n.accumulateEnterLeaveDispatches(m,v,h,f),[m,v]}}},h={abstractEventTypes:p,extractAbstractEvents:d};t.exports=h}()},{"./EventPropagators":52,"./ExecutionEnvironment":14,"./AbstractEvent":53,"./EventConstants":47,"./ReactInstanceHandles":21,"./getDOMNodeID":50,"./keyOf":44}],27:[function(e,t){!function(){"use strict";function n(e,t){var n,o=e.phasedRegistrationNames;if(o)for(n in o)o.hasOwnProperty(n)&&(g[o[n]]=t,y.push(o[n]));else e.registrationName&&(g[e.registrationName]=t,y.push(e.registrationName))}function o(e){if(e.type.registrationName)return g[e.type.registrationName];for(var t in e.type.phasedRegistrationNames)if(e.type.phasedRegistrationNames.hasOwnProperty(t)){var n=g[e.type.phasedRegistrationNames[t]];if(n)return n}return null}var r=e("./AbstractEvent"),i=e("./CallbackRegistry"),a=e("./EventPluginUtils"),s=e("./EventPropagators"),u=e("./ExecutionEnvironment"),c=e("./accumulate"),l=e("./forEachAccumulated"),p=e("./keyMirror"),d=e("./merge"),h=e("./throwIf"),f=i.deleteListener,m=p({DOUBLE_REGISTER:null,DOUBLE_ENQUEUE:null,DEPENDENCY_ERROR:null}),v={injectInstanceHandle:function(e){s.injection.injectInstanceHandle(e)},EventPluginOrder:null,injectEventPluginOrder:function(e){v.EventPluginOrder=e,v._recomputePluginsList()},plugins:[],injectEventPluginsByName:function(e){v.pluginsByName=d(v.pluginsByName,e),v._recomputePluginsList()},pluginsByName:{},_recomputePluginsList:function(){var e=function(e,t){var o=v.EventPluginOrder.indexOf(e);if(h(-1===o,m.DEPENDENCY_ERROR+e),!v.plugins[o]){v.plugins[o]=t;for(var r in t.abstractEventTypes){var i=t.abstractEventTypes[r];n(i,t)}}};if(v.EventPluginOrder){var t=v.pluginsByName;for(var o in t)e(o,t[o])}}},g={},y=[],E=[],C=function(e){var t;for(t=0;t<y.length;t++)f(e,y[t])},D=function(e,t,n,o){for(var r,i=v.plugins,a=i.length,s=0;a>s;s++){var u=i[s],l=u&&u.extractAbstractEvents(e,t,n,o); l&&(r=c(r,l))}return r},M=function(e){e&&(E=c(E,e))},R=function(e){if(e){var t=o(e),n=t&&t.executeDispatch;a.executeDispatchesInOrder(e,n||a.executeDispatch),r.release(e)}},I=function(){var e=E;E=null,l(e,R)},O={registrationNames:g,registrationNamesArr:y,putListener:i.putListener,getListener:i.getListener,deleteAllListeners:C,extractAbstractEvents:D,enqueueAbstractEvents:M,processAbstractEventQueue:I,injection:v};u.canUseDOM&&(window.EventPluginHub=O),t.exports=O}()},{"./AbstractEvent":53,"./CallbackRegistry":54,"./EventPluginUtils":55,"./EventPropagators":52,"./ExecutionEnvironment":14,"./accumulate":56,"./forEachAccumulated":57,"./keyMirror":11,"./merge":12,"./throwIf":31}],28:[function(e,t){"use strict";var n=e("./AbstractEvent"),o=e("./EventConstants"),r=e("./EventPropagators"),i=e("./keyOf"),a=o.topLevelTypes,s={abstractEventTypes:{mouseDown:{phasedRegistrationNames:{bubbled:i({onMouseDown:!0}),captured:i({onMouseDownCapture:!0})}},mouseUp:{phasedRegistrationNames:{bubbled:i({onMouseUp:!0}),captured:i({onMouseUpCapture:!0})}},mouseMove:{phasedRegistrationNames:{bubbled:i({onMouseMove:!0}),captured:i({onMouseMoveCapture:!0})}},doubleClick:{phasedRegistrationNames:{bubbled:i({onDoubleClick:!0}),captured:i({onDoubleClickCapture:!0})}},click:{phasedRegistrationNames:{bubbled:i({onClick:!0}),captured:i({onClickCapture:!0})}},mouseWheel:{phasedRegistrationNames:{bubbled:i({onMouseWheel:!0}),captured:i({onMouseWheelCapture:!0})}},touchStart:{phasedRegistrationNames:{bubbled:i({onTouchStart:!0}),captured:i({onTouchStartCapture:!0})}},touchEnd:{phasedRegistrationNames:{bubbled:i({onTouchEnd:!0}),captured:i({onTouchEndCapture:!0})}},touchCancel:{phasedRegistrationNames:{bubbled:i({onTouchCancel:!0}),captured:i({onTouchCancelCapture:!0})}},touchMove:{phasedRegistrationNames:{bubbled:i({onTouchMove:!0}),captured:i({onTouchMoveCapture:!0})}},keyUp:{phasedRegistrationNames:{bubbled:i({onKeyUp:!0}),captured:i({onKeyUpCapture:!0})}},keyPress:{phasedRegistrationNames:{bubbled:i({onKeyPress:!0}),captured:i({onKeyPressCapture:!0})}},keyDown:{phasedRegistrationNames:{bubbled:i({onKeyDown:!0}),captured:i({onKeyDownCapture:!0})}},focus:{phasedRegistrationNames:{bubbled:i({onFocus:!0}),captured:i({onFocusCapture:!0})}},blur:{phasedRegistrationNames:{bubbled:i({onBlur:!0}),captured:i({onBlurCapture:!0})}},scroll:{phasedRegistrationNames:{bubbled:i({onScroll:!0}),captured:i({onScrollCapture:!0})}},change:{phasedRegistrationNames:{bubbled:i({onChange:!0}),captured:i({onChangeCapture:!0})}},submit:{phasedRegistrationNames:{bubbled:i({onSubmit:!0}),captured:i({onSubmitCapture:!0})}},DOMCharacterDataModified:{phasedRegistrationNames:{bubbled:i({onDOMCharacterDataModified:!0}),captured:i({onDOMCharacterDataModifiedCapture:!0})}}},executeDispatch:function(e,t,n){var o=t(e,n);o===!1&&(e.stopPropagation(),e.preventDefault())},extractAbstractEvents:function(e,t,o,i){var u,c=s.topLevelTypesToAbstract[e];if(!c)return null;switch(e){case a.topMouseWheel:u=n.normalizeMouseWheelData(t);break;case a.topScroll:u=n.normalizeScrollDataFromTarget(i);break;case a.topClick:case a.topDoubleClick:case a.topChange:case a.topDOMCharacterDataModified:case a.topMouseDown:case a.topMouseUp:case a.topMouseMove:case a.topTouchMove:case a.topTouchStart:case a.topTouchEnd:u=n.normalizePointerData(t);break;default:u=null}var l=n.getPooled(c,o,e,t,u);return r.accumulateTwoPhaseDispatches(l),l}};s.topLevelTypesToAbstract={topMouseDown:s.abstractEventTypes.mouseDown,topMouseUp:s.abstractEventTypes.mouseUp,topMouseMove:s.abstractEventTypes.mouseMove,topClick:s.abstractEventTypes.click,topDoubleClick:s.abstractEventTypes.doubleClick,topMouseWheel:s.abstractEventTypes.mouseWheel,topTouchStart:s.abstractEventTypes.touchStart,topTouchEnd:s.abstractEventTypes.touchEnd,topTouchMove:s.abstractEventTypes.touchMove,topTouchCancel:s.abstractEventTypes.touchCancel,topKeyUp:s.abstractEventTypes.keyUp,topKeyPress:s.abstractEventTypes.keyPress,topKeyDown:s.abstractEventTypes.keyDown,topFocus:s.abstractEventTypes.focus,topBlur:s.abstractEventTypes.blur,topScroll:s.abstractEventTypes.scroll,topChange:s.abstractEventTypes.change,topSubmit:s.abstractEventTypes.submit,topDOMCharacterDataModified:s.abstractEventTypes.DOMCharacterDataModified},t.exports=s},{"./AbstractEvent":53,"./EventConstants":47,"./EventPropagators":52,"./keyOf":44}],30:[function(e,t){"use strict";function n(e){e||(e="");var t,n=arguments.length;if(n>1)for(var o=1;n>o;o++)t=arguments[o],t&&(e+=" "+t);return e}t.exports=n},{}],31:[function(e,t){"use strict";var n=function(e,t){if(e)throw new Error(t)};t.exports=n},{}],37:[function(e,t){"use strict";var n=function(e){var t=this;if(t.instancePool.length){var n=t.instancePool.pop();return t.call(n,e),n}return new t(e)},o=function(e,t){var n=this;if(n.instancePool.length){var o=n.instancePool.pop();return n.call(o,e,t),o}return new n(e,t)},r=function(e,t,n,o,r){var i=this;if(i.instancePool.length){var a=i.instancePool.pop();return i.call(a,e,t,n,o,r),a}return new i(e,t,n,o,r)},i=function(e){var t=this;e.destructor&&e.destructor(),t.instancePool.length<t.poolSize&&t.instancePool.push(e)},a=10,s=n,u=function(e,t){var n=e;return n.instancePool=[],n.getPooled=t||s,n.poolSize||(n.poolSize=a),n.release=i,n},c={addPoolingTo:u,oneArgumentPooler:n,twoArgumentPooler:o,fiveArgumentPooler:r};t.exports=c},{}],38:[function(e,t){"use strict";function n(){try{return document.activeElement}catch(e){}}var o={hasSelectionCapabilities:function(e){return e&&("INPUT"===e.nodeName&&"text"===e.type||"TEXTAREA"===e.nodeName||"true"===e.contentEditable)},getSelectionInformation:function(){var e=n();return{focusedElem:e,selectionRange:o.hasSelectionCapabilities(e)?o.getSelection(e):null}},restoreSelection:function(e){var t=n(),r=e.focusedElem,i=e.selectionRange;t!==r&&document.getElementById(r.id)&&(o.hasSelectionCapabilities(r)&&o.setSelection(r,i),r.focus())},getSelection:function(e){var t;if("true"===e.contentEditable&&window.getSelection){t=window.getSelection().getRangeAt(0);var n=t.commonAncestorContainer;return n&&3===n.nodeType&&(n=n.parentNode),n!==e?{start:0,end:0}:{start:t.startOffset,end:t.endOffset}}if(!document.selection)return{start:e.selectionStart,end:e.selectionEnd};if(t=document.selection.createRange(),t.parentElement()!==e)return{start:0,end:0};var o=e.value.length;if("INPUT"===e.nodeName)return{start:-t.moveStart("character",-o),end:-t.moveEnd("character",-o)};var r=t.duplicate();r.moveToElementText(e),r.setEndPoint("StartToEnd",t);var i=o-r.text.length;return r.setEndPoint("StartToStart",t),{start:o-r.text.length,end:i}},setSelection:function(e,t){var n,o=t.start,r=t.end;if("undefined"==typeof r&&(r=o),document.selection){if("TEXTAREA"===e.tagName){var i=(e.value.slice(0,o).match(/\r/g)||[]).length,a=(e.value.slice(o,r).match(/\r/g)||[]).length;o-=i,r-=i+a}n=e.createTextRange(),n.collapse(!0),n.moveStart("character",o),n.moveEnd("character",r-o),n.select()}else if("true"===e.contentEditable){if(1===e.childNodes.length){n=document.createRange(),n.setStart(e.childNodes[0],o),n.setEnd(e.childNodes[0],r);var s=window.getSelection();s.removeAllRanges(),s.addRange(n)}}else e.selectionStart=o,e.selectionEnd=Math.min(r,e.value.length),e.focus()}};t.exports=o},{}],44:[function(e,t){var n=function(e){var t;for(t in e)if(e.hasOwnProperty(t))return t;return null};t.exports=n},{}],46:[function(e,t){"use strict";var n={currentScrollLeft:0,currentScrollTop:0,browserInfo:null,refreshAuthoritativeScrollValues:function(){n.currentScrollLeft=document.body.scrollLeft+document.documentElement.scrollLeft,n.currentScrollTop=document.body.scrollTop+document.documentElement.scrollTop}};t.exports=n},{}],50:[function(e,t){"use strict";function n(e){if(e.getAttributeNode){var t=e.getAttributeNode("id");return t&&t.value||""}return e.id||""}t.exports=n},{}],51:[function(e,t){function n(e,t,n){return"string"!=typeof e?e:t?o(e,t,n):document.getElementById(e)}function o(e,t,n){var i,a,s;if(r(t)==e)return t;if(t.getElementsByTagName){for(a=t.getElementsByTagName(n||"*"),s=0;s<a.length;s++)if(r(a[s])==e)return a[s]}else for(a=t.childNodes,s=0;s<a.length;s++)if(i=o(e,a[s]))return i;return null}function r(e){var t=e.getAttributeNode&&e.getAttributeNode("id");return t?t.value:null}t.exports=n},{}],54:[function(e,t){"use strict";var n={},o={putListener:function(e,t,o){var r=n[t]||(n[t]={});r[e]=o},getListener:function(e,t){var o=n[t];return o&&o[e]},deleteListener:function(e,t){var o=n[t];o&&delete o[e]},__purge:function(){n={}}};t.exports=o},{}],57:[function(e,t){"use strict";var n=function(e,t,n){Array.isArray(e)?e.forEach(t,n):e&&t.call(n,e)};t.exports=n},{}],29:[function(e,t){function n(e){return function(){return e}}function o(){}var r=e("./copyProperties");r(o,{thatReturns:n,thatReturnsFalse:n(!1),thatReturnsTrue:n(!0),thatReturnsNull:n(null),thatReturnsThis:function(){return this},thatReturnsArgument:function(e){return e},mustImplement:function(){return function(){}}}),t.exports=o},{"./copyProperties":58}],32:[function(e,t){"use strict";var n=e("./dangerousStyleValue"),o=e("./escapeTextForBrowser"),r=e("./hyphenate"),i=e("./memoizeStringOnly"),a=i(function(e){return o(r(e))}),s={createMarkupForStyles:function(e){var t="";for(var o in e)if(e.hasOwnProperty(o)){var r=e[o];"undefined"!=typeof r&&(t+=a(o)+":",t+=n(o,r)+";")}return t},setValueForStyles:function(e,t){var o=e.style;for(var r in t)if(t.hasOwnProperty(r)){var i=t[r];o[r]=n(r,i)}}};t.exports=s},{"./dangerousStyleValue":59,"./escapeTextForBrowser":42,"./hyphenate":60,"./memoizeStringOnly":61}],33:[function(e,t){!function(){"use strict";var n=e("./Danger"),o=e("./insertNodeAt"),r=e("./keyOf");e("./throwIf");var i=r({moveFrom:null}),a=r({insertMarkup:null}),s=r({removeAt:null}),u=function(e,t){for(var n,o,r,a=0;a<t.length;a++)o=t[a],i in o?(n=n||[],r=o.moveFrom,n[r]=e.childNodes[r]):s in o&&(n=n||[],r=o.removeAt,n[r]=e.childNodes[r]);return n},c=function(e,t){for(var n=0;n<t.length;n++){var o=t[n];o&&e.removeChild(t[n])}},l=function(e,t,r){for(var u,c,l,p=0;p<t.length;p++)if(l=t[p],i in l)u=r[l.moveFrom],c=l.finalIndex,o(e,u,c);else if(s in l);else if(a in l){c=l.finalIndex;var d=l.insertMarkup;n.dangerouslyInsertMarkupAt(e,d,c)}},p=function(e,t){var n=u(e,t);n&&c(e,n),l(e,t,n)},d=function(e,t,n){e.childNodes[t].nodeValue=n},h={dangerouslyReplaceNodeWithMarkup:n.dangerouslyReplaceNodeWithMarkup,manageChildren:p,setTextNodeValueAtIndex:d};t.exports=h}()},{"./Danger":62,"./insertNodeAt":63,"./keyOf":44,"./throwIf":31}],34:[function(e,t){"use strict";var n=e("./DOMProperty"),o=e("./escapeTextForBrowser"),r=e("./memoizeStringOnly"),i=r(function(e){return o(e)+'="'}),a={createMarkupForProperty:function(e,t){if(n.isStandardName[e]){if(null==t||n.hasBooleanValue[e]&&!t)return"";var r=n.getAttributeName[e];return i(r)+o(t)+'"'}return n.isCustomAttribute(e)?null==t?"":i(e)+o(t)+'"':null},setValueForProperty:function(e,t,o){if(n.isStandardName[t]){var r=n.getMutationMethod[t];if(r)r(e,o);else if(n.mustUseAttribute[t])n.hasBooleanValue[t]&&!o?e.removeAttribute(n.getAttributeName[t]):e.setAttribute(n.getAttributeName[t],o);else{var i=n.getPropertyName[t];n.hasSideEffects[t]&&e[i]===o||(e[i]=o)}}else n.isCustomAttribute(t)&&e.setAttribute(t,o)}};t.exports=a},{"./DOMProperty":64,"./escapeTextForBrowser":42,"./memoizeStringOnly":61}],35:[function(e,t){"use strict";var n=e("./ReactMount"),o={},r={purgeEntireCache:function(){return o={}},getCachedNodeByID:function(e){return o[e]||(o[e]=document.getElementById(e)||n.findReactRenderedDOMNodeSlow(e))}};t.exports=r},{"./ReactMount":5}],36:[function(e,t){"use strict";function n(){return!r&&o.canUseDOM&&(r="innerText"in document.createElement("div")?"innerText":"textContent"),r}var o=e("./ExecutionEnvironment"),r=null;t.exports=n},{"./ExecutionEnvironment":14}],39:[function(e,t){"use strict";function n(e){this._queue=e||null}var o=e("./PooledClass"),r=e("./mixInto");r(n,{enqueue:function(e,t){this._queue=this._queue||[],this._queue.push({component:e,callback:t})},notifyAll:function(){var e=this._queue;if(e){this._queue=null;for(var t=0,n=e.length;n>t;t++){var o=e[t].component,r=e[t].callback;r.call(o,o.getDOMNode())}e.length=0}},reset:function(){this._queue=null},destructor:function(){this.reset()}}),o.addPoolingTo(n),t.exports=n},{"./PooledClass":37,"./mixInto":13}],40:[function(e,t){!function(){"use strict";var n=e("./throwIf"),o="DUAL_TRANSACTION",r="MISSING_TRANSACTION",i={reinitializeTransaction:function(){this.transactionWrappers=this.getTransactionWrappers(),this.wrapperInitData?this.wrapperInitData.length=0:this.wrapperInitData=[],this.timingMetrics||(this.timingMetrics={}),this.timingMetrics.methodInvocationTime=0,this.timingMetrics.wrapperInitTimes?this.timingMetrics.wrapperInitTimes.length=0:this.timingMetrics.wrapperInitTimes=[],this.timingMetrics.wrapperCloseTimes?this.timingMetrics.wrapperCloseTimes.length=0:this.timingMetrics.wrapperCloseTimes=[],this._isInTransaction=!1},_isInTransaction:!1,getTransactionWrappers:null,isInTransaction:function(){return!!this._isInTransaction},perform:function(e,t,r,i,a,s,u,c){n(this.isInTransaction(),o);var l,p=Date.now(),d=null;try{this.initializeAll(),l=e.call(t,r,i,a,s,u,c)}catch(h){d=h}finally{var f=Date.now();this.methodInvocationTime+=f-p;try{this.closeAll()}catch(m){d=d||m}}if(d)throw d;return l},initializeAll:function(){this._isInTransaction=!0;for(var e=this.transactionWrappers,t=this.timingMetrics.wrapperInitTimes,n=null,o=0;o<e.length;o++){var r=Date.now(),i=e[o];try{this.wrapperInitData[o]=i.initialize?i.initialize.call(this):null}catch(s){n=n||s,this.wrapperInitData[o]=a.OBSERVED_ERROR}finally{var u=t[o],c=Date.now();t[o]=(u||0)+(c-r)}}if(n)throw n},closeAll:function(){n(!this.isInTransaction(),r);for(var e=this.transactionWrappers,t=this.timingMetrics.wrapperCloseTimes,o=null,i=0;i<e.length;i++){var s=e[i],u=Date.now(),c=this.wrapperInitData[i];try{c!==a.OBSERVED_ERROR&&s.close&&s.close.call(this,c)}catch(l){o=o||l}finally{var p=Date.now(),d=t[i];t[i]=(d||0)+(p-u)}}if(this.wrapperInitData.length=0,this._isInTransaction=!1,o)throw o}},a={Mixin:i,OBSERVED_ERROR:{}};t.exports=a}()},{"./throwIf":31}],41:[function(e,t){!function(){"use strict";function n(e,t){return e&&t&&e.constructor===t.constructor}var o=e("./ReactComponent"),r={enqueueMarkupAt:function(e,t){this.domOperations=this.domOperations||[],this.domOperations.push({insertMarkup:e,finalIndex:t})},enqueueMove:function(e,t){this.domOperations=this.domOperations||[],this.domOperations.push({moveFrom:e,finalIndex:t})},enqueueUnmountChildByName:function(e,t){o.isValidComponent(t)&&(this.domOperations=this.domOperations||[],this.domOperations.push({removeAt:t._domIndex}),t.unmountComponent&&t.unmountComponent(),delete this._renderedChildren[e])},processChildDOMOperationsQueue:function(){this.domOperations&&(o.DOMIDOperations.manageChildrenByParentID(this._rootNodeID,this.domOperations),this.domOperations=null)},unmountMultiChild:function(){var e=this._renderedChildren;for(var t in e)if(e.hasOwnProperty(t)&&e[t]){var n=e[t];n.unmountComponent&&n.unmountComponent()}this._renderedChildren=null},mountMultiChild:function(e,t){var n="",o=0;for(var r in e){var i=e[r];e.hasOwnProperty(r)&&i&&(n+=i.mountComponent(this._rootNodeID+"."+r,t),i._domIndex=o,o++)}return this._renderedChildren=e,this.domOperations=null,n},updateMultiChild:function(e,t){if(e||this._renderedChildren){e&&!this._renderedChildren?this._renderedChildren={}:!e&&this._renderedChildren&&(e={});var o=this._rootNodeID+".",r=null,i=0,a=0,s=0;for(var u in e)if(e.hasOwnProperty(u)){var c=this._renderedChildren[u],l=e[u];if(n(c,l))r&&(this.enqueueMarkupAt(r,a-i),r=null),i=0,c._domIndex<s&&this.enqueueMove(c._domIndex,a),s=Math.max(c._domIndex,s),!l.props.isStatic&&c.receiveProps(l.props,t),c._domIndex=a;else if(c&&(this.enqueueUnmountChildByName(u,c),s=Math.max(c._domIndex,s)),l){this._renderedChildren[u]=l;var p=l.mountComponent(o+u,t);r=r?r+p:p,i++,l._domIndex=a}a=l?a+1:a}r&&this.enqueueMarkupAt(r,a-i);for(var d in this._renderedChildren)if(this._renderedChildren.hasOwnProperty(d)){var h=this._renderedChildren[d];h&&!e[d]&&this.enqueueUnmountChildByName(d,h)}this.processChildDOMOperationsQueue()}}},i={Mixin:r};t.exports=i}()},{"./ReactComponent":3}],42:[function(e,t){"use strict";function n(e){return o[e]}e("./throwIf");var o={"&":"&amp;",">":"&gt;","<":"&lt;",'"':"&quot;","'":"&#x27;","/":"&#x2f;"},r=function(e){var t=typeof e,o="object"===t;return""===e||o?"":"string"===t?e.replace(/[&><"'\/]/g,n):(""+e).replace(/[&><"'\/]/g,n)};t.exports=r},{"./throwIf":31}],43:[function(e,t){"use strict";function n(e){if(null===e||void 0===e)return e;var t={};return u(t,e,""),t}var o=e("./ReactTextComponent"),r=e("./escapeTextForBrowser"),i=e("./throwIf"),a="INVALID_CHILD",s="0",u=function(e,t,n){if(Array.isArray(t))for(var c=0;c<t.length;c++)u(e,t[c],n+"["+c+"]");else{var l=typeof t,p=""===n,d=p?s:n;if(null===t||void 0===t||"boolean"===l)e[d]=null;else if(t.mountComponentIntoNode)e[d]=t;else if("object"===l){i(t&&1===t.nodeType,a);for(var h in t)t.hasOwnProperty(h)&&u(e,t[h],n+"{"+r(h)+"}")}else"string"===l?e[d]=new o(t):"number"===l&&(e[d]=new o(""+t))}};t.exports=n},{"./ReactTextComponent":65,"./escapeTextForBrowser":42,"./throwIf":31}],45:[function(e,t){"use strict";var n=e("./keyMirror"),o=e("./throwIf"),r=36,i=n({MERGE_ARRAY_FAIL:null,MERGE_CORE_FAILURE:null,MERGE_TYPE_USAGE_FAILURE:null,MERGE_DEEP_MAX_LEVELS:null,MERGE_DEEP_NO_ARR_STRATEGY:null}),a=function(e){return"object"!=typeof e||null===e},s={MAX_MERGE_DEPTH:r,isTerminal:a,normalizeMergeArg:function(e){return void 0===e||null===e?{}:e},checkMergeArrayArgs:function(e,t){o(!Array.isArray(e)||!Array.isArray(t),i.MERGE_CORE_FAILURE)},checkMergeObjectArgs:function(e,t){s.checkMergeObjectArg(e),s.checkMergeObjectArg(t)},checkMergeObjectArg:function(e){o(a(e)||Array.isArray(e),i.MERGE_CORE_FAILURE)},checkMergeLevel:function(e){o(e>=r,i.MERGE_DEEP_MAX_LEVELS)},checkArrayStrategy:function(e){o(void 0!==e&&!(e in s.ArrayStrategies),i.MERGE_DEEP_NO_ARR_STRATEGY)},ArrayStrategies:n({Clobber:!0,IndexByIndex:!0}),ERRORS:i};t.exports=s},{"./keyMirror":11,"./throwIf":31}],47:[function(e,t){"use strict";var n=e("./keyMirror"),o=n({bubbled:null,captured:null}),r=n({topBlur:null,topChange:null,topClick:null,topDOMCharacterDataModified:null,topDoubleClick:null,topFocus:null,topKeyDown:null,topKeyPress:null,topKeyUp:null,topMouseDown:null,topMouseMove:null,topMouseOut:null,topMouseOver:null,topMouseUp:null,topMouseWheel:null,topScroll:null,topSubmit:null,topTouchCancel:null,topTouchEnd:null,topTouchMove:null,topTouchStart:null}),i={topLevelTypes:r,PropagationPhases:o};t.exports=i},{"./keyMirror":11}],48:[function(e,t){"use strict";function n(e){var t=e||window.event,n="target"in t,o=t.target||t.srcElement||window,r=3===o.nodeType?o.parentNode:o;return n&&t.target===r||(t=Object.create(t),t.target=r),t}function o(e){return function(t){e(n(t))}}var r=e("./EventListener"),i={listen:function(e,t,n){r.listen(e,t,o(n))},capture:function(e,t,n){r.capture(e,t,o(n))}};t.exports=i},{"./EventListener":66}],49:[function(e,t){"use strict";function n(e,t){if(!o||t&&!o.addEventListener)return!1;var n=document.createElement("div"),r="on"+e,i=r in n;return i||(n.setAttribute(r,""),i="function"==typeof n[r],"undefined"!=typeof n[r]&&(n[r]=void 0),n.removeAttribute(r)),n=null,i}var o,r=e("./ExecutionEnvironment");r.canUseDOM&&(o=document.createElement("div")),t.exports=n},{"./ExecutionEnvironment":14}],52:[function(e,t){"use strict";function n(e,t,n){var o=t.type.phasedRegistrationNames[n];return f(e,o)}function o(e,t,o){var r=t?m.bubbled:m.captured,i=n(e,o,r);i&&(o._dispatchListeners=d(o._dispatchListeners,i),o._dispatchIDs=d(o._dispatchIDs,e))}function r(e){e&&e.type.phasedRegistrationNames&&v.InstanceHandle.traverseTwoPhase(e.abstractTargetID,o,e)}function i(e,t,n){if(n&&n.type.registrationName){var o=f(e,n.type.registrationName);o&&(n._dispatchListeners=d(n._dispatchListeners,o),n._dispatchIDs=d(n._dispatchIDs,e))}}function a(e){e&&e.type.registrationName&&i(e.abstractTargetID,null,e)}function s(e){h(e,r)}function u(e,t,n,o){v.InstanceHandle.traverseEnterLeave(n,o,i,e,t)}function c(e){h(e,a)}var l=e("./CallbackRegistry"),p=e("./EventConstants"),d=e("./accumulate"),h=e("./forEachAccumulated"),f=l.getListener,m=p.PropagationPhases,v={InstanceHandle:null,injectInstanceHandle:function(e){v.InstanceHandle=e},validate:function(){var e=!v.InstanceHandle||!v.InstanceHandle.traverseTwoPhase||!v.InstanceHandle.traverseEnterLeave;if(e)throw new Error("InstanceHandle not injected before use!")}},g={accumulateTwoPhaseDispatches:s,accumulateDirectDispatches:c,accumulateEnterLeaveDispatches:u,injection:v};t.exports=g},{"./CallbackRegistry":54,"./accumulate":56,"./EventConstants":47,"./forEachAccumulated":57}],53:[function(e,t){"use strict";function n(e,t,n,o,r){this.type=e,this.abstractTargetID=t||"",this.originatingTopLevelEventType=n,this.nativeEvent=o,this.data=r,this.target=o&&o.target,this._dispatchListeners=null,this._dispatchIDs=null,this.isPropagationStopped=!1}var o=e("./BrowserEnv"),r=e("./PooledClass"),i=e("./TouchEventUtils");e("./throwIf");var a=20;n.poolSize=a,n.prototype.destructor=function(){this.target=null,this._dispatchListeners=null,this._dispatchIDs=null},r.addPoolingTo(n,r.fiveArgumentPooler),n.prototype.stopPropagation=function(){this.isPropagationStopped=!0,this.nativeEvent.stopPropagation&&this.nativeEvent.stopPropagation(),this.nativeEvent.cancelBubble=!0},n.prototype.preventDefault=function(){n.preventDefaultOnNativeEvent(this.nativeEvent)},n.preventDefaultOnNativeEvent=function(e){e.preventDefault?e.preventDefault():e.returnValue=!1},n.normalizeScrollDataFromTarget=function(e){return{scrollTop:e.scrollTop,scrollLeft:e.scrollLeft,clientWidth:e.clientWidth,clientHeight:e.clientHeight,scrollHeight:e.scrollHeight,scrollWidth:e.scrollWidth}},n.normalizeMouseWheelData=function(e){var t=0,n=0,o=0;return e.wheelDelta&&(t=e.wheelDelta/120),e.detail&&(t=-e.detail/3),o=t,void 0!==e.axis&&e.axis===e.HORIZONTAL_AXIS&&(o=0,n=-t),void 0!==e.wheelDeltaY&&(o=e.wheelDeltaY/120),void 0!==e.wheelDeltaX&&(n=-e.wheelDeltaX/120),{delta:t,deltaX:n,deltaY:o}},n.isNativeClickEventRightClick=function(e){return e.which?3===e.which:e.button?2===e.button:!1},n.normalizePointerData=function(e){return{globalX:n.eventPageX(e),globalY:n.eventPageY(e),rightMouseButton:n.isNativeClickEventRightClick(e)}},n.normalizeDragEventData=function(e,t,n,o,r){return{globalX:t,globalY:n,startX:o,startY:r}},n.eventPageY=function(e){var t=i.extractSingleTouch(e);return t?t.pageY:"undefined"!=typeof e.pageY?e.pageY:e.clientY+o.currentPageScrollTop},n.eventPageX=function(e){var t=i.extractSingleTouch(e);return t?t.pageX:"undefined"!=typeof e.pageX?e.pageX:e.clientX+o.currentPageScrollLeft},n.persistentCloneOf=function(e){return new n(e.type,e.abstractTargetID,e.originatingTopLevelEventType,e.nativeEvent,e.data,e.target)},t.exports=n},{"./BrowserEnv":46,"./PooledClass":37,"./TouchEventUtils":67,"./throwIf":31}],55:[function(e,t){"use strict";function n(e){return e===v.topMouseUp||e===v.topTouchEnd||e===v.topTouchCancel}function o(e){return e===v.topMouseMove||e===v.topTouchMove}function r(e){return e===v.topMouseDown||e===v.topTouchStart}function i(e,t){var n=f.eventPageX(t),o=f.eventPageY(t);e.pageX=n,e.pageY=o}function a(e,t){var n=f.eventPageX(t),o=f.eventPageY(t);return Math.pow(Math.pow(n-e.pageX,2)+Math.pow(o-e.pageY,2),.5)}function s(e,t){var n=e._dispatchListeners,o=e._dispatchIDs;if(Array.isArray(n)){var r;for(r=0;r<n.length&&!e.isPropagationStopped;r++)t(e,n[r],o[r])}else n&&t(e,n,o)}function u(e,t,n){t(e,n)}function c(e,t){s(e,t),e._dispatchListeners=null,e._dispatchIDs=null}function l(e){var t=e._dispatchListeners,n=e._dispatchIDs;if(Array.isArray(t)){var o;for(o=0;o<t.length&&!e.isPropagationStopped;o++)if(t[o](e,n[o]))return n[o]}else if(t&&t(e,n))return n;return null}function p(e){var t=e._dispatchListeners,n=e._dispatchIDs;m(!Array.isArray(t),"executeDirectDispatch(...): Invalid `abstractEvent`.");var o=t?t(e,n):null;return e._dispatchListeners=null,e._dispatchIDs=null,o}function d(e){return!!e._dispatchListeners}var h=e("./EventConstants"),f=e("./AbstractEvent"),m=e("./invariant"),v=h.topLevelTypes,g={isEndish:n,isMoveish:o,isStartish:r,storePageCoordsIn:i,eventDistance:a,executeDispatchesInOrder:c,executeDispatchesInOrderStopAtTrue:l,executeDirectDispatch:p,hasDispatches:d,executeDispatch:u};t.exports=g},{"./EventConstants":47,"./AbstractEvent":53,"./invariant":10}],56:[function(e,t){"use strict";function n(e,t){var n=null==e,o=null===t;if(o)return e;if(n)return t;var r=Array.isArray(e),i=Array.isArray(t);return r?e.concat(t):i?[e].concat(t):[e,t]}e("./throwIf"),t.exports=n},{"./throwIf":31}],58:[function(e,t){function n(e,t,n,o,r,i){e=e||{};for(var a,s=[t,n,o,r,i],u=0;s[u];){a=s[u++];for(var c in a)e[c]=a[c];a.hasOwnProperty&&a.hasOwnProperty("toString")&&"undefined"!=typeof a.toString&&e.toString!==a.toString&&(e.toString=a.toString)}return e}t.exports=n},{}],60:[function(e,t){function n(e){return e.replace(o,"-$1").toLowerCase()}var o=/([A-Z])/g;t.exports=n},{}],61:[function(e,t){"use strict";function n(e){var t={};return function(n){return t.hasOwnProperty(n)?t[n]:t[n]=e.call(this,n)}}t.exports=n},{}],63:[function(e,t){"use strict";function n(e,t,n){var o=e.childNodes,r=e.childNodes[n];return r===t?t:(t.parentNode&&t.parentNode.removeChild(t),n>=o.length?e.appendChild(t):e.insertBefore(t,o[n]),t)}t.exports=n},{}],66:[function(e,t){var n={listen:function(e,t,n){e.addEventListener?e.addEventListener(t,n,!1):e.attachEvent&&e.attachEvent("on"+t,n)},capture:function(e,t,n){return e.addEventListener?(e.addEventListener(t,n,!0),void 0):(console.error("You are attempting to use addEventlistener in a browser that does not support it support it.This likely means that you will not receive events that your application relies on (such as scroll)."),void 0)}};t.exports=n},{}],67:[function(e,t){var n={extractSingleTouch:function(e){var t=e.touches,n=e.changedTouches,o=t&&t.length>0,r=n&&n.length>0;return!o&&r?n[0]:o?t[0]:e}};t.exports=n},{}],59:[function(e,t){"use strict";function n(e,t){return null===t||t===!1||t===!0||""===t?"":isNaN(t)?t?""+t:"":o.isNumber[e]?""+t:t+"px"}var o=e("./CSSProperty");t.exports=n},{"./CSSProperty":68}],62:[function(e,t){"use strict";function n(e){var t=e.tagName;return s[t]||(s[t]=document.createElement(t))}function o(e,t,n){return n?n.nextSibling?e.insertBefore(t,n.nextSibling):e.appendChild(t):e.insertBefore(t,e.firstChild)}function r(e,t,n){for(var r,i=t.length,a=0;i>a;a++)r=o(e,t[0],r||n)}function i(e,t,o){var i=n(e);i.innerHTML=t;var a=i.childNodes,s=o?e.childNodes[o-1]:null;r(e,a,s)}function a(e,t){var o=e.parentNode,r=n(o);r.innerHTML=t;var i=r.childNodes;o.replaceChild(i[0],e)}e("./ExecutionEnvironment"),e("./throwIf");var s={},u={dangerouslyInsertMarkupAt:i,dangerouslyReplaceNodeWithMarkup:a};t.exports=u},{"./ExecutionEnvironment":14,"./throwIf":31}],64:[function(e,t){"use strict";var n=e("./invariant"),o={isStandardName:{},getAttributeName:{},getPropertyName:{},getMutationMethod:{},mustUseAttribute:{},mustUseProperty:{},hasBooleanValue:{},hasSideEffects:{},isCustomAttribute:RegExp.prototype.test.bind(/^(data|aria)-[a-z_][a-z\d_.\-]*$/)},r=1,i=2,a=4,s=8,u={accept:null,action:null,ajaxify:r,allowFullScreen:r|a,alt:null,autoComplete:null,autoplay:a,cellPadding:null,cellSpacing:null,checked:i|a,className:i,colSpan:null,contentEditable:null,controls:i|a,data:null,dir:null,disabled:i|a,enctype:null,height:null,href:null,htmlFor:null,method:null,multiple:i|a,name:null,poster:null,preload:null,placeholder:null,rel:null,required:a,role:r,scrollLeft:i,scrollTop:i,selected:i|a,spellCheck:null,src:null,style:null,tabIndex:null,target:null,title:null,type:null,value:i|s,width:null,wmode:r,cx:i,cy:i,d:i,fill:i,fx:i,fy:i,points:i,r:i,stroke:i,strokeLinecap:i,strokeWidth:i,transform:i,x:i,x1:i,x2:i,version:i,viewBox:i,y:i,y1:i,y2:i,spreadMethod:i,offset:i,stopColor:i,stopOpacity:i,gradientUnits:i,gradientTransform:i},c={className:"class",htmlFor:"for",strokeLinecap:"stroke-linecap",strokeWidth:"stroke-width",stopColor:"stop-color",stopOpacity:"stop-opacity"},l={autoComplete:"autocomplete",spellCheck:"spellcheck"},p={className:function(e,t){e.className=t||""}};for(var d in u){o.isStandardName[d]=!0,o.getAttributeName[d]=c[d]||d.toLowerCase(),o.getPropertyName[d]=l[d]||d;var h=p[d];h&&(o.getMutationMethod[d]=h);var f=u[d];o.mustUseAttribute[d]=f&r,o.mustUseProperty[d]=f&i,o.hasBooleanValue[d]=f&a,o.hasSideEffects[d]=f&s,n(!o.mustUseAttribute[d]||!o.mustUseProperty[d],"DOMProperty: Cannot use require using both attribute and property: %s",d),n(o.mustUseProperty[d]||!o.hasSideEffects[d],"DOMProperty: Properties that have side effects must use property: %s",d)}t.exports=o},{"./invariant":10}],65:[function(e,t){"use strict";var n=e("./ReactComponent"),o=e("./escapeTextForBrowser"),r=e("./mixInto"),i=function(e){this.construct({text:e})};r(i,n.Mixin),r(i,{mountComponent:function(e){return n.Mixin.mountComponent.call(this,e),'<span id="'+e+'">'+o(this.props.text)+"</span>"},receiveProps:function(e){e.text!==this.props.text&&(this.props.text=e.text,n.DOMIDOperations.updateTextContentByID(this._rootNodeID,e.text))}}),t.exports=i},{"./ReactComponent":3,"./escapeTextForBrowser":42,"./mixInto":13}],68:[function(e,t){"use strict";var n={fillOpacity:!0,fontWeight:!0,opacity:!0,orphans:!0,textDecoration:!0,zIndex:!0,zoom:!0},o={isNumber:n};t.exports=o},{}]},{},[1])(1)});
app/scripts/main.js
dmlond/duke-data-service-portal
import React from 'react'; import ReactDOM from 'react-dom' import Router from 'react-router'; import routes from './routes'; require('es6-promise').polyfill(); //Needed for onTouchTap //Can go away when react 1.0 release //Check this repo: //https://github.com/zilverline/react-tap-event-plugin var injectTapEventPlugin = require("react-tap-event-plugin"); injectTapEventPlugin(); let appRouter = Router.create({ routes: routes, location: Router.HashLocation }); appRouter.run((Handler, state) => { ReactDOM.render(<Handler routerPath={state.path} appRouter={appRouter}/>, document.body) });