jsPerf.app is an online JavaScript performance benchmark test runner & jsperf.com mirror. It is a complete rewrite in homage to the once excellent jsperf.com now with hopefully a more modern & maintainable codebase.
jsperf.com URLs are mirrored at the same path, e.g:
https://jsperf.com/negative-modulo/2
Can be accessed at:
https://jsperf.app/negative-modulo/2
<script>
/*
Long.js (c) 2013 Daniel Wirtz <dcode@dcode.io>
Released under the Apache License, Version 2.0
see: https://github.com/dcodeIO/Long.js for details
Long.js is based on goog.math.Long from the Closure Library.
Copyright 2009 The Closure Library Authors. All Rights Reserved.
Released under the Apache License, Version 2.0
see: https://code.google.com/p/closure-library/ for details
*/
var p=!1;
(function(r){function b(a,b,d){this.low=a|0;this.high=b|0;this.unsigned=!!d}var s={},t={};b.fromInt=function(a,c){if(c){a>>>=0;if(0<=a&&256>a&&(d=t[a]))return d;d=new b(a,0>(a|0)?-1:0,!0);0<=a&&256>a&&(t[a]=d)}else{a|=0;if(-128<=a&&128>a){var d=s[a];if(d)return d}d=new b(a,0>a?-1:0,p);-128<=a&&128>a&&(s[a]=d)}return d};b.fromNumber=function(a,c){c=!!c;return isNaN(a)||!isFinite(a)?b.ZERO:!c&&a<=-u?b.MIN_SIGNED_VALUE:c&&0>=a?b.MIN_UNSIGNED_VALUE:!c&&a+1>=u?b.MAX_SIGNED_VALUE:c&&a>=v?b.MAX_UNSIGNED_VALUE:0>
a?b.fromNumber(-a,p).negate():new b(a%l|0,a/l|0,c)};b.fromBits=function(a,c,d){return new b(a,c,d)};b.from28Bits=function(a,c,d,e){return b.fromBits(a|c<<28,c>>>4|d<<24,e)};b.fromString=function(a,c,d){if(0==a.length)throw Error("number format error: empty string");"number"==typeof c&&(d=c,c=p);d=d||10;if(2>d||36<d)throw Error("radix out of range: "+d);if("-"==a.charAt(0))return b.fromString(a.substring(1),c,d).negate();if(0<=a.indexOf("-"))throw Error('number format error: interior "-" character: '+
a);c=b.fromNumber(Math.pow(d,8));for(var e=b.ZERO,g=0;g<a.length;g+=8){var f=Math.min(8,a.length-g),k=parseInt(a.substring(g,g+f),d);8>f?(f=b.fromNumber(Math.pow(d,f)),e=e.multiply(f).add(b.fromNumber(k))):(e=e.multiply(c),e=e.add(b.fromNumber(k)))}return e};var l=4294967296,v=l*l,u=v/2,w=b.fromInt(16777216);b.ZERO=b.fromInt(0);b.ONE=b.fromInt(1);b.NEG_ONE=b.fromInt(-1);b.MAX_SIGNED_VALUE=b.fromBits(-1,2147483647,p);b.MAX_UNSIGNED_VALUE=b.fromBits(-1,-1,!0);b.MAX_VALUE=b.MAX_SIGNED_VALUE;b.MIN_SIGNED_VALUE=
b.fromBits(0,-2147483648,p);b.MIN_UNSIGNED_VALUE=b.fromBits(0,0,!0);b.MIN_VALUE=b.MIN_SIGNED_VALUE;b.prototype.toInt=function(){return this.unsigned?this.low>>>0:this.low};b.prototype.toNumber=function(){return this.unsigned?(this.high>>>0)*l+(this.low>>>0):this.high*l+(this.low>>>0)};b.prototype.toString=function(a){a=a||10;if(2>a||36<a)throw Error("radix out of range: "+a);if(this.isZero())return"0";if(this.isNegative()){if(this.equals(b.MIN_SIGNED_VALUE)){var c=b.fromNumber(a),d=this.div(c),c=
d.multiply(c).subtract(this);return d.toString(a)+c.toInt().toString(a)}return"-"+this.negate().toString(a)}for(var d=b.fromNumber(Math.pow(a,6)),c=this,e="";;){var g=c.div(d),f=c.subtract(g.multiply(d)).toInt().toString(a),c=g;if(c.isZero())return f+e;for(;6>f.length;)f="0"+f;e=""+f+e}};b.prototype.getHighBits=function(){return this.high};b.prototype.getHighBitsUnsigned=function(){return this.high>>>0};b.prototype.getLowBits=function(){return this.low};b.prototype.getLowBitsUnsigned=function(){return this.low>>>
0};b.prototype.getNumBitsAbs=function(){if(this.isNegative())return this.equals(b.MIN_SIGNED_VALUE)?64:this.negate().getNumBitsAbs();for(var a=0!=this.high?this.high:this.low,c=31;0<c&&0==(a&1<<c);c--);return 0!=this.high?c+33:c+1};b.prototype.isZero=function(){return 0==this.high&&0==this.low};b.prototype.isNegative=function(){return!this.unsigned&&0>this.high};b.prototype.isOdd=function(){return 1==(this.low&1)};b.prototype.equals=function(a){return this.unsigned!=a.unsigned&&this.high>>>31!=a.high>>>
31?p:this.high==a.high&&this.low==a.low};b.prototype.notEquals=function(a){return!this.equals(a)};b.prototype.lessThan=function(a){return 0>this.compare(a)};b.prototype.lessThanOrEqual=function(a){return 0>=this.compare(a)};b.prototype.greaterThan=function(a){return 0<this.compare(a)};b.prototype.greaterThanOrEqual=function(a){return 0<=this.compare(a)};b.prototype.compare=function(a){if(this.equals(a))return 0;var b=this.isNegative(),d=a.isNegative();return b&&!d?-1:!b&&d?1:this.unsigned?a.high>>>
0>this.high>>>0||a.high==this.high&&a.low>>>0>this.low>>>0?-1:1:this.subtract(a).isNegative()?-1:1};b.prototype.negate=function(){return!this.unsigned&&this.equals(b.MIN_SIGNED_VALUE)?b.MIN_SIGNED_VALUE:this.not().add(b.ONE)};b.prototype.add=function(a){var c=this.high>>>16,d=this.high&65535,e=this.low>>>16,g=a.high>>>16,f=a.high&65535,k=a.low>>>16,q;q=0+((this.low&65535)+(a.low&65535));a=0+(q>>>16);a+=e+k;e=0+(a>>>16);e+=d+f;d=0+(e>>>16);d=d+(c+g)&65535;return b.fromBits((a&65535)<<16|q&65535,d<<
16|e&65535,this.unsigned)};b.prototype.subtract=function(a){return this.add(a.negate())};b.prototype.multiply=function(a){if(this.isZero()||a.isZero())return b.ZERO;if(this.equals(b.MIN_VALUE))return a.isOdd()?b.MIN_VALUE:b.ZERO;if(a.equals(b.MIN_VALUE))return this.isOdd()?b.MIN_VALUE:b.ZERO;if(this.isNegative())return a.isNegative()?this.negate().multiply(a.negate()):this.negate().multiply(a).negate();if(a.isNegative())return this.multiply(a.negate()).negate();if(this.lessThan(w)&&a.lessThan(w))return b.fromNumber(this.toNumber()*
a.toNumber(),this.unsigned);var c=this.high>>>16,d=this.high&65535,e=this.low>>>16,g=this.low&65535,f=a.high>>>16,k=a.high&65535,q=a.low>>>16;a=a.low&65535;var n,h,m,l;l=0+g*a;m=0+(l>>>16);m+=e*a;h=0+(m>>>16);m=(m&65535)+g*q;h+=m>>>16;m&=65535;h+=d*a;n=0+(h>>>16);h=(h&65535)+e*q;n+=h>>>16;h&=65535;h+=g*k;n+=h>>>16;h&=65535;n=n+(c*a+d*q+e*k+g*f)&65535;return b.fromBits(m<<16|l&65535,n<<16|h,this.unsigned)};b.prototype.div=function(a){if(a.isZero())throw Error("division by zero");if(this.isZero())return b.ZERO;
if(this.equals(b.MIN_SIGNED_VALUE)){if(a.equals(b.ONE)||a.equals(b.NEG_ONE))return min;if(a.equals(b.MIN_VALUE))return b.ONE;var c=this.shiftRight(1).div(a).shiftLeft(1);if(c.equals(b.ZERO))return a.isNegative()?b.ONE:b.NEG_ONE;var d=this.subtract(a.multiply(c));return c.add(d.div(a))}if(a.equals(b.MIN_VALUE))return b.ZERO;if(this.isNegative())return a.isNegative()?this.negate().div(a.negate()):this.negate().div(a).negate();if(a.isNegative())return this.div(a.negate()).negate();for(var e=b.ZERO,d=
this;d.greaterThanOrEqual(a);){for(var c=Math.max(1,Math.floor(d.toNumber()/a.toNumber())),g=Math.ceil(Math.log(c)/Math.LN2),g=48>=g?1:Math.pow(2,g-48),f=b.fromNumber(c,this.unsigned),k=f.multiply(a);k.isNegative()||k.greaterThan(d);)c-=g,f=b.fromNumber(c,this.unsigned),k=f.multiply(a);f.isZero()&&(f=b.ONE);e=e.add(f);d=d.subtract(k)}return e};b.prototype.modulo=function(a){return this.subtract(this.div(a).multiply(a))};b.prototype.not=function(){return b.fromBits(~this.low,~this.high,this.unsigned)};
b.prototype.and=function(a){return b.fromBits(this.low&a.low,this.high&a.high,this.unsigned)};b.prototype.or=function(a){return b.fromBits(this.low|a.low,this.high|a.high,this.unsigned)};b.prototype.xor=function(a){return b.fromBits(this.low^a.low,this.high^a.high,this.unsigned)};b.prototype.shiftLeft=function(a){a&=63;if(0==a)return this;var c=this.low;return 32>a?b.fromBits(c<<a,this.high<<a|c>>>32-a,this.unsigned):b.fromBits(0,c<<a-32,this.unsigned)};b.prototype.shiftRight=function(a){a&=63;if(0==
a)return this;var c=this.high;return 32>a?b.fromBits(this.low>>>a|c<<32-a,c>>a,this.unsigned):b.fromBits(c>>a-32,0<=c?0:-1,this.unsigned)};b.prototype.shiftRightUnsigned=function(a){a&=63;if(0==a)return this;var c=this.high;return 32>a?b.fromBits(this.low>>>a|c<<32-a,c>>>a,this.unsigned):32==a?b.fromBits(c,0,this.unsigned):b.fromBits(c>>>a-32,0,this.unsigned)};b.prototype.toSigned=function(){var a=this.clone();a.unsigned=p;return a};b.prototype.toUnsigned=function(){var a=this.clone();a.unsigned=
!0;return a};b.prototype.clone=function(){return new b(this.low,this.high,this.unsigned)};"undefined"!=typeof module&&module.exports?module.exports=b:"undefined"!=typeof define&&define.amd?define("Math/Long",[],function(){return b}):(r.dcodeIO||(r.dcodeIO={}),r.dcodeIO.Long=b)})(this);
/*
ByteBuffer.js (c) 2013 Daniel Wirtz <dcode@dcode.io>
Released under the Apache License, Version 2.0
see: https://github.com/dcodeIO/ByteBuffer.js for details
*/
(function(n){function q(l){function d(a,b){a="undefined"!==typeof a?parseInt(a,10):d.DEFAULT_CAPACITY;1>a&&(a=d.DEFAULT_CAPACITY);this.array=3==arguments.length&&!0===arguments[2]?null:new ArrayBuffer(a);this.view=null!=this.array?new DataView(this.array):null;this.offset=0;this.markedOffset=-1;this.length=0;this.littleEndian="undefined"!=typeof b?!!b:!1}var m=null;if("function"===typeof require)try{var p=require("buffer"),m=p&&"function"===typeof p.Buffer&&"function"===typeof p.Buffer.isBuffer?p.Buffer:
null}catch(n){}d.DEFAULT_CAPACITY=16;d.LITTLE_ENDIAN=!0;d.BIG_ENDIAN=!1;d.Long=l;d.allocate=function(a,b){return new d(a,b)};d.wrap=function(a,b){if("string"===typeof a)return(new d).writeUTF8String(a).flip();var c;if(m&&m.isBuffer(a)){c=(new Uint8Array(a)).buffer;if(c===a){c=a;for(var f=new ArrayBuffer(c.length),e=new Uint8Array(f),g=0;g<c.length;++g)e[g]=c[g];c=f}a=c}if(null===a||"object"!==typeof a)throw Error("Cannot wrap null or non-object");if(a instanceof d)return a.clone();a.array?a=a.array:
a.buffer&&(a=a.buffer);if(!(a instanceof ArrayBuffer))throw Error("Cannot wrap buffer of type "+typeof a+", "+a.constructor.name);c=new d(0,b,!0);c.array=a;c.view=new DataView(c.array);c.offset=0;c.length=a.byteLength;return c};d.prototype.LE=function(){this.littleEndian=!0;return this};d.prototype.BE=function(){this.littleEndian=!1;return this};d.prototype.resize=function(a){if(1>a)return!1;null==this.array&&(this.array=new ArrayBuffer(a),this.view=new DataView(this.array));if(this.array.byteLength<
a){var b=new Uint8Array(this.array);a=new ArrayBuffer(a);(new Uint8Array(a)).set(b);this.array=a;this.view=new DataView(a);return!0}return!1};d.prototype.slice=function(a,b){if(null==this.array)throw Error(this+" cannot be sliced: Already destroyed");if(b<=a)throw Error(this+" cannot be sliced: End ("+b+") is less than begin ("+a+")");if(0>a||a>this.array.byteLength||1>b||b>this.array.byteLength)throw Error(this+" cannot be sliced: Index out of bounds (0-"+this.array.byteLength+" -> "+a+"-"+b+")");
var c=this.clone();c.offset=a;c.length=b;return c};d.prototype.sliceAndCompact=function(a,b){return d.wrap(this.slice(a,b).toArrayBuffer(!0))};d.prototype.ensureCapacity=function(a){return null==this.array?this.resize(a):this.array.byteLength<a?this.resize(2*this.array.byteLength>=a?2*this.array.byteLength:a):!1};d.prototype.flip=function(){this.length=null==this.array?0:this.offset;this.offset=0;return this};d.prototype.mark=function(a){if(null==this.array)throw Error(this+" cannot be marked: Already destroyed");
a="undefined"!==typeof a?parseInt(a,10):this.offset;if(0>a||a>this.array.byteLength)throw Error(this+" cannot be marked: Offset to mark is less than 0 or bigger than the capacity ("+this.array.byteLength+"): "+a);this.markedOffset=a;return this};d.prototype.reset=function(){0<=this.markedOffset?(this.offset=this.markedOffset,this.markedOffset=-1):this.length=this.offset=0;return this};d.prototype.clone=function(){var a=new d(-1,this.littleEndian,!0);a.array=this.array;a.view=this.view;a.offset=this.offset;
a.length=this.length;return a};d.prototype.copy=function(){if(null==this.array)return this.clone();var a=new d(this.array.byteLength,this.littleEndian),b=new Uint8Array(this.array);(new Uint8Array(a.array)).set(b);a.offset=this.offset;a.length=this.length;return a};d.prototype.remaining=function(){return null==this.array?0:this.length-this.offset};d.prototype.capacity=function(){return null!=this.array?this.array.byteLength:0};d.prototype.compact=function(){if(null==this.array)throw Error(this+" cannot be compacted: Already destroyed");
this.offset>this.length&&this.flip();if(this.offset==this.length)throw Error(this+" cannot be compacted: Offset ("+this.offset+") is equal to its length ("+this.length+")");if(0==this.offset&&this.length==this.array.byteLength)return this;var a=new Uint8Array(this.array),b=new ArrayBuffer(this.length-this.offset);(new Uint8Array(b)).set(a.subarray(this.offset,this.length));this.array=b;this.offset=0;this.length=this.array.byteLength;return this};d.prototype.destroy=function(){if(null!=this.array)return this.view=
this.array=null,this.length=this.offset=0,this};d.prototype.reverse=function(){if(null==this.array)throw Error(this+" cannot be reversed: Already destroyed");Array.prototype.reverse.call(new Uint8Array(this.array));var a=this.offset;this.offset=this.array.byteLength-this.length;this.length=this.array.byteLength-a;this.view=new DataView(this.array);return this};d.prototype.append=function(a,b){a instanceof d||(a=d.wrap(a));if(null==a.array)throw Error(a+" cannot be appended to "+this+": Already destroyed");
var c=a.length-a.offset;if(0==c)return this;0>c&&(a=a.clone().flip(),c=a.length-a.offset);b="undefined"!==typeof b?b:(this.offset+=c)-c;this.ensureCapacity(b+c);c=new Uint8Array(a.array);(new Uint8Array(this.array)).set(c.subarray(a.offset,a.length),b);return this};d.prototype.prepend=function(a,b){a instanceof d||(a=d.wrap(a));if(null==a.array)throw a+" cannot be prepended to "+this+": Already destroyed";var c=a.length-a.offset;if(0==c)return this;0>c&&(a=a.clone().flip(),c=a.length-a.offset);var f=
"undefined"===typeof b;b="undefined"!==typeof b?b:this.offset;var e=c-b;0<e?(this.ensureCapacity(this.length+e),this.append(this,c),this.offset+=e,this.length+=e,this.append(a,0)):this.append(a,b-c);f&&(this.offset-=c);return this};d.prototype.writeInt8=function(a,b){b="undefined"!=typeof b?b:(this.offset+=1)-1;this.ensureCapacity(b+1);this.view.setInt8(b,a);return this};d.prototype.readInt8=function(a){a="undefined"!==typeof a?a:(this.offset+=1)-1;if(a>=this.array.byteLength)throw Error("Cannot read int8 from "+
this+" at "+a+": Capacity overflow");return this.view.getInt8(a)};d.prototype.writeByte=d.prototype.writeInt8;d.prototype.readByte=d.prototype.readInt8;d.prototype.writeUint8=function(a,b){b="undefined"!=typeof b?b:(this.offset+=1)-1;this.ensureCapacity(b+1);this.view.setUint8(b,a);return this};d.prototype.readUint8=function(a){a="undefined"!==typeof a?a:(this.offset+=1)-1;if(a+1>this.array.byteLength)throw Error("Cannot read uint8 from "+this+" at "+a+": Capacity overflow");return this.view.getUint8(a)};
d.prototype.writeInt16=function(a,b){b="undefined"!==typeof b?b:(this.offset+=2)-2;this.ensureCapacity(b+2);this.view.setInt16(b,a,this.littleEndian);return this};d.prototype.readInt16=function(a){a="undefined"!==typeof a?a:(this.offset+=2)-2;if(a+2>this.array.byteLength)throw Error("Cannot read int16 from "+this+" at "+a+": Capacity overflow");return this.view.getInt16(a,this.littleEndian)};d.prototype.writeShort=d.prototype.writeInt16;d.prototype.readShort=d.prototype.readInt16;d.prototype.writeUint16=
function(a,b){b="undefined"!==typeof b?b:(this.offset+=2)-2;this.ensureCapacity(b+2);this.view.setUint16(b,a,this.littleEndian);return this};d.prototype.readUint16=function(a){a="undefined"!==typeof a?a:(this.offset+=2)-2;if(a+2>this.array.b)throw Error("Cannot read int16 from "+this+" at "+a+": Capacity overflow");return this.view.getUint16(a,this.littleEndian)};d.prototype.writeInt32=function(a,b){b="undefined"!==typeof b?b:(this.offset+=4)-4;this.ensureCapacity(b+4);this.view.setInt32(b,a,this.littleEndian);
return this};d.prototype.readInt32=function(a){a="undefined"!==typeof a?a:(this.offset+=4)-4;if(a+4>this.array.byteLength)throw Error("Cannot read int32 from "+this+" at "+a+": Capacity overflow");return this.view.getInt32(a,this.littleEndian)};d.prototype.writeInt=d.prototype.writeInt32;d.prototype.readInt=d.prototype.readInt32;d.prototype.writeUint32=function(a,b){b="undefined"!=typeof b?b:(this.offset+=4)-4;this.ensureCapacity(b+4);this.view.setUint32(b,a,this.littleEndian);return this};d.prototype.readUint32=
function(a){a="undefined"!==typeof a?a:(this.offset+=4)-4;if(a+4>this.array.byteLength)throw Error("Cannot read uint32 from "+this+" at "+a+": Capacity overflow");return this.view.getUint32(a,this.littleEndian)};d.prototype.writeFloat32=function(a,b){b="undefined"!==typeof b?b:(this.offset+=4)-4;this.ensureCapacity(b+4);this.view.setFloat32(b,a,this.littleEndian);return this};d.prototype.readFloat32=function(a){a="undefined"!==typeof a?a:(this.offset+=4)-4;if(null==this.array||a+4>this.array.byteLength)throw Error("Cannot read float32 from "+
this+" at "+a+": Capacity overflow");return this.view.getFloat32(a,this.littleEndian)};d.prototype.writeFloat=d.prototype.writeFloat32;d.prototype.readFloat=d.prototype.readFloat32;d.prototype.writeFloat64=function(a,b){b="undefined"!==typeof b?b:(this.offset+=8)-8;this.ensureCapacity(b+8);this.view.setFloat64(b,a,this.littleEndian);return this};d.prototype.readFloat64=function(a){a="undefined"!==typeof a?a:(this.offset+=8)-8;if(null==this.array||a+8>this.array.byteLength)throw Error("Cannot read float64 from "+
this+" at "+a+": Capacity overflow");return this.view.getFloat64(a,this.littleEndian)};d.prototype.writeDouble=d.prototype.writeFloat64;d.prototype.readDouble=d.prototype.readFloat64;d.prototype.writeInt64=function(a,b){if(!l)throw Error("Long support is not available: See https://github.com/dcodeIO/ByteBuffer.js#on-long-int64-support for details");b="undefined"!==typeof b?b:(this.offset+=8)-8;"object"===typeof a&&a instanceof l||(a=l.fromNumber(a,!1));this.ensureCapacity(b+8);this.littleEndian?(this.view.setInt32(b,
a.getLowBits(),!0),this.view.setInt32(b+4,a.getHighBits(),!0)):(this.view.setInt32(b,a.getHighBits(),!1),this.view.setInt32(b+4,a.getLowBits(),!1));return this};d.prototype.readInt64=function(a){if(!l)throw Error("Long support is not available: See https://github.com/dcodeIO/ByteBuffer.js#on-long-int64-support for details");a="undefined"!==typeof a?a:(this.offset+=8)-8;if(null==this.array||a+8>this.array.byteLength)throw this.offset-=8,Error("Cannot read int64 from "+this+" at "+a+": Capacity overflow");
return this.littleEndian?l.fromBits(this.view.getInt32(a,!0),this.view.getInt32(a+4,!0),!1):l.fromBits(this.view.getInt32(a+4,!1),this.view.getInt32(a,!1),!1)};d.prototype.writeUint64=function(a,b){if(!l)throw Error("Long support is not available: See https://github.com/dcodeIO/ByteBuffer.js#on-long-int64-support for details");b="undefined"!==typeof b?b:(this.offset+=8)-8;"object"===typeof a&&a instanceof l||(a=l.fromNumber(a,!0));this.ensureCapacity(b+8);this.littleEndian?(this.view.setUint32(b,
a.getLowBitsUnsigned(),!0),this.view.setUint32(b+4,a.getHighBitsUnsigned(),!0)):(this.view.setUint32(b,a.getHighBitsUnsigned(),!1),this.view.setUint32(b+4,a.getLowBitsUnsigned(),!1));return this};d.prototype.readUint64=function(a){if(!l)throw Error("Long support is not available: See https://github.com/dcodeIO/ByteBuffer.js#on-long-int64-support for details");a="undefined"!==typeof a?a:(this.offset+=8)-8;if(null==this.array||a+8>this.array.byteLength)throw this.offset-=8,Error("Cannot read int64 from "+
this+" at "+a+": Capacity overflow");return this.littleEndian?l.fromBits(this.view.getUint32(a,!0),this.view.getUint32(a+4,!0),!0):l.fromBits(this.view.getUint32(a+4,!1),this.view.getUint32(a,!1),!0)};d.prototype.writeLong=d.prototype.writeInt64;d.prototype.readLong=d.prototype.readInt64;d.MAX_VARINT32_BYTES=5;d.prototype.writeVarint32=function(a,b){var c="undefined"===typeof b;b="undefined"!==typeof b?b:this.offset;a>>>=0;this.ensureCapacity(b+d.calculateVarint32(a));var f=this.view,e=0;f.setUint8(b,
a|128);128<=a?(f.setUint8(b+1,a>>7|128),16384<=a?(f.setUint8(b+2,a>>14|128),2097152<=a?(f.setUint8(b+3,a>>21|128),268435456<=a?(f.setUint8(b+4,a>>28&127),e=5):(f.setUint8(b+3,f.getUint8(b+3)&127),e=4)):(f.setUint8(b+2,f.getUint8(b+2)&127),e=3)):(f.setUint8(b+1,f.getUint8(b+1)&127),e=2)):(f.setUint8(b,f.getUint8(b)&127),e=1);return c?(this.offset+=e,this):e};d.prototype.readVarint32=function(a){var b="undefined"===typeof a;a="undefined"!==typeof a?a:this.offset;var c=0,f,e=this.view,g=0;do f=e.getUint8(a+
c),c<d.MAX_VARINT32_BYTES&&(g|=(f&127)<<7*c>>>0),++c;while(f&128);g|=0;return b?(this.offset+=c,g):{value:g,length:c}};d.prototype.writeZigZagVarint32=function(a,b){return this.writeVarint32(d.zigZagEncode32(a),b)};d.prototype.readZigZagVarint32=function(a){a=this.readVarint32(a);return"object"===typeof a?(a.value=d.zigZagDecode32(a.value),a):d.zigZagDecode32(a)};d.MAX_VARINT64_BYTES=10;d.prototype.writeVarint64=function(a,b){if(!l)throw Error("Long support is not available: See https://github.com/dcodeIO/ByteBuffer.js#on-long-int64-support for details");
var c="undefined"===typeof b;b="undefined"!==typeof b?b:this.offset;"object"===typeof a&&a instanceof l||(a=l.fromNumber(a,!1));var f=a.toInt()>>>0,e=a.shiftRightUnsigned(28).toInt()>>>0,g=a.shiftRightUnsigned(56).toInt()>>>0,k=d.calculateVarint64(a);this.ensureCapacity(b+k);var h=this.view;switch(k){case 10:h.setUint8(b+9,g>>>7|128);case 9:h.setUint8(b+8,g|128);case 8:h.setUint8(b+7,e>>>21|128);case 7:h.setUint8(b+6,e>>>14|128);case 6:h.setUint8(b+5,e>>>7|128);case 5:h.setUint8(b+4,e|128);case 4:h.setUint8(b+
3,f>>>21|128);case 3:h.setUint8(b+2,f>>>14|128);case 2:h.setUint8(b+1,f>>>7|128);case 1:h.setUint8(b+0,f|128)}h.setUint8(b+k-1,h.getUint8(b+k-1)&127);return c?(this.offset+=k,this):k};d.prototype.readVarint64=function(a){if(!l)throw Error("Long support is not available: See https://github.com/dcodeIO/ByteBuffer.js#on-long-int64-support for details");var b="undefined"===typeof a,c=a="undefined"!==typeof a?a:this.offset,d=this.view,e,g=0,k=0,h;h=d.getUint8(a++);e=h&127;if(h&128&&(h=d.getUint8(a++),
e|=(h&127)<<7,h&128&&(h=d.getUint8(a++),e|=(h&127)<<14,h&128&&(h=d.getUint8(a++),e|=(h&127)<<21,h&128&&(h=d.getUint8(a++),g=h&127,h&128&&(h=d.getUint8(a++),g|=(h&127)<<7,h&128&&(h=d.getUint8(a++),g|=(h&127)<<14,h&128&&(h=d.getUint8(a++),g|=(h&127)<<21,h&128&&(h=d.getUint8(a++),k=h&127,h&128&&(h=d.getUint8(a++),k|=(h&127)<<7,h&128))))))))))throw Error("Data must be corrupt: Buffer overrun");d=l.from28Bits(e,g,k,!1);return b?(this.offset=a,d):{value:d,length:a-c}};d.prototype.writeZigZagVarint64=function(a,
b){return this.writeVarint64(d.zigZagEncode64(a),b)};d.prototype.readZigZagVarint64=function(a){a=this.readVarint64(a);return"object"!==typeof a||a instanceof l?d.zigZagDecode64(a):(a.value=d.zigZagDecode64(a.value),a)};d.prototype.writeVarint=d.prototype.writeVarint32;d.prototype.readVarint=d.prototype.readVarint32;d.prototype.writeZigZagVarint=d.prototype.writeZigZagVarint32;d.prototype.readZigZagVarint=d.prototype.readZigZagVarint32;d.calculateVarint32=function(a){a>>>=0;return 128>a?1:16384>a?
2:2097152>a?3:268435456>a?4:5};d.calculateVarint64=function(a){if(!l)throw Error("Long support is not available: See https://github.com/dcodeIO/ByteBuffer.js#on-long-int64-support for details");"object"===typeof a&&a instanceof l||(a=l.fromNumber(a,!1));var b=a.toInt()>>>0,c=a.shiftRightUnsigned(28).toInt()>>>0;a=a.shiftRightUnsigned(56).toInt()>>>0;return 0==a?0==c?16384>b?128>b?1:2:2097152>b?3:4:16384>c?128>c?5:6:2097152>c?7:8:128>a?9:10};d.zigZagEncode32=function(a){return((a|=0)<<1^a>>31)>>>0};
d.zigZagDecode32=function(a){return a>>>1^-(a&1)|0};d.zigZagEncode64=function(a){if(!l)throw Error("Long support is not available: See https://github.com/dcodeIO/ByteBuffer.js#on-long-int64-support for details");"object"===typeof a&&a instanceof l?a.unsigned&&(a=a.toSigned()):a=l.fromNumber(a,!1);return a.shiftLeft(1).xor(a.shiftRight(63)).toUnsigned()};d.zigZagDecode64=function(a){if(!l)throw Error("Long support is not available: See https://github.com/dcodeIO/ByteBuffer.js#on-long-int64-support for details");
"object"===typeof a&&a instanceof l?a.unsigned||(a=a.toUnsigned()):a=l.fromNumber(a,!0);return a.shiftRightUnsigned(1).xor(a.and(l.ONE).toSigned().negate()).toSigned()};d.decodeUTF8Char=function(a,b){var c=a.readUint8(b),d,e,g,k,h,l=b;if(0==(c&128))b+=1;else if(192==(c&224))d=a.readUint8(b+1),c=(c&31)<<6|d&63,b+=2;else if(224==(c&240))d=a.readUint8(b+1),e=a.readUint8(b+2),c=(c&15)<<12|(d&63)<<6|e&63,b+=3;else if(240==(c&248))d=a.readUint8(b+1),e=a.readUint8(b+2),g=a.readUint8(b+3),c=(c&7)<<18|(d&
63)<<12|(e&63)<<6|g&63,b+=4;else if(248==(c&252))d=a.readUint8(b+1),e=a.readUint8(b+2),g=a.readUint8(b+3),k=a.readUint8(b+4),c=(c&3)<<24|(d&63)<<18|(e&63)<<12|(g&63)<<6|k&63,b+=5;else if(252==(c&254))d=a.readUint8(b+1),e=a.readUint8(b+2),g=a.readUint8(b+3),k=a.readUint8(b+4),h=a.readUint8(b+5),c=(c&1)<<30|(d&63)<<24|(e&63)<<18|(g&63)<<12|(k&63)<<6|h&63,b+=6;else throw Error("Cannot decode UTF8 character at offset "+b+": charCode (0x"+c.toString(16)+") is invalid");return{"char":c,length:b-l}};d.encodeUTF8Char=
function(a,b,c){var d=c;if(0>a)throw Error("Cannot encode UTF8 character: charCode ("+a+") is negative");if(128>a)b.writeUint8(a&127,c),c+=1;else if(2048>a)b.writeUint8(a>>6&31|192,c).writeUint8(a&63|128,c+1),c+=2;else if(65536>a)b.writeUint8(a>>12&15|224,c).writeUint8(a>>6&63|128,c+1).writeUint8(a&63|128,c+2),c+=3;else if(2097152>a)b.writeUint8(a>>18&7|240,c).writeUint8(a>>12&63|128,c+1).writeUint8(a>>6&63|128,c+2).writeUint8(a&63|128,c+3),c+=4;else if(67108864>a)b.writeUint8(a>>24&3|248,c).writeUint8(a>>
18&63|128,c+1).writeUint8(a>>12&63|128,c+2).writeUint8(a>>6&63|128,c+3).writeUint8(a&63|128,c+4),c+=5;else if(2147483648>a)b.writeUint8(a>>30&1|252,c).writeUint8(a>>24&63|128,c+1).writeUint8(a>>18&63|128,c+2).writeUint8(a>>12&63|128,c+3).writeUint8(a>>6&63|128,c+4).writeUint8(a&63|128,c+5),c+=6;else throw Error("Cannot encode UTF8 character: charCode (0x"+a.toString(16)+") is too large (>= 0x80000000)");return c-d};d.calculateUTF8Char=function(a){if(0>a)throw Error("Cannot calculate length of UTF8 character: charCode ("+
a+") is negative");if(128>a)return 1;if(2048>a)return 2;if(65536>a)return 3;if(2097152>a)return 4;if(67108864>a)return 5;if(2147483648>a)return 6;throw Error("Cannot calculate length of UTF8 character: charCode (0x"+a.toString(16)+") is too large (>= 0x80000000)");};d.a=function(a){a=""+a;for(var b=0,c=0;c<a.length;c++)b+=d.calculateUTF8Char(a.charCodeAt(c));return b};d.encode64=function(a){if(!(a&&a instanceof d)||a.length<a.offset)throw Error("Illegal argument: Not a ByteBuffer or offset out of bounds");
var b,c,f,e,g=a.offset,k=0,h=[];do b=a.readUint8(g++),c=a.length>g?a.readUint8(g++):0,f=a.length>g?a.readUint8(g++):0,e=b<<16|c<<8|f,b=e>>18&63,c=e>>12&63,f=e>>6&63,e&=63,h[k++]="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=".charAt(b)+"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=".charAt(c)+"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=".charAt(f)+"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=".charAt(e);while(g<a.length);
g=h.join("");a=(a.length-a.offset)%3;return(a?g.slice(0,a-3):g)+"===".slice(a||3)};d.decode64=function(a){if("string"!==typeof a)throw Error("Illegal argument: Not a string");var b,c,f,e,g,k=0,h=new d(Math.ceil(a.length/3));do{b="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=".indexOf(a.charAt(k++));c="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=".indexOf(a.charAt(k++));e="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=".indexOf(a.charAt(k++));
g="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=".indexOf(a.charAt(k++));if(0>b||0>c||0>e||0>g)throw Error("Illegal argument: Not a valid base64 encoded string");f=b<<18|c<<12|e<<6|g;b=f>>16&255;c=f>>8&255;f&=255;64==e?h.writeUint8(b):64==g?h.writeUint8(b).writeUint8(c):h.writeUint8(b).writeUint8(c).writeUint8(f)}while(k<a.length);return h.flip()};d.prototype.writeUTF8String=function(a,b){var c="undefined"===typeof b,f=b="undefined"!==typeof b?b:this.offset,e=d.a(a);this.ensureCapacity(b+
e);for(e=0;e<a.length;e++)b+=d.encodeUTF8Char(a.charCodeAt(e),this,b);return c?(this.offset=b,this):b-f};d.prototype.readUTF8String=function(a,b){var c="undefined"===typeof b;b="undefined"!==typeof b?b:this.offset;for(var f,e="",g=b,k=0;k<a;k++)f=d.decodeUTF8Char(this,b),b+=f.length,e+=String.fromCharCode(f["char"]);return c?(this.offset=b,e):{string:e,length:b-g}};d.prototype.readUTF8StringBytes=function(a,b){var c="undefined"===typeof b;b="undefined"!==typeof b?b:this.offset;var f,e="",g=b;for(a=
b+a;b<a;)f=d.decodeUTF8Char(this,b),b+=f.length,e+=String.fromCharCode(f["char"]);if(b!=a)throw Error("Actual string length differs from the specified: "+((b>a?"+":"")+b-a)+" bytes");return c?(this.offset=b,e):{string:e,length:b-g}};d.prototype.writeLString=function(a,b){a=""+a;var c="undefined"===typeof b;b="undefined"!==typeof b?b:this.offset;var f=d.encodeUTF8Char(a.length,this,b),f=f+this.writeUTF8String(a,b+f);return c?(this.offset+=f,this):f};d.prototype.readLString=function(a){var b="undefined"===
typeof a;a="undefined"!==typeof a?a:this.offset;var c=d.decodeUTF8Char(this,a);a=this.readUTF8String(c["char"],a+c.length);return b?(this.offset+=c.length+a.length,a.string):{string:a.string,length:c.length+a.length}};d.prototype.writeVString=function(a,b){a=""+a;var c="undefined"===typeof b;b="undefined"!==typeof b?b:this.offset;var f=this.writeVarint32(d.a(a),b),f=f+this.writeUTF8String(a,b+f);return c?(this.offset+=f,this):f};d.prototype.readVString=function(a){var b="undefined"===typeof a;a="undefined"!==
typeof a?a:this.offset;var c=this.readVarint32(a);a=this.readUTF8StringBytes(c.value,a+c.length);return b?(this.offset+=c.length+a.length,a.string):{string:a.string,length:c.length+a.length}};d.prototype.writeCString=function(a,b){var c="undefined"===typeof b;b="undefined"!==typeof b?b:this.offset;var d=this.writeUTF8String(""+a,b);this.writeUint8(0,b+d);return c?(this.offset+=d+1,this):d+1};d.prototype.readCString=function(a){var b="undefined"===typeof a;a="undefined"!==typeof a?a:this.offset;var c,
f="",e=a;do c=d.decodeUTF8Char(this,a),a+=c.length,0!=c["char"]&&(f+=String.fromCharCode(c["char"]));while(0!=c["char"]);return b?(this.offset=a,f):{string:f,length:a-e}};d.prototype.writeJSON=function(a,b,c){c="function"===typeof c?c:JSON.stringify;return this.writeLString(c(a),b)};d.prototype.readJSON=function(a,b){b="function"===typeof b?b:JSON.parse;var c=this.readLString(a);return"string"===typeof c?b(c):{data:b(c.string),length:c.length}};d.prototype.printDebug=function(a){for(var b=(null!=
this.array?"ByteBuffer(offset="+this.offset+",markedOffset="+this.markedOffset+",length="+this.length+",capacity="+this.array.byteLength+")":"ByteBuffer(DESTROYED)")+"\n-------------------------------------------------------------------\n",c=this.toHex(16,!0),d=this.toASCII(16,!0),e=0;e<c.length;e++)b+=c[e]+" "+d[e]+"\n";if(!0===a)return b;"function"===typeof a?a(b):console.log(b)};d.prototype.toHex=function(a,b){if(null==this.array)return"DESTROYED";b=!!b;a="undefined"!==typeof a?parseInt(a,10):
16;1>a&&(a=16);for(var c="",d=[],e=this.view,c=0==this.offset&&0==this.length?c+"|":0==this.length?c+">":0==this.offset?c+"<":c+" ",g=0;g<this.array.byteLength;g++){0<g&&0==g%a&&(d.push(c),c=" ");var k=e.getUint8(g),k=k.toString(16).toUpperCase();2>k.length&&(k="0"+k);c+=k;c=g+1==this.offset&&g+1==this.length?c+"|":g+1==this.offset?c+"<":g+1==this.length?c+">":c+" "}if(b)for(;c.length<3*a+1;)c+=" ";d.push(c);return b?d:d.join("\n")};d.prototype.toASCII=function(a,b){if(null==this.array)return"";
b=!!b;a="undefined"!==typeof a?parseInt(a,10):16;1>a&&(a=16);for(var c="",d=[],e=this.view,g=0;g<this.array.byteLength;g++){0<g&&0==g%a&&(d.push(c),c="");var k=e.getUint8(g),k=32<k&&127>k?String.fromCharCode(k):".",c=c+k}d.push(c);return b?d:d.join("\n")+"\n"};d.prototype.toBase64=function(){return null==this.array||this.offset>=this.length?"":d.encode64(this)};d.prototype.toUTF8=function(){return null==this.array||this.offset>=this.length?"":this.readUTF8StringBytes(this.length-this.offset,this.offset).c};
d.prototype.toString=function(a){switch(a||"debug"){case "utf8":return this.toUTF8();case "base64":return this.toBase64();default:return null==this.array?"ByteBuffer(DESTROYED)":"ByteBuffer(offset="+this.offset+",markedOffset="+this.markedOffset+",length="+this.length+",capacity="+this.array.byteLength+")"}};d.prototype.toArrayBuffer=function(a){var b=this.clone();b.offset>b.length&&b.flip();var c=!1;if(0<b.offset||b.length<b.array.byteLength)b.compact(),c=!0;return a&&!c?b.copy().array:b.array};
d.prototype.toBuffer=function(){if(m){var a=this.offset,b=this.length;if(a>b)var c=a,a=b,b=c;c=new Uint8Array(this.array);return new m(c.subarray(a,b))}throw Error("Conversion to Buffer is available under node.js only");};d.extend=function(a,b){if("string"===typeof a&&"function"===typeof b)d.prototype[a]=b;else throw Error("Cannot extend prototype with "+a+"="+b+" (exptected string and function)");};return d}"undefined"!==typeof module&&module.exports?module.exports=q(require("long")):"undefined"!==
typeof define&&define.amd?define("ByteBuffer",["Math/Long"],function(l){return q(l)}):(n.dcodeIO||(n.dcodeIO={}),n.dcodeIO.ByteBuffer=q(dcodeIO.Long))})(this);
/*
PSON (c) 2013 Daniel Wirtz <dcode@dcode.io>
Released under the Apache License, Version 2.0
see: https://github.com/dcodeIO/PSON for details
*/
(function(k){function n(k){if(!k)throw Error("PSON requires ByteBuffer.js: Get it at https://github.com/dcodeIO/ByteBuffer.js");var e={T:{ZERO:0,MAX:239,NULL:240,TRUE:241,FALSE:242,EOBJECT:243,EARRAY:244,ESTRING:245,OBJECT:246,ARRAY:247,INTEGER:248,LONG:249,FLOAT:250,DOUBLE:251,STRING:252,STRING_ADD:253,STRING_GET:254,BINARY:255}};e.Encoder=function(f,c){var e=new f(4);e.length=4;var g=f.Long,a=function(b,d){this.dict={};this.next=0;if(b&&Array.isArray(b))for(;this.next<b.length;)this.dict[b[this.next]]=
this.next++;this.progressive=!!d};a.prototype.encode=function(b,d){d||(d=new f);var c=d.littleEndian;try{return this._encodeValue(b,d.LE()),d.littleEndian=c,d}catch(a){throw d.littleEndian=c,a;}};a.prototype._encodeValue=function(b,d,a){if(null===b)d.writeUint8(c.NULL);else switch(typeof b){case "function":b=b.toString();case "string":0==b.length?d.writeUint8(c.ESTRING):this.dict.hasOwnProperty(b)?(d.writeUint8(c.STRING_GET),d.writeVarint32(this.dict[b])):(d.writeUint8(c.STRING),d.writeVString(b));
break;case "number":a=parseInt(b);b===a?(a=f.zigZagEncode32(b),a<=c.MAX?d.writeUint8(a):(d.writeUint8(c.INTEGER),d.writeZigZagVarint32(b))):(e.writeFloat32(b,0),b===e.readFloat32(0)?(d.writeUint8(c.FLOAT),d.writeFloat32(b)):(d.writeUint8(c.DOUBLE),d.writeFloat64(b)));break;case "boolean":d.writeUint8(b?c.TRUE:c.FALSE);break;case "object":var h;if(Array.isArray(b))if(0==b.length)d.writeUint8(c.EARRAY);else for(d.writeUint8(c.ARRAY),d.writeVarint32(b.length),h=0;h<b.length;h++)this._encodeValue(b[h],
d);else if(g&&b instanceof g)d.writeUint8(c.LONG),d.writeZigZagVarint64(b);else try{b=f.wrap(b),d.writeUint8(c.BINARY),d.writeVarint32(b.remaining()),d.append(b)}catch(k){var m=Object.keys(b),l=0;for(h=0;h<m.length;h++)"undefined"!==typeof b[m[h]]&&l++;if(0===l)d.writeUint8(c.EOBJECT);else for(d.writeUint8(c.OBJECT),d.writeVarint32(l),a||(a=!!b._PSON_EXCL_),h=0;h<m.length;h++)l=m[h],"undefined"!==typeof b[l]&&(this.dict.hasOwnProperty(l)?(d.writeUint8(c.STRING_GET),d.writeVarint32(this.dict[l])):
(this.progressive&&!a?(this.dict[l]=this.next++,d.writeUint8(c.STRING_ADD)):d.writeUint8(c.STRING),d.writeVString(l)),this._encodeValue(b[l],d))}break;case "undefined":d.writeUint8(c.NULL)}};return a}(k,e.T);e.Decoder=function(f,c){var e=f.Long,g=function(a,b){this.dict=a&&Array.isArray(a)?a:[];this.progressive=!!b};g.prototype.decode=function(a){a instanceof f||(a=f.wrap(a));var b=a.littleEndian;try{var c=this._decodeValue(a.LE());a.littleEndian=b;return c}catch(e){throw a.littleEndian=b,e;}};g.prototype._decodeValue=
function(a){var b=a.readUint8();if(b<=c.MAX)return f.zigZagDecode32(b);switch(b){case c.NULL:return null;case c.TRUE:return!0;case c.FALSE:return!1;case c.EOBJECT:return{};case c.EARRAY:return[];case c.ESTRING:return"";case c.OBJECT:for(var b=a.readVarint32(),d={};0<=--b;)d[this._decodeValue(a)]=this._decodeValue(a);return d;case c.ARRAY:b=a.readVarint32();for(d=[];0<=--b;)d.push(this._decodeValue(a));return d;case c.INTEGER:return a.readZigZagVarint32();case c.LONG:return e?a.readZigZagVarint64():
a.readZigZagVarint32();case c.FLOAT:return a.readFloat32();case c.DOUBLE:return a.readFloat64();case c.STRING:return a.readVString();case c.STRING_ADD:return a=a.readVString(),this.dict.push(a),a;case c.STRING_GET:return this.dict[a.readVarint32()];case c.BINARY:return b=a.readVarint32(),d=a.slice(a.offset,a.offset+b),a.offset+=b,d;default:throw Error("Illegal type at "+a.offset+": "+b);}};return g}(k,e.T);e.Pair=function(){var f=function(){};f.prototype.encode=function(c){return this.encoder.encode(c)};
f.prototype.toArrayBuffer=function(c){return this.encoder.encode(c).toArrayBuffer()};f.prototype.toBuffer=function(c){return this.encoder.encode(c).toBuffer()};f.prototype.decode=function(c){return this.decoder.decode(c)};return f}();e.StaticPair=function(f,c,e){var g=function(a){f.call(this);this.encoder=new c(a,!1);this.decoder=new e(a,!1)};g.prototype=Object.create(f.prototype);return g}(e.Pair,e.Encoder,e.Decoder);e.ProgressivePair=function(f,c,k){var g=function(a){f.call(this);this.encoder=new c(a,
!0);this.decoder=new k(a,!0)};g.prototype=Object.create(f.prototype);g.prototype.exclude=function(a){e.exclude(a)};g.prototype.include=function(a){e.include(a)};return g}(e.Pair,e.Encoder,e.Decoder);e.exclude=function(e){"object"===typeof e&&Object.defineProperty(e,"_PSON_EXCL_",{value:!0,enumerable:!1,configurable:!0})};e.include=function(e){"object"===typeof e&&delete e._PSON_EXCL_};return e}"undefined"!=typeof module&&module.exports?module.exports=n(require("bytebuffer")):"undefined"!=typeof define&&
define.amd?define("PSON",["ByteBuffer"],n):(k.dcodeIO||(k.dcodeIO={}),k.dcodeIO.PSON=n(k.dcodeIO.ByteBuffer))})(this);
var PSON = dcodeIO.PSON;
window.pson = new PSON.ProgressivePair([]);
</script>
var ticket = {
"NonHierarchicalBindIds": [5968150494895815, 5965951471640263],
"NonHierarchicalBinds": [{
"TicketTo": null,
"TicketIdTo": 5812019843751620,
"TicketIdFrom": 5906577843740358,
"Relationship": "publish_info",
"IAm": "Bind",
"IsInHierarchy": false,
"IsInside": true,
"NonHierarchicalBindIds": [],
"NonHierarchicalBinds": [],
"HierarchicalBinds": [],
"TicketTemplateType": null,
"TicketType": {
"IAm": "TicketType",
"TypeName": "T_BIND",
"DefaultTemplateName": "T_BIND_DEFAULT",
"Id": 1013,
"CreationTime": null,
"CreatorId": 0,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": null,
"ModificationTime": null,
"Generation": 0,
"VersionNumbers": [],
"CurrentVersion": 0
},
"TicketElements": [],
"Name": null,
"TypeName": null,
"TemplateName": null,
"IsRoot": false,
"UniqueConstraint": null,
"BindIds": [],
"BindIdsPointingToThisTicket": [],
"SubTicketIds": [],
"TicketElementIds": [],
"EpisodeIds": [],
"PublicActions": ["view"],
"QuickLink": null,
"Id": 5968150494895815,
"CreationTime": "2013-09-16T10:34:47.698Z",
"CreatorId": 5455778074533264,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": null,
"ModificationTime": "2013-09-16T10:35:22.026+00:00",
"Generation": 0,
"VersionNumbers": [1, 2],
"CurrentVersion": 2
}],
"HierarchicalBinds": [{
"TicketTo": {
"NonHierarchicalBindIds": [5983543657684691],
"NonHierarchicalBinds": [{
"TicketTo": null,
"TicketIdTo": 325456819312015,
"TicketIdFrom": 5974747564662483,
"Relationship": "Implementation",
"IAm": "Bind",
"IsInHierarchy": false,
"IsInside": false,
"NonHierarchicalBindIds": [],
"NonHierarchicalBinds": [],
"HierarchicalBinds": [],
"TicketTemplateType": null,
"TicketType": {
"IAm": "TicketType",
"TypeName": "T_BIND",
"DefaultTemplateName": "T_BIND_DEFAULT",
"Id": 1013,
"CreationTime": null,
"CreatorId": 0,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": null,
"ModificationTime": null,
"Generation": 0,
"VersionNumbers": [],
"CurrentVersion": 0
},
"TicketElements": [],
"Name": null,
"TypeName": null,
"TemplateName": null,
"IsRoot": false,
"UniqueConstraint": null,
"BindIds": [],
"BindIdsPointingToThisTicket": [],
"SubTicketIds": [],
"TicketElementIds": [],
"EpisodeIds": [],
"PublicActions": ["view"],
"QuickLink": null,
"Id": 5983543657684691,
"CreationTime": "2013-09-16T10:34:59.377Z",
"CreatorId": 5455778074533264,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": null,
"ModificationTime": "2013-09-16T10:35:00.789+00:00",
"Generation": 0,
"VersionNumbers": [1, 2],
"CurrentVersion": 2
}],
"HierarchicalBinds": [{
"TicketTo": {
"NonHierarchicalBindIds": [],
"NonHierarchicalBinds": [],
"HierarchicalBinds": [],
"TicketTemplateType": null,
"TicketType": null,
"TicketElements": [],
"Name": "Settings",
"TypeName": "T_SNAPLETCANVASSETTING",
"TemplateName": "T_SNAPLETCANVASSETTING_DEFAULT",
"IsRoot": false,
"UniqueConstraint": null,
"BindIds": [],
"BindIdsPointingToThisTicket": [5992339750706899],
"SubTicketIds": [],
"TicketElementIds": [],
"EpisodeIds": [],
"IAm": "Ticket",
"PublicActions": ["view"],
"QuickLink": null,
"Id": 5979145611173587,
"CreationTime": "2013-09-16T10:34:59.377Z",
"CreatorId": 5455778074533264,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": null,
"ModificationTime": "2013-09-16T10:35:00.874+00:00",
"Generation": 0,
"VersionNumbers": [1, 2, 3],
"CurrentVersion": 3
},
"TicketIdTo": 5979145611173587,
"TicketIdFrom": 5974747564662483,
"Relationship": "default",
"IAm": "Bind",
"IsInHierarchy": true,
"IsInside": false,
"NonHierarchicalBindIds": [],
"NonHierarchicalBinds": [],
"HierarchicalBinds": [],
"TicketTemplateType": null,
"TicketType": {
"IAm": "TicketType",
"TypeName": "T_BIND",
"DefaultTemplateName": "T_BIND_DEFAULT",
"Id": 1013,
"CreationTime": null,
"CreatorId": 0,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": null,
"ModificationTime": null,
"Generation": 0,
"VersionNumbers": [],
"CurrentVersion": 0
},
"TicketElements": [],
"Name": null,
"TypeName": null,
"TemplateName": null,
"IsRoot": false,
"UniqueConstraint": null,
"BindIds": [],
"BindIdsPointingToThisTicket": [],
"SubTicketIds": [],
"TicketElementIds": [],
"EpisodeIds": [],
"PublicActions": ["view"],
"QuickLink": null,
"Id": 5992339750706899,
"CreationTime": "2013-09-16T10:34:59.745Z",
"CreatorId": 5455778074533264,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": null,
"ModificationTime": "2013-09-16T10:35:01.266+00:00",
"Generation": 0,
"VersionNumbers": [1, 2, 3],
"CurrentVersion": 3
}, {
"TicketTo": {
"NonHierarchicalBindIds": [6005533890240212],
"NonHierarchicalBinds": [{
"TicketTo": null,
"TicketIdTo": 466194307667349,
"TicketIdFrom": 5981344634429139,
"Relationship": "Implementation",
"IAm": "Bind",
"IsInHierarchy": false,
"IsInside": false,
"NonHierarchicalBindIds": [],
"NonHierarchicalBinds": [],
"HierarchicalBinds": [],
"TicketTemplateType": null,
"TicketType": {
"IAm": "TicketType",
"TypeName": "T_BIND",
"DefaultTemplateName": "T_BIND_DEFAULT",
"Id": 1013,
"CreationTime": null,
"CreatorId": 0,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": null,
"ModificationTime": null,
"Generation": 0,
"VersionNumbers": [],
"CurrentVersion": 0
},
"TicketElements": [],
"Name": null,
"TypeName": null,
"TemplateName": null,
"IsRoot": false,
"UniqueConstraint": null,
"BindIds": [],
"BindIdsPointingToThisTicket": [],
"SubTicketIds": [],
"TicketElementIds": [],
"EpisodeIds": [],
"PublicActions": ["view"],
"QuickLink": null,
"Id": 6005533890240212,
"CreationTime": "2013-09-16T10:35:00.577Z",
"CreatorId": 5455778074533264,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": null,
"ModificationTime": "2013-09-16T10:35:02.033+00:00",
"Generation": 0,
"VersionNumbers": [1, 2],
"CurrentVersion": 2
}],
"HierarchicalBinds": [{
"TicketTo": {
"NonHierarchicalBindIds": [],
"NonHierarchicalBinds": [],
"HierarchicalBinds": [],
"TicketTemplateType": null,
"TicketType": null,
"TicketElements": [],
"Name": "Settings",
"TypeName": "T_SNAPLETLAYOUTSETTING",
"TemplateName": "T_SNAPLETLAYOUTSETTING_DEFAULT",
"IsRoot": false,
"UniqueConstraint": null,
"BindIds": [],
"BindIdsPointingToThisTicket": [6016529006517972],
"SubTicketIds": [],
"TicketElementIds": [],
"EpisodeIds": [],
"IAm": "Ticket",
"PublicActions": ["view"],
"QuickLink": null,
"Id": 6001135843729108,
"CreationTime": "2013-09-16T10:35:00.561Z",
"CreatorId": 5455778074533264,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": null,
"ModificationTime": "2013-09-16T10:35:02.043+00:00",
"Generation": 0,
"VersionNumbers": [1, 2, 3],
"CurrentVersion": 3
},
"TicketIdTo": 6001135843729108,
"TicketIdFrom": 5981344634429139,
"Relationship": "default",
"IAm": "Bind",
"IsInHierarchy": true,
"IsInside": false,
"NonHierarchicalBindIds": [],
"NonHierarchicalBinds": [],
"HierarchicalBinds": [],
"TicketTemplateType": null,
"TicketType": {
"IAm": "TicketType",
"TypeName": "T_BIND",
"DefaultTemplateName": "T_BIND_DEFAULT",
"Id": 1013,
"CreationTime": null,
"CreatorId": 0,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": null,
"ModificationTime": null,
"Generation": 0,
"VersionNumbers": [],
"CurrentVersion": 0
},
"TicketElements": [],
"Name": null,
"TypeName": null,
"TemplateName": null,
"IsRoot": false,
"UniqueConstraint": null,
"BindIds": [],
"BindIdsPointingToThisTicket": [],
"SubTicketIds": [],
"TicketElementIds": [],
"EpisodeIds": [],
"PublicActions": ["view"],
"QuickLink": null,
"Id": 6016529006517972,
"CreationTime": "2013-09-16T10:35:00.973Z",
"CreatorId": 5455778074533264,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": null,
"ModificationTime": "2013-09-16T10:35:02.717+00:00",
"Generation": 0,
"VersionNumbers": [1, 2, 3],
"CurrentVersion": 3
}, {
"TicketTo": {
"NonHierarchicalBindIds": [6357377611128533],
"NonHierarchicalBinds": [{
"TicketTo": null,
"TicketIdTo": 2568460541370465,
"TicketIdFrom": 6003334866984660,
"Relationship": "Implementation",
"IAm": "Bind",
"IsInHierarchy": false,
"IsInside": false,
"NonHierarchicalBindIds": [],
"NonHierarchicalBinds": [],
"HierarchicalBinds": [],
"TicketTemplateType": null,
"TicketType": {
"IAm": "TicketType",
"TypeName": "T_BIND",
"DefaultTemplateName": "T_BIND_DEFAULT",
"Id": 1013,
"CreationTime": null,
"CreatorId": 0,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": null,
"ModificationTime": null,
"Generation": 0,
"VersionNumbers": [],
"CurrentVersion": 0
},
"TicketElements": [],
"Name": null,
"TypeName": null,
"TemplateName": null,
"IsRoot": false,
"UniqueConstraint": null,
"BindIds": [],
"BindIdsPointingToThisTicket": [],
"SubTicketIds": [],
"TicketElementIds": [],
"EpisodeIds": [],
"PublicActions": ["view"],
"QuickLink": null,
"Id": 6357377611128533,
"CreationTime": "2013-09-16T10:35:01.896Z",
"CreatorId": 5455778074533264,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": null,
"ModificationTime": "2013-09-16T10:35:19.838+00:00",
"Generation": 0,
"VersionNumbers": [1, 2],
"CurrentVersion": 2
}],
"HierarchicalBinds": [{
"TicketTo": {
"NonHierarchicalBindIds": [],
"NonHierarchicalBinds": [],
"HierarchicalBinds": [],
"TicketTemplateType": null,
"TicketType": null,
"TicketElements": [{
"TicketElementType": null,
"TicketElementTemplateType": null,
"IsFinalized": false,
"Name": "ModerationBlockText",
"Version": null,
"Latest": false,
"TicketId": 6027524122795733,
"TypeName": "E_SETTING",
"TemplateName": "E_SETTING_DEFAULT",
"IAm": "TicketElement",
"QuickLink": null,
"Id": 6031922169306837,
"CreationTime": "2013-09-16T10:35:01.553Z",
"CreatorId": 5455778074533264,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": "{\r\n \"DisplayName\": \"\",\r\n \"Value\": \"This post was deleted for inappropriate content\",\r\n \"Value-isLocked\": \"\"\r\n}",
"ModificationTime": "2013-09-16T10:35:01.647+00:00",
"Generation": 0,
"VersionNumbers": [1, 2, 3],
"CurrentVersion": 3
}, {
"TicketElementType": null,
"TicketElementTemplateType": null,
"IsFinalized": false,
"Name": "BodyLineHeight",
"Version": null,
"Latest": false,
"TicketId": 6027524122795733,
"TypeName": "E_SETTING",
"TemplateName": "E_SETTING_DEFAULT",
"IAm": "TicketElement",
"QuickLink": null,
"Id": 6091295797206741,
"CreationTime": "2013-09-16T10:35:01.584Z",
"CreatorId": 5455778074533264,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": "{\r\n \"DisplayName\": \"\",\r\n \"Value\": \"20px\",\r\n \"Value-isLocked\": \"\"\r\n}",
"ModificationTime": "2013-09-16T10:35:01.522+00:00",
"Generation": 0,
"VersionNumbers": [1, 2, 3],
"CurrentVersion": 3
}, {
"TicketElementType": null,
"TicketElementTemplateType": null,
"IsFinalized": false,
"Name": "BodyFontStyle",
"Version": null,
"Latest": false,
"TicketId": 6027524122795733,
"TypeName": "E_SETTING",
"TemplateName": "E_SETTING_DEFAULT",
"IAm": "TicketElement",
"QuickLink": null,
"Id": 6124281146040021,
"CreationTime": "2013-09-16T10:35:01.599Z",
"CreatorId": 5455778074533264,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": "{\r\n \"DisplayName\": \"\",\r\n \"Value\": \"Normal\",\r\n \"Value-isLocked\": \"\"\r\n}",
"ModificationTime": "2013-09-16T10:35:01.523+00:00",
"Generation": 0,
"VersionNumbers": [1, 2, 3],
"CurrentVersion": 3
}, {
"TicketElementType": null,
"TicketElementTemplateType": null,
"IsFinalized": false,
"Name": "ItemEmbedVimeo",
"Version": null,
"Latest": false,
"TicketId": 6027524122795733,
"TypeName": "E_SETTING",
"TemplateName": "E_SETTING_DEFAULT",
"IAm": "TicketElement",
"QuickLink": null,
"Id": 6049514355351253,
"CreationTime": "2013-09-16T10:35:01.553Z",
"CreatorId": 5455778074533264,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": "{\r\n \"DisplayName\": \"\",\r\n \"Value\": \"false\",\r\n \"Value-isLocked\": \"\"\r\n}",
"ModificationTime": "2013-09-16T10:35:01.724+00:00",
"Generation": 0,
"VersionNumbers": [1, 2, 3],
"CurrentVersion": 3
}, {
"TicketElementType": null,
"TicketElementTemplateType": null,
"IsFinalized": false,
"Name": "UIStyle",
"Version": null,
"Latest": false,
"TicketId": 6027524122795733,
"TypeName": "E_SETTING",
"TemplateName": "E_SETTING_DEFAULT",
"IAm": "TicketElement",
"QuickLink": null,
"Id": 6106688959995605,
"CreationTime": "2013-09-16T10:35:01.599Z",
"CreatorId": 5455778074533264,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": "{\r\n \"DisplayName\": \"\",\r\n \"Value\": \"toolbar\",\r\n \"Value-isLocked\": \"\"\r\n}",
"ModificationTime": "2013-09-16T10:35:01.181+00:00",
"Generation": 0,
"VersionNumbers": [1, 2, 3],
"CurrentVersion": 3
}, {
"TicketElementType": null,
"TicketElementTemplateType": null,
"IsFinalized": false,
"Name": "LinkIconShow",
"Version": null,
"Latest": false,
"TicketId": 6027524122795733,
"TypeName": "E_SETTING",
"TemplateName": "E_SETTING_DEFAULT",
"IAm": "TicketElement",
"QuickLink": null,
"Id": 6075902634417877,
"CreationTime": "2013-09-16T10:35:01.568Z",
"CreatorId": 5455778074533264,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": "{\r\n \"DisplayName\": \"\",\r\n \"Value\": \"Show\",\r\n \"Value-isLocked\": \"\"\r\n}",
"ModificationTime": "2013-09-16T10:35:01.293+00:00",
"Generation": 0,
"VersionNumbers": [1, 2, 3],
"CurrentVersion": 3
}, {
"TicketElementType": null,
"TicketElementTemplateType": null,
"IsFinalized": false,
"Name": "SectionHeadlineFontSize",
"Version": null,
"Latest": false,
"TicketId": 6027524122795733,
"TypeName": "E_SETTING",
"TemplateName": "E_SETTING_DEFAULT",
"IAm": "TicketElement",
"QuickLink": null,
"Id": 6034121192562389,
"CreationTime": "2013-09-16T10:35:01.553Z",
"CreatorId": 5455778074533264,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": "{\r\n \"DisplayName\": \"\",\r\n \"Value\": \"18px\",\r\n \"Value-isLocked\": \"\"\r\n}",
"ModificationTime": "2013-09-16T10:35:01.389+00:00",
"Generation": 0,
"VersionNumbers": [1, 2, 3],
"CurrentVersion": 3
}, {
"TicketElementType": null,
"TicketElementTemplateType": null,
"IsFinalized": false,
"Name": "HeadlineFontSize",
"Version": null,
"Latest": false,
"TicketId": 6027524122795733,
"TypeName": "E_SETTING",
"TemplateName": "E_SETTING_DEFAULT",
"IAm": "TicketElement",
"QuickLink": null,
"Id": 6062708494884565,
"CreationTime": "2013-09-16T10:35:01.553Z",
"CreatorId": 5455778074533264,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": "{\r\n \"DisplayName\": \"\",\r\n \"Value\": \"24px\",\r\n \"Value-isLocked\": \"\"\r\n}",
"ModificationTime": "2013-09-16T10:35:01.787+00:00",
"Generation": 0,
"VersionNumbers": [1, 2, 3],
"CurrentVersion": 3
}, {
"TicketElementType": null,
"TicketElementTemplateType": null,
"IsFinalized": false,
"Name": "SectionHeadlineShow",
"Version": null,
"Latest": false,
"TicketId": 6027524122795733,
"TypeName": "E_SETTING",
"TemplateName": "E_SETTING_DEFAULT",
"IAm": "TicketElement",
"QuickLink": null,
"Id": 6036320215817941,
"CreationTime": "2013-09-16T10:35:01.553Z",
"CreatorId": 5455778074533264,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": "{\r\n \"DisplayName\": \"\",\r\n \"Value\": \"Show\",\r\n \"Value-isLocked\": \"\"\r\n}",
"ModificationTime": "2013-09-16T10:35:01.787+00:00",
"Generation": 0,
"VersionNumbers": [1, 2, 3],
"CurrentVersion": 3
}, {
"TicketElementType": null,
"TicketElementTemplateType": null,
"IsFinalized": false,
"Name": "LikeCountIcon",
"Version": null,
"Latest": false,
"TicketId": 6027524122795733,
"TypeName": "E_SETTING",
"TemplateName": "E_SETTING_DEFAULT",
"IAm": "TicketElement",
"QuickLink": null,
"Id": 6086897750695637,
"CreationTime": "2013-09-16T10:35:01.584Z",
"CreatorId": 5455778074533264,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": "{\r\n \"DisplayName\": \"\",\r\n \"Value\": \"Thumb\",\r\n \"Value-isLocked\": \"\"\r\n}",
"ModificationTime": "2013-09-16T10:35:02.345+00:00",
"Generation": 0,
"VersionNumbers": [1, 2, 3],
"CurrentVersion": 3
}, {
"TicketElementType": null,
"TicketElementTemplateType": null,
"IsFinalized": false,
"Name": "CommentMessagePlaceholder",
"Version": null,
"Latest": false,
"TicketId": 6027524122795733,
"TypeName": "E_SETTING",
"TemplateName": "E_SETTING_DEFAULT",
"IAm": "TicketElement",
"QuickLink": null,
"Id": 6159465518128853,
"CreationTime": "2013-09-16T10:35:01.631Z",
"CreatorId": 5455778074533264,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": "{\r\n \"DisplayName\": \"\",\r\n \"Value\": \"Your message\",\r\n \"Value-isLocked\": \"\"\r\n}",
"ModificationTime": "2013-09-16T10:35:01.332+00:00",
"Generation": 0,
"VersionNumbers": [1, 2, 3],
"CurrentVersion": 3
}, {
"TicketElementType": null,
"TicketElementTemplateType": null,
"IsFinalized": false,
"Name": "ComponentColor",
"Version": null,
"Latest": false,
"TicketId": 6027524122795733,
"TypeName": "E_SETTING",
"TemplateName": "E_SETTING_DEFAULT",
"IAm": "TicketElement",
"QuickLink": null,
"Id": 6117684076273365,
"CreationTime": "2013-09-16T10:35:01.599Z",
"CreatorId": 5455778074533264,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": "{\r\n \"DisplayName\": \"\",\r\n \"Value\": \"none\",\r\n \"Value-isLocked\": \"\"\r\n}",
"ModificationTime": "2013-09-16T10:35:01.832+00:00",
"Generation": 0,
"VersionNumbers": [1, 2, 3],
"CurrentVersion": 3
}, {
"TicketElementType": null,
"TicketElementTemplateType": null,
"IsFinalized": false,
"Name": "PriceShow",
"Version": null,
"Latest": false,
"TicketId": 6027524122795733,
"TypeName": "E_SETTING",
"TemplateName": "E_SETTING_DEFAULT",
"IAm": "TicketElement",
"QuickLink": null,
"Id": 6108887983251157,
"CreationTime": "2013-09-16T10:35:01.599Z",
"CreatorId": 5455778074533264,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": "{\r\n \"DisplayName\": \"\",\r\n \"Value\": \"Show\",\r\n \"Value-isLocked\": \"\"\r\n}",
"ModificationTime": "2013-09-16T10:35:02.256+00:00",
"Generation": 0,
"VersionNumbers": [1, 2, 3],
"CurrentVersion": 3
}, {
"TicketElementType": null,
"TicketElementTemplateType": null,
"IsFinalized": false,
"Name": "SubHeadlineColor",
"Version": null,
"Latest": false,
"TicketId": 6027524122795733,
"TypeName": "E_SETTING",
"TemplateName": "E_SETTING_DEFAULT",
"IAm": "TicketElement",
"QuickLink": null,
"Id": 6073703611162325,
"CreationTime": "2013-09-16T10:35:01.568Z",
"CreatorId": 5455778074533264,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": "{\r\n \"DisplayName\": \"\",\r\n \"Value\": \"rgba(0, 0, 0, 1)\",\r\n \"Value-isLocked\": \"\"\r\n}",
"ModificationTime": "2013-09-16T10:35:01.902+00:00",
"Generation": 0,
"VersionNumbers": [1, 2, 3],
"CurrentVersion": 3
}, {
"TicketElementType": null,
"TicketElementTemplateType": null,
"IsFinalized": false,
"Name": "ItemMaxFileSize",
"Version": null,
"Latest": false,
"TicketId": 6027524122795733,
"TypeName": "E_SETTING",
"TemplateName": "E_SETTING_DEFAULT",
"IAm": "TicketElement",
"QuickLink": null,
"Id": 6067106541395669,
"CreationTime": "2013-09-16T10:35:01.553Z",
"CreatorId": 5455778074533264,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": "{\r\n \"DisplayName\": \"\",\r\n \"Value\": \"10240\",\r\n \"Value-isLocked\": \"\"\r\n}",
"ModificationTime": "2013-09-16T10:35:02.202+00:00",
"Generation": 0,
"VersionNumbers": [1, 2, 3],
"CurrentVersion": 3
}, {
"TicketElementType": null,
"TicketElementTemplateType": null,
"IsFinalized": false,
"Name": "CommentReply",
"Version": null,
"Latest": false,
"TicketId": 6027524122795733,
"TypeName": "E_SETTING",
"TemplateName": "E_SETTING_DEFAULT",
"IAm": "TicketElement",
"QuickLink": null,
"Id": 6053912401862357,
"CreationTime": "2013-09-16T10:35:01.553Z",
"CreatorId": 5455778074533264,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": "{\r\n \"DisplayName\": \"\",\r\n \"Value\": \"false\",\r\n \"Value-isLocked\": \"\"\r\n}",
"ModificationTime": "2013-09-16T10:35:00.461+00:00",
"Generation": 0,
"VersionNumbers": [1, 2, 3],
"CurrentVersion": 3
}, {
"TicketElementType": null,
"TicketElementTemplateType": null,
"IsFinalized": false,
"Name": "HeadlineColor",
"Version": null,
"Latest": false,
"TicketId": 6027524122795733,
"TypeName": "E_SETTING",
"TemplateName": "E_SETTING_DEFAULT",
"IAm": "TicketElement",
"QuickLink": null,
"Id": 6119883099528917,
"CreationTime": "2013-09-16T10:35:01.599Z",
"CreatorId": 5455778074533264,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": "{\r\n \"DisplayName\": \"\",\r\n \"Value\": \"rgba(0, 0, 0, 1)\",\r\n \"Value-isLocked\": \"\"\r\n}",
"ModificationTime": "2013-09-16T10:35:01.462+00:00",
"Generation": 0,
"VersionNumbers": [1, 2, 3],
"CurrentVersion": 3
}, {
"TicketElementType": null,
"TicketElementTemplateType": null,
"IsFinalized": false,
"Name": "ContactShow",
"Version": null,
"Latest": false,
"TicketId": 6027524122795733,
"TypeName": "E_SETTING",
"TemplateName": "E_SETTING_DEFAULT",
"IAm": "TicketElement",
"QuickLink": null,
"Id": 6095693843717845,
"CreationTime": "2013-09-16T10:35:01.584Z",
"CreatorId": 5455778074533264,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": "{\r\n \"DisplayName\": \"\",\r\n \"Value\": \"Show\",\r\n \"Value-isLocked\": \"\"\r\n}",
"ModificationTime": "2013-09-16T10:35:01.389+00:00",
"Generation": 0,
"VersionNumbers": [1, 2, 3],
"CurrentVersion": 3
}, {
"TicketElementType": null,
"TicketElementTemplateType": null,
"IsFinalized": false,
"Name": "ComponentBackgroundColor",
"Version": null,
"Latest": false,
"TicketId": 6027524122795733,
"TypeName": "E_SETTING",
"TemplateName": "E_SETTING_DEFAULT",
"IAm": "TicketElement",
"QuickLink": null,
"Id": 6122082122784469,
"CreationTime": "2013-09-16T10:35:01.599Z",
"CreatorId": 5455778074533264,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": "{\r\n \"DisplayName\": \"\",\r\n \"Value\": \"rgba(255, 255, 255, 1)\",\r\n \"Value-isLocked\": \"\"\r\n}",
"ModificationTime": "2013-09-16T10:35:02.692+00:00",
"Generation": 0,
"VersionNumbers": [1, 2, 3],
"CurrentVersion": 3
}, {
"TicketElementType": null,
"TicketElementTemplateType": null,
"IsFinalized": false,
"Name": "SummaryHeadline",
"Version": null,
"Latest": false,
"TicketId": 6027524122795733,
"TypeName": "E_SETTING",
"TemplateName": "E_SETTING_DEFAULT",
"IAm": "TicketElement",
"QuickLink": null,
"Id": 6207844029750997,
"CreationTime": "2013-09-16T10:35:01.678Z",
"CreatorId": 5455778074533264,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": "{\r\n \"DisplayName\": \"\",\r\n \"Value\": \"There are {no} comment(s)\",\r\n \"Value-isLocked\": \"\"\r\n}",
"ModificationTime": "2013-09-16T10:35:02.492+00:00",
"Generation": 0,
"VersionNumbers": [1, 2, 3],
"CurrentVersion": 3
}, {
"TicketElementType": null,
"TicketElementTemplateType": null,
"IsFinalized": false,
"Name": "HeaderOverlayPosition",
"Version": null,
"Latest": false,
"TicketId": 6027524122795733,
"TypeName": "E_SETTING",
"TemplateName": "E_SETTING_DEFAULT",
"IAm": "TicketElement",
"QuickLink": null,
"Id": 6168261611151061,
"CreationTime": "2013-09-16T10:35:01.631Z",
"CreatorId": 5455778074533264,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": "{\r\n \"DisplayName\": \"\",\r\n \"Value\": \"Bottom\",\r\n \"Value-isLocked\": \"\"\r\n}",
"ModificationTime": "2013-09-16T10:35:01.527+00:00",
"Generation": 0,
"VersionNumbers": [1, 2, 3],
"CurrentVersion": 3
}, {
"TicketElementType": null,
"TicketElementTemplateType": null,
"IsFinalized": false,
"Name": "SubHeadlineFontSize",
"Version": null,
"Latest": false,
"TicketId": 6027524122795733,
"TypeName": "E_SETTING",
"TemplateName": "E_SETTING_DEFAULT",
"IAm": "TicketElement",
"QuickLink": null,
"Id": 6155067471617749,
"CreationTime": "2013-09-16T10:35:01.631Z",
"CreatorId": 5455778074533264,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": "{\r\n \"DisplayName\": \"\",\r\n \"Value\": \"18px\",\r\n \"Value-isLocked\": \"\"\r\n}",
"ModificationTime": "2013-09-16T10:35:01.867+00:00",
"Generation": 0,
"VersionNumbers": [1, 2, 3],
"CurrentVersion": 3
}, {
"TicketElementType": null,
"TicketElementTemplateType": null,
"IsFinalized": false,
"Name": "LikeCountShow",
"Version": null,
"Latest": false,
"TicketId": 6027524122795733,
"TypeName": "E_SETTING",
"TemplateName": "E_SETTING_DEFAULT",
"IAm": "TicketElement",
"QuickLink": null,
"Id": 6115485053017813,
"CreationTime": "2013-09-16T10:35:01.599Z",
"CreatorId": 5455778074533264,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": "{\"DisplayName\":\"\",\"Value\":\"Hide\",\"Value-isLocked\":\"\"}",
"ModificationTime": "2013-09-16T10:35:01.308+00:00",
"Generation": 0,
"VersionNumbers": [1, 2, 3, 4],
"CurrentVersion": 4
}, {
"TicketElementType": null,
"TicketElementTemplateType": null,
"IsFinalized": false,
"Name": "Sort",
"Version": null,
"Latest": false,
"TicketId": 6027524122795733,
"TypeName": "E_SETTING",
"TemplateName": "E_SETTING_DEFAULT",
"IAm": "TicketElement",
"QuickLink": null,
"Id": 6102290913484501,
"CreationTime": "2013-09-16T10:35:01.584Z",
"CreatorId": 5455778074533264,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": "{\"DisplayName\":\"\",\"Value\":\"unordered\",\"Value-isLocked\":\"\"}",
"ModificationTime": "2013-09-16T10:34:59.615+00:00",
"Generation": 0,
"VersionNumbers": [1, 2, 3, 4],
"CurrentVersion": 4
}, {
"TicketElementType": null,
"TicketElementTemplateType": null,
"IsFinalized": false,
"Name": "SmallTextColor",
"Version": null,
"Latest": false,
"TicketId": 6027524122795733,
"TypeName": "E_SETTING",
"TemplateName": "E_SETTING_DEFAULT",
"IAm": "TicketElement",
"QuickLink": null,
"Id": 6163863564639957,
"CreationTime": "2013-09-16T10:35:01.631Z",
"CreatorId": 5455778074533264,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": "{\r\n \"DisplayName\": \"\",\r\n \"Value\": \"rgba(102, 102, 102, 1)\",\r\n \"Value-isLocked\": \"\"\r\n}",
"ModificationTime": "2013-09-16T10:35:01.791+00:00",
"Generation": 0,
"VersionNumbers": [1, 2, 3],
"CurrentVersion": 3
}, {
"TicketElementType": null,
"TicketElementTemplateType": null,
"IsFinalized": false,
"Name": "ModeratorID",
"Version": null,
"Latest": false,
"TicketId": 6027524122795733,
"TypeName": "E_SETTING",
"TemplateName": "E_SETTING_DEFAULT",
"IAm": "TicketElement",
"QuickLink": null,
"Id": 6137475285573333,
"CreationTime": "2013-09-16T10:35:01.599Z",
"CreatorId": 5455778074533264,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": "{\"DisplayName\":\"\",\"Value\":\"5455778074533264\",\"Value-isLocked\":\"\"}",
"ModificationTime": "2013-09-16T10:35:01.486+00:00",
"Generation": 0,
"VersionNumbers": [1, 2, 3, 4],
"CurrentVersion": 4
}, {
"TicketElementType": null,
"TicketElementTemplateType": null,
"IsFinalized": false,
"Name": "GalleryHeadingShow",
"Version": null,
"Latest": false,
"TicketId": 6027524122795733,
"TypeName": "E_SETTING",
"TemplateName": "E_SETTING_DEFAULT",
"IAm": "TicketElement",
"QuickLink": null,
"Id": 6146271378595541,
"CreationTime": "2013-09-16T10:35:01.615Z",
"CreatorId": 5455778074533264,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": "{\r\n \"DisplayName\": \"\",\r\n \"Value\": \"Show\",\r\n \"Value-isLocked\": \"\"\r\n}",
"ModificationTime": "2013-09-16T10:35:01.485+00:00",
"Generation": 0,
"VersionNumbers": [1, 2, 3],
"CurrentVersion": 3
}, {
"TicketElementType": null,
"TicketElementTemplateType": null,
"IsFinalized": false,
"Name": "HeadlineShow",
"Version": null,
"Latest": false,
"TicketId": 6027524122795733,
"TypeName": "E_SETTING",
"TemplateName": "E_SETTING_DEFAULT",
"IAm": "TicketElement",
"QuickLink": null,
"Id": 6172659657662165,
"CreationTime": "2013-09-16T10:35:01.631Z",
"CreatorId": 5455778074533264,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": "{\r\n \"DisplayName\": \"\",\r\n \"Value\": \"Show\",\r\n \"Value-isLocked\": \"\"\r\n}",
"ModificationTime": "2013-09-16T10:35:01.434+00:00",
"Generation": 0,
"VersionNumbers": [1, 2, 3],
"CurrentVersion": 3
}, {
"TicketElementType": null,
"TicketElementTemplateType": null,
"IsFinalized": false,
"Name": "LinkIconColor",
"Version": null,
"Latest": false,
"TicketId": 6027524122795733,
"TypeName": "E_SETTING",
"TemplateName": "E_SETTING_DEFAULT",
"IAm": "TicketElement",
"QuickLink": null,
"Id": 6097892866973397,
"CreationTime": "2013-09-16T10:35:01.584Z",
"CreatorId": 5455778074533264,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": "{\r\n \"DisplayName\": \"\",\r\n \"Value\": \"none\",\r\n \"Value-isLocked\": \"\"\r\n}",
"ModificationTime": "2013-09-16T10:35:01.99+00:00",
"Generation": 0,
"VersionNumbers": [1, 2, 3],
"CurrentVersion": 3
}, {
"TicketElementType": null,
"TicketElementTemplateType": null,
"IsFinalized": false,
"Name": "SectionHeadlineFontWeight",
"Version": null,
"Latest": false,
"TicketId": 6027524122795733,
"TypeName": "E_SETTING",
"TemplateName": "E_SETTING_DEFAULT",
"IAm": "TicketElement",
"QuickLink": null,
"Id": 6157266494873301,
"CreationTime": "2013-09-16T10:35:01.631Z",
"CreatorId": 5455778074533264,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": "{\r\n \"DisplayName\": \"\",\r\n \"Value\": \"Normal\",\r\n \"Value-isLocked\": \"\"\r\n}",
"ModificationTime": "2013-09-16T10:35:01.705+00:00",
"Generation": 0,
"VersionNumbers": [1, 2, 3],
"CurrentVersion": 3
}, {
"TicketElementType": null,
"TicketElementTemplateType": null,
"IsFinalized": false,
"Name": "BodyFontSize",
"Version": null,
"Latest": false,
"TicketId": 6027524122795733,
"TypeName": "E_SETTING",
"TemplateName": "E_SETTING_DEFAULT",
"IAm": "TicketElement",
"QuickLink": null,
"Id": 6194649890217685,
"CreationTime": "2013-09-16T10:35:01.678Z",
"CreatorId": 5455778074533264,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": "{\r\n \"DisplayName\": \"\",\r\n \"Value\": \"14px\",\r\n \"Value-isLocked\": \"\"\r\n}",
"ModificationTime": "2013-09-16T10:35:01.654+00:00",
"Generation": 0,
"VersionNumbers": [1, 2, 3],
"CurrentVersion": 3
}, {
"TicketElementType": null,
"TicketElementTemplateType": null,
"IsFinalized": false,
"Name": "ImageConstraint",
"Version": null,
"Latest": false,
"TicketId": 6027524122795733,
"TypeName": "E_SETTING",
"TemplateName": "E_SETTING_DEFAULT",
"IAm": "TicketElement",
"QuickLink": null,
"Id": 6093494820462293,
"CreationTime": "2013-09-16T10:35:01.584Z",
"CreatorId": 5455778074533264,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": "{\r\n \"DisplayName\": \"\",\r\n \"Value\": \"Contain\",\r\n \"Value-isLocked\": \"\"\r\n}",
"ModificationTime": "2013-09-16T10:35:01.48+00:00",
"Generation": 0,
"VersionNumbers": [1, 2, 3],
"CurrentVersion": 3
}, {
"TicketElementType": null,
"TicketElementTemplateType": null,
"IsFinalized": false,
"Name": "SmallTextShow",
"Version": null,
"Latest": false,
"TicketId": 6027524122795733,
"TypeName": "E_SETTING",
"TemplateName": "E_SETTING_DEFAULT",
"IAm": "TicketElement",
"QuickLink": null,
"Id": 6199047936728789,
"CreationTime": "2013-09-16T10:35:01.678Z",
"CreatorId": 5455778074533264,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": "{\r\n \"DisplayName\": \"\",\r\n \"Value\": \"Show\",\r\n \"Value-isLocked\": \"\"\r\n}",
"ModificationTime": "2013-09-16T10:35:01.372+00:00",
"Generation": 0,
"VersionNumbers": [1, 2, 3],
"CurrentVersion": 3
}, {
"TicketElementType": null,
"TicketElementTemplateType": null,
"IsFinalized": false,
"Name": "SubHeadlineFontWeight",
"Version": null,
"Latest": false,
"TicketId": 6027524122795733,
"TypeName": "E_SETTING",
"TemplateName": "E_SETTING_DEFAULT",
"IAm": "TicketElement",
"QuickLink": null,
"Id": 6056111425117909,
"CreationTime": "2013-09-16T10:35:01.553Z",
"CreatorId": 5455778074533264,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": "{\r\n \"DisplayName\": \"\",\r\n \"Value\": \"Bold\",\r\n \"Value-isLocked\": \"\"\r\n}",
"ModificationTime": "2013-09-16T10:35:01.525+00:00",
"Generation": 0,
"VersionNumbers": [1, 2, 3],
"CurrentVersion": 3
}, {
"TicketElementType": null,
"TicketElementTemplateType": null,
"IsFinalized": false,
"Name": "LinkIconFontSize",
"Version": null,
"Latest": false,
"TicketId": 6027524122795733,
"TypeName": "E_SETTING",
"TemplateName": "E_SETTING_DEFAULT",
"IAm": "TicketElement",
"QuickLink": null,
"Id": 6078101657673429,
"CreationTime": "2013-09-16T10:35:01.568Z",
"CreatorId": 5455778074533264,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": "{\r\n \"DisplayName\": \"\",\r\n \"Value\": \"16px\",\r\n \"Value-isLocked\": \"\"\r\n}",
"ModificationTime": "2013-09-16T10:35:01.758+00:00",
"Generation": 0,
"VersionNumbers": [1, 2, 3],
"CurrentVersion": 3
}, {
"TicketElementType": null,
"TicketElementTemplateType": null,
"IsFinalized": false,
"Name": "ItemDescriptionPlaceholder",
"Version": null,
"Latest": false,
"TicketId": 6027524122795733,
"TypeName": "E_SETTING",
"TemplateName": "E_SETTING_DEFAULT",
"IAm": "TicketElement",
"QuickLink": null,
"Id": 6045116308840149,
"CreationTime": "2013-09-16T10:35:01.553Z",
"CreatorId": 5455778074533264,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": "{\r\n \"DisplayName\": \"\",\r\n \"Value\": \"Describe your item\",\r\n \"Value-isLocked\": \"\"\r\n}",
"ModificationTime": "2013-09-16T10:35:01.159+00:00",
"Generation": 0,
"VersionNumbers": [1, 2, 3],
"CurrentVersion": 3
}, {
"TicketElementType": null,
"TicketElementTemplateType": null,
"IsFinalized": false,
"Name": "HeadlineFontWeight",
"Version": null,
"Latest": false,
"TicketId": 6027524122795733,
"TypeName": "E_SETTING",
"TemplateName": "E_SETTING_DEFAULT",
"IAm": "TicketElement",
"QuickLink": null,
"Id": 6104489936740053,
"CreationTime": "2013-09-16T10:35:01.584Z",
"CreatorId": 5455778074533264,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": "{\r\n \"DisplayName\": \"\",\r\n \"Value\": \"Bold\",\r\n \"Value-isLocked\": \"\"\r\n}",
"ModificationTime": "2013-09-16T10:35:00.546+00:00",
"Generation": 0,
"VersionNumbers": [1, 2, 3],
"CurrentVersion": 3
}, {
"TicketElementType": null,
"TicketElementTemplateType": null,
"IsFinalized": false,
"Name": "ItemUploadImage",
"Version": null,
"Latest": false,
"TicketId": 6027524122795733,
"TypeName": "E_SETTING",
"TemplateName": "E_SETTING_DEFAULT",
"IAm": "TicketElement",
"QuickLink": null,
"Id": 6205645006495445,
"CreationTime": "2013-09-16T10:35:01.678Z",
"CreatorId": 5455778074533264,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": "{\"DisplayName\":\"\",\"Value\":\"true\",\"Value-isLocked\":\"\"}",
"ModificationTime": "2013-09-16T10:35:01.997+00:00",
"Generation": 0,
"VersionNumbers": [1, 2, 3, 4],
"CurrentVersion": 4
}, {
"TicketElementType": null,
"TicketElementTemplateType": null,
"IsFinalized": false,
"Name": "LikeUnselectedText",
"Version": null,
"Latest": false,
"TicketId": 6027524122795733,
"TypeName": "E_SETTING",
"TemplateName": "E_SETTING_DEFAULT",
"IAm": "TicketElement",
"QuickLink": null,
"Id": 6060509471629013,
"CreationTime": "2013-09-16T10:35:01.553Z",
"CreatorId": 5455778074533264,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": "{\r\n \"DisplayName\": \"\",\r\n \"Value\": \"Like\",\r\n \"Value-isLocked\": \"\"\r\n}",
"ModificationTime": "2013-09-16T10:35:01.889+00:00",
"Generation": 0,
"VersionNumbers": [1, 2, 3],
"CurrentVersion": 3
}, {
"TicketElementType": null,
"TicketElementTemplateType": null,
"IsFinalized": false,
"Name": "CommentTitlePlaceholder",
"Version": null,
"Latest": false,
"TicketId": 6027524122795733,
"TypeName": "E_SETTING",
"TemplateName": "E_SETTING_DEFAULT",
"IAm": "TicketElement",
"QuickLink": null,
"Id": 6111087006506709,
"CreationTime": "2013-09-16T10:35:01.599Z",
"CreatorId": 5455778074533264,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": "{\r\n \"DisplayName\": \"\",\r\n \"Value\": \"Your subject\",\r\n \"Value-isLocked\": \"\"\r\n}",
"ModificationTime": "2013-09-16T10:35:01.719+00:00",
"Generation": 0,
"VersionNumbers": [1, 2, 3],
"CurrentVersion": 3
}, {
"TicketElementType": null,
"TicketElementTemplateType": null,
"IsFinalized": false,
"Name": "CommentHeadline",
"Version": null,
"Latest": false,
"TicketId": 6027524122795733,
"TypeName": "E_SETTING",
"TemplateName": "E_SETTING_DEFAULT",
"IAm": "TicketElement",
"QuickLink": null,
"Id": 6089096773951189,
"CreationTime": "2013-09-16T10:35:01.584Z",
"CreatorId": 5455778074533264,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": "{\r\n \"DisplayName\": \"\",\r\n \"Value\": \"Your comment\",\r\n \"Value-isLocked\": \"\"\r\n}",
"ModificationTime": "2013-09-16T10:35:01.71+00:00",
"Generation": 0,
"VersionNumbers": [1, 2, 3],
"CurrentVersion": 3
}, {
"TicketElementType": null,
"TicketElementTemplateType": null,
"IsFinalized": false,
"Name": "SmallTextFontSize",
"Version": null,
"Latest": false,
"TicketId": 6027524122795733,
"TypeName": "E_SETTING",
"TemplateName": "E_SETTING_DEFAULT",
"IAm": "TicketElement",
"QuickLink": null,
"Id": 6148470401851093,
"CreationTime": "2013-09-16T10:35:01.631Z",
"CreatorId": 5455778074533264,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": "{\r\n \"DisplayName\": \"\",\r\n \"Value\": \"14px\",\r\n \"Value-isLocked\": \"\"\r\n}",
"ModificationTime": "2013-09-16T10:35:01.661+00:00",
"Generation": 0,
"VersionNumbers": [1, 2, 3],
"CurrentVersion": 3
}, {
"TicketElementType": null,
"TicketElementTemplateType": null,
"IsFinalized": false,
"Name": "OfferShow",
"Version": null,
"Latest": false,
"TicketId": 6027524122795733,
"TypeName": "E_SETTING",
"TemplateName": "E_SETTING_DEFAULT",
"IAm": "TicketElement",
"QuickLink": null,
"Id": 6100091890228949,
"CreationTime": "2013-09-16T10:35:01.584Z",
"CreatorId": 5455778074533264,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": "{\r\n \"DisplayName\": \"\",\r\n \"Value\": \"Show\",\r\n \"Value-isLocked\": \"\"\r\n}",
"ModificationTime": "2013-09-16T10:35:01.926+00:00",
"Generation": 0,
"VersionNumbers": [1, 2, 3],
"CurrentVersion": 3
}, {
"TicketElementType": null,
"TicketElementTemplateType": null,
"IsFinalized": false,
"Name": "LikeUnselectText",
"Version": null,
"Latest": false,
"TicketId": 6027524122795733,
"TypeName": "E_SETTING",
"TemplateName": "E_SETTING_DEFAULT",
"IAm": "TicketElement",
"QuickLink": null,
"Id": 6196848913473237,
"CreationTime": "2013-09-16T10:35:01.678Z",
"CreatorId": 5455778074533264,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": "{\r\n \"DisplayName\": \"\",\r\n \"Value\": \"Unlike\",\r\n \"Value-isLocked\": \"\"\r\n}",
"ModificationTime": "2013-09-16T10:35:02.189+00:00",
"Generation": 0,
"VersionNumbers": [1, 2, 3],
"CurrentVersion": 3
}, {
"TicketElementType": null,
"TicketElementTemplateType": null,
"IsFinalized": false,
"Name": "ListVisualisation",
"Version": null,
"Latest": false,
"TicketId": 6027524122795733,
"TypeName": "E_SETTING",
"TemplateName": "E_SETTING_DEFAULT",
"IAm": "TicketElement",
"QuickLink": null,
"Id": 6210043053006549,
"CreationTime": "2013-09-16T10:35:01.678Z",
"CreatorId": 5455778074533264,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": "{\r\n \"DisplayName\": \"\",\r\n \"Value\": \"Column\",\r\n \"Value-isLocked\": \"\"\r\n}",
"ModificationTime": "2013-09-16T10:35:02.234+00:00",
"Generation": 0,
"VersionNumbers": [1, 2, 3],
"CurrentVersion": 3
}, {
"TicketElementType": null,
"TicketElementTemplateType": null,
"IsFinalized": false,
"Name": "LinkFontWeight",
"Version": null,
"Latest": false,
"TicketId": 6027524122795733,
"TypeName": "E_SETTING",
"TemplateName": "E_SETTING_DEFAULT",
"IAm": "TicketElement",
"QuickLink": null,
"Id": 6058310448373461,
"CreationTime": "2013-09-16T10:35:01.553Z",
"CreatorId": 5455778074533264,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": "{\r\n \"DisplayName\": \"\",\r\n \"Value\": \"Normal\",\r\n \"Value-isLocked\": \"\"\r\n}",
"ModificationTime": "2013-09-16T10:35:02.136+00:00",
"Generation": 0,
"VersionNumbers": [1, 2, 3],
"CurrentVersion": 3
}, {
"TicketElementType": null,
"TicketElementTemplateType": null,
"IsFinalized": false,
"Name": "LinkColor",
"Version": null,
"Latest": false,
"TicketId": 6027524122795733,
"TypeName": "E_SETTING",
"TemplateName": "E_SETTING_DEFAULT",
"IAm": "TicketElement",
"QuickLink": null,
"Id": 6130878215806677,
"CreationTime": "2013-09-16T10:35:01.599Z",
"CreatorId": 5455778074533264,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": "{\r\n \"DisplayName\": \"\",\r\n \"Value\": \"none\",\r\n \"Value-isLocked\": \"\"\r\n}",
"ModificationTime": "2013-09-16T10:35:01.769+00:00",
"Generation": 0,
"VersionNumbers": [1, 2, 3],
"CurrentVersion": 3
}, {
"TicketElementType": null,
"TicketElementTemplateType": null,
"IsFinalized": false,
"Name": "BodyColor",
"Version": null,
"Latest": false,
"TicketId": 6027524122795733,
"TypeName": "E_SETTING",
"TemplateName": "E_SETTING_DEFAULT",
"IAm": "TicketElement",
"QuickLink": null,
"Id": 6084698727440085,
"CreationTime": "2013-09-16T10:35:01.584Z",
"CreatorId": 5455778074533264,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": "{\r\n \"DisplayName\": \"\",\r\n \"Value\": \"rgba(51, 51, 51, 1)\",\r\n \"Value-isLocked\": \"\"\r\n}",
"ModificationTime": "2013-09-16T10:35:01.836+00:00",
"Generation": 0,
"VersionNumbers": [1, 2, 3],
"CurrentVersion": 3
}, {
"TicketElementType": null,
"TicketElementTemplateType": null,
"IsFinalized": false,
"Name": "ColumnWidth",
"Version": null,
"Latest": false,
"TicketId": 6027524122795733,
"TypeName": "E_SETTING",
"TemplateName": "E_SETTING_DEFAULT",
"IAm": "TicketElement",
"QuickLink": null,
"Id": 6135276262317781,
"CreationTime": "2013-09-16T10:35:01.599Z",
"CreatorId": 5455778074533264,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": "{\"DisplayName\":\"\",\"Value\":\"280px\",\"Value-isLocked\":\"\"}",
"ModificationTime": "2013-09-16T10:35:01.685+00:00",
"Generation": 0,
"VersionNumbers": [1, 2, 3, 4],
"CurrentVersion": 4
}, {
"TicketElementType": null,
"TicketElementTemplateType": null,
"IsFinalized": false,
"Name": "ItemTitlePlaceholder",
"Version": null,
"Latest": false,
"TicketId": 6027524122795733,
"TypeName": "E_SETTING",
"TemplateName": "E_SETTING_DEFAULT",
"IAm": "TicketElement",
"QuickLink": null,
"Id": 6190251843706581,
"CreationTime": "2013-09-16T10:35:01.662Z",
"CreatorId": 5455778074533264,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": "{\r\n \"DisplayName\": \"\",\r\n \"Value\": \"Name your item\",\r\n \"Value-isLocked\": \"\"\r\n}",
"ModificationTime": "2013-09-16T10:35:02.471+00:00",
"Generation": 0,
"VersionNumbers": [1, 2, 3],
"CurrentVersion": 3
}, {
"TicketElementType": null,
"TicketElementTemplateType": null,
"IsFinalized": false,
"Name": "LinkFontSize",
"Version": null,
"Latest": false,
"TicketId": 6027524122795733,
"TypeName": "E_SETTING",
"TemplateName": "E_SETTING_DEFAULT",
"IAm": "TicketElement",
"QuickLink": null,
"Id": 6188052820451029,
"CreationTime": "2013-09-16T10:35:01.646Z",
"CreatorId": 5455778074533264,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": "{\r\n \"DisplayName\": \"\",\r\n \"Value\": \"14px\",\r\n \"Value-isLocked\": \"\"\r\n}",
"ModificationTime": "2013-09-16T10:34:59.852+00:00",
"Generation": 0,
"VersionNumbers": [1, 2, 3],
"CurrentVersion": 3
}, {
"TicketElementType": null,
"TicketElementTemplateType": null,
"IsFinalized": false,
"Name": "Layout_Contact",
"Version": null,
"Latest": false,
"TicketId": 6027524122795733,
"TypeName": "E_SETTING",
"TemplateName": "E_SETTING_DEFAULT",
"IAm": "TicketElement",
"QuickLink": null,
"Id": 6141873332084437,
"CreationTime": "2013-09-16T10:35:01.615Z",
"CreatorId": 5455778074533264,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": "{\r\n \"DisplayName\": \"\",\r\n \"Value\": \"Right\",\r\n \"Value-isLocked\": \"\"\r\n}",
"ModificationTime": "2013-09-16T10:35:01.736+00:00",
"Generation": 0,
"VersionNumbers": [1, 2, 3],
"CurrentVersion": 3
}, {
"TicketElementType": null,
"TicketElementTemplateType": null,
"IsFinalized": false,
"Name": "ItemSpawnConversation",
"Version": null,
"Latest": false,
"TicketId": 6027524122795733,
"TypeName": "E_SETTING",
"TemplateName": "E_SETTING_DEFAULT",
"IAm": "TicketElement",
"QuickLink": null,
"Id": 6064907518140117,
"CreationTime": "2013-09-16T10:35:01.553Z",
"CreatorId": 5455778074533264,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": "{\r\n \"DisplayName\": \"\",\r\n \"Value\": \"false\",\r\n \"Value-isLocked\": \"\"\r\n}",
"ModificationTime": "2013-09-16T10:35:01.451+00:00",
"Generation": 0,
"VersionNumbers": [1, 2, 3],
"CurrentVersion": 3
}, {
"TicketElementType": null,
"TicketElementTemplateType": null,
"IsFinalized": false,
"Name": "ItemDescription",
"Version": null,
"Latest": false,
"TicketId": 6027524122795733,
"TypeName": "E_SETTING",
"TemplateName": "E_SETTING_DEFAULT",
"IAm": "TicketElement",
"QuickLink": null,
"Id": 6126480169295573,
"CreationTime": "2013-09-16T10:35:01.599Z",
"CreatorId": 5455778074533264,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": "{\r\n \"DisplayName\": \"\",\r\n \"Value\": \"Share your item with the rest\",\r\n \"Value-isLocked\": \"\"\r\n}",
"ModificationTime": "2013-09-16T10:35:01.52+00:00",
"Generation": 0,
"VersionNumbers": [1, 2, 3],
"CurrentVersion": 3
}, {
"TicketElementType": null,
"TicketElementTemplateType": null,
"IsFinalized": false,
"Name": "SectionHeadlineColor",
"Version": null,
"Latest": false,
"TicketId": 6027524122795733,
"TypeName": "E_SETTING",
"TemplateName": "E_SETTING_DEFAULT",
"IAm": "TicketElement",
"QuickLink": null,
"Id": 6038519239073493,
"CreationTime": "2013-09-16T10:35:01.553Z",
"CreatorId": 5455778074533264,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": "{\r\n \"DisplayName\": \"\",\r\n \"Value\": \"rgba(0, 0, 0, 1)\",\r\n \"Value-isLocked\": \"\"\r\n}",
"ModificationTime": "2013-09-16T10:35:02.117+00:00",
"Generation": 0,
"VersionNumbers": [1, 2, 3],
"CurrentVersion": 3
}, {
"TicketElementType": null,
"TicketElementTemplateType": null,
"IsFinalized": false,
"Name": "CommentCountShow",
"Version": null,
"Latest": false,
"TicketId": 6027524122795733,
"TypeName": "E_SETTING",
"TemplateName": "E_SETTING_DEFAULT",
"IAm": "TicketElement",
"QuickLink": null,
"Id": 6214441099517653,
"CreationTime": "2013-09-16T10:35:01.678Z",
"CreatorId": 5455778074533264,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": "{\r\n \"DisplayName\": \"\",\r\n \"Value\": \"Show\",\r\n \"Value-isLocked\": \"\"\r\n}",
"ModificationTime": "2013-09-16T10:35:01.493+00:00",
"Generation": 0,
"VersionNumbers": [1, 2, 3],
"CurrentVersion": 3
}, {
"TicketElementType": null,
"TicketElementTemplateType": null,
"IsFinalized": false,
"Name": "HeaderBackgroundColor",
"Version": null,
"Latest": false,
"TicketId": 6027524122795733,
"TypeName": "E_SETTING",
"TemplateName": "E_SETTING_DEFAULT",
"IAm": "TicketElement",
"QuickLink": null,
"Id": 6069305564651221,
"CreationTime": "2013-09-16T10:35:01.568Z",
"CreatorId": 5455778074533264,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": "{\r\n \"DisplayName\": \"\",\r\n \"Value\": \"none\",\r\n \"Value-isLocked\": \"\"\r\n}",
"ModificationTime": "2013-09-16T10:35:01.656+00:00",
"Generation": 0,
"VersionNumbers": [1, 2, 3],
"CurrentVersion": 3
}, {
"TicketElementType": null,
"TicketElementTemplateType": null,
"IsFinalized": false,
"Name": "ItemUploadAudio",
"Version": null,
"Latest": false,
"TicketId": 6027524122795733,
"TypeName": "E_SETTING",
"TemplateName": "E_SETTING_DEFAULT",
"IAm": "TicketElement",
"QuickLink": null,
"Id": 6212242076262101,
"CreationTime": "2013-09-16T10:35:01.678Z",
"CreatorId": 5455778074533264,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": "{\r\n \"DisplayName\": \"\",\r\n \"Value\": \"false\",\r\n \"Value-isLocked\": \"\"\r\n}",
"ModificationTime": "2013-09-16T10:35:02.482+00:00",
"Generation": 0,
"VersionNumbers": [1, 2, 3],
"CurrentVersion": 3
}, {
"TicketElementType": null,
"TicketElementTemplateType": null,
"IsFinalized": false,
"Name": "BodyFontWeight",
"Version": null,
"Latest": false,
"TicketId": 6027524122795733,
"TypeName": "E_SETTING",
"TemplateName": "E_SETTING_DEFAULT",
"IAm": "TicketElement",
"QuickLink": null,
"Id": 6047315332095701,
"CreationTime": "2013-09-16T10:35:01.553Z",
"CreatorId": 5455778074533264,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": "{\r\n \"DisplayName\": \"\",\r\n \"Value\": \"Normal\",\r\n \"Value-isLocked\": \"\"\r\n}",
"ModificationTime": "2013-09-16T10:35:01.256+00:00",
"Generation": 0,
"VersionNumbers": [1, 2, 3],
"CurrentVersion": 3
}, {
"TicketElementType": null,
"TicketElementTemplateType": null,
"IsFinalized": false,
"Name": "SubHeadlineShow",
"Version": null,
"Latest": false,
"TicketId": 6027524122795733,
"TypeName": "E_SETTING",
"TemplateName": "E_SETTING_DEFAULT",
"IAm": "TicketElement",
"QuickLink": null,
"Id": 6144072355339989,
"CreationTime": "2013-09-16T10:35:01.615Z",
"CreatorId": 5455778074533264,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": "{\"DisplayName\":\"\",\"Value\":\"Hide\",\"Value-isLocked\":\"\"}",
"ModificationTime": "2013-09-16T10:35:01.455+00:00",
"Generation": 0,
"VersionNumbers": [1, 2, 3, 4],
"CurrentVersion": 4
}, {
"TicketElementType": null,
"TicketElementTemplateType": null,
"IsFinalized": false,
"Name": "ItemUploadVideo",
"Version": null,
"Latest": false,
"TicketId": 6027524122795733,
"TypeName": "E_SETTING",
"TemplateName": "E_SETTING_DEFAULT",
"IAm": "TicketElement",
"QuickLink": null,
"Id": 6040718262329045,
"CreationTime": "2013-09-16T10:35:01.553Z",
"CreatorId": 5455778074533264,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": "{\r\n \"DisplayName\": \"\",\r\n \"Value\": \"false\",\r\n \"Value-isLocked\": \"\"\r\n}",
"ModificationTime": "2013-09-16T10:35:01.802+00:00",
"Generation": 0,
"VersionNumbers": [1, 2, 3],
"CurrentVersion": 3
}, {
"TicketElementType": null,
"TicketElementTemplateType": null,
"IsFinalized": false,
"Name": "ItemTermsLink",
"Version": null,
"Latest": false,
"TicketId": 6027524122795733,
"TypeName": "E_SETTING",
"TemplateName": "E_SETTING_DEFAULT",
"IAm": "TicketElement",
"QuickLink": null,
"Id": 6170460634406613,
"CreationTime": "2013-09-16T10:35:01.631Z",
"CreatorId": 5455778074533264,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": "{\"DisplayName\":\"\",\"Value\":\"http://www.singapore-river.com\",\"Value-isLocked\":\"\"}",
"ModificationTime": "2013-09-16T10:35:02.339+00:00",
"Generation": 0,
"VersionNumbers": [1, 2, 3, 4, 5],
"CurrentVersion": 5
}, {
"TicketElementType": null,
"TicketElementTemplateType": null,
"IsFinalized": false,
"Name": "CommentHeadlineFirst",
"Version": null,
"Latest": false,
"TicketId": 6027524122795733,
"TypeName": "E_SETTING",
"TemplateName": "E_SETTING_DEFAULT",
"IAm": "TicketElement",
"QuickLink": null,
"Id": 6203445983239893,
"CreationTime": "2013-09-16T10:35:01.678Z",
"CreatorId": 5455778074533264,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": "{\r\n \"DisplayName\": \"\",\r\n \"Value\": \"Be the first to comment\",\r\n \"Value-isLocked\": \"\"\r\n}",
"ModificationTime": "2013-09-16T10:35:02.4+00:00",
"Generation": 0,
"VersionNumbers": [1, 2, 3],
"CurrentVersion": 3
}, {
"TicketElementType": null,
"TicketElementTemplateType": null,
"IsFinalized": false,
"Name": "Layout_Product",
"Version": null,
"Latest": false,
"TicketId": 6027524122795733,
"TypeName": "E_SETTING",
"TemplateName": "E_SETTING_DEFAULT",
"IAm": "TicketElement",
"QuickLink": null,
"Id": 6080300680928981,
"CreationTime": "2013-09-16T10:35:01.584Z",
"CreatorId": 5455778074533264,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": "{\r\n \"DisplayName\": \"\",\r\n \"Value\": \"Bottom\",\r\n \"Value-isLocked\": \"\"\r\n}",
"ModificationTime": "2013-09-16T10:35:01.406+00:00",
"Generation": 0,
"VersionNumbers": [1, 2, 3],
"CurrentVersion": 3
}, {
"TicketElementType": null,
"TicketElementTemplateType": null,
"IsFinalized": false,
"Name": "BrandShow",
"Version": null,
"Latest": false,
"TicketId": 6027524122795733,
"TypeName": "E_SETTING",
"TemplateName": "E_SETTING_DEFAULT",
"IAm": "TicketElement",
"QuickLink": null,
"Id": 6133077239062229,
"CreationTime": "2013-09-16T10:35:01.599Z",
"CreatorId": 5455778074533264,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": "{\r\n \"DisplayName\": \"\",\r\n \"Value\": \"Show\",\r\n \"Value-isLocked\": \"\"\r\n}",
"ModificationTime": "2013-09-16T10:35:02.002+00:00",
"Generation": 0,
"VersionNumbers": [1, 2, 3],
"CurrentVersion": 3
}, {
"TicketElementType": null,
"TicketElementTemplateType": null,
"IsFinalized": false,
"Name": "ItemHeadline",
"Version": null,
"Latest": false,
"TicketId": 6027524122795733,
"TypeName": "E_SETTING",
"TemplateName": "E_SETTING_DEFAULT",
"IAm": "TicketElement",
"QuickLink": null,
"Id": 6192450866962133,
"CreationTime": "2013-09-16T10:35:01.662Z",
"CreatorId": 5455778074533264,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": "{\r\n \"DisplayName\": \"\",\r\n \"Value\": \"Add your item\",\r\n \"Value-isLocked\": \"\"\r\n}",
"ModificationTime": "2013-09-16T10:35:01.18+00:00",
"Generation": 0,
"VersionNumbers": [1, 2, 3],
"CurrentVersion": 3
}, {
"TicketElementType": null,
"TicketElementTemplateType": null,
"IsFinalized": false,
"Name": "GalleryHeading",
"Version": null,
"Latest": false,
"TicketId": 6027524122795733,
"TypeName": "E_SETTING",
"TemplateName": "E_SETTING_DEFAULT",
"IAm": "TicketElement",
"QuickLink": null,
"Id": 6051713378606805,
"CreationTime": "2013-09-16T10:35:01.553Z",
"CreatorId": 5455778074533264,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": "{\r\n \"DisplayName\": \"\",\r\n \"Value\": \"Collection heading...\",\r\n \"Value-isLocked\": \"\"\r\n}",
"ModificationTime": "2013-09-16T10:35:01.945+00:00",
"Generation": 0,
"VersionNumbers": [1, 2, 3],
"CurrentVersion": 3
}, {
"TicketElementType": null,
"TicketElementTemplateType": null,
"IsFinalized": false,
"Name": "HeaderAsBlock",
"Version": null,
"Latest": false,
"TicketId": 6027524122795733,
"TypeName": "E_SETTING",
"TemplateName": "E_SETTING_DEFAULT",
"IAm": "TicketElement",
"QuickLink": null,
"Id": 6201246959984341,
"CreationTime": "2013-09-16T10:35:01.678Z",
"CreatorId": 5455778074533264,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": "{\r\n \"DisplayName\": \"\",\r\n \"Value\": \"true\",\r\n \"Value-isLocked\": \"\"\r\n}",
"ModificationTime": "2013-09-16T10:35:01.522+00:00",
"Generation": 0,
"VersionNumbers": [1, 2, 3],
"CurrentVersion": 3
}, {
"TicketElementType": null,
"TicketElementTemplateType": null,
"IsFinalized": false,
"Name": "PlaceHolderText",
"Version": null,
"Latest": false,
"TicketId": 6027524122795733,
"TypeName": "E_SETTING",
"TemplateName": "E_SETTING_DEFAULT",
"IAm": "TicketElement",
"QuickLink": null,
"Id": 6042917285584597,
"CreationTime": "2013-09-16T10:35:01.553Z",
"CreatorId": 5455778074533264,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": "{\r\n \"DisplayName\": \"\",\r\n \"Value\": \"Nothing to display\",\r\n \"Value-isLocked\": \"\"\r\n}",
"ModificationTime": "2013-09-16T10:35:01.795+00:00",
"Generation": 0,
"VersionNumbers": [1, 2, 3],
"CurrentVersion": 3
}, {
"TicketElementType": null,
"TicketElementTemplateType": null,
"IsFinalized": false,
"Name": "CommentSort",
"Version": null,
"Latest": false,
"TicketId": 6027524122795733,
"TypeName": "E_SETTING",
"TemplateName": "E_SETTING_DEFAULT",
"IAm": "TicketElement",
"QuickLink": null,
"Id": 6174858680917717,
"CreationTime": "2013-09-16T10:35:01.646Z",
"CreatorId": 5455778074533264,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": "{\r\n \"DisplayName\": \"\",\r\n \"Value\": \"chronological\",\r\n \"Value-isLocked\": \"\"\r\n}",
"ModificationTime": "2013-09-16T10:35:01.646+00:00",
"Generation": 0,
"VersionNumbers": [1, 2, 3],
"CurrentVersion": 3
}, {
"TicketElementType": null,
"TicketElementTemplateType": null,
"IsFinalized": false,
"Name": "ItemEmbedYoutube",
"Version": null,
"Latest": false,
"TicketId": 6027524122795733,
"TypeName": "E_SETTING",
"TemplateName": "E_SETTING_DEFAULT",
"IAm": "TicketElement",
"QuickLink": null,
"Id": 6071504587906773,
"CreationTime": "2013-09-16T10:35:01.568Z",
"CreatorId": 5455778074533264,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": "{\r\n \"DisplayName\": \"\",\r\n \"Value\": \"false\",\r\n \"Value-isLocked\": \"\"\r\n}",
"ModificationTime": "2013-09-16T10:35:01.604+00:00",
"Generation": 0,
"VersionNumbers": [1, 2, 3],
"CurrentVersion": 3
}, {
"TicketElementType": null,
"TicketElementTemplateType": null,
"IsFinalized": false,
"Name": "SmallTextFontWeight",
"Version": null,
"Latest": false,
"TicketId": 6027524122795733,
"TypeName": "E_SETTING",
"TemplateName": "E_SETTING_DEFAULT",
"IAm": "TicketElement",
"QuickLink": null,
"Id": 6152868448362197,
"CreationTime": "2013-09-16T10:35:01.631Z",
"CreatorId": 5455778074533264,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": "{\r\n \"DisplayName\": \"\",\r\n \"Value\": \"Normal\",\r\n \"Value-isLocked\": \"\"\r\n}",
"ModificationTime": "2013-09-16T10:35:01.649+00:00",
"Generation": 0,
"VersionNumbers": [1, 2, 3],
"CurrentVersion": 3
}, {
"TicketElementType": null,
"TicketElementTemplateType": null,
"IsFinalized": false,
"Name": "AddItem",
"Version": null,
"Latest": false,
"TicketId": 6027524122795733,
"TypeName": "E_SETTING",
"TemplateName": "E_SETTING_DEFAULT",
"IAm": "TicketElement",
"QuickLink": null,
"Id": 6166062587895509,
"CreationTime": "2013-09-16T10:35:01.631Z",
"CreatorId": 5455778074533264,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": "{\r\n \"DisplayName\": \"\",\r\n \"Value\": \"true\",\r\n \"Value-isLocked\": \"\"\r\n}",
"ModificationTime": "2013-09-16T10:35:01.536+00:00",
"Generation": 0,
"VersionNumbers": [1, 2, 3],
"CurrentVersion": 3
}, {
"TicketElementType": null,
"TicketElementTemplateType": null,
"IsFinalized": false,
"Name": "LikeSelectedText",
"Version": null,
"Latest": false,
"TicketId": 6027524122795733,
"TypeName": "E_SETTING",
"TemplateName": "E_SETTING_DEFAULT",
"IAm": "TicketElement",
"QuickLink": null,
"Id": 6185853797195477,
"CreationTime": "2013-09-16T10:35:01.646Z",
"CreatorId": 5455778074533264,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": "{\r\n \"DisplayName\": \"\",\r\n \"Value\": \"Liked\",\r\n \"Value-isLocked\": \"\"\r\n}",
"ModificationTime": "2013-09-16T10:35:01.712+00:00",
"Generation": 0,
"VersionNumbers": [1, 2, 3],
"CurrentVersion": 3
}, {
"TicketElementType": null,
"TicketElementTemplateType": null,
"IsFinalized": false,
"Name": "ViewCountShow",
"Version": null,
"Latest": false,
"TicketId": 6027524122795733,
"TypeName": "E_SETTING",
"TemplateName": "E_SETTING_DEFAULT",
"IAm": "TicketElement",
"QuickLink": null,
"Id": 6183654773939925,
"CreationTime": "2013-09-16T10:35:01.646Z",
"CreatorId": 5455778074533264,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": "{\"DisplayName\":\"\",\"Value\":\"Show\",\"Value-isLocked\":\"\"}",
"ModificationTime": "2013-09-16T10:35:01.76+00:00",
"Generation": 0,
"VersionNumbers": [1, 2, 3, 4, 5],
"CurrentVersion": 5
}, {
"TicketElementType": null,
"TicketElementTemplateType": null,
"IsFinalized": false,
"Name": "ItemEmbed",
"Version": null,
"Latest": false,
"TicketId": 6027524122795733,
"TypeName": "E_SETTING",
"TemplateName": "E_SETTING_DEFAULT",
"IAm": "TicketElement",
"QuickLink": null,
"Id": 6179256727428821,
"CreationTime": "2013-09-16T10:35:01.646Z",
"CreatorId": 5455778074533264,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": "{\r\n \"DisplayName\": \"\",\r\n \"Value\": \"false\",\r\n \"Value-isLocked\": \"\"\r\n}",
"ModificationTime": "2013-09-16T10:35:01.845+00:00",
"Generation": 0,
"VersionNumbers": [1, 2, 3],
"CurrentVersion": 3
}, {
"TicketElementType": null,
"TicketElementTemplateType": null,
"IsFinalized": false,
"Name": "ItemUpload",
"Version": null,
"Latest": false,
"TicketId": 6027524122795733,
"TypeName": "E_SETTING",
"TemplateName": "E_SETTING_DEFAULT",
"IAm": "TicketElement",
"QuickLink": null,
"Id": 6181455750684373,
"CreationTime": "2013-09-16T10:35:01.646Z",
"CreatorId": 5455778074533264,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": "{\"DisplayName\":\"\",\"Value\":\"true\",\"Value-isLocked\":\"\"}",
"ModificationTime": "2013-09-16T10:35:01.876+00:00",
"Generation": 0,
"VersionNumbers": [1, 2, 3, 4],
"CurrentVersion": 4
}, {
"TicketElementType": null,
"TicketElementTemplateType": null,
"IsFinalized": false,
"Name": "ItemTerms",
"Version": null,
"Latest": false,
"TicketId": 6027524122795733,
"TypeName": "E_SETTING",
"TemplateName": "E_SETTING_DEFAULT",
"IAm": "TicketElement",
"QuickLink": null,
"Id": 6177057704173269,
"CreationTime": "2013-09-16T10:35:01.646Z",
"CreatorId": 5455778074533264,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": "{\r\n \"DisplayName\": \"\",\r\n \"Value\": \"Your Description\",\r\n \"Value-isLocked\": \"\"\r\n}",
"ModificationTime": "2013-09-16T10:35:01.339+00:00",
"Generation": 0,
"VersionNumbers": [1, 2, 3],
"CurrentVersion": 3
}],
"Name": "Settings",
"TypeName": "T_SNAPLETITEMSETTING",
"TemplateName": "T_SNAPLETITEMSETTING_DEFAULT",
"IsRoot": false,
"UniqueConstraint": null,
"BindIds": [],
"BindIdsPointingToThisTicket": [6392561983217366],
"SubTicketIds": [],
"TicketElementIds": [6031922169306837, 6091295797206741, 6124281146040021, 6049514355351253, 6106688959995605, 6075902634417877, 6034121192562389, 6062708494884565, 6036320215817941, 6086897750695637, 6159465518128853, 6117684076273365, 6108887983251157, 6073703611162325, 6067106541395669, 6053912401862357, 6119883099528917, 6095693843717845, 6122082122784469, 6207844029750997, 6168261611151061, 6155067471617749, 6115485053017813, 6102290913484501, 6163863564639957, 6137475285573333, 6146271378595541, 6172659657662165, 6097892866973397, 6157266494873301, 6194649890217685, 6093494820462293, 6199047936728789, 6056111425117909, 6078101657673429, 6045116308840149, 6104489936740053, 6205645006495445, 6060509471629013, 6111087006506709, 6089096773951189, 6148470401851093, 6100091890228949, 6196848913473237, 6210043053006549, 6058310448373461, 6130878215806677, 6084698727440085, 6135276262317781, 6190251843706581, 6188052820451029, 6141873332084437, 6064907518140117, 6126480169295573, 6038519239073493, 6214441099517653, 6069305564651221, 6212242076262101, 6047315332095701, 6144072355339989, 6040718262329045, 6170460634406613, 6203445983239893, 6080300680928981, 6133077239062229, 6192450866962133, 6051713378606805, 6201246959984341, 6042917285584597, 6174858680917717, 6071504587906773, 6152868448362197, 6166062587895509, 6185853797195477, 6183654773939925, 6179256727428821, 6181455750684373, 6177057704173269],
"EpisodeIds": [],
"IAm": "Ticket",
"PublicActions": ["view"],
"QuickLink": null,
"Id": 6027524122795733,
"CreationTime": "2013-09-16T10:35:01.537Z",
"CreatorId": 5455778074533264,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": null,
"ModificationTime": "2013-09-16T10:35:03.864+00:00",
"Generation": 0,
"VersionNumbers": [1, 2, 3, 4],
"CurrentVersion": 4
},
"TicketIdTo": 6027524122795733,
"TicketIdFrom": 6003334866984660,
"Relationship": "default",
"IAm": "Bind",
"IsInHierarchy": true,
"IsInside": false,
"NonHierarchicalBindIds": [],
"NonHierarchicalBinds": [],
"HierarchicalBinds": [],
"TicketTemplateType": null,
"TicketType": {
"IAm": "TicketType",
"TypeName": "T_BIND",
"DefaultTemplateName": "T_BIND_DEFAULT",
"Id": 1013,
"CreationTime": null,
"CreatorId": 0,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": null,
"ModificationTime": null,
"Generation": 0,
"VersionNumbers": [],
"CurrentVersion": 0
},
"TicketElements": [],
"Name": null,
"TypeName": null,
"TemplateName": null,
"IsRoot": false,
"UniqueConstraint": null,
"BindIds": [],
"BindIdsPointingToThisTicket": [],
"SubTicketIds": [],
"TicketElementIds": [],
"EpisodeIds": [],
"PublicActions": ["view"],
"QuickLink": null,
"Id": 6392561983217366,
"CreationTime": "2013-09-16T10:35:02.827Z",
"CreatorId": 5455778074533264,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": null,
"ModificationTime": "2013-09-16T10:35:06.717+00:00",
"Generation": 0,
"VersionNumbers": [1, 2, 3],
"CurrentVersion": 3
}, {
"TicketTo": {
"NonHierarchicalBindIds": [3267749937105713, 5271060122914864, 8094605981950677, 3241361658039089, 6049514355522655, 5284254262448176, 1172080774538427, 8235343471370617, 5273259146170416, 5266662076403760, 3250157751061297, 1187473937327293, 9002802587558594, 7694383750504481, 5277657192681520, 7696582773760033, 5794427657707157, 3274347006872369, 3256754820827953, 5288652308959280, 3254555797572401, 3272147983616817, 8237542494626169, 5275458169425968, 1176478821049531, 7698781797015585, 1174279797793979, 8241940541137273, 3236963611527985, 3269948960361265, 3265550913850161, 4952201749763796, 5279856215937072, 7520660912250839, 3760331146340317, 8404668261423559, 1189672960582845, 3258953844083505, 1185274914071741, 5796626680962709, 5282055239192624, 3252356774316849, 3263351890594609, 3239162634783537, 3247958727805745, 5268861099659312, 3245759704550193, 8239741517881721, 5286453285703728],
"NonHierarchicalBinds": [{
"TicketTo": null,
"TicketIdTo": 820237053675394,
"TicketIdFrom": 3485453238236343,
"Relationship": "default",
"IAm": "Bind",
"IsInHierarchy": false,
"IsInside": true,
"NonHierarchicalBindIds": [],
"NonHierarchicalBinds": [],
"HierarchicalBinds": [],
"TicketTemplateType": null,
"TicketType": {
"IAm": "TicketType",
"TypeName": "T_BIND",
"DefaultTemplateName": "T_BIND_DEFAULT",
"Id": 1013,
"CreationTime": null,
"CreatorId": 0,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": null,
"ModificationTime": null,
"Generation": 0,
"VersionNumbers": [],
"CurrentVersion": 0
},
"TicketElements": [],
"Name": null,
"TypeName": null,
"TemplateName": null,
"IsRoot": false,
"UniqueConstraint": null,
"BindIds": [],
"BindIdsPointingToThisTicket": [],
"SubTicketIds": [],
"TicketElementIds": [],
"EpisodeIds": [],
"PublicActions": ["view"],
"QuickLink": null,
"Id": 3267749937105713,
"CreationTime": "2013-09-16T18:17:21.446Z",
"CreatorId": 5455778074533264,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": null,
"ModificationTime": "2013-09-16T18:17:42.152+00:00",
"Generation": 0,
"VersionNumbers": [1, 2],
"CurrentVersion": 2
}, {
"TicketTo": null,
"TicketIdTo": 4661930681126571,
"TicketIdFrom": 3485453238236343,
"Relationship": "default",
"IAm": "Bind",
"IsInHierarchy": false,
"IsInside": true,
"NonHierarchicalBindIds": [],
"NonHierarchicalBinds": [],
"HierarchicalBinds": [],
"TicketTemplateType": null,
"TicketType": {
"IAm": "TicketType",
"TypeName": "T_BIND",
"DefaultTemplateName": "T_BIND_DEFAULT",
"Id": 1013,
"CreationTime": null,
"CreatorId": 0,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": null,
"ModificationTime": null,
"Generation": 0,
"VersionNumbers": [],
"CurrentVersion": 0
},
"TicketElements": [],
"Name": null,
"TypeName": null,
"TemplateName": null,
"IsRoot": false,
"UniqueConstraint": null,
"BindIds": [],
"BindIdsPointingToThisTicket": [],
"SubTicketIds": [],
"TicketElementIds": [],
"EpisodeIds": [],
"PublicActions": ["view"],
"QuickLink": null,
"Id": 5271060122914864,
"CreationTime": "2013-09-16T18:38:40.48Z",
"CreatorId": 5455778074533264,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": null,
"ModificationTime": "2013-09-16T18:38:42.958+00:00",
"Generation": 0,
"VersionNumbers": [1, 2],
"CurrentVersion": 2
}, {
"TicketTo": null,
"TicketIdTo": 7973659702895194,
"TicketIdFrom": 3485453238236343,
"Relationship": "default",
"IAm": "Bind",
"IsInHierarchy": false,
"IsInside": true,
"NonHierarchicalBindIds": [],
"NonHierarchicalBinds": [],
"HierarchicalBinds": [],
"TicketTemplateType": null,
"TicketType": {
"IAm": "TicketType",
"TypeName": "T_BIND",
"DefaultTemplateName": "T_BIND_DEFAULT",
"Id": 1013,
"CreationTime": null,
"CreatorId": 0,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": null,
"ModificationTime": null,
"Generation": 0,
"VersionNumbers": [],
"CurrentVersion": 0
},
"TicketElements": [],
"Name": null,
"TypeName": null,
"TemplateName": null,
"IsRoot": false,
"UniqueConstraint": null,
"BindIds": [],
"BindIdsPointingToThisTicket": [],
"SubTicketIds": [],
"TicketElementIds": [],
"EpisodeIds": [],
"PublicActions": ["view"],
"QuickLink": null,
"Id": 8094605981950677,
"CreationTime": "2013-09-04T03:02:45.778Z",
"CreatorId": 5455778074533264,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": null,
"ModificationTime": "2013-09-04T03:02:40.459+00:00",
"Generation": 0,
"VersionNumbers": [1, 2],
"CurrentVersion": 2
}, {
"TicketTo": null,
"TicketIdTo": 1424968448952424,
"TicketIdFrom": 3485453238236343,
"Relationship": "default",
"IAm": "Bind",
"IsInHierarchy": false,
"IsInside": true,
"NonHierarchicalBindIds": [],
"NonHierarchicalBinds": [],
"HierarchicalBinds": [],
"TicketTemplateType": null,
"TicketType": {
"IAm": "TicketType",
"TypeName": "T_BIND",
"DefaultTemplateName": "T_BIND_DEFAULT",
"Id": 1013,
"CreationTime": null,
"CreatorId": 0,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": null,
"ModificationTime": null,
"Generation": 0,
"VersionNumbers": [],
"CurrentVersion": 0
},
"TicketElements": [],
"Name": null,
"TypeName": null,
"TemplateName": null,
"IsRoot": false,
"UniqueConstraint": null,
"BindIds": [],
"BindIdsPointingToThisTicket": [],
"SubTicketIds": [],
"TicketElementIds": [],
"EpisodeIds": [],
"PublicActions": ["view"],
"QuickLink": null,
"Id": 3241361658039089,
"CreationTime": "2013-09-16T18:17:21.18Z",
"CreatorId": 5455778074533264,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": null,
"ModificationTime": "2013-09-16T18:17:24.067+00:00",
"Generation": 0,
"VersionNumbers": [1, 2],
"CurrentVersion": 2
}, {
"TicketTo": null,
"TicketIdTo": 2693804867406395,
"TicketIdFrom": 3485453238236343,
"Relationship": "default",
"IAm": "Bind",
"IsInHierarchy": false,
"IsInside": true,
"NonHierarchicalBindIds": [],
"NonHierarchicalBinds": [],
"HierarchicalBinds": [],
"TicketTemplateType": null,
"TicketType": {
"IAm": "TicketType",
"TypeName": "T_BIND",
"DefaultTemplateName": "T_BIND_DEFAULT",
"Id": 1013,
"CreationTime": null,
"CreatorId": 0,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": null,
"ModificationTime": null,
"Generation": 0,
"VersionNumbers": [],
"CurrentVersion": 0
},
"TicketElements": [],
"Name": null,
"TypeName": null,
"TemplateName": null,
"IsRoot": false,
"UniqueConstraint": null,
"BindIds": [],
"BindIdsPointingToThisTicket": [],
"SubTicketIds": [],
"TicketElementIds": [],
"EpisodeIds": [],
"PublicActions": ["view"],
"QuickLink": null,
"Id": 6049514355522655,
"CreationTime": "2013-09-18T10:11:43.483Z",
"CreatorId": 5455778074533264,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": null,
"ModificationTime": "2013-09-18T10:11:44.18+00:00",
"Generation": 0,
"VersionNumbers": [1, 2],
"CurrentVersion": 2
}, {
"TicketTo": null,
"TicketIdTo": 5145715797348289,
"TicketIdFrom": 3485453238236343,
"Relationship": "default",
"IAm": "Bind",
"IsInHierarchy": false,
"IsInside": true,
"NonHierarchicalBindIds": [],
"NonHierarchicalBinds": [],
"HierarchicalBinds": [],
"TicketTemplateType": null,
"TicketType": {
"IAm": "TicketType",
"TypeName": "T_BIND",
"DefaultTemplateName": "T_BIND_DEFAULT",
"Id": 1013,
"CreationTime": null,
"CreatorId": 0,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": null,
"ModificationTime": null,
"Generation": 0,
"VersionNumbers": [],
"CurrentVersion": 0
},
"TicketElements": [],
"Name": null,
"TypeName": null,
"TemplateName": null,
"IsRoot": false,
"UniqueConstraint": null,
"BindIds": [],
"BindIdsPointingToThisTicket": [],
"SubTicketIds": [],
"TicketElementIds": [],
"EpisodeIds": [],
"PublicActions": ["view"],
"QuickLink": null,
"Id": 5284254262448176,
"CreationTime": "2013-09-16T18:38:40.527Z",
"CreatorId": 5455778074533264,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": null,
"ModificationTime": "2013-09-16T18:38:42.696+00:00",
"Generation": 0,
"VersionNumbers": [1, 2],
"CurrentVersion": 2
}, {
"TicketTo": null,
"TicketIdTo": 435407983928195,
"TicketIdFrom": 3485453238236343,
"Relationship": "default",
"IAm": "Bind",
"IsInHierarchy": false,
"IsInside": true,
"NonHierarchicalBindIds": [],
"NonHierarchicalBinds": [],
"HierarchicalBinds": [],
"TicketTemplateType": null,
"TicketType": {
"IAm": "TicketType",
"TypeName": "T_BIND",
"DefaultTemplateName": "T_BIND_DEFAULT",
"Id": 1013,
"CreationTime": null,
"CreatorId": 0,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": null,
"ModificationTime": null,
"Generation": 0,
"VersionNumbers": [],
"CurrentVersion": 0
},
"TicketElements": [],
"Name": null,
"TypeName": null,
"TemplateName": null,
"IsRoot": false,
"UniqueConstraint": null,
"BindIds": [],
"BindIdsPointingToThisTicket": [],
"SubTicketIds": [],
"TicketElementIds": [],
"EpisodeIds": [],
"PublicActions": ["view"],
"QuickLink": null,
"Id": 1172080774538427,
"CreationTime": "2013-09-16T11:00:11.544Z",
"CreatorId": 5455778074533264,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": null,
"ModificationTime": "2013-09-16T11:00:14.031+00:00",
"Generation": 0,
"VersionNumbers": [1, 2],
"CurrentVersion": 2
}, {
"TicketTo": null,
"TicketIdTo": 7751558355148964,
"TicketIdFrom": 3485453238236343,
"Relationship": "default",
"IAm": "Bind",
"IsInHierarchy": false,
"IsInside": true,
"NonHierarchicalBindIds": [],
"NonHierarchicalBinds": [],
"HierarchicalBinds": [],
"TicketTemplateType": null,
"TicketType": {
"IAm": "TicketType",
"TypeName": "T_BIND",
"DefaultTemplateName": "T_BIND_DEFAULT",
"Id": 1013,
"CreationTime": null,
"CreatorId": 0,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": null,
"ModificationTime": null,
"Generation": 0,
"VersionNumbers": [],
"CurrentVersion": 0
},
"TicketElements": [],
"Name": null,
"TypeName": null,
"TemplateName": null,
"IsRoot": false,
"UniqueConstraint": null,
"BindIds": [],
"BindIdsPointingToThisTicket": [],
"SubTicketIds": [],
"TicketElementIds": [],
"EpisodeIds": [],
"PublicActions": ["view"],
"QuickLink": null,
"Id": 8235343471370617,
"CreationTime": "2013-09-16T10:46:17.939Z",
"CreatorId": 5455778074533264,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": null,
"ModificationTime": "2013-09-16T10:46:19.44+00:00",
"Generation": 0,
"VersionNumbers": [1, 2],
"CurrentVersion": 2
}, {
"TicketTo": null,
"TicketIdTo": 4540984402071147,
"TicketIdFrom": 3485453238236343,
"Relationship": "default",
"IAm": "Bind",
"IsInHierarchy": false,
"IsInside": true,
"NonHierarchicalBindIds": [],
"NonHierarchicalBinds": [],
"HierarchicalBinds": [],
"TicketTemplateType": null,
"TicketType": {
"IAm": "TicketType",
"TypeName": "T_BIND",
"DefaultTemplateName": "T_BIND_DEFAULT",
"Id": 1013,
"CreationTime": null,
"CreatorId": 0,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": null,
"ModificationTime": null,
"Generation": 0,
"VersionNumbers": [],
"CurrentVersion": 0
},
"TicketElements": [],
"Name": null,
"TypeName": null,
"TemplateName": null,
"IsRoot": false,
"UniqueConstraint": null,
"BindIds": [],
"BindIdsPointingToThisTicket": [],
"SubTicketIds": [],
"TicketElementIds": [],
"EpisodeIds": [],
"PublicActions": ["view"],
"QuickLink": null,
"Id": 5273259146170416,
"CreationTime": "2013-09-16T18:38:40.48Z",
"CreatorId": 5455778074533264,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": null,
"ModificationTime": "2013-09-16T18:38:43.069+00:00",
"Generation": 0,
"VersionNumbers": [1, 2],
"CurrentVersion": 2
}, {
"TicketTo": null,
"TicketIdTo": 5024769518292835,
"TicketIdFrom": 3485453238236343,
"Relationship": "default",
"IAm": "Bind",
"IsInHierarchy": false,
"IsInside": true,
"NonHierarchicalBindIds": [],
"NonHierarchicalBinds": [],
"HierarchicalBinds": [],
"TicketTemplateType": null,
"TicketType": {
"IAm": "TicketType",
"TypeName": "T_BIND",
"DefaultTemplateName": "T_BIND_DEFAULT",
"Id": 1013,
"CreationTime": null,
"CreatorId": 0,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": null,
"ModificationTime": null,
"Generation": 0,
"VersionNumbers": [],
"CurrentVersion": 0
},
"TicketElements": [],
"Name": null,
"TypeName": null,
"TemplateName": null,
"IsRoot": false,
"UniqueConstraint": null,
"BindIds": [],
"BindIdsPointingToThisTicket": [],
"SubTicketIds": [],
"TicketElementIds": [],
"EpisodeIds": [],
"PublicActions": ["view"],
"QuickLink": null,
"Id": 5266662076403760,
"CreationTime": "2013-09-16T18:38:40.449Z",
"CreatorId": 5455778074533264,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": null,
"ModificationTime": "2013-09-16T18:38:43.193+00:00",
"Generation": 0,
"VersionNumbers": [1, 2],
"CurrentVersion": 2
}, {
"TicketTo": null,
"TicketIdTo": 941183332730797,
"TicketIdFrom": 3485453238236343,
"Relationship": "default",
"IAm": "Bind",
"IsInHierarchy": false,
"IsInside": true,
"NonHierarchicalBindIds": [],
"NonHierarchicalBinds": [],
"HierarchicalBinds": [],
"TicketTemplateType": null,
"TicketType": {
"IAm": "TicketType",
"TypeName": "T_BIND",
"DefaultTemplateName": "T_BIND_DEFAULT",
"Id": 1013,
"CreationTime": null,
"CreatorId": 0,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": null,
"ModificationTime": null,
"Generation": 0,
"VersionNumbers": [],
"CurrentVersion": 0
},
"TicketElements": [],
"Name": null,
"TypeName": null,
"TemplateName": null,
"IsRoot": false,
"UniqueConstraint": null,
"BindIds": [],
"BindIdsPointingToThisTicket": [],
"SubTicketIds": [],
"TicketElementIds": [],
"EpisodeIds": [],
"PublicActions": ["view"],
"QuickLink": null,
"Id": 3250157751061297,
"CreationTime": "2013-09-16T18:17:21.258Z",
"CreatorId": 5455778074533264,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": null,
"ModificationTime": "2013-09-16T18:17:24.348+00:00",
"Generation": 0,
"VersionNumbers": [1, 2],
"CurrentVersion": 2
}, {
"TicketTo": null,
"TicketIdTo": 681698588550103,
"TicketIdFrom": 3485453238236343,
"Relationship": "default",
"IAm": "Bind",
"IsInHierarchy": false,
"IsInside": true,
"NonHierarchicalBindIds": [],
"NonHierarchicalBinds": [],
"HierarchicalBinds": [],
"TicketTemplateType": null,
"TicketType": {
"IAm": "TicketType",
"TypeName": "T_BIND",
"DefaultTemplateName": "T_BIND_DEFAULT",
"Id": 1013,
"CreationTime": null,
"CreatorId": 0,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": null,
"ModificationTime": null,
"Generation": 0,
"VersionNumbers": [],
"CurrentVersion": 0
},
"TicketElements": [],
"Name": null,
"TypeName": null,
"TemplateName": null,
"IsRoot": false,
"UniqueConstraint": null,
"BindIds": [],
"BindIdsPointingToThisTicket": [],
"SubTicketIds": [],
"TicketElementIds": [],
"EpisodeIds": [],
"PublicActions": ["view"],
"QuickLink": null,
"Id": 1187473937327293,
"CreationTime": "2013-09-16T11:00:13.187Z",
"CreatorId": 5455778074533264,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": null,
"ModificationTime": "2013-09-16T11:00:15.396+00:00",
"Generation": 0,
"VersionNumbers": [1, 2],
"CurrentVersion": 2
}, {
"TicketTo": null,
"TicketIdTo": 8391474122514903,
"TicketIdFrom": 3485453238236343,
"Relationship": "default",
"IAm": "Bind",
"IsInHierarchy": false,
"IsInside": true,
"NonHierarchicalBindIds": [],
"NonHierarchicalBinds": [],
"HierarchicalBinds": [],
"TicketTemplateType": null,
"TicketType": {
"IAm": "TicketType",
"TypeName": "T_BIND",
"DefaultTemplateName": "T_BIND_DEFAULT",
"Id": 1013,
"CreationTime": null,
"CreatorId": 0,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": null,
"ModificationTime": null,
"Generation": 0,
"VersionNumbers": [],
"CurrentVersion": 0
},
"TicketElements": [],
"Name": null,
"TypeName": null,
"TemplateName": null,
"IsRoot": false,
"UniqueConstraint": null,
"BindIds": [],
"BindIdsPointingToThisTicket": [],
"SubTicketIds": [],
"TicketElementIds": [],
"EpisodeIds": [],
"PublicActions": ["view"],
"QuickLink": null,
"Id": 9002802587558594,
"CreationTime": "2013-09-16T10:51:46.922Z",
"CreatorId": 5455778074533264,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": null,
"ModificationTime": "2013-09-16T10:51:48.245+00:00",
"Generation": 0,
"VersionNumbers": [1, 2],
"CurrentVersion": 2
}, {
"TicketTo": null,
"TicketIdTo": 7452491192393667,
"TicketIdFrom": 3485453238236343,
"Relationship": "default",
"IAm": "Bind",
"IsInHierarchy": false,
"IsInside": true,
"NonHierarchicalBindIds": [],
"NonHierarchicalBinds": [],
"HierarchicalBinds": [],
"TicketTemplateType": null,
"TicketType": {
"IAm": "TicketType",
"TypeName": "T_BIND",
"DefaultTemplateName": "T_BIND_DEFAULT",
"Id": 1013,
"CreationTime": null,
"CreatorId": 0,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": null,
"ModificationTime": null,
"Generation": 0,
"VersionNumbers": [],
"CurrentVersion": 0
},
"TicketElements": [],
"Name": null,
"TypeName": null,
"TemplateName": null,
"IsRoot": false,
"UniqueConstraint": null,
"BindIds": [],
"BindIdsPointingToThisTicket": [],
"SubTicketIds": [],
"TicketElementIds": [],
"EpisodeIds": [],
"PublicActions": ["view"],
"QuickLink": null,
"Id": 7694383750504481,
"CreationTime": "2013-09-16T10:40:33.198Z",
"CreatorId": 5455778074533264,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": null,
"ModificationTime": "2013-09-16T10:40:34.977+00:00",
"Generation": 0,
"VersionNumbers": [1, 2],
"CurrentVersion": 2
}, {
"TicketTo": null,
"TicketIdTo": 4903823239237387,
"TicketIdFrom": 3485453238236343,
"Relationship": "default",
"IAm": "Bind",
"IsInHierarchy": false,
"IsInside": true,
"NonHierarchicalBindIds": [],
"NonHierarchicalBinds": [],
"HierarchicalBinds": [],
"TicketTemplateType": null,
"TicketType": {
"IAm": "TicketType",
"TypeName": "T_BIND",
"DefaultTemplateName": "T_BIND_DEFAULT",
"Id": 1013,
"CreationTime": null,
"CreatorId": 0,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": null,
"ModificationTime": null,
"Generation": 0,
"VersionNumbers": [],
"CurrentVersion": 0
},
"TicketElements": [],
"Name": null,
"TypeName": null,
"TemplateName": null,
"IsRoot": false,
"UniqueConstraint": null,
"BindIds": [],
"BindIdsPointingToThisTicket": [],
"SubTicketIds": [],
"TicketElementIds": [],
"EpisodeIds": [],
"PublicActions": ["view"],
"QuickLink": null,
"Id": 5277657192681520,
"CreationTime": "2013-09-16T18:38:40.496Z",
"CreatorId": 5455778074533264,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": null,
"ModificationTime": "2013-09-16T18:38:48.132+00:00",
"Generation": 0,
"VersionNumbers": [1, 2],
"CurrentVersion": 2
}, {
"TicketTo": null,
"TicketIdTo": 7331544913338238,
"TicketIdFrom": 3485453238236343,
"Relationship": "default",
"IAm": "Bind",
"IsInHierarchy": false,
"IsInside": true,
"NonHierarchicalBindIds": [],
"NonHierarchicalBinds": [],
"HierarchicalBinds": [],
"TicketTemplateType": null,
"TicketType": {
"IAm": "TicketType",
"TypeName": "T_BIND",
"DefaultTemplateName": "T_BIND_DEFAULT",
"Id": 1013,
"CreationTime": null,
"CreatorId": 0,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": null,
"ModificationTime": null,
"Generation": 0,
"VersionNumbers": [],
"CurrentVersion": 0
},
"TicketElements": [],
"Name": null,
"TypeName": null,
"TemplateName": null,
"IsRoot": false,
"UniqueConstraint": null,
"BindIds": [],
"BindIdsPointingToThisTicket": [],
"SubTicketIds": [],
"TicketElementIds": [],
"EpisodeIds": [],
"PublicActions": ["view"],
"QuickLink": null,
"Id": 7696582773760033,
"CreationTime": "2013-09-16T10:40:33.213Z",
"CreatorId": 5455778074533264,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": null,
"ModificationTime": "2013-09-16T10:40:35.065+00:00",
"Generation": 0,
"VersionNumbers": [1, 2],
"CurrentVersion": 2
}, {
"TicketTo": null,
"TicketIdTo": 5673481378651752,
"TicketIdFrom": 3485453238236343,
"Relationship": "default",
"IAm": "Bind",
"IsInHierarchy": false,
"IsInside": true,
"NonHierarchicalBindIds": [],
"NonHierarchicalBinds": [],
"HierarchicalBinds": [],
"TicketTemplateType": null,
"TicketType": {
"IAm": "TicketType",
"TypeName": "T_BIND",
"DefaultTemplateName": "T_BIND_DEFAULT",
"Id": 1013,
"CreationTime": null,
"CreatorId": 0,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": null,
"ModificationTime": null,
"Generation": 0,
"VersionNumbers": [],
"CurrentVersion": 0
},
"TicketElements": [],
"Name": null,
"TypeName": null,
"TemplateName": null,
"IsRoot": false,
"UniqueConstraint": null,
"BindIds": [],
"BindIdsPointingToThisTicket": [],
"SubTicketIds": [],
"TicketElementIds": [],
"EpisodeIds": [],
"PublicActions": ["view"],
"QuickLink": null,
"Id": 5794427657707157,
"CreationTime": "2013-09-16T10:33:57.688Z",
"CreatorId": 5455778074533264,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": null,
"ModificationTime": "2013-09-16T10:33:59.102+00:00",
"Generation": 0,
"VersionNumbers": [1, 2],
"CurrentVersion": 2
}, {
"TicketTo": null,
"TicketIdTo": 628922030442308,
"TicketIdFrom": 3485453238236343,
"Relationship": "default",
"IAm": "Bind",
"IsInHierarchy": false,
"IsInside": true,
"NonHierarchicalBindIds": [],
"NonHierarchicalBinds": [],
"HierarchicalBinds": [],
"TicketTemplateType": null,
"TicketType": {
"IAm": "TicketType",
"TypeName": "T_BIND",
"DefaultTemplateName": "T_BIND_DEFAULT",
"Id": 1013,
"CreationTime": null,
"CreatorId": 0,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": null,
"ModificationTime": null,
"Generation": 0,
"VersionNumbers": [],
"CurrentVersion": 0
},
"TicketElements": [],
"Name": null,
"TypeName": null,
"TemplateName": null,
"IsRoot": false,
"UniqueConstraint": null,
"BindIds": [],
"BindIdsPointingToThisTicket": [],
"SubTicketIds": [],
"TicketElementIds": [],
"EpisodeIds": [],
"PublicActions": ["view"],
"QuickLink": null,
"Id": 3274347006872369,
"CreationTime": "2013-09-16T18:17:21.539Z",
"CreatorId": 5455778074533264,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": null,
"ModificationTime": "2013-09-16T18:17:34.427+00:00",
"Generation": 0,
"VersionNumbers": [1, 2],
"CurrentVersion": 2
}, {
"TicketTo": null,
"TicketIdTo": 2816950169717348,
"TicketIdFrom": 3485453238236343,
"Relationship": "default",
"IAm": "Bind",
"IsInHierarchy": false,
"IsInside": true,
"NonHierarchicalBindIds": [],
"NonHierarchicalBinds": [],
"HierarchicalBinds": [],
"TicketTemplateType": null,
"TicketType": {
"IAm": "TicketType",
"TypeName": "T_BIND",
"DefaultTemplateName": "T_BIND_DEFAULT",
"Id": 1013,
"CreationTime": null,
"CreatorId": 0,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": null,
"ModificationTime": null,
"Generation": 0,
"VersionNumbers": [],
"CurrentVersion": 0
},
"TicketElements": [],
"Name": null,
"TypeName": null,
"TemplateName": null,
"IsRoot": false,
"UniqueConstraint": null,
"BindIds": [],
"BindIdsPointingToThisTicket": [],
"SubTicketIds": [],
"TicketElementIds": [],
"EpisodeIds": [],
"PublicActions": ["view"],
"QuickLink": null,
"Id": 3256754820827953,
"CreationTime": "2013-09-16T18:17:21.321Z",
"CreatorId": 5455778074533264,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": null,
"ModificationTime": "2013-09-16T18:17:24.463+00:00",
"Generation": 0,
"VersionNumbers": [1, 2],
"CurrentVersion": 2
}, {
"TicketTo": null,
"TicketIdTo": 4420038123015730,
"TicketIdFrom": 3485453238236343,
"Relationship": "default",
"IAm": "Bind",
"IsInHierarchy": false,
"IsInside": true,
"NonHierarchicalBindIds": [],
"NonHierarchicalBinds": [],
"HierarchicalBinds": [],
"TicketTemplateType": null,
"TicketType": {
"IAm": "TicketType",
"TypeName": "T_BIND",
"DefaultTemplateName": "T_BIND_DEFAULT",
"Id": 1013,
"CreationTime": null,
"CreatorId": 0,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": null,
"ModificationTime": null,
"Generation": 0,
"VersionNumbers": [],
"CurrentVersion": 0
},
"TicketElements": [],
"Name": null,
"TypeName": null,
"TemplateName": null,
"IsRoot": false,
"UniqueConstraint": null,
"BindIds": [],
"BindIdsPointingToThisTicket": [],
"SubTicketIds": [],
"TicketElementIds": [],
"EpisodeIds": [],
"PublicActions": ["view"],
"QuickLink": null,
"Id": 5288652308959280,
"CreationTime": "2013-09-16T18:38:40.527Z",
"CreatorId": 5455778074533264,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": null,
"ModificationTime": "2013-09-16T18:38:42.525+00:00",
"Generation": 0,
"VersionNumbers": [1, 2],
"CurrentVersion": 2
}, {
"TicketTo": null,
"TicketIdTo": 2451912309295594,
"TicketIdFrom": 3485453238236343,
"Relationship": "default",
"IAm": "Bind",
"IsInHierarchy": false,
"IsInside": true,
"NonHierarchicalBindIds": [],
"NonHierarchicalBinds": [],
"HierarchicalBinds": [],
"TicketTemplateType": null,
"TicketType": {
"IAm": "TicketType",
"TypeName": "T_BIND",
"DefaultTemplateName": "T_BIND_DEFAULT",
"Id": 1013,
"CreationTime": null,
"CreatorId": 0,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": null,
"ModificationTime": null,
"Generation": 0,
"VersionNumbers": [],
"CurrentVersion": 0
},
"TicketElements": [],
"Name": null,
"TypeName": null,
"TemplateName": null,
"IsRoot": false,
"UniqueConstraint": null,
"BindIds": [],
"BindIdsPointingToThisTicket": [],
"SubTicketIds": [],
"TicketElementIds": [],
"EpisodeIds": [],
"PublicActions": ["view"],
"QuickLink": null,
"Id": 3254555797572401,
"CreationTime": "2013-09-16T18:17:21.321Z",
"CreatorId": 5455778074533264,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": null,
"ModificationTime": "2013-09-16T18:17:24.215+00:00",
"Generation": 0,
"VersionNumbers": [1, 2],
"CurrentVersion": 2
}, {
"TicketTo": null,
"TicketIdTo": 1910952588429604,
"TicketIdFrom": 3485453238236343,
"Relationship": "default",
"IAm": "Bind",
"IsInHierarchy": false,
"IsInside": true,
"NonHierarchicalBindIds": [],
"NonHierarchicalBinds": [],
"HierarchicalBinds": [],
"TicketTemplateType": null,
"TicketType": {
"IAm": "TicketType",
"TypeName": "T_BIND",
"DefaultTemplateName": "T_BIND_DEFAULT",
"Id": 1013,
"CreationTime": null,
"CreatorId": 0,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": null,
"ModificationTime": null,
"Generation": 0,
"VersionNumbers": [],
"CurrentVersion": 0
},
"TicketElements": [],
"Name": null,
"TypeName": null,
"TemplateName": null,
"IsRoot": false,
"UniqueConstraint": null,
"BindIds": [],
"BindIdsPointingToThisTicket": [],
"SubTicketIds": [],
"TicketElementIds": [],
"EpisodeIds": [],
"PublicActions": ["view"],
"QuickLink": null,
"Id": 3272147983616817,
"CreationTime": "2013-09-16T18:17:21.508Z",
"CreatorId": 5455778074533264,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": null,
"ModificationTime": "2013-09-16T18:17:42.159+00:00",
"Generation": 0,
"VersionNumbers": [1, 2],
"CurrentVersion": 2
}, {
"TicketTo": null,
"TicketIdTo": 7993450913259782,
"TicketIdFrom": 3485453238236343,
"Relationship": "default",
"IAm": "Bind",
"IsInHierarchy": false,
"IsInside": true,
"NonHierarchicalBindIds": [],
"NonHierarchicalBinds": [],
"HierarchicalBinds": [],
"TicketTemplateType": null,
"TicketType": {
"IAm": "TicketType",
"TypeName": "T_BIND",
"DefaultTemplateName": "T_BIND_DEFAULT",
"Id": 1013,
"CreationTime": null,
"CreatorId": 0,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": null,
"ModificationTime": null,
"Generation": 0,
"VersionNumbers": [],
"CurrentVersion": 0
},
"TicketElements": [],
"Name": null,
"TypeName": null,
"TemplateName": null,
"IsRoot": false,
"UniqueConstraint": null,
"BindIds": [],
"BindIdsPointingToThisTicket": [],
"SubTicketIds": [],
"TicketElementIds": [],
"EpisodeIds": [],
"PublicActions": ["view"],
"QuickLink": null,
"Id": 8237542494626169,
"CreationTime": "2013-09-16T10:46:17.955Z",
"CreatorId": 5455778074533264,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": null,
"ModificationTime": "2013-09-16T10:46:19.64+00:00",
"Generation": 0,
"VersionNumbers": [1, 2],
"CurrentVersion": 2
}, {
"TicketTo": null,
"TicketIdTo": 4057199285849476,
"TicketIdFrom": 3485453238236343,
"Relationship": "default",
"IAm": "Bind",
"IsInHierarchy": false,
"IsInside": true,
"NonHierarchicalBindIds": [],
"NonHierarchicalBinds": [],
"HierarchicalBinds": [],
"TicketTemplateType": null,
"TicketType": {
"IAm": "TicketType",
"TypeName": "T_BIND",
"DefaultTemplateName": "T_BIND_DEFAULT",
"Id": 1013,
"CreationTime": null,
"CreatorId": 0,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": null,
"ModificationTime": null,
"Generation": 0,
"VersionNumbers": [],
"CurrentVersion": 0
},
"TicketElements": [],
"Name": null,
"TypeName": null,
"TemplateName": null,
"IsRoot": false,
"UniqueConstraint": null,
"BindIds": [],
"BindIdsPointingToThisTicket": [],
"SubTicketIds": [],
"TicketElementIds": [],
"EpisodeIds": [],
"PublicActions": ["view"],
"QuickLink": null,
"Id": 5275458169425968,
"CreationTime": "2013-09-16T18:38:40.496Z",
"CreatorId": 5455778074533264,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": null,
"ModificationTime": "2013-09-16T18:38:42.524+00:00",
"Generation": 0,
"VersionNumbers": [1, 2],
"CurrentVersion": 2
}, {
"TicketTo": null,
"TicketIdTo": 556354262983587,
"TicketIdFrom": 3485453238236343,
"Relationship": "default",
"IAm": "Bind",
"IsInHierarchy": false,
"IsInside": true,
"NonHierarchicalBindIds": [],
"NonHierarchicalBinds": [],
"HierarchicalBinds": [],
"TicketTemplateType": null,
"TicketType": {
"IAm": "TicketType",
"TypeName": "T_BIND",
"DefaultTemplateName": "T_BIND_DEFAULT",
"Id": 1013,
"CreationTime": null,
"CreatorId": 0,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": null,
"ModificationTime": null,
"Generation": 0,
"VersionNumbers": [],
"CurrentVersion": 0
},
"TicketElements": [],
"Name": null,
"TypeName": null,
"TemplateName": null,
"IsRoot": false,
"UniqueConstraint": null,
"BindIds": [],
"BindIdsPointingToThisTicket": [],
"SubTicketIds": [],
"TicketElementIds": [],
"EpisodeIds": [],
"PublicActions": ["view"],
"QuickLink": null,
"Id": 1176478821049531,
"CreationTime": "2013-09-16T11:00:11.559Z",
"CreatorId": 5455778074533264,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": null,
"ModificationTime": "2013-09-16T11:00:13.066+00:00",
"Generation": 0,
"VersionNumbers": [1, 2],
"CurrentVersion": 2
}, {
"TicketTo": null,
"TicketIdTo": 7573437471449074,
"TicketIdFrom": 3485453238236343,
"Relationship": "default",
"IAm": "Bind",
"IsInHierarchy": false,
"IsInside": true,
"NonHierarchicalBindIds": [],
"NonHierarchicalBinds": [],
"HierarchicalBinds": [],
"TicketTemplateType": null,
"TicketType": {
"IAm": "TicketType",
"TypeName": "T_BIND",
"DefaultTemplateName": "T_BIND_DEFAULT",
"Id": 1013,
"CreationTime": null,
"CreatorId": 0,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": null,
"ModificationTime": null,
"Generation": 0,
"VersionNumbers": [],
"CurrentVersion": 0
},
"TicketElements": [],
"Name": null,
"TypeName": null,
"TemplateName": null,
"IsRoot": false,
"UniqueConstraint": null,
"BindIds": [],
"BindIdsPointingToThisTicket": [],
"SubTicketIds": [],
"TicketElementIds": [],
"EpisodeIds": [],
"PublicActions": ["view"],
"QuickLink": null,
"Id": 7698781797015585,
"CreationTime": "2013-09-16T10:40:33.244Z",
"CreatorId": 5455778074533264,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": null,
"ModificationTime": "2013-09-16T10:40:34.693+00:00",
"Generation": 0,
"VersionNumbers": [1, 2],
"CurrentVersion": 2
}, {
"TicketTo": null,
"TicketIdTo": 925790169916451,
"TicketIdFrom": 3485453238236343,
"Relationship": "default",
"IAm": "Bind",
"IsInHierarchy": false,
"IsInside": true,
"NonHierarchicalBindIds": [],
"NonHierarchicalBinds": [],
"HierarchicalBinds": [],
"TicketTemplateType": null,
"TicketType": {
"IAm": "TicketType",
"TypeName": "T_BIND",
"DefaultTemplateName": "T_BIND_DEFAULT",
"Id": 1013,
"CreationTime": null,
"CreatorId": 0,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": null,
"ModificationTime": null,
"Generation": 0,
"VersionNumbers": [],
"CurrentVersion": 0
},
"TicketElements": [],
"Name": null,
"TypeName": null,
"TemplateName": null,
"IsRoot": false,
"UniqueConstraint": null,
"BindIds": [],
"BindIdsPointingToThisTicket": [],
"SubTicketIds": [],
"TicketElementIds": [],
"EpisodeIds": [],
"PublicActions": ["view"],
"QuickLink": null,
"Id": 1174279797793979,
"CreationTime": "2013-09-16T11:00:11.559Z",
"CreatorId": 5455778074533264,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": null,
"ModificationTime": "2013-09-16T11:00:12.937+00:00",
"Generation": 0,
"VersionNumbers": [1, 2],
"CurrentVersion": 2
}, {
"TicketTo": null,
"TicketIdTo": 7872504634204359,
"TicketIdFrom": 3485453238236343,
"Relationship": "default",
"IAm": "Bind",
"IsInHierarchy": false,
"IsInside": true,
"NonHierarchicalBindIds": [],
"NonHierarchicalBinds": [],
"HierarchicalBinds": [],
"TicketTemplateType": null,
"TicketType": {
"IAm": "TicketType",
"TypeName": "T_BIND",
"DefaultTemplateName": "T_BIND_DEFAULT",
"Id": 1013,
"CreationTime": null,
"CreatorId": 0,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": null,
"ModificationTime": null,
"Generation": 0,
"VersionNumbers": [],
"CurrentVersion": 0
},
"TicketElements": [],
"Name": null,
"TypeName": null,
"TemplateName": null,
"IsRoot": false,
"UniqueConstraint": null,
"BindIds": [],
"BindIdsPointingToThisTicket": [],
"SubTicketIds": [],
"TicketElementIds": [],
"EpisodeIds": [],
"PublicActions": ["view"],
"QuickLink": null,
"Id": 8241940541137273,
"CreationTime": "2013-09-16T10:46:17.955Z",
"CreatorId": 5455778074533264,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": null,
"ModificationTime": "2013-09-16T10:46:19.715+00:00",
"Generation": 0,
"VersionNumbers": [1, 2],
"CurrentVersion": 2
}, {
"TicketTo": null,
"TicketIdTo": 2210019751184776,
"TicketIdFrom": 3485453238236343,
"Relationship": "default",
"IAm": "Bind",
"IsInHierarchy": false,
"IsInside": true,
"NonHierarchicalBindIds": [],
"NonHierarchicalBinds": [],
"HierarchicalBinds": [],
"TicketTemplateType": null,
"TicketType": {
"IAm": "TicketType",
"TypeName": "T_BIND",
"DefaultTemplateName": "T_BIND_DEFAULT",
"Id": 1013,
"CreationTime": null,
"CreatorId": 0,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": null,
"ModificationTime": null,
"Generation": 0,
"VersionNumbers": [],
"CurrentVersion": 0
},
"TicketElements": [],
"Name": null,
"TypeName": null,
"TemplateName": null,
"IsRoot": false,
"UniqueConstraint": null,
"BindIds": [],
"BindIdsPointingToThisTicket": [],
"SubTicketIds": [],
"TicketElementIds": [],
"EpisodeIds": [],
"PublicActions": ["view"],
"QuickLink": null,
"Id": 3236963611527985,
"CreationTime": "2013-09-16T18:17:21.18Z",
"CreatorId": 5455778074533264,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": null,
"ModificationTime": "2013-09-16T18:17:28.554+00:00",
"Generation": 0,
"VersionNumbers": [1, 2],
"CurrentVersion": 2
}, {
"TicketTo": null,
"TicketIdTo": 3116017332472511,
"TicketIdFrom": 3485453238236343,
"Relationship": "default",
"IAm": "Bind",
"IsInHierarchy": false,
"IsInside": true,
"NonHierarchicalBindIds": [],
"NonHierarchicalBinds": [],
"HierarchicalBinds": [],
"TicketTemplateType": null,
"TicketType": {
"IAm": "TicketType",
"TypeName": "T_BIND",
"DefaultTemplateName": "T_BIND_DEFAULT",
"Id": 1013,
"CreationTime": null,
"CreatorId": 0,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": null,
"ModificationTime": null,
"Generation": 0,
"VersionNumbers": [],
"CurrentVersion": 0
},
"TicketElements": [],
"Name": null,
"TypeName": null,
"TemplateName": null,
"IsRoot": false,
"UniqueConstraint": null,
"BindIds": [],
"BindIdsPointingToThisTicket": [],
"SubTicketIds": [],
"TicketElementIds": [],
"EpisodeIds": [],
"PublicActions": ["view"],
"QuickLink": null,
"Id": 3269948960361265,
"CreationTime": "2013-09-16T18:17:21.461Z",
"CreatorId": 5455778074533264,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": null,
"ModificationTime": "2013-09-16T18:17:27.632+00:00",
"Generation": 0,
"VersionNumbers": [1, 2],
"CurrentVersion": 2
}, {
"TicketTo": null,
"TicketIdTo": 4826857424197204,
"TicketIdFrom": 3485453238236343,
"Relationship": "default",
"IAm": "Bind",
"IsInHierarchy": false,
"IsInside": true,
"NonHierarchicalBindIds": [],
"NonHierarchicalBinds": [],
"HierarchicalBinds": [],
"TicketTemplateType": null,
"TicketType": {
"IAm": "TicketType",
"TypeName": "T_BIND",
"DefaultTemplateName": "T_BIND_DEFAULT",
"Id": 1013,
"CreationTime": null,
"CreatorId": 0,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": null,
"ModificationTime": null,
"Generation": 0,
"VersionNumbers": [],
"CurrentVersion": 0
},
"TicketElements": [],
"Name": null,
"TypeName": null,
"TemplateName": null,
"IsRoot": false,
"UniqueConstraint": null,
"BindIds": [],
"BindIdsPointingToThisTicket": [],
"SubTicketIds": [],
"TicketElementIds": [],
"EpisodeIds": [],
"PublicActions": ["view"],
"QuickLink": null,
"Id": 4952201749763796,
"CreationTime": "2013-09-04T02:11:32.287Z",
"CreatorId": 5455778074533264,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": null,
"ModificationTime": "2013-09-04T02:11:27.048+00:00",
"Generation": 0,
"VersionNumbers": [1, 2],
"CurrentVersion": 2
}, {
"TicketTo": null,
"TicketIdTo": 4782876960181975,
"TicketIdFrom": 3485453238236343,
"Relationship": "default",
"IAm": "Bind",
"IsInHierarchy": false,
"IsInside": true,
"NonHierarchicalBindIds": [],
"NonHierarchicalBinds": [],
"HierarchicalBinds": [],
"TicketTemplateType": null,
"TicketType": {
"IAm": "TicketType",
"TypeName": "T_BIND",
"DefaultTemplateName": "T_BIND_DEFAULT",
"Id": 1013,
"CreationTime": null,
"CreatorId": 0,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": null,
"ModificationTime": null,
"Generation": 0,
"VersionNumbers": [],
"CurrentVersion": 0
},
"TicketElements": [],
"Name": null,
"TypeName": null,
"TemplateName": null,
"IsRoot": false,
"UniqueConstraint": null,
"BindIds": [],
"BindIdsPointingToThisTicket": [],
"SubTicketIds": [],
"TicketElementIds": [],
"EpisodeIds": [],
"PublicActions": ["view"],
"QuickLink": null,
"Id": 5279856215937072,
"CreationTime": "2013-09-16T18:38:40.496Z",
"CreatorId": 5455778074533264,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": null,
"ModificationTime": "2013-09-16T18:38:45.217+00:00",
"Generation": 0,
"VersionNumbers": [1, 2],
"CurrentVersion": 2
}, {
"TicketTo": null,
"TicketIdTo": 7395316586684282,
"TicketIdFrom": 3485453238236343,
"Relationship": "default",
"IAm": "Bind",
"IsInHierarchy": false,
"IsInside": true,
"NonHierarchicalBindIds": [],
"NonHierarchicalBinds": [],
"HierarchicalBinds": [],
"TicketTemplateType": null,
"TicketType": {
"IAm": "TicketType",
"TypeName": "T_BIND",
"DefaultTemplateName": "T_BIND_DEFAULT",
"Id": 1013,
"CreationTime": null,
"CreatorId": 0,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": null,
"ModificationTime": null,
"Generation": 0,
"VersionNumbers": [],
"CurrentVersion": 0
},
"TicketElements": [],
"Name": null,
"TypeName": null,
"TemplateName": null,
"IsRoot": false,
"UniqueConstraint": null,
"BindIds": [],
"BindIdsPointingToThisTicket": [],
"SubTicketIds": [],
"TicketElementIds": [],
"EpisodeIds": [],
"PublicActions": ["view"],
"QuickLink": null,
"Id": 7520660912250839,
"CreationTime": "2013-09-04T02:49:59.033Z",
"CreatorId": 5455778074533264,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": null,
"ModificationTime": "2013-09-04T02:49:53.687+00:00",
"Generation": 0,
"VersionNumbers": [1, 2],
"CurrentVersion": 2
}, {
"TicketTo": null,
"TicketIdTo": 6067106540269895,
"TicketIdFrom": 3485453238236343,
"Relationship": "default",
"IAm": "Bind",
"IsInHierarchy": false,
"IsInside": true,
"NonHierarchicalBindIds": [],
"NonHierarchicalBinds": [],
"HierarchicalBinds": [],
"TicketTemplateType": null,
"TicketType": {
"IAm": "TicketType",
"TypeName": "T_BIND",
"DefaultTemplateName": "T_BIND_DEFAULT",
"Id": 1013,
"CreationTime": null,
"CreatorId": 0,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": null,
"ModificationTime": null,
"Generation": 0,
"VersionNumbers": [],
"CurrentVersion": 0
},
"TicketElements": [],
"Name": null,
"TypeName": null,
"TemplateName": null,
"IsRoot": false,
"UniqueConstraint": null,
"BindIds": [],
"BindIdsPointingToThisTicket": [],
"SubTicketIds": [],
"TicketElementIds": [],
"EpisodeIds": [],
"PublicActions": ["view"],
"QuickLink": null,
"Id": 3760331146340317,
"CreationTime": "2013-09-16T15:46:37.905Z",
"CreatorId": 5455778074533264,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": null,
"ModificationTime": "2013-09-16T15:46:38.685+00:00",
"Generation": 0,
"VersionNumbers": [1, 2],
"CurrentVersion": 2
}, {
"TicketTo": null,
"TicketIdTo": 8248537610279263,
"TicketIdFrom": 3485453238236343,
"Relationship": "default",
"IAm": "Bind",
"IsInHierarchy": false,
"IsInside": true,
"NonHierarchicalBindIds": [],
"NonHierarchicalBinds": [],
"HierarchicalBinds": [],
"TicketTemplateType": null,
"TicketType": {
"IAm": "TicketType",
"TypeName": "T_BIND",
"DefaultTemplateName": "T_BIND_DEFAULT",
"Id": 1013,
"CreationTime": null,
"CreatorId": 0,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": null,
"ModificationTime": null,
"Generation": 0,
"VersionNumbers": [],
"CurrentVersion": 0
},
"TicketElements": [],
"Name": null,
"TypeName": null,
"TemplateName": null,
"IsRoot": false,
"UniqueConstraint": null,
"BindIds": [],
"BindIdsPointingToThisTicket": [],
"SubTicketIds": [],
"TicketElementIds": [],
"EpisodeIds": [],
"PublicActions": ["view"],
"QuickLink": null,
"Id": 8404668261423559,
"CreationTime": "2013-09-09T05:16:55.892Z",
"CreatorId": 5455778074533264,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": null,
"ModificationTime": "2013-09-09T05:16:53.112+00:00",
"Generation": 0,
"VersionNumbers": [1, 2],
"CurrentVersion": 2
}, {
"TicketTo": null,
"TicketIdTo": 1051134495482995,
"TicketIdFrom": 3485453238236343,
"Relationship": "default",
"IAm": "Bind",
"IsInHierarchy": false,
"IsInside": true,
"NonHierarchicalBindIds": [],
"NonHierarchicalBinds": [],
"HierarchicalBinds": [],
"TicketTemplateType": null,
"TicketType": {
"IAm": "TicketType",
"TypeName": "T_BIND",
"DefaultTemplateName": "T_BIND_DEFAULT",
"Id": 1013,
"CreationTime": null,
"CreatorId": 0,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": null,
"ModificationTime": null,
"Generation": 0,
"VersionNumbers": [],
"CurrentVersion": 0
},
"TicketElements": [],
"Name": null,
"TypeName": null,
"TemplateName": null,
"IsRoot": false,
"UniqueConstraint": null,
"BindIds": [],
"BindIdsPointingToThisTicket": [],
"SubTicketIds": [],
"TicketElementIds": [],
"EpisodeIds": [],
"PublicActions": ["view"],
"QuickLink": null,
"Id": 1189672960582845,
"CreationTime": "2013-09-16T11:00:13.2Z",
"CreatorId": 5455778074533264,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": null,
"ModificationTime": "2013-09-16T11:00:15.309+00:00",
"Generation": 0,
"VersionNumbers": [1, 2],
"CurrentVersion": 2
}, {
"TicketTo": null,
"TicketIdTo": 2330966030240178,
"TicketIdFrom": 3485453238236343,
"Relationship": "default",
"IAm": "Bind",
"IsInHierarchy": false,
"IsInside": true,
"NonHierarchicalBindIds": [],
"NonHierarchicalBinds": [],
"HierarchicalBinds": [],
"TicketTemplateType": null,
"TicketType": {
"IAm": "TicketType",
"TypeName": "T_BIND",
"DefaultTemplateName": "T_BIND_DEFAULT",
"Id": 1013,
"CreationTime": null,
"CreatorId": 0,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": null,
"ModificationTime": null,
"Generation": 0,
"VersionNumbers": [],
"CurrentVersion": 0
},
"TicketElements": [],
"Name": null,
"TypeName": null,
"TemplateName": null,
"IsRoot": false,
"UniqueConstraint": null,
"BindIds": [],
"BindIdsPointingToThisTicket": [],
"SubTicketIds": [],
"TicketElementIds": [],
"EpisodeIds": [],
"PublicActions": ["view"],
"QuickLink": null,
"Id": 3258953844083505,
"CreationTime": "2013-09-16T18:17:21.383Z",
"CreatorId": 5455778074533264,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": null,
"ModificationTime": "2013-09-16T18:17:24.984+00:00",
"Generation": 0,
"VersionNumbers": [1, 2],
"CurrentVersion": 2
}, {
"TicketTo": null,
"TicketIdTo": 804843890861055,
"TicketIdFrom": 3485453238236343,
"Relationship": "default",
"IAm": "Bind",
"IsInHierarchy": false,
"IsInside": true,
"NonHierarchicalBindIds": [],
"NonHierarchicalBinds": [],
"HierarchicalBinds": [],
"TicketTemplateType": null,
"TicketType": {
"IAm": "TicketType",
"TypeName": "T_BIND",
"DefaultTemplateName": "T_BIND_DEFAULT",
"Id": 1013,
"CreationTime": null,
"CreatorId": 0,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": null,
"ModificationTime": null,
"Generation": 0,
"VersionNumbers": [],
"CurrentVersion": 0
},
"TicketElements": [],
"Name": null,
"TypeName": null,
"TemplateName": null,
"IsRoot": false,
"UniqueConstraint": null,
"BindIds": [],
"BindIdsPointingToThisTicket": [],
"SubTicketIds": [],
"TicketElementIds": [],
"EpisodeIds": [],
"PublicActions": ["view"],
"QuickLink": null,
"Id": 1185274914071741,
"CreationTime": "2013-09-16T11:00:13.138Z",
"CreatorId": 5455778074533264,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": null,
"ModificationTime": "2013-09-16T11:00:15.337+00:00",
"Generation": 0,
"VersionNumbers": [1, 2],
"CurrentVersion": 2
}, {
"TicketTo": null,
"TicketIdTo": 5552535099596337,
"TicketIdFrom": 3485453238236343,
"Relationship": "default",
"IAm": "Bind",
"IsInHierarchy": false,
"IsInside": true,
"NonHierarchicalBindIds": [],
"NonHierarchicalBinds": [],
"HierarchicalBinds": [],
"TicketTemplateType": null,
"TicketType": {
"IAm": "TicketType",
"TypeName": "T_BIND",
"DefaultTemplateName": "T_BIND_DEFAULT",
"Id": 1013,
"CreationTime": null,
"CreatorId": 0,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": null,
"ModificationTime": null,
"Generation": 0,
"VersionNumbers": [],
"CurrentVersion": 0
},
"TicketElements": [],
"Name": null,
"TypeName": null,
"TemplateName": null,
"IsRoot": false,
"UniqueConstraint": null,
"BindIds": [],
"BindIdsPointingToThisTicket": [],
"SubTicketIds": [],
"TicketElementIds": [],
"EpisodeIds": [],
"PublicActions": ["view"],
"QuickLink": null,
"Id": 5796626680962709,
"CreationTime": "2013-09-16T10:33:57.719Z",
"CreatorId": 5455778074533264,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": null,
"ModificationTime": "2013-09-16T10:33:59.21+00:00",
"Generation": 0,
"VersionNumbers": [1, 2],
"CurrentVersion": 2
}, {
"TicketTo": null,
"TicketIdTo": 4178145564904886,
"TicketIdFrom": 3485453238236343,
"Relationship": "default",
"IAm": "Bind",
"IsInHierarchy": false,
"IsInside": true,
"NonHierarchicalBindIds": [],
"NonHierarchicalBinds": [],
"HierarchicalBinds": [],
"TicketTemplateType": null,
"TicketType": {
"IAm": "TicketType",
"TypeName": "T_BIND",
"DefaultTemplateName": "T_BIND_DEFAULT",
"Id": 1013,
"CreationTime": null,
"CreatorId": 0,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": null,
"ModificationTime": null,
"Generation": 0,
"VersionNumbers": [],
"CurrentVersion": 0
},
"TicketElements": [],
"Name": null,
"TypeName": null,
"TemplateName": null,
"IsRoot": false,
"UniqueConstraint": null,
"BindIds": [],
"BindIdsPointingToThisTicket": [],
"SubTicketIds": [],
"TicketElementIds": [],
"EpisodeIds": [],
"PublicActions": ["view"],
"QuickLink": null,
"Id": 5282055239192624,
"CreationTime": "2013-09-16T18:38:40.511Z",
"CreatorId": 5455778074533264,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": null,
"ModificationTime": "2013-09-16T18:38:42.314+00:00",
"Generation": 0,
"VersionNumbers": [1, 2],
"CurrentVersion": 2
}, {
"TicketTo": null,
"TicketIdTo": 2572858588350995,
"TicketIdFrom": 3485453238236343,
"Relationship": "default",
"IAm": "Bind",
"IsInHierarchy": false,
"IsInside": true,
"NonHierarchicalBindIds": [],
"NonHierarchicalBinds": [],
"HierarchicalBinds": [],
"TicketTemplateType": null,
"TicketType": {
"IAm": "TicketType",
"TypeName": "T_BIND",
"DefaultTemplateName": "T_BIND_DEFAULT",
"Id": 1013,
"CreationTime": null,
"CreatorId": 0,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": null,
"ModificationTime": null,
"Generation": 0,
"VersionNumbers": [],
"CurrentVersion": 0
},
"TicketElements": [],
"Name": null,
"TypeName": null,
"TemplateName": null,
"IsRoot": false,
"UniqueConstraint": null,
"BindIds": [],
"BindIdsPointingToThisTicket": [],
"SubTicketIds": [],
"TicketElementIds": [],
"EpisodeIds": [],
"PublicActions": ["view"],
"QuickLink": null,
"Id": 3252356774316849,
"CreationTime": "2013-09-16T18:17:21.258Z",
"CreatorId": 5455778074533264,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": null,
"ModificationTime": "2013-09-16T18:17:42.189+00:00",
"Generation": 0,
"VersionNumbers": [1, 2],
"CurrentVersion": 2
}, {
"TicketTo": null,
"TicketIdTo": 2937896448772755,
"TicketIdFrom": 3485453238236343,
"Relationship": "default",
"IAm": "Bind",
"IsInHierarchy": false,
"IsInside": true,
"NonHierarchicalBindIds": [],
"NonHierarchicalBinds": [],
"HierarchicalBinds": [],
"TicketTemplateType": null,
"TicketType": {
"IAm": "TicketType",
"TypeName": "T_BIND",
"DefaultTemplateName": "T_BIND_DEFAULT",
"Id": 1013,
"CreationTime": null,
"CreatorId": 0,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": null,
"ModificationTime": null,
"Generation": 0,
"VersionNumbers": [],
"CurrentVersion": 0
},
"TicketElements": [],
"Name": null,
"TypeName": null,
"TemplateName": null,
"IsRoot": false,
"UniqueConstraint": null,
"BindIds": [],
"BindIdsPointingToThisTicket": [],
"SubTicketIds": [],
"TicketElementIds": [],
"EpisodeIds": [],
"PublicActions": ["view"],
"QuickLink": null,
"Id": 3247958727805745,
"CreationTime": "2013-09-16T18:17:21.227Z",
"CreatorId": 5455778074533264,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": null,
"ModificationTime": "2013-09-16T18:17:24.213+00:00",
"Generation": 0,
"VersionNumbers": [1, 2],
"CurrentVersion": 2
}, {
"TicketTo": null,
"TicketIdTo": 4299091843960305,
"TicketIdFrom": 3485453238236343,
"Relationship": "default",
"IAm": "Bind",
"IsInHierarchy": false,
"IsInside": true,
"NonHierarchicalBindIds": [],
"NonHierarchicalBinds": [],
"HierarchicalBinds": [],
"TicketTemplateType": null,
"TicketType": {
"IAm": "TicketType",
"TypeName": "T_BIND",
"DefaultTemplateName": "T_BIND_DEFAULT",
"Id": 1013,
"CreationTime": null,
"CreatorId": 0,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": null,
"ModificationTime": null,
"Generation": 0,
"VersionNumbers": [],
"CurrentVersion": 0
},
"TicketElements": [],
"Name": null,
"TypeName": null,
"TemplateName": null,
"IsRoot": false,
"UniqueConstraint": null,
"BindIds": [],
"BindIdsPointingToThisTicket": [],
"SubTicketIds": [],
"TicketElementIds": [],
"EpisodeIds": [],
"PublicActions": ["view"],
"QuickLink": null,
"Id": 5268861099659312,
"CreationTime": "2013-09-16T18:38:40.48Z",
"CreatorId": 5455778074533264,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": null,
"ModificationTime": "2013-09-16T18:38:42.797+00:00",
"Generation": 0,
"VersionNumbers": [1, 2],
"CurrentVersion": 2
}, {
"TicketTo": null,
"TicketIdTo": 8114397192315197,
"TicketIdFrom": 3485453238236343,
"Relationship": "default",
"IAm": "Bind",
"IsInHierarchy": false,
"IsInside": true,
"NonHierarchicalBindIds": [],
"NonHierarchicalBinds": [],
"HierarchicalBinds": [],
"TicketTemplateType": null,
"TicketType": {
"IAm": "TicketType",
"TypeName": "T_BIND",
"DefaultTemplateName": "T_BIND_DEFAULT",
"Id": 1013,
"CreationTime": null,
"CreatorId": 0,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": null,
"ModificationTime": null,
"Generation": 0,
"VersionNumbers": [],
"CurrentVersion": 0
},
"TicketElements": [],
"Name": null,
"TypeName": null,
"TemplateName": null,
"IsRoot": false,
"UniqueConstraint": null,
"BindIds": [],
"BindIdsPointingToThisTicket": [],
"SubTicketIds": [],
"TicketElementIds": [],
"EpisodeIds": [],
"PublicActions": ["view"],
"QuickLink": null,
"Id": 8239741517881721,
"CreationTime": "2013-09-16T10:46:17.955Z",
"CreatorId": 5455778074533264,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": null,
"ModificationTime": "2013-09-16T10:46:19.844+00:00",
"Generation": 0,
"VersionNumbers": [1, 2],
"CurrentVersion": 2
}, {
"TicketTo": null,
"TicketIdTo": 3448069844061204,
"TicketIdFrom": 3485453238236343,
"Relationship": "default",
"IAm": "Bind",
"IsInHierarchy": false,
"IsInside": true,
"NonHierarchicalBindIds": [],
"NonHierarchicalBinds": [],
"HierarchicalBinds": [],
"TicketTemplateType": null,
"TicketType": {
"IAm": "TicketType",
"TypeName": "T_BIND",
"DefaultTemplateName": "T_BIND_DEFAULT",
"Id": 1013,
"CreationTime": null,
"CreatorId": 0,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": null,
"ModificationTime": null,
"Generation": 0,
"VersionNumbers": [],
"CurrentVersion": 0
},
"TicketElements": [],
"Name": null,
"TypeName": null,
"TemplateName": null,
"IsRoot": false,
"UniqueConstraint": null,
"BindIds": [],
"BindIdsPointingToThisTicket": [],
"SubTicketIds": [],
"TicketElementIds": [],
"EpisodeIds": [],
"PublicActions": ["view"],
"QuickLink": null,
"Id": 5286453285703728,
"CreationTime": "2013-09-16T18:38:40.527Z",
"CreatorId": 5455778074533264,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": null,
"ModificationTime": "2013-09-16T18:38:44.73+00:00",
"Generation": 0,
"VersionNumbers": [1, 2],
"CurrentVersion": 2
}],
"HierarchicalBinds": [],
"TicketTemplateType": null,
"TicketType": null,
"TicketElements": [{
"TicketElementType": null,
"TicketElementTemplateType": null,
"IsFinalized": false,
"Name": "Description",
"Version": null,
"Latest": false,
"TicketId": 3485453238236343,
"TypeName": "E_TEXT",
"TemplateName": "E_TEXT_MULTILINE",
"IAm": "TicketElement",
"QuickLink": null,
"Id": 3489851284747447,
"CreationTime": "2013-09-03T05:33:43.437Z",
"CreatorId": 5455778074533264,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": "{\"Value\":null,\"DisplayName\":\"Description\"}",
"ModificationTime": "2013-09-03T05:33:38.097+00:00",
"Generation": 0,
"VersionNumbers": [1],
"CurrentVersion": 1
}, {
"TicketElementType": null,
"TicketElementTemplateType": null,
"IsFinalized": false,
"Name": "CollectionName",
"Version": null,
"Latest": false,
"TicketId": 3485453238236343,
"TypeName": "E_TEXT",
"TemplateName": "E_TEXT_DEFAULT",
"IAm": "TicketElement",
"QuickLink": null,
"Id": 3487652261491895,
"CreationTime": "2013-09-03T05:33:43.437Z",
"CreatorId": 5455778074533264,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": "{\"Value\":\"New Promotions\",\"Value-Placeholder\":\"Untitled Product Collection\"}",
"ModificationTime": "2013-09-09T05:05:12.947+00:00",
"Generation": 0,
"VersionNumbers": [1, 2],
"CurrentVersion": 2
}],
"Name": "Item",
"TypeName": "T_COLLECTION",
"TemplateName": "T_COLLECTION_PRODUCT",
"IsRoot": true,
"UniqueConstraint": null,
"BindIds": [4952201749763796, 7520660912250839, 8094605981950677, 8404668261423559, 5794427657707157, 5796626680962709, 7694383750504481, 7698781797015585, 7696582773760033, 8235343471370617, 8241940541137273, 8237542494626169, 8239741517881721, 9002802587558594, 1174279797793979, 1176478821049531, 1172080774538427, 1189672960582845, 1185274914071741, 1187473937327293, 3760331146340317, 3241361658039089, 3250157751061297, 3256754820827953, 3254555797572401, 3247958727805745, 3236963611527985, 3258953844083505, 3269948960361265, 3274347006872369, 3267749937105713, 3252356774316849, 3272147983616817, 5282055239192624, 5288652308959280, 5268861099659312, 5275458169425968, 5266662076403760, 5284254262448176, 5273259146170416, 5271060122914864, 5279856215937072, 5286453285703728, 5277657192681520, 6049514355522655],
"BindIdsPointingToThisTicket": [3500846401025210, 3505244447536320, 6845560772735415, 8050625516778168, 963173564134614, 1647069796611322, 5818616912452774, 6506911191440704, 7239185935539860, 6953312912524282, 7597626726401134, 8250736633300215, 1273235843434776, 1647069796878669, 7423903889446353, 8081411842856494, 534364029963601, 1238051471740349, 1007154029996609, 1506332309006990, 2150646122883823, 3945049099419584, 4582765843529954, 7032477750233820, 7667995471088435, 1081920820731047, 1721836588096843, 2245204122918912, 2885119890284657, 3643782913485784, 4279300634340551, 6469527796880737, 8417862401301187, 1057731564976437, 1262240727745378, 1899957471855518, 5249069890071343, 5902179796970431, 2788362867336875, 6451935611117276, 1574502030324621, 1486541100853065, 8114397193580304, 43981845704531, 1543715705991448, 855421427016692, 2315572868703889, 3074235891880921, 7861509519278274, 2144049054976947, 4235320171007105, 6414552217259617, 8169372775192016, 6962109011214088, 8428857522668073],
"SubTicketIds": [],
"TicketElementIds": [3489851284747447, 3487652261491895],
"EpisodeIds": [5482166353599889],
"IAm": "Ticket",
"PublicActions": ["view"],
"QuickLink": null,
"Id": 3485453238236343,
"CreationTime": "2013-09-03T05:33:43.406Z",
"CreatorId": 5455778074533264,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": null,
"ModificationTime": "2013-11-11T02:34:17.371+00:00",
"Generation": 0,
"VersionNumbers": [218, 219, 220, 221, 222, 223, 224, 225, 226, 227],
"CurrentVersion": 227
},
"TicketIdTo": 3485453238236343,
"TicketIdFrom": 6003334866984660,
"Relationship": "Item",
"IAm": "Bind",
"IsInHierarchy": true,
"IsInside": false,
"NonHierarchicalBindIds": [],
"NonHierarchicalBinds": [],
"HierarchicalBinds": [],
"TicketTemplateType": null,
"TicketType": {
"IAm": "TicketType",
"TypeName": "T_BIND",
"DefaultTemplateName": "T_BIND_DEFAULT",
"Id": 1013,
"CreationTime": null,
"CreatorId": 0,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": null,
"ModificationTime": null,
"Generation": 0,
"VersionNumbers": [],
"CurrentVersion": 0
},
"TicketElements": [],
"Name": null,
"TypeName": null,
"TemplateName": null,
"IsRoot": false,
"UniqueConstraint": null,
"BindIds": [],
"BindIdsPointingToThisTicket": [],
"SubTicketIds": [],
"TicketElementIds": [],
"EpisodeIds": [],
"PublicActions": ["view"],
"QuickLink": null,
"Id": 6451935611117276,
"CreationTime": "2013-09-16T10:35:08.542Z",
"CreatorId": 5455778074533264,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": null,
"ModificationTime": "2013-09-16T10:35:13.719+00:00",
"Generation": 0,
"VersionNumbers": [1, 2],
"CurrentVersion": 2
}],
"TicketTemplateType": null,
"TicketType": null,
"TicketElements": [],
"Name": "body",
"TypeName": "T_SNAPLETITEMINSTANCE",
"TemplateName": "T_SNAPLETITEMINSTANCE_DEFAULT",
"IsRoot": true,
"UniqueConstraint": null,
"BindIds": [6357377611128533, 6392561983217366, 6451935611117276],
"BindIdsPointingToThisTicket": [6014329983262420],
"SubTicketIds": [],
"TicketElementIds": [],
"EpisodeIds": [],
"IAm": "Ticket",
"PublicActions": ["view"],
"QuickLink": null,
"Id": 6003334866984660,
"CreationTime": "2013-09-16T10:35:00.561Z",
"CreatorId": 5455778074533264,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": null,
"ModificationTime": "2013-09-16T10:35:19.855+00:00",
"Generation": 0,
"VersionNumbers": [5, 6, 7, 8, 9, 10, 11, 12, 13, 14],
"CurrentVersion": 14
},
"TicketIdTo": 6003334866984660,
"TicketIdFrom": 5981344634429139,
"Relationship": "body",
"IAm": "Bind",
"IsInHierarchy": true,
"IsInside": false,
"NonHierarchicalBindIds": [],
"NonHierarchicalBinds": [],
"HierarchicalBinds": [],
"TicketTemplateType": null,
"TicketType": {
"IAm": "TicketType",
"TypeName": "T_BIND",
"DefaultTemplateName": "T_BIND_DEFAULT",
"Id": 1013,
"CreationTime": null,
"CreatorId": 0,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": null,
"ModificationTime": null,
"Generation": 0,
"VersionNumbers": [],
"CurrentVersion": 0
},
"TicketElements": [],
"Name": null,
"TypeName": null,
"TemplateName": null,
"IsRoot": false,
"UniqueConstraint": null,
"BindIds": [],
"BindIdsPointingToThisTicket": [],
"SubTicketIds": [],
"TicketElementIds": [],
"EpisodeIds": [],
"PublicActions": ["view"],
"QuickLink": null,
"Id": 6014329983262420,
"CreationTime": "2013-09-16T10:35:00.911Z",
"CreatorId": 5455778074533264,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": null,
"ModificationTime": "2013-09-16T10:35:02.379+00:00",
"Generation": 0,
"VersionNumbers": [1, 2, 3],
"CurrentVersion": 3
}],
"TicketTemplateType": null,
"TicketType": null,
"TicketElements": [],
"Name": "Layout",
"TypeName": "T_SNAPLETLAYOUTINSTANCE",
"TemplateName": "T_SNAPLETLAYOUTINSTANCE_DEFAULT",
"IsRoot": true,
"UniqueConstraint": null,
"BindIds": [6005533890240212, 6014329983262420, 6016529006517972],
"BindIdsPointingToThisTicket": [5994538773962451],
"SubTicketIds": [],
"TicketElementIds": [],
"EpisodeIds": [],
"IAm": "Ticket",
"PublicActions": ["view"],
"QuickLink": null,
"Id": 5981344634429139,
"CreationTime": "2013-09-16T10:34:59.377Z",
"CreatorId": 5455778074533264,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": null,
"ModificationTime": "2013-09-16T10:35:02.821+00:00",
"Generation": 0,
"VersionNumbers": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11],
"CurrentVersion": 11
},
"TicketIdTo": 5981344634429139,
"TicketIdFrom": 5974747564662483,
"Relationship": "default",
"IAm": "Bind",
"IsInHierarchy": true,
"IsInside": false,
"NonHierarchicalBindIds": [],
"NonHierarchicalBinds": [],
"HierarchicalBinds": [],
"TicketTemplateType": null,
"TicketType": {
"IAm": "TicketType",
"TypeName": "T_BIND",
"DefaultTemplateName": "T_BIND_DEFAULT",
"Id": 1013,
"CreationTime": null,
"CreatorId": 0,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": null,
"ModificationTime": null,
"Generation": 0,
"VersionNumbers": [],
"CurrentVersion": 0
},
"TicketElements": [],
"Name": null,
"TypeName": null,
"TemplateName": null,
"IsRoot": false,
"UniqueConstraint": null,
"BindIds": [],
"BindIdsPointingToThisTicket": [],
"SubTicketIds": [],
"TicketElementIds": [],
"EpisodeIds": [],
"PublicActions": ["view"],
"QuickLink": null,
"Id": 5994538773962451,
"CreationTime": "2013-09-16T10:34:59.885Z",
"CreatorId": 5455778074533264,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": null,
"ModificationTime": "2013-09-16T10:35:01.357+00:00",
"Generation": 0,
"VersionNumbers": [1, 2, 3],
"CurrentVersion": 3
}],
"TicketTemplateType": null,
"TicketType": null,
"TicketElements": [],
"Name": "Canvas",
"TypeName": "T_SNAPLETCANVASINSTANCE",
"TemplateName": "T_SNAPLETCANVASINSTANCE_DEFAULT",
"IsRoot": true,
"UniqueConstraint": null,
"BindIds": [5983543657684691, 5992339750706899, 5994538773962451],
"BindIdsPointingToThisTicket": [6432144401817306],
"SubTicketIds": [],
"TicketElementIds": [],
"EpisodeIds": [],
"IAm": "Ticket",
"PublicActions": ["view"],
"QuickLink": null,
"Id": 5974747564662483,
"CreationTime": "2013-09-16T10:34:59.119Z",
"CreatorId": 5455778074533264,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": null,
"ModificationTime": "2013-09-16T10:35:07.502+00:00",
"Generation": 0,
"VersionNumbers": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11],
"CurrentVersion": 11
},
"TicketIdTo": 5974747564662483,
"TicketIdFrom": 5906577843740358,
"Relationship": "default",
"IAm": "Bind",
"IsInHierarchy": true,
"IsInside": false,
"NonHierarchicalBindIds": [],
"NonHierarchicalBinds": [],
"HierarchicalBinds": [],
"TicketTemplateType": null,
"TicketType": {
"IAm": "TicketType",
"TypeName": "T_BIND",
"DefaultTemplateName": "T_BIND_DEFAULT",
"Id": 1013,
"CreationTime": null,
"CreatorId": 0,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": null,
"ModificationTime": null,
"Generation": 0,
"VersionNumbers": [],
"CurrentVersion": 0
},
"TicketElements": [],
"Name": null,
"TypeName": null,
"TemplateName": null,
"IsRoot": false,
"UniqueConstraint": null,
"BindIds": [],
"BindIdsPointingToThisTicket": [],
"SubTicketIds": [],
"TicketElementIds": [],
"EpisodeIds": [],
"PublicActions": ["view"],
"QuickLink": null,
"Id": 6432144401817306,
"CreationTime": "2013-09-16T10:35:06.463Z",
"CreatorId": 5455778074533264,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": null,
"ModificationTime": "2013-09-16T10:35:20.389+00:00",
"Generation": 0,
"VersionNumbers": [1, 2],
"CurrentVersion": 2
}],
"TicketTemplateType": null,
"TicketType": null,
"TicketElements": [{
"TicketElementType": null,
"TicketElementTemplateType": null,
"IsFinalized": false,
"Name": "CreatedOn",
"Version": null,
"Latest": false,
"TicketId": 5906577843740358,
"TypeName": "E_DATETIME",
"TemplateName": "E_DATETIME_DEFAULT",
"IAm": "TicketElement",
"QuickLink": null,
"Id": 5910975890251462,
"CreationTime": "2013-09-16T10:34:46.578Z",
"CreatorId": 5455778074533264,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": "{\"Value\":\"2013-09-13T01:32:34.305Z\",\"DisplayName\":\"Created On\"}",
"ModificationTime": "2013-09-16T10:34:46.776+00:00",
"Generation": 0,
"VersionNumbers": [1],
"CurrentVersion": 1
}, {
"TicketElementType": null,
"TicketElementTemplateType": null,
"IsFinalized": false,
"Name": "StyleName",
"Version": null,
"Latest": false,
"TicketId": 5906577843740358,
"TypeName": "E_TEXT",
"TemplateName": "E_TEXT_DEFAULT",
"IAm": "TicketElement",
"QuickLink": null,
"Id": 5921971006529222,
"CreationTime": "2013-09-16T10:34:46.578Z",
"CreatorId": 5455778074533264,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": "{\"Value\":null,\"DisplayName\":\"Style Name\"}",
"ModificationTime": "2013-09-16T10:34:46.295+00:00",
"Generation": 0,
"VersionNumbers": [1],
"CurrentVersion": 1
}, {
"TicketElementType": null,
"TicketElementTemplateType": null,
"IsFinalized": false,
"Name": "StyleUrl",
"Version": null,
"Latest": false,
"TicketId": 5906577843740358,
"TypeName": "E_TEXT",
"TemplateName": "E_TEXT_DEFAULT",
"IAm": "TicketElement",
"QuickLink": null,
"Id": 5924170029784774,
"CreationTime": "2013-09-16T10:34:46.578Z",
"CreatorId": 5455778074533264,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": "{\"Value\":null,\"DisplayName\":\"Style URL\"}",
"ModificationTime": "2013-09-16T10:34:46.424+00:00",
"Generation": 0,
"VersionNumbers": [1],
"CurrentVersion": 1
}, {
"TicketElementType": null,
"TicketElementTemplateType": null,
"IsFinalized": false,
"Name": "Sprite",
"Version": null,
"Latest": false,
"TicketId": 5906577843740358,
"TypeName": "E_TEXT",
"TemplateName": "E_TEXT_DEFAULT",
"IAm": "TicketElement",
"QuickLink": null,
"Id": 5919771983273670,
"CreationTime": "2013-09-16T10:34:46.578Z",
"CreatorId": 5455778074533264,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": "{\"Value\":null,\"DisplayName\":\"Sprite\"}",
"ModificationTime": "2013-09-16T10:34:46.454+00:00",
"Generation": 0,
"VersionNumbers": [1],
"CurrentVersion": 1
}, {
"TicketElementType": null,
"TicketElementTemplateType": null,
"IsFinalized": false,
"Name": "CanvasName",
"Version": null,
"Latest": false,
"TicketId": 5906577843740358,
"TypeName": "E_TEXT",
"TemplateName": "E_TEXT_DEFAULT",
"IAm": "TicketElement",
"QuickLink": null,
"Id": 5915373936762566,
"CreationTime": "2013-09-16T10:34:46.578Z",
"CreatorId": 5455778074533264,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": "{\"Value\":\"Subpage\",\"DisplayName\":\"Canvas\"}",
"ModificationTime": "2013-09-16T10:34:47.48+00:00",
"Generation": 0,
"VersionNumbers": [1],
"CurrentVersion": 1
}, {
"TicketElementType": null,
"TicketElementTemplateType": null,
"IsFinalized": false,
"Name": "CreatedBy",
"Version": null,
"Latest": false,
"TicketId": 5906577843740358,
"TypeName": "E_TEXT",
"TemplateName": "E_TEXT_DEFAULT",
"IAm": "TicketElement",
"QuickLink": null,
"Id": 5913174913507014,
"CreationTime": "2013-09-16T10:34:46.578Z",
"CreatorId": 5455778074533264,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": "{\"Value\":\"Henry Test2\",\"DisplayName\":\"Creator By\"}",
"ModificationTime": "2013-09-16T10:34:46.386+00:00",
"Generation": 0,
"VersionNumbers": [1],
"CurrentVersion": 1
}, {
"TicketElementType": null,
"TicketElementTemplateType": null,
"IsFinalized": false,
"Name": "ApprovedOn",
"Version": null,
"Latest": false,
"TicketId": 5906577843740358,
"TypeName": "E_DATETIME",
"TemplateName": "E_DATETIME_DEFAULT",
"IAm": "TicketElement",
"QuickLink": null,
"Id": 5926369053040326,
"CreationTime": "2013-09-16T10:34:46.578Z",
"CreatorId": 5455778074533264,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": "{\"Value\":null,\"DisplayName\":\"Approved On\"}",
"ModificationTime": "2013-09-16T10:34:47.153+00:00",
"Generation": 0,
"VersionNumbers": [1],
"CurrentVersion": 1
}, {
"TicketElementType": null,
"TicketElementTemplateType": null,
"IsFinalized": false,
"Name": "Icon",
"Version": null,
"Latest": false,
"TicketId": 5906577843740358,
"TypeName": "E_TEXT",
"TemplateName": "E_TEXT_DEFAULT",
"IAm": "TicketElement",
"QuickLink": null,
"Id": 5917572960018118,
"CreationTime": "2013-09-16T10:34:46.578Z",
"CreatorId": 5455778074533264,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": "{\"Value\":null,\"DisplayName\":\"Icon\"}",
"ModificationTime": "2013-09-16T10:34:46.675+00:00",
"Generation": 0,
"VersionNumbers": [1],
"CurrentVersion": 1
}, {
"TicketElementType": null,
"TicketElementTemplateType": null,
"IsFinalized": false,
"Name": "PageUrl",
"Version": null,
"Latest": false,
"TicketId": 5906577843740358,
"TypeName": "E_TEXT",
"TemplateName": "E_TEXT_DEFAULT",
"IAm": "TicketElement",
"QuickLink": null,
"Id": 5930767099551430,
"CreationTime": "2013-09-16T10:34:46.578Z",
"CreatorId": 5455778074533264,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": "{\"Value\":\"\"}",
"ModificationTime": "2013-09-16T10:34:46.916+00:00",
"Generation": 0,
"VersionNumbers": [1],
"CurrentVersion": 1
}, {
"TicketElementType": null,
"TicketElementTemplateType": null,
"IsFinalized": false,
"Name": "Note",
"Version": null,
"Latest": false,
"TicketId": 5906577843740358,
"TypeName": "E_TEXT",
"TemplateName": "E_TEXT_MULTILINE",
"IAm": "TicketElement",
"QuickLink": null,
"Id": 5928568076295878,
"CreationTime": "2013-09-16T10:34:46.578Z",
"CreatorId": 5455778074533264,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": "{\"Value\":null,\"DisplayName\":\"Descriptions\"}",
"ModificationTime": "2013-09-16T10:34:46.623+00:00",
"Generation": 0,
"VersionNumbers": [1],
"CurrentVersion": 1
}, {
"TicketElementType": null,
"TicketElementTemplateType": null,
"IsFinalized": false,
"Name": "Title",
"Version": null,
"Latest": false,
"TicketId": 5906577843740358,
"TypeName": "E_TEXT",
"TemplateName": "E_TEXT_DEFAULT",
"IAm": "TicketElement",
"QuickLink": null,
"Id": 5908776866995910,
"CreationTime": "2013-09-16T10:34:46.578Z",
"CreatorId": 5455778074533264,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": "{\"Value\":\"subpage on facebook tab\",\"DisplayName\":\"Composition Title\",\"Value-Placeholder\":\"Untitled Composition\"}",
"ModificationTime": "2013-09-16T10:34:46.572+00:00",
"Generation": 0,
"VersionNumbers": [1],
"CurrentVersion": 1
}, {
"TicketElementType": null,
"TicketElementTemplateType": null,
"IsFinalized": false,
"Name": "ProjectId",
"Version": null,
"Latest": false,
"TicketId": 5906577843740358,
"TypeName": "E_TEXT",
"TemplateName": "E_TEXT_DEFAULT",
"IAm": "TicketElement",
"QuickLink": null,
"Id": 6456333657628393,
"CreationTime": "2013-09-16T10:35:21.769Z",
"CreatorId": 5455778074533264,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": "{\"Value\":\"4807066214297344\"}",
"ModificationTime": "2013-09-16T10:35:21.96+00:00",
"Generation": 0,
"VersionNumbers": [1],
"CurrentVersion": 1
}, {
"TicketElementType": null,
"TicketElementTemplateType": null,
"IsFinalized": false,
"Name": "OriginalCompositionId",
"Version": null,
"Latest": false,
"TicketId": 5906577843740358,
"TypeName": "E_TEXT",
"TemplateName": "E_TEXT_DEFAULT",
"IAm": "TicketElement",
"QuickLink": null,
"Id": 6460731704139497,
"CreationTime": "2013-09-16T10:35:21.847Z",
"CreatorId": 5455778074533264,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": "{\"Value\":\"3142405611219763\"}",
"ModificationTime": "2013-09-16T10:35:21.909+00:00",
"Generation": 0,
"VersionNumbers": [1],
"CurrentVersion": 1
}],
"Name": "PublishComposition",
"TypeName": "T_COMPOSITION",
"TemplateName": "T_COMPOSITION_DEFAULT",
"IsRoot": true,
"UniqueConstraint": null,
"BindIds": [5968150494895815, 6432144401817306],
"BindIdsPointingToThisTicket": [5959354401873607],
"SubTicketIds": [],
"TicketElementIds": [5910975890251462, 5921971006529222, 5924170029784774, 5919771983273670, 5915373936762566, 5913174913507014, 5926369053040326, 5917572960018118, 5930767099551430, 5928568076295878, 5908776866995910, 6456333657628393, 6460731704139497],
"EpisodeIds": [],
"IAm": "Ticket",
"PublicActions": ["view"],
"QuickLink": null,
"Id": 5906577843740358,
"CreationTime": "2013-09-16T10:34:46.562Z",
"CreatorId": 5455778074533264,
"IsProper": false,
"Domain": "Personal",
"Description": null,
"DataXml": null,
"ModificationTime": "2013-09-16T10:35:22.864+00:00",
"Generation": 0,
"VersionNumbers": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12],
"CurrentVersion": 12
};
var encodedJSON = JSON.stringify(ticket);
var encodedPSON = pson.toArrayBuffer(ticket);
Ready to run.
Test | Ops/sec | |
---|---|---|
JSON encode |
| ready |
PSON encode (to ArrayBuffer) |
| ready |
PSON encode (Vanilla) |
| ready |
JSON decode |
| ready |
PSON decode |
| ready |
You can edit these tests or add more tests to this page by appending /edit to the URL.