forked from adobe-photoshop/generator-core
-
Notifications
You must be signed in to change notification settings - Fork 0
JSON event format
Scott Meinzer edited this page Mar 31, 2016
·
25 revisions
This JSON format is used by the following Kevlar APIs
- networkEventSubscribe for the following event notifications:
- "imageChanged"
- "generatorDocumentActivated"
- "generatorMenuChanged"
- sendLayerShapeToNetworkClient
- sendDocumentInfoToNetworkClient
You can request a specific JSON version for those APIs by specifying "version" = [version string] in the input descriptor. For now the version is ignored, as there is only one version, and you'll always get the latest version ("1.0.0" in Photoshop 14.1, "1.1.0" in Photoshop 14.2)
JSON format changes from 1.0.0 (Photoshop 14.1) to 1.1.0 (Photshop 14.2 and later)
sendDocumentInfoToNetworkClient and imageChanged:
- "version" changed from "1.0.0" to "1.1.0"
- added "count" to top level document object
- added "selection" to top level document object (array of selected layer indices)
- added "enabled" to "mask" : {} in layer object (defaults to true)
- added "placedID" entry in "placed":[] array items
imageChanged only:
- added "layersAdjusted" to layer object
- added "clipGroup" to layer object
- imageChanged reports empty layer selections as {selection":[]}
- Version changed to 1.3.0
- Multiple layer fx. If the following keys are present in the layer object, they contain arrays of the corresponding fx: dropShadowMulti, innerShadowMulti, solidFillMulti, gradientFillMulti, frameFXMulti
- Artboards. New layer object key: artboard, contains artboardRect, a rect object, if the layer is an artboard.
- Version changed to 1.4.0
- New artboard protection lock type, "artboardAutonest" reported in protection change/info
- Duplicate layer & Group layers send layer:added:true/clipped: instead of image:changed:true
- Smart object edit sends layer:smartObject:{} instead of layer:changed:true
- Added 3 new keys to top level image info
- Removed ID/parentID for recursed documents when using expandSmartObjects (use placedID to reference)
- Added 3 new keys to top level image info
- profile:(string) description of icc profile, e.g."sRGB IEC61966-2.1"]
- mode:(string) Bitmap/Indexed/grayScale/Duotone/indexedColor/RGBColor/CMYKColorEnum/labColor/multichannel
- depth:(integer) bit depth per channel 1/8/16/32]
- Also see Kevlar API addition for new parameters in the various send*ToNetworkClient APIs
{
"version": "1.4.0", //sem ver (http://semver.org) 1.0.0 PS 14.1; 1.1.0, 14.2; 1.2.0, 15.2; 1.3.0, 16.0 (2015 CC Spring); 1.4.0, 16.1 (2015 CC Fall)
"timeStamp": 1370051898.075, //time since last edit or save, seconds since 1970
"count": 999, //number of changes since document was last opened, new for 14.2
"id": 1123, //document id
"file": "Shapes.psd", //full path of the saved file for the doc, or the document title if unsaved.
"resolution": 300, //resolution in dpi
"globalLight": { "altitude": 30, "angle": 120 }, //fx lighting angles
"generatorSettings":false, //generator settings object if any, false if none.
"profile":"sRGB IEC61966-2.1", //icc profile, (or "Untagged RGB" or "Bitmap")
"mode":"RGBColor", //color mode
"depth":8 //bit depth per channel
"bounds": { "bottom": 360, "left": 0, "right": 504, "top": 0 }, //canvas bounds
"comps": [ … ], //an array of comp objects
"layers": [ … ] , //an array of layer objects
"placed": [ … ], //an array of placed objects (used by smart objects)
//these are sent in "imageChanged" event notifications:
"closed" : true, //image closed
"flattened" : true, //all layers flattened
"merged" : true //layers were merged together
"active" : true //image became active
"generatorSettings": {...} //generator meta data, saved with document
"selection": [ … ], //an array of any selected layer indices, new for 14.2
}
//a comp object:
{
"id": 48804065, //comp id
"name": "Orig", //comp name
"applied": true, //true, if this is the applied comp, defaults to false
"appearance": true, //which attributes the comp captures
"position": true,
"visibility": true
//these are sent in "imageChanged" event notifications:
"captured" : true, //specified in change when comp is re-captured (synced w/doc state)
"added" : true, //comp was added
"removed" : true //comp was removed
},
//a layer object:
{
"id": 20,
"index": 9, //only specified when order changes in imageChanged, or sendDocumentInfoToNetworkClient
"bounds": { "bottom": , "left":, "right": , "top": },
"name": "Just some circles with FX to test Generator",
"type": "layerSection", // "layerSection"/"layer"/"shapeLayer"/"textLayer"/"adjustmentLayer"/"backgroundLayer"
"visible": true
"protection": { "all": true }, //layer locking
"blendOptions": { "mode": "passThrough" }, //blending attributes /blendOptions descriptor. See Photoshop SDK, and sample output below for additional entries
//depending on "type"
"smartObject": { … }, //placed document
"layerEffects": { … }, // a /layerEffects descriptor. See Photoshop SDK, and sample output below for additional entries
"layers": [ ], //array of member layer objects, if "type" is "layerSection"
"text" : { }, //text object, if type is textLayer, see sample output for additional entries
"fill" : //shape layer fill content, if "type" is "shapeLayer"
{
"class": "solidColorLayer", //varies on fill type solidColorLayer/gradientLayer/patternLayer
"color": { //if solidColorLayer
"blue": 53.996,
"green": 255,
"red": 0.004
}
},
"adjustment" : { }, //if type is adjustmentLayer, contains adjustor parameters
"pixels" : true, //true if type is layer (you can write to the pixels), also true in change message if pixels were changed
"transform" : {"xx":xx, "xy":xy, "yx":yx, "yy":yy, "tx":tx, "ty":ty }, //was layerChangedTransform and an array of floats
"mask" : {
"bounds" : { "bottom":bottom, "left":left, "right":right , "top":top },
"extendWithWhite" : true, //mask includes area outside bounds
"enabled": true // new for 14.2, defaults to true
}
"path" : // /pathClass descriptor
// For /point in /pathPoint is {"x":x, "y":y} and pixels unit, /smooth is true by default
{
"defaultFill": false //defaults to all filled, default is false
"pathComponents": [
{
"shapeOperation": "add", //valid values are "add"/"subtract"/"intersect"/"xor"
"windingFill": true //non-zero-winding (true) or even-odd fill (false)
"subpathListKey" : [
{
closedSubpath: true, //close sub path before filling
points: [
{
"forward" : {"x":x, "y":y},
"backward": {"x":x, "y":y},
"anchor": {"x":x, "y":y},
"smooth": true
},
//etc.
]
},
//etc.
]
},
//etc.
]
},
"strokeStyle": { //a /strokeStyle descriptor (see UActionsTerminology.r)
"strokeEnabled": true, //stroke the path
"fillEnabled": true, //fill the path
"strokeStyleBlendMode": blendmode,
"strokeStyleOpacity": 100.0, //0-100
"strokeStyleLineCapType": "strokeStyleButtCap", // "strokeStyleButtCap"/"strokeStyleRoundCap"/"strokeStyleSquareCap"
"strokeStyleLineJoinType": "strokeStyleBevelJoin", //"strokeStyleBevelJoin"/"strokeStyleMiterJoin"/"strokeStyleRoundJoin"
"strokeStyleLineAlignment": "strokeStyleAlignCenter",
//"strokeStyleAlignOutside"/"strokeStyleAlignInside"/"strokeStyleAlignCenter"
"strokeStyleMiterLimit": miterlimit,
"strokeStyleLineWidth": width,
"strokeStyleLineDashOffset": dashoffset,
"strokeStyleLineDashSet": [dash1, gap1, dash2, gap2, dashn, gapn],
"strokeStyleScaleLock": true, //snap to integer coords before drawing
"strokeStyleStrokeAdjust": true, //snap to integer coords before drawing
"strokeStyleContentType" : {
//same format as "fill" above
}
}
"generatorSettings": {...} //generic generator meta data, saved with layer
//these are sent in "imageChanged" event notifications:
"rasterized" : true //layer was rasterized
"added" : true, //layer was added
"removed" : true, //layer was removed
//new events for 14.2
//"clipGroup" and "layersAdjusted" are sent with imageChanged notifications
//this additional info can be used to invalidate layer pixel caches,
//as thumbnails can contain contain from other layers (adjustors, clip group members)
//"clipGroup" is sent when a layer in a clip group changes
//(the layer clips another layer, or is clipped by another layer)
"clipGroup" :
{
"indexRange": [clipGroupBaseIndex,clipGroupLastClippedIndex]
}
//"layersAdjusted" is sent when an adjustment layer changes, or a group containing an adjustor changes.
"layersAdjusted" :
{
"indexRange": [firstLayerAdjusted,adjustmentLayerIndex]
}
},
//A "placed" object
{
//... document entries for the smart object document
"timeStamp": 1370051898.075, //time since last edit or save, seconds since 1970
"version": "1.4.0", //sem ver (http://semver.org) 1.0.0 in Photoshop 14.1, 1.1.0 in Photoshop 14.2
"file": "Shapes.psd", //any associated saved file for the doc
"globalLight": { "altitude": 30, "angle": 120 },
"bounds": { "bottom": 360, "left": 0, "right": 504, "top": 0 },
"resolution": 300, //resolution in dpi
"comps": [ … ], //an array of comp objects
"layers": [ … ] , //an array of layer objects
"placed": [ … ], //an array of placed objects (used by smart objects)
//.etc
//placed document info
"file": "Group 2.psb",
"top": 0
"fileCreator": 943868237,
"fileType": 943870018,
//new for 14.2, ZUID for placed doc (smart object), used to match placed document
//with layer "smartObject" entry
"placedID": "f63a4deb-1a95-1176-8600-d8d951c5d284"
}
(This is the new version 1.1.0 format used in Photoshop 14.2, see above for differences with 1.0.0/14.1)
Actual output of sendDocumentInfoToNetworkClient for the sample PSD,
which contains all the various layer types and attributes expressed by the JSON format.
{
"bounds": {
"bottom": 360,
"left": 0,
"right": 504,
"top": 0
},
"comps": [
{
"appearance": true,
"hasWarning": true,
"id": 48804065,
"layerSettings": [
{
"enabled": true,
"layerID": 1
},
{
"enabled": false,
"layerID": 27
},
{
"FXRefPoint": {
"horizontal": 47.280848,
"vertical": 1.925534
},
"enabled": true,
"layerID": 22
},
{
"blendOptions": {
"mode": "passThrough"
},
"enabled": true,
"layerID": 12
},
{
"blendOptions": {
"mode": "passThrough"
},
"enabled": true,
"layerID": 16
},
{
"FXRefPoint": {
"horizontal": 0.0,
"vertical": 141.0
},
"enabled": true,
"layerID": 6,
"vectorMask": {
"offset": {
"horizontal": 44,
"vertical": 164
}
}
},
{
"FXRefPoint": {
"horizontal": 5.0,
"vertical": 141.0
},
"enabled": true,
"layerID": 7,
"vectorMask": {
"offset": {
"horizontal": 177,
"vertical": 164
}
}
},
{
"blendOptions": {
"opacity": {
"units": "percentUnit",
"value": 74.901961
}
},
"enabled": true,
"layerEffects": {
"chromeFX": {
"antiAlias": false,
"blur": 14.0,
"color": {
"blue": 0.0,
"green": 0.0,
"red": 0.0
},
"distance": 11.0,
"enabled": true,
"invert": true,
"localLightingAngle": {
"units": "angleUnit",
"value": 19.0
},
"mappingShape": {
"curve": [
{
"horizontal": 0.0,
"vertical": 0.0
},
{
"horizontal": 32.0,
"vertical": 7.0
},
{
"horizontal": 64.0,
"vertical": 38.0
},
{
"horizontal": 96.0,
"vertical": 101.0
},
{
"horizontal": 128.0,
"vertical": 166.0
},
{
"horizontal": 159.0,
"vertical": 209.0
},
{
"horizontal": 191.0,
"vertical": 235.0
},
{
"horizontal": 223.0,
"vertical": 248.0
},
{
"horizontal": 255.0,
"vertical": 255.0
}
],
"name": "Gaussian"
},
"mode": "multiply",
"opacity": {
"units": "percentUnit",
"value": 50.0
}
},
"dropShadow": {
"antiAlias": false,
"blur": 5.0,
"chokeMatte": 0.0,
"color": {
"blue": 0.0,
"green": 0.0,
"red": 0.0
},
"distance": 5.0,
"enabled": true,
"layerConceals": true,
"localLightingAngle": {
"units": "angleUnit",
"value": 120.0
},
"mode": "multiply",
"noise": {
"units": "percentUnit",
"value": 0.0
},
"opacity": {
"units": "percentUnit",
"value": 75.0
},
"transferSpec": {
"curve": [
{
"horizontal": 0.0,
"vertical": 0.0
},
{
"horizontal": 255.0,
"vertical": 255.0
}
],
"name": "Linear"
},
"useGlobalAngle": true
},
"masterFXSwitch": true,
"scale": {
"units": "percentUnit",
"value": 100.0
}
},
"layerID": 15
},
{
"FXRefPoint": {
"horizontal": 0.0,
"vertical": 141.0
},
"blendOptions": {
"opacity": {
"units": "percentUnit",
"value": 70.980392
}
},
"enabled": true,
"layerEffects": {
"bevelEmboss": {
"antialiasGloss": false,
"bevelDirection": "stampIn",
"bevelStyle": "innerBevel",
"bevelTechnique": "softMatte",
"blur": 5.0,
"enabled": true,
"highlightColor": {
"blue": 255.0,
"green": 255.0,
"red": 255.0
},
"highlightMode": "screen",
"highlightOpacity": {
"units": "percentUnit",
"value": 75.0
},
"localLightingAltitude": {
"units": "angleUnit",
"value": 30.0
},
"localLightingAngle": {
"units": "angleUnit",
"value": 120.0
},
"shadowColor": {
"blue": 0.0,
"green": 0.0,
"red": 0.0
},
"shadowMode": "multiply",
"shadowOpacity": {
"units": "percentUnit",
"value": 75.0
},
"softness": 0.0,
"strengthRatio": {
"units": "percentUnit",
"value": 100.0
},
"transferSpec": {
"curve": [
{
"horizontal": 0.0,
"vertical": 0.0
},
{
"horizontal": 255.0,
"vertical": 255.0
}
],
"name": "Linear"
},
"useGlobalAngle": true,
"useShape": false,
"useTexture": false
},
"gradientFill": {
"align": true,
"angle": {
"units": "angleUnit",
"value": 90.0
},
"dither": false,
"enabled": true,
"gradient": {
"colors": [
{
"color": {
"blue": 0.0,
"green": 0.0,
"red": 0.0
},
"location": 0,
"midpoint": 50,
"type": "userStop"
},
{
"color": {
"blue": 255.0,
"green": 255.0,
"red": 255.0
},
"location": 4096,
"midpoint": 50,
"type": "userStop"
}
],
"gradientForm": "customStops",
"interfaceIconFrameDimmed": 4096.0,
"name": "Two Color",
"transparency": [
{
"location": 0,
"midpoint": 50,
"opacity": {
"units": "percentUnit",
"value": 100.0
}
},
{
"location": 4096,
"midpoint": 50,
"opacity": {
"units": "percentUnit",
"value": 100.0
}
}
]
},
"mode": "normal",
"offset": {
"horizontal": {
"units": "percentUnit",
"value": 0.0
},
"vertical": {
"units": "percentUnit",
"value": 0.0
}
},
"opacity": {
"units": "percentUnit",
"value": 66.0
},
"reverse": false,
"scale": {
"units": "percentUnit",
"value": 100.0
},
"type": "linear"
},
"masterFXSwitch": true,
"scale": {
"units": "percentUnit",
"value": 100.0
}
},
"layerID": 8,
"vectorMask": {
"offset": {
"horizontal": 310,
"vertical": 164
}
}
},
{
"blendOptions": {
"mode": "passThrough"
},
"enabled": true,
"layerID": 11
},
{
"FXRefPoint": {
"horizontal": -104.0,
"vertical": -105.0
},
"enabled": true,
"layerID": 20,
"layerSpecific": {
"textLayerSettings": {
"textLayerSettingsWarpRect": [
0.0,
0.0,
0.0,
0.0
],
"warpPerspective": 0.0,
"warpPerspectiveOther": 0.0,
"warpRotate": "horizontal",
"warpStyle": "warpNone",
"warpValue": 0.0
}
},
"offset": {
"horizontal": -181,
"vertical": -1
}
},
{
"enabled": true,
"layerID": 33,
"vectorMask": {
"offset": {
"horizontal": 134,
"vertical": 94
}
}
},
{
"enabled": true,
"layerID": 26
},
{
"blendOptions": {
"mode": "passThrough"
},
"enabled": true,
"layerID": 29
},
{
"enabled": true,
"layerID": 30
},
{
"blendOptions": {
"mode": "passThrough"
},
"enabled": true,
"layerID": 28
}
],
"name": "Comp 1: Original (all)",
"position": true,
"visibility": true
},
{
"appearance": false,
"hasWarning": true,
"id": 71997725,
"layerSettings": [
{
"enabled": false,
"layerID": 1
},
{
"enabled": false,
"layerID": 27
},
{
"FXRefPoint": {
"horizontal": 47.280848,
"vertical": 1.925534
},
"enabled": true,
"layerID": 22
},
{
"blendOptions": {
"mode": "passThrough"
},
"enabled": true,
"layerID": 12
},
{
"blendOptions": {
"mode": "passThrough"
},
"enabled": true,
"layerID": 16
},
{
"FXRefPoint": {
"horizontal": 0.0,
"vertical": 141.0
},
"enabled": true,
"layerID": 6,
"vectorMask": {
"offset": {
"horizontal": 44,
"vertical": 164
}
}
},
{
"FXRefPoint": {
"horizontal": 5.0,
"vertical": 141.0
},
"enabled": true,
"layerID": 7,
"vectorMask": {
"offset": {
"horizontal": 177,
"vertical": 164
}
}
},
{
"blendOptions": {
"opacity": {
"units": "percentUnit",
"value": 74.901961
}
},
"enabled": true,
"layerEffects": {
"chromeFX": {
"antiAlias": false,
"blur": 14.0,
"color": {
"blue": 0.0,
"green": 0.0,
"red": 0.0
},
"distance": 11.0,
"enabled": true,
"invert": true,
"localLightingAngle": {
"units": "angleUnit",
"value": 19.0
},
"mappingShape": {
"curve": [
{
"horizontal": 0.0,
"vertical": 0.0
},
{
"horizontal": 32.0,
"vertical": 7.0
},
{
"horizontal": 64.0,
"vertical": 38.0
},
{
"horizontal": 96.0,
"vertical": 101.0
},
{
"horizontal": 128.0,
"vertical": 166.0
},
{
"horizontal": 159.0,
"vertical": 209.0
},
{
"horizontal": 191.0,
"vertical": 235.0
},
{
"horizontal": 223.0,
"vertical": 248.0
},
{
"horizontal": 255.0,
"vertical": 255.0
}
],
"name": "Gaussian"
},
"mode": "multiply",
"opacity": {
"units": "percentUnit",
"value": 50.0
}
},
"dropShadow": {
"antiAlias": false,
"blur": 5.0,
"chokeMatte": 0.0,
"color": {
"blue": 0.0,
"green": 0.0,
"red": 0.0
},
"distance": 5.0,
"enabled": true,
"layerConceals": true,
"localLightingAngle": {
"units": "angleUnit",
"value": 120.0
},
"mode": "multiply",
"noise": {
"units": "percentUnit",
"value": 0.0
},
"opacity": {
"units": "percentUnit",
"value": 75.0
},
"transferSpec": {
"curve": [
{
"horizontal": 0.0,
"vertical": 0.0
},
{
"horizontal": 255.0,
"vertical": 255.0
}
],
"name": "Linear"
},
"useGlobalAngle": true
},
"masterFXSwitch": true,
"scale": {
"units": "percentUnit",
"value": 100.0
}
},
"layerID": 15
},
{
"FXRefPoint": {
"horizontal": 0.0,
"vertical": 141.0
},
"blendOptions": {
"opacity": {
"units": "percentUnit",
"value": 70.980392
}
},
"enabled": true,
"layerEffects": {
"bevelEmboss": {
"antialiasGloss": false,
"bevelDirection": "stampIn",
"bevelStyle": "innerBevel",
"bevelTechnique": "softMatte",
"blur": 5.0,
"enabled": true,
"highlightColor": {
"blue": 255.0,
"green": 255.0,
"red": 255.0
},
"highlightMode": "screen",
"highlightOpacity": {
"units": "percentUnit",
"value": 75.0
},
"localLightingAltitude": {
"units": "angleUnit",
"value": 30.0
},
"localLightingAngle": {
"units": "angleUnit",
"value": 120.0
},
"shadowColor": {
"blue": 0.0,
"green": 0.0,
"red": 0.0
},
"shadowMode": "multiply",
"shadowOpacity": {
"units": "percentUnit",
"value": 75.0
},
"softness": 0.0,
"strengthRatio": {
"units": "percentUnit",
"value": 100.0
},
"transferSpec": {
"curve": [
{
"horizontal": 0.0,
"vertical": 0.0
},
{
"horizontal": 255.0,
"vertical": 255.0
}
],
"name": "Linear"
},
"useGlobalAngle": true,
"useShape": false,
"useTexture": false
},
"gradientFill": {
"align": true,
"angle": {
"units": "angleUnit",
"value": 90.0
},
"dither": false,
"enabled": true,
"gradient": {
"colors": [
{
"color": {
"blue": 0.0,
"green": 0.0,
"red": 0.0
},
"location": 0,
"midpoint": 50,
"type": "userStop"
},
{
"color": {
"blue": 255.0,
"green": 255.0,
"red": 255.0
},
"location": 4096,
"midpoint": 50,
"type": "userStop"
}
],
"gradientForm": "customStops",
"interfaceIconFrameDimmed": 4096.0,
"name": "Two Color",
"transparency": [
{
"location": 0,
"midpoint": 50,
"opacity": {
"units": "percentUnit",
"value": 100.0
}
},
{
"location": 4096,
"midpoint": 50,
"opacity": {
"units": "percentUnit",
"value": 100.0
}
}
]
},
"mode": "normal",
"offset": {
"horizontal": {
"units": "percentUnit",
"value": 0.0
},
"vertical": {
"units": "percentUnit",
"value": 0.0
}
},
"opacity": {
"units": "percentUnit",
"value": 66.0
},
"reverse": false,
"scale": {
"units": "percentUnit",
"value": 100.0
},
"type": "linear"
},
"masterFXSwitch": true,
"scale": {
"units": "percentUnit",
"value": 100.0
}
},
"layerID": 8,
"vectorMask": {
"offset": {
"horizontal": 310,
"vertical": 164
}
}
},
{
"blendOptions": {
"mode": "passThrough"
},
"enabled": false,
"layerID": 11
},
{
"FXRefPoint": {
"horizontal": -104.0,
"vertical": -105.0
},
"enabled": false,
"layerID": 20,
"layerSpecific": {
"textLayerSettings": {
"textLayerSettingsWarpRect": [
0.0,
0.0,
0.0,
0.0
],
"warpPerspective": 0.0,
"warpPerspectiveOther": 0.0,
"warpRotate": "horizontal",
"warpStyle": "warpNone",
"warpValue": 0.0
}
},
"offset": {
"horizontal": -181,
"vertical": -1
}
},
{
"enabled": false,
"layerID": 33,
"vectorMask": {
"offset": {
"horizontal": 134,
"vertical": 94
}
}
},
{
"enabled": false,
"layerID": 26
},
{
"blendOptions": {
"mode": "passThrough"
},
"enabled": true,
"layerID": 29
},
{
"enabled": true,
"layerID": 30
},
{
"blendOptions": {
"mode": "passThrough"
},
"enabled": false,
"layerID": 28
}
],
"name": "Comp 2: Just the smart object (vis)",
"position": false,
"visibility": true
},
{
"appearance": true,
"id": 95309034,
"layerSettings": [
{
"FXRefPoint": {
"horizontal": 47.280848,
"vertical": 1.925534
},
"enabled": true,
"layerID": 22
},
{
"blendOptions": {
"mode": "passThrough"
},
"enabled": true,
"layerID": 12
},
{
"blendOptions": {
"mode": "passThrough"
},
"enabled": true,
"layerID": 16
},
{
"FXRefPoint": {
"horizontal": 0.0,
"vertical": 141.0
},
"enabled": true,
"layerID": 6,
"vectorMask": {
"offset": {
"horizontal": 44,
"vertical": 164
}
}
},
{
"FXRefPoint": {
"horizontal": 5.0,
"vertical": 141.0
},
"enabled": true,
"layerID": 7,
"vectorMask": {
"offset": {
"horizontal": 177,
"vertical": 164
}
}
},
{
"blendOptions": {
"opacity": {
"units": "percentUnit",
"value": 74.901961
}
},
"enabled": true,
"layerEffects": {
"chromeFX": {
"antiAlias": false,
"blur": 14.0,
"color": {
"blue": 0.0,
"green": 0.0,
"red": 0.0
},
"distance": 11.0,
"enabled": true,
"invert": true,
"localLightingAngle": {
"units": "angleUnit",
"value": 19.0
},
"mappingShape": {
"curve": [
{
"horizontal": 0.0,
"vertical": 0.0
},
{
"horizontal": 32.0,
"vertical": 7.0
},
{
"horizontal": 64.0,
"vertical": 38.0
},
{
"horizontal": 96.0,
"vertical": 101.0
},
{
"horizontal": 128.0,
"vertical": 166.0
},
{
"horizontal": 159.0,
"vertical": 209.0
},
{
"horizontal": 191.0,
"vertical": 235.0
},
{
"horizontal": 223.0,
"vertical": 248.0
},
{
"horizontal": 255.0,
"vertical": 255.0
}
],
"name": "Gaussian"
},
"mode": "multiply",
"opacity": {
"units": "percentUnit",
"value": 50.0
}
},
"dropShadow": {
"antiAlias": false,
"blur": 5.0,
"chokeMatte": 0.0,
"color": {
"blue": 0.0,
"green": 0.0,
"red": 0.0
},
"distance": 5.0,
"enabled": true,
"layerConceals": true,
"localLightingAngle": {
"units": "angleUnit",
"value": 120.0
},
"mode": "multiply",
"noise": {
"units": "percentUnit",
"value": 0.0
},
"opacity": {
"units": "percentUnit",
"value": 75.0
},
"transferSpec": {
"curve": [
{
"horizontal": 0.0,
"vertical": 0.0
},
{
"horizontal": 255.0,
"vertical": 255.0
}
],
"name": "Linear"
},
"useGlobalAngle": true
},
"masterFXSwitch": false,
"scale": {
"units": "percentUnit",
"value": 100.0
}
},
"layerID": 15
},
{
"FXRefPoint": {
"horizontal": 0.0,
"vertical": 141.0
},
"blendOptions": {
"opacity": {
"units": "percentUnit",
"value": 70.980392
}
},
"enabled": true,
"layerEffects": {
"bevelEmboss": {
"antialiasGloss": false,
"bevelDirection": "stampIn",
"bevelStyle": "innerBevel",
"bevelTechnique": "softMatte",
"blur": 5.0,
"enabled": true,
"highlightColor": {
"blue": 255.0,
"green": 255.0,
"red": 255.0
},
"highlightMode": "screen",
"highlightOpacity": {
"units": "percentUnit",
"value": 75.0
},
"localLightingAltitude": {
"units": "angleUnit",
"value": 30.0
},
"localLightingAngle": {
"units": "angleUnit",
"value": 120.0
},
"shadowColor": {
"blue": 0.0,
"green": 0.0,
"red": 0.0
},
"shadowMode": "multiply",
"shadowOpacity": {
"units": "percentUnit",
"value": 75.0
},
"softness": 0.0,
"strengthRatio": {
"units": "percentUnit",
"value": 100.0
},
"transferSpec": {
"curve": [
{
"horizontal": 0.0,
"vertical": 0.0
},
{
"horizontal": 255.0,
"vertical": 255.0
}
],
"name": "Linear"
},
"useGlobalAngle": true,
"useShape": false,
"useTexture": false
},
"gradientFill": {
"align": true,
"angle": {
"units": "angleUnit",
"value": 90.0
},
"dither": false,
"enabled": true,
"gradient": {
"colors": [
{
"color": {
"blue": 0.0,
"green": 0.0,
"red": 0.0
},
"location": 0,
"midpoint": 50,
"type": "userStop"
},
{
"color": {
"blue": 255.0,
"green": 255.0,
"red": 255.0
},
"location": 4096,
"midpoint": 50,
"type": "userStop"
}
],
"gradientForm": "customStops",
"interfaceIconFrameDimmed": 4096.0,
"name": "Two Color",
"transparency": [
{
"location": 0,
"midpoint": 50,
"opacity": {
"units": "percentUnit",
"value": 100.0
}
},
{
"location": 4096,
"midpoint": 50,
"opacity": {
"units": "percentUnit",
"value": 100.0
}
}
]
},
"mode": "normal",
"offset": {
"horizontal": {
"units": "percentUnit",
"value": 0.0
},
"vertical": {
"units": "percentUnit",
"value": 0.0
}
},
"opacity": {
"units": "percentUnit",
"value": 66.0
},
"reverse": false,
"scale": {
"units": "percentUnit",
"value": 100.0
},
"type": "linear"
},
"masterFXSwitch": false,
"scale": {
"units": "percentUnit",
"value": 100.0
}
},
"layerID": 8,
"vectorMask": {
"offset": {
"horizontal": 310,
"vertical": 164
}
}
},
{
"blendOptions": {
"mode": "passThrough"
},
"enabled": true,
"layerID": 11
},
{
"FXRefPoint": {
"horizontal": -104.0,
"vertical": -105.0
},
"enabled": true,
"layerID": 20,
"layerSpecific": {
"textLayerSettings": {
"textLayerSettingsWarpRect": [
0.0,
0.0,
0.0,
0.0
],
"warpPerspective": 0.0,
"warpPerspectiveOther": 0.0,
"warpRotate": "horizontal",
"warpStyle": "warpNone",
"warpValue": 0.0
}
},
"offset": {
"horizontal": -181,
"vertical": -1
}
}
],
"name": "Comp 3: no layer FX (appearance)",
"position": false,
"visibility": false
}
],
"count": 2,
"file": "Shapes.psd",
"generatorSettings": false,
"globalLight": {
"altitude": 30,
"angle": 120
},
"id": 35,
"layers": [
{
"blendOptions": {
"opacity": {
"units": "percentUnit",
"value": 36.0
}
},
"bounds": {
"bottom": 93.0,
"left": 8.0,
"right": 163.0,
"top": 9.28125
},
"clipped": false,
"fill": {
"class": "solidColorLayer",
"color": {
"blue": 242.680529,
"green": 190.747697,
"red": 0.0
}
},
"generatorSettings": false,
"id": 49,
"index": 40,
"mask": {
"removed": true
},
"name": "12. Shapes",
"path": {
"bounds": {
"bottom": 93.0,
"left": 8.0,
"right": 163.0,
"top": 9.28125
},
"defaultFill": false,
"pathComponents": [
{
"origin": {
"bounds": {
"bottom": 92.0,
"left": 14.0,
"right": 53.0,
"top": 54.0
},
"type": "rect"
},
"shapeOperation": "add",
"subpathListKey": [
{
"closedSubpath": true,
"points": [
{
"anchor": {
"x": 14.000007,
"y": 54.000013
}
},
{
"anchor": {
"x": 53.000008,
"y": 54.000013
}
},
{
"anchor": {
"x": 53.000008,
"y": 92.000005
}
},
{
"anchor": {
"x": 14.000007,
"y": 92.000005
}
}
]
}
]
},
{
"fakedOrigin": {
"bounds": {
"bottom": 93.0,
"left": 63.0,
"right": 102.0,
"top": 58.0
},
"radii": [
9.999992,
9.999992,
10.000022,
10.000022
],
"type": "roundedRect"
},
"origin": {
"bounds": {
"bottom": 93.0,
"left": 63.0,
"right": 102.0,
"top": 58.0
},
"radii": [
10.0,
10.0,
10.0,
10.0
],
"type": "roundedRect"
},
"shapeOperation": "add",
"subpathListKey": [
{
"closedSubpath": true,
"points": [
{
"anchor": {
"x": 73.000022,
"y": 58.000002
},
"backward": {
"x": 67.477152,
"y": 58.000002
},
"forward": {
"x": 73.000022,
"y": 58.000002
}
},
{
"anchor": {
"x": 92.00001,
"y": 58.000002
},
"backward": {
"x": 92.00001,
"y": 58.000002
},
"forward": {
"x": 97.52285,
"y": 58.000002
}
},
{
"anchor": {
"x": 102.000001,
"y": 68.000007
},
"backward": {
"x": 102.000001,
"y": 62.477167
},
"forward": {
"x": 102.000001,
"y": 68.000007
}
},
{
"anchor": {
"x": 102.000001,
"y": 83.000014
},
"backward": {
"x": 102.000001,
"y": 83.000014
},
"forward": {
"x": 102.000001,
"y": 88.522854
}
},
{
"anchor": {
"x": 92.00001,
"y": 92.999997
},
"backward": {
"x": 97.52285,
"y": 92.999997
},
"forward": {
"x": 92.00001,
"y": 92.999997
}
},
{
"anchor": {
"x": 73.000022,
"y": 92.999997
},
"backward": {
"x": 73.000022,
"y": 92.999997
},
"forward": {
"x": 67.477152,
"y": 92.999997
}
},
{
"anchor": {
"x": 63.0,
"y": 83.000014
},
"backward": {
"x": 63.0,
"y": 88.522854
},
"forward": {
"x": 63.0,
"y": 83.000014
}
},
{
"anchor": {
"x": 63.0,
"y": 68.000007
},
"backward": {
"x": 63.0,
"y": 68.000007
},
"forward": {
"x": 63.0,
"y": 62.477167
}
}
]
}
]
},
{
"origin": {
"bounds": {
"bottom": 45.0,
"left": 8.0,
"right": 61.0,
"top": 12.0
},
"type": "ellipse"
},
"shapeOperation": "add",
"subpathListKey": [
{
"closedSubpath": true,
"points": [
{
"anchor": {
"x": 34.500019,
"y": 12.00001
},
"backward": {
"x": 19.86447,
"y": 12.00001
},
"forward": {
"x": 49.135537,
"y": 12.00001
}
},
{
"anchor": {
"x": 61.000008,
"y": 28.500016
},
"backward": {
"x": 61.000008,
"y": 19.387307
},
"forward": {
"x": 61.000008,
"y": 37.612703
}
},
{
"anchor": {
"x": 34.500019,
"y": 45.0
},
"backward": {
"x": 49.135537,
"y": 45.0
},
"forward": {
"x": 19.86447,
"y": 45.0
}
},
{
"anchor": {
"x": 8.0,
"y": 28.500016
},
"backward": {
"x": 8.0,
"y": 37.612703
},
"forward": {
"x": 8.0,
"y": 19.387307
}
}
]
}
]
},
{
"origin": {
"bounds": {
"bottom": 54.40625,
"left": 97.0,
"right": 140.0625,
"top": 9.28125
},
"type": "unknown"
},
"shapeOperation": "add",
"subpathListKey": [
{
"closedSubpath": true,
"points": [
{
"anchor": {
"x": 139.768242,
"y": 46.078141
}
},
{
"anchor": {
"x": 113.139499,
"y": 54.411743
}
},
{
"anchor": {
"x": 96.98503,
"y": 31.661525
}
},
{
"anchor": {
"x": 113.629764,
"y": 9.267526
}
},
{
"anchor": {
"x": 140.071233,
"y": 18.177481
}
}
]
}
],
"windingFill": true
},
{
"origin": {
"bounds": {
"bottom": 47.3125,
"left": 62.59375,
"right": 91.40625,
"top": 10.6875
},
"type": "unknown"
},
"shapeOperation": "add",
"subpathListKey": [
{
"points": [
{
"anchor": {
"x": 62.605325,
"y": 11.30697
}
},
{
"anchor": {
"x": 63.394675,
"y": 10.693045
}
},
{
"anchor": {
"x": 91.394689,
"y": 46.693032
}
},
{
"anchor": {
"x": 90.605338,
"y": 47.306979
}
},
{
"anchor": {
"x": 62.605325,
"y": 11.30697
}
}
]
}
]
},
{
"origin": {
"bounds": {
"bottom": 91.0,
"left": 109.0,
"right": 163.0,
"top": 53.0
},
"type": "unknown"
},
"shapeOperation": "add",
"subpathListKey": [
{
"closedSubpath": true,
"points": [
{
"anchor": {
"x": 109.000005,
"y": 68.666525
}
},
{
"anchor": {
"x": 149.011538,
"y": 68.666525
},
"backward": {
"x": 149.011538,
"y": 68.666525
},
"forward": {
"x": 147.083553,
"y": 62.501414
},
"smooth": false
},
{
"anchor": {
"x": 146.025338,
"y": 53.0
},
"backward": {
"x": 146.123902,
"y": 58.480761
},
"forward": {
"x": 150.410595,
"y": 62.449379
},
"smooth": false
},
{
"anchor": {
"x": 163.000009,
"y": 71.996498
},
"backward": {
"x": 156.111156,
"y": 67.36958
},
"forward": {
"x": 156.111156,
"y": 76.428237
},
"smooth": false
},
{
"anchor": {
"x": 146.025338,
"y": 91.000013
},
"backward": {
"x": 150.661736,
"y": 81.837265
},
"forward": {
"x": 146.321209,
"y": 85.043428
},
"smooth": false
},
{
"anchor": {
"x": 149.071379,
"y": 74.890044
},
"backward": {
"x": 147.120894,
"y": 81.446199
},
"forward": {
"x": 149.071379,
"y": 74.890044
},
"smooth": false
},
{
"anchor": {
"x": 109.000005,
"y": 74.890044
}
}
]
}
]
}
]
},
"type": "shapeLayer",
"visible": true
},
{
"blendOptions": {
"blendClipped": false,
"blendInterior": true,
"channelRestrictions": [
"red",
"blue"
],
"fillOpacity": {
"units": "percentUnit",
"value": 25.0
},
"knockout": "shallow",
"mode": "lighten",
"opacity": {
"units": "percentUnit",
"value": 10.0
},
"transparencyShapesLayer": false
},
"bounds": {
"bottom": 360.0,
"left": 0.0,
"right": 504.0,
"top": 0.0
},
"boundsWithFX": {
"bottom": 397.0,
"left": -36.0,
"right": 541.0,
"top": -36.0
},
"clipped": false,
"generatorSettings": false,
"id": 35,
"index": 39,
"layerEffects": {
"bevelEmboss": {
"align": false,
"antiAlias": true,
"antialiasGloss": true,
"bevelDirection": "stampIn",
"bevelStyle": "pillowEmboss",
"bevelTechnique": "preciseMatte",
"blur": 51.0,
"enabled": true,
"highlightColor": {
"blue": 255.0,
"green": 255.0,
"red": 255.0
},
"highlightMode": "colorDodge",
"highlightOpacity": {
"units": "percentUnit",
"value": 55.0
},
"inputRange": {
"units": "percentUnit",
"value": 71.0
},
"invertTexture": true,
"localLightingAltitude": {
"units": "angleUnit",
"value": 48.0
},
"localLightingAngle": {
"units": "angleUnit",
"value": 23.0
},
"mappingShape": {
"name": "Cove - Deep"
},
"pattern": {
"ID": "52a93427-f5d6-1172-a989-8dc82a43aa51",
"name": "$$$/Presets/Patterns/Patterns_pat/Laidhorizontal=Laid-horizontal"
},
"phase": {
"horizontal": 0.0,
"vertical": 0.0
},
"scale": {
"units": "percentUnit",
"value": 65.0
},
"shadowColor": {
"blue": 0.0,
"green": 0.0,
"red": 0.0
},
"shadowMode": "darken",
"shadowOpacity": {
"units": "percentUnit",
"value": 59.0
},
"softness": 2.0,
"strengthRatio": {
"units": "percentUnit",
"value": 100.0
},
"textureDepth": {
"units": "percentUnit",
"value": 34.0
},
"transferSpec": {
"name": "Cove - Deep"
},
"useGlobalAngle": false,
"useShape": true,
"useTexture": true
},
"chromeFX": {
"antiAlias": true,
"blur": 76.0,
"color": {
"blue": 0.003891,
"green": 0.003891,
"red": 255.0
},
"distance": 11.0,
"enabled": true,
"invert": false,
"localLightingAngle": {
"units": "angleUnit",
"value": 19.0
},
"mappingShape": {
"name": "Gaussian"
},
"mode": "overlay",
"opacity": {
"units": "percentUnit",
"value": 50.0
}
},
"dropShadow": {
"antiAlias": false,
"blur": 5.0,
"chokeMatte": 0.0,
"color": {
"blue": 0.0,
"green": 0.0,
"red": 0.0
},
"distance": 5.0,
"enabled": true,
"layerConceals": false,
"localLightingAngle": {
"units": "angleUnit",
"value": 120.0
},
"mode": "colorBurn",
"noise": {
"units": "percentUnit",
"value": 14.0
},
"opacity": {
"units": "percentUnit",
"value": 75.0
},
"transferSpec": {
"curve": [
{
"horizontal": 0.0,
"vertical": 0.0
},
{
"horizontal": 130.0,
"vertical": 100.0
},
{
"horizontal": 255.0,
"vertical": 255.0
}
]
},
"useGlobalAngle": true
},
"frameFX": {
"align": true,
"angle": {
"units": "angleUnit",
"value": 0.0
},
"color": {
"blue": 0.003891,
"green": 0.003891,
"red": 255.0
},
"dither": false,
"enabled": true,
"gradient": {
"colors": [
{
"color": {
"blue": 0.0,
"green": 0.0,
"red": 0.0
},
"location": 0,
"midpoint": 50,
"type": "userStop"
},
{
"color": {
"blue": 255.0,
"green": 255.0,
"red": 255.0
},
"location": 4096,
"midpoint": 50,
"type": "userStop"
}
],
"gradientForm": "customStops",
"interfaceIconFrameDimmed": 4096.0,
"name": "Two Color",
"transparency": [
{
"location": 0,
"midpoint": 50,
"opacity": {
"units": "percentUnit",
"value": 100.0
}
},
{
"location": 4096,
"midpoint": 50,
"opacity": {
"units": "percentUnit",
"value": 100.0
}
}
]
},
"mode": "dissolve",
"offset": {
"horizontal": {
"units": "percentUnit",
"value": 0.0
},
"vertical": {
"units": "percentUnit",
"value": 0.0
}
},
"opacity": {
"units": "percentUnit",
"value": 48.0
},
"paintType": "gradientFill",
"reverse": false,
"scale": {
"units": "percentUnit",
"value": 100.0
},
"size": 16.0,
"style": "insetFrame",
"type": "linear"
},
"gradientFill": {
"align": false,
"angle": {
"units": "angleUnit",
"value": 90.0
},
"dither": false,
"enabled": true,
"gradient": {
"colors": [
{
"color": {
"blue": 0.0,
"green": 0.0,
"red": 0.0
},
"location": 0,
"midpoint": 50,
"type": "userStop"
},
{
"color": {
"blue": 255.0,
"green": 255.0,
"red": 255.0
},
"location": 4096,
"midpoint": 50,
"type": "userStop"
}
],
"gradientForm": "customStops",
"interfaceIconFrameDimmed": 4096.0,
"name": "Two Color",
"transparency": [
{
"location": 0,
"midpoint": 50,
"opacity": {
"units": "percentUnit",
"value": 100.0
}
},
{
"location": 4096,
"midpoint": 50,
"opacity": {
"units": "percentUnit",
"value": 100.0
}
}
]
},
"mode": "dissolve",
"offset": {
"horizontal": {
"units": "percentUnit",
"value": 0.0
},
"vertical": {
"units": "percentUnit",
"value": 0.0
}
},
"opacity": {
"units": "percentUnit",
"value": 59.0
},
"reverse": false,
"scale": {
"units": "percentUnit",
"value": 100.0
},
"type": "linear"
},
"innerGlow": {
"antiAlias": false,
"blur": 43.0,
"chokeMatte": 17.0,
"color": {
"blue": 189.997101,
"green": 255.0,
"red": 255.0
},
"enabled": true,
"glowTechnique": "preciseMatte",
"innerGlowSource": "centerGlow",
"inputRange": {
"units": "percentUnit",
"value": 56.0
},
"mode": "softLight",
"noise": {
"units": "percentUnit",
"value": 0.0
},
"opacity": {
"units": "percentUnit",
"value": 75.0
},
"shadingNoise": {
"units": "percentUnit",
"value": 23.0
},
"transferSpec": {
"name": "Linear"
}
},
"innerShadow": {
"antiAlias": true,
"blur": 24.0,
"chokeMatte": 8.0,
"color": {
"blue": 0.0,
"green": 0.0,
"red": 0.0
},
"distance": 22.0,
"enabled": true,
"localLightingAngle": {
"units": "angleUnit",
"value": -156.0
},
"mode": "darkerColor",
"noise": {
"units": "percentUnit",
"value": 16.0
},
"opacity": {
"units": "percentUnit",
"value": 75.0
},
"transferSpec": {
"name": "Cove - Deep"
},
"useGlobalAngle": false
},
"outerGlow": {
"antiAlias": false,
"blur": 35.0,
"chokeMatte": 14.0,
"color": {
"blue": 189.997101,
"green": 255.0,
"red": 255.0
},
"enabled": true,
"glowTechnique": "softMatte",
"inputRange": {
"units": "percentUnit",
"value": 36.0
},
"mode": "colorDodge",
"noise": {
"units": "percentUnit",
"value": 0.0
},
"opacity": {
"units": "percentUnit",
"value": 75.0
},
"shadingNoise": {
"units": "percentUnit",
"value": 21.0
},
"transferSpec": {
"name": "Linear"
}
},
"solidFill": {
"color": {
"blue": 255.0,
"green": 0.003891,
"red": 65.988323
},
"enabled": true,
"mode": "dissolve",
"opacity": {
"units": "percentUnit",
"value": 71.0
}
}
},
"mask": {
"removed": true
},
"name": "11. Blending & FX",
"pixels": true,
"type": "layer",
"visible": true
},
{
"blendOptions": {
"mode": "passThrough"
},
"bounds": {
"bottom": 0.0,
"left": 0.0,
"right": 0.0,
"top": 0.0
},
"clipped": false,
"generatorSettings": false,
"id": 28,
"index": 38,
"layers": [
{
"bounds": {
"bottom": 0.0,
"left": 0.0,
"right": 0.0,
"top": 0.0
},
"clipped": false,
"generatorSettings": false,
"id": 38,
"index": 37,
"mask": {
"removed": true
},
"name": "10c. \"Quotes\" '",
"pixels": true,
"type": "layer",
"visible": true
},
{
"bounds": {
"bottom": 0.0,
"left": 0.0,
"right": 0.0,
"top": 0.0
},
"clipped": false,
"generatorSettings": false,
"id": 36,
"index": 36,
"mask": {
"removed": true
},
"name": "10b. /Slashes/,Comma",
"pixels": true,
"type": "layer",
"visible": false
},
{
"bounds": {
"bottom": 0.0,
"left": 0.0,
"right": 0.0,
"top": 0.0
},
"clipped": false,
"generatorSettings": false,
"id": 30,
"index": 35,
"mask": {
"removed": true
},
"name": "10a. Unicode \ud83d\ude0e \u261e \u2116",
"pixels": true,
"type": "layer",
"visible": false
}
],
"mask": {
"removed": true
},
"name": "10. Layer Names",
"type": "layerSection",
"visible": true
},
{
"bounds": {
"bottom": 0.0,
"left": 0.0,
"right": 0.0,
"top": 0.0
},
"clipped": false,
"generatorSettings": false,
"id": 26,
"index": 33,
"mask": {
"removed": true
},
"name": "9. Locked",
"pixels": true,
"protection": {
"all": true
},
"type": "layer",
"visible": false
},
{
"bounds": {
"bottom": 0.0,
"left": 0.0,
"right": 0.0,
"top": 0.0
},
"clipped": false,
"generatorSettings": false,
"id": 33,
"index": 32,
"mask": {
"bounds": {
"bottom": 366,
"left": -6,
"right": 510,
"top": -6
},
"extendWithWhite": true
},
"name": "8. Masks",
"path": {
"bounds": {
"bottom": 232.0,
"left": 135.0,
"right": 393.0,
"top": 95.0
},
"defaultFill": false,
"pathComponents": [
{
"origin": {
"bounds": {
"bottom": 232.0,
"left": 135.0,
"right": 393.0,
"top": 95.0
},
"type": "ellipse"
},
"shapeOperation": "add",
"subpathListKey": [
{
"closedSubpath": true,
"points": [
{
"anchor": {
"x": 264.000014,
"y": 95.000002
},
"backward": {
"x": 192.755303,
"y": 95.000002
},
"forward": {
"x": 335.244726,
"y": 95.000002
}
},
{
"anchor": {
"x": 393.000003,
"y": 163.500016
},
"backward": {
"x": 393.000003,
"y": 125.668509
},
"forward": {
"x": 393.000003,
"y": 201.331501
}
},
{
"anchor": {
"x": 264.000014,
"y": 232.000008
},
"backward": {
"x": 335.244726,
"y": 232.000008
},
"forward": {
"x": 192.755303,
"y": 232.000008
}
},
{
"anchor": {
"x": 134.999996,
"y": 163.500016
},
"backward": {
"x": 134.999996,
"y": 201.331501
},
"forward": {
"x": 134.999996,
"y": 125.668509
}
}
]
}
]
}
]
},
"pixels": true,
"type": "layer",
"visible": false
},
{
"bounds": {
"bottom": 99.0,
"left": 161.0,
"right": 458.0,
"top": 22.0
},
"clipped": false,
"generatorSettings": false,
"id": 20,
"index": 31,
"mask": {
"removed": true
},
"name": "7. Text",
"text": {
"boundingBox": {
"bottom": {
"units": "pointsUnit",
"value": 51.650009
},
"left": {
"units": "pointsUnit",
"value": -125.019531
},
"right": {
"units": "pointsUnit",
"value": 124.019928
},
"top": {
"units": "pointsUnit",
"value": -9.0
}
},
"bounds": {
"bottom": {
"units": "pointsUnit",
"value": 79.29512
},
"left": {
"units": "pointsUnit",
"value": -125.019531
},
"right": {
"units": "pointsUnit",
"value": 125.719925
},
"top": {
"units": "pointsUnit",
"value": -10.303711
}
},
"paragraphStyleRange": [
{
"from": 0,
"paragraphStyle": {
"align": "center"
},
"to": 25
},
{
"from": 25,
"paragraphStyle": {
"align": "center"
},
"to": 50
},
{
"from": 50,
"paragraphStyle": {
"align": "center"
},
"to": 90
},
{
"from": 90,
"paragraphStyle": {
"align": "center"
},
"to": 91
}
],
"textClickPoint": {
"horizontal": {
"units": "percentUnit",
"value": 60.685563
},
"vertical": {
"units": "percentUnit",
"value": 7.772394
}
},
"textKey": "This is 12 pt Helvetica \rThis is 14 pt Times Bold\rJustify:Center, Leading:24, Tracking:50\r",
"textShape": [
{
"base": {
"horizontal": 0.0,
"vertical": 0.0
},
"char": "paint",
"columnCount": 1,
"columnGutter": {
"units": "pointsUnit",
"value": 0.0
},
"firstBaselineMinimum": {
"units": "pointsUnit",
"value": 0.0
},
"frameBaselineAlignment": "alignByAscent",
"orientation": "horizontal",
"rowCount": 1,
"rowGutter": {
"units": "pointsUnit",
"value": 0.0
},
"rowMajorOrder": true,
"spacing": {
"units": "pointsUnit",
"value": 0.0
},
"transform": {
"tx": 0.0,
"ty": 0.0,
"xx": 1.0,
"xy": 0.0,
"yx": 0.0,
"yy": 1.0
}
}
],
"textStyleRange": [
{
"from": 0,
"textStyle": {
"fontName": "Helvetica",
"fontStyleName": "Regular",
"leading": {
"units": "pointsUnit",
"value": 24.0
},
"size": {
"units": "pointsUnit",
"value": 12.0
},
"tracking": 50
},
"to": 25
},
{
"from": 25,
"textStyle": {
"fontName": "Times",
"fontStyleName": "Regular",
"leading": {
"units": "pointsUnit",
"value": 24.0
},
"size": {
"units": "pointsUnit",
"value": 14.0
},
"tracking": 50
},
"to": 91
},
{
"from": 25,
"textStyle": {
"fontName": "Times",
"fontStyleName": "Regular",
"leading": {
"units": "pointsUnit",
"value": 24.0
},
"size": {
"units": "pointsUnit",
"value": 14.0
},
"tracking": 50
},
"to": 91
}
],
"transform": {
"tx": 0.0,
"ty": 0.0,
"xx": 1.064395,
"xy": -0.074483,
"yx": 0.078232,
"yy": 1.117961
},
"warp": {
"warpPerspective": 11.0,
"warpPerspectiveOther": 10.0,
"warpRotate": "horizontal",
"warpStyle": "warpArc",
"warpValue": -11.0
}
},
"type": "textLayer",
"visible": true
},
{
"blendOptions": {
"mode": "passThrough"
},
"bounds": {
"bottom": 360.0,
"left": 0.0,
"right": 504.0,
"top": 0.0
},
"clipped": false,
"generatorSettings": false,
"id": 51,
"index": 30,
"layers": [
{
"adjustment": {
"class": "selectiveColor",
"presetKind": "presetKindDefault"
},
"bounds": {
"bottom": 360.0,
"left": 0.0,
"right": 504.0,
"top": 0.0
},
"clipped": false,
"generatorSettings": false,
"id": 73,
"index": 29,
"mask": {
"removed": true
},
"name": "6q. Selective Color",
"type": "adjustmentLayer",
"visible": true
},
{
"adjustment": {
"class": "gradientMapClass",
"gradient": {
"colors": [
{
"color": {
"blue": 0.0,
"green": 0.0,
"red": 255.0
},
"location": 0,
"midpoint": 50,
"type": "userStop"
},
{
"color": {
"blue": 255.0,
"green": 255.0,
"red": 255.0
},
"location": 4096,
"midpoint": 50,
"type": "userStop"
}
],
"gradientForm": "customStops",
"interfaceIconFrameDimmed": 4096.0,
"name": "Foreground to Background",
"transparency": [
{
"location": 0,
"midpoint": 50,
"opacity": {
"units": "percentUnit",
"value": 100.0
}
},
{
"location": 4096,
"midpoint": 50,
"opacity": {
"units": "percentUnit",
"value": 100.0
}
}
]
}
},
"bounds": {
"bottom": 360.0,
"left": 0.0,
"right": 504.0,
"top": 0.0
},
"clipped": false,
"generatorSettings": false,
"id": 72,
"index": 28,
"mask": {
"removed": true
},
"name": "6p. Gradient Map",
"type": "adjustmentLayer",
"visible": true
},
{
"adjustment": {
"class": "thresholdClassEvent",
"level": 128
},
"bounds": {
"bottom": 360.0,
"left": 0.0,
"right": 504.0,
"top": 0.0
},
"clipped": false,
"generatorSettings": false,
"id": 71,
"index": 27,
"mask": {
"removed": true
},
"name": "6o. Threshold",
"type": "adjustmentLayer",
"visible": true
},
{
"adjustment": {
"class": "posterization",
"levels": 4
},
"bounds": {
"bottom": 360.0,
"left": 0.0,
"right": 504.0,
"top": 0.0
},
"clipped": false,
"generatorSettings": false,
"id": 70,
"index": 26,
"mask": {
"removed": true
},
"name": "6n. Posterize",
"type": "adjustmentLayer",
"visible": true
},
{
"bounds": {
"bottom": 360.0,
"left": 0.0,
"right": 504.0,
"top": 0.0
},
"clipped": false,
"generatorSettings": false,
"id": 69,
"index": 25,
"mask": {
"removed": true
},
"name": "6m. Invert",
"type": "adjustmentLayer",
"visible": true
},
{
"bounds": {
"bottom": 360.0,
"left": 0.0,
"right": 504.0,
"top": 0.0
},
"clipped": false,
"generatorSettings": false,
"id": 68,
"index": 24,
"mask": {
"removed": true
},
"name": "6l. Color Lookup",
"type": "adjustmentLayer",
"visible": true
},
{
"adjustment": {
"blue": {
"blue": {
"units": "percentUnit",
"value": 100.0
}
},
"class": "channelMixer",
"grain": {
"grain": {
"units": "percentUnit",
"value": 100.0
}
},
"presetKind": "presetKindDefault",
"red": {
"red": {
"units": "percentUnit",
"value": 100.0
}
}
},
"bounds": {
"bottom": 360.0,
"left": 0.0,
"right": 504.0,
"top": 0.0
},
"clipped": false,
"generatorSettings": false,
"id": 67,
"index": 23,
"mask": {
"removed": true
},
"name": "6k. Channel Mixer",
"type": "adjustmentLayer",
"visible": true
},
{
"adjustment": {
"class": "photoFilter",
"color": {
"a": 32.0,
"b": 120.0,
"luminance": 67.06
},
"density": 25,
"preserveLuminosity": true
},
"bounds": {
"bottom": 360.0,
"left": 0.0,
"right": 504.0,
"top": 0.0
},
"clipped": false,
"generatorSettings": false,
"id": 66,
"index": 22,
"mask": {
"removed": true
},
"name": "6j. Photo Filter",
"type": "adjustmentLayer",
"visible": true
},
{
"adjustment": {
"blue": 20,
"class": "blackAndWhite",
"cyan": 60,
"grain": 40,
"magenta": 80,
"presetKind": "presetKindDefault",
"red": 40,
"tintColor": {
"blue": 179.00116,
"green": 211.000671,
"red": 225.000458
},
"useTint": false,
"yellow": 60
},
"bounds": {
"bottom": 360.0,
"left": 0.0,
"right": 504.0,
"top": 0.0
},
"clipped": false,
"generatorSettings": false,
"id": 65,
"index": 21,
"mask": {
"removed": true
},
"name": "6i. Black & White",
"type": "adjustmentLayer",
"visible": true
},
{
"adjustment": {
"class": "colorBalance",
"highlightLevels": [
0,
0,
0
],
"midtoneLevels": [
0,
0,
0
],
"preserveLuminosity": true,
"shadowLevels": [
0,
0,
0
]
},
"bounds": {
"bottom": 360.0,
"left": 0.0,
"right": 504.0,
"top": 0.0
},
"clipped": false,
"generatorSettings": false,
"id": 62,
"index": 20,
"mask": {
"removed": true
},
"name": "6h. Color Balance",
"type": "adjustmentLayer",
"visible": true
},
{
"adjustment": {
"class": "hueSaturation",
"colorize": false,
"presetKind": "presetKindDefault"
},
"bounds": {
"bottom": 360.0,
"left": 0.0,
"right": 504.0,
"top": 0.0
},
"clipped": false,
"generatorSettings": false,
"id": 61,
"index": 19,
"mask": {
"removed": true
},
"name": "6g. Hue/Saturation",
"type": "adjustmentLayer",
"visible": true
},
{
"bounds": {
"bottom": 360.0,
"left": 0.0,
"right": 504.0,
"top": 0.0
},
"clipped": false,
"generatorSettings": false,
"id": 60,
"index": 18,
"mask": {
"removed": true
},
"name": "6f. Vibrance",
"type": "adjustmentLayer",
"visible": true
},
{
"adjustment": {
"class": "exposure",
"exposure": 0.0,
"gammaCorrection": 1.0,
"offset": 0.0,
"presetKind": "presetKindDefault"
},
"bounds": {
"bottom": 360.0,
"left": 0.0,
"right": 504.0,
"top": 0.0
},
"clipped": false,
"generatorSettings": false,
"id": 59,
"index": 17,
"mask": {
"removed": true
},
"name": "6e. Exposure",
"type": "adjustmentLayer",
"visible": true
},
{
"adjustment": {
"class": "curves",
"presetKind": "presetKindDefault"
},
"bounds": {
"bottom": 360.0,
"left": 0.0,
"right": 504.0,
"top": 0.0
},
"clipped": false,
"generatorSettings": false,
"id": 58,
"index": 16,
"mask": {
"removed": true
},
"name": "6f. Curves",
"type": "adjustmentLayer",
"visible": true
},
{
"adjustment": {
"class": "levels",
"presetKind": "presetKindDefault"
},
"bounds": {
"bottom": 360.0,
"left": 0.0,
"right": 504.0,
"top": 0.0
},
"clipped": false,
"generatorSettings": false,
"id": 57,
"index": 15,
"mask": {
"removed": true
},
"name": "6e. Levels",
"type": "adjustmentLayer",
"visible": true
},
{
"adjustment": {
"class": "brightnessEvent",
"useLegacy": false
},
"bounds": {
"bottom": 360.0,
"left": 0.0,
"right": 504.0,
"top": 0.0
},
"clipped": false,
"generatorSettings": false,
"id": 56,
"index": 14,
"mask": {
"removed": true
},
"name": "6d. Brightness/Contrast",
"type": "adjustmentLayer",
"visible": true
},
{
"bounds": {
"bottom": 360.0,
"left": 0.0,
"right": 504.0,
"top": 0.0
},
"clipped": false,
"fill": {
"class": "patternLayer",
"pattern": {
"ID": "3097ddac-129d-1176-b877-b485ce830481",
"name": "$$$/Presets/Patterns/Patterns_pat/GrayGranite=Gray Granite"
}
},
"generatorSettings": false,
"id": 55,
"index": 13,
"mask": {
"removed": true
},
"name": "6c. Pattern Fill",
"type": "adjustmentLayer",
"visible": true
},
{
"bounds": {
"bottom": 360.0,
"left": 0.0,
"right": 504.0,
"top": 0.0
},
"clipped": false,
"fill": {
"angle": {
"units": "angleUnit",
"value": 90.0
},
"class": "gradientLayer",
"gradient": {
"colors": [
{
"color": {
"blue": 0.003891,
"green": 0.003891,
"red": 255.0
},
"location": 0,
"midpoint": 50,
"type": "userStop"
},
{
"color": {
"blue": 0.003891,
"green": 0.003891,
"red": 255.0
},
"location": 4096,
"midpoint": 50,
"type": "userStop"
}
],
"gradientForm": "customStops",
"interfaceIconFrameDimmed": 4096.0,
"name": "Color to Transparent",
"transparency": [
{
"location": 0,
"midpoint": 50,
"opacity": {
"units": "percentUnit",
"value": 100.0
}
},
{
"location": 4096,
"midpoint": 50,
"opacity": {
"units": "percentUnit",
"value": 0.0
}
}
]
},
"type": "linear"
},
"generatorSettings": false,
"id": 54,
"index": 12,
"mask": {
"removed": true
},
"name": "6b. Gradient Fill",
"type": "adjustmentLayer",
"visible": true
},
{
"bounds": {
"bottom": 360.0,
"left": 0.0,
"right": 504.0,
"top": 0.0
},
"clipped": false,
"fill": {
"class": "solidColorLayer",
"color": {
"blue": 0.003891,
"green": 0.003891,
"red": 255.0
}
},
"generatorSettings": false,
"id": 53,
"index": 11,
"mask": {
"removed": true
},
"name": "6a. Color Fill",
"type": "adjustmentLayer",
"visible": true
}
],
"mask": {
"removed": true
},
"name": "6. Adjustments",
"type": "layerSection",
"visible": false
},
{
"blendOptions": {
"mode": "passThrough"
},
"bounds": {
"bottom": 334.0,
"left": 45.0,
"right": 480.0,
"top": 165.0
},
"clipped": false,
"generatorSettings": false,
"id": 11,
"index": 9,
"layers": [
{
"blendOptions": {
"opacity": {
"units": "percentUnit",
"value": 71.0
}
},
"bounds": {
"bottom": 334.0,
"left": 311.0,
"right": 480.0,
"top": 165.0
},
"boundsWithFX": {
"bottom": 334.0,
"left": 311.0,
"right": 480.0,
"top": 165.0
},
"clipped": false,
"fill": {
"class": "solidColorLayer",
"color": {
"blue": 53.99611,
"green": 255.0,
"red": 0.003891
}
},
"generatorSettings": false,
"id": 8,
"index": 8,
"layerEffects": {
"bevelEmboss": {
"align": true,
"antiAlias": false,
"antialiasGloss": false,
"bevelDirection": "stampIn",
"bevelStyle": "innerBevel",
"bevelTechnique": "softMatte",
"blur": 5.0,
"enabled": true,
"highlightColor": {
"blue": 255.0,
"green": 255.0,
"red": 255.0
},
"highlightMode": "screen",
"highlightOpacity": {
"units": "percentUnit",
"value": 75.0
},
"inputRange": {
"units": "percentUnit",
"value": 100.0
},
"invertTexture": false,
"localLightingAltitude": {
"units": "angleUnit",
"value": 30.0
},
"localLightingAngle": {
"units": "angleUnit",
"value": 120.0
},
"mappingShape": {
"curve": [
{
"horizontal": 0.0,
"vertical": 0.0
},
{
"horizontal": 255.0,
"vertical": 255.0
}
],
"name": "Default"
},
"phase": {
"horizontal": 0.0,
"vertical": 0.0
},
"scale": {
"units": "percentUnit",
"value": 100.0
},
"shadowColor": {
"blue": 0.0,
"green": 0.0,
"red": 0.0
},
"shadowMode": "multiply",
"shadowOpacity": {
"units": "percentUnit",
"value": 75.0
},
"softness": 0.0,
"strengthRatio": {
"units": "percentUnit",
"value": 100.0
},
"textureDepth": {
"units": "percentUnit",
"value": 100.0
},
"transferSpec": {
"name": "Linear"
},
"useGlobalAngle": true,
"useShape": true,
"useTexture": true
},
"gradientFill": {
"align": true,
"angle": {
"units": "angleUnit",
"value": 90.0
},
"dither": false,
"enabled": true,
"gradient": {
"colors": [
{
"color": {
"blue": 0.0,
"green": 0.0,
"red": 0.0
},
"location": 0,
"midpoint": 50,
"type": "userStop"
},
{
"color": {
"blue": 255.0,
"green": 255.0,
"red": 255.0
},
"location": 4096,
"midpoint": 50,
"type": "userStop"
}
],
"gradientForm": "customStops",
"interfaceIconFrameDimmed": 4096.0,
"name": "Two Color",
"transparency": [
{
"location": 0,
"midpoint": 50,
"opacity": {
"units": "percentUnit",
"value": 100.0
}
},
{
"location": 4096,
"midpoint": 50,
"opacity": {
"units": "percentUnit",
"value": 100.0
}
}
]
},
"mode": "normal",
"offset": {
"horizontal": {
"units": "percentUnit",
"value": 0.0
},
"vertical": {
"units": "percentUnit",
"value": 0.0
}
},
"opacity": {
"units": "percentUnit",
"value": 66.0
},
"reverse": false,
"scale": {
"units": "percentUnit",
"value": 100.0
},
"type": "linear"
},
"masterFXSwitch": false
},
"mask": {
"removed": true
},
"name": "4. Green Shape with Dashed Red Stroke",
"path": {
"bounds": {
"bottom": 334.0,
"left": 311.0,
"right": 480.0,
"top": 165.0
},
"defaultFill": false,
"pathComponents": [
{
"origin": {
"bounds": {
"bottom": 334.0,
"left": 311.0,
"right": 480.0,
"top": 165.0
},
"type": "ellipse"
},
"shapeOperation": "add",
"subpathListKey": [
{
"closedSubpath": true,
"points": [
{
"anchor": {
"x": 395.499993,
"y": 165.000014
},
"backward": {
"x": 348.831973,
"y": 165.000014
},
"forward": {
"x": 442.168044,
"y": 165.000014
}
},
{
"anchor": {
"x": 480.000001,
"y": 249.500005
},
"backward": {
"x": 480.000001,
"y": 202.83195
},
"forward": {
"x": 480.000001,
"y": 296.16806
}
},
{
"anchor": {
"x": 395.499993,
"y": 333.999996
},
"backward": {
"x": 442.168044,
"y": 333.999996
},
"forward": {
"x": 348.831973,
"y": 333.999996
}
},
{
"anchor": {
"x": 311.000015,
"y": 249.500005
},
"backward": {
"x": 311.000015,
"y": 296.16806
},
"forward": {
"x": 311.000015,
"y": 202.83195
}
}
]
}
]
}
]
},
"strokeStyle": {
"fillEnabled": true,
"strokeEnabled": true,
"strokeStyleBlendMode": "normal",
"strokeStyleContent": {
"color": {
"blue": 0.0,
"green": 0.0,
"red": 255.0
}
},
"strokeStyleLineAlignment": "strokeStyleAlignInside",
"strokeStyleLineCapType": "strokeStyleRoundCap",
"strokeStyleLineDashOffset": {
"units": "pointsUnit",
"value": 0.0
},
"strokeStyleLineDashSet": [
4.0,
2.0
],
"strokeStyleLineJoinType": "strokeStyleMiterJoin",
"strokeStyleLineWidth": {
"units": "pointsUnit",
"value": 3.0
},
"strokeStyleMiterLimit": 100.0,
"strokeStyleOpacity": {
"units": "percentUnit",
"value": 100.0
},
"strokeStyleResolution": 72.0,
"strokeStyleScaleLock": false,
"strokeStyleStrokeAdjust": false,
"strokeStyleVersion": 2
},
"type": "shapeLayer",
"visible": true
},
{
"blendOptions": {
"opacity": {
"units": "percentUnit",
"value": 75.0
}
},
"bounds": {
"bottom": 334.0,
"left": 45.0,
"right": 347.0,
"top": 165.0
},
"boundsWithFX": {
"bottom": 334.0,
"left": 45.0,
"right": 347.0,
"top": 165.0
},
"clipped": false,
"generatorSettings": false,
"id": 15,
"index": 7,
"layerEffects": {
"chromeFX": {
"antiAlias": false,
"blur": 14.0,
"color": {
"blue": 0.0,
"green": 0.0,
"red": 0.0
},
"distance": 11.0,
"enabled": true,
"invert": true,
"localLightingAngle": {
"units": "angleUnit",
"value": 19.0
},
"mappingShape": {
"name": "Gaussian"
},
"mode": "multiply",
"opacity": {
"units": "percentUnit",
"value": 50.0
}
},
"dropShadow": {
"antiAlias": false,
"blur": 5.0,
"chokeMatte": 0.0,
"color": {
"blue": 0.0,
"green": 0.0,
"red": 0.0
},
"distance": 5.0,
"enabled": true,
"layerConceals": true,
"localLightingAngle": {
"units": "angleUnit",
"value": 120.0
},
"mode": "multiply",
"noise": {
"units": "percentUnit",
"value": 0.0
},
"opacity": {
"units": "percentUnit",
"value": 75.0
},
"transferSpec": {
"name": "Linear"
},
"useGlobalAngle": true
},
"masterFXSwitch": false
},
"layers": [
{
"bounds": {
"bottom": 334.0,
"left": 178.0,
"right": 347.0,
"top": 165.0
},
"clipped": false,
"fill": {
"angle": {
"units": "angleUnit",
"value": 90.0
},
"class": "gradientLayer",
"dither": true,
"gradient": {
"colors": [
{
"color": {
"blue": 178.000005,
"green": 0.003891,
"red": 9.575876
},
"location": 0,
"midpoint": 50,
"type": "userStop"
},
{
"color": {
"blue": 0.027237,
"green": 0.003891,
"red": 255.0
},
"location": 2048,
"midpoint": 50,
"type": "userStop"
},
{
"color": {
"blue": 0.003891,
"green": 251.996109,
"red": 255.0
},
"location": 4096,
"midpoint": 50,
"type": "userStop"
}
],
"gradientForm": "customStops",
"interfaceIconFrameDimmed": 4096.0,
"name": "$$$/DefaultGradient/BlueRedYellow=Blue, Red, Yellow",
"transparency": [
{
"location": 0,
"midpoint": 50,
"opacity": {
"units": "percentUnit",
"value": 100.0
}
},
{
"location": 4096,
"midpoint": 50,
"opacity": {
"units": "percentUnit",
"value": 100.0
}
}
]
},
"type": "linear"
},
"generatorSettings": false,
"id": 7,
"index": 6,
"mask": {
"removed": true
},
"name": "3b. Gradient Shape",
"path": {
"bounds": {
"bottom": 334.0,
"left": 178.0,
"right": 347.0,
"top": 165.0
},
"defaultFill": false,
"pathComponents": [
{
"origin": {
"bounds": {
"bottom": 334.0,
"left": 178.0,
"right": 347.0,
"top": 165.0
},
"type": "ellipse"
},
"shapeOperation": "add",
"subpathListKey": [
{
"closedSubpath": true,
"points": [
{
"anchor": {
"x": 262.50002,
"y": 165.000014
},
"backward": {
"x": 215.831969,
"y": 165.000014
},
"forward": {
"x": 309.168071,
"y": 165.000014
}
},
{
"anchor": {
"x": 346.999998,
"y": 249.500005
},
"backward": {
"x": 346.999998,
"y": 202.83195
},
"forward": {
"x": 346.999998,
"y": 296.16806
}
},
{
"anchor": {
"x": 262.50002,
"y": 333.999996
},
"backward": {
"x": 309.168071,
"y": 333.999996
},
"forward": {
"x": 215.831969,
"y": 333.999996
}
},
{
"anchor": {
"x": 178.000012,
"y": 249.500005
},
"backward": {
"x": 178.000012,
"y": 296.16806
},
"forward": {
"x": 178.000012,
"y": 202.83195
}
}
]
}
]
}
]
},
"type": "shapeLayer",
"visible": true
},
{
"bounds": {
"bottom": 334.0,
"left": 45.0,
"right": 214.0,
"top": 165.0
},
"clipped": false,
"fill": {
"class": "patternLayer",
"pattern": {
"ID": "b7334da0-122f-11d4-8bb5-e27e45023b5f",
"name": "$$$/Presets/Patterns/Patterns_pat/Bubbles=Bubbles"
}
},
"generatorSettings": false,
"id": 6,
"index": 5,
"mask": {
"removed": true
},
"name": "3a. Pattern Shape",
"path": {
"bounds": {
"bottom": 334.0,
"left": 45.0,
"right": 214.0,
"top": 165.0
},
"defaultFill": false,
"pathComponents": [
{
"origin": {
"bounds": {
"bottom": 334.0,
"left": 45.0,
"right": 214.0,
"top": 165.0
},
"type": "ellipse"
},
"shapeOperation": "add",
"subpathListKey": [
{
"closedSubpath": true,
"points": [
{
"anchor": {
"x": 129.500017,
"y": 165.000014
},
"backward": {
"x": 82.831966,
"y": 165.000014
},
"forward": {
"x": 176.168067,
"y": 165.000014
}
},
{
"anchor": {
"x": 213.999995,
"y": 249.500005
},
"backward": {
"x": 213.999995,
"y": 202.83195
},
"forward": {
"x": 213.999995,
"y": 296.16806
}
},
{
"anchor": {
"x": 129.500017,
"y": 333.999996
},
"backward": {
"x": 176.168067,
"y": 333.999996
},
"forward": {
"x": 82.831966,
"y": 333.999996
}
},
{
"anchor": {
"x": 45.000009,
"y": 249.500005
},
"backward": {
"x": 45.000009,
"y": 296.16806
},
"forward": {
"x": 45.000009,
"y": 202.83195
}
}
]
}
]
}
]
},
"type": "shapeLayer",
"visible": true
}
],
"mask": {
"removed": true
},
"name": "3. Group with FX",
"type": "layerSection",
"visible": true
}
],
"mask": {
"removed": true
},
"name": "5. Group with Nested Group",
"type": "layerSection",
"visible": true
},
{
"bounds": {
"bottom": 360.0,
"left": 0.0,
"right": 504.0,
"top": 0.0
},
"clipped": false,
"generatorSettings": false,
"id": 22,
"index": 2,
"mask": {
"removed": true
},
"name": "2. Smart Object with Filter",
"smartObject": {
"ID": "579fbea8-12a4-1176-9f3e-b0cd60b727fc",
"antiAliasType": 16,
"filterFX": {
"enabled": true,
"filterFXList": [
{
"backgroundColor": {
"blue": 255.0,
"green": 255.0,
"red": 255.0
},
"blendOptions": {
"mode": "normal",
"opacity": {
"units": "percentUnit",
"value": 100.0
}
},
"enabled": true,
"filter": {
"radius": 4.1
},
"filterID": 1198747202,
"foregroundColor": {
"blue": 0.0,
"green": 0.0,
"red": 0.0
},
"hasoptions": true,
"name": "Gaussian Blur..."
}
],
"filterMaskEnable": true,
"filterMaskExtendWithWhite": true,
"filterMaskLinked": false,
"validAtPosition": true
},
"placed": "579fbea7-12a4-1176-9f3e-b0cd60b727fc",
"transform": [
47.280848,
1.925534,
495.093215,
34.561157,
481.719152,
218.074466,
33.906785,
185.438843
],
"type": 2
},
"type": "layer",
"visible": true
},
{
"bounds": {
"bottom": 360.0,
"left": 0.0,
"right": 45.0,
"top": 325.0
},
"clipped": false,
"generatorSettings": false,
"id": 27,
"index": 1,
"mask": {
"removed": true
},
"name": "1. Invisible",
"pixels": true,
"type": "layer",
"visible": false
},
{
"bounds": {
"bottom": 360.0,
"left": 0.0,
"right": 504.0,
"top": 0.0
},
"clipped": false,
"generatorSettings": false,
"id": 1,
"index": 0,
"mask": {
"removed": true
},
"name": "Background",
"pixels": true,
"protection": {
"position": true,
"transparency": true
},
"type": "backgroundLayer",
"visible": false
}
],
"placed": [
{
"bounds": {
"bottom": 184,
"left": 0,
"right": 448,
"top": 0
},
"file": "Group 2.psb",
"fileCreator": 943868237,
"fileType": 943870018,
"generatorSettings": false,
"globalLight": {
"altitude": 30,
"angle": 120
},
"id": 47,
"layers": [
{
"bounds": {
"bottom": 175.0,
"left": 138.0,
"right": 307.0,
"top": 6.0
},
"clipped": false,
"fill": {
"class": "solidColorLayer",
"color": {
"blue": 245.988328,
"green": 255.0,
"red": 0.003891
}
},
"generatorSettings": false,
"id": 26,
"index": 2,
"mask": {
"removed": true
},
"name": "2c. Blue Shape",
"path": {
"bounds": {
"bottom": 175.0,
"left": 138.0,
"right": 307.0,
"top": 6.0
},
"defaultFill": false,
"pathComponents": [
{
"origin": {
"bounds": {
"bottom": 175.0,
"left": 138.0,
"right": 307.0,
"top": 6.0
},
"type": "ellipse"
},
"shapeOperation": "add",
"subpathListKey": [
{
"closedSubpath": true,
"points": [
{
"anchor": {
"x": 222.500019,
"y": 5.999999
},
"backward": {
"x": 175.831982,
"y": 5.999999
},
"forward": {
"x": 269.168083,
"y": 5.999999
}
},
{
"anchor": {
"x": 307.000004,
"y": 90.500009
},
"backward": {
"x": 307.000004,
"y": 43.83196
},
"forward": {
"x": 307.000004,
"y": 137.168046
}
},
{
"anchor": {
"x": 222.500019,
"y": 175.000008
},
"backward": {
"x": 269.168083,
"y": 175.000008
},
"forward": {
"x": 175.831982,
"y": 175.000008
}
},
{
"anchor": {
"x": 138.000008,
"y": 90.500009
},
"backward": {
"x": 138.000008,
"y": 137.168046
},
"forward": {
"x": 138.000008,
"y": 43.83196
}
}
]
}
]
}
]
},
"type": "shapeLayer",
"visible": true
},
{
"bounds": {
"bottom": 175.0,
"left": 271.0,
"right": 440.0,
"top": 6.0
},
"clipped": false,
"fill": {
"class": "solidColorLayer",
"color": {
"blue": 240.019456,
"green": 0.003891,
"red": 255.0
}
},
"generatorSettings": false,
"id": 27,
"index": 1,
"mask": {
"removed": true
},
"name": "2b. Magenta Shape",
"path": {
"bounds": {
"bottom": 175.0,
"left": 271.0,
"right": 440.0,
"top": 6.0
},
"defaultFill": false,
"pathComponents": [
{
"origin": {
"bounds": {
"bottom": 175.0,
"left": 271.0,
"right": 440.0,
"top": 6.0
},
"type": "ellipse"
},
"shapeOperation": "add",
"subpathListKey": [
{
"closedSubpath": true,
"points": [
{
"anchor": {
"x": 355.499992,
"y": 5.999999
},
"backward": {
"x": 308.831982,
"y": 5.999999
},
"forward": {
"x": 402.168056,
"y": 5.999999
}
},
{
"anchor": {
"x": 440.000004,
"y": 90.500009
},
"backward": {
"x": 440.000004,
"y": 43.83196
},
"forward": {
"x": 440.000004,
"y": 137.168046
}
},
{
"anchor": {
"x": 355.499992,
"y": 175.000008
},
"backward": {
"x": 402.168056,
"y": 175.000008
},
"forward": {
"x": 308.831982,
"y": 175.000008
}
},
{
"anchor": {
"x": 271.000034,
"y": 90.500009
},
"backward": {
"x": 271.000034,
"y": 137.168046
},
"forward": {
"x": 271.000034,
"y": 43.83196
}
}
]
}
]
}
]
},
"type": "shapeLayer",
"visible": true
},
{
"blendOptions": {
"fillOpacity": {
"units": "percentUnit",
"value": 90.0
},
"opacity": {
"units": "percentUnit",
"value": 70.0
}
},
"bounds": {
"bottom": 175.0,
"left": 5.0,
"right": 174.0,
"top": 6.0
},
"clipped": false,
"fill": {
"class": "solidColorLayer",
"color": {
"blue": 0.003891,
"green": 209.996112,
"red": 255.0
}
},
"generatorSettings": false,
"id": 24,
"index": 0,
"mask": {
"removed": true
},
"name": "2a. Yellow Shape",
"path": {
"bounds": {
"bottom": 175.0,
"left": 5.0,
"right": 174.0,
"top": 6.0
},
"defaultFill": false,
"pathComponents": [
{
"origin": {
"bounds": {
"bottom": 175.0,
"left": 5.0,
"right": 174.0,
"top": 6.0
},
"type": "ellipse"
},
"shapeOperation": "add",
"subpathListKey": [
{
"closedSubpath": true,
"points": [
{
"anchor": {
"x": 89.500019,
"y": 5.999999
},
"backward": {
"x": 42.831982,
"y": 5.999999
},
"forward": {
"x": 136.168083,
"y": 5.999999
}
},
{
"anchor": {
"x": 174.000004,
"y": 90.500009
},
"backward": {
"x": 174.000004,
"y": 43.83196
},
"forward": {
"x": 174.000004,
"y": 137.168046
}
},
{
"anchor": {
"x": 89.500019,
"y": 175.000008
},
"backward": {
"x": 136.168083,
"y": 175.000008
},
"forward": {
"x": 42.831982,
"y": 175.000008
}
},
{
"anchor": {
"x": 5.000008,
"y": 90.500009
},
"backward": {
"x": 5.000008,
"y": 137.168046
},
"forward": {
"x": 5.000008,
"y": 43.83196
}
}
]
}
]
}
]
},
"type": "shapeLayer",
"visible": true
}
],
"name": "Group 2.psb",
"placedID": "579fbea8-12a4-1176-9f3e-b0cd60b727fc",
"resolution": 72.0,
"selection": [
2
],
"size": 32396
}
],
"resolution": 72.0,
"selection": [
40
],
"timeStamp": 1384552750.104,
"version": "1.1.0"
}